diff --git a/.gitignore b/.gitignore index 7343e722d5c4f..b518464efcb8f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,12 @@ *.tar.gz *.exe -src/bitcoin -src/bitcoind -src/bitcoin-cli -src/bitcoin-tx -src/test/test_bitcoin -src/qt/test/test_bitcoin-qt +src/hypercoin +src/hypercoind +src/hypercoin-cli +src/hypercoin-tx +src/test/test_hypercoin +src/qt/test/test_hypercoin-qt # autoreconf Makefile.in @@ -74,12 +74,12 @@ src/qt/test/moc*.cpp # Compilation and Qt preprocessor part *.qm Makefile -bitcoin-qt -Bitcoin-Qt.app +hypercoin-qt +Hypercoin-Qt.app # Unit-tests Makefile.test -bitcoin-qt_test +hypercoin-qt_test src/test/buildenv.py # Resources cpp @@ -111,3 +111,4 @@ qa/pull-tester/test.*/* !src/leveldb*/Makefile /doc/doxygen/ +build-aux/m4/ax_check_compile_flag.m4 diff --git a/.travis.yml b/.travis.yml index 1630c1d02a4da..981f0e999dd66 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ os: linux language: cpp +compiler: gcc env: global: - MAKEJOBS=-j3 @@ -33,11 +34,13 @@ matrix: - compiler: ": 32-bit + dash" env: HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat" USE_SHELL="/bin/dash" - compiler: ": Cross-Mac" - env: HOST=x86_64-apple-darwin11 PACKAGES="gcc-multilib g++-multilib cmake libcap-dev libz-dev libbz2-dev" OSX_SDK=10.7 GOAL="deploy" + env: HOST=x86_64-apple-darwin11 PACKAGES="cmake libcap-dev libz-dev libbz2-dev" OSX_SDK=10.9 GOAL="deploy" - compiler: ": Win64" env: HOST=x86_64-w64-mingw32 PACKAGES="nsis gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 binutils-mingw-w64-x86-64 mingw-w64-dev wine bc" RUN_TESTS=true GOAL="deploy" BITCOIN_CONFIG="--enable-gui" MAKEJOBS="-j2" - compiler: ": Win32" env: HOST=i686-w64-mingw32 PACKAGES="nsis gcc-mingw-w64-i686 g++-mingw-w64-i686 binutils-mingw-w64-i686 mingw-w64-dev wine bc" RUN_TESTS=true GOAL="deploy" BITCOIN_CONFIG="--enable-gui" MAKEJOBS="-j2" + exclude: + - compiler: gcc install: - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get update; fi - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES; fi diff --git a/COPYING b/COPYING index 6219bd75a6497..9fd32666224ea 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2009-2014 Bitcoin Developers +Copyright (c) 2009-2015 Bitcoin Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile.am b/Makefile.am index b51f477b7856d..1a45d5c8a29ce 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,13 +4,13 @@ SUBDIRS = src GZIP_ENV="-9n" -BITCOIND_BIN=$(top_builddir)/src/bitcoind$(EXEEXT) -BITCOIN_QT_BIN=$(top_builddir)/src/qt/bitcoin-qt$(EXEEXT) -BITCOIN_CLI_BIN=$(top_builddir)/src/bitcoin-cli$(EXEEXT) +BITCOIND_BIN=$(top_builddir)/src/hypercoind$(EXEEXT) +BITCOIN_QT_BIN=$(top_builddir)/src/qt/hypercoin-qt$(EXEEXT) +BITCOIN_CLI_BIN=$(top_builddir)/src/hypercoin-cli$(EXEEXT) BITCOIN_WIN_INSTALLER=$(PACKAGE)-$(PACKAGE_VERSION)-win$(WINDOWS_BITS)-setup$(EXEEXT) -OSX_APP=Bitcoin-Qt.app -OSX_DMG=Bitcoin-Qt.dmg +OSX_APP=Hypercoin-Qt.app +OSX_DMG=Hypercoin-Qt.dmg OSX_DEPLOY_SCRIPT=$(top_srcdir)/contrib/macdeploy/macdeployqtplus OSX_FANCY_PLIST=$(top_srcdir)/contrib/macdeploy/fancy.plist OSX_INSTALLER_ICONS=$(top_srcdir)/src/qt/res/icons/bitcoin.icns @@ -75,13 +75,13 @@ $(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS) $(MKDIR_P) $(@D) $(INSTALL_DATA) $< $@ -$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(BITCOIN_QT_BIN) +$(OSX_APP)/Contents/MacOS/Hypercoin-Qt: $(BITCOIN_QT_BIN) $(MKDIR_P) $(@D) STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $< $@ OSX_APP_BUILT=$(OSX_APP)/Contents/PkgInfo $(OSX_APP)/Contents/Resources/empty.lproj \ $(OSX_APP)/Contents/Resources/bitcoin.icns $(OSX_APP)/Contents/Info.plist \ - $(OSX_APP)/Contents/MacOS/Bitcoin-Qt + $(OSX_APP)/Contents/MacOS/Hypercoin-Qt if BUILD_DARWIN $(OSX_DMG): $(OSX_APP_BUILT) $(OSX_PACKAGING) @@ -96,10 +96,10 @@ $(APP_DIST_DIR)/Applications: @rm -f $@ @cd $(@D); $(LN_S) /Applications $(@F) -$(APP_DIST_EXTRAS): $(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Bitcoin-Qt +$(APP_DIST_EXTRAS): $(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Hypercoin-Qt $(OSX_DMG): $(APP_DIST_EXTRAS) - $(GENISOIMAGE) -no-cache-inodes -D -l -probe -V "Bitcoin-Qt" -no-pad -r -apple -o $@ dist + $(GENISOIMAGE) -no-cache-inodes -D -l -probe -V "Hypercoin-Qt" -no-pad -r -apple -o $@ dist $(APP_DIST_DIR)/.background/background.png: $(MKDIR_P) $(@D) @@ -107,7 +107,7 @@ $(APP_DIST_DIR)/.background/background.png: $(APP_DIST_DIR)/.DS_Store: $(INSTALL) $(top_srcdir)/contrib/macdeploy/DS_Store $@ -$(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(OSX_APP_BUILT) $(OSX_PACKAGING) +$(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Hypercoin-Qt: $(OSX_APP_BUILT) $(OSX_PACKAGING) INSTALLNAMETOOL=$(INSTALLNAMETOOL) OTOOL=$(OTOOL) STRIP=$(STRIP) $(OSX_DEPLOY_SCRIPT) $(OSX_APP) -translations-dir=$(QT_TRANSLATION_DIR) -add-qt-tr $(OSX_QT_TRANSLATIONS) -verbose 2 deploydir: $(APP_DIST_EXTRAS) @@ -190,6 +190,8 @@ check-local: @qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool $(COMPARISON_TOOL_REORG_TESTS) 2>&1 endif +dist_noinst_SCRIPTS = autogen.sh + EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/rpc-tests.sh qa/pull-tester/run-bitcoin-cli qa/rpc-tests $(DIST_DOCS) $(WINDOWS_PACKAGING) $(OSX_PACKAGING) CLEANFILES = $(OSX_DMG) $(BITCOIN_WIN_INSTALLER) diff --git a/README.md b/README.md index cf650fe543334..d422e1bbce30e 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,24 @@ -Bitcoin Core integration/staging tree +Hypercoin Core integration/staging tree ===================================== -[![Build Status](https://travis-ci.org/bitcoin/bitcoin.svg?branch=master)](https://travis-ci.org/bitcoin/bitcoin) +https://hyper-coin.co -https://www.bitcoin.org - -Copyright (c) 2009-2014 Bitcoin Core Developers - -What is Bitcoin? +What is Hypercoin? ---------------- -Bitcoin is an experimental new digital currency that enables instant payments to -anyone, anywhere in the world. Bitcoin uses peer-to-peer technology to operate +Hypercoin is an experimental new digital currency that enables instant payments to +anyone, anywhere in the world. Hypercoin uses peer-to-peer technology to operate with no central authority: managing transactions and issuing money are carried -out collectively by the network. Bitcoin Core is the name of open source +out collectively by the network. Hypercoin Core is the name of open source software which enables the use of this currency. For more information, as well as an immediately useable, binary version of -the Bitcoin Core software, see https://www.bitcoin.org/en/download. +the Hypercoin Core software, see https://hyper-coin.co License ------- -Bitcoin Core is released under the terms of the MIT license. See [COPYING](COPYING) for more +Hypercoin Core is released under the terms of the MIT license. See [COPYING](COPYING) for more information or see http://opensource.org/licenses/MIT. Development process @@ -31,21 +27,21 @@ Development process Developers work in their own trees, then submit pull requests when they think their feature or bug fix is ready. -If it is a simple/trivial/non-controversial change, then one of the Bitcoin +If it is a simple/trivial/non-controversial change, then one of the Hypercoin development team members simply pulls it. If it is a *more complicated or potentially controversial* change, then the patch submitter will be asked to start a discussion (if they haven't already) on the -[mailing list](http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development). +[mailing list](https://groups.google.com/forum/#!forum/hypercoin-dev). The patch will be accepted if there is broad consensus that it is a good thing. Developers should expect to rework and resubmit patches if the code doesn't match the project's coding conventions (see [doc/coding.md](doc/coding.md)) or are controversial. -The `master` branch is regularly built and tested, but is not guaranteed to be -completely stable. [Tags](https://github.com/bitcoin/bitcoin/tags) are created -regularly to indicate new official, stable release versions of Bitcoin. +The `master-0.10` branch is regularly built and tested, but is not guaranteed to be +completely stable. [Tags](https://github.com/hypercoin-project/hypercoin/tags) are created +regularly to indicate new official, stable release versions of Hypercoin. Testing ------- @@ -55,36 +51,22 @@ requests than we can review and test on short notice. Please be patient and help other people's pull requests, and remember this is a security-critical project where any mistake might cost people lots of money. -### Automated Testing - -Developers are strongly encouraged to write unit tests for new code, and to -submit new unit tests for old code. Unit tests can be compiled and run (assuming they weren't disabled in configure) with: `make check` - -Every pull request is built for both Windows and Linux on a dedicated server, -and unit and sanity tests are automatically run. The binaries produced may be -used for manual QA testing — a link to them will appear in a comment on the -pull request posted by [BitcoinPullTester](https://github.com/BitcoinPullTester). See https://github.com/TheBlueMatt/test-scripts -for the build/test scripts. - ### Manual Quality Assurance (QA) Testing Large changes should have a test plan, and should be tested by somebody other than the developer who wrote the code. -See https://github.com/bitcoin/QA/ for how to create a test plan. +Creating a thread in the [Hypercoin discussion forum](https://hypercointalk.org/index.php?board=2.0) will allow the Hypercoin +development team members to review your proposal and to provide assistance with creating a test plan. + Translations ------------ -Changes to translations as well as new translations can be submitted to -[Bitcoin Core's Transifex page](https://www.transifex.com/projects/p/bitcoin/). - -Translations are periodically pulled from Transifex and merged into the git repository. See the -[translation process](doc/translation_process.md) for details on how this works. - **Important**: We do not accept translation changes as GitHub pull requests because the next pull from Transifex would automatically overwrite them again. -Translators should also subscribe to the [mailing list](https://groups.google.com/forum/#!forum/bitcoin-translators). +We only accept translation fixes that are submitted through [Bitcoin Core's Transifex page](https://www.transifex.com/projects/p/bitcoin/). +Translations are converted to Hypercoin periodically. Development tips and tricks --------------------------- @@ -107,7 +89,7 @@ to see it. **testnet and regtest modes** -Run with the -testnet option to run with "play bitcoins" on the test network, if you +Run with the -testnet option to run with "play hypercoins" on the test network, if you are testing multi-machine code that needs to operate across the internet. If you are testing something that can run on one machine, run with the -regtest option. @@ -116,7 +98,7 @@ that run in -regtest mode. **DEBUG_LOCKORDER** -Bitcoin Core is a multithreaded application, and deadlocks or other multithreading bugs +Hypercoin Core is a multithreaded application, and deadlocks or other multithreading bugs can be very difficult to track down. Compiling with -DDEBUG_LOCKORDER (configure CXXFLAGS="-DDEBUG_LOCKORDER -g") inserts run-time checks to keep track of which locks are held, and adds warnings to the debug.log file if inconsistencies are detected. diff --git a/configure.ac b/configure.ac index 173c93c538e06..0a8f0cf531863 100644 --- a/configure.ac +++ b/configure.ac @@ -1,12 +1,12 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 0) -define(_CLIENT_VERSION_MINOR, 9) -define(_CLIENT_VERSION_REVISION, 99) +define(_CLIENT_VERSION_MINOR, 10) +define(_CLIENT_VERSION_REVISION, 4) define(_CLIENT_VERSION_BUILD, 0) -define(_CLIENT_VERSION_IS_RELEASE, false) -define(_COPYRIGHT_YEAR, 2014) -AC_INIT([Bitcoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[info@bitcoin.org],[bitcoin]) +define(_CLIENT_VERSION_IS_RELEASE, true) +define(_COPYRIGHT_YEAR, 2018) +AC_INIT([Hypercoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION._CLIENT_VERSION_BUILD],[info@hypercoin.org],[hypercoin]) AC_CONFIG_SRCDIR([src/main.cpp]) AC_CONFIG_HEADERS([src/config/bitcoin-config.h]) AC_CONFIG_AUX_DIR([build-aux]) @@ -167,13 +167,13 @@ fi ## compatibility with the legacy buildsystem. ## if test "x$CXXFLAGS_overridden" = "xno"; then - CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter" + CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wno-self-assign" fi CPPFLAGS="$CPPFLAGS -DBOOST_SPIRIT_THREADSAFE -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS" AC_ARG_WITH([utils], [AS_HELP_STRING([--with-utils], - [build bitcoin-cli bitcoin-tx (default=yes)])], + [build hypercoin-cli hypercoin-tx (default=yes)])], [build_bitcoin_utils=$withval], [build_bitcoin_utils=yes]) @@ -424,8 +424,8 @@ if test x$use_hardening != xno; then if test x$TARGET_OS != xwindows; then # All windows code is PIC, forcing it on just adds useless compile warnings - AX_CHECK_COMPILE_FLAG([-fPIE],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fPIE"]) - AX_CHECK_LINK_FLAG([[-pie]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -pie"]) + AX_CHECK_COMPILE_FLAG([-fPIC],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fPIC"]) + AX_CHECK_LINK_FLAG([[-pic]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -pic"]) fi case $host in @@ -701,21 +701,44 @@ else fi fi +AC_CHECK_LIB([crypto],[RAND_egd],[],[ + AC_ARG_WITH([libressl], + [AS_HELP_STRING([--with-libressl],[Build with system LibreSSL (default is no; DANGEROUS; NOT SUPPORTED)])], + [AC_MSG_WARN([Detected LibreSSL: This is NOT supported, and may break consensus compatibility!])], + [AC_MSG_ERROR([Detected LibreSSL: This is NOT supported, and may break consensus compatibility!])] + ) +]) + CFLAGS_TEMP="$CFLAGS" LIBS_TEMP="$LIBS" CFLAGS="$CFLAGS $SSL_CFLAGS $CRYPTO_CFLAGS" LIBS="$LIBS $SSL_LIBS $CRYPTO_LIBS" AC_CHECK_HEADER([openssl/ec.h],, AC_MSG_ERROR(OpenSSL ec header missing),) + +AC_MSG_CHECKING(for a supported OpenSSL version) +AC_LINK_IFELSE([AC_LANG_PROGRAM([[ + #include + ]], + [[RAND_egd(NULL);]])], + [AC_MSG_RESULT(yes)], + [ + AC_ARG_WITH([libressl], + [AS_HELP_STRING([--with-libressl],[Build with system LibreSSL (default is no; DANGEROUS; NOT SUPPORTED)])], + [AC_MSG_WARN([Detected LibreSSL: This is NOT supported, and may break consensus compatibility!])], + [AC_MSG_ERROR([Detected LibreSSL: This is NOT supported, and may break consensus compatibility!])] + )] +) + CFLAGS="$CFLAGS_TEMP" LIBS="$LIBS_TEMP" BITCOIN_QT_PATH_PROGS([PROTOC], [protoc],$protoc_bin_path) -AC_MSG_CHECKING([whether to build bitcoind]) +AC_MSG_CHECKING([whether to build hypercoind]) AM_CONDITIONAL([BUILD_BITCOIND], [test x$build_bitcoind = xyes]) AC_MSG_RESULT($build_bitcoind) -AC_MSG_CHECKING([whether to build utils (bitcoin-cli bitcoin-tx)]) +AC_MSG_CHECKING([whether to build utils (hypercoin-cli hypercoin-tx)]) AM_CONDITIONAL([BUILD_BITCOIN_UTILS], [test x$build_bitcoin_utils = xyes]) AC_MSG_RESULT($build_bitcoin_utils) diff --git a/contrib/bitrpc/bitrpc.py b/contrib/bitrpc/bitrpc.py index 02577b1b6aab7..782d3c5712c5a 100644 --- a/contrib/bitrpc/bitrpc.py +++ b/contrib/bitrpc/bitrpc.py @@ -11,9 +11,9 @@ if rpcpass == "": - access = ServiceProxy("http://127.0.0.1:8332") + access = ServiceProxy("http://127.0.0.1:36308") else: - access = ServiceProxy("http://"+rpcuser+":"+rpcpass+"@127.0.0.1:8332") + access = ServiceProxy("http://"+rpcuser+":"+rpcpass+"@127.0.0.1:36308") cmd = sys.argv[1].lower() if cmd == "backupwallet": @@ -37,7 +37,7 @@ elif cmd == "getaccount": try: - addr = raw_input("Enter a Bitcoin address: ") + addr = raw_input("Enter a Hypercoin address: ") print access.getaccount(addr) except: print "\n---An error occurred---\n" @@ -139,7 +139,7 @@ elif cmd == "getreceivedbyaddress": try: - addr = raw_input("Enter a Bitcoin address (optional): ") + addr = raw_input("Enter a Litecoin address (optional): ") mc = raw_input("Minimum confirmations (optional): ") try: print access.getreceivedbyaddress(addr, mc) diff --git a/contrib/debian-litecoin/README.md b/contrib/debian-litecoin/README.md new file mode 100755 index 0000000000000..5d0be8c0958a3 --- /dev/null +++ b/contrib/debian-litecoin/README.md @@ -0,0 +1,21 @@ + +Debian +==================== +This directory contains files used to package litecoind/litecoin-qt +for Debian-based Linux systems. If you compile litecoind/litecoin-qt yourself, there are some useful files here. + +## litecoin: URI support ## + + +litecoin-qt.desktop (Gnome / Open Desktop) +To install: + + sudo desktop-file-install litecoin-qt.desktop + sudo update-desktop-database + +If you build yourself, you will either need to modify the paths in +the .desktop file or copy or symlink your litecoin-qt binary to `/usr/bin` +and the `../../share/pixmaps/bitcoin128.png` to `/usr/share/pixmaps` + +litecoin-qt.protocol (KDE) + diff --git a/contrib/debian-litecoin/changelog b/contrib/debian-litecoin/changelog new file mode 100755 index 0000000000000..952fb6b8b01b5 --- /dev/null +++ b/contrib/debian-litecoin/changelog @@ -0,0 +1,6 @@ +litecoin (0.10.4-precise1) precise; urgency=medium + + * New upstream release. + + -- Adrian Gallagher Sun, 14 Feb 2016 01:24:23 +1100 + diff --git a/contrib/debian-litecoin/compat b/contrib/debian-litecoin/compat new file mode 100755 index 0000000000000..e30739cb55f98 --- /dev/null +++ b/contrib/debian-litecoin/compat @@ -0,0 +1 @@ +7 diff --git a/contrib/debian-litecoin/control b/contrib/debian-litecoin/control new file mode 100755 index 0000000000000..05bce6c924a0b --- /dev/null +++ b/contrib/debian-litecoin/control @@ -0,0 +1,88 @@ +Source: litecoin +Section: utils +Priority: optional +Maintainer: Jonas Smedegaard +Uploaders: Micah Anderson +Build-Depends: debhelper, + devscripts, + automake, + libtool, + bash-completion, + libboost-system-dev (>> 1.35) | libboost-system1.35-dev, + libdb4.8++-dev, + libssl-dev, + pkg-config, + libminiupnpc8-dev | libminiupnpc-dev (>> 1.6), + libboost-filesystem-dev (>> 1.35) | libboost-filesystem1.35-dev, + libboost-program-options-dev (>> 1.35) | libboost-program-options1.35-dev, + libboost-thread-dev (>> 1.35) | libboost-thread1.35-dev, + libboost-test-dev (>> 1.35) | libboost-test1.35-dev, + qt4-qmake, + libqt4-dev, + libqrencode-dev, + libprotobuf-dev, protobuf-compiler, + python +Standards-Version: 3.9.2 +Homepage: https://www.litecoin.org/ +Vcs-Git: git://github.com/litecoin-project/litecoin.git +Vcs-Browser: https://github.com/litecoin-project/litecoin + +Package: litecoind +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: peer-to-peer network based digital currency - daemon + Litecoin is a peer-to-peer Internet currency that enables instant, + near-zero cost payments to anyone in the world. Litecoin is an open + source, global payment network that is fully decentralized without + any central authorities. Mathematics secures the network and empowers + individuals to control their own finances. Litecoin features faster + transaction confirmation times and improved storage efficiency than + the leading math-based currency. With substantial industry support, + trade volume and liquidity, Litecoin is a proven medium of commerce + complementary to Bitcoin. + . + Full transaction history is stored locally at each client. This + requires 5+ GB of space, slowly growing. + . + This package provides the daemon, litecoind, and the CLI tool + litecoin-cli to interact with the daemon. + +Package: litecoin-qt +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: peer-to-peer network based digital currency - Qt GUI + Litecoin is a peer-to-peer Internet currency that enables instant, + near-zero cost payments to anyone in the world. Litecoin is an open + source, global payment network that is fully decentralized without + any central authorities. Mathematics secures the network and empowers + individuals to control their own finances. Litecoin features faster + transaction confirmation times and improved storage efficiency than + the leading math-based currency. With substantial industry support, + trade volume and liquidity, Litecoin is a proven medium of commerce + complementary to Bitcoin. + . + Full transaction history is stored locally at each client. This + requires 5+ GB of space, slowly growing. + . + This package provides Litecoin-Qt, a GUI for Litecoin based on Qt. + +Package: litecoin-tx +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: peer-to-peer digital currency - standalone transaction tool + Litecoin is a peer-to-peer Internet currency that enables instant, + near-zero cost payments to anyone in the world. Litecoin is an open + source, global payment network that is fully decentralized without + any central authorities. Mathematics secures the network and empowers + individuals to control their own finances. Litecoin features faster + transaction confirmation times and improved storage efficiency than + the leading math-based currency. With substantial industry support, + trade volume and liquidity, Litecoin is a proven medium of commerce + complementary to Bitcoin. + . + Full transaction history is stored locally at each client. This + requires 5+ GB of space, slowly growing. + . + This package provides litecoin-tx, a command-line transaction creation + tool which can be used without a litecoin daemon. Some means of + exchanging minimal transaction data with peers is still required. diff --git a/contrib/debian-litecoin/copyright b/contrib/debian-litecoin/copyright new file mode 100755 index 0000000000000..10c3c266b2f08 --- /dev/null +++ b/contrib/debian-litecoin/copyright @@ -0,0 +1,165 @@ +Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=174 +Upstream-Name: Bitcoin +Upstream-Contact: Satoshi Nakamoto + irc://#bitcoin@freenode.net +Source: https://github.com/bitcoin/bitcoin + +Files: * +Copyright: 2009-2012, Bitcoin Core Developers +License: Expat +Comment: The Bitcoin Core Developers encompasses the current developers listed on bitcoin.org, + as well as the numerous contributors to the project. + +Files: src/json/* +Copyright: 2007-2009, John W. Wilkinson +License: Expat + +Files: src/strlcpy.h +Copyright: 1998, Todd C. Miller +License: ISC + +Files: debian/* +Copyright: 2010-2011, Jonas Smedegaard + 2011, Matt Corallo +License: GPL-2+ + +Files: debian/manpages/* +Copyright: Micah Anderson +License: GPL-3+ + +Files: src/qt/res/icons/clock*.png, src/qt/res/icons/tx*.png, + src/qt/res/src/*.svg +Copyright: Wladimir van der Laan +License: Expat + +Files: src/qt/res/icons/address-book.png, src/qt/res/icons/export.png, + src/qt/res/icons/history.png, src/qt/res/icons/key.png, + src/qt/res/icons/lock_*.png, src/qt/res/icons/overview.png, + src/qt/res/icons/receive.png, src/qt/res/icons/send.png, + src/qt/res/icons/synced.png, src/qt/res/icons/filesave.png +Copyright: David Vignoni (david@icon-king.com) + ICON KING - www.icon-king.com +License: LGPL +Comment: NUVOLA ICON THEME for KDE 3.x + Original icons: kaddressbook, klipper_dock, view-list-text, + key-password, encrypted/decrypted, go-home, go-down, + go-next, dialog-ok + Site: http://www.icon-king.com/projects/nuvola/ + +Files: src/qt/res/icons/connect*.png +Copyright: schollidesign +License: GPL-3+ +Comment: Icon Pack: Human-O2 + Site: http://findicons.com/icon/93743/blocks_gnome_netstatus_0 + +Files: src/qt/res/icons/transaction*.png +Copyright: md2k7 +License: Expat +Comment: Site: https://bitcointalk.org/index.php?topic=15276.0 + +Files: src/qt/res/icons/configure.png, src/qt/res/icons/quit.png, + src/qt/res/icons/editcopy.png, src/qt/res/icons/editpaste.png, + src/qt/res/icons/add.png, src/qt/res/icons/edit.png, + src/qt/res/icons/remove.png +Copyright: http://www.everaldo.com +License: LGPL +Comment: Icon Pack: Crystal SVG + +Files: src/qt/res/icons/bitcoin.png, src/qt/res/icons/toolbar.png +Copyright: Bitboy (optimized for 16x16 by Wladimir van der Laan) +License: PUB-DOM +Comment: Site: https://bitcointalk.org/?topic=1756.0 + +Files: scripts/img/reload.xcf, src/qt/res/movies/*.png +Copyright: Everaldo (Everaldo Coelho) +License: GPL-3+ +Comment: Icon Pack: Kids + Site: http://findicons.com/icon/17102/reload?id=17102 + +Files: src/qt/res/images/splash2.jpg +License: PUB-DOM +Copyright: Crobbo (forum) +Comment: Site: https://bitcointalk.org/index.php?topic=32273.0 + + +License: Expat + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + . + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License: ISC + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + . + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL + WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR + BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS + SOFTWARE. + +License: GPL-2+ + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2, or (at your option) any + later version. + . + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. +Comment: + On Debian systems the GNU General Public License (GPL) version 2 is + located in '/usr/share/common-licenses/GPL-2'. + . + You should have received a copy of the GNU General Public License along + with this program. If not, see . + +License: GPL-3+ + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU General Public License, Version 3 or any + later version published by the Free Software Foundation. +Comment: + On Debian systems the GNU General Public License (GPL) version 3 is + located in '/usr/share/common-licenses/GPL-3'. + . + You should have received a copy of the GNU General Public License along + with this program. If not, see . + +License: LGPL + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. +Comment: + On Debian systems the GNU Lesser General Public License (LGPL) is + located in '/usr/share/common-licenses/LGPL'. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +License: PUB-DOM + This work is in the public domain. diff --git a/contrib/debian-litecoin/examples/litecoin.conf b/contrib/debian-litecoin/examples/litecoin.conf new file mode 100755 index 0000000000000..bed7cdcb8135a --- /dev/null +++ b/contrib/debian-litecoin/examples/litecoin.conf @@ -0,0 +1,115 @@ +## +## litecoin.conf configuration file. Lines beginning with # are comments. +## + +# Network-related settings: + +# Run on the test network instead of the real litecoin network. +#testnet=0 + +# Run a regression test network +#regtest=0 + +# Connect via a SOCKS5 proxy +#proxy=127.0.0.1:9050 + +############################################################## +## Quick Primer on addnode vs connect ## +## Let's say for instance you use addnode=4.2.2.4 ## +## addnode will connect you to and tell you about the ## +## nodes connected to 4.2.2.4. In addition it will tell ## +## the other nodes connected to it that you exist so ## +## they can connect to you. ## +## connect will not do the above when you 'connect' to it. ## +## It will *only* connect you to 4.2.2.4 and no one else.## +## ## +## So if you're behind a firewall, or have other problems ## +## finding nodes, add some using 'addnode'. ## +## ## +## If you want to stay private, use 'connect' to only ## +## connect to "trusted" nodes. ## +## ## +## If you run multiple nodes on a LAN, there's no need for ## +## all of them to open lots of connections. Instead ## +## 'connect' them all to one node that is port forwarded ## +## and has lots of connections. ## +## Thanks goes to [Noodle] on Freenode. ## +############################################################## + +# Use as many addnode= settings as you like to connect to specific peers +#addnode=69.164.218.197 +#addnode=10.0.0.2:36307 + +# Alternatively use as many connect= settings as you like to connect ONLY to specific peers +#connect=69.164.218.197 +#connect=10.0.0.1:36307 + +# Listening mode, enabled by default except when 'connect' is being used +#listen=1 + +# Maximum number of inbound+outbound connections. +#maxconnections= + +# +# JSON-RPC options (for controlling a running Litecoin/litecoind process) +# + +# server=1 tells Litecoin-Qt and litecoind to accept JSON-RPC commands +#server=0 + +# You must set rpcuser and rpcpassword to secure the JSON-RPC api +#rpcuser=Ulysseys +#rpcpassword=YourSuperGreatPasswordNumber_DO_NOT_USE_THIS_OR_YOU_WILL_GET_ROBBED_385593 + +# How many seconds litecoin will wait for a complete RPC HTTP request. +# after the HTTP connection is established. +#rpctimeout=30 + +# By default, only RPC connections from localhost are allowed. +# Specify as many rpcallowip= settings as you like to allow connections from other hosts, +# either as a single IPv4/IPv6 or with a subnet specification. + +# NOTE: opening up the RPC port to hosts outside your local trusted network is NOT RECOMMENDED, +# because the rpcpassword is transmitted over the network unencrypted. + +# server=1 tells Litecoin-Qt to accept JSON-RPC commands. +# it is also read by litecoind to determine if RPC should be enabled +#rpcallowip=10.1.1.34/255.255.255.0 +#rpcallowip=1.2.3.4/24 +#rpcallowip=2001:db8:85a3:0:0:8a2e:370:7334/96 + +# Listen for RPC connections on this TCP port: +#rpcport=36308 + +# You can use Litecoin or litecoind to send commands to Litecoin/litecoind +# running on another host using this option: +#rpcconnect=127.0.0.1 + +# Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate +# with Litecoin -server or litecoind +#rpcssl=1 + +# OpenSSL settings used when rpcssl=1 +#rpcsslciphers=TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH +#rpcsslcertificatechainfile=server.cert +#rpcsslprivatekeyfile=server.pem + + +# Miscellaneous options + +# Pre-generate this many public/private key pairs, so wallet backups will be valid for +# both prior transactions and several dozen future transactions. +#keypool=100 + +# Pay an optional transaction fee every time you send litecoins. Transactions with fees +# are more likely than free transactions to be included in generated blocks, so may +# be validated sooner. +#paytxfee=0.00 + +# User interface options + +# Start Litecoin minimized +#min=1 + +# Minimize to the system tray +#minimizetotray=1 diff --git a/contrib/debian-litecoin/gbp.conf b/contrib/debian-litecoin/gbp.conf new file mode 100755 index 0000000000000..276bb9f618efd --- /dev/null +++ b/contrib/debian-litecoin/gbp.conf @@ -0,0 +1,5 @@ +# Configuration file for git-buildpackage and friends + +[DEFAULT] +pristine-tar = True +sign-tags = True diff --git a/contrib/debian-litecoin/litecoin-qt.desktop b/contrib/debian-litecoin/litecoin-qt.desktop new file mode 100755 index 0000000000000..7d75c1c8b728d --- /dev/null +++ b/contrib/debian-litecoin/litecoin-qt.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Litecoin +Comment=Litecoin P2P Cryptocurrency +Exec=litecoin-qt %u +Terminal=false +Type=Application +Icon=bitcoin128 +MimeType=x-scheme-handler/litecoin; +Categories=Office;Finance; +Name[en_US]=litecoin-qt.desktop diff --git a/contrib/debian-litecoin/litecoin-qt.install b/contrib/debian-litecoin/litecoin-qt.install new file mode 100755 index 0000000000000..f4e6e57224ea4 --- /dev/null +++ b/contrib/debian-litecoin/litecoin-qt.install @@ -0,0 +1,6 @@ +usr/local/bin/litecoin-qt usr/bin +share/pixmaps/bitcoin32.xpm usr/share/pixmaps +share/pixmaps/bitcoin16.xpm usr/share/pixmaps +share/pixmaps/bitcoin128.png usr/share/pixmaps +debian/litecoin-qt.desktop usr/share/applications +debian/litecoin-qt.protocol usr/share/kde4/services/ diff --git a/contrib/debian-litecoin/litecoin-qt.lintian-overrides b/contrib/debian-litecoin/litecoin-qt.lintian-overrides new file mode 100755 index 0000000000000..6aebecd0ddf7b --- /dev/null +++ b/contrib/debian-litecoin/litecoin-qt.lintian-overrides @@ -0,0 +1,2 @@ +# Linked code is Expat - only Debian packaging is GPL-2+ +litecoin-qt: possible-gpl-code-linked-with-openssl diff --git a/contrib/debian-litecoin/litecoin-qt.protocol b/contrib/debian-litecoin/litecoin-qt.protocol new file mode 100755 index 0000000000000..75a9d0f4d6ebb --- /dev/null +++ b/contrib/debian-litecoin/litecoin-qt.protocol @@ -0,0 +1,11 @@ +[Protocol] +exec=litecoin-qt '%u' +protocol=litecoin +input=none +output=none +helper=true +listing= +reading=false +writing=false +makedir=false +deleting=false diff --git a/contrib/debian-litecoin/litecoin-tx.install b/contrib/debian-litecoin/litecoin-tx.install new file mode 100755 index 0000000000000..3146d33d93119 --- /dev/null +++ b/contrib/debian-litecoin/litecoin-tx.install @@ -0,0 +1 @@ +usr/local/bin/litecoin-tx usr/bin diff --git a/contrib/debian-litecoin/litecoind.bash-completion b/contrib/debian-litecoin/litecoind.bash-completion new file mode 100755 index 0000000000000..ebd5a4672f752 --- /dev/null +++ b/contrib/debian-litecoin/litecoind.bash-completion @@ -0,0 +1 @@ +contrib/litecoind.bash-completion litecoind diff --git a/contrib/debian-litecoin/litecoind.examples b/contrib/debian-litecoin/litecoind.examples new file mode 100755 index 0000000000000..9022b6463b3ca --- /dev/null +++ b/contrib/debian-litecoin/litecoind.examples @@ -0,0 +1 @@ +debian/examples/litecoin.conf diff --git a/contrib/debian-litecoin/litecoind.install b/contrib/debian-litecoin/litecoind.install new file mode 100755 index 0000000000000..c5fad2e0587fc --- /dev/null +++ b/contrib/debian-litecoin/litecoind.install @@ -0,0 +1,2 @@ +usr/local/bin/litecoind usr/bin +usr/local/bin/litecoin-cli usr/bin diff --git a/contrib/debian-litecoin/litecoind.lintian-overrides b/contrib/debian-litecoin/litecoind.lintian-overrides new file mode 100755 index 0000000000000..91804f23aff49 --- /dev/null +++ b/contrib/debian-litecoin/litecoind.lintian-overrides @@ -0,0 +1,2 @@ +# Linked code is Expat - only Debian packaging is GPL-2+ +litecoind: possible-gpl-code-linked-with-openssl diff --git a/contrib/debian-litecoin/litecoind.manpages b/contrib/debian-litecoin/litecoind.manpages new file mode 100755 index 0000000000000..902cc193a87d7 --- /dev/null +++ b/contrib/debian-litecoin/litecoind.manpages @@ -0,0 +1,2 @@ +debian/manpages/litecoind.1 +debian/manpages/litecoin.conf.5 diff --git a/contrib/debian-litecoin/manpages/litecoin-qt.1 b/contrib/debian-litecoin/manpages/litecoin-qt.1 new file mode 100755 index 0000000000000..e52a465c31371 --- /dev/null +++ b/contrib/debian-litecoin/manpages/litecoin-qt.1 @@ -0,0 +1,203 @@ +.TH LITECOIN-QT "1" "April 2013" "litecoin-qt 1" +.SH NAME +litecoin-qt \- peer-to-peer network based digital currency +.SH DESCRIPTION +.SS "Usage:" +.IP +litecoin\-qt [command\-line options] +.SH OPTIONS +.TP +\-? +This help message +.TP +\fB\-conf=\fR +Specify configuration file (default: litecoin.conf) +.TP +\fB\-pid=\fR +Specify pid file (default: litecoind.pid) +.TP +\fB\-gen\fR +Generate coins +.TP +\fB\-gen\fR=\fI0\fR +Don't generate coins +.TP +\fB\-datadir=\fR +Specify data directory +.TP +\fB\-dbcache=\fR +Set database cache size in megabytes (default: 25) +.TP +\fB\-timeout=\fR +Specify connection timeout in milliseconds (default: 5000) +.TP +\fB\-proxy=\fR +Connect through SOCKS5 proxy +.TP +\fB\-tor=\fR +Use proxy to reach tor hidden services (default: same as \fB\-proxy\fR) +.TP +\fB\-dns\fR +Allow DNS lookups for \fB\-addnode\fR, \fB\-seednode\fR and \fB\-connect\fR +.TP +\fB\-port=\fR +Listen for connections on (default: 36307 or testnet: 46307) +.TP +\fB\-maxconnections=\fR +Maintain at most connections to peers (default: 125) +.TP +\fB\-addnode=\fR +Add a node to connect to and attempt to keep the connection open +.TP +\fB\-connect=\fR +Connect only to the specified node(s) +.TP +\fB\-seednode=\fR +Connect to a node to retrieve peer addresses, and disconnect +.TP +\fB\-externalip=\fR +Specify your own public address +.TP +\fB\-onlynet=\fR +Only connect to nodes in network (IPv4, IPv6 or Tor) +.TP +\fB\-discover\fR +Discover own IP address (default: 1 when listening and no \fB\-externalip\fR) +.TP +\fB\-checkpoints\fR +Only accept block chain matching built\-in checkpoints (default: 1) +.TP +\fB\-listen\fR +Accept connections from outside (default: 1 if no \fB\-proxy\fR or \fB\-connect\fR) +.TP +\fB\-bind=\fR +Bind to given address and always listen on it. Use [host]:port notation for IPv6 +.TP +\fB\-dnsseed\fR +Find peers using DNS lookup (default: 1 unless \fB\-connect\fR) +.TP +\fB\-banscore=\fR +Threshold for disconnecting misbehaving peers (default: 100) +.TP +\fB\-bantime=\fR +Number of seconds to keep misbehaving peers from reconnecting (default: 86400) +.TP +\fB\-maxreceivebuffer=\fR +Maximum per\-connection receive buffer, *1000 bytes (default: 5000) +.TP +\fB\-maxsendbuffer=\fR +Maximum per\-connection send buffer, *1000 bytes (default: 1000) +.TP +\fB\-upnp\fR +Use UPnP to map the listening port (default: 1 when listening) +.TP +\fB\-paytxfee=\fR +Fee per KB to add to transactions you send +.TP +\fB\-server\fR +Accept command line and JSON\-RPC commands +.TP +\fB\-testnet\fR +Use the test network +.TP +\fB\-debug\fR +Output extra debugging information. Implies all other \fB\-debug\fR* options +.TP +\fB\-debugnet\fR +Output extra network debugging information +.TP +\fB\-logtimestamps\fR +Prepend debug output with timestamp +.TP +\fB\-shrinkdebugfile\fR +Shrink debug.log file on client startup (default: 1 when no \fB\-debug\fR) +.TP +\fB\-printtoconsole\fR +Send trace/debug info to console instead of debug.log file +.TP +\fB\-rpcuser=\fR +Username for JSON\-RPC connections +.TP +\fB\-rpcpassword=\fR +Password for JSON\-RPC connections +.TP +\fB\-rpcport=\fR +Listen for JSON\-RPC connections on (default: 36308 or testnet: 46308) +.TP +\fB\-rpcallowip=\fR +Allow JSON\-RPC connections from specified IP address +.TP +\fB\-rpcthreads=\fR +Set the number of threads to service RPC calls (default: 4) +.TP +\fB\-blocknotify=\fR +Execute command when the best block changes (%s in cmd is replaced by block hash) +.TP +\fB\-walletnotify=\fR +Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) +.TP +\fB\-alertnotify=\fR +Execute command when a relevant alert is received (%s in cmd is replaced by message) +.TP +\fB\-upgradewallet\fR +Upgrade wallet to latest format +.TP +\fB\-keypool=\fR +Set key pool size to (default: 100) +.TP +\fB\-rescan\fR +Rescan the block chain for missing wallet transactions +.TP +\fB\-salvagewallet\fR +Attempt to recover private keys from a corrupt wallet.dat +.TP +\fB\-checkblocks=\fR +How many blocks to check at startup (default: 288, 0 = all) +.TP +\fB\-checklevel=\fR +How thorough the block verification is (0\-4, default: 3) +.TP +\fB\-txindex\fR +Maintain a full transaction index (default: 0) +.TP +\fB\-loadblock=\fR +Imports blocks from external blk000??.dat file +.TP +\fB\-reindex\fR +Rebuild block chain index from current blk000??.dat files +.TP +\fB\-par=\fR +Set the number of script verification threads (1\-16, 0=auto, default: 0) +.SS "Block creation options:" +.TP +\fB\-blockminsize=\fR +Set minimum block size in bytes (default: 0) +.TP +\fB\-blockmaxsize=\fR +Set maximum block size in bytes (default: 250000) +.HP +\fB\-blockprioritysize=\fR Set maximum size of high\-priority/low\-fee transactions in bytes (default: 27000) +.PP +SSL options: (see the Litecoin Wiki for SSL setup instructions) +.TP +\fB\-rpcssl\fR +Use OpenSSL (https) for JSON\-RPC connections +.TP +\fB\-rpcsslcertificatechainfile=\fR +Server certificate file (default: server.cert) +.TP +\fB\-rpcsslprivatekeyfile=\fR +Server private key (default: server.pem) +.TP +\fB\-rpcsslciphers=\fR +Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) +.SS "UI options:" +.TP +\fB\-lang=\fR +Set language, for example "de_DE" (default: system locale) +.TP +\fB\-min\fR +Start minimized +.TP +\fB\-splash\fR +Show splash screen on startup (default: 1) diff --git a/contrib/debian-litecoin/manpages/litecoin.conf.5 b/contrib/debian-litecoin/manpages/litecoin.conf.5 new file mode 100755 index 0000000000000..f3f22d0960ca6 --- /dev/null +++ b/contrib/debian-litecoin/manpages/litecoin.conf.5 @@ -0,0 +1,89 @@ +.TH LITECOIN.CONF "5" "January 2011" "litecoin.conf 3.19" +.SH NAME +litecoin.conf \- litecoin configuration file +.SH SYNOPSIS +All command-line options (except for '\-conf') may be specified in a configuration file, and all configuration file options may also be specified on the command line. Command-line options override values set in the configuration file. +.TP +The configuration file is a list of 'setting=value' pairs, one per line, with optional comments starting with the '#' character. +.TP +The configuration file is not automatically created; you can create it using your favorite plain-text editor. By default, litecoind(1) will look for a file named litecoin.conf(5) in the litecoin data directory, but both the data directory and the configuration file path may be changed using the '\-datadir' and '\-conf' command-line arguments. +.SH LOCATION +litecoin.conf should be located in $HOME/.litecoin +.SH NETWORK-RELATED SETTINGS +.TP +.TP +\fBtestnet=\fR[\fI'1'\fR|\fI'0'\fR] +Enable or disable run on the test network instead of the real *litecoin* network. +.TP +\fBproxy=\fR\fI'127.0.0.1:9050'\fR +Connect via a socks4 proxy. +.TP +\fBaddnode=\fR\fI'10.0.0.2:36307'\fR +Use as many *addnode=* settings as you like to connect to specific peers. +.TP +\fBconnect=\fR\fI'10.0.0.1:36307'\fR +Use as many *connect=* settings as you like to connect ONLY to specific peers. +.TP +\fRmaxconnections=\fR\fI'value'\fR +Maximum number of inbound+outbound connections. +.SH JSON-RPC OPTIONS +.TP +\fBserver=\fR[\fI'1'\fR|\fI'0'\fR] +Tells *litecoin* to accept or not accept JSON-RPC commands. +.TP +\fBrpcuser=\fR\fI'username'\fR +You must set *rpcuser* to secure the JSON-RPC api. +.TP +\fBrpcpassword=\fR\fI'password'\fR +You must set *rpcpassword* to secure the JSON-RPC api. +.TP +\fBrpcallowip=\fR\fI'192.168.1.*'\fR +By default, only RPC connections from localhost are allowed. Specify as many *rpcallowip=* settings as you like to allow connections from other hosts (and you may use * as a wildcard character). +.TP +\fBrpcport=\fR\fI'36308'\fR +Listen for RPC connections on this TCP port. +.TP +\fBrpcconnect=\fR\fI'127.0.0.1'\fR +You can use *litecoin* or *litecoind(1)* to send commands to *litecoin*/*litecoind(1)* running on another host using this option. +.TP +\fBrpcssl=\fR\fI'1'\fR +Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate with *litecoin* '\-server' or *litecoind(1)*. Example of OpenSSL settings used when *rpcssl*='1': +.TP +\fB\-rpcsslciphers=\fR +Acceptable ciphers (default: TLSv1+HIGH:\:!SSLv2:\:!aNULL:\:!eNULL:\:!AH:\:!3DES:\:@STRENGTH) +.TP +\fBrpcsslcertificatechainfile=\fR\fI'server.cert'\fR +.TP +\fBrpcsslprivatekeyfile=\fR\fI'server.pem'\fR +.TP +.SH MISCELLANEOUS OPTIONS +.TP +\fBgen=\fR[\fI'0'\fR|\fI'1'\fR] +Enable or disable attempt to generate litecoins. +.TP +\fB4way=\fR[\fI'0'\fR|\fI'1'\fR] +Enable or disable use SSE instructions to try to generate litecoins faster. +.TP +\fBkeypool=\fR\fI'100'\fR +Pre-generate this many public/private key pairs, so wallet backups will be valid for both prior transactions and several dozen future transactions. +.TP +\fBpaytxfee=\fR\fI'0.00'\fR +Pay an optional transaction fee every time you send litecoins. Transactions with fees are more likely than free transactions to be included in generated blocks, so may be validated sooner. +.TP +\fBallowreceivebyip=\fR\fI'1'\fR +Allow direct connections for the 'pay via IP address' feature. +.TP +.SH USER INTERFACE OPTIONS +.TP +\fBmin=\fR[\fI'0'\fR|\fI'1'\fR] +Enable or disable start litecoind minimized. +.TP +\fBminimizetotray=\fR[\fI'0'\fR|\fI'1'\fR] +Enable or disable minimize to the system tray. +.SH "SEE ALSO" +litecoind(1) +.SH AUTHOR +This manual page was written by Micah Anderson for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or any later version published by the Free Software Foundation. + +On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. + diff --git a/contrib/debian-litecoin/manpages/litecoind.1 b/contrib/debian-litecoin/manpages/litecoind.1 new file mode 100755 index 0000000000000..f04fe069c3521 --- /dev/null +++ b/contrib/debian-litecoin/manpages/litecoind.1 @@ -0,0 +1,209 @@ +.TH LITECOIND "1" "January 2011" "litecoind 3.19" +.SH NAME +litecoind \- peer-to-peer network based digital currency +.SH SYNOPSIS +litecoin [options] [params] +.TP +litecoin [options] help \- Get help for a command +.SH DESCRIPTION +This manual page documents the litecoind program. Litecoin is a peer-to-peer digital currency. Peer-to-peer (P2P) means that there is no central authority to issue new money or keep track of transactions. Instead, these tasks are managed collectively by the nodes of the network. Advantages: + +Litecoins can be sent easily through the Internet, without having to trust middlemen. Transactions are designed to be irreversible. Be safe from instability caused by fractional reserve banking and central banks. The limited inflation of the Litecoin system’s money supply is distributed evenly (by CPU power) throughout the network, not monopolized by banks. + +.SH OPTIONS +.TP +\fB\-conf=\fR +Specify configuration file (default: litecoin.conf) +.TP +\fB\-gen\fR +Generate coins +.TP +\fB\-gen\fR=\fI0\fR +Don't generate coins +.TP +\fB\-min\fR +Start minimized +.TP +\fB\-datadir=\fR +Specify data directory +.TP +\fB\-proxy=\fR +Connect through SOCKS5 proxy +.TP +\fB\-addnode=\fR +Add a node to connect to +.TP +\fB\-connect=\fR +Connect only to the specified node +.TP +\fB\-paytxfee=\fR +Fee per KB to add to transactions you send +.TP +\fB\-server\fR +Accept command line and JSON\-RPC commands +.TP +\fB\-daemon\fR +Run in the background as a daemon and accept commands +.TP +\fB\-testnet\fR +Use the test network +.TP +\fB\-rpcuser=\fR +Username for JSON\-RPC connections +.TP +\fB\-rpcpassword=\fR +Password for JSON\-RPC connections +.TP +\fB\-rpcport=\fR +Listen for JSON\-RPC connections on +.TP +\fB\-rpcallowip=\fR +Allow JSON\-RPC connections from specified IP address +.TP +\fB\-rpcconnect=\fR +Send commands to node running on +.PP +SSL options: (see the Litecoin Wiki for SSL setup instructions) +.TP +\fB\-rpcssl\fR=\fI1\fR +Use OpenSSL (https) for JSON\-RPC connections +.TP +\fB\-rpcsslcertificatchainfile=\fR +Server certificate file (default: server.cert) +.TP +\fB\-rpcsslprivatekeyfile=\fR +Server private key (default: server.pem) +.TP +\fB\-rpcsslciphers=\fR +Acceptable ciphers (default: TLSv1+HIGH:\:!SSLv2:\:!aNULL:\:!eNULL:\:!AH:\:!3DES:\:@STRENGTH) +.TP +\-? +This help message +.SH COMMANDS +.TP +\fBbackupwallet 'destination'\fR +Safely copies *wallet.dat* to 'destination', which can be a directory or a path with filename. +.TP +\fBgetaccount 'litecoinaddress'\fR +Returns the account associated with the given address. +.TP +\fBsetaccount 'litecoinaddress' ['account']\fR +Sets the ['account'] associated with the given address. ['account'] may be omitted to remove an address from ['account']. +.TP +\fBgetaccountaddress 'account'\fR +Returns a new litecoin address for 'account'. +.TP +\fBgetaddressesbyaccount 'account'\fR +Returns the list of addresses associated with the given 'account'. +.TP +\fBgetbalance 'account'\fR +Returns the server's available balance, or the balance for 'account'. +.TP +\fBgetblockcount\fR +Returns the number of blocks in the longest block chain. +.TP +\fBgetblocknumber\fR +Returns the block number of the latest block in the longest block chain. +.TP +\fBgetconnectioncount\fR +Returns the number of connections to other nodes. +.TP +\fBgetdifficulty\fR +Returns the proof-of-work difficulty as a multiple of the minimum difficulty. +.TP +\fBgetgenerate\fR +Returns boolean true if server is trying to generate litecoins, false otherwise. +.TP +\fBsetgenerate 'generate' ['genproclimit']\fR +Generation is limited to ['genproclimit'] processors, \-1 is unlimited. +.TP +\fBgethashespersec\fR +Returns a recent hashes per second performance measurement while generating. +.TP +\fBgetinfo\fR +Returns an object containing server information. +.TP +\fBgetnewaddress 'account'\fR +Returns a new litecoin address for receiving payments. If 'account' is specified (recommended), it is added to the address book so payments received with the address will be credited to 'account'. +.TP +\fBgetreceivedbyaccount 'account' ['minconf=1']\fR +Returns the total amount received by addresses associated with 'account' in transactions with at least ['minconf'] confirmations. +.TP +\fBgetreceivedbyaddress 'litecoinaddress' ['minconf=1']\fR +Returns the total amount received by 'litecoinaddress' in transactions with at least ['minconf'] confirmations. +.TP +\fBgettransaction 'txid'\fR +Returns information about a specific transaction, given hexadecimal transaction ID. +.TP +\fBgetwork 'data'\fR +If 'data' is specified, tries to solve the block and returns true if it was successful. If 'data' is not specified, returns formatted hash 'data' to work on: + + "midstate" : precomputed hash state after hashing the first half of the data. + "data" : block data. + "hash1" : formatted hash buffer for second hash. + "target" : little endian hash target. +.TP +\fBhelp 'command'\fR +List commands, or get help for a command. +.TP +\fBlistaccounts ['minconf=1']\fR +List accounts and their current balances. + *note: requires litecoin 0.3.20 or later. +.TP +\fBlistreceivedbyaccount ['minconf=1'] ['includeempty=false']\fR +['minconf'] is the minimum number of confirmations before payments are included. ['includeempty'] whether to include addresses that haven't received any payments. Returns an array of objects containing: + + "account" : the account of the receiving address. + "amount" : total amount received by the address. + "confirmations" : number of confirmations of the most recent transaction included. +.TP +\fBlistreceivedbyaddress ['minconf=1'] ['includeempty=false']\fR +['minconf'] is the minimum number of confirmations before payments are included. ['includeempty'] whether to include addresses that haven't received any payments. Returns an array of objects containing: + + "address" : receiving address. + "account" : the account of the receiving address. + "amount" : total amount received by the address. + "confirmations" : number of confirmations of the most recent transaction included. +.TP +\fBlisttransactions 'account' ['count=10']\fR +Returns a list of the last ['count'] transactions for 'account' \- for all accounts if 'account' is not specified or is "*". Each entry in the list may contain: + + "category" : will be generate, send, receive, or move. + "amount" : amount of transaction. + "fee" : Fee (if any) paid (only for send transactions). + "confirmations" : number of confirmations (only for generate/send/receive). + "txid" : transaction ID (only for generate/send/receive). + "otheraccount" : account funds were moved to or from (only for move). + "message" : message associated with transaction (only for send). + "to" : message-to associated with transaction (only for send). + + *note: requires litecoin 0.3.20 or later. +.TP +\fBmove <'fromaccount'> <'toaccount'> <'amount'> ['minconf=1'] ['comment']\fR +Moves funds between accounts. +.TP +\fBsendfrom* <'account'> <'litecoinaddress'> <'amount'> ['minconf=1'] ['comment'] ['comment-to']\fR +Sends amount from account's balance to 'litecoinaddress'. This method will fail if there is less than amount litecoins with ['minconf'] confirmations in the account's balance (unless account is the empty-string-named default account; it behaves like the *sendtoaddress* method). Returns transaction ID on success. +.TP +\fBsendtoaddress 'litecoinaddress' 'amount' ['comment'] ['comment-to']\fR +Sends amount from the server's available balance to 'litecoinaddress'. amount is a real and is rounded to the nearest 0.01. Returns transaction id on success. +.TP +\fBstop\fR +Stops the litecoin server. +.TP +\fBvalidateaddress 'litecoinaddress'\fR +Checks that 'litecoinaddress' looks like a proper litecoin address. Returns an object containing: + + "isvalid" : true or false. + "ismine" : true if the address is in the server's wallet. + "address" : litecoinaddress. + + *note: ismine and address are only returned if the address is valid. + +.SH "SEE ALSO" +litecoin.conf(5) +.SH AUTHOR +This manual page was written by Micah Anderson for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or any later version published by the Free Software Foundation. + +On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. + diff --git a/contrib/debian-litecoin/patches/README b/contrib/debian-litecoin/patches/README new file mode 100755 index 0000000000000..90af430611742 --- /dev/null +++ b/contrib/debian-litecoin/patches/README @@ -0,0 +1,3 @@ +0xxx: Grabbed from upstream development. +1xxx: Possibly relevant for upstream adoption. +2xxx: Only relevant for official Debian release. diff --git a/contrib/debian-litecoin/patches/series b/contrib/debian-litecoin/patches/series new file mode 100755 index 0000000000000..d3f5a12faa997 --- /dev/null +++ b/contrib/debian-litecoin/patches/series @@ -0,0 +1 @@ + diff --git a/contrib/debian-litecoin/rules b/contrib/debian-litecoin/rules new file mode 100755 index 0000000000000..d6f2f075c4bcc --- /dev/null +++ b/contrib/debian-litecoin/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f +# -*- mode: makefile; coding: utf-8 -*- + +#DEB_MAKE_CHECK_TARGET = test_litecoin +#build/litecoind:: +# $(if $(filter nocheck,$(DEB_BUILD_OPTIONS)),,src/test_litecoin) + +DEB_INSTALL_EXAMPLES_bitcoind += debian/examples/* +DEB_INSTALL_MANPAGES_bitcoind += debian/manpages/* + +%: + dh --with bash-completion $@ + +override_dh_auto_clean: + if [ -f Makefile ]; then $(MAKE) distclean; fi + rm -rf Makefile.in aclocal.m4 configure src/Makefile.in src/bitcoin-config.h.in src/build-aux src/qt/Makefile.in src/qt/test/Makefile.in src/test/Makefile.in + +# Yea, autogen should be run on the source archive, but I like doing git archive +override_dh_auto_configure: + ./autogen.sh + ./configure + +override_dh_auto_test: + make check diff --git a/contrib/debian-litecoin/source/format b/contrib/debian-litecoin/source/format new file mode 100755 index 0000000000000..db1d7186e5de1 --- /dev/null +++ b/contrib/debian-litecoin/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/contrib/debian-litecoin/watch b/contrib/debian-litecoin/watch new file mode 100755 index 0000000000000..a2963b75abea3 --- /dev/null +++ b/contrib/debian-litecoin/watch @@ -0,0 +1,7 @@ +# Run the "uscan" command to check for upstream updates and more. +version=3 +# use qa.debian.org redirector; see man uscan +opts=uversionmangle=s/(\d)(alpha|beta|rc)/$1~$2/;s/\-src//,dversionmangle=s/~dfsg\d*// \ + http://sf.net/bitcoin/bitcoin-(\d.*)-linux\.tar\.gz debian +opts=uversionmangle=s/(\d)(alpha|beta|rc)/$1~$2/,dversionmangle=s/~dfsg\d*// \ + http://githubredir.debian.net/github/bitcoin/bitcoin v(.*).tar.gz diff --git a/contrib/debian/bitcoin-tx.install b/contrib/debian/bitcoin-tx.install new file mode 100644 index 0000000000000..2c21052a6876b --- /dev/null +++ b/contrib/debian/bitcoin-tx.install @@ -0,0 +1 @@ +usr/local/bin/bitcoin-tx usr/bin diff --git a/contrib/debian/changelog b/contrib/debian/changelog index fe910b65a5578..2843fb904e9ad 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,39 @@ +bitcoin (0.10.2-precise1) precise; urgency=medium + + * New upstream release. + + -- Matt Corallo (BlueMatt) Mon, 29 Jun 2015 17:33:00 -1000 + +bitcoin (0.10.1-precise3) precise; urgency=medium + + * Fix build dep (include python). + + -- Matt Corallo (BlueMatt) Tue, 5 May 2015 09:28:00 -1000 + +bitcoin (0.10.1-precise2) precise; urgency=medium + + * Fix miniupnpc dep. + + -- Matt Corallo (BlueMatt) Tue, 5 May 2015 00:33:00 -1000 + +bitcoin (0.10.1-precise1) precise; urgency=medium + + * New upstream release. + + -- Matt Corallo (BlueMatt) Tue, 5 May 2015 00:07:00 -1000 + +bitcoin (0.10.0-precise1) precise; urgency=medium + + * New upstream releases. + + -- Matt Corallo (BlueMatt) Wed, 18 Feb 2015 13:22:00 -1000 + +bitcoin (0.9.4-precise1) precise; urgency=high + + * New upstream releases. + + -- Matt Corallo (laptop - only while traveling) Mon, 12 Jan 2015 23:30:00 -1000 + bitcoin (0.9.3-precise1) precise; urgency=medium * New upstream releases. @@ -137,7 +173,7 @@ bitcoin (0.5.3-natty0) natty; urgency=low bitcoin (0.5.2-natty1) natty; urgency=low * Remove mentions on anonymity in package descriptions and manpage. - These should never have been there, bitcoin isnt anonymous without + These should never have been there, bitcoin isn't anonymous without a ton of work that virtually no users will ever be willing and capable of doing @@ -178,7 +214,7 @@ bitcoin (0.5.0~rc1-natty1) natty; urgency=low * Add test_bitcoin to build test * Fix clean - * Remove uneccessary build-dependancies + * Remove unnecessary build-dependancies -- Matt Corallo Wed, 26 Oct 2011 14:37:18 -0400 @@ -338,7 +374,7 @@ bitcoin (0.3.20.01~dfsg-1) unstable; urgency=low bitcoin (0.3.19~dfsg-6) unstable; urgency=low - * Fix override agressive optimizations. + * Fix override aggressive optimizations. * Fix tighten build-dependencies to really fit backporting to Lenny: + Add fallback build-dependency on libdb4.6++-dev. + Tighten unversioned Boost build-dependencies to recent versions, diff --git a/contrib/debian/control b/contrib/debian/control index a653260ad30ee..fff4e472a7c0a 100644 --- a/contrib/debian/control +++ b/contrib/debian/control @@ -20,11 +20,12 @@ Build-Depends: debhelper, qt4-qmake, libqt4-dev, libqrencode-dev, - libprotobuf-dev, protobuf-compiler + libprotobuf-dev, protobuf-compiler, + python Standards-Version: 3.9.2 -Homepage: http://www.bitcoin.org/ +Homepage: https://www.bitcoin.org/ Vcs-Git: git://github.com/bitcoin/bitcoin.git -Vcs-Browser: http://github.com/bitcoin/bitcoin +Vcs-Browser: https://github.com/bitcoin/bitcoin Package: bitcoind Architecture: any @@ -56,3 +57,17 @@ Description: peer-to-peer network based digital currency - Qt GUI requires 20+ GB of space, slowly growing. . This package provides Bitcoin-Qt, a GUI for Bitcoin based on Qt. + +Package: bitcoin-tx +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: peer-to-peer digital currency - standalone transaction tool + Bitcoin is a free open source peer-to-peer electronic cash system that + is completely decentralized, without the need for a central server or + trusted parties. Users hold the crypto keys to their own money and + transact directly with each other, with the help of a P2P network to + check for double-spending. + . + This package provides bitcoin-tx, a command-line transaction creation + tool which can be used without a bitcoin daemon. Some means of + exchanging minimal transaction data with peers is still required. diff --git a/contrib/debian/copyright b/contrib/debian/copyright index a6ee201991cc4..b45222e5d30fd 100644 --- a/contrib/debian/copyright +++ b/contrib/debian/copyright @@ -2,8 +2,7 @@ Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=174 Upstream-Name: Bitcoin Upstream-Contact: Satoshi Nakamoto irc://#bitcoin@freenode.net -Source: http://sourceforge.net/projects/bitcoin/files/ - https://github.com/bitcoin/bitcoin +Source: https://github.com/bitcoin/bitcoin Files: * Copyright: 2009-2012, Bitcoin Core Developers diff --git a/contrib/debian/examples/bitcoin.conf b/contrib/debian/examples/bitcoin.conf index 31cca981e0a2a..efe76af6369c2 100644 --- a/contrib/debian/examples/bitcoin.conf +++ b/contrib/debian/examples/bitcoin.conf @@ -38,11 +38,11 @@ # Use as many addnode= settings as you like to connect to specific peers #addnode=69.164.218.197 -#addnode=10.0.0.2:8333 +#addnode=10.0.0.2:36307 # Alternatively use as many connect= settings as you like to connect ONLY to specific peers #connect=69.164.218.197 -#connect=10.0.0.1:8333 +#connect=10.0.0.1:36307 # Listening mode, enabled by default except when 'connect' is being used #listen=1 @@ -54,7 +54,7 @@ # JSON-RPC options (for controlling a running Bitcoin/bitcoind process) # -# server=1 tells Bitcoin-QT and bitcoind to accept JSON-RPC commands +# server=1 tells Bitcoin-Qt and bitcoind to accept JSON-RPC commands #server=0 # You must set rpcuser and rpcpassword to secure the JSON-RPC api @@ -72,14 +72,14 @@ # NOTE: opening up the RPC port to hosts outside your local trusted network is NOT RECOMMENDED, # because the rpcpassword is transmitted over the network unencrypted. -# server=1 tells Bitcoin-QT to accept JSON-RPC commands. +# server=1 tells Bitcoin-Qt to accept JSON-RPC commands. # it is also read by bitcoind to determine if RPC should be enabled #rpcallowip=10.1.1.34/255.255.255.0 #rpcallowip=1.2.3.4/24 #rpcallowip=2001:db8:85a3:0:0:8a2e:370:7334/96 # Listen for RPC connections on this TCP port: -#rpcport=8332 +#rpcport=36308 # You can use Bitcoin or bitcoind to send commands to Bitcoin/bitcoind # running on another host using this option: diff --git a/contrib/debian/manpages/bitcoin-qt.1 b/contrib/debian/manpages/bitcoin-qt.1 index a023582bc0259..b8f2e233bef3f 100644 --- a/contrib/debian/manpages/bitcoin-qt.1 +++ b/contrib/debian/manpages/bitcoin-qt.1 @@ -41,7 +41,7 @@ Use proxy to reach tor hidden services (default: same as \fB\-proxy\fR) Allow DNS lookups for \fB\-addnode\fR, \fB\-seednode\fR and \fB\-connect\fR .TP \fB\-port=\fR -Listen for connections on (default: 8333 or testnet: 18333) +Listen for connections on (default: 36307 or testnet: 46307) .TP \fB\-maxconnections=\fR Maintain at most connections to peers (default: 125) @@ -122,7 +122,7 @@ Username for JSON\-RPC connections Password for JSON\-RPC connections .TP \fB\-rpcport=\fR -Listen for JSON\-RPC connections on (default: 8332 or testnet: 18332) +Listen for JSON\-RPC connections on (default: 36308 or testnet: 46308) .TP \fB\-rpcallowip=\fR Allow JSON\-RPC connections from specified IP address diff --git a/contrib/debian/manpages/bitcoin.conf.5 b/contrib/debian/manpages/bitcoin.conf.5 index 8a0078d5d58a2..fe605f98160c4 100644 --- a/contrib/debian/manpages/bitcoin.conf.5 +++ b/contrib/debian/manpages/bitcoin.conf.5 @@ -18,10 +18,10 @@ Enable or disable run on the test network instead of the real *bitcoin* network. \fBproxy=\fR\fI'127.0.0.1:9050'\fR Connect via a socks4 proxy. .TP -\fBaddnode=\fR\fI'10.0.0.2:8333'\fR +\fBaddnode=\fR\fI'10.0.0.2:36307'\fR Use as many *addnode=* settings as you like to connect to specific peers. .TP -\fBconnect=\fR\fI'10.0.0.1:8333'\fR +\fBconnect=\fR\fI'10.0.0.1:36307'\fR Use as many *connect=* settings as you like to connect ONLY to specific peers. .TP \fRmaxconnections=\fR\fI'value'\fR @@ -40,7 +40,7 @@ You must set *rpcpassword* to secure the JSON-RPC api. \fBrpcallowip=\fR\fI'192.168.1.*'\fR By default, only RPC connections from localhost are allowed. Specify as many *rpcallowip=* settings as you like to allow connections from other hosts (and you may use * as a wildcard character). .TP -\fBrpcport=\fR\fI'8332'\fR +\fBrpcport=\fR\fI'36308'\fR Listen for RPC connections on this TCP port. .TP \fBrpcconnect=\fR\fI'127.0.0.1'\fR diff --git a/contrib/gitian-descriptors/README.md b/contrib/gitian-descriptors/README.md index 061b897d2a2c5..802ad19d9b2cf 100644 --- a/contrib/gitian-descriptors/README.md +++ b/contrib/gitian-descriptors/README.md @@ -20,7 +20,7 @@ Sanity checks: Once you've got the right hardware and software: - git clone git://github.com/bitcoin/bitcoin.git + git clone git://github.com/hypercoin-project/hypercoin.git git clone git://github.com/devrandom/gitian-builder.git mkdir gitian-builder/inputs cd gitian-builder/inputs @@ -62,5 +62,5 @@ Here's a description of Gavin's setup on OSX 10.6: 5. Still inside Ubuntu, tell gitian-builder to use LXC, then follow the "Once you've got the right hardware and software" instructions above: export USE_LXC=1 - git clone git://github.com/bitcoin/bitcoin.git + git clone git://github.com/hypercoin-project/hypercoin.git ... etc diff --git a/contrib/gitian-descriptors/gitian-linux.yml b/contrib/gitian-descriptors/gitian-linux.yml index bba2104edb7ae..68cce2b57652c 100644 --- a/contrib/gitian-descriptors/gitian-linux.yml +++ b/contrib/gitian-descriptors/gitian-linux.yml @@ -1,5 +1,5 @@ --- -name: "bitcoin-linux-0.10" +name: "hypercoin-linux-0.10" enable_cache: true suites: - "precise" @@ -15,15 +15,15 @@ packages: - "faketime" - "bsdmainutils" - "binutils-gold" -reference_datetime: "2013-06-01 00:00:00" +reference_datetime: "2018-01-01 00:00:00" remotes: -- "url": "https://github.com/bitcoin/bitcoin.git" - "dir": "bitcoin" +- "url": "https://github.com/hypercoin-project/hypercoin.git" + "dir": "hypercoin" files: [] script: | WRAP_DIR=$HOME/wrapped HOSTS="i686-pc-linux-gnu x86_64-unknown-linux-gnu" - CONFIGFLAGS="--enable-upnp-default --enable-glibc-back-compat" + CONFIGFLAGS="--enable-glibc-back-compat" FAKETIME_HOST_PROGS="" FAKETIME_PROGS="date ar ranlib nm strip" @@ -62,7 +62,7 @@ script: | done export PATH=${WRAP_DIR}:${PATH} - cd bitcoin + cd hypercoin BASEPREFIX=`pwd`/depends # Build dependencies for each host for i in $HOSTS; do @@ -73,13 +73,13 @@ script: | ./autogen.sh ./configure --prefix=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'` make dist - SOURCEDIST=`echo bitcoin-*.tar.gz` + SOURCEDIST=`echo hypercoin-*.tar.gz` DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'` # Correct tar file order mkdir -p temp pushd temp tar xf ../$SOURCEDIST - find bitcoin-* | sort | tar --no-recursion -c -T - | gzip -9n > ../$SOURCEDIST + find hypercoin-* | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ../$SOURCEDIST popd ORIGPATH="$PATH" @@ -99,7 +99,12 @@ script: | find . -name "lib*.la" -delete find . -name "lib*.a" -delete rm -rf ${DISTNAME}/lib/pkgconfig - find . | sort | tar --no-recursion -c -T - | gzip -9n > ${OUTDIR}/${DISTNAME}-${i}.tar.gz + + # Delete libbitcoin from binary distribution for now + rm -rf ${DISTNAME}/lib/ + rm -rf ${DISTNAME}/include/ + + find ${DISTNAME} | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ${OUTDIR}/${DISTNAME}-${i}.tar.gz cd ../../ done mkdir -p $OUTDIR/src diff --git a/contrib/gitian-descriptors/gitian-osx-signer.yml b/contrib/gitian-descriptors/gitian-osx-signer.yml index db9b4af93d0ef..3f94c69ccf153 100644 --- a/contrib/gitian-descriptors/gitian-osx-signer.yml +++ b/contrib/gitian-descriptors/gitian-osx-signer.yml @@ -1,5 +1,5 @@ --- -name: "bitcoin-dmg-signer" +name: "hypercoin-dmg-signer" suites: - "precise" architectures: @@ -7,10 +7,10 @@ architectures: packages: - "libc6:i386" - "faketime" -reference_datetime: "2013-06-01 00:00:00" +reference_datetime: "2018-01-01 00:00:00" remotes: [] files: -- "bitcoin-0.9.99-osx-unsigned.tar.gz" +- "hypercoin-osx-unsigned.tar.gz" - "signature.tar.gz" script: | WRAP_DIR=$HOME/wrapped @@ -28,10 +28,10 @@ script: | chmod +x ${WRAP_DIR}/${prog} done - UNSIGNED=`echo bitcoin-*.tar.gz` - SIGNED=`echo ${UNSIGNED} | sed 's/.tar.*//' | sed 's/-unsigned//'`.dmg + UNSIGNED=hypercoin-osx-unsigned.tar.gz + SIGNED=hypercoin-osx-signed.dmg tar -xf ${UNSIGNED} ./detached-sig-apply.sh ${UNSIGNED} signature.tar.gz - ${WRAP_DIR}/genisoimage -no-cache-inodes -D -l -probe -V "Bitcoin-Qt" -no-pad -r -apple -o uncompressed.dmg signed-app + ${WRAP_DIR}/genisoimage -no-cache-inodes -D -l -probe -V "Hypercoin-Qt" -no-pad -r -apple -o uncompressed.dmg signed-app ${WRAP_DIR}/dmg dmg uncompressed.dmg ${OUTDIR}/${SIGNED} diff --git a/contrib/gitian-descriptors/gitian-osx.yml b/contrib/gitian-descriptors/gitian-osx.yml index eb6df2096eb1f..2e10d23d157e6 100644 --- a/contrib/gitian-descriptors/gitian-osx.yml +++ b/contrib/gitian-descriptors/gitian-osx.yml @@ -1,12 +1,12 @@ --- -name: "bitcoin-osx-0.10" +name: "hypercoin-osx-0.10" enable_cache: true suites: - "precise" architectures: - "amd64" packages: -- "g++-multilib" +- "g++" - "git-core" - "pkg-config" - "autoconf2.13" @@ -18,16 +18,16 @@ packages: - "libcap-dev" - "libz-dev" - "libbz2-dev" -reference_datetime: "2013-06-01 00:00:00" +reference_datetime: "2018-01-01 00:00:00" remotes: -- "url": "https://github.com/bitcoin/bitcoin.git" - "dir": "bitcoin" +- "url": "https://github.com/hypercoin-project/hypercoin.git" + "dir": "hypercoin" files: -- "MacOSX10.7.sdk.tar.gz" +- "MacOSX10.9.sdk.tar.gz" script: | WRAP_DIR=$HOME/wrapped HOSTS="x86_64-apple-darwin11" - CONFIGFLAGS="--enable-upnp-default GENISOIMAGE=$WRAP_DIR/genisoimage" + CONFIGFLAGS="GENISOIMAGE=$WRAP_DIR/genisoimage" FAKETIME_HOST_PROGS="" FAKETIME_PROGS="ar ranlib date dmg genisoimage" @@ -68,11 +68,11 @@ script: | done export PATH=${WRAP_DIR}:${PATH} - cd bitcoin + cd hypercoin BASEPREFIX=`pwd`/depends mkdir -p ${BASEPREFIX}/SDKs - tar -C ${BASEPREFIX}/SDKs -xf ${BUILD_DIR}/MacOSX10.7.sdk.tar.gz + tar -C ${BASEPREFIX}/SDKs -xf ${BUILD_DIR}/MacOSX10.9.sdk.tar.gz # Build dependencies for each host for i in $HOSTS; do @@ -83,14 +83,14 @@ script: | ./autogen.sh ./configure --prefix=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'` make dist - SOURCEDIST=`echo bitcoin-*.tar.gz` + SOURCEDIST=`echo hypercoin-*.tar.gz` DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'` # Correct tar file order mkdir -p temp pushd temp tar xf ../$SOURCEDIST - find bitcoin-* | sort | tar --no-recursion -c -T - | gzip -9n > ../$SOURCEDIST + find hypercoin-* | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ../$SOURCEDIST popd ORIGPATH="$PATH" @@ -116,17 +116,17 @@ script: | cp ${BASEPREFIX}/${i}/native/bin/${i}-pagestuff unsigned-app-${i}/pagestuff mv dist unsigned-app-${i} pushd unsigned-app-${i} - find . | sort | tar --no-recursion -czf ${OUTDIR}/${DISTNAME}-osx-unsigned.tar.gz -T - + find . | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ${OUTDIR}/${DISTNAME}-osx-unsigned.tar.gz popd make deploy - ${WRAP_DIR}/dmg dmg Bitcoin-Qt.dmg ${OUTDIR}/${DISTNAME}-osx-unsigned.dmg + ${WRAP_DIR}/dmg dmg Hypercoin-Qt.dmg ${OUTDIR}/${DISTNAME}-osx-unsigned.dmg cd installed find . -name "lib*.la" -delete find . -name "lib*.a" -delete rm -rf ${DISTNAME}/lib/pkgconfig - find . | sort | tar --no-recursion -c -T - | gzip -9n > ${OUTDIR}/${DISTNAME}-${i}.tar.gz + find ${DISTNAME} | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ${OUTDIR}/${DISTNAME}-${i}.tar.gz cd ../../ done mkdir -p $OUTDIR/src diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml index 97c823cde6943..61ff54f1758e6 100644 --- a/contrib/gitian-descriptors/gitian-win.yml +++ b/contrib/gitian-descriptors/gitian-win.yml @@ -1,5 +1,5 @@ --- -name: "bitcoin-win-0.10" +name: "hypercoin-win-0.10" enable_cache: true suites: - "precise" @@ -18,15 +18,15 @@ packages: - "g++-mingw-w64" - "nsis" - "zip" -reference_datetime: "2013-06-01 00:00:00" +reference_datetime: "2018-01-01 00:00:00" remotes: -- "url": "https://github.com/bitcoin/bitcoin.git" - "dir": "bitcoin" +- "url": "https://github.com/hypercoin-project/hypercoin.git" + "dir": "hypercoin" files: [] script: | WRAP_DIR=$HOME/wrapped HOSTS="x86_64-w64-mingw32 i686-w64-mingw32" - CONFIGFLAGS="--enable-upnp-default" + CONFIGFLAGS="" FAKETIME_HOST_PROGS="g++ ar ranlib nm windres strip" FAKETIME_PROGS="date makensis zip" @@ -65,7 +65,7 @@ script: | done export PATH=${WRAP_DIR}:${PATH} - cd bitcoin + cd hypercoin BASEPREFIX=`pwd`/depends # Build dependencies for each host for i in $HOSTS; do @@ -76,14 +76,14 @@ script: | ./autogen.sh ./configure --prefix=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'` make dist - SOURCEDIST=`echo bitcoin-*.tar.gz` + SOURCEDIST=`echo hypercoin-*.tar.gz` DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'` # Correct tar file order mkdir -p temp pushd temp tar xf ../$SOURCEDIST - find bitcoin-* | sort | tar --no-recursion -c -T - | gzip -9n > ../$SOURCEDIST + find hypercoin-* | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ../$SOURCEDIST popd ORIGPATH="$PATH" @@ -100,13 +100,13 @@ script: | make ${MAKEOPTS} make deploy make install-strip - cp -f bitcoin-*setup*.exe $OUTDIR/ + cp -f hypercoin-*setup*.exe $OUTDIR/ cd installed mv ${DISTNAME}/bin/*.dll ${DISTNAME}/lib/ find . -name "lib*.la" -delete find . -name "lib*.a" -delete rm -rf ${DISTNAME}/lib/pkgconfig - find . -type f | sort | zip -X@ ${OUTDIR}/${DISTNAME}-${i}.zip + find ${DISTNAME} -type f | sort | zip -X@ ${OUTDIR}/${DISTNAME}-${i}.zip cd ../.. done mkdir -p $OUTDIR/src diff --git a/contrib/gitian-downloader/bluematt-key.pgp b/contrib/gitian-downloader/bluematt-key.pgp index fb6d9eb28423d..2389d4657fb7f 100644 Binary files a/contrib/gitian-downloader/bluematt-key.pgp and b/contrib/gitian-downloader/bluematt-key.pgp differ diff --git a/contrib/gitian-downloader/linux-download-config b/contrib/gitian-downloader/linux-download-config index f5e6382b846d1..4c037795267dc 100644 --- a/contrib/gitian-downloader/linux-download-config +++ b/contrib/gitian-downloader/linux-download-config @@ -3,7 +3,7 @@ name: bitcoin urls: - http://bitcoin.org/bitcoin-latest-linux-gitian.zip rss: -- url: http://sourceforge.net/api/file/index/project-id/244765/mtime/desc/limit/100/rss +- url: xpath: //item/link/text() pattern: bitcoin-\d+.\d+.\d+-linux-gitian.zip signers: diff --git a/contrib/gitian-downloader/win32-download-config b/contrib/gitian-downloader/win32-download-config index 06c164180d507..083bce5de815c 100644 --- a/contrib/gitian-downloader/win32-download-config +++ b/contrib/gitian-downloader/win32-download-config @@ -3,7 +3,7 @@ name: bitcoin urls: - http://bitcoin.org/bitcoin-latest-win32-gitian.zip rss: -- url: http://sourceforge.net/api/file/index/project-id/244765/mtime/desc/limit/100/rss +- url: xpath: //item/link/text() pattern: bitcoin-\d+.\d+.\d+-win32-gitian.zip signers: diff --git a/contrib/linearize/example-linearize.cfg b/contrib/linearize/example-linearize.cfg index e0fef13886d92..16dcc66963efa 100644 --- a/contrib/linearize/example-linearize.cfg +++ b/contrib/linearize/example-linearize.cfg @@ -3,7 +3,7 @@ rpcuser=someuser rpcpassword=somepassword host=127.0.0.1 -port=8332 +port=36308 # bootstrap.dat hashlist settings (linearize-hashes) max_height=313000 diff --git a/contrib/linearize/linearize-hashes.py b/contrib/linearize/linearize-hashes.py index dc7f654049962..b9e45178c769a 100755 --- a/contrib/linearize/linearize-hashes.py +++ b/contrib/linearize/linearize-hashes.py @@ -96,7 +96,7 @@ def get_block_hashes(settings, max_blocks_per_call=10000): if 'host' not in settings: settings['host'] = '127.0.0.1' if 'port' not in settings: - settings['port'] = 8332 + settings['port'] = 36308 if 'min_height' not in settings: settings['min_height'] = 0 if 'max_height' not in settings: diff --git a/contrib/macdeploy/README.md b/contrib/macdeploy/README.md index 0aa57b4777132..5dac37fa7fe0c 100644 --- a/contrib/macdeploy/README.md +++ b/contrib/macdeploy/README.md @@ -11,5 +11,5 @@ This script should not be run manually, instead, after building as usual: During the process, the disk image window will pop up briefly where the fancy settings are applied. This is normal, please do not interfere. -When finished, it will produce `Bitcoin-Qt.dmg`. +When finished, it will produce `Hypercoin-Qt.dmg`. diff --git a/contrib/macdeploy/background.png b/contrib/macdeploy/background.png index fce12e380793b..045fc24ddde9e 100644 Binary files a/contrib/macdeploy/background.png and b/contrib/macdeploy/background.png differ diff --git a/contrib/macdeploy/detached-sig-apply.sh b/contrib/macdeploy/detached-sig-apply.sh index 7b3eb1b19741a..cb5ddfe8a2f50 100755 --- a/contrib/macdeploy/detached-sig-apply.sh +++ b/contrib/macdeploy/detached-sig-apply.sh @@ -5,7 +5,7 @@ UNSIGNED=$1 SIGNATURE=$2 ARCH=x86_64 ROOTDIR=dist -BUNDLE=${ROOTDIR}/Bitcoin-Qt.app +BUNDLE=${ROOTDIR}/Hypercoin-Qt.app TEMPDIR=signed.temp OUTDIR=signed-app diff --git a/contrib/macdeploy/detached-sig-create.sh b/contrib/macdeploy/detached-sig-create.sh index aff4f08da8bec..a6dd4e8f7649d 100755 --- a/contrib/macdeploy/detached-sig-create.sh +++ b/contrib/macdeploy/detached-sig-create.sh @@ -2,7 +2,7 @@ set -e ROOTDIR=dist -BUNDLE=${ROOTDIR}/Bitcoin-Qt.app +BUNDLE=${ROOTDIR}/Hypercoin-Qt.app CODESIGN=codesign TEMPDIR=sign.temp TEMPLIST=${TEMPDIR}/signatures.txt diff --git a/contrib/macdeploy/fancy.plist b/contrib/macdeploy/fancy.plist index e73b9b697ef9f..17e70e4c67d93 100644 --- a/contrib/macdeploy/fancy.plist +++ b/contrib/macdeploy/fancy.plist @@ -22,7 +22,7 @@ 370 156 - Bitcoin-Qt.app + Hypercoin-Qt.app 128 156 diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus index 541136001fcee..a5bce60a9e084 100755 --- a/contrib/macdeploy/macdeployqtplus +++ b/contrib/macdeploy/macdeployqtplus @@ -836,7 +836,7 @@ if config.dmg is not None: items_positions.append(itemscript.substitute(params)) params = { - "disk" : "Bitcoin-Qt", + "disk" : "Hypercoin-Qt", "window_bounds" : "300,300,800,620", "icon_size" : "96", "background_commands" : "", diff --git a/contrib/qos/README.md b/contrib/qos/README.md index 5e0a975fc64ff..42f9bc3b885d8 100644 --- a/contrib/qos/README.md +++ b/contrib/qos/README.md @@ -1,5 +1,5 @@ ### Qos ### -This is a Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Bitcoin network. It limits outbound TCP traffic with a source or destination port of 8333, but not if the destination IP is within a LAN (defined as 192.168.x.x). +This is a Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Bitcoin network. It limits outbound TCP traffic with a source or destination port of 36307, but not if the destination IP is within a LAN (defined as 192.168.x.x). This means one can have an always-on bitcoind instance running, and another local bitcoind/bitcoin-qt instance which connects to this node and receives blocks from it. diff --git a/contrib/qos/tc.sh b/contrib/qos/tc.sh index f62060421202c..8528d9915d63d 100644 --- a/contrib/qos/tc.sh +++ b/contrib/qos/tc.sh @@ -32,10 +32,10 @@ tc filter add dev ${IF} parent 1: protocol ip prio 2 handle 2 fw classid 1:11 # ret=$? #done -#limit outgoing traffic to and from port 8333. but not when dealing with a host on the local network +#limit outgoing traffic to and from port 36307. but not when dealing with a host on the local network # (defined by $LOCALNET) # --set-mark marks packages matching these criteria with the number "2" # these packages are filtered by the tc filter with "handle 2" # this filter sends the packages into the 1:11 class, and this class is limited to ${LIMIT} -iptables -t mangle -A OUTPUT -p tcp -m tcp --dport 8333 ! -d ${LOCALNET} -j MARK --set-mark 0x2 -iptables -t mangle -A OUTPUT -p tcp -m tcp --sport 8333 ! -d ${LOCALNET} -j MARK --set-mark 0x2 +iptables -t mangle -A OUTPUT -p tcp -m tcp --dport 36307 ! -d ${LOCALNET} -j MARK --set-mark 0x2 +iptables -t mangle -A OUTPUT -p tcp -m tcp --sport 36307 ! -d ${LOCALNET} -j MARK --set-mark 0x2 diff --git a/contrib/seeds/README.md b/contrib/seeds/README.md index f9a0c277e2e7f..e3f2639f27044 100644 --- a/contrib/seeds/README.md +++ b/contrib/seeds/README.md @@ -1,11 +1,10 @@ ### Seeds ### -Utility to generate the pnSeed[] array that is compiled into the client -(see [src/net.cpp](/src/net.cpp)). +Utility to generate the seeds.txt list that is compiled into the client +(see [src/chainparamsseeds.h](/src/chainparamsseeds.h) and [share/seeds](/share/seeds)). -The 600 seeds compiled into the 0.8 release were created from sipa's DNS seed data, like this: +The 512 seeds compiled into the 0.10 release were created from pooler's seed data, the seed list can be found here: - curl -s http://bitcoin.sipa.be/seeds.txt | head -1000 | makeseeds.py + https://www.hyperproject.io/seeds.txt -The input to makeseeds.py is assumed to be approximately sorted from most-reliable to least-reliable, -with IP:port first on each line (lines that don't match IPv4:port are ignored). +The seed selection process is sorted by 30d availability, block height and version. diff --git a/contrib/seeds/makeseeds.py b/contrib/seeds/makeseeds.py index 1d01fd7d209fa..33cffa2cceb67 100755 --- a/contrib/seeds/makeseeds.py +++ b/contrib/seeds/makeseeds.py @@ -1,32 +1,118 @@ #!/usr/bin/env python # -# Generate pnSeed[] from Pieter's DNS seeder +# Generate seeds.txt from Pieter's DNS seeder # -NSEEDS=600 +NSEEDS=512 + +MAX_SEEDS_PER_ASN=2 + +MIN_BLOCKS = 337600 + +# These are hosts that have been observed to be behaving strangely (e.g. +# aggressively connecting to every node). +SUSPICIOUS_HOSTS = set([ + "130.211.129.106", "178.63.107.226", + "83.81.130.26", "88.198.17.7", "148.251.238.178", "176.9.46.6", + "54.173.72.127", "54.174.10.182", "54.183.64.54", "54.194.231.211", + "54.66.214.167", "54.66.220.137", "54.67.33.14", "54.77.251.214", + "54.94.195.96", "54.94.200.247" +]) import re import sys -from subprocess import check_output +import dns.resolver + +PATTERN_IPV4 = re.compile(r"^((\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})):36307$") +PATTERN_AGENT = re.compile(r"^(\/Satoshi:0.8.6\/|\/Satoshi:0.9.(2|3)\/|\/Satoshi:0.10.\d{1,2}\/)$") + +def parseline(line): + sline = line.split() + if len(sline) < 11: + return None + # Match only IPv4 + m = PATTERN_IPV4.match(sline[0]) + if m is None: + return None + # Do IPv4 sanity check + ip = 0 + for i in range(0,4): + if int(m.group(i+2)) < 0 or int(m.group(i+2)) > 255: + return None + ip = ip + (int(m.group(i+2)) << (8*(3-i))) + if ip == 0: + return None + # Skip bad results. + if sline[1] == 0: + return None + # Extract uptime %. + uptime30 = float(sline[7][:-1]) + # Extract Unix timestamp of last success. + lastsuccess = int(sline[2]) + # Extract protocol version. + version = int(sline[10]) + # Extract user agent. + agent = sline[11][1:-1] + # Extract service flags. + service = int(sline[9], 16) + # Extract blocks. + blocks = int(sline[8]) + # Construct result. + return { + 'ip': m.group(1), + 'ipnum': ip, + 'uptime': uptime30, + 'lastsuccess': lastsuccess, + 'version': version, + 'agent': agent, + 'service': service, + 'blocks': blocks, + } + +# Based on Greg Maxwell's seed_filter.py +def filterbyasn(ips, max_per_asn, max_total): + result = [] + asn_count = {} + for ip in ips: + if len(result) == max_total: + break + try: + asn = int([x.to_text() for x in dns.resolver.query('.'.join(reversed(ip['ip'].split('.'))) + '.origin.asn.cymru.com', 'TXT').response.answer][0].split('\"')[1].split(' ')[0]) + if asn not in asn_count: + asn_count[asn] = 0 + if asn_count[asn] == max_per_asn: + continue + asn_count[asn] += 1 + result.append(ip) + except: + sys.stderr.write('ERR: Could not resolve ASN for "' + ip['ip'] + '"\n') + return result def main(): lines = sys.stdin.readlines() + ips = [parseline(line) for line in lines] + + # Skip entries with valid IPv4 address. + ips = [ip for ip in ips if ip is not None] + # Skip entries from suspicious hosts. + ips = [ip for ip in ips if ip['ip'] not in SUSPICIOUS_HOSTS] + # Enforce minimal number of blocks. + ips = [ip for ip in ips if ip['blocks'] >= MIN_BLOCKS] + # Require service bit 1. + ips = [ip for ip in ips if (ip['service'] & 1) == 1] + # Require at least 50% 30-day uptime. + ips = [ip for ip in ips if ip['uptime'] > 50] + # Require a known and recent user agent. + ips = [ip for ip in ips if PATTERN_AGENT.match(ip['agent'])] + # Sort by availability (and use last success as tie breaker) + ips.sort(key=lambda x: (x['uptime'], x['lastsuccess'], x['ip']), reverse=True) + # Look up ASNs and limit results, both per ASN and globally. + ips = filterbyasn(ips, MAX_SEEDS_PER_ASN, NSEEDS) + # Sort the results by IP address (for deterministic output). + ips.sort(key=lambda x: (x['ipnum'])) - ips = [] - pattern = re.compile(r"^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3}):8333") - for line in lines: - m = pattern.match(line) - if m is None: - continue - ip = 0 - for i in range(0,4): - ip = ip + (int(m.group(i+1)) << (8*(i))) - if ip == 0: - continue - ips.append(ip) - - for row in range(0, min(NSEEDS,len(ips)), 8): - print " " + ", ".join([ "0x%08x"%i for i in ips[row:row+8] ]) + "," + for ip in ips: + print ip['ip'] if __name__ == '__main__': main() diff --git a/contrib/spendfrom/spendfrom.py b/contrib/spendfrom/spendfrom.py index 72ee0425eb236..d34162c76293d 100755 --- a/contrib/spendfrom/spendfrom.py +++ b/contrib/spendfrom/spendfrom.py @@ -67,7 +67,7 @@ def connect_JSON(config): testnet = config.get('testnet', '0') testnet = (int(testnet) > 0) # 0/1 in config file, convert to True/False if not 'rpcport' in config: - config['rpcport'] = 18332 if testnet else 8332 + config['rpcport'] = 46308 if testnet else 36308 connect = "http://%s:%s@127.0.0.1:%s"%(config['rpcuser'], config['rpcpassword'], config['rpcport']) try: result = ServiceProxy(connect) diff --git a/depends/Makefile b/depends/Makefile index 5de015971429e..e2ef7ee49bd67 100644 --- a/depends/Makefile +++ b/depends/Makefile @@ -31,6 +31,7 @@ endif base_build_dir=$(BASEDIR)/work/build base_staging_dir=$(BASEDIR)/work/staging +base_download_dir=$(BASEDIR)/work/download canonical_host:=$(shell ./config.sub $(HOST)) build:=$(shell ./config.sub $(BUILD)) @@ -122,5 +123,12 @@ $(host_prefix)/share/config.site : config.site.in $(host_prefix)/.stamp_$(final_ $(AT)touch $@ install: $(host_prefix)/share/config.site -download: $(all_sources) -.PHONY: install cached +download-one: $(all_sources) +download-osx: + @$(MAKE) -s HOST=x86_64-apple-darwin11 download-one +download-linux: + @$(MAKE) -s HOST=x86_64-unknown-linux-gnu download-one +download-win: + @$(MAKE) -s HOST=x86_64-w64-mingw32 download-one +download: download-osx download-linux download-win +.PHONY: install cached download-one download-osx download-linux download-win download diff --git a/depends/README.usage b/depends/README.usage index e768feecf76a5..f5aa5314a1f32 100644 --- a/depends/README.usage +++ b/depends/README.usage @@ -29,4 +29,7 @@ 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 sources without building them +download: run 'make download' to fetch all sources without building them +download-osx: run 'make download-osx' to fetch all sources needed for osx 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 diff --git a/depends/config.guess b/depends/config.guess index 1f5c50c0d1529..553731934eb73 100755 --- a/depends/config.guess +++ b/depends/config.guess @@ -1099,7 +1099,7 @@ EOF # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub - # prints for the "djgpp" host, or else GDB configury will decide that + # prints for the "djgpp" host, or else GDB configure will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; diff --git a/depends/funcs.mk b/depends/funcs.mk index c1fc0a0e33169..337634253f5bd 100644 --- a/depends/funcs.mk +++ b/depends/funcs.mk @@ -20,18 +20,19 @@ $(sort $(foreach dep,$(2),$(2) $(call int_get_all_dependencies,$(1),$($(dep)_dep endef define fetch_file -(test -f $(SOURCES_PATH)/$(4) || \ - ( mkdir -p $$($(1)_extract_dir) && \ - ( $(build_DOWNLOAD) "$$($(1)_extract_dir)/$(4).temp" "$(2)/$(3)" || \ - $(build_DOWNLOAD) "$$($(1)_extract_dir)/$(4).temp" "$(FALLBACK_DOWNLOAD_PATH)/$(3)" ) && \ - echo "$(5) $$($(1)_extract_dir)/$(4).temp" > $$($(1)_extract_dir)/.$(4).hash && \ - $(build_SHA256SUM) -c $$($(1)_extract_dir)/.$(4).hash && \ - mv $$($(1)_extract_dir)/$(4).temp $(SOURCES_PATH)/$(4) )) +(test -f $$($(1)_source_dir)/$(4) || \ + ( mkdir -p $$($(1)_download_dir) && echo Fetching $(1)... && \ + ( $(build_DOWNLOAD) "$$($(1)_download_dir)/$(4).temp" "$(2)/$(3)" || \ + $(build_DOWNLOAD) "$$($(1)_download_dir)/$(4).temp" "$(FALLBACK_DOWNLOAD_PATH)/$(3)" ) && \ + echo "$(5) $$($(1)_download_dir)/$(4).temp" > $$($(1)_download_dir)/.$(4).hash && \ + $(build_SHA256SUM) -c $$($(1)_download_dir)/.$(4).hash && \ + mv $$($(1)_download_dir)/$(4).temp $$($(1)_source_dir)/$(4) && \ + rm -rf $$($(1)_download_dir) )) endef define int_get_build_recipe_hash -$(eval $(1)_all_file_checksums:=$(shell $(build_SHA256SUM) $(meta_depends) packages/$(1).mk $(addprefix $(PATCHES_PATH)/$(1)/,$($(1)_patches)))) -$(eval $(1)_recipe_hash:=$(shell echo -n "$($(1)_all_file_checksums)" | $(build_SHA256SUM))) +$(eval $(1)_all_file_checksums:=$(shell $(build_SHA256SUM) $(meta_depends) packages/$(1).mk $(addprefix $(PATCHES_PATH)/$(1)/,$($(1)_patches)) | cut -d" " -f1)) +$(eval $(1)_recipe_hash:=$(shell echo -n "$($(1)_all_file_checksums)" | $(build_SHA256SUM) | cut -d" " -f1)) endef define int_get_build_id @@ -45,17 +46,19 @@ final_build_id_long+=$($(package)_build_id_long) #compute package-specific paths $(1)_build_subdir?=. $(1)_download_file?=$($(1)_file_name) -$(1)_source:=$(SOURCES_PATH)/$($(1)_file_name) +$(1)_source_dir:=$(SOURCES_PATH) +$(1)_source:=$$($(1)_source_dir)/$($(1)_file_name) $(1)_staging_dir=$(base_staging_dir)/$(host)/$(1)/$($(1)_version)-$($(1)_build_id) $(1)_staging_prefix_dir:=$$($(1)_staging_dir)$($($(1)_type)_prefix) $(1)_extract_dir:=$(base_build_dir)/$(host)/$(1)/$($(1)_version)-$($(1)_build_id) +$(1)_download_dir:=$(base_download_dir)/$(1)-$($(1)_version) $(1)_build_dir:=$$($(1)_extract_dir)/$$($(1)_build_subdir) $(1)_patch_dir:=$(base_build_dir)/$(host)/$(1)/$($(1)_version)-$($(1)_build_id)/.patches-$($(1)_build_id) $(1)_prefixbin:=$($($(1)_type)_prefix)/bin/ $(1)_cached:=$(BASE_CACHE)/$(host)/$(1)/$(1)-$($(1)_version)-$($(1)_build_id).tar.gz #stamps -$(1)_fetched=$$($(1)_extract_dir)/.stamp_fetched +$(1)_fetched=$$($(1)_source_dir)/download-stamps/.stamp_fetched-$(1)-$($(1)_file_name) $(1)_extracted=$$($(1)_extract_dir)/.stamp_extracted $(1)_preprocessed=$$($(1)_extract_dir)/.stamp_preprocessed $(1)_cleaned=$$($(1)_extract_dir)/.stamp_cleaned @@ -150,7 +153,6 @@ endef define int_add_cmds $($(1)_fetched): - $(AT)echo Fetching $(1)... $(AT)mkdir -p $$(@D) $(SOURCES_PATH) $(AT)cd $$(@D); $(call $(1)_fetch_cmds,$(1)) $(AT)touch $$@ diff --git a/depends/hosts/darwin.mk b/depends/hosts/darwin.mk index 8d718eba17be8..2958dc50cc8dc 100644 --- a/depends/hosts/darwin.mk +++ b/depends/hosts/darwin.mk @@ -1,8 +1,9 @@ -OSX_MIN_VERSION=10.6 -OSX_SDK_VERSION=10.7 +OSX_MIN_VERSION=10.7 +OSX_SDK_VERSION=10.9 OSX_SDK=$(SDK_PATH)/MacOSX$(OSX_SDK_VERSION).sdk -darwin_CC=clang -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -darwin_CXX=clang++ -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) +LD64_VERSION=241.9 +darwin_CC=clang -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -mlinker-version=$(LD64_VERSION) +darwin_CXX=clang++ -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -mlinker-version=$(LD64_VERSION) darwin_CFLAGS=-pipe darwin_CXXFLAGS=$(darwin_CFLAGS) diff --git a/depends/packages/miniupnpc.mk b/depends/packages/miniupnpc.mk index 00101f1b91af4..77bae10c793db 100644 --- a/depends/packages/miniupnpc.mk +++ b/depends/packages/miniupnpc.mk @@ -1,8 +1,8 @@ package=miniupnpc -$(package)_version=1.9.20140701 +$(package)_version=1.9.20151008 $(package)_download_path=http://miniupnp.free.fr/files $(package)_file_name=$(package)-$($(package)_version).tar.gz -$(package)_sha256_hash=26f3985bad7768b8483b793448ae49414cdc4451d0ec83e7c1944367e15f9f07 +$(package)_sha256_hash=e444ac3b587ce82709c4d0cfca1fe71f44f9fc433e9f946b12b9e1bfe667a633 define $(package)_set_vars $(package)_build_opts=CC="$($(package)_cc)" diff --git a/depends/packages/native_cctools.mk b/depends/packages/native_cctools.mk index ad989cb544bec..951ad4fb29085 100644 --- a/depends/packages/native_cctools.mk +++ b/depends/packages/native_cctools.mk @@ -1,61 +1,37 @@ package=native_cctools -$(package)_version=809 -$(package)_download_path=http://www.opensource.apple.com/tarballs/cctools -$(package)_file_name=cctools-$($(package)_version).tar.gz -$(package)_sha256_hash=03ba62749b843b131c7304a044a98c6ffacd65b1399b921d69add0375f79d8ad -$(package)_build_subdir=cctools2odcctools/odcctools-$($(package)_version) -$(package)_dependencies=native_libuuid native_openssl -$(package)_ld64_download_file=ld64-127.2.tar.gz -$(package)_ld64_download_path=http://www.opensource.apple.com/tarballs/ld64 -$(package)_ld64_file_name=$($(package)_ld64_download_file) -$(package)_ld64_sha256_hash=97b75547b2bd761306ab3e15ae297f01e7ab9760b922bc657f4ef72e4e052142 -$(package)_dyld_download_file=dyld-195.5.tar.gz -$(package)_dyld_download_path=http://www.opensource.apple.com/tarballs/dyld -$(package)_dyld_file_name=$($(package)_dyld_download_file) -$(package)_dyld_sha256_hash=2cf0484c87cf79b606b351a7055a247dae84093ae92c747a74e0cde2c8c8f83c -$(package)_toolchain4_download_file=10cc648683617cca8bcbeae507888099b41b530c.tar.gz -$(package)_toolchain4_download_path=https://github.com/mingwandroid/toolchain4/archive -$(package)_toolchain4_file_name=toolchain4-1.tar.gz -$(package)_toolchain4_sha256_hash=18406961fd4a1ec5c7ea35c91d6a80a2f8bb797a2bd243a610bd75e13eff9aca -$(package)_clang_download_file=clang+llvm-3.2-x86-linux-ubuntu-12.04.tar.gz -$(package)_clang_download_path=http://llvm.org/releases/3.2 -$(package)_clang_file_name=clang-llvm-3.2-x86-linux-ubuntu-12.04.tar.gz -$(package)_clang_sha256_hash=b9d57a88f9514fa1f327a1a703756d0c1c960f4c58494a5bd80313245d13ffff - +$(package)_version=ee31ae567931c426136c94aad457c7b51d844beb +$(package)_download_path=https://github.com/theuni/cctools-port/archive +$(package)_file_name=$($(package)_version).tar.gz +$(package)_sha256_hash=ef107e6ab1b3994cb22e14f4f5c59ea0c0b5a988e6b21d42ed9616b018bbcbf9 +$(package)_build_subdir=cctools +$(package)_clang_version=3.3 +$(package)_clang_download_path=http://llvm.org/releases/$($(package)_clang_version) +$(package)_clang_download_file=clang+llvm-$($(package)_clang_version)-amd64-Ubuntu-12.04.2.tar.gz +$(package)_clang_file_name=clang-llvm-$($(package)_clang_version)-amd64-Ubuntu-12.04.2.tar.gz +$(package)_clang_sha256_hash=60d8f69f032d62ef61bf527857ebb933741ec3352d4d328c5516aa520662dab7 define $(package)_fetch_cmds $(call fetch_file,$(package),$($(package)_download_path),$($(package)_download_file),$($(package)_file_name),$($(package)_sha256_hash)) && \ -$(call fetch_file,$(package),$($(package)_ld64_download_path),$($(package)_ld64_download_file),$($(package)_ld64_file_name),$($(package)_ld64_sha256_hash)) && \ -$(call fetch_file,$(package),$($(package)_dyld_download_path),$($(package)_dyld_download_file),$($(package)_dyld_file_name),$($(package)_dyld_sha256_hash)) && \ -$(call fetch_file,$(package),$($(package)_clang_download_path),$($(package)_clang_download_file),$($(package)_clang_file_name),$($(package)_clang_sha256_hash)) && \ -$(call fetch_file,$(package),$($(package)_toolchain4_download_path),$($(package)_toolchain4_download_file),$($(package)_toolchain4_file_name),$($(package)_toolchain4_sha256_hash)) +$(call fetch_file,$(package),$($(package)_clang_download_path),$($(package)_clang_download_file),$($(package)_clang_file_name),$($(package)_clang_sha256_hash)) endef -define $(package)_set_vars -$(package)_config_opts=--target=$(host) --with-sysroot=$(OSX_SDK) -$(package)_cflags+=-m32 -$(package)_cxxflags+=-m32 -$(package)_cppflags+=-D__DARWIN_UNIX03 -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -$(package)_ldflags+=-m32 -Wl,-rpath=\\$$$$$$$$\$$$$$$$$ORIGIN/../lib -$(package)_ldflags+=-L$$(native_cctools_extract_dir)/clang+llvm-3.2-x86-linux-ubuntu-12.04/lib -endef define $(package)_extract_cmds - tar --strip-components=1 -xf $(SOURCES_PATH)/$($(package)_toolchain4_file_name) && \ - ln -sf $($(package)_source) cctools2odcctools/$($(package)_file_name) && \ - ln -sf $(SOURCES_PATH)/$($(package)_ld64_file_name) cctools2odcctools/$($(package)_ld64_file_name) && \ - ln -sf $(SOURCES_PATH)/$($(package)_dyld_file_name) cctools2odcctools/$($(package)_dyld_file_name) && \ - tar xf $(SOURCES_PATH)/$($(package)_clang_file_name) && \ - mkdir -p $(SDK_PATH) sdks &&\ - cd sdks; ln -sf $(OSX_SDK) MacOSX$(OSX_SDK_VERSION).sdk + mkdir -p toolchain/bin toolchain/lib/clang/3.5/include && \ + tar --strip-components=1 -C toolchain -xf $($(package)_source_dir)/$($(package)_clang_file_name) && \ + echo "#!/bin/sh" > toolchain/bin/$(host)-dsymutil && \ + echo "exit 0" >> toolchain/bin/$(host)-dsymutil && \ + chmod +x toolchain/bin/$(host)-dsymutil && \ + tar --strip-components=1 -xf $($(package)_source) +endef + +define $(package)_set_vars +$(package)_config_opts=--target=$(host) --disable-libuuid +$(package)_ldflags+=-Wl,-rpath=\\$$$$$$$$\$$$$$$$$ORIGIN/../lib +$(package)_cc=$($(package)_extract_dir)/toolchain/bin/clang +$(package)_cxx=$($(package)_extract_dir)/toolchain/bin/clang++ endef define $(package)_preprocess_cmds - sed -i "s|GCC_DIR|LLVM_CLANG_DIR|g" cctools2odcctools/extract.sh && \ - sed -i "s|llvmgcc42-2336.1|clang+llvm-3.2-x86-linux-ubuntu-12.04|g" cctools2odcctools/extract.sh && \ - sed -i "s|/llvmCore/include/llvm-c|/include/llvm-c \$$$${LLVM_CLANG_DIR}/include/llvm |" cctools2odcctools/extract.sh && \ - sed -i "s|fAC_INIT|AC_INIT|" cctools2odcctools/files/configure.ac && \ - sed -i 's/\# Dynamically linked LTO/\t ;\&\n\t linux*)\n# Dynamically linked LTO/' cctools2odcctools/files/configure.ac && \ - cd cctools2odcctools; ./extract.sh --osxver $(OSX_SDK_VERSION) && \ - sed -i "s|define\tPC|define\tPC_|" odcctools-809/include/architecture/sparc/reg.h + cd $($(package)_build_subdir); ./autogen.sh endef define $(package)_config_cmds @@ -68,13 +44,13 @@ endef define $(package)_stage_cmds $(MAKE) DESTDIR=$($(package)_staging_dir) install && \ - cd ../../clang+llvm-3.2-x86-linux-ubuntu-12.04 && \ - mkdir -p $($(package)_staging_prefix_dir)/lib/clang/3.2/include && \ - mkdir -p $($(package)_staging_prefix_dir)/bin && \ + cd $($(package)_extract_dir)/toolchain && \ + mkdir -p $($(package)_staging_prefix_dir)/lib/clang/$($(package)_clang_version)/include && \ + mkdir -p $($(package)_staging_prefix_dir)/bin $($(package)_staging_prefix_dir)/include && \ cp -P bin/clang bin/clang++ $($(package)_staging_prefix_dir)/bin/ &&\ cp lib/libLTO.so $($(package)_staging_prefix_dir)/lib/ && \ - cp lib/clang/3.2/include/* $($(package)_staging_prefix_dir)/lib/clang/3.2/include/ && \ - echo "#!/bin/sh" > $($(package)_staging_prefix_dir)/bin/$(host)-dsymutil && \ - echo "exit 0" >> $($(package)_staging_prefix_dir)/bin/$(host)-dsymutil && \ - chmod +x $($(package)_staging_prefix_dir)/bin/$(host)-dsymutil + cp -rf lib/clang/$($(package)_clang_version)/include/* $($(package)_staging_prefix_dir)/lib/clang/$($(package)_clang_version)/include/ && \ + cp bin/$(host)-dsymutil $($(package)_staging_prefix_dir)/bin && \ + if `test -d include/c++/`; then cp -rf include/c++/ $($(package)_staging_prefix_dir)/include/; fi && \ + if `test -d lib/c++/`; then cp -rf lib/c++/ $($(package)_staging_prefix_dir)/lib/; fi endef diff --git a/depends/packages/native_cdrkit.mk b/depends/packages/native_cdrkit.mk index 2cc388b4b30c3..cf694edb30e92 100644 --- a/depends/packages/native_cdrkit.mk +++ b/depends/packages/native_cdrkit.mk @@ -1,6 +1,6 @@ package=native_cdrkit $(package)_version=1.1.11 -$(package)_download_path=http://distro.ibiblio.org/fatdog/source/c +$(package)_download_path=http://distro.ibiblio.org/fatdog/source/600/c $(package)_file_name=cdrkit-$($(package)_version).tar.bz2 $(package)_sha256_hash=b50d64c214a65b1a79afe3a964c691931a4233e2ba605d793eb85d0ac3652564 $(package)_patches=cdrkit-deterministic.patch diff --git a/depends/packages/native_comparisontool.mk b/depends/packages/native_comparisontool.mk index 3d430d4306a58..d1b86dc2de594 100644 --- a/depends/packages/native_comparisontool.mk +++ b/depends/packages/native_comparisontool.mk @@ -17,5 +17,5 @@ endef define $(package)_stage_cmds mkdir -p $($(package)_staging_prefix_dir)/share/$($(package)_install_dirname) && \ - mv $(SOURCES_PATH)/$($(package)_file_name) $($(package)_staging_prefix_dir)/share/$($(package)_install_dirname)/$($(package)_install_filename) + cp $($(package)_source) $($(package)_staging_prefix_dir)/share/$($(package)_install_dirname)/$($(package)_install_filename) endef diff --git a/depends/packages/openssl.mk b/depends/packages/openssl.mk index 6d7a556c1100b..492994b715739 100644 --- a/depends/packages/openssl.mk +++ b/depends/packages/openssl.mk @@ -1,8 +1,8 @@ package=openssl -$(package)_version=1.0.1j +$(package)_version=1.0.1k $(package)_download_path=https://www.openssl.org/source $(package)_file_name=$(package)-$($(package)_version).tar.gz -$(package)_sha256_hash=1b60ca8789ba6f03e8ef20da2293b8dc131c39d83814e775069f02d26354edf3 +$(package)_sha256_hash=8f9faeaebad088e772f4ef5e38252d472be4d878c6b3a2718c10a4fcebe7a41c define $(package)_set_vars $(package)_config_env=AR="$($(package)_ar)" RANLIB="$($(package)_ranlib)" CC="$($(package)_cc)" @@ -10,7 +10,7 @@ $(package)_config_opts=--prefix=$(host_prefix) --openssldir=$(host_prefix)/etc/o $(package)_config_opts+=no-krb5 no-camellia no-capieng no-cast no-cms no-dtls1 no-gost no-gmp no-heartbeats no-idea no-jpake no-md2 $(package)_config_opts+=no-mdc2 no-rc5 no-rdrand no-rfc3779 no-rsax no-sctp no-seed no-sha0 no-static_engine no-whirlpool no-rc2 no-rc4 no-ssl2 no-ssl3 $(package)_config_opts+=$($(package)_cflags) $($(package)_cppflags) -$(package)_config_opts_linux=-fPIC +$(package)_config_opts_linux=-fPIC -Wa,--noexecstack $(package)_config_opts_x86_64_linux=linux-x86_64 $(package)_config_opts_i686_linux=linux-generic32 $(package)_config_opts_arm_linux=linux-generic32 @@ -20,7 +20,7 @@ $(package)_config_opts_i686_mingw32=mingw endef define $(package)_preprocess_cmds - sed -i.old "/define DATE/d" crypto/Makefile && \ + sed -i.old "/define DATE/d" util/mkbuildinf.pl && \ sed -i.old "s|engines apps test|engines|" Makefile.org endef diff --git a/depends/packages/packages.mk b/depends/packages/packages.mk index bbf53cc2dce7f..08fd8a524780c 100644 --- a/depends/packages/packages.mk +++ b/depends/packages/packages.mk @@ -19,5 +19,5 @@ wallet_packages=bdb upnp_packages=miniupnpc ifneq ($(build_os),darwin) -darwin_native_packages=native_libuuid native_openssl native_cctools native_cdrkit native_libdmg-hfsplus +darwin_native_packages=native_cctools native_cdrkit native_libdmg-hfsplus endif diff --git a/depends/packages/qt.mk b/depends/packages/qt.mk index 6a8e714a489db..ce61c43d63404 100644 --- a/depends/packages/qt.mk +++ b/depends/packages/qt.mk @@ -1,13 +1,13 @@ PACKAGE=qt -$(package)_version=5.2.1 -$(package)_download_path=http://download.qt-project.org/official_releases/qt/5.2/$($(package)_version)/single +$(package)_version=5.6.1 +$(package)_download_path=http://download.qt-project.org/official_releases/qt/5.6/$($(package)_version)/single $(package)_file_name=$(package)-everywhere-opensource-src-$($(package)_version).tar.gz -$(package)_sha256_hash=84e924181d4ad6db00239d87250cc89868484a14841f77fb85ab1f1dbdcd7da1 +$(package)_sha256_hash=2e5be28fcaaf95e179041a0eb95ccca69b17f50e39245e20974fad9469c10f2f $(package)_dependencies=openssl $(package)_linux_dependencies=freetype fontconfig dbus libxcb libX11 xproto libXext $(package)_build_subdir=qtbase $(package)_qt_libs=corelib network widgets gui plugins testlib -$(package)_patches=mac-qmake.conf fix-xcb-include-order.patch qt5-tablet-osx.patch +$(package)_patches=mac-qmake.conf fix-xcb-include-order.patch qt5-tablet-osx.patch qt5-yosemite.patch define $(package)_set_vars $(package)_config_opts_release = -release @@ -34,7 +34,7 @@ $(package)_config_opts += -qt-libpng -qt-libjpeg -qt-zlib -qt-pcre ifneq ($(build_os),darwin) $(package)_config_opts_darwin = -xplatform macx-clang-linux -device-option MAC_SDK_PATH=$(OSX_SDK) -device-option CROSS_COMPILE="$(host)-" -$(package)_config_opts_darwin += -device-option MAC_MIN_VERSION=$(OSX_MIN_VERSION) -device-option MAC_TARGET=$(host) +$(package)_config_opts_darwin += -device-option MAC_MIN_VERSION=$(OSX_MIN_VERSION) -device-option MAC_TARGET=$(host) -device-option MAC_LD64_VERSION=$(LD64_VERSION) endif $(package)_config_opts_linux = -qt-xkbcommon -qt-xcb -no-eglfs -no-linuxfb -system-freetype -no-sm -fontconfig -no-xinput2 -no-libudev -no-egl -no-opengl @@ -56,6 +56,7 @@ define $(package)_preprocess_cmds cp -f $($(package)_patch_dir)/mac-qmake.conf qtbase/mkspecs/macx-clang-linux/qmake.conf && \ patch -p1 < $($(package)_patch_dir)/fix-xcb-include-order.patch && \ patch -p1 < $($(package)_patch_dir)/qt5-tablet-osx.patch && \ + patch -d qtbase -p1 < $($(package)_patch_dir)/qt5-yosemite.patch && \ echo "QMAKE_CFLAGS += $($(package)_cflags) $($(package)_cppflags)" >> qtbase/mkspecs/common/gcc-base.conf && \ echo "QMAKE_CXXFLAGS += $($(package)_cxxflags) $($(package)_cppflags)" >> qtbase/mkspecs/common/gcc-base.conf && \ echo "QMAKE_LFLAGS += $($(package)_ldflags)" >> qtbase/mkspecs/common/gcc-base.conf && \ diff --git a/depends/patches/qt/mac-qmake.conf b/depends/patches/qt/mac-qmake.conf index f7302265bcd99..a97945bc8c16d 100644 --- a/depends/patches/qt/mac-qmake.conf +++ b/depends/patches/qt/mac-qmake.conf @@ -15,7 +15,7 @@ QMAKE_MAC_SDK.macosx.platform_name = macosx QMAKE_CFLAGS += -target $${MAC_TARGET} QMAKE_OBJECTIVE_CFLAGS += $$QMAKE_CFLAGS QMAKE_CXXFLAGS += $$QMAKE_CFLAGS -QMAKE_LFLAGS += -target $${MAC_TARGET} +QMAKE_LFLAGS += -target $${MAC_TARGET} -mlinker-version=$${MAC_LD64_VERSION} QMAKE_AR = $${CROSS_COMPILE}ar cq QMAKE_RANLIB=$${CROSS_COMPILE}ranlib QMAKE_LIBTOOL=$${CROSS_COMPILE}libtool diff --git a/depends/patches/qt/qt5-yosemite.patch b/depends/patches/qt/qt5-yosemite.patch new file mode 100644 index 0000000000000..d569d34d47f2d --- /dev/null +++ b/depends/patches/qt/qt5-yosemite.patch @@ -0,0 +1,52 @@ +The following patch was taken from upstream: +https://qt.gitorious.org/qt/qtbase/commit/70e4428b6f1c6a4bad112203f67ee7d22107616c.patch + +The first hunk was removed because it conflicts with 5.2.1, and is not currently needed. + +From 70e4428b6f1c6a4bad112203f67ee7d22107616c Mon Sep 17 00:00:00 2001 +From: Gabriel de Dietrich +Date: Tue, 3 Jun 2014 14:20:20 +0200 +Subject: [PATCH] Cocoa: Adapt to Xcode 6 clang version sudden pickiness +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Yes, that means OS X Yosemite fix. + +Change-Id: I236f7af7b803de24ff0895e04c9a9253b5cfdb3b +Reviewed-by: Morten Johan Sørvig +--- + .../platforms/cocoa/qcocoaaccessibilityelement.mm | 2 +- + .../platforms/cocoa/qcocoaapplicationdelegate.mm | 2 +- + src/plugins/platforms/cocoa/qcocoamenuloader.mm | 2 +- + 3 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm b/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm +index f841184..548c6a2 100644 +--- a/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm ++++ b/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm +@@ -124,7 +124,7 @@ static void cleanupCocoaApplicationDelegate() + [dockMenu release]; + [qtMenuLoader release]; + if (reflectionDelegate) { +- [NSApp setDelegate:reflectionDelegate]; ++ [[NSApplication sharedApplication] setDelegate:reflectionDelegate]; + [reflectionDelegate release]; + } + [[NSNotificationCenter defaultCenter] removeObserver:self]; +diff --git a/src/plugins/platforms/cocoa/qcocoamenuloader.mm b/src/plugins/platforms/cocoa/qcocoamenuloader.mm +index 60bc3b5..9340e94 100644 +--- a/src/plugins/platforms/cocoa/qcocoamenuloader.mm ++++ b/src/plugins/platforms/cocoa/qcocoamenuloader.mm +@@ -174,7 +174,7 @@ QT_END_NAMESPACE + - (void)removeActionsFromAppMenu + { + for (NSMenuItem *item in [appMenu itemArray]) +- [item setTag:nil]; ++ [item setTag:0]; + } + + - (void)dealloc +-- +1.7.1 + diff --git a/doc/Doxyfile b/doc/Doxyfile index e0339e652eb07..0133be2a6183e 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -34,7 +34,7 @@ PROJECT_NAME = Bitcoin # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.9.99 +PROJECT_NUMBER = 0.10.4 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer diff --git a/doc/README.md b/doc/README.md index d5d61738e87ce..1dea631ce0192 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1,16 +1,13 @@ -Bitcoin 0.9.99 BETA +Bitcoin Core 0.10.4 ===================== -Copyright (c) 2009-2014 Bitcoin Developers - - Setup --------------------- [Bitcoin Core](http://bitcoin.org/en/download) is the original Bitcoin client and it builds the backbone of the network. However, it downloads and stores the entire history of Bitcoin transactions (which is currently several GBs); 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. Thankfully you only have to do this once. If you would like the process to go faster you can [download the blockchain directly](bootstrap.md). Running --------------------- -The following are some helpful notes on how to run Bitcoin on your native platform. +The following are some helpful notes on how to run Bitcoin on your native platform. ### Unix @@ -29,7 +26,7 @@ Unpack the files into a directory and run: Unpack the files into a directory, and then run bitcoin-qt.exe. -### OSX +### OS X Drag Bitcoin-Qt to your applications folder, and then run Bitcoin-Qt. @@ -44,7 +41,7 @@ Building --------------------- The following are developer notes on how to build Bitcoin on your native platform. They are not complete guides, but include notes on the necessary libraries, compile flags, etc. -- [OSX Build Notes](build-osx.md) +- [OS X Build Notes](build-osx.md) - [Unix Build Notes](build-unix.md) Development diff --git a/doc/README_osx.txt b/doc/README_osx.txt index d56234f7d9408..bdd5a1351d80b 100644 --- a/doc/README_osx.txt +++ b/doc/README_osx.txt @@ -1,12 +1,12 @@ -Deterministic OSX Dmg Notes. +Deterministic OS X Dmg Notes. -Working OSX DMG's are created in Linux by combining a recent clang, +Working OS X DMGs are created in Linux by combining a recent clang, the Apple's binutils (ld, ar, etc), and DMG authoring tools. Apple uses clang extensively for development and has upstreamed the necessary functionality so that a vanilla clang can take advantage. It supports the use of -F, -target, -mmacosx-version-min, and --sysroot, which are all necessary -when building for OSX. A pre-compiled version of 3.2 is used because it was not +when building for OS X. A pre-compiled version of 3.2 is used because it was not available in the Precise repositories at the time this work was started. In the future, it can be switched to use system packages instead. @@ -29,17 +29,18 @@ originally done in toolchain4. To complicate things further, all builds must target an Apple SDK. These SDKs are free to download, but not redistributable. -To obtain it, register for a developer account, then download xcode4630916281a.dmg: -https://developer.apple.com/downloads/download.action?path=Developer_Tools/xcode_4.6.3/xcode4630916281a.dmg +To obtain it, register for a developer account, then download the XCode 6.1.1 dmg: +https://developer.apple.com/downloads/download.action?path=Developer_Tools/xcode_6.1.1/xcode_6.1.1.dmg + This file is several gigabytes in size, but only a single directory inside is -needed: Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk +needed: Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk Unfortunately, the usual linux tools (7zip, hpmount, loopback mount) are incapable of opening this file. -To create a tarball suitable for gitian input, mount the dmg in OSX, then create it with: - $ tar -C /Volumes/Xcode/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/ -czf MacOSX10.7.sdk.tar.gz MacOSX10.7.sdk +To create a tarball suitable for Gitian input, mount the dmg in OS X, then create it with: + $ tar -C /Volumes/Xcode/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/ -czf MacOSX10.9.sdk.tar.gz MacOSX10.9.sdk -The gitian descriptors build 2 sets of files: Linux tools, then Apple binaries +The Gitian descriptors build 2 sets of files: Linux tools, then Apple binaries which are created using these tools. The build process has been designed to avoid including the SDK's files in Gitian's outputs. All interim tarballs are fully deterministic and may be freely redistributed. @@ -63,20 +64,20 @@ Ideally, the creation could be fixed and genisoimage would no longer be necessar Background images and other features can be added to DMG files by inserting a .DS_Store before creation. The easiest way to create this file is to build a -DMG without one, move it to a device running OSX, customize the layout, then +DMG without one, move it to a device running OS X, customize the layout, then grab the .DS_Store file for later use. That is the approach taken here. -As of OSX Mavericks (10.9), using an Apple-blessed key to sign binaries is a +As of OS X Mavericks (10.9), using an Apple-blessed key to sign binaries is a requirement in order to satisfy the new Gatekeeper requirements. Because this private key cannot be shared, we'll have to be a bit creative in order for the build process to remain somewhat deterministic. Here's how it works: -- Builders use gitian to create an unsigned release. This outputs an unsigned +- Builders use Gitian to create an unsigned release. This outputs an unsigned dmg which users may choose to bless and run. It also outputs an unsigned app structure in the form of a tarball, which also contains all of the tools that have been previously (deterministically) built in order to create a final dmg. - The Apple keyholder uses this unsigned app to create a detached signature, using the script that is also included there. -- Builders feed the unsigned app + detached signature back into gitian. It +- Builders feed the unsigned app + detached signature back into Gitian. It uses the pre-built tools to recombine the pieces into a deterministic dmg. diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 368f2b45e1fbc..f5e09a4615965 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,13 +1,5 @@ -Bitcoin 0.9.99 BETA - -Copyright (c) 2009-2014 Bitcoin Core Developers - -Distributed under the MIT/X11 software license, see the accompanying -file COPYING or http://www.opensource.org/licenses/mit-license.php. -This product includes software developed by the OpenSSL Project for use in -the OpenSSL Toolkit (https://www.openssl.org/). This product includes -cryptographic software written by Eric Young (eay@cryptsoft.com). - +Bitcoin Core 0.10.4 +===================== Intro ----- diff --git a/doc/bootstrap.md b/doc/bootstrap.md index b84fd24b11d92..a42b7cb3bda9d 100644 --- a/doc/bootstrap.md +++ b/doc/bootstrap.md @@ -5,8 +5,9 @@ Normally the Bitcoin client will download the transaction and network informatio ### Requirements - A fresh install of the Bitcoin client software. +- Ability to download Torrents or download from a direct-link. -### Download the blockchain via BitTorrent +### Download the Blockchain via BitTorrent Jeff Garzik, Bitcoin Core developer, offers an [torrent file](https://bitcointalk.org/index.php?topic=145386.0) for bootstrapping purposes that is updated often. BitTorrent is a protocol that speeds up the downloading of large files by using the other clients in the network. Examples of free and safe open source clients are [Deluge](http://deluge-torrent.org/) or [qBittorrent](http://www.qbittorrent.org/). A guide to installing and configuring the torrent clients can be found [here](http://dev.deluge-torrent.org/wiki/UserGuide) for Deluge and [here](http://qbforums.shiki.hu/) for qBittorrent. A further in-depth tutorial on BitTorrent can be found [here](http://www.howtogeek.com/howto/31846/bittorrent-for-beginners-how-get-started-downloading-torrents/). @@ -24,7 +25,26 @@ The torrent client installed will recognize the download of the torrent file. Sa ![Fig2](img/bootstrap2.png) -### Importing the blockchain +### Download the Blockchain from the LitecoinNode Project + +The Litecoin node project provides multiple and regulaly updated direct-link downloads. Copies of bootstrap.dat can be downloaded directly from servers provided by LitecoinNode, or be downloaded from a randomly selected server. All copies of boootstrap are updated at the maximum of every six months. + +**Copies of Bootstrap from a specific server** + +* [http://mango.litecoinnode.org/bootstrap.dat](http://mango.litecoinnode.org/bootstrap.dat) +* [http://apple.litecoinnode.org/bootstrap.dat](http://apple.litecoinnode.org/bootstrap.dat) + +**Randomly selected dopy of Bootstrap** + +This could be useful for use in scripts. + +* [http://bootstrap.litecoinnode.org/bootstrap.dat](http://bootstrap.litecoinnode.org/bootstrap.dat) + +**Example usage in a (bash) Terminal** + + wget http://bootstrap.litecoinnode.org/bootstrap.dat //downloads bootstrap into current directory + +### Importing the Blockchain Exit the Bitcoin client software if you have it running. Be sure not to have an actively used wallet in use. We are going to copy the download of the blockchain to the Bitcoin client data directory. You should run the client software at least once so it can generate the data directory. Copy the downloaded bootstrap.dat file into the Bitcoin data folder. **For Windows users:** @@ -45,7 +65,7 @@ The directory is hidden in your User folder. Go to: ~/.bitcoin/ -### Importing the blockchain +### Importing the Blockchain Now start the Bitcoin client software. It should show "Importing blocks from disk" like the image below. ![Fig5](img/bootstrap5.png) diff --git a/doc/build-osx.md b/doc/build-osx.md index c41820f2b1be0..ca2cf3b79cee9 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -1,6 +1,6 @@ Mac OS X Build Instructions and Notes ==================================== -This guide will show you how to build bitcoind(headless client) for OSX. +This guide will show you how to build hypercoind(headless client) for OS X. Notes ----- @@ -13,8 +13,8 @@ built-in one is located in `/Applications/Utilities`. Preparation ----------- -You need to install XCode with all the options checked so that the compiler -and everything is available in /usr not just /Developer. XCode should be +You need to install Xcode with all the options checked so that the compiler +and everything is available in /usr not just /Developer. Xcode should be available on your OS X installation media, but if not, you can get the current version from https://developer.apple.com/xcode/. If you install Xcode 4.3 or later, you'll need to install its command line tools. This can @@ -58,19 +58,19 @@ The rest of these commands are run inside brew interactive mode: /private/tmp/berkeley-db4-UGpd0O $ exit ``` -After exiting, you'll get a warning that the install is keg-only, which means it wasn't symlinked to `/usr/local`. You don't need it to link it to build bitcoin, but if you want to, here's how: +After exiting, you'll get a warning that the install is keg-only, which means it wasn't symlinked to `/usr/local`. You don't need it to link it to build hypercoin, but if you want to, here's how: $ brew link --force berkeley-db4 -### Building `bitcoind` +### Building `hypercoind` -1. Clone the github tree to get the source code and go into the directory. +1. Clone the GitHub tree to get the source code and go into the directory. - git clone https://github.com/bitcoin/bitcoin.git - cd bitcoin + git clone https://github.com/hypercoin-project/hypercoin.git + cd hypercoin -2. Build bitcoind: +2. Build hypercoind: ./autogen.sh ./configure @@ -80,7 +80,7 @@ After exiting, you'll get a warning that the install is keg-only, which means it make check -4. (Optional) You can also install bitcoind to your path: +4. (Optional) You can also install hypercoind to your path: make install @@ -89,10 +89,10 @@ Use Qt Creator as IDE You can use Qt Creator as IDE, for debugging and for manipulating forms, etc. Download Qt Creator from http://www.qt.io/download/. Download the "community edition" and only install Qt Creator (uncheck the rest during the installation process). -1. Make sure you installed everything through homebrew mentioned above +1. Make sure you installed everything through Homebrew mentioned above 2. Do a proper ./configure --with-gui=qt5 --enable-debug 3. In Qt Creator do "New Project" -> Import Project -> Import Existing Project -4. Enter "bitcoin-qt" as project name, enter src/qt as location +4. Enter "hypercoin-qt" as project name, enter src/qt as location 5. Leave the file selection as it is 6. Confirm the "summary page" 7. In the "Projects" tab select "Manage Kits..." @@ -102,11 +102,11 @@ Download Qt Creator from http://www.qt.io/download/. Download the "community edi Creating a release build ------------------------ -You can ignore this section if you are building `bitcoind` for your own use. +You can ignore this section if you are building `hypercoind` for your own use. -bitcoind/bitcoin-cli binaries are not included in the Bitcoin-Qt.app bundle. +hypercoind/hypercoin-cli binaries are not included in the hypercoin-Qt.app bundle. -If you are building `bitcoind` or `Bitcoin-Qt` for others, your build machine should be set up +If you are building `hypercoind` or `hypercoin-Qt` for others, your build machine should be set up as follows for maximum compatibility: All dependencies should be compiled with these flags: @@ -115,30 +115,30 @@ All dependencies should be compiled with these flags: -arch x86_64 -isysroot $(xcode-select --print-path)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -Once dependencies are compiled, see release-process.md for how the Bitcoin-Qt.app +Once dependencies are compiled, see release-process.md for how the hypercoin-Qt.app bundle is packaged and signed to create the .dmg disk image that is distributed. Running ------- -It's now available at `./bitcoind`, provided that you are still in the `src` +It's now available at `./hypercoind`, provided that you are still in the `src` directory. We have to first create the RPC configuration file, though. -Run `./bitcoind` to get the filename where it should be put, or just try these +Run `./hypercoind` to get the filename where it should be put, or just try these commands: - echo -e "rpcuser=bitcoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf" - chmod 600 "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf" + echo -e "rpcuser=hypercoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/hypercoin/hypercoin.conf" + chmod 600 "/Users/${USER}/Library/Application Support/hypercoin/hypercoin.conf" The next time you run it, it will start downloading the blockchain, but it won't output anything while it's doing this. This process may take several hours; you can monitor its process by looking at the debug.log file, like this: - tail -f $HOME/Library/Application\ Support/Bitcoin/debug.log + tail -f $HOME/Library/Application\ Support/hypercoin/debug.log Other commands: ------- - ./bitcoind -daemon # to start the bitcoin daemon. - ./bitcoin-cli --help # for a list of command-line options. - ./bitcoin-cli help # When the daemon is running, to get a list of RPC commands + ./hypercoind -daemon # to start the hypercoin daemon. + ./hypercoin-cli --help # for a list of command-line options. + ./hypercoin-cli help # When the daemon is running, to get a list of RPC commands diff --git a/doc/build-unix.md b/doc/build-unix.md index 8ddee3b75715c..c887c8fc3451e 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -1,10 +1,10 @@ UNIX BUILD NOTES ==================== -Some notes on how to build Bitcoin in Unix. +Some notes on how to build Hypercoin in Unix. Note --------------------- -Always use absolute paths to configure and compile bitcoin and the dependencies, +Always use absolute paths to configure and compile Hypercoin and the dependencies, for example, when specifying the the path of the dependency: ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX @@ -22,7 +22,7 @@ make make install # optional ``` -This will build bitcoin-qt as well if the dependencies are met. +This will build hypercoin-qt as well if the dependencies are met. Dependencies --------------------- @@ -50,7 +50,7 @@ System requirements -------------------- C++ compilers are memory-hungry. It is recommended to have at least 1 GB of -memory available when compiling Bitcoin Core. With 512MB of memory or less +memory available when compiling hypercoin Core. With 512MB of memory or less compilation will take much longer due to swap thrashing. Dependency Build Instructions: Ubuntu & Debian @@ -94,7 +94,7 @@ Optional: Dependencies for the GUI: Ubuntu & Debian ----------------------------------------- -If you want to build Bitcoin-Qt, make sure that the required packages for Qt development +If you want to build Hypercoin-Qt, make sure that the required packages for Qt development are installed. Either Qt 4 or Qt 5 are necessary to build the GUI. If both Qt 4 and Qt 5 are installed, Qt 4 will be used. Pass `--with-gui=qt5` to configure to choose Qt5. To build without GUI pass `--without-gui`. @@ -111,12 +111,12 @@ libqrencode (optional) can be installed with: sudo apt-get install libqrencode-dev -Once these are installed, they will be found by configure and a bitcoin-qt executable will be +Once these are installed, they will be found by configure and a hypercoin-qt executable will be built by default. Notes ----- -The release is built with GCC and then "strip bitcoind" to strip the debug +The release is built with GCC and then "strip hypercoind" to strip the debug symbols, which reduces the executable size by about 90%. @@ -145,10 +145,10 @@ Berkeley DB It is recommended to use Berkeley DB 4.8. If you have to build it yourself: ```bash -BITCOIN_ROOT=$(pwd) +HYPERCOIN_ROOT=$(pwd) -# Pick some path to install BDB to, here we create a directory within the bitcoin directory -BDB_PREFIX="${BITCOIN_ROOT}/db4" +# Pick some path to install BDB to, here we create a directory within the hypercoin directory +BDB_PREFIX="${HYPERCOIN_ROOT}/db4" mkdir -p $BDB_PREFIX # Fetch the source and verify that it is not tampered with @@ -163,8 +163,8 @@ cd db-4.8.30.NC/build_unix/ ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX make install -# Configure Bitcoin Core to use our own-built instance of BDB -cd $BITCOIN_ROOT +# Configure Hypercoin Core to use our own-built instance of BDB +cd $HYPERCOIN_ROOT ./configure (other args...) LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" ``` @@ -181,7 +181,7 @@ If you need to build Boost yourself: Security -------- -To help make your bitcoin installation more secure by making certain attacks impossible to +To help make your hypercoin installation more secure by making certain attacks impossible to exploit even if a vulnerability is found, binaries are hardened by default. This can be disabled with: @@ -205,7 +205,7 @@ Hardening enables the following features: To test that you have built PIE executable, install scanelf, part of paxutils, and use: - scanelf -e ./bitcoin + scanelf -e ./hypercoin The output should contain: TYPE @@ -213,13 +213,13 @@ Hardening enables the following features: * Non-executable Stack If the stack is executable then trivial stack based buffer overflow exploits are possible if - vulnerable buffers are found. By default, bitcoin should be built with a non-executable stack + vulnerable buffers are found. By default, hypercoin should be built with a non-executable stack but if one of the libraries it uses asks for an executable stack or someone makes a mistake and uses a compiler extension which requires an executable stack, it will silently build an executable without the non-executable stack protection. To verify that the stack is non-executable after compiling use: - `scanelf -e ./bitcoin` + `scanelf -e ./hypercoin` the output should contain: STK/REL/PTL @@ -229,7 +229,7 @@ Hardening enables the following features: Disable-wallet mode -------------------- -When the intention is to run only a P2P node without a wallet, bitcoin may be compiled in +When the intention is to run only a P2P node without a wallet, hypercoin may be compiled in disable-wallet mode with: ./configure --disable-wallet diff --git a/doc/coding.md b/doc/coding.md index 43294dbe4c116..577980bf92b79 100644 --- a/doc/coding.md +++ b/doc/coding.md @@ -57,7 +57,7 @@ As Doxygen recognizes the comments by the delimiters (`/**` and `*/` in this cas To describe a class use the same construct above the class definition: ```c++ -/** +/** * Alerts are for notifying old versions if they become too obsolete and * need to upgrade. The message is displayed in the status bar. * @see GetWarnings() @@ -119,7 +119,7 @@ Threads - ThreadMapPort : Universal plug-and-play startup/shutdown -- ThreadSocketHandler : Sends/Receives data from peers on port 8333. +- ThreadSocketHandler : Sends/Receives data from peers on port 36307. - ThreadOpenAddedConnections : Opens network connections to added nodes. @@ -131,7 +131,7 @@ Threads - ThreadFlushWalletDB : Close the wallet.dat file if it hasn't been used in 500ms. -- ThreadRPCServer : Remote procedure call handler, listens on port 8332 for connections and services them. +- ThreadRPCServer : Remote procedure call handler, listens on port 36308 for connections and services them. - BitcoinMiner : Generates bitcoins (if wallet is enabled). diff --git a/doc/dnsseed-policy.md b/doc/dnsseed-policy.md index 66a1757ac5e76..e6b4e6df5af6d 100644 --- a/doc/dnsseed-policy.md +++ b/doc/dnsseed-policy.md @@ -45,7 +45,8 @@ related to the DNS seed operation. If these expectations cannot be satisfied the operator should discontinue providing services and contact the active Bitcoin -Core development team as well as posting on bitcoin-development. +Core development team as well as posting on +[bitcoin-dev](https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev). Behavior outside of these expectations may be reasonable in some situations but should be discussed in public in advance. diff --git a/doc/files.md b/doc/files.md index 80195535bb748..ec767e0486da4 100644 --- a/doc/files.md +++ b/doc/files.md @@ -1,12 +1,16 @@ -Used in 0.8.0 ---------------------- -* wallet.dat: personal wallet (BDB) with keys and transactions -* peers.dat: peer IP address database (custom format); since 0.7.0 + +* bitcoin.conf: contains configuration settings for bitcoind or bitcoin-qt +* bitcoind.pid: stores the process id of bitcoind while running * blocks/blk000??.dat: block data (custom, 128 MiB per file); since 0.8.0 * blocks/rev000??.dat; block undo data (custom); since 0.8.0 (format changed since pre-0.8) * blocks/index/*; block index (LevelDB); since 0.8.0 * chainstate/*; block chain state database (LevelDB); since 0.8.0 * database/*: BDB database environment; only used for wallet since 0.8.0 +* db.log: wallet database log file +* debug.log: contains debug information and general logging generated by bitcoind or bitcoin-qt +* fee_estimates.dat: stores statistics used to estimate minimum transaction fees and priorities required for confirmation; since 0.10.0 +* peers.dat: peer IP address database (custom format); since 0.7.0 +* wallet.dat: personal wallet (BDB) with keys and transactions Only used in pre-0.8.0 --------------------- diff --git a/doc/gitian-building.md b/doc/gitian-building.md index b356a5d88d8d2..abedb3902a111 100644 --- a/doc/gitian-building.md +++ b/doc/gitian-building.md @@ -1,9 +1,9 @@ Gitian building ================ -*Setup instructions for a gitian build of Bitcoin using a Debian VM or physical system.* +*Setup instructions for a Gitian build of Hypercoin using a Debian VM or physical system.* -Gitian is the deterministic build process that is used to build the Bitcoin +Gitian is the deterministic build process that is used to build the Hypercoin Core executables. It provides a way to be reasonably sure that the executables are really built from source on GitHub. It also makes sure that the same, tested dependencies are used and statically built into the executable. @@ -11,9 +11,9 @@ the same, tested dependencies are used and statically built into the executable. Multiple developers build the source code by following a specific descriptor ("recipe"), cryptographically sign the result, and upload the resulting signature. These results are compared and only if they match, the build is accepted and uploaded -to bitcoin.org. +to hypercoin.org. -More independent gitian builders are needed, which is why I wrote this +More independent Gitian builders are needed, which is why I wrote this guide. It is preferred to follow these steps yourself instead of using someone else's VM image to avoid 'contaminating' the build. @@ -22,11 +22,11 @@ Table of Contents - [Create a new VirtualBox VM](#create-a-new-virtualbox-vm) - [Connecting to the VM](#connecting-to-the-vm) -- [Setting up Debian for gitian building](#setting-up-debian-for-gitian-building) -- [Installing gitian](#installing-gitian) -- [Setting up gitian images](#setting-up-gitian-images) +- [Setting up Debian for Gitian building](#setting-up-debian-for-gitian-building) +- [Installing Gitian](#installing-gitian) +- [Setting up Gitian images](#setting-up-gitian-images) - [Getting and building the inputs](#getting-and-building-the-inputs) -- [Building Bitcoin](#building-bitcoin) +- [Building Hypercoin](#building-hypercoin) - [Building an alternative repository](#building-an-alternative-repository) - [Signing externally](#signing-externally) - [Uploading signatures](#uploading-signatures) @@ -41,7 +41,7 @@ Debian Linux was chosen as the host distribution because it has a lightweight in Any kind of virtualization can be used, for example: - [VirtualBox](https://www.virtualbox.org/), covered by this guide - [KVM](http://www.linux-kvm.org/page/Main_Page) -- [LXC](https://linuxcontainers.org/), see also [Gitian host docker container](https://github.com/gdm85/tenku/tree/master/docker/gitian-bitcoin-host/README.md). +- [LXC](https://linuxcontainers.org/) You can also install on actual hardware instead of using virtualization. @@ -60,28 +60,28 @@ In the VirtualBox GUI click "Create" and choose the following parameters in the ![](gitian-building/create_vm_hard_drive.png) - Hard Drive: Create a virtual hard drive now - + ![](gitian-building/create_vm_hard_drive_file_type.png) -- Hard Drive file type: Use the default, VDI (VirtualBox Disk Image) +- Hard Drive file type: Use the default, VDI (VirtualBox Disk Image) ![](gitian-building/create_vm_storage_physical_hard_drive.png) - -- Storage on Physical hard drive: Dynamically Allocated - + +- Storage on Physical hard drive: Dynamically Allocated + ![](gitian-building/create_vm_file_location_size.png) -- Disk size: at least 40GB; as low as 20GB *may* be possible, but better to err on the safe side +- Disk size: at least 40GB; as low as 20GB *may* be possible, but better to err on the safe side - Push the `Create` button -Get the [Debian 7.4 net installer](http://ftp.at.debian.org/debian-jigdo/current/amd64/iso-cd/debian-7.4.0-amd64-netinst.iso) (a more recent minor version should also work, see also [Debian Network installation](https://www.debian.org/CD/netinst/)). +Get the [Debian 7.8 net installer](http://cdimage.debian.org/cdimage/archive/7.8.0/amd64/iso-cd/debian-7.8.0-amd64-netinst.iso) (a more recent minor version should also work, see also [Debian Network installation](https://www.debian.org/CD/netinst/)). This DVD image can be validated using a SHA256 hashing tool, for example on Unixy OSes by entering the following in a terminal: echo "b712a141bc60269db217d3b3e456179bd6b181645f90e4aac9c42ed63de492e9 debian-7.4.0-amd64-netinst.iso" | sha256sum -c # (must return OK) -After creating the VM, we need to configure it. +After creating the VM, we need to configure it. - Click the `Settings` button, then go to the `Network` tab. Adapter 1 should be attacked to `NAT`. @@ -125,22 +125,22 @@ and proceed, just press `Enter`. To select a different button, press `Tab`. ![](gitian-building/debian_install_4_configure_keyboard.png) - The VM will detect network settings using DHCP, this should all proceed automatically -- Configure the network: +- Configure the network: - System name `debian`. - Leave domain name empty. ![](gitian-building/debian_install_5_configure_the_network.png) -- Choose a root password and enter it twice (remember it for later) +- Choose a root password and enter it twice (remember it for later) ![](gitian-building/debian_install_6a_set_up_root_password.png) -- Name the new user `debian` (the full name doesn't matter, you can leave it empty) +- Name the new user `debian` (the full name doesn't matter, you can leave it empty) ![](gitian-building/debian_install_7_set_up_user_fullname.png) ![](gitian-building/debian_install_8_set_up_username.png) -- Choose a user password and enter it twice (remember it for later) +- Choose a user password and enter it twice (remember it for later) ![](gitian-building/debian_install_9_user_password.png) @@ -150,11 +150,11 @@ and proceed, just press `Enter`. To select a different button, press `Tab`. ![](gitian-building/debian_install_10_configure_clock.png) - Disk setup - - Partitioning method: Guided - Use the entire disk - + - Partitioning method: Guided - Use the entire disk + ![](gitian-building/debian_install_11_partition_disks.png) - - Select disk to partition: SCSI1 (0,0,0) + - Select disk to partition: SCSI1 (0,0,0) ![](gitian-building/debian_install_12_choose_disk.png) @@ -168,7 +168,7 @@ and proceed, just press `Enter`. To select a different button, press `Tab`. ![](gitian-building/debian_install_15_write_changes.png) - The base system will be installed, this will take a minute or so -- Choose a mirror (any will do) +- Choose a mirror (any will do) ![](gitian-building/debian_install_16_choose_a_mirror.png) @@ -217,7 +217,7 @@ Replace `root` with `debian` to log in as user. [1] http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html [2] http://winscp.net/eng/index.php -Setting up Debian for gitian building +Setting up Debian for Gitian building -------------------------------------- In this section we will be setting up the Debian installation for Gitian building. @@ -237,7 +237,7 @@ Then set up LXC and the rest with the following, which is a complex jumble of se ```bash # the version of lxc-start in Debian 7.4 needs to run as root, so make sure -# that the build script can exectute it without providing a password +# that the build script can execute it without providing a password echo "%sudo ALL=NOPASSWD: /usr/bin/lxc-start" > /etc/sudoers.d/gitian-lxc # add cgroup for LXC echo "cgroup /sys/fs/cgroup cgroup defaults 0 0" >> /etc/fstab @@ -257,7 +257,7 @@ reboot At the end the VM is rebooted to make sure that the changes take effect. The steps in this section need only to be performed once. -Installing gitian +Installing Gitian ------------------ Re-login as the user `debian` that was created during installation. @@ -277,21 +277,21 @@ cd .. **Note**: When sudo asks for a password, enter the password for the user *debian* not for *root*. -Clone the git repositories for bitcoin and gitian and then checkout the bitcoin version that you want to build. +Clone the git repositories for hypercoin and Gitian and then checkout the hypercoin version that you want to build. ```bash git clone https://github.com/devrandom/gitian-builder.git -git clone https://github.com/bitcoin/bitcoin -cd bitcoin +git clone https://github.com/hypercoin-project/hypercoin.git +cd hypercoin git checkout v${VERSION} cd .. ``` -Setting up gitian images +Setting up Gitian images ------------------------- Gitian needs virtual images of the operating system to build in. -Currently this is Ubuntu Precise for both x86 architectures. +Currently this is Ubuntu Precise for x86_64. These images will be copied and used every time that a build is started to make sure that the build is deterministic. Creating the images will take a while, but only has to be done once. @@ -300,7 +300,6 @@ Execute the following as user `debian`: ```bash cd gitian-builder -bin/make-base-vm --lxc --arch i386 --suite precise bin/make-base-vm --lxc --arch amd64 --suite precise ``` @@ -311,44 +310,36 @@ There will be a lot of warnings printed during build of the images. These can be Getting and building the inputs -------------------------------- -In [doc/release-process.md](release-process.md) in the bitcoin repository under 'Fetch and build inputs'. -you will find a list of `wget` commands that can be executed to get the dependencies. +Follow the instructions in [doc/release-process.md](release-process.md) in the hypercoin repository +under 'Fetch and build inputs' to install sources which require manual intervention. Also follow +the next step: 'Seed the Gitian sources cache', which will fetch all necessary source files allowing +for Gitian to work offline. -I needed to add `--no-check-certificate` to the OpenSSL wget line to make it work. -Likely this is because the ca-certificates in Debian 7.4 is fairly old. This does not create a -security issue as the gitian descriptors check the integrity of the input archives and refuse to work -if any one is corrupted. +Building Hypercoin +---------------- -After downloading the archives, execute the `gbuild` commands to build the dependencies. -This can take a long time, but only has to be done when the dependencies change, for example -to upgrade the used version. +To build Hypercoin (for Linux, OS X and Windows) just follow the steps under 'perform +Gitian builds' in [doc/release-process.md](release-process.md) in the hypercoin repository. -**Note**: Do not forget to copy the result from `build/out` to `inputs` after every gbuild command! This will save -you a lot of time. +This may take a long time as it also builds the dependencies needed for each descriptor. +These dependencies will be cached after a successful build to avoid rebuilding them when possible. At any time you can check the package installation and build progress with ```bash tail -f var/install.log tail -f var/build.log -``` - -Building Bitcoin ----------------- - -To build Bitcoin (for Linux, OSX and Windows) just follow the steps under 'perform -gitian builds' in [doc/release-process.md](release-process.md) in the bitcoin repository. Output from `gbuild` will look something like - Initialized empty Git repository in /home/debian/gitian-builder/inputs/bitcoin/.git/ + Initialized empty Git repository in /home/debian/gitian-builder/inputs/hypercoin/.git/ remote: Reusing existing pack: 35606, done. remote: Total 35606 (delta 0), reused 0 (delta 0) Receiving objects: 100% (35606/35606), 26.52 MiB | 4.28 MiB/s, done. Resolving deltas: 100% (25724/25724), done. - From https://github.com/bitcoin/bitcoin + From https://github.com/hypercoin-project/hypercoin ... (new tags, new branch etc) - --- Building for precise i386 --- + --- Building for precise x86_64 --- Stopping target if it is up Making a new image copy stdin: is not a tty @@ -363,23 +354,20 @@ Output from `gbuild` will look something like lxc-start: Connection refused - inotify event with no name (mask 32768) Running build script (log in var/build.log) -As when building the dependencies, the progress of package installation and building -can be inspected in `var/install.log` and `var/build.log`. - Building an alternative repository ----------------------------------- If you want to do a test build of a pull on GitHub it can be useful to point -the gitian builder at an alternative repository, using the same descriptors +the Gitian builder at an alternative repository, using the same descriptors and inputs. For example: ```bash -URL=https://github.com/laanwj/bitcoin.git +URL=https://github.com/user/hypercoin.git COMMIT=2014_03_windows_unicode_path -./bin/gbuild --commit bitcoin=${COMMIT} --url bitcoin=${URL} ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml -./bin/gbuild --commit bitcoin=${COMMIT} --url bitcoin=${URL} ../bitcoin/contrib/gitian-descriptors/gitian-win.yml -./bin/gbuild --commit bitcoin=${COMMIT} --url bitcoin=${URL} ../bitcoin/contrib/gitian-descriptors/gitian-osx.yml +./bin/gbuild --commit hypercoin=${COMMIT} --url hypercoin=${URL} ../hypercoin/contrib/gitian-descriptors/gitian-linux.yml +./bin/gbuild --commit hypercoin=${COMMIT} --url hypercoin=${URL} ../hypercoin/contrib/gitian-descriptors/gitian-win.yml +./bin/gbuild --commit hypercoin=${COMMIT} --url hypercoin=${URL} ../hypercoin/contrib/gitian-descriptors/gitian-osx.yml ``` Signing externally @@ -394,17 +382,17 @@ When you execute `gsign` you will get an error from GPG, which can be ignored. C in `gitian.sigs` to your signing machine and do ```bash - gpg --detach-sign ${VERSION}-linux/${SIGNER}/bitcoin-build.assert - gpg --detach-sign ${VERSION}-win/${SIGNER}/bitcoin-build.assert - gpg --detach-sign ${VERSION}-osx/${SIGNER}/bitcoin-build.assert + gpg --detach-sign ${VERSION}-linux/${SIGNER}/hypercoin-build.assert + gpg --detach-sign ${VERSION}-win/${SIGNER}/hypercoin-build.assert + gpg --detach-sign ${VERSION}-osx/${SIGNER}/hypercoin-build.assert ``` This will create the `.sig` files that can be committed together with the `.assert` files to assert your -gitian build. +Gitian build. Uploading signatures --------------------- After building and signing you can push your signatures (both the `.assert` and `.assert.sig` files) to the -[bitcoin/gitian.sigs](https://github.com/bitcoin/gitian.sigs/) repository, or if that's not possible create a pull -request. You can also mail the files to me (laanwj@gmail.com) and I'll commit them. +[hypercoin/gitian.sigs](https://github.com/hypercoin-project/gitian.sigs.hot/) repository, or if that's not possible create a pull +request. diff --git a/doc/init.md b/doc/init.md index 1f0559d80643c..4d7ba01f08f37 100644 --- a/doc/init.md +++ b/doc/init.md @@ -34,9 +34,8 @@ generate one from the shell yourself like this: bash -c 'tr -dc a-zA-Z0-9 < /dev/urandom | head -c32 && echo' -Once you have a password in hand, set rpcpassword= in /etc/bitcoin/bitcoin.conf -For an example configuration file that describes the configuration settings, +For an example configuration file that describes the configuration settings, see contrib/debian/examples/bitcoin.conf. 3. Paths @@ -81,7 +80,7 @@ Drop bitcoind.conf in /etc/init. Test by running "service bitcoind start" it will automatically start on reboot. NOTE: This script is incompatible with CentOS 5 and Amazon Linux 2014 as they -use old versions of Upstart and do not supply the start-stop-daemon uitility. +use old versions of Upstart and do not supply the start-stop-daemon utility. 5. Auto-respawn ----------------------------------- @@ -89,4 +88,3 @@ use old versions of Upstart and do not supply the start-stop-daemon uitility. Auto respawning is currently only configured for Upstart and systemd. Reasonable defaults have been chosen but YMMV. - diff --git a/doc/release-notes-litecoin.md b/doc/release-notes-litecoin.md new file mode 100644 index 0000000000000..5b61e2d91a396 --- /dev/null +++ b/doc/release-notes-litecoin.md @@ -0,0 +1,124 @@ +Litecoin Core version 0.10.4.0 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 +recommended to upgrade to this version as soon as possible. + +Please report bugs using the issue tracker at github: + + + +Upgrading and downgrading +========================= + +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/Litecoin-Qt (on Mac) or +litecoind/litecoin-qt (on Linux). + +Downgrade warning +------------------ + +Because release 0.10+ 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 Litecoin 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 +other programs. Reindexing using earlier versions will also not work +anymore as a result of this. + +* The block index database will now hold headers for which no block is +stored on disk, which earlier versions won't support. + +If you want to be able to downgrade smoothly, make a backup of your entire data +directory. Without this your node will need start syncing (or importing from +bootstrap.dat) anew afterwards. It is possible that the data from a completely +synchronised 0.10 node may be usable in older versions as-is, but this is not +supported and may break as soon as the older version attempts to reindex. + +This does not affect wallet forward or backward compatibility. + +Notable changes since 0.10.3 +============================ + +BIP65 soft fork to enforce OP_CHECKLOCKTIMEVERIFY opcode +-------------------------------------------------------- + +This release includes several changes related to the [BIP65][] soft fork +which redefines the existing OP_NOP2 opcode as OP_CHECKLOCKTIMEVERIFY +(CLTV) so that a transaction output can be made unspendable until a +specified point in the future. + +1. This release will only relay and mine transactions spending a CLTV + output if they comply with the BIP65 rules as provided in code. + +2. This release will produce version 4 blocks by default. Please see the + *notice to miners* below. + +3. Once 951 out of a sequence of 1,001 blocks on the local node's best block + chain contain version 4 (or higher) blocks, this release will no + longer accept new version 3 blocks and it will only accept version 4 + blocks if they comply with the BIP65 rules for CLTV. + +**Notice to miners:** Litecoin 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 v0.4.3 or any version from v0.5.2 onward. + +- If you are solo mining, this will affect you the moment you upgrade + Litecoin 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 + affect you. + +- If you are mining with the getblocktemplate protocol to a pool: this + 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/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 Litecoin 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: + +Other fixes for database corruption on Windows are expected in the +next major release. + +0.10.4 Change log +================= + +This release is based upon Bitcoin Core v0.10.4. Their upstream changelog applies to us and +is included in as separate release-notes, see: [Release Notes](release-notes.md). +This section describes the Litecoin-specific differences. + +- Added BIP65 CHECKLOCKTIMEVERIFY softfork. +- Increased OP_RETURN relay size to 80 bytes. + +Credits +======= + +Thanks to everyone who directly contributed to this release: + +- Charles Lee +- pooler +- Adrian Gallagher +- Anton Yemelyanov +- Warren Togami +- BtcDrak + diff --git a/doc/release-notes.md b/doc/release-notes.md index f804e8c11b298..38a2c1347d0b8 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,12 +1,32 @@ -(note: this is a temporary file, to be added-to by anybody, and moved to -release-notes at release time) +Bitcoin Core version 0.10.4 is now available from: -Block file backwards-compatibility warning -=========================================== + -Because release 0.10.0 makes use of headers-first synchronization and parallel -block download, the block files and databases are not backwards-compatible -with older versions of Bitcoin Core: +This is a new minor version release, bringing bug fixes, the BIP65 +(CLTV) consensus change, and relay policy preparation for BIP113. It is +recommended to upgrade to this version as soon as possible. + +Please report bugs using the issue tracker at github: + + + +Upgrading and downgrading +========================= + +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/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 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 @@ -18,109 +38,135 @@ stored on disk, which earlier versions won't support. If you want to be able to downgrade smoothly, make a backup of your entire data directory. Without this your node will need start syncing (or importing from -bootstrap.dat) anew afterwards. - -This does not affect wallet forward or backward compatibility. - -Transaction fee changes -======================= - -This release automatically estimates how high a transaction fee (or how -high a priority) transactions require to be confirmed quickly. The default -settings will create transactions that confirm quickly; see the new -'txconfirmtarget' setting to control the tradeoff between fees and -confirmation times. - -Prior releases used hard-coded fees (and priorities), and would -sometimes create transactions that took a very long time to confirm. - -Statistics used to estimate fees and priorities are saved in the -data directory in the `fee_estimates.dat` file just before -program shutdown, and are read in at startup. - -New Command Line Options ---------------------------- - -- `-txconfirmtarget=n` : create transactions that have enough fees (or priority) -so they are likely to confirm within n blocks (default: 1). This setting -is over-ridden by the -paytxfee option. - -New RPC methods ----------------- - -- `estimatefee nblocks` : Returns approximate fee-per-1,000-bytes needed for -a transaction to be confirmed within nblocks. Returns -1 if not enough -transactions have been observed to compute a good estimate. - -- `estimatepriority nblocks` : Returns approximate priority needed for -a zero-fee transaction to confirm within nblocks. Returns -1 if not -enough free transactions have been observed to compute a good -estimate. - -RPC access control changes -========================================== - -Subnet matching for the purpose of access control is now done -by matching the binary network address, instead of with string wildcard matching. -For the user this means that `-rpcallowip` takes a subnet specification, which can be - -- a single IP address (e.g. `1.2.3.4` or `fe80::0012:3456:789a:bcde`) -- a network/CIDR (e.g. `1.2.3.0/24` or `fe80::0000/64`) -- a network/netmask (e.g. `1.2.3.4/255.255.255.0` or `fe80::0012:3456:789a:bcde/ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff`) - -An arbitrary number of `-rpcallow` arguments can be given. An incoming connection will be accepted if its origin address -matches one of them. - -For example: - -| 0.9.x and before | 0.10.x | -|--------------------------------------------|---------------------------------------| -| `-rpcallowip=192.168.1.1` | `-rpcallowip=192.168.1.1` (unchanged) | -| `-rpcallowip=192.168.1.*` | `-rpcallowip=192.168.1.0/24` | -| `-rpcallowip=192.168.*` | `-rpcallowip=192.168.0.0/16` | -| `-rpcallowip=*` (dangerous!) | `-rpcallowip=::/0` | - -Using wildcards will result in the rule being rejected with the following error in debug.log: - - Error: Invalid -rpcallowip subnet specification: *. Valid are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). - -RPC Server "Warm-Up" Mode -========================= - -The RPC server is started earlier now, before most of the expensive -intialisations like loading the block index. It is available now almost -immediately after starting the process. However, until all initialisations -are done, it always returns an immediate error with code -28 to all calls. - -This new behaviour can be useful for clients to know that a server is already -started and will be available soon (for instance, so that they do not -have to start it themselves). - -Improved signing security -========================= - -For 0.10 the security of signing against unusual attacks has been -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 Bitcoin uses which was created by Bitcoin -Core developer Pieter Wuille. - -There exist attacks[1] against most ECC implementations where an -attacker on shared virtual machine hardware could extract a private -key if they could cause a target to sign using the same key hundreds -of times. While using shared hosts and reusing keys are inadvisable -for other reasons, it's a better practice to avoid the exposure. - -OpenSSL has code in their source repository for derandomization -and reduction in timing leaks, and we've eagerly wanted to use -it for a 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 Bitcoin uses and we have reason to believe that -libsecp256k1 is better tested and more thoroughly reviewed -than the implementation in OpenSSL. - -[1] https://eprint.iacr.org/2014/161.pdf +bootstrap.dat) anew afterwards. It is possible that the data from a completely +synchronised 0.10 node may be usable in older versions as-is, but this is not +supported and may break as soon as the older version attempts to reindex. + +This does not affect wallet forward or backward compatibility. There are no +known problems when downgrading from 0.11.x to 0.10.x. + +Notable changes since 0.10.3 +============================ + +BIP65 soft fork to enforce OP_CHECKLOCKTIMEVERIFY opcode +-------------------------------------------------------- + +This release includes several changes related to the [BIP65][] soft fork +which redefines the existing OP_NOP2 opcode as OP_CHECKLOCKTIMEVERIFY +(CLTV) so that a transaction output can be made unspendable until a +specified point in the future. + +1. This release will only relay and mine transactions spending a CLTV + output if they comply with the BIP65 rules as provided in code. + +2. This release will produce version 4 blocks by default. Please see the + *notice to miners* below. + +3. Once 951 out of a sequence of 1,001 blocks on the local node's best block + chain contain version 4 (or higher) blocks, this release will no + longer accept new version 3 blocks and it will only accept version 4 + 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: + +- Block versions over the last 2,000 blocks showing the days to the + earliest possible BIP65 consensus-enforced block: + +**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 + 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 + affect you. + +- If you are mining with the getblocktemplate protocol to a pool: this + 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/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 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: + +Other fixes for database corruption on Windows are expected in the +next major release. + +0.10.4 Change log +================= + +Detailed release notes follow. This overview includes changes that affect +behavior, not code moves, refactors and string updates. For convenience in locating +the code changes and accompanying discussion, both the pull request and +git merge commit are mentioned. + +- #6953 `8b3311f` alias -h for --help +- #6953 `97546fc` Change URLs to https in debian/control +- #6953 `38671bf` Update debian/changelog and slight tweak to debian/control +- #6953 `256321e` Correct spelling mistakes in doc folder +- #6953 `eae0350` Clarification of unit test build instructions +- #6953 `90897ab` Update bluematt-key, the old one is long-since revoked +- #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 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 +- #6946 `94b67e5` Update LevelDB +- #6706 `5dc72f8` CLTV: Add more tests to improve coverage +- #6706 `6a1343b` Add RPC tests for the CHECKLOCKTIMEVERIFY (BIP65) soft-fork +- #6706 `4137248` Add CHECKLOCKTIMEVERIFY (BIP65) soft-fork logic +- #6706 `0e01d0f` Enable CHECKLOCKTIMEVERIFY as a standard script verify flag +- #6706 `6d01325` Replace NOP2 with CHECKLOCKTIMEVERIFY (BIP65) +- #6706 `750d54f` Move LOCKTIME_THRESHOLD to src/script/script.h +- #6706 `6897468` Make CScriptNum() take nMaxNumSize as an argument +- #6867 `5297194` Set TCP_NODELAY on P2P sockets +- #6836 `fb818b6` Bring historical release notes up to date +- #6852 `0b3fd07` build: make sure OpenSSL heeds noexecstack + +Credits +======= + +Thanks to everyone who directly contributed to this release: + +- Alex Morcos +- Daniel Cousens +- Diego Viola +- Eric Lombrozo +- Esteban Ordano +- Gregory Maxwell +- Luke Dashjr +- MarcoFalke +- Matt Corallo +- Micha +- Mitchell Cash +- Peter Todd +- Pieter Wuille +- Wladimir J. van der Laan +- Zak Wilcox + +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/bitcoin/). diff --git a/doc/release-notes/release-notes-0.10.0.md b/doc/release-notes/release-notes-0.10.0.md new file mode 100644 index 0000000000000..986b8832ec189 --- /dev/null +++ b/doc/release-notes/release-notes-0.10.0.md @@ -0,0 +1,762 @@ +Bitcoin Core version 0.10.0 is now available from: + + https://bitcoin.org/bin/0.10.0/ + +This is a new major version release, bringing both new features and +bug fixes. + +Please report bugs using the issue tracker at github: + + https://github.com/bitcoin/bitcoin/issues + +Upgrading and downgrading +========================= + +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/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 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 +other programs. Reindexing using earlier versions will also not work +anymore as a result of this. + +* The block index database will now hold headers for which no block is +stored on disk, which earlier versions won't support. + +If you want to be able to downgrade smoothly, make a backup of your entire data +directory. Without this your node will need start syncing (or importing from +bootstrap.dat) anew afterwards. It is possible that the data from a completely +synchronised 0.10 node may be usable in older versions as-is, but this is not +supported and may break as soon as the older version attempts to reindex. + +This does not affect wallet forward or backward compatibility. + + +Notable changes +=============== + +Faster synchronization +---------------------- + +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 +advance, the blocks can be downloaded in parallel from all available peers. + +In practice, this means a much faster and more robust synchronization. On +recent hardware with a decent network link, it can be as little as 3 hours +for an initial full synchronization. You may notice a slower progress in the +very first few minutes, when headers are still being fetched and verified, but +it should gain speed afterwards. + +A few RPCs were added/updated as a result of this: +- `getblockchaininfo` now returns the number of validated headers in addition to +the number of validated blocks. +- `getpeerinfo` lists both the number of blocks and headers we know we have in +common with each peer. While synchronizing, the heights of the blocks that we +have requested from peers (but haven't received yet) are also listed as +'inflight'. +- A new RPC `getchaintips` lists all known branches of the block chain, +including those we only have headers for. + +Transaction fee changes +----------------------- + +This release automatically estimates how high a transaction fee (or how +high a priority) transactions require to be confirmed quickly. The default +settings will create transactions that confirm quickly; see the new +'txconfirmtarget' setting to control the tradeoff between fees and +confirmation times. Fees are added by default unless the 'sendfreetransactions' +setting is enabled. + +Prior releases used hard-coded fees (and priorities), and would +sometimes create transactions that took a very long time to confirm. + +Statistics used to estimate fees and priorities are saved in the +data directory in the `fee_estimates.dat` file just before +program shutdown, and are read in at startup. + +New command line options for transaction fee changes: +- `-txconfirmtarget=n` : create transactions that have enough fees (or priority) +so they are likely to begin confirmation within n blocks (default: 1). This setting +is over-ridden by the -paytxfee option. +- `-sendfreetransactions` : Send transactions as zero-fee transactions if possible +(default: 0) + +New RPC commands for fee estimation: +- `estimatefee nblocks` : Returns approximate fee-per-1,000-bytes needed for +a transaction to begin confirmation within nblocks. Returns -1 if not enough +transactions have been observed to compute a good estimate. +- `estimatepriority nblocks` : Returns approximate priority needed for +a zero-fee transaction to begin confirmation within nblocks. Returns -1 if not +enough free transactions have been observed to compute a good +estimate. + +RPC access control changes +-------------------------- + +Subnet matching for the purpose of access control is now done +by matching the binary network address, instead of with string wildcard matching. +For the user this means that `-rpcallowip` takes a subnet specification, which can be + +- a single IP address (e.g. `1.2.3.4` or `fe80::0012:3456:789a:bcde`) +- a network/CIDR (e.g. `1.2.3.0/24` or `fe80::0000/64`) +- a network/netmask (e.g. `1.2.3.4/255.255.255.0` or `fe80::0012:3456:789a:bcde/ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff`) + +An arbitrary number of `-rpcallow` arguments can be given. An incoming connection will be accepted if its origin address +matches one of them. + +For example: + +| 0.9.x and before | 0.10.x | +|--------------------------------------------|---------------------------------------| +| `-rpcallowip=192.168.1.1` | `-rpcallowip=192.168.1.1` (unchanged) | +| `-rpcallowip=192.168.1.*` | `-rpcallowip=192.168.1.0/24` | +| `-rpcallowip=192.168.*` | `-rpcallowip=192.168.0.0/16` | +| `-rpcallowip=*` (dangerous!) | `-rpcallowip=::/0` (still dangerous!) | + +Using wildcards will result in the rule being rejected with the following error in debug.log: + + Error: Invalid -rpcallowip subnet specification: *. Valid are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). + + +REST interface +-------------- + +A new HTTP API is exposed when running with the `-rest` flag, which allows +unauthenticated access to public node data. + +It is served on the same port as RPC, but does not need a password, and uses +plain HTTP instead of JSON-RPC. + +Assuming a local RPC server running on port 8332, it is possible to request: +- Blocks: http://localhost:8332/rest/block/*HASH*.*EXT* +- Blocks without transactions: http://localhost:8332/rest/block/notxdetails/*HASH*.*EXT* +- Transactions (requires `-txindex`): http://localhost:8332/rest/tx/*HASH*.*EXT* + +In every case, *EXT* can be `bin` (for raw binary data), `hex` (for hex-encoded +binary) or `json`. + +For more details, see the `doc/REST-interface.md` document in the repository. + +RPC Server "Warm-Up" Mode +------------------------- + +The RPC server is started earlier now, before most of the expensive +intialisations like loading the block index. It is available now almost +immediately after starting the process. However, until all initialisations +are done, it always returns an immediate error with code -28 to all calls. + +This new behaviour can be useful for clients to know that a server is already +started and will be available soon (for instance, so that they do not +have to start it themselves). + +Improved signing security +------------------------- + +For 0.10 the security of signing against unusual attacks has been +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 Bitcoin uses which was created by Bitcoin +Core developer Pieter Wuille. + +There exist attacks[1] against most ECC implementations where an +attacker on shared virtual machine hardware could extract a private +key if they could cause a target to sign using the same key hundreds +of times. While using shared hosts and reusing keys are inadvisable +for other reasons, it's a better practice to avoid the exposure. + +OpenSSL has code in their source repository for derandomization +and reduction in timing leaks that we've eagerly wanted to use for a +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 Bitcoin uses and we have reason to believe that +libsecp256k1 is better tested and more thoroughly reviewed +than the implementation in OpenSSL. + +[1] https://eprint.iacr.org/2014/161.pdf + +Watch-only wallet support +------------------------- + +The wallet can now track transactions to and from wallets for which you know +all addresses (or scripts), even without the private keys. + +This can be used to track payments without needing the private keys online on a +possibly vulnerable system. In addition, it can help for (manual) construction +of multisig transactions where you are only one of the signers. + +One new RPC, `importaddress`, is added which functions similarly to +`importprivkey`, but instead takes an address or script (in hexadecimal) as +argument. After using it, outputs credited to this address or script are +considered to be received, and transactions consuming these outputs will be +considered to be sent. + +The following RPCs have optional support for watch-only: +`getbalance`, `listreceivedbyaddress`, `listreceivedbyaccount`, +`listtransactions`, `listaccounts`, `listsinceblock`, `gettransaction`. See the +RPC documentation for those methods for more information. + +Compared to using `getrawtransaction`, this mechanism does not require +`-txindex`, scales better, integrates better with the wallet, and is compatible +with future block chain pruning functionality. It does mean that all relevant +addresses need to added to the wallet before the payment, though. + +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 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 `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: + +- `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 +- `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. + +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 Bitcoin protocol has always supported these types of script, +actually using them on mainnet has been previously inconvenient as +standard Bitcoin Core nodes wouldn't relay them to miners, nor would +most miners include them in blocks they mined. + +bitcoin-tx +---------- + +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. + +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 bitcoin test +suite. + +This tool may be used for experimenting with new transaction types, signing +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 "bitcoin-key" and "bitcoin-script" have been proposed, making +key and script operations easily accessible via command line. + +Mining and relay policy enhancements +------------------------------------ + +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 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 +you at the pool operator's discretion, which must be no later than BIP66 +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. + +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 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. + +Two new options to control mining policy: +- `-datacarrier=0/1` : Relay and mine "data carrier" (OP_RETURN) transactions +if this is 1. +- `-datacarriersize=n` : Maximum size, in bytes, we consider acceptable for +"data carrier" outputs. + +The relay policy has changed to more properly implement the desired behavior of not +relaying free (or very low fee) transactions unless they have a priority above the +AllowFreeThreshold(), in which case they are relayed subject to the rate limiter. + +BIP 66: strict DER encoding for signatures +------------------------------------------ + +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 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 +required if implementations would want to remove all of OpenSSL from the +consensus code. + +The same miner-voting mechanism as in BIP 34 is used: when 751 out of a +sequence of 1001 blocks have version number 3 or higher, the new consensus +rule becomes active for those blocks. When 951 out of a sequence of 1001 +blocks have version number 3 or higher, it becomes mandatory for all blocks. + +Backward compatibility with current mining software is NOT provided, thus miners +should read the first paragraph of "Mining and relay policy enhancements" above. + +0.10.0 Change log +================= + +Detailed release notes follow. This overview includes changes that affect external +behavior, not code moves, refactors or string updates. + +RPC: +- `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 bitcoind +- `f6984e8` Add "chain" to getmininginfo, improve help in getblockchaininfo +- `99ddc6c` Add nLocalServices info to RPC getinfo +- `cf0c47b` Remove getwork() RPC call +- `2a72d45` prioritisetransaction +- `e44fea5` Add an option `-datacarrier` to allow users to disable relaying/mining data carrier transactions +- `2ec5a3d` Prevent easy RPC memory exhaustion attack +- `d4640d7` Added argument to getbalance to include watchonly addresses and fixed errors in balance calculation +- `83f3543` Added argument to listaccounts to include watchonly addresses +- `952877e` Showing 'involvesWatchonly' property for transactions returned by 'listtransactions' and 'listsinceblock'. It is only appended when the transaction involves a watchonly address +- `d7d5d23` Added argument to listtransactions and listsinceblock to include watchonly addresses +- `f87ba3d` added includeWatchonly argument to 'gettransaction' because it affects balance calculation +- `0fa2f88` added includedWatchonly argument to listreceivedbyaddress/...account +- `6c37f7f` `getrawchangeaddress`: fail when keypool exhausted and wallet locked +- `ff6a7af` getblocktemplate: longpolling support +- `c4a321f` Add peerid to getpeerinfo to allow correlation with the logs +- `1b4568c` Add vout to ListTransactions output +- `b33bd7a` Implement "getchaintips" RPC command to monitor blockchain forks +- `733177e` Remove size limit in RPC client, keep it in server +- `6b5b7cb` Categorize rpc help overview +- `6f2c26a` Closely track mempool byte total. Add "getmempoolinfo" RPC +- `aa82795` Add detailed network info to getnetworkinfo RPC +- `01094bd` Don't reveal whether password is <20 or >20 characters in RPC +- `57153d4` rpc: Compute number of confirmations of a block from block height +- `ff36cbe` getnetworkinfo: export local node's client sub-version string +- `d14d7de` SanitizeString: allow '(' and ')' +- `31d6390` Fixed setaccount accepting foreign address +- `b5ec5fe` update getnetworkinfo help with subversion +- `ad6e601` RPC additions after headers-first +- `33dfbf5` rpc: Fix leveldb iterator leak, and flush before `gettxoutsetinfo` +- `2aa6329` Enable customising node policy for datacarrier data size with a -datacarriersize option +- `f877aaa` submitblock: Use a temporary CValidationState to determine accurately the outcome of ProcessBlock +- `e69a587` submitblock: Support for returning specific rejection reasons +- `af82884` Add "warmup mode" for RPC server +- `e2655e0` Add unauthenticated HTTP REST interface to public blockchain data +- `683dc40` Disable SSLv3 (in favor of TLS) for the RPC client and server +- `44b4c0d` signrawtransaction: validate private key +- `9765a50` Implement BIP 23 Block Proposal +- `f9de17e` Add warning comment to getinfo + +Command-line options: +- `ee21912` Use netmasks instead of wildcards for IP address matching +- `deb3572` Add `-rpcbind` option to allow binding RPC port on a specific interface +- `96b733e` Add `-version` option to get just the version +- `1569353` Add `-stopafterblockimport` option +- `77cbd46` Let -zapwallettxes recover transaction meta data +- `1c750db` remove -tor compatibility code (only allow -onion) +- `4aaa017` rework help messages for fee-related 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 "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 +- `ec01243` --tracerpc option for regression tests +- `f654f00` Change -genproclimit default to 1 +- `3c77714` Make -proxy set all network types, avoiding a connect leak +- `57be955` Remove -printblock, -printblocktree, and -printblockindex +- `ad3d208` remove -maxorphanblocks config parameter since it is no longer functional + +Block and transaction handling: +- `7a0e84d` ProcessGetData(): abort if a block file is missing from disk +- `8c93bf4` LoadBlockIndexDB(): Require block db reindex if any `blk*.dat` files are missing +- `77339e5` Get rid of the static chainMostWork (optimization) +- `4e0eed8` Allow ActivateBestChain to release its lock on cs_main +- `18e7216` Push cs_mains down in ProcessBlock +- `fa126ef` Avoid undefined behavior using CFlatData in CScript serialization +- `7f3b4e9` Relax IsStandard rules for pay-to-script-hash transactions +- `c9a0918` Add a skiplist to the CBlockIndex structure +- `bc42503` Use unordered_map for CCoinsViewCache with salted hash (optimization) +- `d4d3fbd` Do not flush the cache after every block outside of IBD (optimization) +- `ad08d0b` Bugfix: make CCoinsViewMemPool support pruned entries in underlying cache +- `5734d4d` Only remove actualy failed blocks from setBlockIndexValid +- `d70bc52` Rework block processing benchmark code +- `714a3e6` Only keep setBlockIndexValid entries that are possible improvements +- `ea100c7` Reduce maximum coinscache size during verification (reduce memory usage) +- `4fad8e6` Reject transactions with excessive numbers of sigops +- `b0875eb` Allow BatchWrite to destroy its input, reducing copying (optimization) +- `92bb6f2` Bypass reloading blocks from disk (optimization) +- `2e28031` Perform CVerifyDB on pcoinsdbview instead of pcoinsTip (reduce memory usage) +- `ab15b2e` Avoid copying undo data (optimization) +- `341735e` Headers-first synchronization +- `afc32c5` Fix rebuild-chainstate feature and improve its performance +- `e11b2ce` Fix large reorgs +- `ed6d1a2` Keep information about all block files in memory +- `a48f2d6` Abstract context-dependent block checking from acceptance +- `7e615f5` Fixed mempool sync after sending a transaction +- `51ce901` Improve chainstate/blockindex disk writing policy +- `a206950` Introduce separate flushing modes +- `9ec75c5` Add a locking mechanism to IsInitialBlockDownload to ensure it never goes from false to true +- `868d041` Remove coinbase-dependant transactions during reorg +- `723d12c` Remove txn which are invalidated by coinbase maturity during reorg +- `0cb8763` Check against MANDATORY flags prior to accepting to mempool +- `8446262` Reject headers that build on an invalid parent +- `008138c` Bugfix: only track UTXO modification after lookup + +P2P protocol and network code: +- `f80cffa` Do not trigger a DoS ban if SCRIPT_VERIFY_NULLDUMMY fails +- `c30329a` Add testnet DNS seed of Alex Kotenko +- `45a4baf` Add testnet DNS seed of Andreas Schildbach +- `f1920e8` Ping automatically every 2 minutes (unconditionally) +- `806fd19` Allocate receive buffers in on the fly +- `6ecf3ed` Display unknown commands received +- `aa81564` Track peers' available blocks +- `caf6150` Use async name resolving to improve net thread responsiveness +- `9f4da19` Use pong receive time rather than processing time +- `0127a9b` remove SOCKS4 support from core and GUI, use SOCKS5 +- `40f5cb8` Send rejects and apply DoS scoring for errors in direct block validation +- `dc942e6` Introduce whitelisted peers +- `c994d2e` prevent SOCKET leak in BindListenPort() +- `a60120e` Add built-in seeds for .onion +- `60dc8e4` Allow -onlynet=onion to be used +- `3a56de7` addrman: Do not propagate obviously poor addresses onto the network +- `6050ab6` netbase: Make SOCKS5 negotiation interruptible +- `604ee2a` Remove tx from AlreadyAskedFor list once we receive it, not when we process it +- `efad808` Avoid reject message feedback loops +- `71697f9` Separate protocol versioning from clientversion +- `20a5f61` Don't relay alerts to peers before version negotiation +- `b4ee0bd` Introduce preferred download peers +- `845c86d` Do not use third party services for IP detection +- `12a49ca` Limit the number of new addressses to accumulate +- `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 bitcoin.sipa.be crawler data +- `18021d0` Remove bitnodes.io from dnsseeds. + +Validation: +- `6fd7ef2` Also switch the (unused) verification code to low-s instead of even-s +- `584a358` Do merkle root and txid duplicates check simultaneously +- `217a5c9` When transaction outputs exceed inputs, show the offending amounts so as to aid debugging +- `f74fc9b` Print input index when signature validation fails, to aid debugging +- `6fd59ee` script.h: set_vch() should shift a >32 bit value +- `d752ba8` Add SCRIPT_VERIFY_SIGPUSHONLY (BIP62 rule 2) (test only) +- `698c6ab` Add SCRIPT_VERIFY_MINIMALDATA (BIP62 rules 3 and 4) (test only) +- `ab9edbd` script: create sane error return codes for script validation and remove logging +- `219a147` script: check ScriptError values in script tests +- `0391423` Discourage NOPs reserved for soft-fork upgrades +- `98b135f` Make STRICTENC invalid pubkeys fail the script rather than the opcode +- `307f7d4` Report script evaluation failures in log and reject messages +- `ace39db` consensus: guard against openssl's new strict DER checks +- `12b7c44` Improve robustness of DER recoding code +- `76ce5c8` fail immediately on an empty signature + +Build system: +- `f25e3ad` Fix build in OS X 10.9 +- `65e8ba4` build: Switch to non-recursive make +- `460b32d` build: fix broken boost chrono check on some platforms +- `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 (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 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 + +Wallet: +- `b33d1f5` Use fee/priority estimates in wallet CreateTransaction +- `4b7b1bb` Sanity checks for estimates +- `c898846` Add support for watch-only addresses +- `d5087d1` Use script matching rather than destination matching for watch-only +- `d88af56` Fee fixes +- `a35b55b` Dont run full check every time we decrypt wallet +- `3a7c348` Fix make_change to not create half-satoshis +- `f606bb9` fix a possible memory leak in CWalletDB::Recover +- `870da77` fix possible memory leaks in CWallet::EncryptWallet +- `ccca27a` Watch-only fixes +- `9b1627d` [Wallet] Reduce minTxFee for transaction creation to 1000 satoshis +- `a53fd41` Deterministic signing +- `15ad0b5` Apply AreSane() checks to the fees from the network +- `11855c1` Enforce minRelayTxFee on wallet created tx and add a maxtxfee option + +GUI: +- `c21c74b` osx: Fix missing dock menu with qt5 +- `b90711c` Fix Transaction details shows wrong To: +- `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 +- `fe6bff2` Add BerkeleyDB version info to RPCConsole +- `b917555` PeerTableModel: Fix potential deadlock. #4296 +- `dff0e3b` Improve rpc console history behavior +- `95a9383` Remove CENT-fee-rule from coin control completely +- `56b07d2` Allow setting listen via GUI +- `d95ba75` Log messages with type>QtDebugMsg as non-debug +- `8969828` New status bar Unit Display Control and related changes +- `674c070` seed OpenSSL PNRG with Windows event data +- `509f926` Payment request parsing on startup now only changes network if a valid network name is specified +- `acd432b` Prevent balloon-spam after rescan +- `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 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 +- `1c5f0af` Add column Watch-only to transactions list +- `21f139b` Fix tablet crash. closes #4854 +- `e84843c` Broken addresses on command line no longer trigger testnet +- `a49f11d` Change splash screen to normal window +- `1f9be98` Disable App Nap on OSX 10.9+ +- `27c3e91` Add proxy to options overridden if necessary +- `4bd1185` Allow "emergency" shutdown during startup +- `d52f072` Don't show wallet options in the preferences menu when running with -disablewallet +- `6093aa1` Qt: QProgressBar CPU-Issue workaround +- `0ed9675` [Wallet] Add global boolean whether to send free transactions (default=true) +- `ed3e5e4` [Wallet] Add global boolean whether to pay at least the custom fee (default=true) +- `e7876b2` [Wallet] Prevent user from paying a non-sense fee +- `c1c9d5b` Add Smartfee to GUI +- `e0a25c5` Make askpassphrase dialog behave more sanely +- `94b362d` On close of splashscreen interrupt verifyDB +- `b790d13` English translation update +- `8543b0d` Correct tooltip on address book page + +Tests: +- `b41e594` Fix script test handling of empty scripts +- `d3a33fc` Test CHECKMULTISIG with m == 0 and n == 0 +- `29c1749` Let tx (in)valid tests use any SCRIPT_VERIFY flag +- `6380180` Add rejection of non-null CHECKMULTISIG dummy values +- `21bf3d2` Add tests for BoostAsioToCNetAddr +- `b5ad5e7` Add Python test for -rpcbind and -rpcallowip +- `9ec0306` Add CODESEPARATOR/FindAndDelete() tests +- `75ebced` Added many rpc wallet tests +- `0193fb8` Allow multiple regression tests to run at once +- `92a6220` Hook up sanity checks +- `3820e01` Extend and move all crypto tests to crypto_tests.cpp +- `3f9a019` added list/get received by address/ account tests +- `a90689f` Remove timing-based signature cache unit test +- `236982c` Add skiplist unit tests +- `f4b00be` Add CChain::GetLocator() unit test +- `b45a6e8` Add test for getblocktemplate longpolling +- `cdf305e` Set -discover=0 in regtest framework +- `ed02282` additional test for OP_SIZE in script_valid.json +- `0072d98` script tests: BOOLAND, BOOLOR decode to integer +- `833ff16` script tests: values that overflow to 0 are true +- `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 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 +- `ed27e53` Add coins_tests with a large randomized CCoinViewCache test +- `9df9cf5` Make SCRIPT_VERIFY_STRICTENC compatible with BIP62 +- `dcb9846` Extend getchaintips RPC test +- `554147a` Ensure MINIMALDATA invalid tests can only fail one way +- `dfeec18` Test every numeric-accepting opcode for correct handling of the numeric minimal encoding rule +- `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 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 +- `f4e0aef` Do signature-s negation inside the tests +- `1837987` Optimize -regtest setgenerate block generation +- `2db4c8a` Fix node ranges in the test framework +- `a8b2ce5` regression test only setmocktime RPC call +- `daf03e7` RPC tests: create initial chain with specific timestamps +- `8656dbb` Port/fix txnmall.sh regression test +- `ca81587` Test the exact order of CHECKMULTISIG sig/pubkey evaluation +- `7357893` Prioritize and display -testsafemode status in UI +- `f321d6b` Add key generation/verification to ECC sanity check +- `132ea9b` miner_tests: Disable checkpoints so they don't fail the subsidy-change test +- `bc6cb41` QA RPC tests: Add tests block block proposals +- `f67a9ce` Use deterministically generated script tests +- `11d7a7d` [RPC] add rpc-test for http keep-alive (persistent connections) +- `34318d7` RPC-test based on invalidateblock for mempool coinbase spends +- `76ec867` Use actually valid transactions for script tests +- `c8589bf` Add actual signature tests +- `e2677d7` Fix smartfees test for change to relay policy +- `263b65e` tests: run sanity checks in tests too + +Miscellaneous: +- `122549f` Fix incorrect checkpoint data for testnet3 +- `5bd02cf` Log used config file to debug.log on startup +- `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 +- `8ae973c` Allocate more space if necessary in RandSeedAddPerfMon +- `675bcd5` Correct comment for 15-of-15 p2sh script size +- `fda3fed` libsecp256k1 integration +- `2e36866` Show nodeid instead of addresses in log (for anonymity) unless otherwise requested +- `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 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 +- `b4a72a7` contrib/linearize: split output files based on new-timestamp-year or max-file-size +- `e982b57` Use explicit fflush() instead of setvbuf() +- `234bfbf` contrib: Add init scripts and docs for Upstart and OpenRC +- `01c2807` Add warning about the merkle-tree algorithm duplicate txid flaw +- `d6712db` Also create pid file in non-daemon mode +- `772ab0e` contrib: use batched JSON-RPC in linarize-hashes (optimization) +- `7ab4358` Update bash-completion for v0.10 +- `6e6a36c` contrib: show pull # in prompt for github-merge script +- `5b9f842` Upgrade leveldb to 1.18, make chainstate databases compatible between ARM and x86 (issue #2293) +- `4e7c219` Catch UTXO set read errors and shutdown +- `867c600` Catch LevelDB errors during flush +- `06ca065` Fix CScriptID(const CScript& in) in empty script case + +Credits +======= + +Thanks to everyone who contributed to this release: + +- 21E14 +- Adam Weiss +- Aitor Pazos +- Alexander Jeng +- Alex Morcos +- Alon Muroch +- Andreas Schildbach +- Andrew Poelstra +- Andy Alness +- Ashley Holman +- Benedict Chan +- Ben Holden-Crowther +- Bryan Bishop +- BtcDrak +- Christian von Roques +- Clinton Christian +- Cory Fields +- Cozz Lovan +- daniel +- Daniel Kraft +- David Hill +- Derek701 +- dexX7 +- dllud +- Dominyk Tiller +- Doug +- elichai +- elkingtowa +- ENikS +- Eric Shaw +- Federico Bond +- Francis GASCHET +- Gavin Andresen +- Giuseppe Mazzotta +- Glenn Willen +- Gregory Maxwell +- gubatron +- HarryWu +- himynameismartin +- Huang Le +- Ian Carroll +- imharrywu +- Jameson Lopp +- Janusz Lenar +- JaSK +- Jeff Garzik +- JL2035 +- Johnathan Corgan +- Jonas Schnelli +- jtimon +- Julian Haight +- Kamil Domanski +- kazcw +- kevin +- kiwigb +- Kosta Zertsekel +- LongShao007 +- Luke Dashjr +- Mark Friedenbach +- Mathy Vanvoorden +- Matt Corallo +- Matthew Bogosian +- Micha +- Michael Ford +- Mike Hearn +- mrbandrews +- mruddy +- ntrgn +- Otto Allmendinger +- paveljanik +- Pavel Vasin +- Peter Todd +- phantomcircuit +- Philip Kaufmann +- Pieter Wuille +- pryds +- randy-waterhouse +- R E Broadley +- Rose Toomey +- Ross Nicoll +- Roy Badami +- Ruben Dario Ponticelli +- Rune K. Svendsen +- Ryan X. Charles +- Saivann +- sandakersmann +- SergioDemianLerner +- shshshsh +- sinetek +- Stuart Cardall +- Suhas Daftuar +- Tawanda Kembo +- Teran McKinney +- tm314159 +- Tom Harding +- Trevin Hofmann +- Whit J +- Wladimir J. van der Laan +- Yoichi Hirai +- Zak Wilcox + +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 new file mode 100644 index 0000000000000..8f59f1f68c690 --- /dev/null +++ b/doc/release-notes/release-notes-0.10.1.md @@ -0,0 +1,143 @@ +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 +========================= + +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/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 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 +other programs. Reindexing using earlier versions will also not work +anymore as a result of this. + +* The block index database will now hold headers for which no block is +stored on disk, which earlier versions won't support. + +If you want to be able to downgrade smoothly, make a backup of your entire data +directory. Without this your node will need start syncing (or importing from +bootstrap.dat) anew afterwards. It is possible that the data from a completely +synchronised 0.10 node may be usable in older versions as-is, but this is not +supported and may break as soon as the older version attempts to reindex. + +This does not affect wallet forward or backward compatibility. + +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/bitcoin/bitcoin/blob/v0.10.0/doc/release-notes.md + +0.10.1 Change log +================= + +Detailed release notes follow. This overview includes changes that affect external +behavior, not code moves, refactors or string updates. + +RPC: +- `7f502be` fix crash: createmultisig and addmultisigaddress +- `eae305f` Fix missing lock in submitblock + +Block (database) and transaction handling: +- `1d2cdd2` Fix InvalidateBlock to add chainActive.Tip to setBlockIndexCandidates +- `c91c660` fix InvalidateBlock to repopulate setBlockIndexCandidates +- `002c8a2` fix possible block db breakage during re-index +- `a1f425b` Add (optional) consistency check for the block chain data structures +- `1c62e84` Keep mempool consistent during block-reorgs +- `57d1f46` Fix CheckBlockIndex for reindex +- `bac6fca` Set nSequenceId when a block is fully linked + +P2P protocol and network code: +- `78f64ef` don't trickle for whitelisted nodes +- `ca301bf` Reduce fingerprinting through timestamps in 'addr' messages. +- `200f293` Ignore getaddr messages on Outbound connections. +- `d5d8998` Limit message sizes before transfer +- `aeb9279` Better fingerprinting protection for non-main-chain getdatas. +- `cf0218f` Make addrman's bucket placement deterministic (countermeasure 1 against eclipse attacks, see http://cs-people.bu.edu/heilman/eclipse/) +- `0c6f334` Always use a 50% chance to choose between tried and new entries (countermeasure 2 against eclipse attacks) +- `214154e` Do not bias outgoing connections towards fresh addresses (countermeasure 2 against eclipse attacks) +- `aa587d4` Scale up addrman (countermeasure 6 against eclipse attacks) +- `139cd81` Cap nAttempts penalty at 8 and switch to pow instead of a division loop + +Validation: +- `d148f62` Acquire CCheckQueue's lock to avoid race condition + +Build system: +- `8752b5c` 0.10 fix for crashes on OSX 10.6 + +Wallet: +- N/A + +GUI: +- `2c08406` some mac specifiy cleanup (memory handling, unnecessary code) +- `81145a6` fix OSX dock icon window reopening +- `786cf72` fix a issue where "command line options"-action overwrite "Preference"-action (on OSX) + +Tests: +- `1117378` add RPC test for InvalidateBlock + +Miscellaneous: +- `c9e022b` Initialization: set Boost path locale in main thread +- `23126a0` Sanitize command strings before logging them. +- `323de27` Initialization: setup environment before starting Qt tests +- `7494e09` Initialization: setup environment before starting tests +- `df45564` Initialization: set fallback locale as environment variable + +Credits +======= + +Thanks to everyone who directly contributed to this release: + +- Alex Morcos +- Cory Fields +- dexX7 +- fsb4000 +- Gavin Andresen +- Gregory Maxwell +- Ivan Pustogarov +- Jonas Schnelli +- Matt Corallo +- mrbandrews +- Pieter Wuille +- Ruben de Vries +- Suhas Daftuar +- Wladimir J. van der Laan + +And all those who contributed additional code review and/or security research: +- 21E14 +- Alison Kendler +- Aviv Zohar +- Ethan Heilman +- Evil-Knievel +- fanquake +- Jeff Garzik +- Jonas Nick +- Luke Dashjr +- Patrick Strateman +- Philip Kaufmann +- Sergio Demian Lerner +- Sharon Goldberg + +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 new file mode 100644 index 0000000000000..192ed69d29981 --- /dev/null +++ b/doc/release-notes/release-notes-0.10.2.md @@ -0,0 +1,86 @@ +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 +========================= + +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/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 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 +other programs. Reindexing using earlier versions will also not work +anymore as a result of this. + +* The block index database will now hold headers for which no block is +stored on disk, which earlier versions won't support. + +If you want to be able to downgrade smoothly, make a backup of your entire data +directory. Without this your node will need start syncing (or importing from +bootstrap.dat) anew afterwards. It is possible that the data from a completely +synchronised 0.10 node may be usable in older versions as-is, but this is not +supported and may break as soon as the older version attempts to reindex. + +This does not affect wallet forward or backward compatibility. + +Notable changes +=============== + +This fixes a serious problem on Windows with data directories that have non-ASCII +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/bitcoin/bitcoin/blob/v0.10.0/doc/release-notes.md + +0.10.2 Change log +================= + +Detailed release notes follow. This overview includes changes that affect external +behavior, not code moves, refactors or string updates. + +Wallet: +- `824c011` fix boost::get usage with boost 1.58 + +Miscellaneous: +- `da65606` Avoid crash on start in TestBlockValidity with gen=1. +- `424ae66` don't imbue boost::filesystem::path with locale "C" on windows (fixes #6078) + +Credits +======= + +Thanks to everyone who directly contributed to this release: + +- Cory Fields +- Gregory Maxwell +- Jonas Schnelli +- Wladimir J. van der Laan + +And all those who contributed additional code review and/or security research: + +- dexX7 +- Pieter Wuille +- vayvanne + +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 new file mode 100644 index 0000000000000..8a110e562c453 --- /dev/null +++ b/doc/release-notes/release-notes-0.10.3.md @@ -0,0 +1,165 @@ +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 +========================= + +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/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 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 +other programs. Reindexing using earlier versions will also not work +anymore as a result of this. + +* The block index database will now hold headers for which no block is +stored on disk, which earlier versions won't support. + +If you want to be able to downgrade smoothly, make a backup of your entire data +directory. Without this your node will need start syncing (or importing from +bootstrap.dat) anew afterwards. It is possible that the data from a completely +synchronised 0.10 node may be usable in older versions as-is, but this is not +supported and may break as soon as the older version attempts to reindex. + +This does not affect wallet forward or backward compatibility. + +Notable changes +=============== + +Fix buffer overflow in bundled upnp +------------------------------------ + +Bundled miniupnpc was updated to 1.9.20151008. This fixes a buffer overflow in +the XML parser during initial network discovery. + +Details can be found here: http://talosintel.com/reports/TALOS-2015-0035/ + +This applies to the distributed executables only, not when building from source or +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/bitcoin/bitcoin/pull/6795). + +Test for LowS signatures before relaying +----------------------------------------- + +Make the node require the canonical 'low-s' encoding for ECDSA signatures when +relaying or mining. This removes a nuisance malleability vector. + +Consensus behavior is unchanged. + +If widely deployed this change would eliminate the last remaining known vector +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 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. + +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; 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 Bitcoin Transactions +Marcin Andrychowicz, Stefan Dziembowski, Daniel Malinowski, Łukasz Mazurek +http://fc15.ifca.ai/preproceedings/bitcoin/paper_9.pdf + +Minimum relay fee default increase +----------------------------------- + +The default for the `-minrelaytxfee` setting has been increased from `0.00001` +to `0.00005`. + +This is necessitated by the current transaction flooding, causing +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/bitcoin/bitcoin/pull/6793, as well as the 0.11.0 +release notes, in which this value was suggested) + +0.10.3 Change log +================= + +Detailed release notes follow. This overview includes changes that affect external +behavior, not code moves, refactors or string updates. + +- #6186 `e4a7d51` Fix two problems in CSubnet parsing +- #6153 `ebd7d8d` Parameter interaction: disable upnp if -proxy set +- #6203 `ecc96f5` Remove P2SH coinbase flag, no longer interesting +- #6226 `181771b` json: fail read_string if string contains trailing garbage +- #6244 `09334e0` configure: Detect (and reject) LibreSSL +- #6276 `0fd8464` Fix getbalance * 0 +- #6274 `be64204` Add option `-alerts` to opt out of alert system +- #6319 `3f55638` doc: update mailing list address +- #6438 `7e66e9c` openssl: avoid config file load/race +- #6439 `255eced` Updated URL location of netinstall for Debian +- #6412 `0739e6e` Test whether created sockets are select()able +- #6694 `f696ea1` [QT] fix thin space word wrap line brake issue +- #6704 `743cc9e` Backport bugfixes to 0.10 +- #6769 `1cea6b0` Test LowS in standardness, removes nuisance malleability vector. +- #6789 `093d7b5` Update miniupnpc to 1.9.20151008 +- #6795 `f2778e0` net: Disable upnp by default +- #6797 `91ef4d9` Do not store more than 200 timedata samples +- #6793 `842c48d` Bump minrelaytxfee default + +Credits +======= + +Thanks to everyone who directly contributed to this release: + +- Adam Weiss +- Alex Morcos +- Casey Rodarmor +- Cory Fields +- fanquake +- Gregory Maxwell +- Jonas Schnelli +- J Ross Nicoll +- Luke Dashjr +- Pavel Vasin +- Pieter Wuille +- randy-waterhouse +- ฿tcDrak +- Tom Harding +- Veres Lajos +- Wladimir J. van der Laan + +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/bitcoin/). diff --git a/doc/release-notes/release-notes-0.9.4.md b/doc/release-notes/release-notes-0.9.4.md new file mode 100644 index 0000000000000..7ee73246a9b04 --- /dev/null +++ b/doc/release-notes/release-notes-0.9.4.md @@ -0,0 +1,95 @@ +Bitcoin Core version 0.9.4 is now available from: + + 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. + +Please report bugs using the issue tracker at github: + + https://github.com/bitcoin/bitcoin/issues + +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/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 Bitcoin system and could lead to consensus +forks. + +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/~bitcoin/+archive/ubuntu/bitcoin +- A third-party or self-compiled Bitcoin Core + +upgrade to Bitcoin Core 0.9.4, which includes a workaround, **before** updating +OpenSSL. + +The incompatibility is due to the OpenSSL update changing the +behavior of ECDSA validation to reject any signature which is +not encoded in a very rigid manner. This was a result of +OpenSSL's change for CVE-2014-8275 "Certificate fingerprints +can be modified". + +We are specifically aware of potential hard-forks due to signature +encoding handling and had been hoping to close them via BIP62 in 0.10. +BIP62's purpose is to improve transaction malleability handling and +as a side effect rigidly defines the encoding for signatures, but the +overall scope of BIP62 has made it take longer than we'd like to +deploy. + +0.9.4 changelog +================ + +Validation: +- `b8e81b7` consensus: guard against openssl's new strict DER checks +- `60c51f1` fail immediately on an empty signature +- `037bfef` Improve robustness of DER recoding code + +Command-line options: +- `cd5164a` Make -proxy set all network types, avoiding a connect leak. + +P2P: +- `bb424e4` Limit the number of new addressses to accumulate + +RPC: +- `0a94661` Disable SSLv3 (in favor of TLS) for the RPC client and server. + +Build system: +- `f047dfa` gitian: openssl-1.0.1i.tar.gz -> openssl-1.0.1k.tar.gz +- `5b9f78d` build: Fix OSX build when using Homebrew and qt5 +- `ffab1dd` Keep symlinks when copying into .app bundle +- `613247f` osx: fix signing to make Gatekeeper happy (again) + +Miscellaneous: +- `25b49b5` Refactor -alertnotify code +- `2743529` doc: Add instructions for consistent Mac OS X build names + +Credits +-------- + +Thanks to who contributed to this release, at least: + +- Cory Fields +- Gavin Andresen +- Gregory Maxwell +- Jeff Garzik +- Luke Dashjr +- Matt Corallo +- Pieter Wuille +- Saivann +- Sergio Demian Lerner +- Wladimir J. van der Laan + +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 new file mode 100644 index 0000000000000..bed0af9879bf4 --- /dev/null +++ b/doc/release-notes/release-notes-0.9.5.md @@ -0,0 +1,60 @@ +Bitcoin Core version 0.9.5 is now available from: + + 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 +recommended. + +Please report bugs using the issue tracker at github: + + https://github.com/bitcoin/bitcoin/issues + +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/Bitcoin-Qt (on Mac) or +bitcoind/bitcoin-qt (on Linux). + +Notable changes +================ + +Mining and relay policy enhancements +------------------------------------ + +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 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 +you at the pool operator's discretion, which must be no later than BIP66 +achieving its 951/1001 status. + +0.9.5 changelog +================ + +- `74f29c2` Check pindexBestForkBase for null +- `9cd1dd9` Fix priority calculation in CreateTransaction +- `6b4163b` Sanitize command strings before logging them. +- `3230b32` Raise version of created blocks, and enforce DERSIG in mempool +- `989d499` Backport of some of BIP66's tests +- `ab03660` Implement BIP 66 validation rules and switchover logic +- `8438074` build: fix dynamic boost check when --with-boost= is used + +Credits +-------- + +Thanks to who contributed to this release, at least: + +- 21E14 +- Alex Morcos +- Cory Fields +- Gregory Maxwell +- Pieter Wuille +- Wladimir J. van der Laan + +As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/). diff --git a/doc/release-process.md b/doc/release-process.md index a16d4ace4a61f..17f60a6521702 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -1,11 +1,6 @@ Release Process ==================== -* update translations (ping wumpus, Diapolo or tcatm on IRC) -* see https://github.com/bitcoin/bitcoin/blob/master/doc/translation_process.md#syncing-with-transifex - -* * * - ###update (commit) version in sources contrib/verifysfbinaries/verify.sh @@ -23,54 +18,61 @@ Release Process * * * -###update gitian +###update Gitian - In order to take advantage of the new caching features in gitian, be sure to update to a recent version (e9741525c or higher is recommended) + In order to take advantage of the new caching features in Gitian, be sure to update to a recent version (e9741525c or higher is recommended) -###perform gitian builds +###perform Gitian builds - From a directory containing the bitcoin source, gitian-builder and gitian.sigs + From a directory containing the hypercoin source, gitian-builder and gitian.sigs.hot - export SIGNER=(your gitian key, ie bluematt, sipa, etc) + export SIGNER=(your Gitian key, ie wtogami, coblee, etc) export VERSION=(new version, e.g. 0.8.0) - pushd ./bitcoin + pushd ./hypercoin git checkout v${VERSION} popd pushd ./gitian-builder ###fetch and build inputs: (first time, or when dependency versions change) - - mkdir -p inputs; cd inputs/ - - Register and download the Apple SDK: (see OSX Readme for details) - - https://developer.apple.com/downloads/download.action?path=Developer_Tools/xcode_4.6.3/xcode4630916281a.dmg - - Using a Mac, create a tarball for the 10.7 SDK and copy it to the inputs directory: - - tar -C /Volumes/Xcode/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/ -czf MacOSX10.7.sdk.tar.gz MacOSX10.7.sdk - - Build Bitcoin Core for Linux, Windows, and OS X: - - ./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml - ./bin/gsign --signer $SIGNER --release ${VERSION}-linux --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml - mv build/out/bitcoin-*.tar.gz build/out/src/bitcoin-*.tar.gz ../ - ./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-win.yml - ./bin/gsign --signer $SIGNER --release ${VERSION}-win --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-win.yml - mv build/out/bitcoin-*.zip build/out/bitcoin-*.exe ../ - ./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-osx.yml - ./bin/gsign --signer $SIGNER --release ${VERSION}-osx-unsigned --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-osx.yml - mv build/out/bitcoin-*-unsigned.tar.gz inputs - mv build/out/bitcoin-*.tar.gz build/out/bitcoin-*.dmg ../ + + mkdir -p inputs + + Register and download the Apple SDK: (see OS X Readme for details) + + https://developer.apple.com/downloads/download.action?path=Developer_Tools/xcode_6.1.1/xcode_6.1.1.dmg + + Using a Mac, create a tarball for the 10.9 SDK and copy it to the inputs directory: + + tar -C /Volumes/Xcode/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/ -czf MacOSX10.9.sdk.tar.gz MacOSX10.9.sdk + +###Optional: Seed the Gitian sources cache + + By default, Gitian will fetch source files as needed. For offline builds, they can be fetched ahead of time: + + make -C ../hypercoin/depends download SOURCES_PATH=`pwd`/cache/common + + Only missing files will be fetched, so this is safe to re-run for each build. + +###Build Hypercoin Core for Linux, Windows, and OS X: + + ./bin/gbuild --commit hypercoin=v${VERSION} ../hypercoin/contrib/gitian-descriptors/gitian-linux.yml + ./bin/gsign --signer $SIGNER --release ${VERSION}-linux --destination ../gitian.sigs.hot/ ../hypercoin/contrib/gitian-descriptors/gitian-linux.yml + mv build/out/hypercoin-*.tar.gz build/out/src/hypercoin-*.tar.gz ../ + ./bin/gbuild --commit hypercoin=v${VERSION} ../hypercoin/contrib/gitian-descriptors/gitian-win.yml + ./bin/gsign --signer $SIGNER --release ${VERSION}-win --destination ../gitian.sigs.hot/ ../hypercoin/contrib/gitian-descriptors/gitian-win.yml + mv build/out/hypercoin-*.zip build/out/hypercoin-*.exe ../ + ./bin/gbuild --commit hypercoin=v${VERSION} ../hypercoin/contrib/gitian-descriptors/gitian-osx.yml + ./bin/gsign --signer $SIGNER --release ${VERSION}-osx-unsigned --destination ../gitian.sigs.hot/ ../hypercoin/contrib/gitian-descriptors/gitian-osx.yml + mv build/out/hypercoin-*-unsigned.tar.gz inputs/hypercoin-osx-unsigned.tar.gz + mv build/out/hypercoin-*.tar.gz build/out/hypercoin-*.dmg ../ popd -bitcoin-0.9.99-osx-unsigned.tar.gz Build output expected: - 1. source tarball (bitcoin-${VERSION}.tar.gz) - 2. linux 32-bit and 64-bit binaries dist tarballs (bitcoin-${VERSION}-linux[32|64].tar.gz) - 3. windows 32-bit and 64-bit installers and dist zips (bitcoin-${VERSION}-win[32|64]-setup.exe, bitcoin-${VERSION}-win[32|64].zip) - 4. OSX unsigned installer (bitcoin-${VERSION}-osx-unsigned.dmg) - 5. Gitian signatures (in gitian.sigs/${VERSION}-/(your gitian key)/ + 1. source tarball (hypercoin-${VERSION}.tar.gz) + 2. linux 32-bit and 64-bit binaries dist tarballs (hypercoin-${VERSION}-linux[32|64].tar.gz) + 3. windows 32-bit and 64-bit installers and dist zips (hypercoin-${VERSION}-win[32|64]-setup.exe, hypercoin-${VERSION}-win[32|64].zip) + 4. OS X unsigned installer (hypercoin-${VERSION}-osx-unsigned.dmg) + 5. Gitian signatures (in gitian.sigs/${VERSION}-/(your Gitian key)/ ###Next steps: @@ -84,20 +86,21 @@ Commit your signature to gitian.sigs: git push # Assuming you can push to the gitian.sigs tree popd -Wait for OSX detached signature: - Once the OSX build has 3 matching signatures, Gavin will sign it with the apple App-Store key. + Wait for OS X detached signature: + Once the OS X build has 3 matching signatures, Warren/Coblee will sign it with the apple App-Store key. He will then upload a detached signature to be combined with the unsigned app to create a signed binary. -Create the signed OSX binary: + Create the signed OS X binary: + pushd ./gitian-builder - # Fetch the signature as instructed by Gavin + # Fetch the signature as instructed by Warren/Coblee cp signature.tar.gz inputs/ - ./bin/gbuild -i ../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml - ./bin/gsign --signer $SIGNER --release ${VERSION}-osx-signed --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml - mv build/out/bitcoin-${VERSION}-osx.dmg ../ + ./bin/gbuild -i ../hypercoin/contrib/gitian-descriptors/gitian-osx-signer.yml + ./bin/gsign --signer $SIGNER --release ${VERSION}-osx-signed --destination ../gitian.sigs/ ../hypercoin/contrib/gitian-descriptors/gitian-osx-signer.yml + mv build/out/hypercoin-osx-signed.dmg ../hypercoin-${VERSION}-osx.dmg popd -Commit your signature for the signed OSX binary: +Commit your signature for the signed OS X binary: pushd gitian.sigs git add ${VERSION}-osx-signed/${SIGNER} @@ -113,7 +116,7 @@ Commit your signature for the signed OSX binary: - Code-sign Windows -setup.exe (in a Windows virtual machine using signtool) - Note: only Gavin has the code-signing keys currently. + Note: only Warren/Coblee has the code-signing keys currently. - Create `SHA256SUMS.asc` for the builds, and GPG-sign it: ```bash @@ -123,28 +126,17 @@ rm SHA256SUMS ``` (the digest algorithm is forced to sha256 to avoid confusion of the `Hash:` header that GPG adds with the SHA256 used for the files) -- Upload zips and installers, as well as `SHA256SUMS.asc` from last step, to the bitcoin.org server - -- Update bitcoin.org version - - - Make a pull request to add a file named `YYYY-MM-DD-vX.Y.Z.md` with the release notes - to https://github.com/bitcoin/bitcoin.org/tree/master/_releases - ([Example for 0.9.2.1](https://raw.githubusercontent.com/bitcoin/bitcoin.org/master/_releases/2014-06-19-v0.9.2.1.md)). - - - After the pull request is merged, the website will automatically show the newest version, as well - as update the OS download links. Ping Saivann in case anything goes wrong +- Update hypercoin.org version - Announce the release: - - Release sticky on bitcointalk: https://bitcointalk.org/index.php?board=1.0 - - - Bitcoin-development mailing list + - Release sticky on hypercointalk: https://hypercointalk.org/index.php?board=1.0 - - Update title of #bitcoin on Freenode IRC + - hypercoin-development mailing list - - Optionally reddit /r/Bitcoin, ... but this will usually sort out itself + - Update title of #hypercoin on Freenode IRC -- Notify BlueMatt so that he can start building [https://launchpad.net/~bitcoin/+archive/ubuntu/bitcoin](the PPAs) + - Optionally reddit /r/hypercoin, ... but this will usually sort out itself - Add release notes for the new version to the directory `doc/release-notes` in git master diff --git a/doc/tor.md b/doc/tor.md index 560f71fa27c39..d51d4e7af3281 100644 --- a/doc/tor.md +++ b/doc/tor.md @@ -15,15 +15,15 @@ outgoing connections be anonymized, but more is possible. -proxy=ip:port Set the proxy server. If SOCKS5 is selected (default), this proxy server will be used to try to reach .onion addresses as well. - + -onion=ip:port Set the proxy server to use for tor hidden services. You do not need to set this if it's the same as -proxy. You can use -noonion to explicitly disable access to hidden service. - + -listen When using -proxy, listening is disabled by default. If you want to run a hidden service (see next section), you'll need to enable it explicitly. - + -connect=X When behind a Tor proxy, you can specify .onion addresses instead -addnode=X of IP addresses or hostnames in these parameters. It requires -seednode=X SOCKS5. In Tor mode, such addresses can also be exchanged with @@ -42,11 +42,11 @@ reachable from the Tor network. Add these lines to your /etc/tor/torrc (or equiv config file): HiddenServiceDir /var/lib/tor/bitcoin-service/ - HiddenServicePort 8333 127.0.0.1:8333 - HiddenServicePort 18333 127.0.0.1:18333 + HiddenServicePort 36307 127.0.0.1:36307 + HiddenServicePort 46307 127.0.0.1:46307 The directory can be different of course, but (both) port numbers should be equal to -your bitcoind's P2P listen port (8333 by default). +your bitcoind's P2P listen port (36307 by default). -externalip=X You can tell bitcoin about its publicly reachable address using this option, and this can be a .onion address. Given the above @@ -55,10 +55,10 @@ your bitcoind's P2P listen port (8333 by default). preference for your node to advertize itself with, for connections coming from unroutable addresses (such as 127.0.0.1, where the Tor proxy typically runs). - + -listen You'll need to enable listening for incoming connections, as this is off by default behind a proxy. - + -discover When -externalip is specified, no attempt is made to discover local IPv4 or IPv6 addresses. If you want to run a dual stack, reachable from both Tor and IPv4 (or IPv6), you'll need to either pass your @@ -76,10 +76,9 @@ specify: ./bitcoind ... -discover -and open port 8333 on your firewall (or use -upnp). +and open port 36307 on your firewall (or use -upnp). If you only want to use Tor to reach onion addresses, but not use it as a proxy for normal IPv4/IPv6 communication, use: ./bitcoin -onion=127.0.0.1:9050 -externalip=57qr3yd1nyntf5k.onion -discover - diff --git a/qa/pull-tester/rpc-tests.sh b/qa/pull-tester/rpc-tests.sh index d6ee00bb7df06..d3e8ad5608b53 100755 --- a/qa/pull-tester/rpc-tests.sh +++ b/qa/pull-tester/rpc-tests.sh @@ -8,14 +8,11 @@ CURDIR=$(cd $(dirname "$0"); pwd) export BITCOINCLI=${BUILDDIR}/qa/pull-tester/run-bitcoin-cli export BITCOIND=${REAL_BITCOIND} -if [ "x${EXEEXT}" = "x.exe" ]; then - echo "Win tests currently disabled" - exit 0 -fi - #Run the tests if [ "x${ENABLE_BITCOIND}${ENABLE_UTILS}${ENABLE_WALLET}" = "x111" ]; then + ${BUILDDIR}/qa/rpc-tests/bip65-cltv-p2p.py --srcdir "${BUILDDIR}/src" + ${BUILDDIR}/qa/rpc-tests/bip65-cltv.py --srcdir "${BUILDDIR}/src" ${BUILDDIR}/qa/rpc-tests/wallet.py --srcdir "${BUILDDIR}/src" ${BUILDDIR}/qa/rpc-tests/listtransactions.py --srcdir "${BUILDDIR}/src" ${BUILDDIR}/qa/rpc-tests/mempool_resurrect_test.py --srcdir "${BUILDDIR}/src" diff --git a/qa/pull-tester/run-bitcoind-for-test.sh.in b/qa/pull-tester/run-bitcoind-for-test.sh.in index 42d8ad52e8866..14ae08e4e58f0 100755 --- a/qa/pull-tester/run-bitcoind-for-test.sh.in +++ b/qa/pull-tester/run-bitcoind-for-test.sh.in @@ -10,7 +10,7 @@ touch "$DATADIR/regtest/debug.log" tail -q -n 1 -F "$DATADIR/regtest/debug.log" | grep -m 1 -q "Done loading" & WAITER=$! PORT=`expr 10000 + $$ % 55536` -"@abs_top_builddir@/src/bitcoind@EXEEXT@" -connect=0.0.0.0 -datadir="$DATADIR" -rpcuser=user -rpcpassword=pass -listen -keypool=3 -debug -debug=net -logtimestamps -checkmempool=0 -port=$PORT -whitelist=127.0.0.1 -regtest -rpcport=`expr $PORT + 1` & +"@abs_top_builddir@/src/bitcoind@EXEEXT@" -connect=0.0.0.0 -datadir="$DATADIR" -rpcuser=user -rpcpassword=pass -listen -keypool=3 -debug -debug=net -logtimestamps -checkmempool=0 -relaypriority=0 -port=$PORT -whitelist=127.0.0.1 -regtest -rpcport=`expr $PORT + 1` & BITCOIND=$! #Install a watchdog. diff --git a/qa/rpc-tests/bip65-cltv-p2p.py b/qa/rpc-tests/bip65-cltv-p2p.py new file mode 100755 index 0000000000000..944d9dd28d3a6 --- /dev/null +++ b/qa/rpc-tests/bip65-cltv-p2p.py @@ -0,0 +1,175 @@ +#!/usr/bin/env python2 +# +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. +# + +from test_framework.test_framework import ComparisonTestFramework +from test_framework.util import * +from test_framework.mininode import CTransaction, NetworkThread +from test_framework.blocktools import create_coinbase, create_block +from test_framework.comptool import TestInstance, TestManager +from test_framework.script import CScript, OP_1NEGATE, OP_NOP2, OP_DROP +from binascii import hexlify, unhexlify +import cStringIO +import time + +def cltv_invalidate(tx): + '''Modify the signature in vin 0 of the tx to fail CLTV + + Prepends -1 CLTV DROP in the scriptSig itself. + ''' + tx.vin[0].scriptSig = CScript([OP_1NEGATE, OP_NOP2, OP_DROP] + + list(CScript(tx.vin[0].scriptSig))) + +''' +This test is meant to exercise BIP65 (CHECKLOCKTIMEVERIFY) +Connect to a single node. +Mine 2 (version 3) blocks (save the coinbases for later). +Generate 98 more version 3 blocks, verify the node accepts. +Mine 749 version 4 blocks, verify the node accepts. +Check that the new CLTV rules are not enforced on the 750th version 4 block. +Check that the new CLTV rules are enforced on the 751st version 4 block. +Mine 199 new version blocks. +Mine 1 old-version block. +Mine 1 new version block. +Mine 1 old version block, see that the node rejects. +''' + +class BIP65Test(ComparisonTestFramework): + + def __init__(self): + self.num_nodes = 1 + + def setup_network(self): + # Must set the blockversion for this test + self.nodes = start_nodes(1, self.options.tmpdir, + extra_args=[['-debug', '-whitelist=127.0.0.1', '-blockversion=3']], + binary=[self.options.testbinary]) + + def run_test(self): + test = TestManager(self, self.options.tmpdir) + test.add_all_connections(self.nodes) + NetworkThread().start() # Start up network handling in another thread + test.run() + + def create_transaction(self, node, coinbase, to_address, amount): + from_txid = node.getblock(coinbase)['tx'][0] + inputs = [{ "txid" : from_txid, "vout" : 0}] + outputs = { to_address : amount } + rawtx = node.createrawtransaction(inputs, outputs) + signresult = node.signrawtransaction(rawtx) + tx = CTransaction() + f = cStringIO.StringIO(unhexlify(signresult['hex'])) + tx.deserialize(f) + return tx + + def get_tests(self): + + self.coinbase_blocks = self.nodes[0].setgenerate(True, 2) + self.tip = int ("0x" + self.nodes[0].getbestblockhash() + "L", 0) + self.nodeaddress = self.nodes[0].getnewaddress() + self.last_block_time = time.time() + + ''' 98 more version 3 blocks ''' + test_blocks = [] + for i in xrange(98): + block = create_block(self.tip, create_coinbase(2), self.last_block_time + 1) + block.nVersion = 3 + block.rehash() + block.solve() + test_blocks.append([block, True]) + self.last_block_time += 1 + self.tip = block.sha256 + yield TestInstance(test_blocks, sync_every_block=False) + + ''' Mine 749 version 4 blocks ''' + test_blocks = [] + for i in xrange(749): + block = create_block(self.tip, create_coinbase(2), self.last_block_time + 1) + block.nVersion = 4 + block.rehash() + block.solve() + test_blocks.append([block, True]) + self.last_block_time += 1 + self.tip = block.sha256 + yield TestInstance(test_blocks, sync_every_block=False) + + ''' + Check that the new CLTV rules are not enforced in the 750th + version 3 block. + ''' + spendtx = self.create_transaction(self.nodes[0], + self.coinbase_blocks[0], self.nodeaddress, 1.0) + cltv_invalidate(spendtx) + spendtx.rehash() + + block = create_block(self.tip, create_coinbase(2), self.last_block_time + 1) + block.nVersion = 4 + block.vtx.append(spendtx) + block.hashMerkleRoot = block.calc_merkle_root() + block.rehash() + block.solve() + + self.last_block_time += 1 + self.tip = block.sha256 + yield TestInstance([[block, True]]) + + ''' + Check that the new CLTV rules are enforced in the 751st version 4 + block. + ''' + spendtx = self.create_transaction(self.nodes[0], + self.coinbase_blocks[1], self.nodeaddress, 1.0) + cltv_invalidate(spendtx) + spendtx.rehash() + + block = create_block(self.tip, create_coinbase(1), self.last_block_time + 1) + block.nVersion = 4 + block.vtx.append(spendtx) + block.hashMerkleRoot = block.calc_merkle_root() + block.rehash() + block.solve() + self.last_block_time += 1 + yield TestInstance([[block, False]]) + + ''' Mine 199 new version blocks on last valid tip ''' + test_blocks = [] + for i in xrange(199): + block = create_block(self.tip, create_coinbase(1), self.last_block_time + 1) + block.nVersion = 4 + block.rehash() + block.solve() + test_blocks.append([block, True]) + self.last_block_time += 1 + self.tip = block.sha256 + yield TestInstance(test_blocks, sync_every_block=False) + + ''' Mine 1 old version block ''' + block = create_block(self.tip, create_coinbase(1), self.last_block_time + 1) + block.nVersion = 3 + block.rehash() + block.solve() + self.last_block_time += 1 + self.tip = block.sha256 + yield TestInstance([[block, True]]) + + ''' Mine 1 new version block ''' + block = create_block(self.tip, create_coinbase(1), self.last_block_time + 1) + block.nVersion = 4 + block.rehash() + block.solve() + self.last_block_time += 1 + self.tip = block.sha256 + yield TestInstance([[block, True]]) + + ''' Mine 1 old version block, should be invalid ''' + block = create_block(self.tip, create_coinbase(1), self.last_block_time + 1) + block.nVersion = 3 + block.rehash() + block.solve() + self.last_block_time += 1 + yield TestInstance([[block, False]]) + +if __name__ == '__main__': + BIP65Test().main() diff --git a/qa/rpc-tests/bip65-cltv.py b/qa/rpc-tests/bip65-cltv.py new file mode 100755 index 0000000000000..e009c1c986962 --- /dev/null +++ b/qa/rpc-tests/bip65-cltv.py @@ -0,0 +1,89 @@ +#!/usr/bin/env python2 +# Copyright (c) 2015 The Bitcoin Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. + +# +# Test the CHECKLOCKTIMEVERIFY (BIP65) soft-fork logic +# + +from test_framework.test_framework import BitcoinTestFramework +from test_framework.util import * +import os +import shutil + +class BIP65Test(BitcoinTestFramework): + + def setup_network(self): + self.nodes = [] + self.nodes.append(start_node(0, self.options.tmpdir, [])) + self.nodes.append(start_node(1, self.options.tmpdir, ["-blockversion=3"])) + self.nodes.append(start_node(2, self.options.tmpdir, ["-blockversion=4"])) + connect_nodes(self.nodes[1], 0) + connect_nodes(self.nodes[2], 0) + self.is_network_split = False + self.sync_all() + + def run_test(self): + cnt = self.nodes[0].getblockcount() + + # Mine some old-version blocks + self.nodes[1].setgenerate(True, 100) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 100): + raise AssertionError("Failed to mine 100 version=3 blocks") + + # Mine 750 new-version blocks + for i in xrange(15): + self.nodes[2].setgenerate(True, 50) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 850): + raise AssertionError("Failed to mine 750 version=4 blocks") + + # TODO: check that new CHECKLOCKTIMEVERIFY rules are not enforced + + # Mine 1 new-version block + self.nodes[2].setgenerate(True, 1) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 851): + raise AssertionFailure("Failed to mine a version=4 blocks") + + # TODO: check that new CHECKLOCKTIMEVERIFY rules are enforced + + # Mine 198 new-version blocks + for i in xrange(2): + self.nodes[2].setgenerate(True, 99) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 1049): + raise AssertionError("Failed to mine 198 version=4 blocks") + + # Mine 1 old-version block + self.nodes[1].setgenerate(True, 1) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 1050): + raise AssertionError("Failed to mine a version=3 block after 949 version=4 blocks") + + # Mine 1 new-version blocks + self.nodes[2].setgenerate(True, 1) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 1051): + raise AssertionError("Failed to mine a version=4 block") + + # Mine 1 old-version blocks + try: + self.nodes[1].setgenerate(True, 1) + raise AssertionError("Succeeded to mine a version=3 block after 950 version=4 blocks") + except JSONRPCException: + pass + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 1051): + raise AssertionError("Accepted a version=3 block after 950 version=4 blocks") + + # Mine 1 new-version blocks + self.nodes[2].setgenerate(True, 1) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 1052): + raise AssertionError("Failed to mine a version=4 block") + +if __name__ == '__main__': + BIP65Test().main() diff --git a/qa/rpc-tests/bipdersig.py b/qa/rpc-tests/bipdersig.py new file mode 100755 index 0000000000000..9f2cc84601545 --- /dev/null +++ b/qa/rpc-tests/bipdersig.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python2 +# Copyright (c) 2014 The Bitcoin Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. + +# +# Test the BIP66 changeover logic +# + +from test_framework import BitcoinTestFramework +from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException +from util import * +import os +import shutil + +class BIP66Test(BitcoinTestFramework): + + def setup_network(self): + self.nodes = [] + self.nodes.append(start_node(0, self.options.tmpdir, [])) + self.nodes.append(start_node(1, self.options.tmpdir, ["-blockversion=2"])) + self.nodes.append(start_node(2, self.options.tmpdir, ["-blockversion=3"])) + connect_nodes(self.nodes[1], 0) + connect_nodes(self.nodes[2], 0) + self.is_network_split = False + self.sync_all() + + def run_test(self): + cnt = self.nodes[0].getblockcount() + + # Mine some old-version blocks + self.nodes[1].setgenerate(True, 100) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 100): + raise AssertionError("Failed to mine 100 version=2 blocks") + + # Mine 750 new-version blocks + for i in xrange(15): + self.nodes[2].setgenerate(True, 50) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 850): + raise AssertionError("Failed to mine 750 version=3 blocks") + + # TODO: check that new DERSIG rules are not enforced + + # Mine 1 new-version block + self.nodes[2].setgenerate(True, 1) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 851): + raise AssertionFailure("Failed to mine a version=3 blocks") + + # TODO: check that new DERSIG rules are enforced + + # Mine 198 new-version blocks + for i in xrange(2): + self.nodes[2].setgenerate(True, 99) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 1049): + raise AssertionError("Failed to mine 198 version=3 blocks") + + # Mine 1 old-version block + self.nodes[1].setgenerate(True, 1) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 1050): + raise AssertionError("Failed to mine a version=2 block after 949 version=3 blocks") + + # Mine 1 new-version blocks + self.nodes[2].setgenerate(True, 1) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 1051): + raise AssertionError("Failed to mine a version=3 block") + + # Mine 1 old-version blocks + try: + self.nodes[1].setgenerate(True, 1) + raise AssertionError("Succeeded to mine a version=2 block after 950 version=3 blocks") + except JSONRPCException: + pass + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 1051): + raise AssertionError("Accepted a version=2 block after 950 version=3 blocks") + + # Mine 1 new-version blocks + self.nodes[2].setgenerate(True, 1) + self.sync_all() + if (self.nodes[0].getblockcount() != cnt + 1052): + raise AssertionError("Failed to mine a version=3 block") + +if __name__ == '__main__': + BIP66Test().main() diff --git a/qa/rpc-tests/httpbasics.py b/qa/rpc-tests/httpbasics.py index a94edaffa53da..24533741e5537 100755 --- a/qa/rpc-tests/httpbasics.py +++ b/qa/rpc-tests/httpbasics.py @@ -20,7 +20,10 @@ except ImportError: import urlparse -class RESTTest (BitcoinTestFramework): +class HTTPBasicsTest (BitcoinTestFramework): + def setup_nodes(self): + return start_nodes(4, self.options.tmpdir, extra_args=[['-rpckeepalive=1'], ['-rpckeepalive=0'], [], []]) + def run_test(self): ################################################# @@ -32,13 +35,13 @@ def run_test(self): conn = httplib.HTTPConnection(url.hostname, url.port) conn.connect() - conn.request('GET', '/', '{"method": "getbestblockhash"}', headers) + conn.request('POST', '/', '{"method": "getbestblockhash"}', headers) out1 = conn.getresponse().read(); assert_equal('"error":null' in out1, True) assert_equal(conn.sock!=None, True) #according to http/1.1 connection must still be open! #send 2nd request without closing connection - conn.request('GET', '/', '{"method": "getchaintips"}', headers) + conn.request('POST', '/', '{"method": "getchaintips"}', headers) out2 = conn.getresponse().read(); assert_equal('"error":null' in out1, True) #must also response with a correct json-rpc message assert_equal(conn.sock!=None, True) #according to http/1.1 connection must still be open! @@ -49,13 +52,13 @@ def run_test(self): conn = httplib.HTTPConnection(url.hostname, url.port) conn.connect() - conn.request('GET', '/', '{"method": "getbestblockhash"}', headers) + conn.request('POST', '/', '{"method": "getbestblockhash"}', headers) out1 = conn.getresponse().read(); assert_equal('"error":null' in out1, True) assert_equal(conn.sock!=None, True) #according to http/1.1 connection must still be open! #send 2nd request without closing connection - conn.request('GET', '/', '{"method": "getchaintips"}', headers) + conn.request('POST', '/', '{"method": "getchaintips"}', headers) out2 = conn.getresponse().read(); assert_equal('"error":null' in out1, True) #must also response with a correct json-rpc message assert_equal(conn.sock!=None, True) #according to http/1.1 connection must still be open! @@ -66,11 +69,34 @@ def run_test(self): conn = httplib.HTTPConnection(url.hostname, url.port) conn.connect() - conn.request('GET', '/', '{"method": "getbestblockhash"}', headers) + conn.request('POST', '/', '{"method": "getbestblockhash"}', headers) out1 = conn.getresponse().read(); assert_equal('"error":null' in out1, True) assert_equal(conn.sock!=None, False) #now the connection must be closed after the response + #node1 (2nd node) is running with disabled keep-alive option + urlNode1 = urlparse.urlparse(self.nodes[1].url) + authpair = urlNode1.username + ':' + urlNode1.password + headers = {"Authorization": "Basic " + base64.b64encode(authpair)} + + conn = httplib.HTTPConnection(urlNode1.hostname, urlNode1.port) + conn.connect() + conn.request('POST', '/', '{"method": "getbestblockhash"}', headers) + out1 = conn.getresponse().read(); + assert_equal('"error":null' in out1, True) + assert_equal(conn.sock!=None, False) #connection must be closed because keep-alive was set to false + + #node2 (third node) is running with standard keep-alive parameters which means keep-alive is off + urlNode2 = urlparse.urlparse(self.nodes[2].url) + authpair = urlNode2.username + ':' + urlNode2.password + headers = {"Authorization": "Basic " + base64.b64encode(authpair)} + + conn = httplib.HTTPConnection(urlNode2.hostname, urlNode2.port) + conn.connect() + conn.request('POST', '/', '{"method": "getbestblockhash"}', headers) + out1 = conn.getresponse().read(); + assert_equal('"error":null' in out1, True) + assert_equal(conn.sock!=None, True) #connection must be closed because bitcoind should use keep-alive by default if __name__ == '__main__': - RESTTest ().main () + HTTPBasicsTest ().main () diff --git a/qa/rpc-tests/invalidateblock.py b/qa/rpc-tests/invalidateblock.py new file mode 100755 index 0000000000000..ccfcf00e30e28 --- /dev/null +++ b/qa/rpc-tests/invalidateblock.py @@ -0,0 +1,76 @@ +#!/usr/bin/env python2 +# Copyright (c) 2014 The Bitcoin Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. + +# +# Test InvalidateBlock code +# + +from test_framework import BitcoinTestFramework +from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException +from util import * + +class InvalidateTest(BitcoinTestFramework): + + + def setup_chain(self): + print("Initializing test directory "+self.options.tmpdir) + initialize_chain_clean(self.options.tmpdir, 3) + + def setup_network(self): + self.nodes = [] + self.is_network_split = False + self.nodes.append(start_node(0, self.options.tmpdir, ["-debug"])) + self.nodes.append(start_node(1, self.options.tmpdir, ["-debug"])) + self.nodes.append(start_node(2, self.options.tmpdir, ["-debug"])) + + def run_test(self): + print "Make sure we repopulate setBlockIndexCandidates after InvalidateBlock:" + print "Mine 4 blocks on Node 0" + self.nodes[0].setgenerate(True, 4) + assert(self.nodes[0].getblockcount() == 4) + besthash = self.nodes[0].getbestblockhash() + + print "Mine competing 6 blocks on Node 1" + self.nodes[1].setgenerate(True, 6) + assert(self.nodes[1].getblockcount() == 6) + + print "Connect nodes to force a reorg" + connect_nodes_bi(self.nodes,0,1) + sync_blocks(self.nodes[0:2]) + assert(self.nodes[0].getblockcount() == 6) + badhash = self.nodes[1].getblockhash(2) + + print "Invalidate block 2 on node 0 and verify we reorg to node 0's original chain" + self.nodes[0].invalidateblock(badhash) + newheight = self.nodes[0].getblockcount() + newhash = self.nodes[0].getbestblockhash() + if (newheight != 4 or newhash != besthash): + raise AssertionError("Wrong tip for node0, hash %s, height %d"%(newhash,newheight)) + + print "\nMake sure we won't reorg to a lower work chain:" + connect_nodes_bi(self.nodes,1,2) + print "Sync node 2 to node 1 so both have 6 blocks" + sync_blocks(self.nodes[1:3]) + assert(self.nodes[2].getblockcount() == 6) + print "Invalidate block 5 on node 1 so its tip is now at 4" + self.nodes[1].invalidateblock(self.nodes[1].getblockhash(5)) + assert(self.nodes[1].getblockcount() == 4) + print "Invalidate block 3 on node 2, so its tip is now 2" + self.nodes[2].invalidateblock(self.nodes[2].getblockhash(3)) + assert(self.nodes[2].getblockcount() == 2) + print "..and then mine a block" + self.nodes[2].setgenerate(True, 1) + print "Verify all nodes are at the right height" + time.sleep(5) + for i in xrange(3): + print i,self.nodes[i].getblockcount() + assert(self.nodes[2].getblockcount() == 3) + assert(self.nodes[0].getblockcount() == 4) + node1height = self.nodes[1].getblockcount() + if node1height < 4: + raise AssertionError("Node 1 reorged to a lower height: %d"%node1height) + +if __name__ == '__main__': + InvalidateTest().main() diff --git a/qa/rpc-tests/reindex.py b/qa/rpc-tests/reindex.py new file mode 100755 index 0000000000000..fe767586bb751 --- /dev/null +++ b/qa/rpc-tests/reindex.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python2 +# Copyright (c) 2014 The Bitcoin Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. + +# +# Test -reindex with CheckBlockIndex +# +from test_framework import BitcoinTestFramework +from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException +from util import * +import os.path + +class ReindexTest(BitcoinTestFramework): + + def setup_chain(self): + print("Initializing test directory "+self.options.tmpdir) + initialize_chain_clean(self.options.tmpdir, 1) + + def setup_network(self): + self.nodes = [] + self.is_network_split = False + self.nodes.append(start_node(0, self.options.tmpdir)) + + def run_test(self): + self.nodes[0].generate(3) + stop_node(self.nodes[0], 0) + wait_bitcoinds() + self.nodes[0]=start_node(0, self.options.tmpdir, ["-debug", "-reindex", "-checkblockindex=1"]) + assert_equal(self.nodes[0].getblockcount(), 3) + print "Success" + +if __name__ == '__main__': + ReindexTest().main() diff --git a/qa/rpc-tests/smartfees.py b/qa/rpc-tests/smartfees.py index 924d16010255e..0c07ef8a53d8a 100755 --- a/qa/rpc-tests/smartfees.py +++ b/qa/rpc-tests/smartfees.py @@ -16,20 +16,20 @@ class EstimateFeeTest(BitcoinTestFramework): def setup_network(self): self.nodes = [] self.nodes.append(start_node(0, self.options.tmpdir, - ["-debug=mempool", "-debug=estimatefee"])) + ["-debug=mempool", "-debug=estimatefee", "-relaypriority=0"])) # Node1 mines small-but-not-tiny blocks, and allows free transactions. # NOTE: the CreateNewBlock code starts counting block size at 1,000 bytes, # so blockmaxsize of 2,000 is really just 1,000 bytes (room enough for # 6 or 7 transactions) self.nodes.append(start_node(1, self.options.tmpdir, ["-blockprioritysize=1500", "-blockmaxsize=2000", - "-debug=mempool", "-debug=estimatefee"])) + "-debug=mempool", "-debug=estimatefee", "-relaypriority=0"])) connect_nodes(self.nodes[1], 0) # Node2 is a stingy miner, that # produces very small blocks (room for only 3 or so transactions) node2args = [ "-blockprioritysize=0", "-blockmaxsize=1500", - "-debug=mempool", "-debug=estimatefee"] + "-debug=mempool", "-debug=estimatefee", "-relaypriority=0"] self.nodes.append(start_node(2, self.options.tmpdir, node2args)) connect_nodes(self.nodes[2], 0) diff --git a/qa/rpc-tests/test_framework.py b/qa/rpc-tests/test_framework.py index 6c4ec073c288d..4c8a11b821d4a 100755 --- a/qa/rpc-tests/test_framework.py +++ b/qa/rpc-tests/test_framework.py @@ -33,8 +33,11 @@ def setup_chain(self): print("Initializing test directory "+self.options.tmpdir) initialize_chain(self.options.tmpdir) + def setup_nodes(self): + return start_nodes(4, self.options.tmpdir) + def setup_network(self, split = False): - self.nodes = start_nodes(4, self.options.tmpdir) + self.nodes = self.setup_nodes() # Connect the nodes as a "chain". This allows us # to split the network between nodes 1 and 2 to get diff --git a/share/pixmaps/bitcoin-bc.ico b/share/pixmaps/bitcoin-bc.ico index 88cc240e2d4f7..d306117e68af8 100644 Binary files a/share/pixmaps/bitcoin-bc.ico and b/share/pixmaps/bitcoin-bc.ico differ diff --git a/share/pixmaps/bitcoin.ico b/share/pixmaps/bitcoin.ico index f5480f41616a8..8038ce260cce2 100644 Binary files a/share/pixmaps/bitcoin.ico and b/share/pixmaps/bitcoin.ico differ diff --git a/share/pixmaps/bitcoin128.png b/share/pixmaps/bitcoin128.png index 55039b1c920d2..5db1b06c73904 100644 Binary files a/share/pixmaps/bitcoin128.png and b/share/pixmaps/bitcoin128.png differ diff --git a/share/pixmaps/bitcoin128.xpm b/share/pixmaps/bitcoin128.xpm index d8e41e9ea4413..0c4b00e93d0c9 100644 --- a/share/pixmaps/bitcoin128.xpm +++ b/share/pixmaps/bitcoin128.xpm @@ -1,384 +1,225 @@ /* XPM */ static char *bitcoin___[] = { /* columns rows colors chars-per-pixel */ -"128 128 250 2", -" c #845415", -". c #895616", -"X c #84581E", -"o c #8D5C18", -"O c #925A15", -"+ c #925E1C", -"@ c #98621C", -"# c #9E711C", -"$ c #A36E1A", -"% c #A96F1B", -"& c #A6711C", -"* c #AC741C", -"= c #B2741E", -"- c #B37C1E", -"; c #BB7C1E", -": c #835B21", -"> c #8F6125", -", c #956727", -"< c #916B2E", -"1 c #996B2C", -"2 c #B47B23", -"3 c #BD7C20", -"4 c #A17330", -"5 c #AB7D3B", -"6 c #C17F20", -"7 c #B9831F", -"8 c #BB842B", -"9 c #BD8533", -"0 c #B68F3D", -"q c #BE8C3B", -"w c #C4801F", -"e c #FE8C03", -"r c #F38A0F", -"t c #FD8E0A", -"y c #FF910C", -"u c #F78F13", -"i c #F98F10", -"p c #F79016", -"a c #FE9314", -"s c #F6931E", -"d c #FD961B", -"f c #FE991E", -"g c #C58421", -"h c #CD8621", -"j c #C78B21", -"k c #CC8B23", -"l c #C2852B", -"z c #C08B2D", -"x c #D28722", -"c c #D38B25", -"v c #DB8E22", -"b c #D28E2C", -"n c #D49323", -"m c #DC9224", -"M c #DC9B25", -"N c #D4922D", -"B c #DF972A", -"V c #DF982E", -"C c #C18D33", -"Z c #C58E38", -"A c #CB9332", -"S c #C2933C", -"D c #CD9339", -"F c #CC9938", -"G c #D19733", -"H c #DA9230", -"J c #D59935", -"K c #DC9C33", -"L c #DC9E3B", -"P c #E49124", -"I c #EA9426", -"U c #E09D26", -"Y c #EC972B", -"T c #F79625", -"R c #F99524", -"E c #F69A26", -"W c #F89825", -"Q c #F2972B", -"! c #F59A2C", -"~ c #F89B2B", -"^ c #E79D33", -"/ c #EF9D31", -"( c #E19F3A", -") c #EF9D3A", -"_ c #F49C33", -"` c #F99E32", -"' c #F49F39", -"] c #D6A13E", -"[ c #DAA33B", -"{ c #E3A127", -"} c #E7A328", -"| c #EDA32C", -" . c #EDA829", -".. c #FFA325", -"X. c #FFAB25", -"o. c #F3A42B", -"O. c #FFA429", -"+. c #F4A929", -"@. c #FFAC2A", -"#. c #FFB227", -"$. c #FFB32C", -"%. c #FFBA2D", -"&. c #EEA830", -"*. c #F7A334", -"=. c #FAA036", -"-. c #FCAB34", -";. c #F4A13C", -":. c #F9A33B", -">. c #F4A83B", -",. c #FFA83F", -"<. c #FDB432", -"1. c #FFBB33", -"2. c #FFB73A", -"3. c #FDB93E", -"4. c #FFC12F", -"5. c #FFC432", -"6. c #FFC338", -"7. c #D2A043", -"8. c #D8A140", -"9. c #EEA144", -"0. c #E2A840", -"q. c #EDA34B", -"w. c #F4A444", -"e. c #F9A642", -"r. c #FBA945", -"t. c #F3A64B", -"y. c #F4A84E", -"u. c #FBAB4B", -"i. c #EEB041", -"p. c #FABA44", -"a. c #ECA653", -"s. c #EEAC5D", -"d. c #F3AA53", -"f. c #FAAE53", -"g. c #F2AD5A", -"h. c #FBB056", -"j. c #F6B15E", -"k. c #FBB25B", -"l. c #DDAF79", -"z. c #E3A962", -"x. c #EBAE63", -"c. c #E4AC68", -"v. c #EAAF69", -"b. c #EEB065", -"n. c #E7B06C", -"m. c #EEB36B", -"M. c #F5B263", -"N. c #FBB461", -"B. c #E6B274", -"V. c #ECB574", -"C. c #E7B57B", -"Z. c #EAB77C", -"A. c #ECB97C", -"S. c #F2B770", -"D. c #F0BB7A", -"F. c #DBB485", -"G. c #DFB888", -"H. c #E4B984", -"J. c #EDBD82", -"K. c #E5BC8B", -"L. c #EABE8A", -"P. c #F0BE82", -"I. c #E0BF96", -"U. c #EDC089", -"Y. c #F0C28B", -"T. c #E5C194", -"R. c #E9C191", -"E. c #E4C39C", -"W. c #EBC699", -"Q. c #EBC99F", -"!. c #DFC3A0", -"~. c #DDCAAF", -"^. c #CFC7BD", -"/. c #D2CBB6", -"(. c #DBC8B1", -"). c #DBCDBB", -"_. c #E2C6A4", -"`. c #E6C8A5", -"'. c #EACBA5", -"]. c #E1C7A8", -"[. c #E3CBAD", -"{. c #EACCAA", -"}. c #EED1AC", -"|. c #E1CDB3", -" X c #E3CFB8", -".X c #E6D1B6", -"XX c #EBD2B3", -"oX c #E3D1BB", -"OX c #EAD6BB", -"+X c #EBD8BF", -"@X c #D3CDC2", -"#X c #D8CDC2", -"$X c #D0CECA", -"%X c #DDD3C4", -"&X c #D3D2CC", -"*X c #DDD5CB", -"=X c #CCD3D5", -"-X c #C9D7DF", -";X c #D2D4D6", -":X c #DEDAD4", -">X c #DDDCDB", -",X c #E2D4C2", -" c #575858", +", c #5B5C5B", +"< c #5F605E", +"1 c #60615F", +"2 c #5F6160", +"3 c #646464", +"4 c #676867", +"5 c #686967", +"6 c #6B6C6B", +"7 c #6F706F", +"8 c #6F7070", +"9 c #717372", +"0 c #777877", +"q c #7B7C7B", +"w c #80807F", +"e c #7F8080", +"r c #838484", +"t c #888987", +"y c #878888", +"u c #8B8B8B", +"i c #8F908F", +"p c #90908F", +"a c #8D8E90", +"s c #8F9092", +"d c #949595", +"f c #979896", +"g c #989897", +"h c #959698", +"j c #979899", +"k c #9A9B9C", +"l c #9FA09F", +"z c #9E9FA1", +"x c #9FA0A1", +"c c #A3A4A4", +"v c #A7A8A7", +"b c #A6A7A9", +"n c #A7A8A8", +"m c #ACADAD", +"M c #ADAFB1", +"N c #AFB0B3", +"B c #B3B4B6", +"V c #B7B8B7", +"C c #B6B7BA", +"Z c #B7B8BB", +"A c #BABABD", +"S c #BFC0BF", +"D c #BDBEC1", +"F c #BFC0C2", +"G c #C2C3C4", +"H c #C5C6C9", +"J c #C7C8CA", +"K c #CACBCC", +"L c #CECED1", +"P c #CFD0D1", +"I c #D3D4D4", +"U c #D6D6D8", +"Y c #D7D8D9", +"T c #DBDBDC", +"R c #E0DFDF", +"E c #E0E0DF", +"W c #DFDFE0", +"Q c #DFE0E0", +"! c #E3E4E4", +"~ c #E7E7E8", +"^ c #E7E8E8", +"/ c #EBEBEC", +"( c #EFEFF0", +") c #F0EFF0", +"_ c #EFF0F0", +"` c #F4F5F5", +"' c #F6F7F8", +"] c #F8F7F8", +"[ c #F7F8F8", +"{ c #FDFDFD", +"} c None", /* pixels */ -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX1 Z L >.N b b b b N >.( C > HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX4 L _ *.@.<.$.X.X...X.X.X.X.X.X...X.@.$.<.@.*./ G , HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX< L -.@.$.X...R R R T T T T W W W W W W T T T T R R W ..X.$.@.*.J HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXD -.%.X.W R T T W W W W W W W W W W W W W W W W W W W W W W T T R W X.%.+.A HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXS -.$.X.R T T W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W T T R X.$.-.C HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXF <.@.f R T W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W T R W #.<.A HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX[ <.X.f T W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W T R X.$.K HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX0.$...R T W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W E W W W W W W W T R ..%.G HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXS 1...R T W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ ~ E W W W W W W W W W T R X.1.A HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX3.X.d T W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ E W W W W W W W W W W T R @.2.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX7.5.f T W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ~ E W W W W W W W W W W W W T W %.z HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX3.X.s T W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W T R $.<.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX1...R W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ E E W W W W W W W W W W W W W R ..1.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX0 5.f T W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W T W 5.8 HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX8.$.s W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ` ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W T R %.N HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXi.#.R W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ` ` ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W R $.&.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXp.X.R W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ` ` ` ` ` ~ ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W R @.<.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXp.X.R W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ` ` ` ` ` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W R @.<.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXi.X.R W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ E ~ W R ~ ~ ~ ~ ~ ~ ` ` ` ` ` ` ` ` ` ` ~ ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W R @.| HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX] #.R W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ! s e t d ~ ` ` ` ` ` ` =.=.=.` ` ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W W R %.N HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXq %.R W W W W W W W W W W W W W W W W W W W W W W W W W W W W W W E W E ~ ~ ~ ~ y l.=XI.x.) p a =.` ` =.=.=.=.=.=.` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W R %.2 HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX5 5.d W W W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ~ ~ t (.jXVXNXuX@XF.W ` =.:.` W =.:.=.=.` ` ` ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W T R 5.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX1.f T W W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ~ ~ R Q eXDXSXSXDXgX#Xa ` =.=.;.q.W a a R ` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W T W %.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX3...T W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ~ ~ ~ ` a a.NXSXGXGXAXNXV.a :.:.f c.tX*XE.n.9.R ~ ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W W W T @.@.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXD #.R W W W W W W W W W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ` t H.VXSXGXGXDXmXy.f :.:.a I.hXBXCXNXiX^.' W ` ~ ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W W W R %.g HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX5.d W W W W W W W W W W W W W W W W W W W W W W W W W E ~ W ~ ~ ~ ~ ~ ~ ~ ~ ~ ` ` ` i |.CXGXGXGXCX3X~ ` :.:.R %XCXSXGXAXNX>XW ~ ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W W R 5.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX2.W T W W W W W W W W W W W W W W W W W W W W W W W W ~ ~ ~ s t e a W ~ ` ` ` ` ` ` W ! eXFXGXGXSXVX[.d :.:.~ w.uXFXGXGXSXVXW.a ` ` ` ` ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W W T ..@.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHX9 $.R W W W W W W W W W W W W W W W W W W W W W W E W ~ ~ ~ y F./.B.9.T t t a ~ =.` =.a a.hXDXGXGXSXNXA.d :.e.R v.NXSXGXGXSXNXm.a =.` ` ` ~ ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W W W R %.= HXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXHX6.d W W W W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ W i &XjXNXfX:X].B.q.T t a d e K.VXSXGXGXDXaXd.W e.e.d E.VXSXGXGXDXvXw.W =.` ` ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W W W W W %.HXHXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHXK X.T W W W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ~ a ) uXDXSXFXFXCXNXfX:X_.B.q.r .XFXGXGXGXCX3X=.=.e.,.~ %XCXGXGXGXCX1XW ` =.` ` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W W T $.m HXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHXHX5.R W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ~ ~ t x.NXSXGXGXGXSXSXDXFXCXNXmX8XcXSXGXGXGXCXW.e :.e.=.t.uXFXGXGXSXVXE.d :.=.=.` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W W W R %.HXHXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHX^ X.T W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ~ ~ ~ ` t T.VXSXGXGXGXGXGXGXGXSXSXFXGXGXGXGXGXGXFX}.9.' W e v.VXSXGXGXSXNXm.d :.=.=.=.` ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W W W W T @.P HXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXHX1.R W W W W W W W W W W W W W W W W E E ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ s ;XNXAXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXSXFXNX>X|.V.XXFXGXGXGXFXbXy.~ :.:.=.=.` ` ` ` ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W W W R %.HXHXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHXH X.T W W W W W W W W W W W W W W E E ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ` ` R ' $XsXNXVXFXSXSXGXGXGXGXGXGXGXGXGXGXGXGXGXGXSXFXCXCXFXSXGXGXGXCXOXa :.:.:.=.=.=.` ` ` ~ ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W W W T $.c HXHXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXHX1.R W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ` ` ` ` ` ` ~ t.V.`.5XVXFXSXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXFXXFXGXGXGXGXGXGXGXSXCX{.e.P.'.2XvXNXBXDXSXGXGXGXGXGXGXGXGXGXSXDXjX~.y W =.` ` ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W W W @.HXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHX: 1.R W W W W E ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ` ` ` ` ` ` =.=.=.=.=.:.:.:.:.:.:.:.:.e.e.e.~ s.fXDXGXGXGXGXGXGXGXSXNXD.f =.=.,.M.L.oXaXVXDXSXGXGXGXGXGXGXGXGXGXAXVX(.t ~ ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W R %. HXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXl #.T W W W E ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ` ` ` ` ` ` =.=.=.=.:.:.:.:.:.:.:.:.:.e.e.e.e.r.W H.NXSXGXGXGXGXGXGXGXDXzXg.r.f.f.f.r.=.=.g.`.fXBXAXGXGXGXGXGXGXGXGXGXAXjXH.t =.` ` ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W T $.6 HXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHX~ ..W W W W E ~ ~ ~ ~ ~ ~ ~ ~ ` ` ` ` ` ` =.=.=.=.=.:.:.:.:.:.:.:.e.e.e.e.e.e.e.r.W |.CXGXGXGXGXGXGXGXGXBX1X,.f.f.f.f.h.h.f.,.~ d.3XVXAXGXGXGXGXGXGXGXGXGXDXsX' f ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W ..~ HXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHX$.R W W W W W E ~ ~ ~ ~ ~ ` ` ` ` ` ` =.=.=.=.=.=.:.:.:.:.:.:.:.e.e.e.e.e.r.r.r.,.w.>XFXGXGXGXGXGXGXGXSXNX`.=.f.h.h.h.h.f.f.f.f.=.~ ,XVXSXGXGXGXGXGXGXGXGXSXVXT.y ` ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W W R $.HXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXX %.T W W W W W E ~ ~ ~ ~ ~ ` ` ` ` =.=.=.=.=.:.:.:.:.:.:.:.:.e.e.e.e.e.e.r.r.r.u.=.x.fXDXGXGXGXGXGXGXGXSXmXA.,.h.h.h.k.k.h.f.f.f.f.:.~ 5XFXGXGXGXGXGXGXGXGXGXCX:XW ~ ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W W T $.. HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHX8 $.T W W W W W W E ~ ~ ~ ~ ~ ` ` ` =.=.=.:.:.:.:.:.:.:.:.e.e.e.e.e.r.r.r.r.r.u.u.~ K.NXSXGXGXGXGXGXGXGXDXzXj.r.k.k.k.k.k.h.f.f.f.f.f.W V.VXSXGXGXGXGXGXGXGXGXDXuXw.f ` ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W T $.3 HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXY ..W W W W W W W E ~ ~ ~ ~ ~ ~ ` ` ` =.=.=.:.:.:.:.:.e.e.e.e.e.e.r.r.r.r.u.u.u.u.~ |.CXGXGXGXGXGXGXGXGXBX2Xr.f.k.k.k.k.k.k.h.f.f.f.f.,.d.bXFXGXGXGXGXGXGXGXGXDXfXd.d =.` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W O.P HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXO.W W W W W W W W W ~ ~ ~ ~ ~ ~ ` ` ` ` =.=.:.:.:.:.e.e.e.e.r.r.r.r.r.r.u.u.u.u.r.w.>XFXGXGXGXGXGXGXGXSXNX'.,.k.k.k.k.k.k.k.h.h.f.f.f.e.y.kXFXGXGXGXGXGXGXGXGXDXfXg.d =.` ` ` ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W W W W W O.HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHX$.R W W W W W W W W E ~ ~ ~ ~ ~ ` ` ` ` =.=.=.:.:.:.:.e.e.r.r.r.r.u.u.u.u.u.u.f.=.b.fXDXGXGXGXGXGXGXGXSXmXJ.r.k.k.k.k.k.k.k.h.h.f.f.f.:.s.mXFXGXGXGXGXGXGXGXGXDXpXy.R =.` ` ` ~ ~ ~ ~ ~ E E W W W W W W W W W W W W W W W W W $.HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHX1.R W W W W W W W W W ~ ~ ~ ~ ~ ~ ` ` ` =.=.=.:.:.:.:.e.e.e.r.r.u.u.u.u.u.u.u.f.=.K.NXSXGXGXGXGXGXGXGXFXxXM.u.k.k.k.k.k.k.k.k.h.f.f.k.~ K.VXSXGXGXGXGXGXGXGXGXCX5X=.~ =.=.` ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W W W W $.HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHX+ $.T W W W W W W W W W W ~ ~ ~ ~ ~ ~ ` ` ` =.=.=.:.:.:.:.e.e.e.r.r.u.u.u.u.f.f.f.=.|.CXGXGXGXGXGXGXGXGXFXXFXGXGXGXGXGXGXGXGXFX9XA.b.u.r.r.u.u.h.h.h.u.r.O.w.:XCXSXGXGXGXGXGXGXGXGXSXhXL.a :.=.=.=.` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W T $.* HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXV X.T W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ` ` ` =.=.=.:.:.:.:.e.e.e.r.r.u.u.u.u.f.,.b.fXFXGXGXGXGXGXGXGXGXSXFXVXpX*X[.R.V.M.g.d.d.g.b.T.pXCXSXGXGXGXGXGXGXGXGXGXDXpXe.~ :.:.=.=.` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W W T $.; HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHX| O.T W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ` ` ` ` =.=.:.:.:.:.:.e.e.r.r.u.u.u.u.f.=.K.NXSXGXGXGXGXGXGXGXGXGXGXSXFXFXBXNXmXuX>X3X3XyXmXVXFXSXGXGXGXGXGXGXGXGXGXAXhXE.d :.:.:.=.=.` ` ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W T @.h HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXc @.T W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ` ` ` ` =.:.:.:.:.:.e.e.e.r.r.u.u.u.u.=.|.BXGXGXGXGXGXGXGXGXGXGXGXGXGXGXSXSXSXFXFXFXFXFXSXSXGXGXGXGXGXGXGXGXGXGXAXNX>X~ =.e.:.:.:.=.` ` ` ` ~ ~ ~ ~ ~ ~ E W W W W W W W W W W W W W W @.h HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXk @.T W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ` ` ` =.=.:.:.:.:.e.e.e.r.r.r.u.u.r.w.>XFXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXSXZXNXeXe.~ e.:.:.:.:.=.=.=.` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W @.h HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXc @.T W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ` ` ` =.=.=.:.:.:.:.e.e.e.r.r.u.u.=.x.fXFXGXGXGXGXGXGXGXGXGXFXFXSXSXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXFXCXfXoX:.~ r.e.:.:.:.:.:.=.` ` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W W @.h HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXc @.T W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ` ` ` ` =.=.:.:.:.:.:.e.e.r.r.r.u.~ K.NXSXGXGXGXGXGXGXGXSXZX6XkXmXNXBXDXAXSXGXGXGXGXGXGXGXGXGXGXGXGXGXGX0X'.S.~ =.u.e.e.e.:.:.:.:.=.=.` ` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W W W @.h HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXk @.T W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ` ` ` ` =.=.:.:.:.:.e.e.e.r.r.u.~ |.CXGXGXGXGXGXGXGXGXFX4X,.k.D.Q.,XkXmXNXDXSXSXGXGXGXGXGXGXGXGXGXGXGXXFXGXGXGXGXGXGXGXSXVX{.,.f.u.r.u.N.J.{.5XNXBXAXSXGXGXGXGXGXGXGXGXGXFXMXH.W r.u.r.e.e.e.:.:.:.:.=.=.` ` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W W T @.h HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXo.O.T W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ` ` ` =.=.=.:.:.:.:.e.e.e.r.O.s.fXFXGXGXGXGXGXGXGXSXmXJ.r.N.N.N.N.h.r.r.f.J.1XhXBXAXGXGXGXGXGXGXGXGXSXDXjX!.W e.u.r.e.e.e.:.:.:.:.=.=.` ` ` ` ~ ~ ~ ~ ~ E W W W W W W W W W W T @.g HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXB X.T W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ` ` ` =.=.:.:.:.:.:.e.e.r.W H.NXSXGXGXGXGXGXGXGXDXuXM.u.k.k.N.N.N.N.N.h.,.e.D.>XNXSXGXGXGXGXGXGXGXGXSXZXjXE.W r.r.e.e.e.:.:.:.:.=.=.=.` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W W T $.- HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXl @.T W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ` ` ` =.=.=.:.:.:.:.e.e.r.W |.CXGXGXGXGXGXGXGXGXBX2Xr.h.k.k.k.k.k.k.k.k.k.h.,.,.|.NXZXGXGXGXGXGXGXGXGXGXZXgXV.~ u.e.e.e.:.:.:.:.:.=.=.` ` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W T $.% HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHX@ $.T W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ` ` ` ` =.=.:.:.:.:.e.:.' >XFXGXGXGXGXGXGXGXSXNX{.,.k.k.k.k.k.k.k.k.k.k.k.k.u.~ `.NXSXGXGXGXGXGXGXGXGXSXCX>X=.e.r.r.e.e.:.:.:.:.:.=.=.` ` ` ~ ~ ~ ~ ~ ~ W W W W W W W W W T $.. HXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHX%.R W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ` ` ` ` =.=.:.:.:.:.e.~ s.fXFXGXGXGXGXGXGXGXSXNXJ.,.k.k.k.k.k.k.k.k.k.k.h.h.k.u.O.2XCXGXGXGXGXGXGXGXGXGXAXhXV.~ u.r.e.e.e.:.:.:.:.=.=.=.` ` ` ~ ~ ~ ~ ~ W W W W W W W W W W $.HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHX$.R W W W W W W W W W W W W W W W W W E ~ ~ ~ ~ ~ ~ ` ` ` ` ~ :.:.:.:.e.f Z.VXSXGXGXGXGXGXGXGXDXzXM.r.k.k.k.k.k.k.k.h.h.h.h.f.f.k.=.V.NXSXGXGXGXGXGXGXGXGXSXVX`.W r.e.e.e.e.:.:.:.:.=.=.=.` ` ` ~ ~ ~ ~ ~ ~ E W W W W W W W W $.HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXO.W W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ` ` =.~ Q a a W =.=.t XCXGXGXGXGXGXGXGXGXBX2Xr.f.k.k.k.k.k.k.h.h.h.h.f.f.f.f.r.y.kXFXGXGXGXGXGXGXGXGXGXBX,X~ :.e.e.e.:.:.:.:.:.:.=.=.` ` ` ` ~ ~ ~ ~ ~ E W W W W W W W ~ ..HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXI O.W W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ` a z.-X_.B.q.! u C.NXSXGXGXGXGXGXGXGXSXNX'.=.h.h.k.k.k.h.h.f.f.f.f.f.f.f.f.r.w.5XFXGXGXGXGXGXGXGXGXGXCX2X=.:.e.:.:.:.:.:.:.:.:.=.=.=.` ` ` ` ~ ~ ~ ~ ~ E W W W W W W O.P HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXk @.T W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ~ ~ t ).jXVXNXaX2X1XBXDXSXGXGXGXGXGXGXGXSXmXA.:.h.h.h.h.h.f.f.f.f.f.f.f.f.f.f.,.d.vXFXGXGXGXGXGXGXGXGXGXCX1X` =.:.:.:.:.:.:.=.=.=.=.=.=.` ` ` ` ~ ~ ~ ~ ~ ~ W W W W W T $.; HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXo %.T W W W W W W W W W W W W W W W W W W W W ~ ~ ~ ` y q.fXZXSXSXFXFXFXSXSXGXGXGXGXGXGXGXGXFXxXj.r.f.h.h.h.f.f.f.f.f.f.f.f.u.u.f.W B.NXSXGXGXGXGXGXGXGXGXSXBXoXW :.:.:.:.:.:.=.=.=.=.=.` ` ` ` ` ` ~ ~ ~ ~ ~ ~ W W W W W W %. HXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHX$.R W W W W W W W W W W W W W W W W W W W E ~ ~ ~ ` e !.CXSXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXFX+Xd ,.f.h.h.h.f.f.f.f.f.f.u.u.u.f.,.T :XFXGXGXGXGXGXGXGXGXGXSXNXE.f :.:.:.:.:.=.=.=.=.` ` ` ` ` ` ~ ~ ~ ~ ~ ~ ~ ~ ~ W W W W R $.HXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHX~ ..W W W W W W W W W W W W W W W W W W W W E ~ ~ a _ aXFXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXFX7XV.s.:.=.:.,.u.f.f.f.f.u.u.u.r.~ s ~.VXSXGXGXGXGXGXGXGXGXGXAXhXV.d :.:.=.=.=.=.=.` ` ` ` ` ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ W W W W O.E HXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXg $.T W W W W W W W W W W W W W W W W W W W E ~ ~ e G.hXAXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXSXFXVXpX*X_.Z.x.t.:.` ~ ~ ~ ~ ~ ' x.*XVXSXGXGXGXGXGXGXGXGXGXGXDXuXw.W :.=.=.=.=.` ` ` ` ` ` ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ W W W W W W T $.; HXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHX %.R W W W W W W W W W W W W W W W W W W W W ~ d T qXgXBXFXSXSXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXSXFXFXBXNXaX>X,X[._.T.T.E.|.:XNXCXSXGXGXGXGXGXGXGXGXGXGXSXVX Xd =.=.=.=.` ` ` ` ` ` ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ E W W W W W W R %.HXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHX@.W W W W W W W W W W W W W W W W W W W W W ~ R ` s.H.oXkXNXNXCXFXSXSXGXGXGXGXGXGXGXGXGXGXGXGXGXGXSXSXDXFXCXCXBXVXVXBXCXFXSXSXGXGXGXGXGXGXGXGXGXGXGXAXhXm.a :.` =.` ` ` ` ` ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ W W W W W W W W W W @.HXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXx @.T W W W W W W W W W W W W W W W W W W W W ~ ~ y t a _ g.L.oXkXhXVXCXFXSXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXSXGXSXSXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXSXBX:Xf ~ ` ` ` ` ` ` ` ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ E W W W W W W W W W T $.h HXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHX%.R W W W W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ d a t a ' s.R.oXnXDXSXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXGXZXhXg.y =.` ` ` ` ` ~ ~ ~ ~ ~ ~ ~ ~ ~ E ~ E W W W W W W W W W W R %.HXHXHXHXHXHXHXHXHXHXHX", -"HXHXHXHXHXHXHXHXHXHXHXO.~ W W W W W W W W W W W W W W W W W W W W W ~ ~ ~ ~ ~ ` ` ~ W a a d ! oX6WHCBBCCCCCCZCZBJ`{{{[{][[[[{I%oooooooo}}}}}}}}}}}}", +"}}}}}}}}}}} ooooooo+m[[[[[{[{{{{`HBCCCCCZCCCCBDL~[E%oXr{{{{{{{{{{{{{{{{{{H@OXqCNCCCCCCCCCCCCZBJ'{{{{{[]{[[[moooooooo }}}}}}}}}}}", +"}}}}}}}}}}}oOoooooow`][{]{[{{{{`JBCCCCCCCCBZJW`{{{ZoooB{{{{{{{{{{{{{{{{{{cXoOhDBCCCDCCCCCZZCCCBJ'{{{{[{][''`rXooooooo}}}}}}}}}}}", +"}}}}}}}}}}oooooooo-T[][[[[{{{{]LCZCCCCCCAHY({{{{{{p.o$I{{{{{{{{{{{{{{{{{]0Xo%MDBCCCCCCCCCCCCCZCNK{{{{{[{[''{T-oooooooo}}}}}}}}}}", +"}}}}}}}}}}OooOoooon{'[]]{[{[{{UBCCCCBCGI/[{{{{{{{`4Xo5`{{{{{{{{{{{{{{{{{~:o.3DBBDCCCCCCDCCZCBCDL~{{{{{[['[[[{noooooooo}}}}}}}}}}", +"}}}}}}}}}XooooooX6^['[[{{{{{{WBCCCBDL!'{{{{{{{{{{Y$o.u{{{{{{{{{{{{{{{{{{G@oXeDBDBCCCCCCCZBBDJ!`{{{{{{{{{{'[[[^5ooOoooo.}}}}}}}}}", +"}}}}}}}}}ooooooo@D{'[[{[{{{{/ACBCHW){{{{{{{{{{{{{mXooZ{{{{{{{{{{{{{{{{{{goo+zDCCCCCDCCBBZHY({{{{{{{{{]{{{[[[[{A@ooooOoo}}}}}}}}}", +"}}}}}}}} ooooooo9`'''{[[[{{'HBGU(]{{{{{{{{{{{{{{[r o*R{{{{{{{{{{{{{{{{{'0Xo-BACCCDBBBBDI^[{{{{{{{{{{{{{{{[{['[`9ooooooo }}}}}}}}", +"}}}}}}}}ooooooo+F{'[[[{{{{{!K~[{{{{{{{{{{{{{{{{{/:XX7`{{{{{{{{{{{{{{{{{!-oX6AZCCCNBAKW'{{{{{{{{{{{{{{{{{{[[[''{Foooooooo}}}}}}}}", +"}}}}}}}}oooOoO 7`[[[[[[{{{{[{{{{{{{{{{{{{{{{{{{{K+OXg{{{{{{{{{{{{{{{{{{A+ootACBBCHT`{{{{{{{{{{{{{{{{{{{{{{[{{[[`8 oooooO}}}}}}}}", +"}}}}}}}ooOooooXV{[[[{[{{{{{{{{{{{{{{{{{{{{{{{{{{c ooG{{{{{{{{{{{{{{{{{{dXo@xZBDI~[{{{{{{{{{{{{{{{{{{{{{{{{{{[['{CooooOOoo}}}}}}}", +"}}}}}}}Oooooo.3/[[[[[{{{{{{{{{{{{{{{{{{{{{{{{{{`9Xo-!{{{{{{{{{{{{{{{{{`5Xo:CL!'{{{{{{{{{{{{{{{{{{{{{{{{{{{{[[''{^1ooooooo}}}}}}}", +"}}}}}} OOooooXl{[[{{[{{{{{{{{{{{{{{{{{{{{{{{[^IC%o 9[{{{{{{{{{{{{{{{{{T$oXt){{{{{{{{{{{{{{{{{{{{{{{{{^!{{{{][{[[{lXoooooo }}}}}}", +"}}}}}}Xoooooo$Y[][[[{{{{{{{{{{{{{{{{{{{{{{(YHAAd+o k{{{{{{{{{{{{{{{{{{VoooV{{{{{{`{{{{{{{{{{{{{{{{(TJAC~{{{{[][[[U$oooOooo}}}}}}", +"}}}}}}Ooooo+.9'']][{{{{{{{{{{{{{{{{{{{{`WJABCCA0oo@K{{{{{{{{{{{{{{{{{[y o&T{{{/Grc{{{{{{{{{{{{{`!KDBCCBL{{{]{[{[''0 oOoooo}}}}}}", +"}}}}}}oOoooo m{'{[[[]{{{{{{{{{{{{{{{'~KACCCCCCB2oo:^{{{{{{{{{{{{{{{{{`,oX6']Il3@.V{{{{{{{{{{[^UDCBCCCCCZ/{{{{[]]'{m oooooo}}}}}}", +"}}}}}.oooooo#T[[[{{[{{{{{{{{{{{{{[/IFCCCZCCCCAb%o r[{{{{{{{{{{{{{{{{{I$oorB9$oXo&T{{{{{{{[(TGDBCCCCZCCCBU{{{{{]{[[T#ooooooX}}}}}", +"}}}}}oooooo 6`[[[[]{{{{{{{{{{{{)THCBBCCCCCCZCDaoooM{{{{{{{{{{{{{{{{{{mooo@o oooX8`{{{{{)!HCBCCBCCZCCCCCCG]{{[[{[[[`6 ooooOo}}}}}", +"}}}}}+oOooo g[[[[]{{{{{{{{{{'!KACCCCZCCCCZCCCA0oo#I{{{{{{{{{{{{{{{{{{e oooooooood{{{[~PDBBCCCCCCZCCCCCCCZ^{{{{[[[[[g ooOoo+}}}}}", +"}}}}}oooooooS{[[{{{[{{{{{[/PFCBCCCCCCCCCCCZCCB>o.3({{{{{{{{{{{{{{{{{^:ooooo$-oo+F{/YGCVCCCCCACCCZCZCCZCCBU{{{{{[['{Sooooooo}}}}}", +"}}}} oooooo-R[[[{[{{{{{(THBBCCCZCACZCCCCCCCCZc@OXu{{{{{{{{{{{{{{{{{{K@oo@4kI0 o&HLCBCCZCCCCCCACCCZCCCCCCBH]{{{{][[[R-XooOoo }}}}", +"}}}}oooooo 5`[[[][{[{'LABCCCCZCCCCCCCZCZCCCCAuOoXZ{{{{{{{{{{{{{{{{{{g -tG`{/-oo,CBCCCCCCCCCCCCCCCCCZCCCBAP[{{[[{{[[)5Xoooooo}}}}", +"}}}}ooooooXt''[{[{{{{!BCCCCZCCCCCCCCCZCCCCCCZ9Xo%T{{{{{{{{{{{{{{{{{{cn!{{{{G@oXqDCCCCCCCCCCCCCCACCCCCAHT`{{{{{[{[[[]rXoooooo}}}}", +"}}}}oOoooooc['[[]{{{{IBCZCCCCCZCCCZCCCCZCBAJKooX*T{{{{{{{{{{{{{{{{{'9Xo1){{{{{{{{{{[^PGACCCDZDAAAAAAAAZZCCCCCCB~{{{[{[{[`0ooooooo}}}}", +"}}}}XoooooX1/][{{[{[{'GVCCZCCCCCAeooOoXoOoX6'{{{{{{{{{{{{{{{{{!-OX7GJJGJJHKKGBcddhhhhhhhdddhhhdhhMACCCCAHT{{{][{[[[/3.oooooX}}}}", +"}}}} ooOOoX$I][]]{{{{{JBZCCCCCCCC3oooOooo+.d{{{{{{{{{{{{{{{{{{A+O++@@#@@#@@@@+o@o@@o@@O@@+@O@@@o#cZBBGI/[{{{{{{][[]I@ooooOo.}}}}", +"}}}}}ooooooXB{[[['{{{{WBCCCCCCCAM$oooX@@oooG{{{{{{{{{{{{{{{{{[d oOOooooooooooooooooooooooooooooo>MAK~'{{{{{{{{[{[[{Booooooo}}}}}", +"}}}}}OOooo+ r[[[{{]{{{(ACCCCCCCAho.o=9h3Xo*!{{{{{{{{{{{{{{{{{`4 XXXXooXoooXoo.Xooo.ooXooo.Xoooo.qW`{{{{{{{{{[{{[{[[r oooooO}}}}}", +"}}}}}ooooOoX,/['''[{{{{HBCCCZCCD9o3aMKL-o 0[{{{{{{{{{{{{{{{{{'FVVVVVVVVVBBCVVVVBVVVVBVVVVCBCro+XC{{{{{{{{{{{{{[{[]^,.oooooo}}}}}", +"}}}}}Xoooooo+J{'[[{[{{{WCZCZCCACscGY~]FOo c{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{tXo$T{{{{{{{{{{{{[[[[{JOoOoooO }}}}}", +"}}}}}}oooooo d[[[[{[{{{'DBCCCCBAI~`{{{gXo@K{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{^3o 6'{{{{{{{{{{{{[{[[{d oooooo}}}}}}", +"}}}}}}ooooooX3/['{'{[{{{YBCBAHT){{{{{]7Xo,/{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{I$o d{{{{{{{{{{[{{{[[[/1.ooOooo}}}}}}", +"}}}}}}Xoooooo@G{[[[{{{[{)DGU/{{{{{{{{T%o r[{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{noooG{{{{{{{{{{{]['[[{G+OoOOoOX}}}}}}", +"}}}}}}}oOooOo t[[[[[[{{{{)'{{{{{{{{{{Vo+.n{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{[woX-~{{{{{{{{{{{{{[[][r oooooo}}}}}}}", +"}}}}}}}ooooooo%T{''[{[{{{{{{{{{{{{{{{dXo@I{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{^,oX0[{{{{{{{{{{{[[[[[T%XOooooo}}}}}}}", +"}}}}}}}oooOooo g{[[[]{[{{{{{{{{{{{{{`5X.<`{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{G@oon{{{{{{{{{{{[{{[[{g OooooOo}}}}}}}", +"}}}}}}}}oOooooX-~['][{[{{{{{{{{{{{{{U%O y{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{kXo#K{{{{'){{{{{{][[[~-XOooooO}}}}}}}}", +"}}}}}}}}ooooooooc[[''{[{{{{{{{{{{{{{B+oXV{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{]9.o,/{[^IG~{{{[{[][[[cXOooOooX}}}}}}}}", +"}}}}}}}}}ooOooOo,![[]{[{{{{{{{{{{{{{uXo$T{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{!-XXr(WJZBI{{{{[{[[[[!:o+ooooo}}}}}}}}}", +"}}}}}}}}}ooooooook[[[[{[[{{{{{{{{{{!3oX5/''[[][[[[[[[['[[[[[[][][[[[[[]][][[[[]][[[[[[[[[A+ooaGBBVH'{{{{{[[[[{koooooooo}}}}}}}}}", +"}}}}}}}}}}ooooooo*I[[[[{{{{{{{{{[~Ic#oo-9989899998799989999899978999997789999897899989879,oo@cZCCD/{{{{]{[[[[I-ooooO+o}}}}}}}}}}", +"}}}}}}}}}}oooooooor'[[[[[[{{{{{YGCZroOooX......X....XX..X..X..XX...X.XXX...X..XX...XX...XXoo>BZCA~{{{{[{][[[`r.ooooooo}}}}}}}}}}", +"}}}}}}}}}}}ooooooo@Z{[[[{{{{[{{TBBZ5 oooXoooooXooXoooXXXoo.XoXXXo.XoXXXoo.XoXXXoooooXoooXoo 9ACCW{{{{{[[]{[{Z@ooooooo}}}}}}}}}}}", +"}}}}}}}}}}}OOooOoOo,W[[[][{[{{{{TCB8,2,,<<,<<<<<3,,,379777977779799797977997799953<<<,1,112,jCCT{{{{{][{][[E,oooooOoO}}}}}}}}}}}", +"}}}}}}}}}}}}Ooooooo r`'[]{]{{{{{{YBBCCCCVCCBCCBBBCJT/`''`''`''''''`'`'`''''`])!IFCCCVCCCVVVBCCT{{{{[{{][][`rXooOooo+}}}}}}}}}}}}", +"}}}}}}}}}}}}.Oooooooon{'][[][{{{{{TCCVCZZVZZCBVFI/{{{{{{{{{{{{{{{{{{{{{{{{{)TGAVCCVZVZCZCZCCZW{{{{{{[[]{[]mooooooooX}}}}}}}}}}}}", +"}}}}}}}}}}}}}ooooOoOo#J{'[[{{{{{{{{WABCCCBBBAL~[{{{{{{{{{{{{{{{{{{{{{{{{`!KDBCCCCZZCCZCZZCBD!{{{{{{]{[['{J$oooooooo}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}Oooooooo,R['[[[[{[{{{{~DBBBDHW'{{{{{{{{{{{{{{{{{{{{{{{{'~UDCBCCCZCCCCCCCCCCBF/{{{{{][{'''{W,XOoooOo+}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}Xooooooo.6^[[['{[{{[{{{(KFU({{{{{{{{{{{{{{{{{{{{{{{{{/THBNCCCCCCCZCZCZZCCCCL){{{{][{][[[[~8 oooooooo}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}OooOoooo w/[['[[[{]{{{{{'{{{{{{{{{{{{{{{{{{{{{{{{`!KABCDBCCCCCCCZCCCCCCCDW]{{{{{{{]][[{/q ooOooooo}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}oOoOoooooy({'[[[{[{{{{{{{{{{{{{{{{{{{{{{{{{{{`~PGCCCCDBBCCCCCCCCZZZCCZL/{{{{[{{{[[[[[/tooooooooo}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}Oooooooooy/{'[['{]{{{{{{{{{{{{{{{{{{{{{{{{/YHZCBCCCCCBDCCCCCCCCCBBZJ~{{{{{{{{][[[[{`tooooooooO}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}XooOoooooor/['[{''{'{{{{{{{{{{{{{{{{{{{(WHDBCCCCZCCCCBDCCDBCCCCBCJ!]{{{{{{][{]{[[[^rooooooooo.}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}.oooOooooo0!{[[[]'{[[{{{{{{{{{{{{{{'!LDBBCCCCCCCCCCCCCCCCCCCBZL~]{{{{]{{]{{[[[[{!0oooooooooo}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}XOooooooo 4I{[[[[[{{{]{{{{{{{{{{`PABBCCCCCCZCCZCCCCCCCBBBDGY({{{{{{{][{[{[[[[{Y4 oooOoooOX}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}ooooooooo.-A[{[[[[[[{{[{{{{{{{{(TLFZCBBBBBCBCBCBBBBBZFLW({{{{{{[{{{{{[[[[[[[A- ooOoooooo}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}ooooooooO.@g/['[[[{][[{[{{{{{{{{{'(!YIKGFDDDDDHKIWQ)'{{{{{{{{{{{{]][{[[[[/g@Xooooooooo}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}.oooOoooooX6I[[[[['{]{{[[{[{{{{{{{{{{{{]]`''][{{{{{{{{{{{]]{]{[]{[[[[[[I9.ooooooooo.}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}.ooooooOooX=c^{[['[[{{{[{{{{{{{{{{{{{{{{{{{{{{{{{{{][[{{{[{{[][[[][{^c%XooooooOoo.}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}oOooooooOooo6S`[']''[[]{{[[{{[[{{{{{{{{{{{{{{{]{{{{{{{]{{[[[[[[[[`S6oooooooOoooo}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}} ooooooooooX@wK'{[[[[[[][{{[[{{]{]{][{{{{{{{{{{[{]{[{{[[[{]''{'Kw@XoooOoooooo }}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}oOooOooooooX#wJ`{[[[[[[[[{]{]{{{[{{{]{][{[[{'{'{'{'[[[[[[[`Jr$XoooOooooooo}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}.oooooooooOooO9V/[{'[[[[[[{[[[{]{[{['{[[{[[[[[[[[[[''{[/Z9+Xooooooooooo.}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}} ooooOoOooooo o,jL`{{][[[[[][[[[[[][[[[[[[[[{[[[{[{`Kg,o ooooOooOoOoo }}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}oooooooOoooooX.@4gH~[{[{[[[[[[[]][[[[[[[][{{['^Jk5# ooooooOooooooo}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}} Ooooooooooooooo O;qcGT/`[{{{{{{{{{{{{]'/TGc0:o .oooooooooooooo }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}XooooooooooooOOXX .O&30icmmBBBVVBmmcu03&oX XoooOooooooooooo.}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}ooooooooo+ooooOOooX..XX.oooOooooXXXXXooO+ooooooooooooOoo}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}ooooooooooXOXOooooooOoooooooooooooooooooooOooooooooo}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}} XooooOoOooOoOooOooOoooooooooooOooooOoooooooooo }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}XooooOooooooooooOoooOooOooooOooooooOoooOoX}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}XoOOoooOOoOoooooooOoooOooooo+oooo+o }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}} .oOoooooooOooooooooooooooooX }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}} XoOooooOooooOooooX }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}} . .. . }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}", +"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}" }; diff --git a/share/pixmaps/bitcoin16.png b/share/pixmaps/bitcoin16.png index 5537479095c62..55b8f4d89d7fe 100644 Binary files a/share/pixmaps/bitcoin16.png and b/share/pixmaps/bitcoin16.png differ diff --git a/share/pixmaps/bitcoin16.xpm b/share/pixmaps/bitcoin16.xpm index 40a0624ac72a6..f5becf54fdd93 100644 --- a/share/pixmaps/bitcoin16.xpm +++ b/share/pixmaps/bitcoin16.xpm @@ -1,181 +1,150 @@ /* XPM */ static char *bitcoin__[] = { /* columns rows colors chars-per-pixel */ -"16 16 159 2", -" c #CA7C1E", -". c #CB7D1E", -"X c #D1811E", -"o c #D0801F", -"O c #D1801F", -"+ c #D3821F", -"@ c #D7831F", -"# c #EE8D18", -"$ c #F4931F", -"% c #D78625", -"& c #D88520", -"* c #D98521", -"= c #D98620", -"- c #D78B2D", -"; c #DF8D2A", -": c #DF8F2F", -"> c #DF943B", -", c #D8913C", -"< c #D8923E", -"1 c #DF953E", -"2 c #E28B23", -"3 c #E38B23", -"4 c #EA9023", -"5 c #EB9023", -"6 c #ED9122", -"7 c #ED9123", -"8 c #EE9123", -"9 c #EE9223", -"0 c #F39421", -"q c #F19423", -"w c #F39523", -"e c #F79521", -"r c #F59422", -"t c #F49623", -"y c #F69622", -"u c #F79623", -"i c #F09324", -"p c #F19424", -"a c #F19525", -"s c #F49624", -"d c #F59625", -"f c #F49725", -"g c #F79624", -"h c #F79724", -"j c #F69725", -"k c #F79725", -"l c #F69726", -"z c #F79726", -"x c #F89621", -"c c #F89722", -"v c #F89723", -"b c #F89724", -"n c #F89824", -"m c #F89825", -"M c #F99825", -"N c #F89925", -"B c #F89926", -"V c #F89927", -"C c #F99927", -"Z c #F0972E", -"A c #F7992A", -"S c #F79A2B", -"D c #F79B2C", -"F c #F69A2D", -"G c #F79D2F", -"H c #F89929", -"J c #F89A28", -"K c #F89A29", -"L c #F99A29", -"P c #F99B29", -"I c #F89A2A", -"U c #F89A2B", -"Y c #F99B2B", -"T c #F89B2C", -"R c #F89C2C", -"E c #F99C2D", -"W c #F99C2E", -"Q c #F89D2E", -"! c #F99D2F", -"~ c #E29335", -"^ c #E49639", -"/ c #E2983F", -"( c #F79F35", -") c #F99E31", -"_ c #F89E32", -"` c #F99E32", -"' c #F9A033", -"] c #F9A035", -"[ c #F9A135", -"{ c #F9A036", -"} c #F9A136", -"| c #F9A137", -" . c #F3A03F", -".. c #F7A43F", -"X. c #F8A139", -"o. c #F9A23A", -"O. c #FAA33B", -"+. c #FAA43E", -"@. c #FAA43F", -"#. c #EF9F41", -"$. c #EEA244", -"%. c #ECA34B", -"&. c #F8A440", -"*. c #F9A541", -"=. c #F9A644", -"-. c #F9A947", -";. c #F0A349", -":. c #F5A648", -">. c #F1A74E", -",. c #F7AA4F", -"<. c #E4A458", -"1. c #E4A55B", -"2. c #E8A95E", -"3. c #F2A950", -"4. c #F4AA52", -"5. c #FBAF55", -"6. c #E4A860", -"7. c #EAAC63", -"8. c #EBAF68", -"9. c #F2AF61", -"0. c #EBB16C", -"q. c #F6B568", -"w. c #E3AF71", -"e. c #EBBE89", -"r. c #E0BC93", -"t. c #E3C199", -"y. c #E6C59D", -"u. c #EAC89E", -"i. c #E7C8A2", -"p. c #EACBA6", -"a. c #EBCFAF", -"s. c #F1CCA0", -"d. c #E7CEB1", -"f. c #ECD1B0", -"g. c #E5D2BB", -"h. c #E8D2B8", -"j. c #DFDFDF", -"k. c #E7D5C1", -"l. c #E7D7C4", -"z. c #E5D7C7", -"x. c #E7DACB", -"c. c #EADAC8", -"v. c #E9DCCC", -"b. c #EDDFCE", -"n. c #E5DDD3", -"m. c #E4DFD9", -"M. c #ECE0D1", -"N. c #E4E1DD", -"B. c #EDE3D8", -"V. c #EAE4DD", -"C. c #ECE5DC", -"Z. c #E2E2E2", -"A. c #E5E2E0", -"S. c #E4E4E4", -"D. c #E7E7E7", -"F. c #EAEAE9", -"G. c gray92", -"H. c #EEEEEE", -"J. c None", +"16 16 128 2", +" c #3D3E3D", +". c #3F3F3E", +"X c #3E403E", +"o c #434343", +"O c #444444", +"+ c #454545", +"@ c #535353", +"# c #565655", +"$ c #585858", +"% c #646560", +"& c #656564", +"* c #696A68", +"= c #696A69", +"- c #808180", +"; c #828382", +": c #8A8B8A", +"> c #8D8E8E", +", c #939392", +"< c #929393", +"1 c #939493", +"2 c #959695", +"3 c #969797", +"4 c #979898", +"5 c #999A9A", +"6 c #9A9B9B", +"7 c #9B9C9C", +"8 c #9D9E9E", +"9 c #9D9EA0", +"0 c #A0A1A0", +"q c #A0A0A1", +"w c #A2A3A3", +"e c #A3A3A3", +"r c #A2A3A5", +"t c #A5A6A5", +"y c #A6A6A6", +"u c #A6A7A6", +"i c #A6A7A7", +"p c #A8A9A8", +"a c #A8A9A9", +"s c #A9A9A9", +"d c #AAAAAA", +"f c #AAABAB", +"g c #ABACAB", +"h c #ADAEAD", +"j c #AEAEAE", +"k c #AEAFAE", +"l c #AEAFAF", +"z c #AFAFAF", +"x c #AFB0AF", +"c c #B0B0B0", +"v c #B1B2B1", +"b c #B8B8B8", +"n c #BCBDBC", +"m c #BFBFBF", +"M c #BEBFC0", +"N c #BEBFC2", +"B c #BFBFC2", +"V c #C0C1C3", +"C c #C2C3C3", +"Z c #C3C3C6", +"A c #C6C7C9", +"S c #C7C8C8", +"D c #C8C8CA", +"F c #C9C9CB", +"G c #C9CACC", +"H c #CACBCD", +"J c #CBCCCD", +"K c #CCCDCE", +"L c #CCCDCF", +"P c #CECFD1", +"I c #D0D0D0", +"U c #D3D3D3", +"Y c #D4D4D4", +"T c #D4D4D5", +"R c #D5D6D5", +"E c #D4D5D6", +"W c #D4D5D7", +"Q c #D5D6D7", +"! c #DADBDA", +"~ c #DCDDDE", +"^ c #DFDFE0", +"/ c #E2E2E1", +"( c #E1E1E2", +") c #E1E1E3", +"_ c #E3E3E4", +"` c #E3E4E5", +"' c #E4E4E5", +"] c #E4E5E5", +"[ c #E5E5E5", +"{ c #E5E6E7", +"} c #E6E6E7", +"| c #E7E7E8", +" . c #E8E8E9", +".. c #E8E9E9", +"X. c #E9E9E9", +"o. c #E8E8EA", +"O. c #E8E9EA", +"+. c #EAEAEB", +"@. c #EAEBEB", +"#. c #EAEBEC", +"$. c #EBEBEC", +"%. c #EBECEC", +"&. c #EBECED", +"*. c #ECECEC", +"=. c #EEEEED", +"-. c #EDEDEE", +";. c #EEEEEF", +":. c #EFEFF0", +">. c #F0F0F0", +",. c #F0F0F1", +"<. c #F1F1F1", +"1. c #F1F2F1", +"2. c #F1F1F2", +"3. c #F1F2F2", +"4. c #F2F2F2", +"5. c #F2F2F3", +"6. c #F3F3F3", +"7. c #F3F3F4", +"8. c #F3F4F4", +"9. c #F6F6F6", +"0. c #F6F7F7", +"q. c #F8F8F8", +"w. c #F9F9F9", +"e. c #FAFAFA", +"r. c #FDFDFD", +"t. c #FEFEFE", +"y. c #FFFFFF", +"u. c None", /* pixels */ -"J.J.J.J.J.J.J.1 > J.J.J.J.J.J.J.", -"J.J.J.J.J./ ..| ' ( ~ J.J.J.J.J.", -"J.J.J.< *.{ V $ r U W _ - J.J.J.", -"J.J., o.J 0 # <.w.$.F N H % J.J.", -"J.J.o.T e 1.r.k.x.t.S z B u J.J.", -"J.^ [ Y ! #.z.H.M.n.0.d n m 2 J.", -"J.X.) | =. .h.B.5.f.j.;.v B d J.", -": Q M ` &.>.A.V.p.c.l.4.E n d = ", -"; I b A Z 2.D.s.u.F.a.-.} C w & ", -"J.l g y 6.m.G.q.3.b.Z.,.] D 8 J.", -"J.3 k c %.d.C.v.N.S.y.@.L a * J.", -"J.J.j z x 8.i.g.e.9.+.W t 6 J.J.", -"J.J.+ s h G :.7.O.R B s 7 . J.J.", -"J.J.J.O i f P L K d p 5 J.J.J.", -"J.J.J.J.J.@ 9 q i 4 + J.J.J.J.J.", -"J.J.J.J.J.J.J.X o J.J.J.J.J.J.J." +"u.u.u.u.u.u.u.. . u.u.u.u.u.u.u.", +"u.u.u.u.+ = 3 k k 3 * + u.u.u.u.", +"u.u.u.$ k | .^ ( 2.&.k $ u.u.u.", +"u.u.$ S .H 9 3 8 t { *.S $ u.u.", +"u.+ x *.Q ^ f 2. .3 N T 0.v + u.", +"u.= *.w.7.T b r.! r | 7. . .= u.", +"u., 2.E Z r I r.I ; m Z A 2.1 u.", +". k { P J t &.r.E 6 F { 2.w.k . ", +". k w.2.p E r.*.f [ 2.( K { x X ", +"u.1 >.V - m r.( 0 k e > F 2.1 u.", +"u.& { *.m U w.w.2.2.>.g *. .& u.", +"u.+ p 0.g 5 k v c u 7 0 *.f + u.", +"u.u.# V #.&.2.( K N H .C # u.u.", +"u.u.u.@ t .0.{ ` #.{ t @ u.u.u.", +"u.u.u.u.o % : t t : % o u.u.u.u.", +"u.u.u.u.u.u.u.. . u.u.u.u.u.u.u." }; diff --git a/share/pixmaps/bitcoin256.png b/share/pixmaps/bitcoin256.png index 1d42116ef1199..a9aa80ce67e0f 100644 Binary files a/share/pixmaps/bitcoin256.png and b/share/pixmaps/bitcoin256.png differ diff --git a/share/pixmaps/bitcoin256.xpm b/share/pixmaps/bitcoin256.xpm index 87bb35cdadd6b..7fe1452fc51a5 100644 --- a/share/pixmaps/bitcoin256.xpm +++ b/share/pixmaps/bitcoin256.xpm @@ -1,465 +1,390 @@ /* XPM */ static char *bitcoin___[] = { /* columns rows colors chars-per-pixel */ -"256 256 203 2", -" c #BE741B", -". c #C1761B", -"X c #C6791C", -"o c #CC7C1D", -"O c #D07F1D", -"+ c #C67B21", -"@ c #CC7E21", -"# c #D4821E", -"$ c #D9841F", -"% c #ED8E1D", -"& c #EF911F", -"* c #CF8022", -"= c #D48323", -"- c #DB8621", -"; c #DD8922", -": c #D58729", -"> c #D6882B", -", c #DE8C2A", -"< c #CE8C3C", -"1 c #D28934", -"2 c #D98E32", -"3 c #D28E3C", -"4 c #DF9132", -"5 c #D6903E", -"6 c #DD933B", -"7 c #E58C22", -"8 c #E98F23", -"9 c #E38F2B", -"0 c #E88F28", -"q c #ED9124", -"w c #E6922D", -"e c #EB942B", -"r c #EF982F", -"t c #F59624", -"y c #F89723", -"u c #F79826", -"i c #F89825", -"p c #F1972A", -"a c #F59A2C", -"s c #F89B2B", -"d c #E59534", -"f c #EA9632", -"g c #EE9933", -"h c #E3963B", -"j c #E6993D", -"k c #EC9C3B", -"l c #F49C33", -"z c #F99E32", -"x c #F29E3A", -"c c #F7A037", -"v c #F9A036", -"b c #F5A13C", -"n c #F9A33B", -"m c #CE9147", -"M c #D29245", -"N c #DC9641", -"B c #DD9846", -"V c #D2954B", -"C c #DC9A4B", -"Z c #E59C44", -"A c #EA9E43", -"S c #E39E4B", -"D c #E89F49", -"F c #F09F40", -"G c #EDA145", -"H c #E6A14D", -"J c #EBA34B", -"K c #F4A443", -"L c #F9A642", -"P c #F7A847", -"I c #FAA846", -"U c #F3A64A", -"Y c #F8A748", -"T c #F5A94D", -"R c #FAAA4B", -"E c #E6A454", -"W c #EBA552", -"Q c #EDA856", -"! c #E4A55B", -"~ c #E8A75B", -"^ c #E7A95E", -"/ c #EBA95B", -"( c #F0A751", -") c #F4AB53", -"_ c #FAAE53", -"` c #F4AE5A", -"' c #F8AF59", -"] c #FAB057", -"[ c #F6B15E", -"{ c #FAB25B", -"} c #DFAD6F", -"| c #DCAE77", -" . c #DFB27D", -".. c #E5AA64", -"X. c #E8AB61", -"o. c #E5AE6C", -"O. c #E6B06F", -"+. c #ECB16C", -"@. c #F5B365", -"#. c #FBB562", -"$. c #FBB867", -"%. c #F5B66B", -"&. c #FAB768", -"*. c #F4B86F", -"=. c #FBB96A", -"-. c #E1AE71", -";. c #E5B174", -":. c #EBB573", -">. c #EFB977", -",. c #E5B47A", -"<. c #EEBA7B", -"1. c #F3B770", -"2. c #F3B974", -"3. c #FBBC72", -"4. c #F3BC7B", -"5. c #F8BF7A", -"6. c #FAC079", -"7. c #DCB382", -"8. c #DFBB8F", -"9. c #DABB96", -"0. c #DBBD99", -"q. c #E2B682", -"w. c #E4B985", -"e. c #ECBD84", -"r. c #E3BB8B", -"t. c #EABF8C", -"y. c #F1BE83", -"u. c #E2BE92", -"i. c #D3BDA2", -"p. c #DEC09C", -"a. c #EEC28D", -"s. c #F4C286", -"d. c #F8C282", -"f. c #F3C48B", -"g. c #E7C297", -"h. c #ECC393", -"j. c #E2C29D", -"k. c #EAC69B", -"l. c #ECC89F", -"z. c #F1C694", -"x. c #F2C897", -"c. c #F1CA9B", -"v. c #DBC2A3", -"b. c #D6C2AB", -"n. c #DDC7AD", -"m. c #DEC9AF", -"M. c #D3C4B3", -"N. c #DDCAB3", -"B. c #D2C7B9", -"V. c #D6C9BA", -"C. c #DDCEBB", -"Z. c #DFD0BE", -"A. c #E2C5A2", -"S. c #E8C7A0", -"D. c #E6C9A5", -"F. c #EBCBA4", -"G. c #E2C7A8", -"H. c #E3CAAC", -"J. c #EBCDA9", -"K. c #EFD2AF", -"L. c #F3D1A7", -"P. c #F1D1A9", -"I. c #E4CEB3", -"U. c #E8CFB1", -"Y. c #E1CFBA", -"T. c #E6D0B6", -"R. c #E9D1B4", -"E. c #E4D2BC", -"W. c #EAD4BA", -"Q. c #F4D5B0", -"!. c #F4D9B9", -"~. c #CDCDCD", -"^. c #D5CCC3", -"/. c #D4CFCA", -"(. c #DED2C3", -"). c #D3D1CE", -"_. c #DED6CC", -"`. c #D5D5D5", -"'. c #DBD7D1", -"]. c #DEDAD4", -"[. c #DDDDDC", -"{. c #E3D5C3", -"}. c #E9D7C1", -"|. c #EBD9C4", -" X c #E1D6CA", -".X c #E3D9CD", -"XX c #EADDCD", -"oX c #E1DBD4", -"OX c #E8DFD4", -"+X c #E1DEDB", -"@X c #EDE3D7", -"#X c #E3E1DE", -"$X c #E8E3DC", -"%X c #F6E5D2", -"&X c #F4EBDF", -"*X c #E4E4E4", -"=X c #ECE7E2", -"-X c #EDE9E4", -";X c #ECECEC", -":X c #F0EBE7", -">X c #F4F4F4", -",X c #FEFEFE", -" c #3F403E", +", c #40413F", +"< c #3F4140", +"1 c #424342", +"2 c #474846", +"3 c #484947", +"4 c #464748", +"5 c #4C4D4B", +"6 c #4F504E", +"7 c #50524F", +"8 c #4F5050", +"9 c #535453", +"0 c #575857", +"q c #585957", +"w c #575759", +"e c #575959", +"r c #5B5B5A", +"t c #5F605F", +"y c #60615F", +"u c #5F6060", +"i c #636463", +"p c #676867", +"a c #696967", +"s c #676868", +"d c #6B6C6C", +"f c #6F716F", +"g c #70716F", +"h c #6E6F70", +"j c #6F7071", +"k c #737474", +"l c #777877", +"z c #767778", +"x c #777879", +"c c #7B7C7C", +"v c #7F817E", +"b c #80807E", +"n c #7E7F80", +"m c #7F8080", +"M c #838585", +"N c #878887", +"B c #888987", +"V c #868788", +"C c #87888A", +"Z c #8A8C8C", +"A c #8E908F", +"S c #90918F", +"D c #8E8E91", +"F c #8F9091", +"G c #949594", +"H c #979897", +"J c #989897", +"K c #969798", +"L c #979899", +"P c #9B9C9C", +"I c #9FA09F", +"U c #A0A09F", +"Y c #9E9FA1", +"T c #9EA0A0", +"R c #A3A4A4", +"E c #A7A8A7", +"W c #A8A8A7", +"Q c #A6A7AA", +"! c #A7A8A9", +"~ c #AAACAD", +"^ c #AEB0AF", +"/ c #B1B0AF", +"( c #ADAEB2", +") c #AFB0B3", +"_ c #B2B3B6", +"` c #B6B7BA", +"' c #B7B8BB", +"] c #BABBBD", +"[ c #BDBEC1", +"{ c #BFC0C3", +"} c #C2C3C5", +"| c #C7C8C7", +" . c #C8C9C7", +".. c #C5C6C9", +"X. c #C8C7CB", +"o. c #C7C8CB", +"O. c #CACBCD", +"+. c #CFD0CF", +"@. c #CECED1", +"#. c #D0CFD2", +"$. c #CFD0D1", +"%. c #D2D3D4", +"&. c #D7D8D7", +"*. c #D6D6D9", +"=. c #D7D8D9", +"-. c #DBDCDC", +";. c #DFE0DF", +":. c #DEDFE0", +">. c #E0DFE1", +",. c #DFE0E1", +"<. c #E3E3E4", +"1. c #E7E7E8", +"2. c #E8E7E8", +"3. c #E7E8E9", +"4. c #EBECEC", +"5. c #F0EFEF", +"6. c #EEF0EF", +"7. c #F0F0EF", +"8. c #EFEFF0", +"9. c #EFF0F0", +"0. c #F4F5F6", +"q. c #F8F7F7", +"w. c #F7F8F7", +"e. c #F6F7F8", +"r. c #F8F7F8", +"t. c #F7F8F8", +"y. c #FDFDFE", +"u. c None", /* pixels */ -"X>X>X>X;X;X*X[.`.r.n n z v v v v c x l p l x x c c v v v v z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u i u X>X>X>X>X>X;X*X[.`.@.n n v v v v v c g E | S k f r l l l z z z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u i e X>X,X,X,X,X>X>X;X*X_.R n v v v v v v x e 0.`.`.V.p.;.H f e e p l l z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u y , X>X,X,X,X,X>X>X;X*XI.L n v v v v n n x g V.`.[.[.[.[.[.(.p.;.S f r l z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u u y X,X,X,X,X,X>X>X;X*Xa.n n v v v n n n l A `.[.*X*X-X-X*X*X*X[.`.V.9.K z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u i u X,X,X,X,X,X>X>X-X[.%.n n n n n n n b p o.[.*X;X;X;X>X;X;X*X*X[.`.~.T z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u y 0 X>X,X,X,X,X,X>X;X*XoXR L n n n n n n b g u.*X-X;X>X>X>X>X>X;X*X*X[.N.L n z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u y X>X,X,X,X,X>X>X;X*XI.L L n n n n n n b g C.*X;X>X>X,X,X,X>X>X;X*X[.g.L n z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u i u X,X,X,X,X,X>X>X;X*Xh.L L n n n n n n l G [.*X;X>X,X,X,X,X>X>X;X*X[.2.n n z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u y w X,X,X,X,X,X>X>X-X[.%.L n n n n n n b l o.*X;X>X>X,X,X,X,X,X>X;X*X]._ n v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i y X>X,X,X,X,X,X>X;X*XoXR L n n n n n n b g j.*X;X>X>X,X,X,X,X,X>X;X*XE.I n v z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u y t X>X,X,X,X,X>X>X;X*XT.I L n n n n n n b k Z.*X;X>X,X,X,X,X,X>X>X;X*Xl.L n v v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u y ; X,X,X,X,X,X>X>X;X*Xh.L L n n n n L L x G [.*X;X>X,X,X,X,X,X>X>X;X*X4.n n v v v z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u i u X>X,X,X,X,X,X>X>X-X[.%.L L n n n L L L l ;.*X;X>X>X,X,X,X,X,X>X;X*X[._ L n v v v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u y q X>X>X>X;X;X;X;X*X*X*X*X].N.q.! d e e r p q ,.-X;X>X>X,X,X,X,X,X>X;X*XoX_ I L n L L L L K g j.*X;X>X>X,X,X,X,X,X>X;X*XE.Y L n v v v z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X>X>X>X>X>X>X>X>X;X;X;X;X*X*X*X*X_.I.r.o.Z w D.;X>X>X,X,X,X,X,X,X>X;X*XW.R I L L L L L L K k Y.*X;X>X,X,X,X,X,X>X>X;X*Xl.L L n v v v v v z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u y q X>X,X,X,X,X,X,X>X>X>X>X>X>X;X;X;X;X*X*X*X*X$X}.=X>X>X>X,X,X,X,X,X,X>X;X*Xx.I I L L L L L L x J [.*X;X>X,X,X,X,X,X>X>X;X*X4.L n n v v v v v z z z z z z s s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X;X;X;X;X;X>X>X>X>X,X,X,X,X,X,X,X>X>X;X&.L L L L L L L L x ;.*X;X>X>X,X,X,X,X,X>X;X*X[.' L n n n v v v v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u y t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X>X>X@Xb l x x K L L L L k j.*X;X>X>X,X,X,X,X,X>X;X*XE.R L n n n n v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X:XW.g.;.H k k k b F k {.;X>X>X,X,X,X,X,X>X>X;X*XS.I L n n n n v v v v v z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i y t X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X;X*X+XE.j.,.~ j A =X;X>X>X,X,X,X,X,X>X>X;X*X4.I L n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X;X;X*X*X*X*XXX}.;X>X>X,X,X,X,X,X,X>X>X;X#X{ I n n n n n n v v v v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i y t X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X;X;X;X;X;X>X>X>X,X,X,X,X,X,X,X>X>X;X|.R I n n n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X>X>X;XF.L L n n n n n n n v v v v z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i y q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X,X,X,X,X,X,X,X,X,X,X,X>X>X;X@.a x b b n n n n n v v v v z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X|.e.G g l c b n n n n v v v v z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t 0 X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X-X+XG...k g l b n n n v v v v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i y t X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X;X*X*X(.w.A g l c c v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t = X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X-X*X*X'.u.A r l x c v v v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X;X;X*X*X].u.k r l c v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X;X;X*X*X_.q.g p l z v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t 7 X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X;X;X*X[.C.W p l c v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i y t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X;X;X;X;X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X;X*X*X[.w.r a l z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X-X-X-X*X*X-X;X;X;X;X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X;X*X[.H.g a z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t 0 X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;Xf.3.x.R..X+X*X*X*X*X;X;X;X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X*X*X(.k p z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i y t X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X$.{ { { $.3.f.F.{.[.*X*X*X;X;X;X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X-X*X_.W p z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t @ X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X-X|.{ ] _ ] { { { { $.3.h.R..X*X*X*X;X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X-X*X'.k p z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t 0 X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XJ._ ] _ _ _ _ ] { { { #.$.$.f.T.oX*X*X;X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X-X*X_.l a z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xs._ _ _ _ _ _ _ _ _ ] { { { { { =.l..X*X*X;X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X*XH.t z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X+X&.] _ _ _ _ _ _ _ _ _ _ _ _ ] { { { #.k.oX*X-X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X[.:.t z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t ; X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X{.{ { _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ] _ { J.*X*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X'.l s z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XF.{ { _ _ _ _ _ _ _ _ ] _ _ _ _ _ _ _ _ _ _ _ y.oX*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.t.u z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xs.{ ] _ _ _ _ _ ] ] ] ] ] _ _ _ _ _ _ _ _ _ _ _ ' .X*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X'.z z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X].&.{ ] _ _ _ ] ] ] ] ] ] ] _ _ _ _ _ _ _ _ _ _ _ R R oX*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.:.u z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t ; X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X{.#.{ _ _ _ _ ] ] ] ] ] ] ] ] _ _ _ _ _ _ _ _ _ _ _ I @.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XD.s z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XF.{ { _ ' ] ] ] ] ] { { { ] ] ] _ _ _ _ _ _ _ _ R R _ n k.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X_.n z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xs.{ { ] ] ] ] { { { { { { ] ] ] _ _ _ _ _ _ _ _ R R R I T +X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.T z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.=.{ { ] ] ] { { { { { { { ] ] ] _ _ _ _ _ _ _ _ _ R R R K D.*X;X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.%.z z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t = X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X{.#.{ ] ] { { { { { { { { { { ] ] ] _ _ _ _ _ _ _ _ R R R K e.*X;X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X-X[.<.v v z z z z z z z s s s s s s s s s s s s u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t 7 X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XJ.{ { { { { { { { { { { { { { { ] ] ] _ _ _ _ _ _ _ _ R R K +.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X<.n v v z z z z z z s s s s s s s s s s s s u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xs.#.{ { { { { { { { { { { { { { ] ] ] ] _ _ _ _ _ _ _ _ R U / *X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xe.n n v v z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t t X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.=.#.{ { { { { { { { { { { { { { ] ] ] ' _ _ _ _ _ _ _ _ R K +.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X<.n n v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u t X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X{.$.#.{ { { { { { { { { { { { { { { ] ] ] ] _ _ _ _ _ _ _ T K ,.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X-X[.>.n n v z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t @ X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XJ.#.#.{ { { { { { { { { { { { { { { ] ] ] ] _ _ _ _ _ _ _ T G j.*X;X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.%.n n v v z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t = X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xf.#.{ { { { { { { { { { { { { { { { { ] ] ] _ _ _ _ _ _ _ T J X-X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X]._ L n v v v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t ; X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X#X3.#.{ { { { { { { { { { { { { { { { { { ] ] ] _ _ _ _ _ ) G ..*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X{.R L n v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t 7 X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X|.=.#.{ { { { { { { { { { { { { { { { { { { ] ] ' _ _ _ _ T k E.*X;X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XH.L L n v v v v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;Xc.] { { { { { { { { #.{ { { { { { { { { { { ] ] ] _ _ _ ( A w.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X-X[.a.L n n v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;Xx.( Q ( ) ` [ [ { #.#.#.{ { { { { { { { { { { ] ] _ ) T D o.*X;X;X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.[ L n n n v v v v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u q X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;XOXI.u.O./ Q Q ` ` [ [ [ { { { { { { { { { ] ' ) ( J H r.*X-X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XE.R I n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X;X*X*X_.H.r.;.X./ Q Q ) ) ` ` ` ` ` ) ) ( J H W ,.{.*X;X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.y.I L n n n n v v v v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u t X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X;X;X*X*X*X*X].(.H.u.q.;.^ ^ ~ ~ E E ~ o.r.G. X*X*X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X_._ Y L n n n n n v v v z z z z z z z s s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i u t @ X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X;X;X;X;X*X*X*X*X*X*X[.]..X X XoX+X*X*X*X-X;X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X[.f.R I n n n n n n v v v v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t = X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X;X;X;X;X;X;X-X-X*X*X*X-X;X;X;X;X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X;X*X X_ R L n n n n n n v v v v z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t = X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X>X>X>X;X;X;X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X[.%.R I L n n n n n n n v v v v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i t - X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X*X[.k.R R L n n n n n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i t ; X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X;X*X[.l.] _ I L L n n n n n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i t ; X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X-X*X[.l.{ _ Y L L L n n n n n n n n v v v v v v z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i t ; X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X*X*X].h.{ _ R L L L L L n n n n n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i t ; X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X;X*X[.T.3.{ ] R I L L L L L n n n n n n n n n v v v z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i t ; X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X;X;X;X;X;X;X;X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X*XW.s.#.{ _ R I I L L L L L L n n n n n n n n v v v v z z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i i i i i t ; X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X-XQ.|.OX*X*X*X*X*X;X;X;X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X&X!.L.d.#.{ ] R R I I I L L L L L L n n n n n n n n n v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i i t ; X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;XXX3.3.3.s.c.R..X[.*X*X*X-X;X;X;X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X%X{ L R _ _ R R R I I I I L L L L L L n n n n n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i i t ; X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X-XK.&.=.=.&.=.3.3.d.c.R..X[.*X*X*X;X;X;X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;XJ.J K Y R R Y I I I I L L L L L L n n n n n n n n n v v v v z z z z z z z s s s s s s s s s s s s u u u i i i i i i i i i i i i i i i i i i i i i i i i t ; X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xf.$.#.#.#.#.&.&.=.=.3.3.f.F.}.+X*X*X*X;X;X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;XOX:.K U R R I I I I I L L L L L L n n n n n n n n v v v v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i i i i t ; X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X-X+X3.$.#.{ { #.#.#.#.$.$.&.=.=.3.6.c.W.+X*X*X;X;X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X*Xj.K K R R I I I I I L L L L L n n n n n n n n v v v v v v z z z z z z s s s s s s s s s s s s u u u i i i i i i i i i i i i i i i i i i i i i i u t = X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X{.&.#.{ { { { #.#.#.#.#.#.#.#.$.$.=.=.5.J..X*X*X;X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X*XH.K K R R I I I I L L L L L L n n n n n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i i i i i i i u t = X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XJ.#.#.{ { { { #.#.#.#.#.#.#.#.{ #.#.$.$.$.=.z.{.*X*X;X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X*X*XC.U K R I I I I I L L L L L L n n n n n n n n v v v v v z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i i u q * s u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u u u u s s s s s s s s s s s z z z z z z z v v v v v n n n n n n n n L L L L L L I I K A Z.*X;X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xf.#.#.{ { { { { #.#.#.#.{ { { { { { { #.#.#.#.$.z.{.*X*X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X*XC.b K Y I I I I L L L L L L n n n n n n n n n v v v v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i u q + X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.3.#.{ { { { { { #.#.#.{ { { { { { { { { { { #.#.#.$.F.+X*X;X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X[.H.b P I I I I I L L L L L n n n n n n n n n v v v v v z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i t q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X{.$.#.{ { { { { { { { { { { { { { { { { { { { { { { #.{ 2.{.*X;X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X[.e.b Y I I I I L L L L L L n n n n n n n n v v v v z z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i i t q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XJ.#.#.{ { { { { { { { { { { { { { { { { { { { { { { { { { { U.*X;X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X].T L Y I I I I L L L L L L n n n n n n n n v v v v v z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i i t q X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xf.#.{ { { { { { { { { { { { { { { { { { { { { { { { { ] { { _ R.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X-X*XD.L R I I I I L L L L L L n n n n n n n n v v v v v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i t q X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.=.#.{ { { { { { { { { { { { { { { { { { { { { { ] ] ] ] ] { ' R T.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X[.` L I I I I I L L L L L L n n n n n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i t 8 X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X{.$.#.{ { { { { { { { { { { { { { { { { { { { ] ] ] ] ] ] ] _ ] _ R oX*X;X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X-X[.g.n I Y I I I I L L L L L n n n n n n n n n v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i i i i t 7 X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XJ.{ { { { { { { { { { { { { { { { { { { { { ] ] ] ] ] _ _ _ _ _ ] Y <.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X(.I I I I I I L L L L L L L n n n n n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i u t ; X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xf.{ { { { { { { { { { { { { { { { { { { ] ] ] ] ] ] _ _ _ _ _ _ _ _ T .X-X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.[ L I I I L L L L L L L L n n n n n n n n n v v v v z z z z z z z s s s s s s s s s s s u u u u u i i i i i i i i i i i i i i u q = X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.=.{ { ] { { { { { { { { { { { { { { ] ] ] ] ] ] _ _ _ _ _ _ _ _ _ _ P g.*X;X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X-X[.e.n I L L L L L L L L L L n n n n n n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i i t q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X{.#.{ ] ] { { { { { { { { { { { ] ] ] ] ] ] ] ] _ _ _ _ _ _ _ _ _ _ _ Y +.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xg.L I L L L L L L L L L n n n n n n n n n n n v v v v z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i i i i i t q X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XJ.{ { ] ] ] { { { { { { { { { ] ] ] ] ] ' _ _ _ _ _ _ _ _ _ _ _ _ _ _ T Q #X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XD.I I L L L L L L L n n n n n n n n n n n n n v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i i i t q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xf.{ { ] ] ] ] { { { { { { { ] ] ] ] ] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ Y W +X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XI.I I L L L L L n n n n n n n n n n n n n n n v v v v v v z z z z z z z s s s s s s s s s s u u u u u i i i i i i i i i i i i t 7 X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.=.{ ] ] ] ] ] { { { { { ] ] ] ] ] ' _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ R R T W +X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XE.I L L L L n n n n n n n n n n n n n n v v v v v v v v v z z z z z z z s s s s s s s s s s s u u u u i i i i i i i i i i i u q ; X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X{.#.{ _ _ ] ] ] ] { ] ] ] ] ] ] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ R R R R K X.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XE.I L n n n n n n n n n n n n n n n n v v v v v v v v v z z z z z z z z s s s s s s s s s s s s u u u i i i i i i i i i i i t q @ X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XJ.{ { _ _ _ ] ] ] ] ] ] ] ] ' _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ R R R R R x q.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XD.R L n n n n n n n n n n n n n n n v v v v v v v v v z z z z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i t q X>X>X>X>X>X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xs.{ ] _ _ _ ] ] ] ] ] ] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ R R R R R R R T k G.*X;X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XS.I L n n n n n n n n n n n n n v v v v v v v v v z z z z z z z z z z z z s s s s s s s s s s s s u u u u i i i i i i i i i t q X>X>X,X,X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X#X&.{ _ _ _ _ _ ] ] ] ] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ R R R R R R R R K A oX;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*Xh.L L n n n n n n n n n n v v v v v v v v v z z z z z z z z z z z z z s s s s s s s s s s s s s s s u u u i i i i i i i i i t 7 X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X|.{ ] _ _ _ _ _ ] ] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ R R R R R R R R R U k u.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X-X[.2.L L n n n n n n n n n v v v v v v v v z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s u u u u i i i i i i i u q = X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;Xc.R _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ R R R R R R R R R R T k D +X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.' L n n n n n n n n v v v v v v v z v v z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s u u u u i i i i i i i t q X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;Xf.K G G U ) ) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ R R R R R R R R R R R U A j {.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X{.R L n n n n n n v v v v v v v v v z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s s u u u u i i i i i i t q X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X-XXXH.w.X.J J J T ) ) ) _ _ _ _ _ _ _ _ R R R R R R R R R R R Y K k D Y.*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XJ.L L n n n n v v v v v v v v z z z z z z z z z z z z z s z s s s s s s s s s s s s s s s s s s s s u u u u u u u i i i i u t 7 X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X-X*X#X(.A.q...H J J U U T T T T R R R R R R R R R Y Y U K k A ;..X*X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X-X[.4.L n n n v v v v v v v v z z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i t q * X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X;X;X*X*X*X[.(.H.u.,.^ J D G A J K K U U U U K k k k A E w.Y.*X*X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X]._ L n v v v v v v v v v v z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i t q X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X;X;X;X-X*X*X*X*X[._.N.A.u.;.;...E E E E ..;.q.j.I.+X*X*X;X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*XH.I L n v v v v v v v v z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u u i i i i i i i i i t 8 X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X;X;X;X;X-X*X*X*X*X*X*X*X+X+X+X+X*X*X*X*X*X;X;X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.1.L n v v v v v v z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i i i i u q ; X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X;X;X;X;X;X;X;X;X;X;X;X;X;X;X;X;X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X XR L n v v v v v z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u u i i i i i i i i i i i i t q X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X-X[.a.L n v v v z z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i i i i i i i i t 8 X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X]._ L n v z z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u i i i i i i i i i i i i i i i u q ; X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X;X*X[.a.L n v z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s s s u u u u u u u i i i i i i i i i i i i i i i i t q X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X_.R L n z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s s u u u u u u u i i i i i i i i i i i i i i i i i i t 8 X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X[.2.L n z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s u s u u u u u u u u i i i i i i i i i i i i i i i i i i t q = X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X*X[.D.L L v z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i i i i i i i i i i i i i i i t q X>X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X-X*X XR L n z z z z z z z z s s s s s s s s s s s s s s s s s s s s s s u u u u u u u i i i i i i i i i i i i i i i i i i i i i i u q 7 X>X,X,X,X,X,X,X,X>X>X>X>X;X;X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X;X-X*X'._ I n z z z z z z z s s s s s s s s s s s s s s s s s s s s s s u u u u u u i u u i i i i i i i i i i i i i i i i i i i i i i t q o X>X,X,X,X,X,X,X>X>X>X=X;X-X-X-X;X;X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X;X-X*X].%.L L z z z z z z s s s s s s s s s s s s s s s s s s s s s s u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i t 8 X>X,X,X,X,X,X>X>X;X=X=.5.c.W.oX*X*X-X;X>X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X;X*X*X_.%.I L z z z z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i t q - X>X,X,X,X,X,X>X>X;X|._ _ _ { #.4.l.}.$X;X>X>X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X;X;X*X[.E.{ I L v z z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u i u i i i i i i i i i i i i i i i i i i i i i i i i i i i t 8 X,X,X,X,X,X>X>X;X*XF.R R R R _ _ { { { 4.-X>X>X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X>X>X>X>X,X,X,X,X,X,X,X,X,X,X,X>X>X>X>X>X>X>X;X;X*X*X[.k._ I n z z z s s s s s s s s s s s s s s s s s s s s s s s u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q 7 X,X,X,X,X,X>X>X;X*X4.R I I I I R R R b U -X>X>X,X,X,X,X,X,X,X,X>X>X>X>X>X;X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X;X;X;X-X*X*X[.T.*.R L n z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q X>X,X,X,X,X,X>X;X*X+X] R I L I I I I P x t.;X>X>X,X,X,X,X,X,X,X>X>X;X;X;X;X-X-X-X;X;X;X;X;X;X;X;X;X;X;X;X;X;X;X;X;X;X*X*X*X[.].U.4.R I L v z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u q 7 X>X,X,X,X,X>X>X;X*XE.R Y L L I I I I K k I.-X;X>X,X,X,X,X,X,X>X>X;X|.f.J.W..X[.[.*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X[._.I.h.#.R L L n z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u i u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q . X,X,X,X,X,X>X>X;X*Xl.I I L L L I I P K A oX-X>X>X,X,X,X,X,X>X>X;X;Xs.R _ _ { #.4.y.S.l.T.{.{. XoXoXoXoX].oX{.{.E.k.a.2.{ _ I L n v z z s s s s s s s s s s s s s s s s s s s s s s u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u q 7 X,X,X,X,X,X>X>X;X[.2.I I L L L L I L x ^ *X;X>X>X,X,X,X,X,X>X>X;X*X#.I I I I Y I R I _ R _ ] { { [ { { { { ] _ R R I I L n n v z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q . X>X,X,X,X,X,X>X;X*X]._ Y L L L L L I L k r.*X;X>X>X,X,X,X,X,X>X;X-X.XR L n n n n n n L L L L L L L n L n n n L n n n c v z z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u q 7 X>X,X,X,X,X>X>X;X*XT.R I L L L L L L K k H.*X;X>X>X,X,X,X,X>X>X;X*XJ.L L n n n n n v v v v v v v v v z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t 8 X,X,X,X,X,X>X>X;X*Xk.I I n L L L L L b k ].*X;X>X,X,X,X,X,X>X>X;X*Xy.L n n n n v v v v v v v v v z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q 7 X,X,X,X,X,X>X>X-X[.2.L L n L L L L L l ^ [.-X>X>X,X,X,X,X,X>X;X*X[.[ L n n n v v v v v v v z z v z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t 8 X,X,X,X,X,X>X;X*X]._ L L n L L L L K g r.*X;X>X>X,X,X,X,X,X>X;X*X{.R L n v v v v v v v z z z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q - X,X,X,X,X>X>X;X*XE.I L n n n L L L b g H.*X;X>X>X,X,X,X,X>X>X;X*XF.L L v v v v v v v z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i u q 8 X>X>X,X>X>X>X;X*Xk.L L n n n n L L x k _.*X;X>X,X,X,X,X,X>X>X;X*Xy.n n v v v v v v z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q # X>X>X>X>X;X*X[.2.L L n n n n n b l ~ [.-X>X>X,X,X,X,X,X>X;X*X[.' L n v v v z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s s s u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q 7 X>X,X,X,X,X,X>X;X*X{.I n c v v z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t 8 X>X,X,X,X,X>X>X;X*XF.L n v z z z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q - X>X,X,X,X,X>X>X;X*X4.n n z z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s s u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q 7 .L n n n n n n b l E [.*X;X>X>X,X,X,X>X>X;X*X[.' n v z z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t 8 X>X>X>X>X>X;X*X{.I n z z z z z z z z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q - X>X>X;X;X*X[.S.n n z z z z z z z z s s s s s s s s s s s s s s s s s s s s s u u u u u u u u i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i t q 7 : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : ; : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : ; : : : : : : : : : : : : > : : : > : : > : : : : : : : : : : : : : : > : : : : : : : : : ; : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : ; : : > : : : : : : : : : : : > : : : : : : : : : : : : : < : : : : : > > : : : : : : : : : : : : : : > : : : ; ; : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : > u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : > : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : - : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : > : : : : : : : : : - : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : ; : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : > : : : : : : : : : : : : : : : : : : : : : : ; : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : > : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: ; : : : : : : : : : : > : : : : : : : : : : : : > > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : ; : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: ; : : : : : : : : : > : : : : : : : : : : > : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : ; : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : > > : > > : : : : : : : : : : : : : : : : : > > > : : : : : : > : : : : : : : : > : : : : : > : : : : : : > : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : > : : > : : : : : : : : : : : : : > : : : : : : : : : > : : : : : : : : : : ; ; = = = & & & & & = = = = % & & & = = & & & = & & = = ; ; : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : > : : ; ; = = = & = - : , 1 3 5 5 9 e r r r r t i i t t r r r 0 9 5 5 3 1 , : - = & = = - ; : : : , : : : : : > : : : : : : : : : : : > : : : : > : : : : : > : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : , : : - = & & $ = : 5 r s x S E ] %.<.4.4.4.8.8.9.9.9.0.8.9.0.0.4.0.4.4.4.4.4.<.%.] W G c p r 5 : = $ $ & = = ; , > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : > : : : : : : : : : : , , ; & $ $ @ $ 1 i c G ^ .<.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.1. .~ G x i 3 % @ $ $ & ; , , , : : : : : : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: ; : : : : : : : : : : : > : : : : : : : : : : : : : : : > , ; @ O + @ , p Z ! .<.y.y.y.y.y.y.y.t.y.t.r.e.e.e.e.e.e.0.r.r.e.e.0.0.0.0.e.0.e.e.e.e.e.e.e.t.t.y.y.y.y.y.y.y.<. .! Z p > @ @ O $ ; , , : : : : : : : : : : : : > : : : : : : : > : : : : : : ; : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : > : > : : : : : : : : : : : : : : : : > > : $ o + = 5 c ~ O.4.y.y.y.y.y.t.e.e.e.0.e.0.e.e.r.t.e.e.e.e.e.e.t.t.e.e.e.t.e.t.t.e.e.e.r.t.e.e.e.e.e.e.0.e.e.e.t.y.y.y.y.y.4.O.~ c 5 & O O $ : > , : : : : : : : : : : : : : : : : : : : : : : > : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : > : : : : : : : : : : : : : : : : > : : : , : : - @ O ; 9 B } <.y.y.y.y.y.q.0.0.e.e.e.e.t.t.t.e.t.t.t.t.t.t.t.t.e.e.t.t.t.t.t.t.t.w.t.t.t.t.t.t.t.t.t.t.t.e.t.t.e.e.e.t.0.0.0.y.y.y.y.y.<.{ N 9 ; + + - : : , : : : : : : : : > : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : : : : : , : - % + = q N ] 4.y.y.y.y.y.0.0.0.t.e.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.y.t.t.t.t.t.y.t.t.t.t.t.t.t.t.e.t.t.t.t.t.t.e.0.0.t.y.y.y.y.4.] M q & + % ; : , : : : : : : : : : : : : : : > : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > : : : : : > : : : : : , : = + + 1 z ~ <.y.y.y.y.t.0.0.e.e.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.y.t.y.t.t.t.t.t.t.y.r.t.y.t.t.t.t.y.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.0.0.y.y.y.y.y.<.~ z 1 @ @ & : , : : : > : : : : : > : : : : : : : : > : : : : : > u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : > : : : : : , , % O + 9 P %.0.y.y.y.t.e.r.e.t.e.t.t.e.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.y.t.t.t.t.t.t.t.t.t.t.r.t.t.t.t.y.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.e.0.e.e.y.y.y.y.0.%.P 7 @ O % , , : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : : : > 1 & . $ y ^ <.y.y.y.t.e.e.e.t.t.t.t.t.t.t.t.t.t.t.t.t.y.t.t.t.t.t.t.t.t.t.t.t.t.t.t.y.y.t.t.y.t.t.y.t.y.t.t.t.t.t.y.t.t.t.t.t.t.t.t.y.t.t.t.t.t.t.t.t.t.t.t.r.t.e.e.0.e.w.t.y.y.y.<.~ y $ . $ 1 > : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: ; : : : > : : : : : : > : : : : : : : : : : : , = o = k } 4.y.y.t.e.e.e.e.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.y.t.y.t.y.t.y.y.t.y.t.y.t.t.t.y.t.r.t.t.r.t.y.t.y.t.y.t.y.t.y.t.y.t.y.t.y.t.t.y.t.t.t.q.y.t.t.t.t.t.t.t.t.t.t.t.e.0.0.y.y.y.4.{ z = o = 1 > : : : : : : > : : : : : : : : : : : : : : ; : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : > : : : : : : : : : : : : : : : : : = @ = l O.0.y.y.t.e.e.r.r.t.t.t.e.t.t.t.t.y.t.y.t.t.r.y.t.t.t.t.y.y.t.t.r.t.r.t.r.t.q.y.t.t.t.t.t.t.y.y.t.y.t.t.t.y.y.t.y.q.t.t.r.t.t.r.t.t.t.y.t.t.y.r.r.t.t.r.t.t.t.t.t.t.r.t.t.t.t.r.r.t.y.y.t. .z = @ - : : : : : : : : : : : : : : : : : : > : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > : : : : : : : : > ; = ; x ..q.y.y.t.t.e.e.t.t.t.t.t.t.t.t.t.t.t.r.t.r.t.t.y.r.t.y.r.t.t.t.t.y.y.y.y.y.y.y.y.t.y.y.y.y.y.y.t.t.y.y.y.y.y.y.t.y.t.y.y.y.y.y.y.y.t.y.t.y.t.t.t.t.y.y.t.y.t.t.t.y.t.t.t.t.t.t.t.r.r.e.e.t.y.y.0...z : & ; : : : : : : : : : : : : > : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : > : : : : : > : : : : : : : : > : : : : $ ; k } 0.y.y.t.e.e.e.e.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.y.t.y.y.y.y.q.t.y.y.t.y.t.y.t.y.y.t.y.y.y.t.y.y.y.t.y.y.t.y.t.y.y.q.t.t.y.t.y.q.y.y.q.t.t.t.r.t.r.t.t.t.t.t.r.t.t.t.t.t.t.t.t.t.t.t.e.e.e.t.y.y.0.} d - $ ; > : : : : : : : : : : : : : : : : < : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : : : = $ r ~ 0.y.y.t.0.t.e.e.t.t.t.t.t.t.t.t.t.t.y.t.t.y.y.t.t.y.y.t.y.t.r.y.y.t.y.t.t.y.y.t.y.y.y.q.t.y.y.y.y.t.y.y.y.t.y.y.y.t.y.y.t.y.y.y.y.y.t.y.y.q.y.y.y.y.y.y.y.y.t.y.t.y.t.y.t.y.t.t.t.t.t.t.t.t.t.t.t.e.e.t.t.y.y.0.~ r & & : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : > : ; % 3 K 1.y.t.t.0.t.t.t.t.t.r.t.t.t.y.t.t.r.t.r.r.y.t.t.y.t.r.t.y.y.y.y.t.y.r.y.t.y.y.y.t.y.y.t.y.y.y.q.y.y.y.y.t.y.t.y.y.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.q.t.y.r.y.t.t.y.y.r.t.y.t.t.y.t.y.r.t.t.r.t.y.t.t.t.t.t.e.e.e.e.t.t.y.<.G 5 % ; , : : : : : : : : : > : : : : : : : > : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : ; = = l %.y.y.e.e.t.e.e.t.t.t.t.t.t.t.t.t.t.t.y.t.y.t.t.y.t.t.y.y.r.y.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.r.y.y.t.r.y.y.y.y.y.y.y.y.y.y.y.y.r.y.t.y.t.t.t.t.t.y.t.y.t.t.t.t.t.t.t.t.t.t.e.e.e.t.y.y.$.z = & : : : : : : : > : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : > : : : : : : : : : : : : : : = * 7 ~ t.y.t.e.e.e.e.t.t.t.t.t.t.t.t.t.y.t.t.y.t.t.y.r.t.y.t.y.y.y.y.y.r.y.r.r.y.t.y.y.y.y.y.q.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.q.y.y.t.y.t.y.t.y.y.y.y.y.r.r.y.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.e.t.t.e.e.e.t.y.t.~ 7 & = : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : > : : : : : : < > : $ = c -.y.y.q.0.e.e.t.t.t.r.t.t.t.t.y.t.t.t.y.t.t.t.t.y.y.y.y.y.t.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.y.y.y.y.y.t.y.y.t.y.y.y.y.y.y.y.t.y.t.t.y.t.y.t.t.t.t.t.t.t.t.e.e.e.r.y.y.=.c ; $ ; , < : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : > : : > : : : : : : : > > = O 3 ~ y.y.t.e.e.e.e.r.t.t.t.t.t.y.t.t.t.y.r.t.t.r.y.t.y.y.r.t.t.y.y.y.y.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.t.y.t.y.t.y.t.y.r.r.y.t.y.y.r.t.r.t.t.y.r.r.t.t.r.r.r.e.t.y.y.~ 3 O = , : : : : : : : : : : : : : : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : : : : : : : : : : : : , : @ O d =.y.y.0.e.e.e.e.t.t.t.t.t.t.t.t.t.t.t.r.t.y.y.y.y.y.t.y.y.y.y.y.r.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.0.0.4.<.:.-.*.%.%.@.@.O.@.@.%.@.&.*.-.:.<.4.9.q.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.r.y.t.t.t.t.y.t.t.t.t.t.t.t.t.t.t.e.e.0.y.y.&.d o @ > , : : : : : : : : > : : : > : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : > : : : : : : : : : : : : : > ; o = P y.y.0.0.e.e.e.t.t.t.t.t.t.r.t.r.y.y.t.r.y.r.y.r.y.r.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.0.5.<.=.O...{ ' ` _ ( ( ~ ( ~ ( ( ( ( ( ( ( ~ ~ ( ( _ ` ' { ..O.=.<.8.0.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.q.y.y.r.y.y.y.r.y.t.t.t.t.t.t.t.t.t.t.t.t.t.e.e.0.t.y.y.P % O ; , : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : : : : : : : : : : : : 1 = O 5 { y.y.e.0.t.t.t.t.t.t.y.t.t.t.r.y.t.t.t.y.y.t.y.y.y.y.t.y.y.y.r.y.r.y.y.y.y.y.y.y.y.r.0.2.=.O.[ ` _ ( ~ ~ ( ( _ _ _ ` ` ' ` ` ` ` ` ` ' ` ` ` ` ` ` ) ) ( ~ ~ ( ` ` [ @.=.4.0.t.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.t.y.y.t.y.y.t.y.t.y.t.t.t.t.t.t.e.t.t.t.0.r.y.y.} 3 O = , : : : : : : : : : : : : : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : > : : : : : : : , & + f <.y.y.0.e.e.t.t.t.t.t.t.t.t.r.t.t.t.y.t.y.r.y.t.y.r.y.y.r.y.y.y.y.y.y.y.y.y.y.y.r.4.-.X.' _ ) ( ( ( _ ` ' ' ' ' ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ' ' ' ` ` _ ( ~ ( ( _ [ O.*.>.0.y.y.y.y.y.y.y.y.y.r.r.y.y.y.y.t.y.r.y.y.y.r.t.y.r.r.t.t.y.t.t.t.t.t.t.e.e.t.y.<.d @ & : > : : : : > : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : : : : : : : : : : : > : @ @ Z 0.y.w.e.t.e.e.t.t.t.t.t.t.y.t.y.t.y.t.t.y.r.y.y.y.y.y.y.t.y.y.y.y.y.y.y.y.y.0.<.*..._ ( ( _ _ ` ` ' ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` [ ` ` ( Q Q E ' <.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.y.t.y.t.t.r.t.y.t.t.t.t.t.t.t.t.t.t.e.0.t.y.0.Z @ @ , : : : : : : : : : : : : > : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: > : : : : > : : : : : : : : : : > : O $ E y.y.t.0.t.t.t.t.t.t.t.t.t.t.t.t.t.t.r.y.y.y.y.y.y.y.y.r.y.y.y.y.y.y.y.y.y.4.%.[ ` ( ( _ ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ ( ( ` .:.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.r.y.y.t.y.y.t.r.y.t.t.t.y.t.t.t.r.r.t.t.0.t.y.y.E $ O : : : : > : : > : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : O ; ' y.y.0.0.e.t.t.t.t.t.t.t.t.y.t.t.y.y.r.y.r.y.t.y.r.y.t.y.y.y.y.y.y.y.y.0.:.} ` ( ( _ ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ( ~ _ [ *.8.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.y.y.t.y.y.y.y.t.y.t.t.t.t.t.y.t.t.t.e.e.e.y.y.' ; O : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > : : : : : @ 5 .y.y.0.e.e.t.t.t.t.y.t.t.t.y.t.t.y.t.r.y.t.y.t.y.y.y.y.y.y.y.y.y.y.t.8.%.[ ( ( ) ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ ( ( [ @.4.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.y.t.y.t.y.t.y.t.t.r.t.t.t.t.t.t.0.e.y.y.X.5 @ : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : $ r %.y.t.0.e.e.t.e.t.t.t.t.t.t.t.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.3.@.[ ( ( ( ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ ( ` O.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.r.y.q.t.y.t.t.t.y.t.t.t.t.t.r.t.e.e.t.y.%.r $ : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : > : : : : : : : : : , : @ i =.y.t.e.e.e.t.t.t.y.r.t.r.y.y.t.r.t.y.t.y.y.y.y.r.y.y.y.y.y.y.y.y.4.O.[ ( ( ) [ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` _ _ ` } -.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.t.y.y.t.y.t.t.y.t.y.t.t.t.t.t.e.e.y.y.&.i $ : : : : : : : : : : > : : : : > : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.> : : : : : : : : : : > : : : : : : + i -.y.t.t.r.e.t.t.t.t.t.t.t.y.t.t.y.y.y.y.t.y.r.y.y.y.y.y.y.y.y.y.8.@.' _ ) ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` _ ` ` ` ` ` ` ` ` ` ` _ ` ` ` ` ` ` ` ` ` ` ` ` ` ( ( _ ' %.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.r.y.y.r.t.t.r.r.t.t.e.t.e.e.0.t.y.-.i O : > : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : > : : : : : : : : : > : , : + i :.y.t.e.e.e.t.t.t.t.t.t.t.t.t.y.t.y.t.t.y.y.r.y.y.y.y.y.y.y.y.e.%.` _ ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` } X.o.o.o.o.o. .X.o.o.o...o.o...o...o.o.o...X.o.o. ...@.*.3.e.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.t.y.t.y.y.y.t.t.t.t.t.t.t.t.t.e.e.t.y.<.i + : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : @ i <.y.t.0.e.e.t.t.r.t.t.t.y.t.y.t.r.q.y.y.y.y.y.y.y.y.y.y.y.y.r.-.' ) _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` [ L n M M M M M M M M M M M M M M M M M M M M M M M M M V Y _ ( ~ ! ! W ! W ! ! ! W ! E ! W W ! W W ! ! R P &.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.y.t.y.r.t.t.y.y.t.t.t.t.t.t.t.e.t.e.y.<.i @ : : : : : : > : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : $ y ;.y.t.e.e.t.t.t.y.t.t.t.t.y.t.t.r.y.y.y.q.t.y.y.r.y.y.y.y.y.1.} ( ) ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` [ [ w + $ = % & = & & & & & & & & = & & & = & & & = % & & = $ $ @ @ $ $ @ $ $ $ @ $ $ @ $ $ @ $ $ $ @ $ $ . o ` y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.y.y.t.y.y.t.t.y.t.y.t.t.t.r.t.t.e.t.y.;.i $ : : : : : : : : : : : : : > : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : > : : : : : : @ r =.y.t.0.e.t.t.e.t.t.t.t.t.y.t.t.y.y.q.y.y.y.y.y.y.y.y.y.y.0.%.` ( ` ` ` ` ` ` ` ` ` ` ` ` _ ` ` ` ` ` ` ` } R 5 = : ; ; : : ; : : : : : : : ; : : : ; : : : : ; : : ; ; : ; ; : ; ; : ; ; ; : ; ; : ; ; : ; ; ; : : o 1 ;.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.y.r.y.t.t.t.t.t.y.t.t.t.t.t.0.t.y.&.r @ : , : : : : : : : > : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: > : : : : : > : : : : : : > 1 : O 5 %.y.r.e.r.t.t.t.t.t.t.t.t.y.r.t.y.y.y.y.q.y.q.y.y.y.y.y.y.1.{ ) _ ` ` ' ` ` ` ` ` ` ` ` ` ` [ ` ` ` ` ` ` ` o.D < - : < > : > > : > : > : : > : > > : : > : : : : > > : < : , : : : , : < : , : > : > > : > : > > > : O g 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.q.y.t.t.t.r.t.t.t.t.t.t.t.e.t.y.%.5 O : , : : : : : : : : : : : > : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : O : ..y.t.e.e.r.t.t.t.t.t.t.y.t.t.t.y.t.t.y.y.y.y.y.y.y.y.y.r.%.` _ ` ` ` ` ` ` ` ` _ [ ` ` ` ` ` ` ` ` ` ` ` ` [ ..x = ; < : : > : : : : > : > > > > > : > > : > : < : > : : < > : : , : : : < > : : : : > : > : > : > > = $ U y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.9.=.=.q.y.y.y.y.y.y.y.y.r.y.y.t.y.y.t.y.y.t.t.r.t.r.t.t.r.t.y...: O : > : : : : : : : > : : : : > : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : , @ = ' y.t.e.e.e.e.t.t.t.t.y.y.t.t.y.y.q.y.y.y.y.q.y.y.y.y.y.8...( ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ [ ` u = : : < : : : : : : : : : : ; : : : ; : : : : ; : ; : ; ; ; ; ; ; : ; ; ; ; ; ; ; : ; ; : > : > > 1 $ = O.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.,.@.' ( ( ..0.y.y.y.y.y.y.y.y.y.y.r.y.y.t.t.t.t.t.y.t.t.t.t.e.e.y.y.] & + > > : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : > : : : : : : : : : : : $ $ E y.y.t.e.e.t.t.t.t.t.t.t.t.y.r.y.t.y.y.q.y.y.y.y.y.y.y.<.` ( ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ [ _ @.E 1 = : : : : ; = % % $ = % % % % & $ % % % % % = % & & & * * = = & = % = * * = = * = & & = : > > : : > + 9 <.y.y.y.y.y.y.y.y.y.y.y.y.0.4.@.[ ( ~ _ ` ` ( ' <.y.y.y.y.y.y.r.y.y.y.y.r.y.t.t.y.t.t.t.t.t.t.t.0.0.y.y.! @ % , : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : 1 = O G y.t.0.e.e.t.t.t.t.y.r.y.y.t.t.t.y.y.y.y.y.r.y.y.y.y.y.=._ ) ' ' ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` [ _ ` ` @.D = = 1 : : : 4 x m c c c c c c c c c c c c c n c M M N M M C N M V V N M M C N M M M M Z M 8 - > > > : @ M q.y.y.y.y.y.y.y.y.y.t.9.-.[ _ ~ ( ` ` ` ` ` ' ( ` =.t.y.y.y.y.y.y.y.y.t.t.y.t.r.t.t.t.t.t.t.t.t.t.0.0.y.y.G + = : : : : > : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : > : : : > : : : : ; + g e.y.0.0.e.t.t.t.t.t.t.r.t.t.r.y.y.y.t.y.t.y.y.y.y.y.0.O.) _ ' ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ [ [ h = ; : : : ; n y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.r % : : > = @ / y.y.y.y.y.y.y.y.0.>. .` ( ( _ ` ` ` ` ` ` ` ` ` _ _ @.q.y.y.y.y.y.y.r.y.y.y.y.y.r.t.y.t.t.y.t.t.t.t.e.0.y.0.g O : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : > : : : : : : : : : : : > : o 9 <.y.t.e.t.t.t.r.t.t.t.t.t.t.t.y.y.y.t.y.y.y.y.y.y.y.0...( ` ' ` ` ` ' ` ` ` ` ` ` ` ` ' ` ` _ [ ` ` ` ` ` ` ` ` ` o._ 8 $ : : , ; = _ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.-.4 = > > > = : O.y.y.y.y.y.t.<.$.' _ ( _ ` ` ` ` ` ` ` ` ` ` ` ` ` _ ( ..0.y.y.y.y.y.y.y.y.t.y.y.y.t.t.y.t.t.t.t.t.t.t.0.t.y.<.5 O : > : : : : : > : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : > : O = .y.t.0.e.w.t.t.t.t.r.y.t.t.y.r.y.r.t.y.y.y.y.y.y.y.0.[ ( _ ' ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ [ ` ( [ R : = 1 : < ; - &.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.T = ; < : > @ i 2.y.y.y.4.*..._ ( _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ( [ 0.y.y.y.y.y.y.r.y.y.t.y.y.y.t.t.t.t.t.t.t.t.w.0.y.y...= + , , : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : , & o P y.t.0.r.t.t.t.t.t.t.t.y.t.t.y.t.y.y.q.y.r.y.y.y.y.9.' ( ` ` ` ' ` ` ` ` ` ` ` ' ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ( ~ ' *.J = = > : > = u 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.k @ > > : : + G y.9.:.} ` ( ( _ ` ' ` ` ` ` ' ` ` ` ` ` ` ' ` ` ` ` ` ` ` ~ ' 6.y.y.y.y.y.r.y.y.y.t.y.y.t.t.t.t.t.t.t.t.t.t.e.t.y.Y o = , : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : : > : : : : : , ; O g y.y.0.e.t.t.t.t.t.t.y.t.y.t.y.q.y.y.y.y.y.y.y.y.y.8.' ( ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` _ ( ( [ @.0.y.M @ : : > : @ F y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.9 @ , : > ; = T 1.[ ( ( ( ` ' ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ' ` ` ` ( ' 4.y.y.y.y.y.r.y.y.r.y.r.y.t.y.t.y.r.t.t.t.t.e.e.y.t.g O ; : : : : : : > : : > : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : > $ 5 <.y.0.0.t.t.t.t.y.t.y.t.r.t.y.y.y.t.y.y.y.y.y.y.y.4.' ( ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` ` ` ' ' ` _ _ ( ' O.<.0.y.y.q.r O , > : : $ _ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.} < = , > > = 4 P [ ( _ ` ` ` ' ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ' ( ' 9.y.y.y.y.y.y.y.y.y.y.y.y.r.t.t.y.y.r.t.t.t.r.e.y.<.5 $ : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : > : : : : : : : : : = ; _ y.r.e.e.t.t.y.t.t.t.t.t.y.t.y.t.y.y.y.r.y.y.y.y.4.' ( ` ' ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ' ` _ ( _ ` ..-.8.y.y.y.y.y.O.> $ , : > - 2 &.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.L # : : > , $ w ( [ ` ` ` ` ` ` ` ` ` ' ` ` ' ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ' ' ( ' 4.y.y.y.y.y.y.y.r.y.t.y.y.t.t.t.t.t.t.t.t.t.w.t.y._ ; = : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : $ b y.t.0.e.e.t.t.t.y.t.r.y.y.t.y.y.y.y.t.y.y.y.y.y.8.' ( ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ) ~ _ [ %.4.e.y.y.y.y.y.y.y.U & ; > : > @ d 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.x + > : : : $ d ..[ _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ' ` ` ` ' ` ( ' 8.y.y.y.y.y.y.y.r.y.y.y.r.y.y.r.t.t.t.t.t.e.e.t.y.M & : : : > : : : : : > : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : = 9 <.y.0.e.e.t.t.t.t.r.t.t.t.t.y.r.y.y.y.y.y.y.y.y.9.' ~ ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ( ( ' O.<.0.y.y.y.y.y.y.y.y.y.y.l O > : > : + Z y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.:.0 & , : , - : B ..[ ` ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ' ` ( ' 9.y.y.y.y.y.y.y.y.y.t.y.t.t.y.t.t.t.t.t.e.r.e.y.<.7 & > : : : : : : : : : : : > : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : > : : : > : : : : : : : ; = _ y.t.q.e.r.t.t.t.t.t.t.y.t.y.t.y.y.y.t.y.y.y.y.9.{ ( ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ ( ` ..-.0.y.y.y.y.y.y.y.y.y.y.y.y.<.r $ > > > ; ; ` y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.' = : : : 1 $ 2 E ..` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ( { 9.y.y.y.y.y.r.t.y.y.t.y.t.t.t.t.y.t.t.t.e.e.t.y._ = ; : : : : : : : : : : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : , : : $ c y.y.0.t.e.t.t.t.t.t.t.y.t.r.y.y.t.y.y.y.y.y.y.q...( ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` _ ` _ } =.4.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.] : = > > > % 9 <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.K # < : : : * w [ } ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` _ ( ..0.y.y.y.y.y.y.y.y.y.t.y.t.y.t.t.t.t.t.t.e.e.y.t.c $ : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : & 6 &.y.e.r.r.t.t.t.r.t.t.t.t.y.y.y.t.y.y.r.y.y.y.t.@.( ` ` ` ` ` ` ` ` ` ` ` ` ` _ _ ` [ #.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.P @ : : : > @ d 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.d = : > > ; = z } [ ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ) _ ' .,.y.y.y.y.y.y.y.r.y.y.t.r.t.y.t.y.t.t.t.t.r.e.t.y.%.5 = : : : : > : : : : : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : > : : : : : : : : : : ; % J y.t.e.e.r.t.t.t.r.y.t.y.t.t.y.y.r.y.y.y.y.y.y.*.( ` ` ` ` ` ` ` ` ` ` ` _ ( _ [ ..:.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.l @ : : : : = G t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.-.4 ; > : > = - K o.` ` ` ` ` ` ` ' ` ` ` ` ` ' ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ) ) ` } &.0.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.t.t.t.t.t.t.t.t.e.t.t.y.P $ ; : : : : : : : : > : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : > : : : > : : % t <.y.0.t.e.t.t.t.t.t.t.y.t.y.y.t.y.y.y.y.y.y.y.<._ _ [ ` ` ` ` ` ` ` _ _ ( ` ..*.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.&.6 & > > > = : ..y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.[ = : > : > % 1 ( o.` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` _ ( _ } %.1.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.r.t.y.t.t.y.t.r.t.e.e.y.<.r $ : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : - ; _ y.t.t.t.e.t.r.y.t.t.t.r.y.t.y.y.y.r.y.y.y.y.4.' ( ` ` ` ` ` ` ` _ _ _ } %.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.] $ = > : 1 & 5 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.Z ; : > : ; = u [ } _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ _ _ ' @.:.e.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.y.t.r.t.t.t.t.t.e.t.y.` ; ; : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : > * z t.t.e.r.t.t.t.t.t.t.y.t.y.y.t.y.y.y.r.y.y.y.t...( ` ` ` ` ` _ _ _ ' @.<.e.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.S @ ; , : : = k 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.u ; : : > - = m o.' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ _ ` ` ..-.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.y.t.y.r.y.t.t.t.t.t.e.e.t.e.z & > : : : : : : : > > : : , : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : , - : o.y.r.e.r.t.t.t.t.t.t.t.y.r.y.y.r.y.y.y.y.y.y.&.( ' ` ` _ ( _ ' o.-.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.i @ : > : ; = ! t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.=.4 ; : > > = ; Y @.` ` ` ` ` ' ` ` ` ` ` ` ` ' ` ` ` ' ' ` _ _ _ ` [ &.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.y.t.t.t.t.y.t.t.t.t.t.t.y. .: = > > : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : > : : : : : : : : : : 1 # v t.y.e.r.t.t.t.t.t.t.t.y.t.y.t.y.y.y.y.y.y.y.1.` _ _ ( ( _ } %.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.%.: $ 1 : 1 = - %.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.~ , : : : : = 6 ~ ..` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ ) ( ) [ @.<.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.y.y.t.t.y.t.t.t.t.t.t.e.y.t.c @ , : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : : : : : : : > = - o.y.t.e.e.t.t.t.y.t.t.t.r.y.r.y.y.t.y.y.y.y.q.[ Q ( ( [ %.<.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.' $ % 1 : 1 = 0 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.c ; : > : ; = a } ' ` ` ` ` ` ` ` ` ' ` ` ` ' ' ` ( ( ( ` O.-.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.y.t.y.y.y.t.t.t.t.t.t.t.e.t.y. .; = , : : : : : : : : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : , o c t.y.e.e.r.t.t.t.t.t.t.t.y.y.y.y.t.y.y.y.y.t...E ` o.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.M O ; , : , $ M q.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.i = : : 1 = = M @._ ` ` ` ` ` ` ` ` ` ` ` ' _ ( ( _ } -.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.r.t.t.t.t.t.t.t.e.e.y.t.c . 1 : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : > : : > , $ - %.y.t.r.e.t.t.t.t.y.t.y.r.y.r.y.y.y.y.y.y.y.1.[ %.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.2.9 o 1 : : > + _ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y. .6 = : : : ; 1 P ..` ` ` ` ` ` ` ` ' ` ` _ ( _ ' @.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.r.y.y.r.t.t.y.t.t.r.e.t.y.@.- $ > : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : . l y.y.e.e.t.t.t.t.t.t.t.y.y.r.y.r.y.y.y.y.y.y.9.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.%.; @ , : > ; > &.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.P ; ; : > : = r _ [ ` ` ` ` ` ' ` ` _ ) ( ] O.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.t.y.t.t.t.y.t.t.e.y.y.l . > : : : : > : : : : : : > : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : > : : : : : : , $ & ..y.t.e.e.e.t.t.t.t.y.t.t.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.E @ - , > , @ s 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.c @ : > : : = d } ` ` ` ` ' ` _ ) ( _ ..-.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.r.y.t.t.t.t.t.e.t.y.} % $ 1 : : : : : > : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : o i q.y.e.t.t.r.t.t.t.y.t.r.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.k . , > : 1 . Z y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.i $ : , , ; : M } ` ` ` _ ( ( _ [ %.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.t.y.t.t.t.t.t.t.t.y.0.i o , : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > & $ _ y.t.e.e.t.t.t.y.t.y.t.r.y.t.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.2.0 X , : > ; @ _ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.] 1 = : : : ; 3 Y [ ` _ ( ( ` O.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.t.y.t.y.y.t.y.t.t.t.r.t.e.t.y._ @ & < : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : > : : : : : : : : : : @ q 2.y.e.r.t.t.t.t.y.t.t.t.y.y.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y. .= = 1 > < @ 3 =.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.Y @ ; 1 : : ; 0 ` ` ( _ o.-.8.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.t.t.t.t.t.t.t.t.t.r.y.4.0 @ : : : : : : : : : : : : : - u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : > : : : : > > ; @ U y.y.t.t.t.t.t.t.t.t.t.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.N O : : > 1 . a 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.x $ ; : , : ; d ` ..%.8.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.r.y.y.t.y.t.t.t.t.t.t.y.y.U @ - > : : : > : : : > : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : % 2 &.y.0.t.t.t.t.t.t.r.t.r.y.y.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-.%.` r $ , : , : o G y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.-.9 % : > : ; : R 8.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.e.0.y.y.y.y.y.r.t.y.t.q.t.t.t.t.t.t.t.t.0.y.&.2 $ : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : + c t.y.0.t.t.t.t.y.t.y.t.r.y.r.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.<.@.[ ' ' P 3 = > : , $ = ] y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.} = & , : > = 3 ;.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.%.[ $.y.y.y.y.y.y.y.y.y.y.y.r.y.t.t.t.t.t.w.y.t.c @ : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.: : : : : > : : : : : : : > = - _ y.y.0.t.t.t.t.t.y.t.t.y.t.y.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.e.4.=.{ ' _ ` ' } Z = : , : 1 o 3 <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.P $ = > > : = d y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-.o.' ` ( ' 4.y.y.y.y.y.y.r.t.y.t.y.t.t.t.t.t.t.w.t.y._ - = : : : > : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : > : : > : > + r 2.y.e.e.t.t.t.t.t.t.t.y.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-...` _ ` ` ` ` ' ' z = , : : > o h 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.d $ : > > ; = P y.y.y.y.y.y.y.y.y.y.y.y.y.t.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.O.' _ _ ` ` ` ( $.y.y.y.y.r.y.y.y.r.y.t.y.t.y.t.t.t.e.e.y.2.r + , : : : : : > : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.> : : : : : : : : : : : : : + B y.y.e.t.t.t.t.t.t.t.t.t.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.>.O.' ( _ ` ` ` ` ` ` [ ( w = : , , = $ R y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.2 $ > : > ; = ..y.y.y.y.y.y.y.y.y.y.q.<.E k } y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.4.%.[ _ ) _ ' ' ` ` ` _ ' 4.y.y.y.y.y.y.y.y.y.r.t.t.t.t.t.t.t.e.y.y.N O : : : : : : : > : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > $ : [ y.t.e.t.t.t.t.y.t.y.t.y.y.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.4.%.[ _ ( _ ` ` ` ` ` ` ` ` [ Y > : : : 1 $ = O.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.' = = : > : = 7 <.y.y.y.y.y.y.y.y.4. .b 9 O , ;.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.0.=...' ( ( ` ' ` ` ' ` ` ' _ ( %.y.y.y.y.y.t.t.y.y.t.y.t.r.y.t.t.t.0.y.y.} ; $ > : > : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : , o r 0.y.e.e.t.t.t.t.r.y.t.t.y.q.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.8.=.} _ ) _ _ ' ` ` ` ` ` ` ` ` ' ' C - : : : , @ 0 <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.V % ; , : : % c y.y.y.y.y.y.0.&.U r : $ $ + k 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.,.o.` _ ( _ ` ` ` ` ` ` ` ` ` ` ` ( ' 0.y.y.y.y.y.y.y.y.y.t.t.t.y.r.t.t.e.t.y.0.q O , : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.: : : : : : > : : : : : , = + Z y.y.0.e.t.t.t.t.r.y.t.q.y.y.y.q.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.8.<. .` _ _ _ ` ' ` ` ` ` ` ` ` ` ` ` [ ` d - : : , ; + M t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.u @ , : : : @ U y.y.y.y.<./ k : & & = : : = P y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.%.' _ _ _ ` ` ` ` ` ` ` ` ` ` ` ' ` ' _ ) >.y.y.y.y.y.t.y.t.y.t.y.t.t.r.t.t.t.0.y.y.Z @ = > : : : : : : : : : : > : u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : > : , @ = ..y.t.e.e.t.t.t.t.t.y.t.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.<.@.[ ) ) ` ` ` ` ' ` ` ` ` ` ` ` ` ' ` ` ' _ 6 = , : , = # ( y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.-.3 & > : > = 2 =.y.4.} Z 7 + @ ; : > > > = , O.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.4.*.} ) ( ` ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ~ ..y.y.y.y.r.y.y.t.y.y.t.y.t.t.t.t.t.e.t.y...= @ , : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : , O 5 4.y.0.e.t.t.t.t.t.y.t.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.4.%.{ _ ~ _ ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ' [ Y , - , > > & : O.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.! ; ; > > : = a O.U t = X % , > > > > : > & 7 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-...` ~ _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ' _ ` 4.y.y.y.y.y.r.y.t.y.r.t.t.y.t.t.t.t.0.y.1.5 O : : : : : : : : : > : : : : u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : , ; @ b y.y.e.r.t.t.t.t.t.t.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.8.<.} ` ( ~ _ ` ' ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ' [ c ; : , : : $ p 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.c # : : > : : 3 3 @ X & > > > : : : > > : = c 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.O.` ( ~ ) ` ' ` ' ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ( %.y.y.y.y.y.y.y.y.y.r.t.y.t.t.t.t.t.e.y.t.M + - > : : > : : : : : : : : : u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.: : : : : : : : > : : : , $ $ _ y.t.t.t.t.t.y.t.t.y.r.y.y.r.r.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.1.@.` ( ~ ( ` ' ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` [ [ u = : : > ; + G y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.i $ : > : > , - @ - 1 1 > > > > > > > > ; = ^ y.y.y.y.y.y.y.y.y.y.y.y.t.4.*.[ _ ( ( ` ' ' ` ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` ` ` ` ' ' ~ { r.y.y.y.y.r.t.y.y.y.t.t.r.y.t.t.t.e.y.y._ @ % > : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : $ 1 %.y.0.t.t.t.t.t.t.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.1.%.{ ) ( ( _ ' ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ' [ ( 5 = > > , ; % ) y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y...2 = : : : : > > , > > > > > : > > : > > - ; &.y.y.y.y.y.y.y.y.y.y.8.-.o._ ( ( _ ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ' _ ` 1.y.y.y.y.y.y.y.r.y.t.t.y.t.t.t.t.t.0.y.%., $ : : : : : : > : > : > : : u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : $ a 4.y.0.t.t.t.t.t.t.r.y.y.t.y.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.*...` ( ( _ ` ' ' ` ` ` ` ` ' ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ` ' { G 1 ; : : > % 5 %.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.E $ = 1 : 1 > : > : > : > 1 : : > > > : > = r 4.y.y.y.y.y.y.y.q.:.O.' ) ( _ ` ' ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ' ` ` ` ` ' ` ` ` ` ` ` ` ' ` ( &.y.y.y.y.y.y.y.y.r.y.t.t.t.t.t.t.t.0.y.6.p $ ; > : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : = @ A y.y.t.t.t.t.t.y.t.y.t.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<. .' _ ( _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ' ` ` ` ` ` ` ' ..x = : : > , + s t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.M @ : , : : : : > > > 1 ; X O : , > > > > @ B t.y.y.y.y.r.4.%.] _ ( _ ` ` ' ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ' ` ` ` ` ) } 0.y.y.y.y.y.r.y.t.y.r.y.t.t.t.t.t.0.y.y.Z + - > : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.: : > : : : : : : : : : , = & ~ y.0.0.t.r.t.t.r.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.e.1.&.' _ ( ( ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ' ` ` [ ' i % : < > : + D y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.:.r $ : : : : > > > > = X + i M 3 & > : > > @ ` y.y.y.4.-.} _ ( ( ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` _ ` 4.y.y.y.y.y.y.y.y.y.t.t.t.t.y.t.t.t.0.y.~ & = > : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : & 3 .y.e.t.t.t.t.t.y.t.q.y.q.y.q.y.y.y.y.y.y.y.y.y.y.4.=...` ( ( _ ` ' ' ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` [ E 5 = , : > = : ] y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.} = % : : 1 : : ; = @ 1 x / 0.>., + 1 : : = 3 *.t.<.O.` ( ( _ ` ' ` ` ` ` ' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ) -.y.y.y.y.q.y.y.y.q.y.t.y.t.y.t.q.t.0.y. .3 & : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : $ p 4.y.e.t.t.t.t.y.r.t.r.y.y.y.y.y.y.y.y.y.y.y.0.:. .' _ ) _ _ ` ' ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` } D ; : : : , + 5 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.R # = 1 1 - = * = u R %.0.y.y.! # = 1 > 1 $ i ..@._ _ ) _ ` ' ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ( o.t.y.y.y.y.y.y.q.q.y.t.r.t.t.t.t.t.e.y.4.i % : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : : : : : : : > : : : ; $ c y.t.r.t.t.t.t.t.t.t.t.y.q.y.t.y.r.y.y.y.1.O.[ ` ( _ ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ' ` ` ` ` ' ` ` ` ' ` ` ` ` ' ` ` ` ` ' ` ` ' [ x & : : , : + d y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.k @ : = # ; 5 M ..4.y.y.y.y.t.k . : : > > @ k [ ` _ ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ' _ _ ~ ' 0.y.y.y.r.y.y.y.y.t.t.y.t.y.t.t.t.e.y.y.x $ ; : : > : : : : : : : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : : : : : : : : : : : ; = G y.t.r.t.t.t.t.t.t.y.t.y.t.y.y.y.y.y.y.4._ ( _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` [ ) i = : : > = $ P y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.-.1 # 1 d ~ 4.0.y.y.y.y.y.y.<.9 O 1 : > : = M } ' ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' _ ( _ [ @.1.y.y.y.y.y.y.y.t.q.y.y.t.t.t.t.t.t.e.e.y.G = ; : : : : : : : : : : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : : : : : : : : : : : - > ~ y.t.e.t.t.t.t.t.t.t.y.y.y.t.y.y.y.y.y.=.( _ ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` [ R 1 ; : > 1 $ - O.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.) O 8 L %.0.y.y.y.y.y.y.y.y.y.] = = , : > & 3 R } ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` _ _ ( ' O.<.0.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.t.t.t.t.t.t.y.~ > = : : : : : : : : : : > : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : : : : : : > : : : : = 5 O.y.r.e.t.t.t.t.y.y.t.t.y.y.t.y.y.y.y.t.o.( ` ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` [ D - : , : , @ 9 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.o.) 4.y.y.y.y.y.y.y.y.y.y.y.y.P X , : : , @ w ' [ ` ` ` ` ` ' ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ' ` ` ' ` ` ' ` ` ` ` ` ` ` ` ` ` ` _ ` ..-.0.y.y.y.y.y.y.y.y.y.y.r.r.y.y.y.t.t.t.t.t.t.t.t.t.y. .5 = : : : : : : : : : : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : : : : : : : : : : : = r <.y.e.e.t.t.t.t.t.t.r.y.t.y.y.y.y.y.y.0.[ ( ' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ _ [ ..n = : : > ; @ M y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.h O 1 : < : % k } } ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ ` ' } *.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.t.t.t.t.y.t.t.t.y.<.r & : : : > : : : : : : : : ; u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : : : > : : : : : : : $ p y.y.0.t.t.t.y.t.t.t.r.y.y.t.y.y.y.y.y.8.` ( ' ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ' ` ` ' ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` _ ` _ ( ` { %.0.9.p ; : : , = $ ~ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.*.3 = < : < = ; G } ' ` ` ` ' ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ' ` _ _ ( ` [ O.<.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.t.y.t.t.t.t.t.e.y.y.p % : : : : : : : : < : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : > : : : : : : : : : : = x y.y.0.e.e.t.t.t.y.y.t.y.r.y.t.y.y.y.y.<._ _ ' ` ` ` ' ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ' ` ` ' ` _ _ ( _ [ #.<.t.y.y.-.5 ; > : , $ : .y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.] $ : , : , $ 2 ( ..` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ' _ _ _ ( ' O.-.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.t.y.t.t.t.t.t.e.y.y.x = ; : : : > : : : : : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.: : : : : : : : : : : : : ; - G y.y.e.e.e.t.t.t.t.t.y.y.t.y.y.y.y.y.y.=.( ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ' ` ` ` ' ` _ ) ( ` O.-.0.y.y.y.y.y.~ , ; : > : $ i 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.K $ , : : : $ r ] } ` ` ` ` ` ` ` ` ` ` ' ` ` ` ' ` ` ' ` ` ` ` ` ` ` ` ` ` ` _ ) ( _ } *.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.q.t.t.t.t.t.t.t.y.y.Z ; ; : : : : : : : : : : : : : u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.: : : : : : : : > : : : : - : E y.t.r.t.t.t.y.t.y.t.y.y.y.y.y.y.y.y.y.O.~ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ) ( ` [ -.4.y.y.y.y.y.y.y.y.b - : > > - + Z y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.p = , , , - = n } ' ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ( ( _ [ %.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.t.y.y.y.y.t.y.t.t.t.t.t.y.W : ; : : : : : : : : : : : : : u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.: : : : : : : : : : : > : = , ] y.t.e.t.t.t.t.t.t.y.t.t.y.r.y.r.y.y.t...~ ' ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` _ ( _ [ $.4.t.y.y.y.y.y.y.y.y.y.0.r = : > > = = ( y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.-.: = : : , & = Y ..' ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` _ _ ` ' X.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.t.t.t.t.t.t.t.t.t.y.' 1 = : : : : : : : : : : : , : u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.: : : : : : : : : : : : > = 1 %.y.e.e.e.t.t.t.t.t.r.y.y.t.y.r.y.y.y.0.} ( ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ) ( _ [ O.,.t.y.y.y.y.y.y.y.y.y.y.y.y. .5 - : : : = 5 %.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.` = ; : 1 : * 5 ( o.` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ' ' ' ` _ ) ( ` X.-.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.t.y.y.t.t.y.t.y.0.t.y.%.1 = : : : : : : : : : > : : : u.u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : > : : : : : : : : & 3 -.y.e.e.e.e.t.y.t.t.t.r.y.y.y.y.y.y.y.8.' ) ' ` ` ` ' ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ' ` ) ( ( ) ..-.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.P ; ; > : : $ f 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.M & : : : ; = a ' [ ` ` ' ` ` ` ` ' ` ` ` ` ` ` ' ` ` ' ' _ ( ) _ } %.1.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.t.t.t.t.t.t.w.0.y.-.2 = , : : : : > : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : > & 5 4.y.e.e.t.t.t.t.t.y.t.y.r.y.y.y.y.y.y.4.` _ ' ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ` ' ` _ ( ~ _ ] %.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.v $ : : > ; % C y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.e % > : 1 - * V } ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ( ~ ( ` O.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.t.y.q.y.y.t.t.t.t.t.t.t.y.1.3 & : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: ; : : : : > : > : : : : : & 6 4.y.e.t.t.t.r.y.t.y.t.y.y.y.r.y.y.y.y.1._ _ ' ` ` ` ` ` ` ` ` ` ` ' ` ` ` ' ` _ ( ( ' O.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.e * : > > - , _ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.&.: = , : : = : Y ..` ` ` ` ` ` ' ` ` ` ` ` ` ' ' ` ~ ~ _ ..:.9.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.t.y.t.t.t.t.e.0.y.4.5 = : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : > % 9 4.y.0.e.t.t.t.t.y.t.y.y.t.y.y.y.y.y.y.>._ _ ' ` ` ` ` ' ` ` ` ` ` ` ` ` ` ( ( ` ..-.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.&.~ y ; : : : > = 0 <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.' d - : : 1 : = w ( } ` ` ` ` ` ` ' ` ` ` ' ` ` _ ~ _ { &.4.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.y.t.t.t.t.r.y.4.7 % : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : & 9 4.y.e.e.t.t.t.t.r.t.t.y.t.y.t.y.y.y.y.-.~ ` ` ` ` ` ` ` ` ` ` ' ` ` _ ( _ } =.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.3./ M 5 @ $ : : : > : = d y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y...L u = $ : , , : : & h [ ' ` ` ` ` ` ` ` ' ` ` _ ( ( ' @.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.t.t.t.t.t.e.e.y.4.9 = : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : > : : : : : = 0 4.y.e.e.t.t.y.r.t.y.y.t.y.y.y.y.y.y.y.*.~ ` ` ` ` ` ` ` ` ' ` ( ) _ ' #.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.} N r = @ $ & : > > > : ; ; K y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.P d 2 @ @ & ; < : : : ; = V ..' ` ` ` ` ` ' ` _ ( ( ` o.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.t.t.y.y.y.t.t.t.r.t.e.y.4.0 & : : : : : : : : : : : > : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : & e 8.y.0.t.t.t.t.t.t.t.t.y.t.y.y.y.y.y.y.*.~ ' ` ` ` ` ` ` ` ( _ ' ..<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.&.J y , % $ = ; : > > : : > , : > ..y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.] x 9 = $ = - : , , : : : 1 = 3 Y } ` ` ` ` ' ` ) ( ` { =.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.t.t.t.t.t.e.e.y.4.0 & : : : : > : > : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : & q 4.y.e.e.t.t.t.y.y.t.y.y.y.y.t.y.y.y.y.%.~ ` ` ` ` ` _ ( _ } %.9.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.-.~ a , & & = : : , , : > : > : , : o : 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0...Z 5 = = & ; : : > > : : : : 1 : O 8 ` } ` ` ` ` ~ ) { @.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.t.y.t.t.t.t.t.t.t.y.4.r = : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : & r 8.y.e.e.t.t.t.t.t.t.t.t.t.y.y.y.y.y.y.%.( ` ` ` ) ( [ $.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.~ 3 % & & - > , : : > : > > : : ; @ = p ~ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.%.P p = $ = = : > > > > : : > < : : = & 2 C } [ _ _ ( ' O.-.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.y.t.t.y.t.t.t.t.e.y.4.r & : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : > : : : > : : : & r 4.y.0.e.t.t.t.t.y.y.y.y.t.y.y.q.y.y.y.@.~ ` ) ` @.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.q $ - , > > : : : : : : : ; - = 9 Z { 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.c : $ $ = ; > > : : > : > > : : ; - 1 s C Q [ ` _ _ ..:.0.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.y.y.y.y.t.y.t.t.y.t.t.t.e.y.4.r % > : : : > : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : & r 8.y.e.e.t.t.t.t.t.t.t.y.y.y.y.y.y.y.y.@.~ ..:.8.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.%.1 ; , > > : , > : : = = ; 3 z ] <.q.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y._ # @ : : > , : > : : : : ; = ; 1 r n Y _ [ [ [ [ %.4.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.[ %.y.y.y.y.y.y.t.y.y.y.t.t.t.t.t.t.e.y.4.r = : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : & r 9.y.e.e.t.y.t.t.y.t.t.r.t.y.r.y.y.y.y.<.<.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.W > : : : : : : = @ & 3 i P <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.C + : > > : : 1 : : : - = : 8 h K _ ` ` ` [ @.<.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.e.3.$.[ ' Q @.y.y.y.y.y.q.y.y.q.y.t.q.t.t.t.t.r.y.9.r = : : : : : : : : : : > : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : > : : > : : : : : : = r 8.y.e.e.t.t.t.t.r.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.c = : > > > : $ - i D .t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.i O > > : < : ; ; = = 3 d Z ( [ _ _ [ O.-.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.=.{ ) _ ` ` ( %.y.y.y.y.t.y.y.t.y.y.t.y.t.t.t.t.0.y.4.w & : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : $ r 9.y.e.e.t.t.y.r.y.r.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.r = : : : : ; h ' 8.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.&.4 % , : > 1 ; = ; r M R [ [ _ _ } =.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-...` ( ` ` ` ` ` ~ $.y.y.y.y.y.y.y.q.y.t.t.t.t.t.t.t.t.y.4.0 & : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : & 0 4.y.e.e.t.t.t.t.t.t.t.y.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.} 3 - > : > % 5 =.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.E $ : > : > = 1 z Y _ ..[ ` [ %.1.e.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.<.O.' ( ( ` ' ` ` ` ` ' ~ %.y.y.y.y.y.t.y.y.y.y.t.y.t.t.t.t.0.y.4.0 = : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : > > : : : : : : : % 0 4.y.e.e.e.t.t.t.y.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.J - : : > : $ k t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.M X 1 : > > $ i } O.' ' X.<.e.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.4.%.[ _ ( _ ' ' ` ` ` ` ` ` ` ~ =.y.y.y.y.y.y.y.y.t.y.t.t.t.t.t.t.0.y.4.0 & : : : : : , : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : = 9 4.y.0.e.t.t.t.t.t.t.t.y.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.l $ : > : : $ Z y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.r $ > > > ; & c O.O.*.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.8.-..._ _ ( _ ` ' ` ` ' ` ` ` ` ` ` ( -.y.y.y.y.t.t.y.y.t.t.t.y.t.y.t.t.0.y.4.9 = : : > : : : : : : : : : > : u.u.u.u.u.u.", +"u.u.u.u.u.u.: ; : : : : : : : : : : : : & 9 4.y.e.e.t.t.t.y.t.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.w = : : > - , ' y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.O.- ; > : 1 $ : ` 8.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.O.' ( _ _ ` ' ' ` ` ` ` ` ` ` ` ` ` ` ( :.y.y.y.y.y.y.t.y.y.y.t.y.t.t.t.t.e.y.4.6 = : : : : : : : : : , : : ; : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : & 6 4.y.e.r.t.t.t.t.t.t.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.` - - > : > & 0 <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.! + , : : 1 X q t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.3.@.[ ) ~ _ ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` _ <.y.y.y.y.y.y.y.y.t.y.t.t.t.t.t.t.0.y.4.5 = : : : : : : : : : : : : ; : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : : : : : : : : : : : = 3 4.y.0.t.t.t.t.t.y.t.y.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.K @ ; , : : % d y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.c $ , > > ; + Z y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.4.=.} _ ~ ( ` ' ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ' _ ` 1.y.y.t.y.y.y.y.y.y.t.t.y.t.t.y.e.e.y.4.3 = : : : : : : : : : : : : : : u.u.u.u.u.u.", +"u.u.u.u.u.u.: : : : > : : : : : : : : : = 2 <.y.0.e.t.t.t.t.t.t.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.g $ : > , ; = P y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.9 ; , > , $ & ] y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.o.` ( ~ ) ` ` ` ' ` ` ' ` ` ` ` ` ' ` ` ` ` ` ' ` ' ) ' 0.y.y.y.y.y.y.t.y.t.y.t.t.t.t.t.e.e.y.,.3 & : : : : : : : : : : : > : : u.u.u.u.u.u.", +"u.u.u.u.u.u.u.: : : : : : : : > : : : 1 = 1 %.y.e.e.t.t.t.t.t.t.t.y.y.t.y.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.+.1 = : : : = < O.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.O.= > : : , + , -.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.<.%.] ( ( ( _ ' ' ' ` ` ` ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ' ' ( [ 0.y.y.y.y.y.y.q.y.t.y.t.t.t.t.t.t.t.y.%.1 = < : : : : : : > : : : : : u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.: : : : : : : : : : : : : = , } y.r.t.t.t.y.t.t.y.y.t.r.y.q.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.-.G & ; 1 : : & 5 8.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.R = : > > : O a 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.*.{ ` ( _ _ ` ' ' ` ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ' ( } r.y.y.y.y.y.t.y.y.t.t.t.y.t.t.t.e.t.y.[ 1 = : : : : : : : : : : : : ; u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.: : : : : : : : : : : : : - : ! y.r.e.t.t.t.t.t.y.q.y.y.q.y.q.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.5.=.{ ' ' d = : > : : = x y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.j ; < : 1 = + J y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-...' ` ( _ ` ' ' ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ' ~ O.y.y.y.y.y.y.t.y.y.y.t.y.t.t.t.t.r.t.y.! : ; : : : : : : : : : : : : : u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.: : : : > : : : : : : : : ; ; K y.y.e.e.t.t.t.t.t.t.y.q.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-...` ) ( [ ` 7 = : : > - * ~ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.5 ; : : 1 $ & ] y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.<.@.' _ ( _ ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ` ` ( %.y.y.y.y.y.y.y.y.q.t.t.r.t.t.y.t.t.t.y.G ; ; : : : : > : : : : : : : : u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : : : : > : : : : : ; = c y.y.e.t.t.t.y.y.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.-.O.' ) ) ( ` ' ..R : = , : > = ; &.y.y.y.y.y.y.y.y.y.y.O.K -.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.] 1 : : : : $ 9 -.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.1.%.{ ) ( ) _ ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` _ ( >.y.y.y.y.y.r.y.r.y.y.t.t.t.r.t.t.e.y.y.c = ; : : : : : : : : : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : > : : : : : : : : : = a y.y.0.t.t.t.t.t.t.t.t.q.y.r.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.%.} ` ( ` _ ` ` ` ' [ M ; ; > : : * i 4.y.y.y.y.y.y.y.4.E z 2 1 -.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.Z - : : < ; $ c y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.*...` ) ) _ ` ' ' ' ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` _ ` 4.y.y.y.y.y.y.y.y.t.t.y.t.t.y.t.t.e.y.y.a = : : : : : : : : : : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.; : > : : : : : : : : : : & r 4.y.0.t.t.t.t.t.t.y.y.t.y.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.9.*.} ' _ _ _ ` ` ` ` ` ` [ ' i - : : > ; $ Z y.y.y.y.y.0.} m w : $ O x 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.a & : : > - % R y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.>.O.[ _ ) _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ( ' 0.y.y.y.y.y.y.y.r.r.t.t.t.y.t.t.t.t.y.4.r = : > : : : > : : : : : : - u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.; : : : : : : : : : > : : = 7 O.y.e.t.t.t.t.t.y.t.t.t.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.O.' ` _ ` ` ` ` ` ' ` ` ` ` { ) 8 = : > > ; % ) y.y.e.&.P w : = = - : + E y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.-.9 - : > > = , ] y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.4.#.[ ` _ _ ` ` ` ' ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ( } t.y.y.y.y.r.y.t.y.y.y.y.t.t.t.t.t.t.y.O.6 = : : : : : : : : : : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : : : > : : : : : : : = 1 ` y.e.e.t.t.t.t.t.t.t.y.y.y.y.y.r.y.y.y.y.y.y.y.t.1.#.' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` { G , ; , : : = 9 -.<.~ k : = - ; : : > : : .y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.~ < - > : : & y <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.3.=.} ` _ ` ` ` ` ' ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ' ` ' ` ` ` ` ` ` ` ` ` ' ` ` ` ` ( %.y.y.y.y.r.y.y.y.y.t.t.t.t.t.t.t.t.t.y._ , = > : : : : > : : : : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : : : : : : : : : : : ; = J y.t.0.t.r.t.y.t.y.r.y.r.r.y.y.y.y.y.y.y.y.4.*.} _ ( ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` [ ..x ; : : : : ; w n w @ $ ; : > > : : > $ r 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.M $ ; > > : % b y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.:.O.[ ( ` ' ' ' ' ' ' ' ' ' ' ' ' ` ` [ ' ' ` [ ' ' ' ' [ ' ' ' [ ' ' ' ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ( ( <.y.y.y.y.y.y.t.y.r.y.r.y.t.t.t.t.e.t.y.H - - : : : : : : : : : : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.: : : : : : : : : : : : > ; $ M y.y.t.t.t.t.t.y.t.t.t.y.y.y.y.y.y.y.y.0.o.` ( ) ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` [ [ r = : < : : , ; $ % : < : > > : > : 1 . C t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.p $ : > : - ; ! y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.e.3.@.{ _ ) ` ' ' ' ' ` [ ' ' [ ' ' [ ' ' [ ' ' [ ` ' [ ' ` [ ` ' ' ' ' ' ' ' [ ` ` ` ` ` ` ` ` ` ` ` ` ` _ _ ` ` O.e.y.y.y.y.y.y.y.y.y.t.y.t.t.y.t.t.t.t.y.v $ : : : : > : : : : : : : : : u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.: : : : : : : : : : > : : $ a 8.y.0.t.t.t.t.t.r.y.r.y.y.t.r.y.y.y.y.0.] ~ ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` [ Q 5 = : : < > : , , < : > : : > > : : : @ ~ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y. .2 = > : > - 2 Z ` ~ ~ ~ ~ ~ ~ ( ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! P C n c n M M M M M M M M M M M M M M M M M M M M n M M M M M M M M M M M M M M c Y ' ' ` ' ` ` ` ` ` _ _ _ ' } =.0.y.y.y.y.y.y.r.r.y.r.y.t.t.t.t.t.t.w.w.y.4.p $ : : : : : : : : > : : : : u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : & 7 O.y.w.t.t.t.t.t.t.t.t.y.t.y.r.y.y.y.y.y.=.( ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` o.D : - : < : : > > : : : : > > : > : 1 $ 1 %.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.! $ ; : > > : > ; = = - - ; - = = - = ; - = - ; - = - - = = = - ; ; ; ; ; ; ; ; ; ; ; - ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; = $ V } ' ` ` ' ` _ ( ( ` } &.1.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.y.t.t.t.q.w.y.+.6 & : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.: : : : : > : : : : : : : = = _ y.0.t.t.t.t.t.t.y.y.t.y.y.y.y.y.y.y.y.1.) _ ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` } k * ; < : < > : : > : 1 : : : > : > 1 . u 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.C $ : > : > > : : : : ; ; ; : : ; : ; : ; : ; : ; : ; ; : : : : : ; : : ; : : ; : ; : : ; : ; ; : : ; : ; : : : ; : ; : : ; : : ; : : = 2 P } ' ` ` ) ( _ ' @.<.0.y.y.y.y.y.y.y.y.y.y.y.y.r.y.t.y.t.t.t.t.t.t.q.0.y./ = & : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.: : : : : : : : > : : : > = @ K y.t.e.t.t.t.t.t.t.t.r.t.y.y.y.y.y.y.y.0.[ / ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` [ _ r = : : : : : > < : : & = , , : : : : o V t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.r $ : : > > > : > > > , , : , : , 1 : > > : , > > , : , , : : > : : > : , : : : , : , : : : : : : : : : : : : : : , : > : > : > > : , % r ` [ _ ( ( ` ..-.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.t.t.y.y.t.t.t.t.r.y.y.G @ - : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : ; $ g 0.y.e.t.t.t.t.t.r.y.y.y.r.y.t.t.y.y.y.y.@.( ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` O.R 1 = : > : 1 : : ; $ = 1 9 1 : : , 1 = = ] y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.O.= = 1 > > > , > > > > : 1 1 : : , : 1 > : 1 1 > > > 1 , : : 1 1 : : 1 : 1 1 : : , : 1 1 : 1 1 1 > , 1 < < < < < : , , > : : > > : > > $ k [ _ _ } &.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.t.t.t.t.y.t.t.e.y.0.f $ ; > : : : > : : : : : > : : u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : $ 3 &.y.e.t.t.t.t.t.y.y.t.y.r.y.y.y.y.y.y.y.<._ _ ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` @.C & = 1 1 : = = = ; 9 z Q G ; ; > : 1 O 1 <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.R # = : ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; - : > : : > : ; = C O.@.<.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.r.y.y.r.y.t.t.t.t.t.0.y.%.2 $ > : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : 1 $ $ ` y.t.r.t.t.t.t.t.t.t.r.y.y.t.y.y.r.y.y.0.[ ( ' ` ` ` ` ' ` ` ` ` ` ` ` ` _ [ { h = ; ; = = = 3 a Z ( [ } M & : : , , O u 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.e.i . @ $ @ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ @ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ @ $ $ $ $ @ $ $ $ $ $ $ $ $ $ $ $ ; 1 > > : 1 @ 5 X.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.t.t.t.t.t.t.t.t.y.` $ $ > : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : , = @ Z y.y.e.e.e.t.t.r.t.t.y.y.t.y.y.y.y.y.y.y.O.( ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ O.` 8 O @ $ ; r V R _ [ ' o.} p % : : 1 ; @ K y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.G c M V M M M C M N M N M M V V M M M C V V V M M M V V M M M C V V V M M M V V M M M C V V V V M M V V M M M C M V V Z B w = : > > , . k y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.y.q.r.y.t.t.t.t.0.y.y.Z @ = > : > : : : > : : : : : : u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.: : : : : : : : > : : : : : O 0 4.y.e.e.t.t.t.y.r.y.t.t.y.y.t.y.t.y.y.y.<._ _ ' ` ` ' ` ` ` ` ` ` ` ` ` ` @.K O + 5 h Y _ ' ' ` } =.0.-.2 = 1 : , $ % ..y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.t.t.t.t.y.t.t.t.t.t.t.y.t.t.t.t.y.t.t.t.t.t.t.y.t.t.t.t.y.t.t.t.t.t.t.y.t.t.t.t.y.t.t.t.t.t.t.y.t.t.t.t.y.t.t.r.r.r.y.0.d # 1 : > ; + U y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.t.y.t.t.t.t.t.e.t.e.y.4.0 + : : : : : : : : : : > : : : u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : , + - %.y.r.e.t.t.t.t.t.t.t.y.r.y.y.y.y.y.y.y.e.[ ( ' ` ` ` ` ' ` ` ` ` ` ` ` ' } M w V ` [ [ [ { $.3.q.y.y.} $ ; , : 1 $ 2 -.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.-.1 = > > > @ > O.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.y.y.y.r.t.t.t.t.t.y.@.= @ 1 : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.; : : : > : : : : : > : > = @ P y.y.e.r.t.t.y.t.t.t.y.t.y.t.y.y.y.y.y.y.*.( ` ' ` ` ` ` ` ` ` ` ` ' ' ' _ ~ ` } ' [ O.:.0.y.y.y.y.t.B = ; : , ; @ k 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y./ + , > > , X 9 7.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.y.t.t.t.t.t.t.t.t.e.y.y.L @ = > > : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.: : : : < : : : : : > : : 1 O u 0.y.e.r.t.t.t.t.t.y.t.t.y.y.y.y.y.y.y.y.8.` ( ` ` ` ` ` ` ` ` ` ` ` ` _ _ ` [ O.=.4.y.y.y.y.y.y.y.4.r $ > : > ; @ E y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.B $ 1 : > : O c y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.t.t.t.y.t.t.t.e.y.0.u o > : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > + : O.y.t.e.t.t.t.t.t.y.t.y.t.t.y.t.y.y.y.y.y.X.( ` ' ` ` ` ` ` ` ` ` _ ( ` [ %.4.t.y.y.y.y.y.y.y.y.y.-.1 % , > > = = .y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.r - : : , & $ / y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.t.y.y.t.y.y.t.t.t.t.t.t.y.O.: @ , : > : : : : : : : : : > : u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : : : : : : : ; @ G y.y.e.e.t.y.t.t.t.y.t.y.r.y.y.y.y.y.y.y.<.) ) ' ` ` ` ` ` ` ( _ ' O.1.t.t.y.y.y.y.y.y.y.y.y.y.y./ = - > : : % e <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.%.: , : 1 , @ : +.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.t.t.t.t.t.t.e.y.y.G @ : : : : : : : > : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : + i 0.y.e.e.t.t.t.t.t.t.t.y.y.y.t.y.y.y.y.y.y...) ' ` ` ` _ ( ` O.:.0.t.y.y.y.y.y.y.y.y.y.y.y.y.y.q.c @ > : : : + M y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.! = : : : : + y 4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.t.y.t.y.t.t.t.t.t.r.e.y.0.i O : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : < : : : : : : : = : ] y.t.t.t.t.t.t.t.t.t.y.r.y.y.t.y.y.y.y.y.<.` _ ` ` ) ..=.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.q + 1 : > ; @ ! y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.x ; < : , = @ G y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.y.t.t.t.t.y.t.q.t.y.] : & : : : : : : > : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : @ M y.y.0.t.t.t.t.t.y.t.t.y.t.q.y.y.y.r.y.y.t..._ ] #.1.q.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.O., & , > : = 2 O.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.9 ; : : , & = ` y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.t.t.y.t.t.t.t.t.q.y.y.M + : : : > : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : $ 6 -.y.e.t.t.t.t.t.y.t.t.r.y.t.y.r.y.y.y.y.y.<.,.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.R $ : > : 1 O i 8.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.} 1 ; : , : $ 5 %.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.t.t.t.t.t.t.t.t.w.y.-.6 % : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > = $ ~ y.t.r.t.t.t.t.r.y.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.c o , > : : O m y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.G : : : , : @ k 0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.t.y.y.r.y.t.t.t.t.t.y.y.! $ = , : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : > : : : : : : @ p 9.y.e.t.t.t.t.t.t.y.r.y.t.y.r.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.r $ , , , = = _ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.d * : : , ; @ K y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.r.t.y.r.t.t.t.t.e.y.6.p + : : : : : : : : : > : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : > : : : : : : : : : : $ = } y.t.e.t.t.t.t.t.t.t.t.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.} = ; , > , O 2 -.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.0 = > > : = , ] y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.r.y.y.t.t.y.t.t.t.t.t.t.y.} & $ , : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : 1 : O k t.y.e.e.t.t.t.t.t.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.P O , > > , . u t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.) > ; : > : & r <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.r.y.r.y.y.r.t.t.t.t.t.t.e.y.t.k O : , : : : : : : > : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : , $ = +.y.t.e.t.t.t.t.y.t.t.t.r.y.r.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.k % , : > ; + F y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.Z $ : , : > $ l y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.t.y.t.t.t.t.t.t.y.O.= @ , : : : : : : : : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : > : : : : : . M y.y.t.e.t.t.t.t.t.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.5 ; : , , $ * { y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.d $ : : : ; = P y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.y.y.y.y.t.y.r.t.y.r.r.t.y.t.t.t.e.y.y.M . : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : > : : : : : : : : , + 1 -.y.r.e.t.r.y.t.y.r.y.t.t.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.} = : : : 1 O 1 -.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.&.5 = : : , = 3 .y.y.y.y.y.y.y.y.y.y.0.*.4.y.y.y.y.y.y.y.y.y.y.y.t.t.t.t.t.t.t.e.t.y.-., @ , : : : : : : : : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : , . D y.y.e.e.t.t.t.t.y.r.t.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.P = , , > : O d t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y._ $ ; > > , $ q 0.y.y.y.y.y.y.y.0.<.O._ } 0.y.y.y.y.y.y.y.r.t.y.y.t.t.y.t.t.t.e.0.y.y.Z . , : : : : : : : : > : : > : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: > : : : : : : : : : : : : , % 1 *.y.t.e.t.t.t.t.t.t.t.r.y.t.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.a ; : : , = @ R y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.Z @ ; , : : & x y.y.y.y.y.y.2.=.[ _ ~ ) 4.y.y.y.y.r.y.t.y.y.y.y.t.t.t.t.t.t.t.t.t.y.&., & , : : : : > : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : : : : : : > : 1 o Z y.y.w.w.t.t.t.t.t.t.r.t.y.y.r.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.,.2 ; > > < $ = } y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.t & : : , = ; / y.y.y.4.-.o._ ( ( _ _ :.y.y.y.y.y.y.t.y.y.t.y.y.t.r.t.t.t.t.t.t.y.t.B + , : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : - 1 %.y.0.w.t.t.t.t.y.t.y.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.` > : : > : $ 9 -.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.&.; = , : : * 1 -.y.,.@.' ( ( ) ` ' ) O.t.y.y.y.y.y.y.y.y.y.t.r.t.t.t.t.t.t.t.t.t.y.&.1 = > : : : : : : > : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : > : : : > : : : : : : : > % M y.t.t.e.t.t.t.t.t.y.t.r.y.y.y.y.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.N ; : > > - $ v y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y._ * ; > : < = 0 @.$.` ( _ _ ` ' ' ( [ 0.y.y.y.y.y.y.y.r.y.t.y.t.y.y.t.t.t.t.t.t.y.y.b % : : : > : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : - , .y.t.e.t.t.t.t.t.t.t.t.y.y.r.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.<.r = : > > = % ~ y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.M & ; > : ; = h ' ' ` ` ` ` ` ' _ _ <.y.y.y.y.y.y.y.t.y.y.y.y.t.t.r.t.t.t.t.t.e.y...> - : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : > : : : : : : : : $ d 0.y.e.e.t.t.t.t.t.t.t.t.t.y.t.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.=. .L 3 ; : > : - > v ! T T T T T T T T T T T R T T T T T T T T T T T R I T T T T T T R T T T T T T T R T T T T T T T T T T T R T T T T T T T T T T T T T T T R T T T T T T Y T T T T T T T T R T T T T T T T I I I I Y E P 5 ; : , , ; = Z ..` ` ` ` ` ' ` ~ =.y.y.y.y.y.y.y.r.y.t.y.t.t.y.t.t.t.t.t.r.e.y.0.a $ : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : - = ! y.t.w.r.t.t.t.t.t.y.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-.O.' ( [ n : : : > > > > & $ $ $ $ $ $ $ $ $ $ $ $ $ @ $ $ $ $ $ $ $ $ $ @ @ $ $ $ $ $ $ $ $ @ $ $ $ $ $ $ $ @ $ $ $ $ $ $ $ $ $ $ $ @ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ @ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ @ $ $ $ $ $ $ $ $ $ $ @ $ $ ; : : : : - 1 E o.` ` ' ` ` ` ( @.y.y.y.y.y.y.t.y.y.y.y.r.y.t.t.t.t.t.t.t.e.t.y.! = - : : : : : : : : : : : > : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : > $ q ,.y.w.e.e.t.t.t.t.t.t.t.t.q.y.t.y.y.y.y.y.y.y.y.y.e.<.O.[ _ _ _ ` { a = : > : > : > ; ; ; ; ; - ; ; ; - : ; ; ; ; - ; ; ; ; ; ; ; ; ; ; ; ; ; - - ; ; ; ; - ; ; ; ; ; ; ; - ; ; ; ; ; - : ; ; ; ; - ; ; ; ; ; - ; ; ; - : ; ; ; ; - ; ; ; ; ; - ; ; ; - : ; ; ; ; - ; ; ; - : - ; - ; ; - ; : : , : : = r _ { ` ` ` ` ` ( ..0.y.y.y.y.y.y.y.t.t.y.t.y.y.t.t.t.t.t.e.e.e.y.>.r $ : : : : : : : : : : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : > : : : : : % Z y.y.e.e.t.t.t.y.t.y.y.r.y.t.y.y.t.y.y.y.y.y.y.e..._ _ _ ` ` ` { ~ 0 = : : > : > : > > > > > < < < > : < > > < > < < > > < > < < , , < < < > < < < > < > < < > > < > < > < < > > , > : < > > < > < < > > < > > < > , : < > > < > < < > > < < < < > > : < > > < > < < > > > > > > > > < < , , : : : : & z } ' ` ` ` ` ( [ 9.y.y.y.y.y.r.y.y.y.y.y.t.r.t.t.y.t.t.t.t.e.y.y.Z $ : : : : : : : > > : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : : : : : : : : : = , } y.e.e.e.t.t.t.t.t.t.t.t.y.y.t.y.y.y.q.y.y.y.y.<._ ( ' ` ` ` ..P 1 ; > > > : > > > > > > , > > > : : < : > : > > : : : , : : , : : : : > : > > : : > > > > > > : > : > : > > : , > : < > : : > : > > > : > : > : > : < > : : > : > > > : > : > : > : < > : : : : > : > : > : > > : : : : : , > : ; ; Z O.` ` ` ` ( ` 4.y.y.y.y.y.y.y.y.y.t.y.t.t.y.t.t.t.t.t.t.t.t.y.} , = : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : > : : : : : = i 6.y.e.e.e.t.y.t.t.t.y.r.y.t.y.y.y.y.y.y.y.y.y.y.<.) ( ' ` ` o.n $ - ; ; : ; ; : ; ; : ; ; ; ; ; : ; : : ; : ; : ; : ; : ; ; : : : : : ; ; ; ; ; : ; ; ; ; ; ; ; ; ; : ; ; ; ; ; ; ; ; : - ; : ; ; ; ; ; ; ; : ; ; ; ; : - ; : ; ; ; ; ; ; ; : ; ; - ; - : : : : ; : ; : ; : : ; : : : : : ; ; ; = 5 E [ ` ' ' ( _ 1.y.y.y.y.r.y.y.r.y.y.q.t.y.t.t.y.t.t.t.t.t.e.y.4.i = : : : : : : : : : : : > : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : > : : : : : : : : : : ; & G y.t.e.e.t.t.t.t.t.y.t.t.y.y.r.y.y.r.r.y.y.y.y.y.,.) ) ' [ ' u $ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; - ; ; : ; ; ; ; ; ; ; ; ; = ; ; = = = = = = = = = = = = - = = - = = = = = = = = - = = = = = = = = = = = = = = = - = = = = = = = = = = = = = = = - : : - - ; ; ; ; ; ; ; ; ; ; ; ; ; - ; ; ; ; % u [ ' ` ' ( _ <.y.y.y.y.y.y.y.y.y.q.y.y.y.t.y.r.t.t.t.t.t.e.t.y.K & ; : : : > : : : > : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : > : : : : : = > ..y.e.e.e.t.t.t.t.t.t.y.r.t.y.t.y.y.y.y.y.y.y.y.y.-._ ) [ ( n k k k l k l k k l l k k k z l k z k z k k l k k k k k z z z k h d z M B G K J K H K K H K G K G K K K H H H K H K K G K K K K H H H K K H K K H H K G K K K K H H H K K J J J P P K B M x k z k z k z k k k k l k k z k k z k k f G { ` ' ( ` <.y.y.y.y.y.y.y.r.y.y.y.q.y.r.y.t.t.t.t.t.t.t.t.y...> = : > : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : > : : : : : > : @ r 7.y.0.e.t.r.t.t.t.r.y.t.t.y.y.y.y.y.y.y.y.y.y.y.y.-._ ) ' [ [ { [ [ } [ { [ [ [ } [ [ { { [ { [ [ { { [ { { { } [ ' ` ` ' ..=.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-...{ { [ { [ [ [ [ [ { [ { { [ ] } { { [ [ { { [ ` ` ( _ <.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.r.t.t.t.t.t.t.w.y.6.r @ ; > : : : : : : : : > : : : > : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : > = + M y.y.e.t.t.t.t.t.t.t.t.y.t.r.t.y.t.y.r.y.y.y.y.y.y.-.) ( [ ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] [ ] ' ] ] [ ' _ ) _ [ @.<.e.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.<. .' ` ' ] ] ' [ [ ' ] ] ] ] ] ] ] ] ] ] ] ' ] ] ] ] ' ` ( ` <.y.y.y.y.y.y.y.y.t.t.y.t.t.r.t.t.y.t.t.t.t.t.0.y.y.M + - > : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : > : : : : : > : : : : : > % % ` y.t.e.t.r.t.y.t.t.t.t.y.t.t.y.t.y.y.y.y.y.y.y.y.y.-.) ( ` ` ` ` ` ' ` ` ` ` ` ' ` ` ` _ ` ' ` ` ` ' ) ~ ~ ( } -.4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-...` ~ ( ` ` ` ` _ ` ` ` ` ' ` ` ` ' ` ` ` ' ` ` ` ' ` ` ` ` ( _ <.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.y.t.t.t.w.t.0.y.y.` % $ > : : > : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : : : : : : : : : > o , ;.y.e.e.t.r.t.r.y.t.y.t.t.r.y.y.y.y.t.y.y.y.y.y.y.y.<.) ( ` ` ` ` ` ` ` ` ` ' ` ` ` ' ' ` ` ' ` ) ( _ { $.4.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.O.' ~ ~ _ ` ' ` ` ` ` ` ' ` ` ` ' ' ` ` ` ' ` ` ' ` ` ` ' ' ` ` ( _ 2.y.y.y.y.y.y.y.t.y.y.y.t.t.y.t.t.t.r.t.t.y.w.0.w.y.-., o > : : : : : : > : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : > : : > : : : : > : . t 0.y.t.e.t.t.t.t.t.t.t.y.t.t.y.y.r.y.y.y.y.y.y.y.y.y.2.' ( ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` _ ( ( ' @.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.1.%.[ _ ~ ( ` ' ' ` ` ` ` ` ' ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ( [ 4.y.y.y.r.y.y.y.y.y.t.y.y.r.y.t.t.t.t.t.t.t.t.t.e.y.0.r X : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : 1 = O M y.y.0.t.t.t.t.y.t.t.t.t.y.t.y.y.t.t.y.y.y.y.y.y.y.y.4.[ ( ` ' ` ` ` ` ' ` ' ' ` _ ( ( ` ..=.8.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.8.-.o.` ( ( _ ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ' ` ` ` ' ` ( } 9.y.y.y.y.y.y.y.y.r.y.y.t.y.t.t.y.t.y.t.t.t.t.t.0.y.y.M O = , : : : : : > : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : > : : : : : : > : : : : : = @ ! y.y.0.t.e.t.t.t.t.t.t.t.t.t.r.y.y.t.y.q.y.y.y.y.y.y.0...( _ ` ` ` ` ' ` ` ( ( ( [ *.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.:.O.[ ( ( ( ` ' ' ` ` ` ` ' ` ` ' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ' _ ( @.0.y.y.y.y.y.y.y.y.y.y.r.y.y.t.t.r.r.t.t.t.r.e.t.e.y.y.! @ & , : : : > : : : : : : : > : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : @ = } y.t.0.e.w.t.t.t.t.t.y.t.y.t.r.y.y.y.y.q.y.y.y.y.y.y.e.#.( _ ' ' ` _ ~ ( ` @.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.4.%.[ ` _ _ _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ( _ =.y.y.y.y.y.y.y.y.t.y.y.t.y.t.t.y.t.y.r.t.t.t.e.e.e.y.y.} - @ : , : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : > : : : : : : : : : : , : O , %.y.t.0.t.t.t.t.t.t.t.r.y.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.:._ ( ( ~ ` ..-.0.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.-.} ` ) ( ` ` ` ` ` ` ' ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ' ` ~ ' <.y.y.y.y.y.y.y.y.y.y.y.r.y.t.t.y.r.t.t.t.t.t.t.t.e.t.y.%.> O : > : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : . 6 -.y.t.0.t.t.t.t.t.t.t.t.y.t.r.y.t.y.y.r.r.y.y.y.y.y.y.y.4.} [ &.4.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-.O.` ( ( _ ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ' ` ` ` ` ` ` ` ( ..0.y.y.y.y.y.y.y.y.y.t.t.y.y.r.y.t.t.t.y.t.t.t.t.t.e.t.y.-.6 X : : : : : : : : : > : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : , ; o i <.y.t.e.e.t.t.t.y.t.t.t.t.r.t.t.y.t.y.y.y.y.r.y.y.y.y.y.t.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.<.@.[ _ ( _ ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ) ' -.q.y.y.y.y.y.y.y.y.y.y.y.y.t.r.t.t.y.y.t.t.t.t.t.t.e.q.y.<.y X ; , : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : > : : : : : : : : ; O g 4.y.t.e.t.t.t.t.r.y.t.t.y.t.r.y.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.4.%...` ) _ _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ' ` ` ' ` ' ` ` ` ` ` ' ` ` ` ' ` ` _ _ ..4.y.y.y.y.y.r.y.y.y.y.t.y.y.t.y.t.y.t.t.r.t.t.t.t.t.t.t.y.4.g + ; , : : : : > : : : : : : : : > : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : 1 : $ c 4.y.t.e.t.r.t.t.t.t.t.t.t.t.t.y.y.y.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.0.-...' ` _ _ ` ` ` ` ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ ( ' -.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.t.y.t.t.t.t.t.t.t.t.t.q.y.4.c $ ; 1 : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : ; % c 0.y.t.t.t.t.t.t.t.t.t.y.y.t.t.y.y.y.y.y.r.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.@.` _ ` ` ` ` ' ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ' ` ` ` ` ` ` ' ` ` ` ` ` ( _ @.0.y.y.y.y.y.y.y.y.r.y.y.t.r.y.y.r.y.t.t.t.y.t.t.t.t.t.t.t.y.5.v $ ; , : : : : : : : : > : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: > : : : : : : : > : : : : : : , ; @ x 7.y.t.r.r.t.t.t.t.t.t.y.t.r.y.r.t.y.y.y.y.y.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.<.%.[ _ _ ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ' ` ` ` ` ` _ _ ..4.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.r.y.t.t.t.t.t.t.t.t.t.e.r.y.4.c @ ; , : : : : : : : : : : : : : > : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > : : : > ; + c 4.y.t.r.e.t.t.t.t.t.t.t.t.t.t.y.y.r.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.0.*.} ` ( ) ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ' ` ` ` ` ' ` ` ' ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` _ _ } <.t.y.y.y.y.y.y.y.y.y.r.y.y.t.y.t.y.y.t.t.y.r.t.t.t.t.t.t.t.t.y.0.c @ ; , : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : , ; @ x 4.y.t.e.e.t.t.t.t.y.t.t.y.t.t.t.y.r.y.t.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.:...` _ ( ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ' ` ' ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ ) ` } -.t.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.y.t.t.y.t.t.y.t.t.t.t.t.0.t.y.4.x @ ; , : : : : > : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : , ; $ k <.y.t.t.t.t.t.t.t.t.t.t.y.y.t.t.t.y.r.y.y.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.$.' _ _ _ ` ' ` ` ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ) ( _ ..-.t.y.y.y.y.y.y.y.y.y.y.r.y.r.t.y.t.y.y.t.y.t.t.t.t.t.t.t.t.t.e.t.y.<.g % ; , : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : > : $ p -.y.t.e.r.t.t.t.t.r.y.r.t.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.4.*.} _ ( ` _ ` ' ' ` ` ` ` ' ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ' ` ` ` ` ` ' ` _ ( ( ` O.<.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.t.y.t.t.y.t.y.t.t.t.t.e.e.t.r.t.y.-.i $ : , : : : : : : : : : : > : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : > : : > : : : : : : : : : : ; + 9 %.y.t.r.t.t.t.t.t.t.t.t.t.y.t.t.t.r.t.y.t.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.-.} ` ( ) ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ' ` ` ` ` ` ` ` ' ` ` ` ` ` ` ` ` ` ( ( _ ' %.1.y.y.y.y.y.y.y.y.y.y.y.r.q.y.y.y.y.t.y.y.t.y.t.y.t.t.t.t.t.t.r.e.e.y.y.&.7 @ ; : : : : : : : : : : : : : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: > : : : : : : : : : : : : : : : > : X : } y.y.t.e.t.t.t.t.t.t.t.y.t.y.t.t.y.y.t.t.y.t.y.y.y.y.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.<.O.' ( ~ _ ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ` ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` _ ( ( ( ` ..>.0.y.y.y.y.y.y.y.y.y.r.r.y.y.q.y.y.y.t.y.y.y.r.t.y.r.t.t.t.t.t.t.t.e.e.y.y.} : o : , : : : : : : > : : : : : : : : : > u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : > : : > : : : : : : : : : : > : o & W y.y.t.0.t.t.t.t.t.t.t.t.t.t.y.t.t.y.y.y.q.y.y.r.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.%._ ~ Q ( _ ` ' ' ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ' ' ' ` ` ` _ _ ~ _ [ o.-.9.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.t.t.t.t.t.y.t.r.t.t.t.t.t.t.0.e.y.y.! = o : : : : : : : : : : : : > : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : > : : : : : > > @ @ B 0.y.t.e.0.t.t.t.t.t.t.t.t.t.t.y.t.t.r.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.8.*...] ` _ ) ( ) _ ` ` ` ` ' ` ' ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ` ' ` ' ' ` ` ` ` _ ) ) ( ( _ } @.-.0.y.y.y.y.y.y.y.y.y.y.r.y.q.y.y.y.y.y.y.y.t.y.y.r.y.t.t.r.t.t.y.t.t.t.t.w.0.y.y.0.V @ @ > > : : : > : : : : : : : : : : > : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : > : : : : : , * O p -.y.y.e.0.t.t.t.t.t.r.y.t.t.t.y.y.t.r.r.y.y.t.t.y.r.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.0.4.>.@.} ` ) ( ( ( ( ( ) _ ` ` ` ' ` ' ' ' ' ' ' ' ' ' ` ` ` ` _ _ ( ( ( ( ( ( ` { @.-.4.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.r.t.t.y.r.y.t.t.t.t.y.t.t.t.t.t.t.0.e.y.y.-.p O $ , : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : > < = O 1 ' y.y.q.0.e.t.t.t.t.t.t.t.t.t.t.y.t.t.y.y.t.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.0.8.1.=.@.} ] ' ` ) ( ( ~ ~ ~ ~ ( ~ ~ ~ ~ ~ ( ~ Q ~ ( ( _ _ ` ' { @.*.<.9.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.t.y.y.y.y.t.t.y.t.t.y.t.t.t.t.t.r.t.e.t.y.y.' 2 o = , : : : : : : : : : : : > : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : , : O $ B 0.y.t.0.e.e.t.t.e.t.t.t.t.t.r.t.y.t.r.y.y.r.y.r.y.r.t.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.0.0.9.3.:.-.%.@.O...} } } } } } ......O.@.%.=.>.2.0.0.e.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.t.y.y.y.r.y.y.y.r.y.r.t.y.t.t.t.t.t.t.t.t.t.t.r.0.t.y.0.B $ O : , : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : > : : : : : : : : : > : : : : $ O t ..y.y.0.e.r.e.t.t.t.t.t.t.t.r.t.t.y.t.y.t.y.y.r.y.r.y.y.y.y.y.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.r.q.q.e.t.t.t.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.t.y.y.y.t.t.t.t.t.y.r.t.t.t.t.t.t.t.t.e.e.e.y.y...t o $ : > : : : : : : : : : : : : : : > : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : > : : : : : : : : : : : , = O > P 0.y.y.e.e.e.e.t.t.t.y.t.y.t.t.t.t.t.t.r.t.r.y.y.y.t.y.y.r.y.y.y.t.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.y.y.y.t.y.r.y.t.y.t.t.y.y.t.q.t.r.y.r.y.t.t.t.t.t.t.t.t.t.t.t.w.y.y.0.K , O = > : : : : > : : : : : > : : : : : : : ; u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : : : : < : : : : : : : : : : , : $ = p | y.y.t.e.r.t.t.t.t.t.t.t.t.t.t.t.t.t.y.t.t.y.t.y.t.t.r.y.y.y.y.y.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.t.y.y.y.y.t.y.y.y.y.y.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.e.e.t.y.y. .i & $ : , : : : : : : : : : : : : : : : : : : - u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : = & 1 G 4.y.y.e.e.e.e.t.t.t.t.t.t.y.t.y.t.y.t.y.y.t.t.y.y.y.y.t.t.y.y.r.y.y.r.y.y.t.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.y.y.y.y.y.r.y.r.y.r.y.y.y.y.t.t.y.y.t.t.t.t.t.y.t.y.y.t.t.r.t.y.t.t.t.t.t.r.e.y.y.2.G 1 & - : > : : : : : : > : : : : : > : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : > : : : : : : : = = r _ 0.y.t.e.e.e.t.t.r.t.t.t.t.t.t.t.y.t.t.y.t.t.t.y.t.y.t.y.y.t.y.y.y.y.y.y.y.y.r.y.y.t.q.y.r.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.q.y.y.y.y.y.r.y.r.y.r.y.y.y.y.y.y.y.t.t.y.y.y.t.y.t.y.t.y.t.y.t.t.t.t.t.y.t.t.r.t.t.t.t.t.y.0._ r = = : : : : : : > : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : > : : : : : : : : > : : : : & = z .t.y.t.e.r.e.t.t.t.t.t.t.t.t.t.t.t.t.t.y.y.t.t.r.y.t.y.y.y.t.y.r.y.t.y.t.y.y.y.y.y.y.y.y.r.y.r.y.y.y.y.t.r.y.y.r.y.y.y.y.y.y.t.y.y.y.y.y.y.y.t.y.r.y.q.y.y.y.y.y.t.r.y.t.t.r.t.t.t.r.y.t.t.t.t.t.t.t.r.e.t.t.y.t.X.k = % : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : > : : : : : : : : : : : : : = @ 1 Z -.y.y.y.t.e.t.t.t.t.t.t.t.t.t.t.y.t.t.r.t.t.t.y.t.y.t.q.y.y.t.y.y.y.y.t.y.y.t.y.y.y.y.y.y.y.y.t.y.y.y.y.y.y.y.y.t.y.y.t.y.y.y.y.t.y.y.t.y.y.t.y.y.y.y.r.y.t.y.t.t.y.t.t.r.t.t.t.t.t.t.t.t.t.t.t.e.t.y.y.t.:.B , @ ; : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : > : : : : : : : : : : : = % 5 G -.y.y.y.t.t.r.t.t.t.t.t.t.t.t.t.t.t.t.r.y.y.t.t.y.t.r.t.y.y.r.t.y.t.y.y.t.y.t.y.t.y.y.y.t.t.y.y.t.y.t.y.t.y.y.y.t.y.y.r.y.q.y.y.t.y.y.r.y.t.t.t.t.t.t.t.r.y.t.r.t.t.y.t.t.t.t.t.t.t.t.e.t.t.y.y.t.-.G 5 & = : : : : : : : > : : : : : : > : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : > : : : : > : : : : : = $ 3 K -.y.y.y.t.e.e.t.r.t.t.t.t.t.t.t.y.t.t.t.y.r.t.t.t.t.t.r.y.t.t.y.y.y.y.y.y.t.y.r.y.r.y.y.y.q.y.y.y.y.r.y.t.y.y.t.y.y.t.r.y.y.q.y.t.t.t.t.y.y.t.y.t.y.r.t.t.t.t.y.t.t.t.t.t.t.t.0.t.t.y.y.y.<.K 3 $ = : : : : : : : : : : : : : : : : : : : : > : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : : : : > = + 5 K =.t.y.y.t.e.e.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.y.y.r.t.t.t.y.r.t.r.t.r.t.t.y.t.y.t.y.t.y.t.y.t.t.y.t.y.t.r.t.y.t.y.t.t.y.t.t.t.t.y.y.t.r.t.t.r.t.t.r.y.t.t.t.t.t.t.t.t.t.e.t.t.y.y.q.=.K 3 O = , : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: ; : : : : : : : > : : : : : : : : : : : : : : > 1 $ X , c O.6.y.y.y.e.e.0.e.e.e.t.t.t.t.t.t.t.t.t.t.y.t.y.t.t.y.t.y.t.t.t.y.t.y.y.t.t.t.t.y.t.y.t.y.t.t.y.t.y.t.y.t.t.t.t.y.y.t.t.t.t.y.t.y.t.t.t.t.t.t.t.t.t.t.t.e.e.e.0.e.y.y.y.7. .c , X $ , , : : : > : : : : > : : : : : : : : : : : : : ; : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : > : : : : : > , > @ X = d ' <.y.y.y.y.t.e.e.e.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.y.t.t.t.t.t.t.y.y.t.t.t.t.r.r.r.y.r.t.y.t.t.t.t.y.t.t.t.t.t.y.t.t.t.t.t.t.t.y.t.t.t.t.t.t.e.e.t.y.y.y.y.>.' d = X @ , 1 : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : > : : : : : : : : : > : : : : : : : > : : : : , > $ o % 0 G .9.y.y.y.y.r.e.e.e.t.t.t.t.t.t.t.t.t.t.t.t.t.y.t.t.t.y.t.t.t.t.t.t.t.t.t.t.t.t.y.t.y.t.r.t.t.t.t.t.t.y.t.t.y.t.t.t.t.t.t.t.t.t.t.t.t.t.r.t.y.y.y.y.0. .G 0 $ O @ > 1 : : : : : : : > : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : : : : : , : & @ @ : k E %.y.y.y.y.y.t.e.e.w.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.y.t.t.t.t.t.t.t.t.t.t.t.y.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.0.e.0.t.y.y.y.y.t.&.E f : + @ & : 1 : : : : : : : : : : : : : : : : : : : : > : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : > : : : : : : : : : : : : : : : : : : : : : , : ; = # $ 5 h R =.t.y.y.y.y.y.e.w.e.t.t.t.t.t.q.t.t.t.t.t.t.t.t.y.t.t.t.t.t.t.y.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.q.t.t.t.t.0.e.y.y.y.y.y.t.=.R d 5 $ + = ; : , : : : : : : : : : : : : : : : : : > : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.; : : : : > : : : : : : : : : : : : : : : : : : : : : : : ; @ O & 2 i P .<.y.y.y.y.y.t.0.0.0.w.t.t.e.t.t.t.t.t.t.r.r.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.t.e.e.0.0.0.t.y.y.y.y.y.<. .P p 1 $ O $ ; : 1 : : : : : : : : : : > : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : > : : : : : : : : : : : : : : : : 1 > = O O @ = 6 c E } ;.t.y.y.y.y.y.t.t.t.t.t.t.t.t.e.e.t.r.e.e.e.0.e.t.e.e.e.e.t.r.r.e.t.t.t.t.t.t.t.t.y.y.y.y.y.t.-.} ! c 6 = $ o + = 1 : : : : : : : : : : : > : : : : : : : > : : : : : : : > : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : > : : : : : : : > : > : : : : : : : : : : : : > > 1 = @ + @ @ = 0 x P / ..<.t.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.r.<...^ P x 0 = @ @ + @ = : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : > : : : : : : : : : : : : : : : : : > : : : : : : : : 1 : - = @ $ $ @ = 3 r g M P ! ] &.<.0.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.y.e.1.%.] ~ J M k r 3 = @ $ $ $ & ; : , : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: ; : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : > > > : ; = = = & % % = : 2 9 q i a a d k z l l c c c c c c x l k k f a a i r 9 3 > & $ & & & = = ; : , , > : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : ; : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: ; : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : > : > : : ; ; ; ; = = = % & & = = = = = = & = = = = = = = & = % % % & = = - - ; ; : : , : , : : : : : : : : : : : : : : : , : : : < : : : : : : : : : : : : ; : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : ; : : : : : ; ; ; : : : ; : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : > : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: ; : : : : : : : : : : : : : : : : > : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : > : > : : : > : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : ; : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: ; : : : : : : : : : : > : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : > : : : : : : : : : : : : ; : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : ; : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : > : : : : : : : : : : > : : : : : : : : : : : : : : ; : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: ; : : : : : : : : : : : : : : > : : : : : : : : : : > : > : : : : : : : : > : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : ; : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : > : : : : : : : : : : : : : : > : : : : : : : : : : > : : : : : : : > : : : : : : : : : : : : : : : > : : : : : : > : : > : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : ; : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : > : : : : : : ; : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : > : : : : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : ; : : : : : : : : : : : : : : : : > : : : : , : : : : : : : > : : > : : : : : : : : > : : : : : ; : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : ; : : : : : : : : : : - : ; : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.: : : : : : : ; : : : : : : : : : : : : u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.", +"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u." }; diff --git a/share/pixmaps/bitcoin32.png b/share/pixmaps/bitcoin32.png index 367abfcc8e0f4..faa1b6c66e6b4 100644 Binary files a/share/pixmaps/bitcoin32.png and b/share/pixmaps/bitcoin32.png differ diff --git a/share/pixmaps/bitcoin32.xpm b/share/pixmaps/bitcoin32.xpm index bffedd4c68e6e..caae0bdd64fea 100644 --- a/share/pixmaps/bitcoin32.xpm +++ b/share/pixmaps/bitcoin32.xpm @@ -1,140 +1,101 @@ /* XPM */ static char *bitcoin__[] = { /* columns rows colors chars-per-pixel */ -"32 32 102 2", -" c #CC7D1D", -". c #D5831F", -"X c #D48221", -"o c #D98621", -"O c #DC8820", -"+ c #DC8D2C", -"@ c #D98F36", -"# c #D68F39", -"$ c #DD943E", -"% c #E28B23", -"& c #E98F24", -"* c #E18F2D", -"= c #ED9124", -"- c #EC942A", -"; c #F59624", -": c #F89724", -"> c #F79827", -", c #F89825", -"< c #F0962B", -"1 c #F59A2D", -"2 c #F99B2B", -"3 c #EC9732", -"4 c #EC9A37", -"5 c #E2963B", -"6 c #E6983A", -"7 c #EC9C3B", -"8 c #F69D33", -"9 c #F99E32", -"0 c #F49E3A", -"q c #F9A036", -"w c #F6A13C", -"e c #F9A33B", -"r c #D79341", -"t c #DC9641", -"y c #E39A43", -"u c #EA9D42", -"i c #EFA041", -"p c #EDA34B", -"a c #F5A443", -"s c #F9A643", -"d c #FAA846", -"f c #F2A64C", -"g c #F9AA4B", -"h c #E5A251", -"j c #ECA756", -"k c #EBA758", -"l c #FAAF57", -"z c #FBB057", -"x c #FBB25B", -"c c #DFB179", -"v c #E4AA65", -"b c #EBAE64", -"n c #E9AF69", -"m c #FBB665", -"M c #F1B46A", -"N c #F8B96D", -"B c #E5B071", -"V c #EBB777", -"C c #EEB877", -"Z c #E7B478", -"A c #EBB97D", -"S c #F0B671", -"D c #F2B871", -"F c #EFBC80", -"G c #E6BD8D", -"H c #EDBF88", -"J c #E6BF90", -"K c #F1C187", -"L c #F1C288", -"P c #E5C093", -"I c #EEC493", -"U c #E1C19B", -"Y c #E9C69C", -"T c #ECC89D", -"R c #F1C897", -"E c #DFC5A4", -"W c #DBCBB8", -"Q c #E2C7A7", -"! c #EBCBA6", -"~ c #E6CBAB", -"^ c #E9D2B7", -"/ c #E5D1B9", -"( c #EBD6BD", -") c #EFD9BE", -"_ c #DDD0C2", -"` c #DCD7D2", -"' c #DEDEDE", -"] c #ECDAC5", -"[ c #EDDECB", -"{ c #E9E0D5", -"} c #E7E0D9", -"| c #E9E2DB", -" . c #EFE8DF", -".. c #E5E5E5", -"X. c #EBE7E2", -"o. c #EFEAE6", -"O. c #ECECEC", -"+. c #F2ECE6", -"@. c #F1F0EE", -"#. c #F4F4F4", -"$. c #FBFBFB", -"%. c None", +"32 32 63 1", +" c #3C3D3B", +". c #3F403E", +"X c #40413F", +"o c #434442", +"O c #484947", +"+ c #525351", +"@ c #575856", +"# c #585957", +"$ c #5B5C5A", +"% c #5F605E", +"& c #60615F", +"* c #636462", +"= c #6B6C6B", +"- c #737473", +"; c #777876", +": c #7A7A7A", +"> c #7F807F", +", c #838484", +"< c #878888", +"1 c #8B8B8B", +"2 c #8F908F", +"3 c #90908F", +"4 c #8F9091", +"5 c #929393", +"6 c #97989A", +"7 c #9A9B9B", +"8 c #9FA09F", +"9 c #A3A4A4", +"0 c #A7A8A7", +"q c #A7A8AA", +"w c #A9A9A9", +"e c #AEAFB0", +"r c #AFB0B1", +"t c #B3B4B4", +"y c #B6B7BA", +"u c #B7B8BB", +"i c #BABBBD", +"p c #BDBEC1", +"a c #BFC0C2", +"s c #C3C4C6", +"d c #C5C6C9", +"f c #C7C8CA", +"g c #CBCCCD", +"h c #CECFD1", +"j c #CFD0D2", +"k c #D1D2D3", +"l c #D6D7D8", +"z c #D7D8D8", +"x c #DADBDC", +"c c #DFDFE1", +"v c #DFE0E1", +"b c #E3E4E4", +"n c #E7E8E7", +"m c #E7E7E8", +"M c #E7E8E9", +"N c #EBECEC", +"B c #EFEFF0", +"V c #EFF0F0", +"C c #F4F4F4", +"Z c #F7F7F8", +"A c #F7F8F8", +"S c #FCFDFD", +"D c None", /* pixels */ -"%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.", -"%.%.%.%.%.%.%.%.%.%.%.%.%.%.t 5 5 $ %.%.%.%.%.%.%.%.%.%.%.%.%.%.", -"%.%.%.%.%.%.%.%.%.%.%.r u w q 9 9 9 8 4 # %.%.%.%.%.%.%.%.%.%.%.", -"%.%.%.%.%.%.%.%.%.y s e 9 2 , , , : > 2 9 q 5 %.%.%.%.%.%.%.%.%.", -"%.%.%.%.%.%.%.%.s q 2 , , , , : , > 2 2 > > 2 9 %.%.%.%.%.%.%.%.", -"%.%.%.%.%.%.t e 1 , , , , : : ; > 2 9 9 2 , , > 2 + %.%.%.%.%.%.", -"%.%.%.%.%.$ e 2 , , , , , , ; u u 8 1 1 2 > , , > > + %.%.%.%.%.", -"%.%.%.%.%.e 2 , , : > ; ; > < ` ` 0 c n 1 2 , , , > , %.%.%.%.%.", -"%.%.%.%.e 1 , , , , ; h v - 3 ..! w ' _ 9 2 > , , , > : %.%.%.%.", -"%.%.%.6 q , : , > 2 > W ..| [ #.H V ..D 9 9 2 , , , , , % %.%.%.", -"%.%.%.e 2 , > 2 2 2 9 b ! #.$.$.#.#.#.Y i 1 2 > , , , > ; %.%.%.", -"%.%.@ q > 2 2 2 9 q e q 0 o.$.+.) { #.#.| b 2 2 , , , , : X %.%.", -"%.%.4 9 2 2 9 q e e s w b O.#.( m x I @.$...f > > , , , : & %.%.", -"%.%.8 > 2 2 9 e s d g a P #.#.L x l a [ $.#.A 2 2 , : , , ; %.%.", -"%.+ 1 , , 2 2 q e d g f / $.#.T n k Z o.$.O.M 9 2 > , , , ; X %.", -"%.* 2 , , , 2 9 q e s f X.$.#.O.O.O.#.$.+.Y g e 9 2 , , , ; o %.", -"%.* 2 , , , 2 2 q e w n O.$.[ R ( O.$.$.[ d s e 9 2 2 , , ; o %.", -"%.+ 2 , , , > 2 8 8 1 G #.#.T m m N ] #.#.~ s e e 9 2 > : ; X %.", -"%.%.> , , , , 2 < v B [ $.O.m z z s b #.$...g e e q 9 2 ; = %.%.", -"%.%.= : , , , : 7 ' O.#.$.@.C j p u ~ #.$.} g q 9 9 2 2 ; % %.%.", -"%.%.o , , , , : 0 G ^ .$.#.O.X.{ X.#.$.#.Y e 9 2 2 > , ; %.%.", -"%.%.%., : , , , 2 2 2 M O.) ] #.#.#.#.O./ d 9 2 > , , ; = %.%.%.", -"%.%.%.& ; , , , , 2 ; Q ..g F O.K A H S s 9 2 > , : , ; o %.%.%.", -"%.%.%.%.; ; , , , , 2 E _ d ' ..d q q 9 2 > , : , , ; = %.%.%.%.", -"%.%.%.%.%.; : , , , 2 q d g U J e 2 2 > , , , , , ; = %.%.%.%.%.", -"%.%.%.%.%.o ; : , , , 2 9 q 9 q 9 > , : , , , , ; = . %.%.%.%.%.", -"%.%.%.%.%.%.. ; ; , , > 2 2 2 > , , , , , , , ; = %.%.%.%.%.%.", -"%.%.%.%.%.%.%.%.= ; : > 2 2 , , : , , , , ; ; & %.%.%.%.%.%.%.%.", -"%.%.%.%.%.%.%.%.%.. = ; > : , , , , ; ; = = X %.%.%.%.%.%.%.%.%.", -"%.%.%.%.%.%.%.%.%.%.%. % = ; ; ; ; & O %.%.%.%.%.%.%.%.%.%.%.", -"%.%.%.%.%.%.%.%.%.%.%.%.%.%. X X %.%.%.%.%.%.%.%.%.%.%.%.%.%.", -"%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%.%." +"DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD", +"DDDDDDDDDDDD DDDDDDDDDDDD", +"DDDDDDDDD O$=--=$O DDDDDDDDD", +"DDDDDDD o*7gbCCCVng7*X DDDDDDD", +"DDDDDD $wmZSAAAAASAAnw$ DDDDDD", +"DDDDD X;lASCMlgdfgbASAAz-X DDDDD", +"DDDD X,bAAbdy75559thSSSAn,X DDDD", +"DDD ;nAChuyq*1555=1MzlCSb; DDD", +"DDD $zACgislr1SSSA55iuyhZAz$ DDD", +"DD owZAzkMAS5ySSSC-9uphmSSAwo DD", +"DD *MSSCSSSC:zSSSz=scCSSSSAn* DD", +"DD 7ASSSSBxe-CSSSy1gbSSBxlZA7 DD", +"D OgASCbgpy15SSSS<$$dbgpyiMSgO D", +"D $bSvauyyi-sSSSAtt*tyyypgNSn$ D", +"D =CAguidxx-cSSSSSi-yidxBSSSC= D", +"D -CAklMCw:5CSSSz3=6lNASSSAAC- D", +"D -CSSSSc-kASSSS,3lCSSSAmkhAC- D", +"D =VASSNw1nASSSM;nSSANzdiygAB= D", +"D $bSNfi-%-MSSSg=iat9555esbSb$ D", +"D ofSMut,::SSSSk333322<$fCSSsO D", +"DD 6ZZlcV80SSSSSSSSSSSx:VSSA6 DD", +"DD $bSSSA>kSSSSSSSSSSSu1CSSb$ DD", +"DD X8ASSk&6wwwwwwwwww9-7zSA8X.DD", +"DDD +kAAs<><509www85<, c #FD8E0C", -", c #FF910E", -"< c #F98F14", -"1 c #F79117", -"2 c #FD9314", -"3 c #FC951B", -"4 c #FE9A1D", -"5 c #CA8E22", -"6 c #CC8E2A", -"7 c #D48D23", -"8 c #C39223", -"9 c #CE9925", -"0 c #D19C25", -"q c #D19329", -"w c #D5992B", -"e c #DD9D33", -"r c #D69F3C", -"t c #E29425", -"y c #E79925", -"u c #EA9926", -"i c #E69A2C", -"p c #F79625", -"a c #F99524", -"s c #F79825", -"d c #F89825", -"f c #F3962A", -"g c #F69B2C", -"h c #F89B2B", -"j c #E19F30", -"k c #EE9B34", -"l c #F49D33", -"z c #F99E32", -"x c #F39F3B", -"c c #DFA731", -"v c #D7A43D", -"b c #DCA63C", -"n c #EEA328", -"m c #FFA225", -"M c #FFAB26", -"N c #F3A529", -"B c #FEA429", -"V c #F4AB2A", -"C c #FFAC2A", -"Z c #FFB325", -"A c #FFB42C", -"S c #FFBB2D", -"D c #E3A335", -"F c #E5A438", -"G c #EDA03D", -"H c #F7A037", -"J c #FAA135", -"K c #F3AB31", -"L c #FEAB31", -"P c #F4A13C", -"I c #F9A33B", -"U c #FDB432", -"Y c #FFBF37", -"T c #FFC12F", -"R c #FFC230", -"E c #FFC03E", -"W c #DFAF41", -"Q c #ECA34D", -"! c #EDA84E", -"~ c #F2A343", -"^ c #FAA642", -"/ c #FAA846", -"( c #F1A74C", -") c #F6A94F", -"_ c #FAAA4A", -"` c #E7A451", -"' c #ECA754", -"] c #EFAA56", -"[ c #ECAC5B", -"{ c #F3AA52", -"} c #FCAE52", -"| c #FBB056", -" . c #FBB25C", -".. c #E7AB61", -"X. c #ECB067", -"o. c #E7B36D", -"O. c #EBB36C", -"+. c #F2B163", -"@. c #FCB460", -"#. c #F0B56B", -"$. c #E3B274", -"%. c #EDB672", -"&. c #EDB877", -"*. c #E2B57C", -"=. c #ECB97B", -"-. c #E4BA83", -";. c #EBBD83", -":. c #E7BF8D", -">. c #EBBD88", -",. c #E9C08C", -"<. c #E7C496", -"1. c #EBC393", -"2. c #EBC997", -"3. c #E7C49A", -"4. c #E9C69A", -"5. c #E3CA9D", -"6. c #E9C89E", -"7. c #DCC9AE", -"8. c #DDCBB2", -"9. c #E3C7A2", -"0. c #E5CAA3", -"q. c #E9CBA3", -"w. c #E5CEAB", -"e. c #E8CEAA", -"r. c #E4D4AC", -"t. c #EBD2AF", -"y. c #E7CFB2", -"u. c #E1D4B4", -"i. c #E8D5B6", -"p. c #E5D7BB", -"a. c #E9D6BB", -"s. c #E5D8B9", -"d. c #EAD8BE", -"f. c #F0D6B4", -"g. c #DFDFC6", -"h. c #E3D6C1", -"j. c #E9D7C0", -"k. c #E6DAC5", -"l. c #EBDCC7", -"z. c #E5DCCA", -"x. c #EADEC9", -"c. c #E8DFD0", -"v. c #D7E2D9", -"b. c #E3E0C9", -"n. c #EEE2CB", -"m. c #E6E1D4", -"M. c #E9E2D3", -"N. c #E4E4DC", -"B. c #E9E5DE", -"V. c #F4EDDE", -"C. c #DFE8E6", -"Z. c #DEEEE8", -"A. c #DFF2F3", -"S. c #DDFFFF", -"D. c #E1E6E0", -"F. c #E8E6E2", -"G. c #E8E9E5", -"H. c #E5EFEC", -"J. c #E8E9EA", -"K. c #EAF3EE", -"L. c #F3F3EB", -"P. c #E7EDF2", -"I. c #E8EEF3", -"U. c #E7F4F7", -"Y. c #E9F0F7", -"T. c #EBF5FD", -"R. c #E4FEFF", -"E. c #ECFCFF", -"W. c #F4F5F4", -"Q. c #F4FFFF", -"!. c #FEFFFF", -"~. c None", +"64 64 78 1", +" c #2C2D2B", +". c #2F302F", +"X c #30312F", +"o c #343533", +"O c #373836", +"+ c #383937", +"@ c #3C3D3B", +"# c #3F403E", +"$ c #40413F", +"% c #424442", +"& c #474846", +"* c #484947", +"= c #4C4C4B", +"- c #4F504E", +"; c #50514F", +": c #535452", +"> c #575856", +", c #585957", +"< c #5D5E5D", +"1 c #5F605F", +"2 c #60615F", +"3 c #636463", +"4 c #676867", +"5 c #686867", +"6 c #6C6D6C", +"7 c #6F706F", +"8 c #737474", +"9 c #777877", +"0 c #7C7C7B", +"q c #7F807E", +"w c #7F8080", +"e c #848484", +"r c #878886", +"t c #8B8C8B", +"y c #8F908F", +"u c #8D8E90", +"i c #8F9092", +"p c #949494", +"a c #979897", +"s c #9B9C9C", +"d c #9FA09F", +"f c #9E9FA1", +"g c #9FA0A3", +"h c #A2A3A2", +"j c #A6A7A9", +"k c #AAABAB", +"l c #AEAFB2", +"z c #AFB0B3", +"x c #B2B3B4", +"c c #B5B6B9", +"v c #B7B8BB", +"b c #BABABC", +"n c #BDBEC1", +"m c #BFC0C2", +"M c #C2C3C4", +"N c #C5C6C8", +"B c #C7C8CA", +"V c #CBCBCC", +"C c #CECED0", +"Z c #CFD0D2", +"A c #D2D2D3", +"S c #D7D8D7", +"D c #D6D6D8", +"F c #D7D8DA", +"G c #DBDCDC", +"H c #DFDFE0", +"J c #DFE0E1", +"K c #E3E3E4", +"L c #E7E7E8", +"P c #E7E8E9", +"I c #EBECEC", +"U c #EFEFF0", +"Y c #EFF0F1", +"T c #F3F3F3", +"R c #F7F7F8", +"E c #F7F8F8", +"W c #FDFDFD", +"Q c None", /* pixels */ -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.F L h C C A A A A C C h L e ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.D N C m d d a a p a a p a a d m m C N j ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.- K M m a p s d d d d d d d d d d d d s p d m M V % ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.Y M d a d d d d d d d d d d d d d d d d h h d s a d M U ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.E m 4 a d d d d d d d d d d d d d d d d d d h h h d d d a d M U ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.C 4 a d d d d d d d d d d d d d d d d d h h h h h h d d d d d a m C ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.W S a p d d d d d d d d d d d d d d d d h h h h g g h h h d d d d d p a S c ~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.v M a s d d d d d d d d d d d d d d d h h h h h g z z g h h d d d d d d s a C w ~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.r Z a d d d d d d d d d d d d d d d g 4 : 2 h z z z z z h h h h d d d d d d d a S q ~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.b Z a d d d d d d d d d d d d d d h h 4 x $.l a z H h h H z h h h d d d d d d d d a A w ~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.T a s d d d d d d d d d d d d h h h g : $.R.T.7.a B x f > a H h h d d d d d d d d s a R ~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.U a s d d d d d d d d d d d d h h h h z : e.!.!.p.2 3 8.D.5.' a h h h d d d d d d d d p d A ~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.U M p d d d d d d d d d d h h 1 : : 2 h h p B.!.Q.%., l J.!.R.-.> z h h h d d d d d d d d p C N ~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.S a d d d d d d d d d d h d 3 7.r.O.G p ; k E.!.T.( , [ E.!.T.~ 4 z h h h d d d d d d d d d a S ~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.V d s d d d d d d d d h h h 2 l E.!.Q.T.m.:.q.!.!.l.: : -.Q.!.c.a z z z g h h d d d d d d d d s m A ~.~.~.~.~.~.~.", -"~.~.~.~.~.~.@ S a d d d d d d d h h h h z : *.R.!.!.!.!.Q.!.!.!.V.,.Q d.!.Q.1.2 I z z h h h d d d d d d d d d a S X ~.~.~.~.~.~.", -"~.~.~.~.~.~.U d s d d d d d h h h h h g z a [ 5.M.Q.!.!.!.!.!.!.!.Q.E.!.!.Q.&.; 3 J H z h h h d d d d d d d d s h C ~.~.~.~.~.~.", -"~.~.~.~.~.~.S a d d d d h h h h h h z z z I d > < %.W.!.!.!.!.!.!.!.!.!.!.!.W.s.[ > 4 H g h h d d d d d d d d d a S ~.~.~.~.~.~.", -"~.~.~.~.~.i M p d d d h h h h g z z z z J H I I J > x.!.!.!.!.Q.T.E.Q.!.!.!.!.!.E.u.f 2 H h h h d d d d d d d d p C 7 ~.~.~.~.~.", -"~.~.~.~.~.C a d h h h h h g g z z z J J I I I I J P J.!.!.!.!.d.P =.e.G.E.!.!.!.!.Q.Z.f 2 z h h d d d d d d d d d d A ~.~.~.~.~.", -"~.~.~.~.~.A a h h h h h g z z z J H I I I I ^ / d X.E.!.!.!.Q.1.4 I J I ;.U.!.!.!.!.!.N.1 h g h h d d d d d d d d a S ~.~.~.~.~.", -"~.~.~.~.6 C p d h h h z z J J J I I I I ^ ^ ^ _ a 3.Q.!.!.!.E.#.I . ._ 3 ] K.!.!.!.!.E.O., z h h h d d d d d d d p A + ~.~.~.~.", -"~.~.~.~.i B d d h h h g z J I I I I ^ ^ ^ / / _ h k.!.!.!.!.J.) } . .| .3 6.Q.!.!.!.Q.q.> z g h h d d d d d d d d B t ~.~.~.~.", -"~.~.~.~.B d d d d h h h z z J I I ^ / / / _ _ ^ ( I.!.!.!.Q.d.I . . .| .d 1.Q.!.!.!.Q.q.2 z h h h d d d d d d d d d B ~.~.~.~.", -"~.~.~.~.C a d d d d h h g z J H I ^ ^ / _ _ } J %.E.!.!.!.Q.;.4 _ } | } J f m.!.!.!.!.Q.;.2 J z g h h d d d d d d d a A ~.~.~.~.", -"~.~.~.~.C a d d d d h h h z z J I I ^ ^ / _ } z 6.Q.!.!.!.!.n.<.&.+.{ ) ] h.Q.!.!.!.!.R.~ d H z z h h h d d d d d d a A ~.~.~.~.", -"~.~.~.~.A a d d d d d h h g z z H I I ^ / _ _ z k.!.!.!.!.!.!.Q.E.I.F.F.T.Q.!.!.!.!.E.9.2 I J z z h h h d d d d d d d A ~.~.~.~.", -"~.~.~.~.S a d d d d d h h h z z J I I ^ ^ / I ( P.!.!.!.!.Q.Q.!.!.!.!.!.!.!.!.!.!.E.w.d J I I J z h h h d d d d d d d A ~.~.~.~.", -"~.~.~.~.A a d d d d d d h h h z J J I I ^ / h O.E.!.!.!.Q.f.1.z.Y.E.!.!.!.!.!.!.L.! , ^ / I I H z z h h h d d d d d d A ~.~.~.~.", -"~.~.~.~.S p d d d d d d h h h z z J I I ^ / d <.Q.!.!.!.E.+.d _ +.>.k.E.!.!.!.!.Q.s.P J _ ^ I I J z z h h h d d d d d A ~.~.~.~.", -"~.~.~.~.C a d d d d d d d h h g z z H I I ^ d k.!.!.!.!.J.{ | @.} I I O.H.!.!.!.!.Q.C.l I ^ I I H J z g h h d d d d a A ~.~.~.~.", -"~.~.~.~.B a d d d d d d d h h h h z z J I J x P.!.!.!.Q.j.I . . . . .B { K.!.!.!.!.Q.0.a / ^ I I J z z h h h d d d a A ~.~.~.~.", -"~.~.~.~.B d d d d d d d d d h h h J h f 2 ; [ E.!.!.!.Q.1.I . . .| | .d 4.Q.!.!.!.!.m.z I ^ I I I J z h h h h d d d B ~.~.~.~.", -"~.~.~.~.u B d d d d d d d d h h z , ' v.q.X.M.!.!.!.!.E.#.^ . .| } } } d >.Q.!.!.!.!.F.x J I I I J J z z h h h d d C t ~.~.~.~.", -"~.~.~.~.7 C p d d d d d d d d h h : y.Q.Q.Q.!.!.!.!.!.B.d B / _ } } } J 1 k.!.!.!.!.!.c.s J I H J J z z z h h h h s A + ~.~.~.~.", -"~.~.~.~.~.A a d d d d d d d d h > ` R.!.!.!.!.!.!.!.!.L.q.=.[ ~ z h h l 0.Q.!.!.!.!.Q.q.2 I J J z z h h h h h h h a S ~.~.~.~.~.", -"~.~.~.~.~.C d d d d d d d d d d > ..g.Y.E.Q.!.!.!.!.!.!.Q.E.T.B.k.a.d.P.Q.!.!.!.!.!.E.[ 2 J z z z g h h h h d d d d C ~.~.~.~.~.", -"~.~.~.~.~.y C p d d d d d d d d g 3 > l [ <.x.W.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.Q.z.> z z z h h h h h d d d d p C 7 ~.~.~.~.~.", -"~.~.~.~.~.~.S a d d d d d d d d d h h 3 , > ; =.Q.!.W.T.Q.!.!.!.!.!.!.!.!.!.!.!.Q.A.g 2 z h h h h h h d d d d d a S ~.~.~.~.~.~.", -"~.~.~.~.~.~.C h s d d d d d d d d d h g z H : <.!.!.t.l &.V.!.!.Q.Q.Q.Q.!.Q.Q.E.b.l > H h h h h h d d d d d d s m C ~.~.~.~.~.~.", -"~.~.~.~.~.~.X S a d d d d d d d d d h h h h p N.!.Q.=.: < c.!.Q.2.&.e.a.d.i.6.[ < 2 z h h h h d d d d d d d d a S ~.~.~.~.~.~.", -"~.~.~.~.~.~.~.A h s d d d d d d d d d h g 2 ~ E.!.E.{ 2 [ E.!.T.l : 2 1 3 2 > > h z h h h h d d d d d d d d s m A ~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.S a d d d d d d d d d h h : -.R.!.B.h 2 =.Q.!.M.p z z z h h z g h h h d d d d d d d d d d d a S ~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.N C p d d d d d d d d d h 3 ' 2.N.9.2 3 z.!.!.q.> J z h h h h h h d d d d d d d d d d d d p C n ~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.S h p d d d d d d d d d z 3 : p l J g 8.T.S.O.> z h h h h h d d d d d d d d d d d d d p h S ~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.S a s d d d d d d d d h h z d h I J a P o.P d g h h h d d d d d d d d d d d d d d s a S ~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.* S a s d d d d d d d d h h g z J J h 3 > d z h h h d d d d d d d d d d d d d d s a S * ~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.$ T a s d d d d d d d h h h z z z h g g h h d d d d d d d d d d d d d d d d s a T O ~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.& S a p d d d d d d h h h z g h h h h h d d d d d d d d d d d d d d d d p a S # ~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.8 S d p d d d d d d h h g h h h h d d d d d d d d d d d d d d d d d p h S = ~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.S A a s d d d d h h h h h d d d d d d d d d d d d d d d d d s a A S ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.0 T m p d d d d h h h d d d d d d d d d d d d d d d d d p B S 9 ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.V S m a p d h d d d d d d d d d d d d d d d d p a m S V ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.o V S C d p p d d d d d d d d d d d d p p d C S N . ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.5 C S A B d d a a d d a a a d B A S C 5 ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.O t B A A A A A A A A B t O ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.", -"~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~." +"QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQQQQQQQQQo+@#@@#####@+oQQQQQQQQQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQQQQQQo@@@@@@#@@@@@@@@@@@oQQQQQQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQQQo@##@@@++@+@+@@++@+@@@@$@ QQQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQo@@@@@++&>8rasgdsar7>%@+@@@#@oQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQ@@@@@+*6sVKTEWWWEWWETLVs6&+@@@#@QQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQo@@@@@:yCTWEEEEEEEEEEEEEWETCy:@@@@$oQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQ@@@@+:aGEEEEERWWWEWWWWEWEWEWEEHa:+@@$@QQQQQQQQQQQQQ", +"QQQQQQQQQQQQ@#@@%0DEWEWEWWWWWWWWWWWWWWWEEWEERD0%@@@@QQQQQQQQQQQQ", +"QQQQQQQQQQQ@@@@=lYWREWEWWWTIHDCCVCFHPTWWWWWEEWTk=@@@@QQQQQQQQQQQ", +"QQQQQQQQQQ@@@@2VERRWWWWRKCncccccccccbDTWWWWWEWERV1@@@@QQQQQQQQQQ", +"QQQQQQQQQ##@@6GERWRWWRFncccvbbbbbbMGUEWWWWWWWWWREG6@@@#QQQQQQQQQ", +"QQQQQQQQ+@@+6HEEWRWRHnvccce6776679errrebWWWWWWWEEWG6@@@@QQQQQQQQ", +"QQQQQQQo#@+2GWEWWWUCvccvcl:@$$%%%%%%%@+lWWELGUWWWEWG2+@#oQQQQQQQ", +"QQQQQQ #@@:VEEEWWUnccvccvf#9ZAAAAAAAV2*GIFMccMIWWWEEV-@@@ QQQQQQ", +"QQQQQQ@@@%kWEEWWPnccccvMGp+zWWWWWWWWK;1nbccvccnIWWWEWk$@@@QQQQQQ", +"QQQQQo@@+wTEEWWIncccnCLRW9*SWWWWWWWWn@8vcccccccnIWWEEYw@@@oQQQQQ", +"QQQQQ@@@:DEWWWTncnVHTWWWL;3TWWWWWWWWp+pbvccccvVGRWWWEWD:@@@QQQQQ", +"QQQQo#@@sEEEWRCMFIWWWWWWM@yWWWWWWWWT6*jcccvMFIWWWWWWWEEa@@#XQQQQ", +"QQQQ+#@:HEEWWTIEWWWWWWWWa+bWWWWWWWWG=2xcnCPEWWWWWWWWWEEJ>+@@QQQQ", +"QQQQ@@+pWEWWWWWWWWWWWWWT5*GWWWWWWWWc@qVKTWWWWWWWWWWWWWRWp@#@QQQQ", +"QQQO@@*AWEWWWWWWWWWWWIGx&5EWWWWWWWWt$MWWTWWWWWWWWUGJWWWEV*@@OQQQ", +"QQQ@@+6TEEWWWWWWWWTHNbcu@aWWWWWWWWT2:KAaaWWWWWTHVbcnTWEWT6@@@QQQ", +"QQQ#@@sWEWWWWWWTLVncccv7#MWWWWWWWWD*;6*+gWWELCnccvccKWWEEd@@@QQQ", +"QQX@@%VEEWWWEPDMvcccvcx>:KWWWWWWWWk++&%%VIDMccccccccCEWWWV%@#.QQ", +"QQ+@@,LEEWEHNbcccvcvvvh%8WWWWWWWWWe@@OQQ", +"QQ##+7YWWWIvcccvcccccnp+hWWWWWWWWWAPWA%4vccccccccnCLRWWWET7+@#QQ", +"QQ#@+rEEEWGcccccccbVHTr$VWWWWWWWWWWWWj@rbcccccbVGTWWWWWWEEr+#@QQ", +"QQ$@+aEWWWDccccbMGUWWP<,IWWWWWWWWWWWE9%svcccMDIWWWWWWWWWWEa+@#QQ", +"QQ@@@sWEWWZccnAPRWEGh4+qWWWWWWWWWWIb0$:lcnAPRWWWWWWWWWWWEWs@@#QQ", +"QQ#@+sWEWWAVKTWWWWa=@=0ZWWWWWWWWIa,@@>pVKTWWWWWWWWWWETWWEWs@@#QQ", +"QQ$@+sEWWWEWWWWWWP,=hGWWWWWWWWWWM@=8kDUWWWWWWWWWWWIGMZWWEWs+@#QQ", +"QQ@@+sWEWWWWWWWWWB$tWWWWWWWWWWWWa@hIWWWWWWWWWWWTKVbccAWWEWs@@$QQ", +"QQ$@+aWEWWWWWWWWEa@cWWWWWWWWWWWE7*HWWWWWWWWWELCncccccDWWEEp+@$QQ", +"QQ@@+eEEEWWWWWIDM2=GEDPWWWWWWWWK=6TWWWWWWWIFNbcccvcccHWWWRe+@@QQ", +"QQ@@+6TWWWWTGNbch*,h8>GWWWWWWWWb@aWWWWWTHVbvcbvvccccbIWWEU6+@@QQ", +"QQo$@:GEEWTNccvbp#$@+5TWWWWWWWWp+7tttte867666666ucnCKWWEWH:@@+QQ", +"QQ.@@$MWEWWAcccv8@>1@yWWWWWWWWT6$%$$$$%%$$%$%%#@aHYWWWWWWm%@$ QQ", +"QQQ$@+pWEEWPccccefCt@bWWWWWWWWEGZAZZAZCAZZAZAV2&GWWWWWWEEp@@@QQQ", +"QQQ@@@4IEEWRMcMAPWT5=KWWWWWWWWWWWWWWWWWWWWWWWL:4TWWWWWEWI3@@@QQQ", +"QQQo@@%NWWWWPJTWWWG*7EWWWWWWWWWWWWWWWWWWWWWWWM@yWWWWWWWWN%@@oQQQ", +"QQQQ$@+eTEWWWWWWWWc@sWWWWWWWWWWWWWWWWWWWWWWWWa@bWWWWWEETeO@#QQQQ", +"QQQQ@@@*AWREWWWWWWt@BWWWWWWWWWWWWWWWWWWWWWWWT5:JTLTWWEWA=@@@QQQQ", +"QQQQ @@@tTEWWWWWWP2:GTUUUTUUTUTUTTUUTUUUTTTTA*4CnDEWWETt@@# QQQQ", +"QQQQQ@@@&VWEWWWTGk%%<<121211<<<<<<<<12<<1<1<>+0vVTWWEWB*@@@QQQQQ", +"QQQQQo@@@6PWEWWTMi::::;:;;,11<<1<1<21222>::::>sNTWWEEI6@@#XQQQQQ", +"QQQQQQ@@@@aEEEWWYmlzxklcBHITUUTTTUUTULAMxzllxlMUWWWEEa@@#+QQQQQQ", +"QQQQQQQ@@@%bEEEWWTVcbBKTWWWWWWWWWWWIDmvccvbccVTWWWRWb%@@@QQQQQQQ", +"QQQQQQQo@@@;BWEEWWTKIWWWWWWWWWWWTGNvcccccccbDRWWEEWN:@@@oQQQQQQQ", +"QQQQQQQQ+#@@,CWEEWWWWWWWWWWWWTKVnccccccccvVIWWWEEEV,@@#+QQQQQQQQ", +"QQQQQQQQQ+@#+>MWEEWWWWWWWWEPZnccccvccccbVPEWWWWWWN,@@@+QQQQQQQQQ", +"QQQQQQQQQQ@##+-zREWWEWWWWEDnccccccccnNGUWWWWWEWTx=@@@@QQQQQQQQQQ", +"QQQQQQQQQQQ@##@$tLEEEWWWWWWTIKGGGGKITWWWWRWREELt%@@@+QQQQQQQQQQQ", +"QQQQQQQQQQQQ+$#@@3bTWEEEWWWWWWWWWWWWWWWWWERWTb4@@@@@QQQQQQQQQQQQ", +"QQQQQQQQQQQQQX#@@+%0NTWEEEWEWEWWWWEWEWERWETM0%+@@@oQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQ @@@@@%7xHEWEEEWWERWWEEWEEKx6%+@@@@ QQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQ+@@#@+@>0kVKTTETRRTULVk0:@@@#@@+QQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQQ@#@@@@+@%>480e0w05>&++@@@@#@QQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQQQQ+@$@@@@@@++@+++++@@@@$@+QQQQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQQQQQQ +@##@#@@@@@@@@@@@+ QQQQQQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQQQQQQQQQQo+@@$@####+oQQQQQQQQQQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ", +"QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ" }; diff --git a/share/pixmaps/favicon.ico b/share/pixmaps/favicon.ico index 754eebc48814f..27d6c8e2786a4 100644 Binary files a/share/pixmaps/favicon.ico and b/share/pixmaps/favicon.ico differ diff --git a/share/pixmaps/nsis-header.bmp b/share/pixmaps/nsis-header.bmp index 9ab0ce2591d21..0034238721e4f 100644 Binary files a/share/pixmaps/nsis-header.bmp and b/share/pixmaps/nsis-header.bmp differ diff --git a/share/pixmaps/nsis-wizard.bmp b/share/pixmaps/nsis-wizard.bmp index 71255c6850b00..e828813babcac 100644 Binary files a/share/pixmaps/nsis-wizard.bmp and b/share/pixmaps/nsis-wizard.bmp differ diff --git a/share/qt/Info.plist.in b/share/qt/Info.plist.in index dd6edde8d285d..c85bb1cb9e1fe 100644 --- a/share/qt/Info.plist.in +++ b/share/qt/Info.plist.in @@ -17,22 +17,22 @@ APPL CFBundleGetInfoString - @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@, Copyright © 2009-@COPYRIGHT_YEAR@ The Bitcoin Core developers + @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@.@CLIENT_VERSION_BUILD@, Copyright © 2009-@COPYRIGHT_YEAR@ The Bitcoin Core developers 2018-@COPYRIGHT_YEAR@ The Hypercoin Core developers CFBundleShortVersionString - @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@ + @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@.@CLIENT_VERSION_BUILD@ CFBundleVersion - @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@ + @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@.@CLIENT_VERSION_BUILD@ CFBundleSignature ???? CFBundleExecutable - Bitcoin-Qt + Hypercoin-Qt CFBundleIdentifier - org.bitcoinfoundation.Bitcoin-Qt + org.hypercoin.Hypercoin-Qt CFBundleURLTypes @@ -40,10 +40,10 @@ CFBundleTypeRole Editor CFBundleURLName - org.bitcoin.BitcoinPayment + org.hypercoin.HypercoinPayment CFBundleURLSchemes - bitcoin + hypercoin @@ -52,9 +52,9 @@ UTTypeIdentifier - org.bitcoin.paymentrequest + org.hypercoin.paymentrequest UTTypeDescription - Bitcoin payment request + Hypercoin payment request UTTypeConformsTo public.data @@ -62,10 +62,10 @@ UTTypeTagSpecification public.mime-type - application/x-bitcoin-payment-request + application/x-hypercoin-payment-request public.filename-extension - bitcoinpaymentrequest + hypercoinpaymentrequest @@ -78,7 +78,7 @@ Editor LSItemContentTypes - org.bitcoin.paymentrequest + org.hypercoin.paymentrequest LSHandlerRank Owner diff --git a/share/seeds/generate-seeds.py b/share/seeds/generate-seeds.py index cdd683121856e..6bed9c4a5c495 100755 --- a/share/seeds/generate-seeds.py +++ b/share/seeds/generate-seeds.py @@ -124,10 +124,10 @@ def main(): g.write(' * IPv4 as well as onion addresses are wrapped inside a IPv6 address accordingly.\n') g.write(' */\n') with open(os.path.join(indir,'nodes_main.txt'),'r') as f: - process_nodes(g, f, 'pnSeed6_main', 8333) + process_nodes(g, f, 'pnSeed6_main', 36307) g.write('\n') with open(os.path.join(indir,'nodes_test.txt'),'r') as f: - process_nodes(g, f, 'pnSeed6_test', 18333) + process_nodes(g, f, 'pnSeed6_test', 46307) g.write('#endif // BITCOIN_CHAINPARAMSSEEDS_H\n') if __name__ == '__main__': diff --git a/share/seeds/nodes_main.txt b/share/seeds/nodes_main.txt index f2558cf3c4f2a..1bf0e5022b2a8 100644 --- a/share/seeds/nodes_main.txt +++ b/share/seeds/nodes_main.txt @@ -1,629 +1,4 @@ -# List of fixed seed nodes for main network +# List of hypercoin IPv4 nodes sorted by 30 day availability, block height and version. -# IPv4 nodes (in old chainparams.cpp 0xDDCCBBAA format) -# n.b. when importing a new list, there is no need to use this format, just use IPv4 dotted addresses directly -0x7e6a692e # 46.105.106.126 -0x7d04d1a2 # 162.209.4.125 -0x6c0c17d9 # 217.23.12.108 -0xdb330ab9 # 185.10.51.219 -0xc649c7c6 # 198.199.73.198 -0x7895484d # 77.72.149.120 -0x047109b0 # 176.9.113.4 -0xb90ca5bc # 188.165.12.185 -0xd130805f # 95.128.48.209 -0xbd074ea6 # 166.78.7.189 -0x578ff1c0 # 192.241.143.87 -0x286e09b0 # 176.9.110.40 -0xd4dcaf42 # 66.175.220.212 -0x529b6bb8 # 184.107.155.82 -0x635cc6c0 # 192.198.92.99 -0xedde892e # 46.137.222.237 -0xa976d9c7 # 199.217.118.169 -0xea91a4b8 # 184.164.145.234 -0x03fa4eb2 # 178.78.250.3 -0x6ca9008d # 141.0.169.108 -0xaf62c825 # 37.200.98.175 -0x93f3ba51 # 81.186.243.147 -0xc2c9efd5 # 213.239.201.194 -0x0ed5175e # 94.23.213.14 -0x487028bc # 188.40.112.72 -0x7297c225 # 37.194.151.114 -0x8af0c658 # 88.198.240.138 -0x2e57ba1f # 31.186.87.46 -0xd0098abc # 188.138.9.208 -0x46a8853e # 62.133.168.70 -0xcc92dc3e # 62.220.146.204 -0xeb6f1955 # 85.25.111.235 -0x8cce175e # 94.23.206.140 -0x237281ae # 174.129.114.35 -0x9d42795b # 91.121.66.157 -0x4f4f0905 # 5.9.79.79 -0xc50151d0 # 208.81.1.197 -0xb1ba90c6 # 198.144.186.177 -0xaed7175e # 94.23.215.174 -0x204de55b # 91.229.77.32 -0x4bb03245 # 69.50.176.75 -0x932b28bc # 188.40.43.147 -0x2dcce65b # 91.230.204.45 -0xe2708abc # 188.138.112.226 -0x1b08b8d5 # 213.184.8.27 -0x12a3dc5b # 91.220.163.18 -0x8a884c90 # 144.76.136.138 -0xa386a8b8 # 184.168.134.163 -0x18e417c6 # 198.23.228.24 -0x2e709ac3 # 195.154.112.46 -0xeb62e925 # 37.233.98.235 -0x6f6503ae # 174.3.101.111 -0x05d0814e # 78.129.208.5 -0x8a9ac545 # 69.197.154.138 -0x946fd65e # 94.214.111.148 -0x3f57495d # 93.73.87.63 -0x4a29c658 # 88.198.41.74 -0xad454c90 # 144.76.69.173 -0x15340905 # 5.9.52.21 -0x4c3f3b25 # 37.59.63.76 -0x01fe19b9 # 185.25.254.1 -0x5620595b # 91.89.32.86 -0x443c795b # 91.121.60.68 -0x44f24ac8 # 200.74.242.68 -0x0442464e # 78.70.66.4 -0xc8665882 # 130.88.102.200 -0xed3f3ec3 # 195.62.63.237 -0xf585bf5d # 93.191.133.245 -0x5dd141da # 218.65.209.93 -0xf93a084e # 78.8.58.249 -0x1264dd52 # 82.221.100.18 -0x0711c658 # 88.198.17.7 -0xf12e7bbe # 190.123.46.241 -0x5b02b740 # 64.183.2.91 -0x7d526dd5 # 213.109.82.125 -0x0cb04c90 # 144.76.176.12 -0x2abe1132 # 50.17.190.42 -0x61a39f58 # 88.159.163.97 -0x044a0618 # 24.6.74.4 -0xf3af7dce # 206.125.175.243 -0xb994c96d # 109.201.148.185 -0x361c5058 # 88.80.28.54 -0xca735d53 # 83.93.115.202 -0xeca743b0 # 176.67.167.236 -0xec790905 # 5.9.121.236 -0xc4d37845 # 69.120.211.196 -0xa1c4a2b2 # 178.162.196.161 -0x726fd453 # 83.212.111.114 -0x625cc6c0 # 192.198.92.98 -0x6c20132e # 46.19.32.108 -0xb7aa0c79 # 121.12.170.183 -0xc6ed983d # 61.152.237.198 -0x47e4cbc0 # 192.203.228.71 -0xa4ac75d4 # 212.117.172.164 -0xe2e59345 # 69.147.229.226 -0x4d784ad0 # 208.74.120.77 -0x18a5ec5e # 94.236.165.24 -0x481cc85b # 91.200.28.72 -0x7c6c2fd5 # 213.47.108.124 -0x5e4d6018 # 24.96.77.94 -0x5b4b6c18 # 24.108.75.91 -0xd99b4c90 # 144.76.155.217 -0xe63987dc # 220.135.57.230 -0xb817bb25 # 37.187.23.184 -0x141cfeb2 # 178.254.28.20 -0x5f005058 # 88.80.0.95 -0x0d987f47 # 71.127.152.13 -0x242a496d # 109.73.42.36 -0x3e519bc0 # 192.155.81.62 -0x02b2454b # 75.69.178.2 -0xdfaf3dc6 # 198.61.175.223 -0x888128bc # 188.40.129.136 -0x1165bb25 # 37.187.101.17 -0xabfeca5b # 91.202.254.171 -0x2ef63540 # 64.53.246.46 -0x5773c7c6 # 198.199.115.87 -0x1280dd52 # 82.221.128.18 -0x8ebcacd9 # 217.172.188.142 -0x81c439c6 # 198.57.196.129 -0x39fcfa45 # 69.250.252.57 -0x62177d41 # 65.125.23.98 -0xc975ed62 # 98.237.117.201 -0x05cff476 # 118.244.207.5 -0xdabda743 # 67.167.189.218 -0xaa1ac24e # 78.194.26.170 -0xe255a22e # 46.162.85.226 -0x88aac705 # 5.199.170.136 -0xe707c658 # 88.198.7.231 -0xa9e94b5e # 94.75.233.169 -0x2893484b # 75.72.147.40 -0x99512705 # 5.39.81.153 -0xd63970ca # 202.112.57.214 -0x45994f32 # 50.79.153.69 -0xe519a8ad # 173.168.25.229 -0x92e25f5d # 93.95.226.146 -0x8b84a9c1 # 193.169.132.139 -0x5eaa0a05 # 5.10.170.94 -0xa74de55b # 91.229.77.167 -0xb090ff62 # 98.255.144.176 -0x5eee326c # 108.50.238.94 -0xc331a679 # 121.166.49.195 -0xc1d9b72e # 46.183.217.193 -0x0c6ab982 # 130.185.106.12 -0x7362bb25 # 37.187.98.115 -0x4cfedd42 # 66.221.254.76 -0x1e09a032 # 50.160.9.30 -0xa4c34c5e # 94.76.195.164 -0x3777d9c7 # 199.217.119.55 -0x5edcf260 # 96.242.220.94 -0x3ce2b548 # 72.181.226.60 -0xd2ac0360 # 96.3.172.210 -0x2f80b992 # 146.185.128.47 -0x3e4cbb25 # 37.187.76.62 -0x3995e236 # 54.226.149.57 -0xd03977ae # 174.119.57.208 -0x953cf054 # 84.240.60.149 -0x3c654ed0 # 208.78.101.60 -0x74024c90 # 144.76.2.116 -0xa14f1155 # 85.17.79.161 -0x14ce0125 # 37.1.206.20 -0xc15ebb6a # 106.187.94.193 -0x2c08c452 # 82.196.8.44 -0xc7fd0652 # 82.6.253.199 -0x7604f8ce # 206.248.4.118 -0xffb38332 # 50.131.179.255 -0xa4c2efd5 # 213.239.194.164 -0xe9614018 # 24.64.97.233 -0xab49e557 # 87.229.73.171 -0x1648c052 # 82.192.72.22 -0x36024047 # 71.64.2.54 -0x0e8cffad # 173.255.140.14 -0x21918953 # 83.137.145.33 -0xb61f50ad # 173.80.31.182 -0x9b406b59 # 89.107.64.155 -0xaf282218 # 24.34.40.175 -0x7f1d164e # 78.22.29.127 -0x1f560da2 # 162.13.86.31 -0xe237be58 # 88.190.55.226 -0xbdeb1955 # 85.25.235.189 -0x6c0717d9 # 217.23.7.108 -0xdaf8ce62 # 98.206.248.218 -0x0f74246c # 108.36.116.15 -0xdee95243 # 67.82.233.222 -0xf23f1a56 # 86.26.63.242 -0x61bdf867 # 103.248.189.97 -0xd254c854 # 84.200.84.210 -0xc4422e4e # 78.46.66.196 -0xae0563c0 # 192.99.5.174 -0xbdb9a95f # 95.169.185.189 -0xa9eb32c6 # 198.50.235.169 -0xd9943950 # 80.57.148.217 -0x116add52 # 82.221.106.17 -0x73a54c90 # 144.76.165.115 -0xb36b525e # 94.82.107.179 -0xd734175e # 94.23.52.215 -0x333d7f76 # 118.127.61.51 -0x51431bc6 # 198.27.67.81 -0x084ae5cf # 207.229.74.8 -0xa60a236c # 108.35.10.166 -0x5c67692e # 46.105.103.92 -0x0177cf45 # 69.207.119.1 -0xa6683ac6 # 198.58.104.166 -0x7ff4ea47 # 71.234.244.127 -0x2192fab2 # 178.250.146.33 -0xa03a0f46 # 70.15.58.160 -0xfe3e39ae # 174.57.62.254 -0x2cce5fc1 # 193.95.206.44 -0xc8a6c148 # 72.193.166.200 -0x96fb7e4c # 76.126.251.150 -0x0a66c752 # 82.199.102.10 -0x6b4d2705 # 5.39.77.107 -0xeba0c118 # 24.193.160.235 -0x3ba0795b # 91.121.160.59 -0x1dccd23e # 62.210.204.29 -0x6912f3a2 # 162.243.18.105 -0x22f23c41 # 65.60.242.34 -0x65646b4a # 74.107.100.101 -0x8b9f8705 # 5.135.159.139 -0xeb9b9a95 # 149.154.155.235 -0x79fe6b4e # 78.107.254.121 -0x0536f447 # 71.244.54.5 -0x23224d61 # 97.77.34.35 -0x5d952ec6 # 198.46.149.93 -0x0cb4f736 # 54.247.180.12 -0xdc14be6d # 109.190.20.220 -0xb24609b0 # 176.9.70.178 -0xd3f79b62 # 98.155.247.211 -0x6518c836 # 54.200.24.101 -0x83a3cf42 # 66.207.163.131 -0x9b641fb0 # 176.31.100.155 -0x17fef1c0 # 192.241.254.23 -0xd508cc82 # 130.204.8.213 -0x91a4369b # 155.54.164.145 -0x39cb4a4c # 76.74.203.57 -0xbbc9536c # 108.83.201.187 -0xaf64c44a # 74.196.100.175 -0x605eca50 # 80.202.94.96 -0x0c6a6805 # 5.104.106.12 -0xd07e9d4e # 78.157.126.208 -0x78e6d3a2 # 162.211.230.120 -0x1b31eb6d # 109.235.49.27 -0xaa01feb2 # 178.254.1.170 -0x4603c236 # 54.194.3.70 -0x1ecba3b6 # 182.163.203.30 -0x0effe336 # 54.227.255.14 -0xc3fdcb36 # 54.203.253.195 -0xc290036f # 111.3.144.194 -0x4464692e # 46.105.100.68 -0x1aca7589 # 137.117.202.26 -0x59a9e52e # 46.229.169.89 -0x19aa7489 # 137.116.170.25 -0x2622c85e # 94.200.34.38 -0xa598d318 # 24.211.152.165 -0x438ec345 # 69.195.142.67 -0xc79619b9 # 185.25.150.199 -0xaf570360 # 96.3.87.175 -0x5098e289 # 137.226.152.80 -0x36add862 # 98.216.173.54 -0x83c1a2b2 # 178.162.193.131 -0x969d0905 # 5.9.157.150 -0xcf3d156c # 108.21.61.207 -0x49c1a445 # 69.164.193.73 -0xbd0b7562 # 98.117.11.189 -0x8fff1955 # 85.25.255.143 -0x1e51fe53 # 83.254.81.30 -0x28d6efd5 # 213.239.214.40 -0x2837cc62 # 98.204.55.40 -0x02f42d42 # 66.45.244.2 -0x070e3fb2 # 178.63.14.7 -0xbcb18705 # 5.135.177.188 -0x14a4e15b # 91.225.164.20 -0x82096844 # 68.104.9.130 -0xcfcb1c2e # 46.28.203.207 -0x37e27fc7 # 199.127.226.55 -0x07923748 # 72.55.146.7 -0x0c14bc2e # 46.188.20.12 -0x26100905 # 5.9.16.38 -0xcb7cd93e # 62.217.124.203 -0x3bc0d2c0 # 192.210.192.59 -0x97131b4c # 76.27.19.151 -0x6f1e5c17 # 23.92.30.111 -0xa7939f43 # 67.159.147.167 -0xb7a0bf58 # 88.191.160.183 -0xafa83a47 # 71.58.168.175 -0xcbb83f32 # 50.63.184.203 -0x5f321cb0 # 176.28.50.95 -0x52d6c3c7 # 199.195.214.82 -0xdeac5bc7 # 199.91.172.222 -0x2cf310cc # 204.16.243.44 -0x108a2bc3 # 195.43.138.16 -0x726fa14f # 79.161.111.114 -0x85bad2cc # 204.210.186.133 -0x459e4c90 # 144.76.158.69 -0x1a08b8d8 # 216.184.8.26 -0xcd7048c6 # 198.72.112.205 -0x6d5b4c90 # 144.76.91.109 -0xa66cfe7b # 123.254.108.166 -0xad730905 # 5.9.115.173 -0xdaac5bc7 # 199.91.172.218 -0x8417fd9f # 159.253.23.132 -0x41377432 # 50.116.55.65 -0x1f138632 # 50.134.19.31 -0x295a12b2 # 178.18.90.41 -0x7ac031b2 # 178.49.192.122 -0x3a87d295 # 149.210.135.58 -0xe219bc2e # 46.188.25.226 -0xf485d295 # 149.210.133.244 -0x137b6405 # 5.100.123.19 -0xcfffd9ad # 173.217.255.207 -0xafe20844 # 68.8.226.175 -0x32679a5f # 95.154.103.50 -0xa431c644 # 68.198.49.164 -0x0e5fce8c # 140.206.95.14 -0x305ef853 # 83.248.94.48 -0xad26ca32 # 50.202.38.173 -0xd9d21a54 # 84.26.210.217 -0xddd0d736 # 54.215.208.221 -0xc24ec0c7 # 199.192.78.194 -0x4aadcd5b # 91.205.173.74 -0x49109852 # 82.152.16.73 -0x9d6b3ac6 # 198.58.107.157 -0xf0aa1e8b # 139.30.170.240 -0xf1bfa343 # 67.163.191.241 -0x8a30c0ad # 173.192.48.138 -0x260f93d4 # 212.147.15.38 -0x2339e760 # 96.231.57.35 -0x8869959f # 159.149.105.136 -0xc207216c # 108.33.7.194 -0x29453448 # 72.52.69.41 -0xb651ec36 # 54.236.81.182 -0x45496259 # 89.98.73.69 -0xa23d1bcc # 204.27.61.162 -0xb39bcf43 # 67.207.155.179 -0xa1d29432 # 50.148.210.161 -0x3507c658 # 88.198.7.53 -0x4a88dd62 # 98.221.136.74 -0x27aff363 # 99.243.175.39 -0x7498ea6d # 109.234.152.116 -0x4a6785d5 # 213.133.103.74 -0x5e6d47c2 # 194.71.109.94 -0x3baba542 # 66.165.171.59 -0x045a37ae # 174.55.90.4 -0xa24dc0c7 # 199.192.77.162 -0xe981ea4d # 77.234.129.233 -0xed6ce217 # 23.226.108.237 -0x857214c6 # 198.20.114.133 -0x6b6c0464 # 100.4.108.107 -0x5a4945b8 # 184.69.73.90 -0x12f24742 # 66.71.242.18 -0xf35f42ad # 173.66.95.243 -0xfd0f5a4e # 78.90.15.253 -0xfb081556 # 86.21.8.251 -0xb24b5861 # 97.88.75.178 -0x2e114146 # 70.65.17.46 -0xb7780905 # 5.9.120.183 -0x33bb0e48 # 72.14.187.51 -0x39e26556 # 86.101.226.57 -0xa794484d # 77.72.148.167 -0x4225424d # 77.66.37.66 -0x3003795b # 91.121.3.48 -0x31c8cf44 # 68.207.200.49 -0xd65bad59 # 89.173.91.214 -0x127bc648 # 72.198.123.18 -0xf2bc4d4c # 76.77.188.242 -0x0273dc50 # 80.220.115.2 -0x4572d736 # 54.215.114.69 -0x064bf653 # 83.246.75.6 -0xcdcd126c # 108.18.205.205 -0x608281ae # 174.129.130.96 -0x4d130087 # 135.0.19.77 -0x1016f725 # 37.247.22.16 -0xba185fc0 # 192.95.24.186 -0x16c1a84f # 79.168.193.22 -0xfb697252 # 82.114.105.251 -0xa2942360 # 96.35.148.162 -0x53083b6c # 108.59.8.83 -0x0583f1c0 # 192.241.131.5 -0x2d5a2441 # 65.36.90.45 -0xc172aa43 # 67.170.114.193 -0xcd11cf36 # 54.207.17.205 -0x7b14ed62 # 98.237.20.123 -0x5c94f1c0 # 192.241.148.92 -0x7c23132e # 46.19.35.124 -0x39965a6f # 111.90.150.57 -0x7890e24e # 78.226.144.120 -0xa38ec447 # 71.196.142.163 -0xc187f1c0 # 192.241.135.193 -0xef80b647 # 71.182.128.239 -0xf20a7432 # 50.116.10.242 -0x7ad1d8d2 # 210.216.209.122 -0x869e2ec6 # 198.46.158.134 -0xccdb5c5d # 93.92.219.204 -0x9d11f636 # 54.246.17.157 -0x2161bb25 # 37.187.97.33 -0x7599f889 # 137.248.153.117 -0x2265ecad # 173.236.101.34 -0x0f4f0e55 # 85.14.79.15 -0x7d25854a # 74.133.37.125 -0xf857e360 # 96.227.87.248 -0xf83f3d6c # 108.61.63.248 -0x9cc93bb8 # 184.59.201.156 -0x02716857 # 87.104.113.2 -0x5dd8a177 # 119.161.216.93 -0x8adc6cd4 # 212.108.220.138 -0xe5613d46 # 70.61.97.229 -0x6a734f50 # 80.79.115.106 -0x2a5c3bae # 174.59.92.42 -0x4a04c3d1 # 209.195.4.74 -0xe4613d46 # 70.61.97.228 -0x8426f4bc # 188.244.38.132 -0x3e1b5fc0 # 192.95.27.62 -0x0d5a3c18 # 24.60.90.13 -0xd0f6d154 # 84.209.246.208 -0x21c7ff5e # 94.255.199.33 -0xeb3f3d6c # 108.61.63.235 -0x9da5edc0 # 192.237.165.157 -0x5d753b81 # 129.59.117.93 -0x0d8d53d4 # 212.83.141.13 -0x2613f018 # 24.240.19.38 -0x4443698d # 141.105.67.68 -0x8ca1edcd # 205.237.161.140 -0x10ed3f4e # 78.63.237.16 -0x789b403a # 58.64.155.120 -0x7b984a4b # 75.74.152.123 -0x964ebc25 # 37.188.78.150 -0x7520ee60 # 96.238.32.117 -0x4f4828bc # 188.40.72.79 -0x115c407d # 125.64.92.17 -0x32dd0667 # 103.6.221.50 -0xa741715e # 94.113.65.167 -0x1d3f3532 # 50.53.63.29 -0x817d1f56 # 86.31.125.129 -0x2f99a552 # 82.165.153.47 -0x6b2a5956 # 86.89.42.107 -0x8d4f4f05 # 5.79.79.141 -0xd23c1e17 # 23.30.60.210 -0x98993748 # 72.55.153.152 -0x2c92e536 # 54.229.146.44 -0x237ebdc3 # 195.189.126.35 -0xa762fb43 # 67.251.98.167 -0x32016b71 # 113.107.1.50 -0xd0e7cf79 # 121.207.231.208 -0x7d35bdd5 # 213.189.53.125 -0x53dac3d2 # 210.195.218.83 -0x31016b71 # 113.107.1.49 -0x7fb8f8ce # 206.248.184.127 -0x9a38c232 # 50.194.56.154 -0xefaa42ad # 173.66.170.239 -0x876b823d # 61.130.107.135 -0x18175347 # 71.83.23.24 -0xdb46597d # 125.89.70.219 -0xd2c168da # 218.104.193.210 -0xcd6fe9dc # 220.233.111.205 -0x45272e4e # 78.46.39.69 -0x8d4bca5b # 91.202.75.141 -0xa4043d47 # 71.61.4.164 -0xaab7aa47 # 71.170.183.170 -0x202881ae # 174.129.40.32 -0xa4aef160 # 96.241.174.164 -0xecd7e6bc # 188.230.215.236 -0x391359ad # 173.89.19.57 -0xd8cc9318 # 24.147.204.216 -0xbbeee52e # 46.229.238.187 -0x077067b0 # 176.103.112.7 -0xebd39d62 # 98.157.211.235 -0x0cedc547 # 71.197.237.12 -0x23d3e15e # 94.225.211.35 -0xa5a81318 # 24.19.168.165 -0x179a32c6 # 198.50.154.23 -0xe4d3483d # 61.72.211.228 -0x03680905 # 5.9.104.3 -0xe8018abc # 188.138.1.232 -0xdde9ef5b # 91.239.233.221 -0x438b8705 # 5.135.139.67 -0xb48224a0 # 160.36.130.180 -0xcbd69218 # 24.146.214.203 -0x9075795b # 91.121.117.144 -0xc6411c3e # 62.28.65.198 -0x03833f5c # 92.63.131.3 -0xf33f8b5e # 94.139.63.243 -0x495e464b # 75.70.94.73 -0x83c8e65b # 91.230.200.131 -0xac09cd25 # 37.205.9.172 -0xdaabc547 # 71.197.171.218 -0x7665a553 # 83.165.101.118 -0xc5263718 # 24.55.38.197 -0x2fd0c5cd # 205.197.208.47 -0x22224d61 # 97.77.34.34 -0x3e954048 # 72.64.149.62 -0xfaa37557 # 87.117.163.250 -0x36dbc658 # 88.198.219.54 -0xa81453d0 # 208.83.20.168 -0x5a941f5d # 93.31.148.90 -0xa598ea60 # 96.234.152.165 -0x65384ac6 # 198.74.56.101 -0x10aaa545 # 69.165.170.16 -0xaaab795b # 91.121.171.170 -0xdda7024c # 76.2.167.221 -0x0966f4c6 # 198.244.102.9 -0x68571c08 # 8.28.87.104 -0x8b40ee59 # 89.238.64.139 -0x33ac096c # 108.9.172.51 -0x844b4c4b # 75.76.75.132 -0xd392254d # 77.37.146.211 -0xba4d5a46 # 70.90.77.186 -0x63029653 # 83.150.2.99 -0xf655f636 # 54.246.85.246 -0xbe4c4bb1 # 177.75.76.190 -0x45dad036 # 54.208.218.69 -0x204bc052 # 82.192.75.32 -0x06c3a2b2 # 178.162.195.6 -0xf31fba6a # 106.186.31.243 -0xb21f09b0 # 176.9.31.178 -0x540d0751 # 81.7.13.84 -0xc7b46a57 # 87.106.180.199 -0x6a11795b # 91.121.17.106 -0x3d514045 # 69.64.81.61 -0x0318aa6d # 109.170.24.3 -0x30306ec3 # 195.110.48.48 -0x5c077432 # 50.116.7.92 -0x259ae46d # 109.228.154.37 -0x82bbd35f # 95.211.187.130 -0xae4222c0 # 192.34.66.174 -0x254415d4 # 212.21.68.37 -0xbd5f574b # 75.87.95.189 -0xd8fd175e # 94.23.253.216 -0x0a3f38c3 # 195.56.63.10 -0x2dce6bb8 # 184.107.206.45 -0xc201d058 # 88.208.1.194 -0x17fca5bc # 188.165.252.23 -0xe8453cca # 202.60.69.232 -0xd361f636 # 54.246.97.211 -0xa0d9edc0 # 192.237.217.160 -0x2f232e4e # 78.46.35.47 -0x134e116c # 108.17.78.19 -0x61ddc058 # 88.192.221.97 -0x05ba7283 # 131.114.186.5 -0xe1f7ed5b # 91.237.247.225 -0x040ec452 # 82.196.14.4 -0x4b672e4e # 78.46.103.75 -0xe4efa36d # 109.163.239.228 -0x47dca52e # 46.165.220.71 -0xe9332e4e # 78.46.51.233 -0xa3acb992 # 146.185.172.163 -0x24714c90 # 144.76.113.36 -0xa8cc8632 # 50.134.204.168 -0x26b1ce6d # 109.206.177.38 -0x264e53d4 # 212.83.78.38 -0xd3d2718c # 140.113.210.211 -0x225534ad # 173.52.85.34 -0xe289f3a2 # 162.243.137.226 -0x87341717 # 23.23.52.135 -0x9255ad4f # 79.173.85.146 -0x184bbb25 # 37.187.75.24 -0x885c7abc # 188.122.92.136 -0x3a6e9ac6 # 198.154.110.58 -0x1924185e # 94.24.36.25 -0xb73d4c90 # 144.76.61.183 -0x946d807a # 122.128.109.148 -0xa0d78e3f # 63.142.215.160 -0x5a16bb25 # 37.187.22.90 -0xcb09795b # 91.121.9.203 -0x8d0de657 # 87.230.13.141 -0x630b8b25 # 37.139.11.99 -0xe572c6cf # 207.198.114.229 -0x2b3f1118 # 24.17.63.43 -0x4242a91f # 31.169.66.66 -0x32990905 # 5.9.153.50 -0x058b0905 # 5.9.139.5 -0xe266fc60 # 96.252.102.226 -0xbe66c5b0 # 176.197.102.190 -0xcc98e46d # 109.228.152.204 -0x698c943e # 62.148.140.105 -0x44bd0cc3 # 195.12.189.68 -0x865c7abc # 188.122.92.134 -0x771764d3 # 211.100.23.119 -0x4675d655 # 85.214.117.70 -0x354e4826 # 38.72.78.53 -0xb67ac152 # 82.193.122.182 -0xaeccf285 # 133.242.204.174 -0xea625b4e # 78.91.98.234 -0xbcd6031f # 31.3.214.188 -0x5e81eb18 # 24.235.129.94 -0x74b347ce # 206.71.179.116 -0x3ca56ac1 # 193.106.165.60 -0x54ee4546 # 70.69.238.84 -0x38a8175e # 94.23.168.56 -0xa3c21155 # 85.17.194.163 -0x2f01576d # 109.87.1.47 -0x5d7ade50 # 80.222.122.93 -0xa003ae48 # 72.174.3.160 -0x2bc1d31f # 31.211.193.43 -0x13f5094c # 76.9.245.19 -0x7ab32648 # 72.38.179.122 -0x542e9fd5 # 213.159.46.84 -0x53136bc1 # 193.107.19.83 -0x7fdf51c0 # 192.81.223.127 -0x802197b2 # 178.151.33.128 -0xa2d2cc5b # 91.204.210.162 -0x6b5f4bc0 # 192.75.95.107 - -# Onion nodes -bitcoinostk4e4re.onion:8333 -5k4vwyy5stro33fb.onion:8333 -zy3kdqowmrb7xm7h.onion:8333 -e3tn727fywnioxrc.onion:8333 -kjy2eqzk4zwi5zd3.onion:8333 -pt2awtcs2ulm75ig.onion:8333 -td7tgof3imei3fm6.onion:8333 -czsbwh4pq4mh3izl.onion:8333 -xdnigz4qn5dbbw2t.onion:8333 -ymnsfdejmc74vcfb.onion:7033 -jxrvw5iqizppbgml.onion:8333 -bk5ejfe56xakvtkk.onion:8333 -szsm43ou7otwwyfv.onion:8333 -5ghqw4wj6hpgfvdg.onion:8333 -evolynhit7shzeet.onion:8333 -4crhf372poejlc44.onion:8333 -tfu4kqfhsw5slqp2.onion:8333 -i2r5tbaizb75h26f.onion:8333 -btcnet3utgzyz2bf.onion:8333 -vso3r6cmjoomhhgg.onion:8333 -pqosrh6wfaucet32.onion:8333 -zy3kdqowmrb7xm7h.onion:8333 -r4de4zf4lyniu4mx.onion:8444 +199.192.17.154:36307 +162.213.255.230:36307 \ No newline at end of file diff --git a/share/seeds/nodes_test.txt b/share/seeds/nodes_test.txt index 71782836feb43..68fe4704f40a7 100644 --- a/share/seeds/nodes_test.txt +++ b/share/seeds/nodes_test.txt @@ -1,5 +1,4 @@ # List of fixed seed nodes for testnet -# Onion nodes -thfsmmn2jbitcoin.onion -it2pj4f7657g3rhi.onion +199.192.17.154 +162.213.255.230 \ No newline at end of file diff --git a/share/setup.nsi.in b/share/setup.nsi.in index 6c0e895bb118a..b5180ffe56ab9 100644 --- a/share/setup.nsi.in +++ b/share/setup.nsi.in @@ -5,9 +5,9 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@ -!define COMPANY "Bitcoin Core project" -!define URL http://www.bitcoin.org/ +!define VERSION @CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@.@CLIENT_VERSION_BUILD@ +!define COMPANY "Hypercoin Core project" +!define URL http://www.hyper-coin.co/ # MUI Symbol Definitions !define MUI_ICON "@abs_top_srcdir@/share/pixmaps/bitcoin.ico" @@ -20,7 +20,7 @@ SetCompressor /SOLID lzma !define MUI_STARTMENUPAGE_REGISTRY_KEY ${REGKEY} !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME StartMenuGroup !define MUI_STARTMENUPAGE_DEFAULTFOLDER "@PACKAGE_NAME@" -!define MUI_FINISHPAGE_RUN $INSTDIR\bitcoin-qt.exe +!define MUI_FINISHPAGE_RUN $INSTDIR\hypercoin-qt.exe !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" !define MUI_UNWELCOMEFINISHPAGE_BITMAP "@abs_top_srcdir@/share/pixmaps/nsis-wizard.bmp" !define MUI_UNFINISHPAGE_NOAUTOCLOSE @@ -48,18 +48,18 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile @abs_top_srcdir@/bitcoin-${VERSION}-win@WINDOWS_BITS@-setup.exe +OutFile @abs_top_srcdir@/hypercoin-${VERSION}-win@WINDOWS_BITS@-setup.exe !if "@WINDOWS_BITS@" == "64" -InstallDir $PROGRAMFILES64\Bitcoin +InstallDir $PROGRAMFILES64\Hypercoin !else -InstallDir $PROGRAMFILES\Bitcoin +InstallDir $PROGRAMFILES\Hypercoin !endif CRCCheck on XPStyle on BrandingText " " ShowInstDetails show VIProductVersion ${VERSION}.@CLIENT_VERSION_BUILD@ -VIAddVersionKey ProductName "Bitcoin Core" +VIAddVersionKey ProductName "Hypercoin Core" VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" VIAddVersionKey CompanyWebsite "${URL}" @@ -73,19 +73,19 @@ ShowUninstDetails show Section -Main SEC0000 SetOutPath $INSTDIR SetOverwrite on - File @abs_top_srcdir@/release/bitcoin-qt.exe + File @abs_top_srcdir@/release/hypercoin-qt.exe File /oname=COPYING.txt @abs_top_srcdir@/COPYING File /oname=readme.txt @abs_top_srcdir@/doc/README_windows.txt SetOutPath $INSTDIR\daemon - File @abs_top_srcdir@/release/bitcoind.exe - File @abs_top_srcdir@/release/bitcoin-cli.exe + File @abs_top_srcdir@/release/hypercoind.exe + File @abs_top_srcdir@/release/hypercoin-cli.exe SetOutPath $INSTDIR\doc File /r @abs_top_srcdir@/doc\*.* SetOutPath $INSTDIR WriteRegStr HKCU "${REGKEY}\Components" Main 1 - # Remove old wxwidgets-based-bitcoin executable and locales: - Delete /REBOOTOK $INSTDIR\bitcoin.exe + # Remove old wxwidgets-based-hypercoin executable and locales: + Delete /REBOOTOK $INSTDIR\hypercoin.exe RMDir /r /REBOOTOK $INSTDIR\locale SectionEnd @@ -95,7 +95,7 @@ Section -post SEC0001 WriteUninstaller $INSTDIR\uninstall.exe !insertmacro MUI_STARTMENU_WRITE_BEGIN Application CreateDirectory $SMPROGRAMS\$StartMenuGroup - CreateShortcut "$SMPROGRAMS\$StartMenuGroup\$(^Name).lnk" $INSTDIR\bitcoin-qt.exe + CreateShortcut "$SMPROGRAMS\$StartMenuGroup\$(^Name).lnk" $INSTDIR\hypercoin-qt.exe CreateShortcut "$SMPROGRAMS\$StartMenuGroup\Uninstall $(^Name).lnk" $INSTDIR\uninstall.exe !insertmacro MUI_STARTMENU_WRITE_END WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayName "$(^Name)" @@ -106,10 +106,10 @@ Section -post SEC0001 WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" UninstallString $INSTDIR\uninstall.exe WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoModify 1 WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoRepair 1 - WriteRegStr HKCR "bitcoin" "URL Protocol" "" - WriteRegStr HKCR "bitcoin" "" "URL:Bitcoin" - WriteRegStr HKCR "bitcoin\DefaultIcon" "" $INSTDIR\bitcoin-qt.exe - WriteRegStr HKCR "bitcoin\shell\open\command" "" '"$INSTDIR\bitcoin-qt.exe" "%1"' + WriteRegStr HKCR "hypercoin" "URL Protocol" "" + WriteRegStr HKCR "hypercoin" "" "URL:Hypercoin" + WriteRegStr HKCR "hypercoin\DefaultIcon" "" $INSTDIR\hypercoin-qt.exe + WriteRegStr HKCR "hypercoin\shell\open\command" "" '"$INSTDIR\hypercoin-qt.exe" "%1"' SectionEnd # Macro for selecting uninstaller sections @@ -127,7 +127,7 @@ done${UNSECTION_ID}: # Uninstaller sections Section /o -un.Main UNSEC0000 - Delete /REBOOTOK $INSTDIR\bitcoin-qt.exe + Delete /REBOOTOK $INSTDIR\hypercoin-qt.exe Delete /REBOOTOK $INSTDIR\COPYING.txt Delete /REBOOTOK $INSTDIR\readme.txt RMDir /r /REBOOTOK $INSTDIR\daemon @@ -139,7 +139,7 @@ Section -un.post UNSEC0001 DeleteRegKey HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Uninstall $(^Name).lnk" Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\$(^Name).lnk" - Delete /REBOOTOK "$SMSTARTUP\Bitcoin.lnk" + Delete /REBOOTOK "$SMSTARTUP\Hypercoin.lnk" Delete /REBOOTOK $INSTDIR\uninstall.exe Delete /REBOOTOK $INSTDIR\debug.log Delete /REBOOTOK $INSTDIR\db.log @@ -147,7 +147,7 @@ Section -un.post UNSEC0001 DeleteRegValue HKCU "${REGKEY}" Path DeleteRegKey /IfEmpty HKCU "${REGKEY}\Components" DeleteRegKey /IfEmpty HKCU "${REGKEY}" - DeleteRegKey HKCR "bitcoin" + DeleteRegKey HKCR "hypercoin" RmDir /REBOOTOK $SMPROGRAMS\$StartMenuGroup RmDir /REBOOTOK $INSTDIR Push $R0 diff --git a/src/Makefile.am b/src/Makefile.am index 81b16d1ea9a1d..8e7557ff3f859 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -60,11 +60,11 @@ bin_PROGRAMS = TESTS = if BUILD_BITCOIND - bin_PROGRAMS += bitcoind + bin_PROGRAMS += hypercoind endif if BUILD_BITCOIN_UTILS - bin_PROGRAMS += bitcoin-cli bitcoin-tx + bin_PROGRAMS += hypercoin-cli hypercoin-tx endif .PHONY: FORCE @@ -210,6 +210,7 @@ crypto_libbitcoin_crypto_a_SOURCES = \ crypto/hmac_sha256.cpp \ crypto/rfc6979_hmac_sha256.cpp \ crypto/hmac_sha512.cpp \ + crypto/scrypt.cpp \ crypto/ripemd160.cpp \ crypto/common.h \ crypto/sha256.h \ @@ -217,6 +218,7 @@ crypto_libbitcoin_crypto_a_SOURCES = \ crypto/hmac_sha256.h \ crypto/rfc6979_hmac_sha256.h \ crypto/hmac_sha512.h \ + crypto/scrypt.h \ crypto/sha1.h \ crypto/ripemd160.h @@ -290,8 +292,8 @@ libbitcoin_cli_a_SOURCES = \ nodist_libbitcoin_util_a_SOURCES = $(srcdir)/obj/build.h # -# bitcoind binary # -bitcoind_LDADD = \ +# hypercoind binary # +hypercoind_LDADD = \ $(LIBBITCOIN_SERVER) \ $(LIBBITCOIN_COMMON) \ $(LIBBITCOIN_UNIVALUE) \ @@ -302,35 +304,35 @@ bitcoind_LDADD = \ $(LIBSECP256K1) if ENABLE_WALLET -bitcoind_LDADD += libbitcoin_wallet.a +hypercoind_LDADD += libbitcoin_wallet.a endif -bitcoind_SOURCES = bitcoind.cpp +hypercoind_SOURCES = bitcoind.cpp # if TARGET_WINDOWS -bitcoind_SOURCES += bitcoind-res.rc +hypercoind_SOURCES += bitcoind-res.rc endif -bitcoind_LDADD += $(BOOST_LIBS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) -bitcoind_CPPFLAGS = $(BITCOIN_INCLUDES) -bitcoind_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) +hypercoind_LDADD += $(BOOST_LIBS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) +hypercoind_CPPFLAGS = $(BITCOIN_INCLUDES) +hypercoind_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) # bitcoin-cli binary # -bitcoin_cli_LDADD = \ +hypercoin_cli_LDADD = \ $(LIBBITCOIN_CLI) \ $(LIBBITCOIN_UTIL) \ $(BOOST_LIBS) \ $(SSL_LIBS) \ $(CRYPTO_LIBS) -bitcoin_cli_SOURCES = \ +hypercoin_cli_SOURCES = \ bitcoin-cli.cpp -bitcoin_cli_CPPFLAGS = $(BITCOIN_INCLUDES) +hypercoin_cli_CPPFLAGS = $(BITCOIN_INCLUDES) # # bitcoin-tx binary # -bitcoin_tx_LDADD = \ +hypercoin_tx_LDADD = \ $(LIBBITCOIN_UNIVALUE) \ $(LIBBITCOIN_COMMON) \ $(LIBBITCOIN_UTIL) \ @@ -339,21 +341,22 @@ bitcoin_tx_LDADD = \ $(BOOST_LIBS) \ $(CRYPTO_LIBS) -bitcoin_tx_SOURCES = bitcoin-tx.cpp -bitcoin_tx_CPPFLAGS = $(BITCOIN_INCLUDES) +hypercoin_tx_SOURCES = bitcoin-tx.cpp +hypercoin_tx_CPPFLAGS = $(BITCOIN_INCLUDES) # -bitcoin_tx_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) +hypercoin_tx_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) if TARGET_WINDOWS -bitcoin_cli_SOURCES += bitcoin-cli-res.rc +hypercoin_cli_SOURCES += bitcoin-cli-res.rc endif -bitcoin_cli_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) +hypercoin_cli_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) if BUILD_BITCOIN_LIBS include_HEADERS = script/bitcoinconsensus.h libbitcoinconsensus_la_SOURCES = \ primitives/transaction.cpp \ crypto/hmac_sha512.cpp \ + crypto/scrypt.cpp \ crypto/sha1.cpp \ crypto/sha256.cpp \ crypto/sha512.cpp \ diff --git a/src/Makefile.qt.include b/src/Makefile.qt.include index 5812f9aff0b87..468517231055c 100644 --- a/src/Makefile.qt.include +++ b/src/Makefile.qt.include @@ -1,4 +1,4 @@ -bin_PROGRAMS += qt/bitcoin-qt +bin_PROGRAMS += qt/hypercoin-qt EXTRA_LIBRARIES += qt/libbitcoinqt.a # bitcoin qt core # @@ -337,7 +337,7 @@ QT_FORMS_H=$(join $(dir $(QT_FORMS_UI)),$(addprefix ui_, $(notdir $(QT_FORMS_UI: # Most files will depend on the forms and moc files as includes. Generate them # before anything else. $(QT_MOC): $(QT_FORMS_H) -$(qt_libbitcoinqt_a_OBJECTS) $(qt_bitcoin_qt_OBJECTS) : | $(QT_MOC) +$(qt_libbitcoinqt_a_OBJECTS) $(qt_hypercoin_qt_OBJECTS) : | $(QT_MOC) #Generating these with a half-written protobuf header leads to wacky results. #This makes sure it's done. @@ -345,24 +345,24 @@ $(QT_MOC): $(PROTOBUF_H) $(QT_MOC_CPP): $(PROTOBUF_H) # bitcoin-qt binary # -qt_bitcoin_qt_CPPFLAGS = $(BITCOIN_INCLUDES) $(BITCOIN_QT_INCLUDES) \ +qt_hypercoin_qt_CPPFLAGS = $(BITCOIN_INCLUDES) $(BITCOIN_QT_INCLUDES) \ $(QT_INCLUDES) $(PROTOBUF_CFLAGS) $(QR_CFLAGS) -qt_bitcoin_qt_SOURCES = qt/bitcoin.cpp +qt_hypercoin_qt_SOURCES = qt/bitcoin.cpp if TARGET_DARWIN - qt_bitcoin_qt_SOURCES += $(BITCOIN_MM) + qt_hypercoin_qt_SOURCES += $(BITCOIN_MM) endif if TARGET_WINDOWS - qt_bitcoin_qt_SOURCES += $(BITCOIN_RC) + qt_hypercoin_qt_SOURCES += $(BITCOIN_RC) endif -qt_bitcoin_qt_LDADD = qt/libbitcoinqt.a $(LIBBITCOIN_SERVER) +qt_hypercoin_qt_LDADD = qt/libbitcoinqt.a $(LIBBITCOIN_SERVER) if ENABLE_WALLET -qt_bitcoin_qt_LDADD += $(LIBBITCOIN_WALLET) +qt_hypercoin_qt_LDADD += $(LIBBITCOIN_WALLET) endif -qt_bitcoin_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \ +qt_hypercoin_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \ $(BOOST_LIBS) $(QT_LIBS) $(QT_DBUS_LIBS) $(QR_LIBS) $(PROTOBUF_LIBS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(LIBSECP256K1) -qt_bitcoin_qt_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(QT_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -qt_bitcoin_qt_LIBTOOLFLAGS = --tag CXX +qt_hypercoin_qt_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(QT_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) +qt_hypercoin_qt_LIBTOOLFLAGS = --tag CXX #locale/foo.ts -> locale/foo.qm QT_QM=$(QT_TS:.ts=.qm) @@ -393,9 +393,9 @@ CLEAN_QT = $(nodist_qt_libbitcoinqt_a_SOURCES) $(QT_QM) $(QT_FORMS_H) qt/*.gcda CLEANFILES += $(CLEAN_QT) bitcoin_qt_clean: FORCE - rm -f $(CLEAN_QT) $(qt_libbitcoinqt_a_OBJECTS) $(qt_bitcoin_qt_OBJECTS) qt/bitcoin-qt$(EXEEXT) $(LIBBITCOINQT) + rm -f $(CLEAN_QT) $(qt_libbitcoinqt_a_OBJECTS) $(qt_bitcoin_qt_OBJECTS) qt/hypercoin-qt$(EXEEXT) $(LIBBITCOINQT) -bitcoin_qt : qt/bitcoin-qt$(EXEEXT) +bitcoin_qt : qt/hypercoin-qt$(EXEEXT) ui_%.h: %.ui @test -f $(UIC) diff --git a/src/Makefile.qttest.include b/src/Makefile.qttest.include index c5392cf307a5f..2b4e5e9bbaf04 100644 --- a/src/Makefile.qttest.include +++ b/src/Makefile.qttest.include @@ -1,5 +1,5 @@ -bin_PROGRAMS += qt/test/test_bitcoin-qt -TESTS += qt/test/test_bitcoin-qt +bin_PROGRAMS += qt/test/test_hypercoin-qt +TESTS += qt/test/test_hypercoin-qt TEST_QT_MOC_CPP = qt/test/moc_uritests.cpp @@ -12,37 +12,37 @@ TEST_QT_H = \ qt/test/paymentrequestdata.h \ qt/test/paymentservertests.h -qt_test_test_bitcoin_qt_CPPFLAGS = $(BITCOIN_INCLUDES) $(BITCOIN_QT_INCLUDES) \ +qt_test_test_hypercoin_qt_CPPFLAGS = $(BITCOIN_INCLUDES) $(BITCOIN_QT_INCLUDES) \ $(QT_INCLUDES) $(QT_TEST_INCLUDES) $(PROTOBUF_CFLAGS) -qt_test_test_bitcoin_qt_SOURCES = \ +qt_test_test_hypercoin_qt_SOURCES = \ qt/test/test_main.cpp \ qt/test/uritests.cpp \ $(TEST_QT_H) if ENABLE_WALLET -qt_test_test_bitcoin_qt_SOURCES += \ +qt_test_test_hypercoin_qt_SOURCES += \ qt/test/paymentservertests.cpp endif -nodist_qt_test_test_bitcoin_qt_SOURCES = $(TEST_QT_MOC_CPP) +nodist_qt_test_test_hypercoin_qt_SOURCES = $(TEST_QT_MOC_CPP) -qt_test_test_bitcoin_qt_LDADD = $(LIBBITCOINQT) $(LIBBITCOIN_SERVER) +qt_test_test_hypercoin_qt_LDADD = $(LIBBITCOINQT) $(LIBBITCOIN_SERVER) if ENABLE_WALLET -qt_test_test_bitcoin_qt_LDADD += $(LIBBITCOIN_WALLET) +qt_test_test_hypercoin_qt_LDADD += $(LIBBITCOIN_WALLET) endif -qt_test_test_bitcoin_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) \ +qt_test_test_hypercoin_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) \ $(LIBMEMENV) $(BOOST_LIBS) $(QT_DBUS_LIBS) $(QT_TEST_LIBS) $(QT_LIBS) \ $(QR_LIBS) $(PROTOBUF_LIBS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(LIBSECP256K1) -qt_test_test_bitcoin_qt_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(QT_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) +qt_test_test_hypercoin_qt_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(QT_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) CLEAN_BITCOIN_QT_TEST = $(TEST_QT_MOC_CPP) qt/test/*.gcda qt/test/*.gcno CLEANFILES += $(CLEAN_BITCOIN_QT_TEST) -test_bitcoin_qt : qt/test/test_bitcoin-qt$(EXEEXT) +test_bitcoin_qt : qt/test/test_hypercoin-qt$(EXEEXT) -test_bitcoin_qt_check : qt/test/test_bitcoin-qt$(EXEEXT) FORCE +test_bitcoin_qt_check : qt/test/test_hypercoin-qt$(EXEEXT) FORCE $(MAKE) check-TESTS TESTS=$^ test_bitcoin_qt_clean: FORCE - rm -f $(CLEAN_BITCOIN_QT_TEST) $(qt_test_test_bitcoin_qt_OBJECTS) + rm -f $(CLEAN_BITCOIN_QT_TEST) $(qt_test_test_hypercoin_qt_OBJECTS) diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 9e9f478d8fe14..0e6a516f66548 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -1,8 +1,7 @@ -TESTS += test/test_bitcoin test/bitcoin-util-test.py -bin_PROGRAMS += test/test_bitcoin +TESTS += test/test_hypercoin test/bitcoin-util-test.py +bin_PROGRAMS += test/test_hypercoin TEST_SRCDIR = test -TEST_BINARY=test/test_bitcoin$(EXEEXT) - +TEST_BINARY=test/test_hypercoin$(EXEEXT) EXTRA_DIST += \ test/bctest.py \ @@ -14,7 +13,8 @@ EXTRA_DIST += \ test/data/tt-locktime317000-out.hex \ test/data/tx394b54bb.hex \ test/data/txcreate1.hex \ - test/data/txcreate2.hex + test/data/txcreate2.hex \ + test/data/txcreatesign.hex JSON_TEST_FILES = \ test/data/script_valid.json \ @@ -50,12 +50,14 @@ BITCOIN_TESTS =\ test/hash_tests.cpp \ test/key_tests.cpp \ test/main_tests.cpp \ + test/mempool_tests.cpp \ test/miner_tests.cpp \ test/mruset_tests.cpp \ test/multisig_tests.cpp \ test/netbase_tests.cpp \ test/pmt_tests.cpp \ test/rpc_tests.cpp \ + test/sanity_tests.cpp \ test/script_P2SH_tests.cpp \ test/script_tests.cpp \ test/scriptnum_tests.cpp \ @@ -77,18 +79,18 @@ BITCOIN_TESTS += \ test/rpc_wallet_tests.cpp endif -test_test_bitcoin_SOURCES = $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES) -test_test_bitcoin_CPPFLAGS = $(BITCOIN_INCLUDES) -I$(builddir)/test/ $(TESTDEFS) -test_test_bitcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \ +test_test_hypercoin_SOURCES = $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES) +test_test_hypercoin_CPPFLAGS = $(BITCOIN_INCLUDES) -I$(builddir)/test/ $(TESTDEFS) +test_test_hypercoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \ $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) $(LIBSECP256K1) if ENABLE_WALLET -test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET) +test_test_hypercoin_LDADD += $(LIBBITCOIN_WALLET) endif -test_test_bitcoin_LDADD += $(LIBBITCOIN_CONSENSUS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) -test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static +test_test_hypercoin_LDADD += $(LIBBITCOIN_CONSENSUS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) +test_test_hypercoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static -nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES) +nodist_test_test_hypercoin_SOURCES = $(GENERATED_TEST_FILES) $(BITCOIN_TESTS): $(GENERATED_TEST_FILES) @@ -102,7 +104,7 @@ bitcoin_test_check: $(TEST_BINARY) FORCE $(MAKE) check-TESTS TESTS=$^ bitcoin_test_clean : FORCE - rm -f $(CLEAN_BITCOIN_TEST) $(test_test_bitcoin_OBJECTS) $(TEST_BINARY) + rm -f $(CLEAN_BITCOIN_TEST) $(test_test_hypercoin_OBJECTS) $(TEST_BINARY) check-local: $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check diff --git a/src/addrman.cpp b/src/addrman.cpp index 1982db52ae33c..ad7fa9bd51fe6 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -10,34 +10,27 @@ using namespace std; -int CAddrInfo::GetTriedBucket(const std::vector& nKey) const +int CAddrInfo::GetTriedBucket(const uint256& nKey) const { - CDataStream ss1(SER_GETHASH, 0); - std::vector vchKey = GetKey(); - ss1 << nKey << vchKey; - uint64_t hash1 = Hash(ss1.begin(), ss1.end()).GetLow64(); - - CDataStream ss2(SER_GETHASH, 0); - std::vector vchGroupKey = GetGroup(); - ss2 << nKey << vchGroupKey << (hash1 % ADDRMAN_TRIED_BUCKETS_PER_GROUP); - uint64_t hash2 = Hash(ss2.begin(), ss2.end()).GetLow64(); + uint64_t hash1 = (CHashWriter(SER_GETHASH, 0) << nKey << GetKey()).GetHash().GetLow64(); + uint64_t hash2 = (CHashWriter(SER_GETHASH, 0) << nKey << GetGroup() << (hash1 % ADDRMAN_TRIED_BUCKETS_PER_GROUP)).GetHash().GetLow64(); return hash2 % ADDRMAN_TRIED_BUCKET_COUNT; } -int CAddrInfo::GetNewBucket(const std::vector& nKey, const CNetAddr& src) const +int CAddrInfo::GetNewBucket(const uint256& nKey, const CNetAddr& src) const { - CDataStream ss1(SER_GETHASH, 0); - std::vector vchGroupKey = GetGroup(); std::vector vchSourceGroupKey = src.GetGroup(); - ss1 << nKey << vchGroupKey << vchSourceGroupKey; - uint64_t hash1 = Hash(ss1.begin(), ss1.end()).GetLow64(); - - CDataStream ss2(SER_GETHASH, 0); - ss2 << nKey << vchSourceGroupKey << (hash1 % ADDRMAN_NEW_BUCKETS_PER_SOURCE_GROUP); - uint64_t hash2 = Hash(ss2.begin(), ss2.end()).GetLow64(); + uint64_t hash1 = (CHashWriter(SER_GETHASH, 0) << nKey << GetGroup() << vchSourceGroupKey).GetHash().GetLow64(); + uint64_t hash2 = (CHashWriter(SER_GETHASH, 0) << nKey << vchSourceGroupKey << (hash1 % ADDRMAN_NEW_BUCKETS_PER_SOURCE_GROUP)).GetHash().GetLow64(); return hash2 % ADDRMAN_NEW_BUCKET_COUNT; } +int CAddrInfo::GetBucketPosition(const uint256 &nKey, bool fNew, int nBucket) const +{ + uint64_t hash1 = (CHashWriter(SER_GETHASH, 0) << nKey << (fNew ? 'N' : 'K') << nBucket << GetKey()).GetHash().GetLow64(); + return hash1 % ADDRMAN_BUCKET_SIZE; +} + bool CAddrInfo::IsTerrible(int64_t nNow) const { if (nLastTry && nLastTry >= nNow - 60) // never remove things tried in the last minute @@ -70,15 +63,12 @@ double CAddrInfo::GetChance(int64_t nNow) const if (nSinceLastTry < 0) nSinceLastTry = 0; - fChance *= 600.0 / (600.0 + nSinceLastSeen); - // deprioritize very recent attempts away if (nSinceLastTry < 60 * 10) fChance *= 0.01; - // deprioritize 50% after each failed attempt - for (int n = 0; n < nAttempts; n++) - fChance /= 1.5; + // deprioritize 66% after each failed attempt, but at most 1/28th to avoid the search taking forever or overly penalizing outages. + fChance *= pow(0.66, min(nAttempts, 8)); return fChance; } @@ -128,85 +118,44 @@ void CAddrMan::SwapRandom(unsigned int nRndPos1, unsigned int nRndPos2) vRandom[nRndPos2] = nId1; } -int CAddrMan::SelectTried(int nKBucket) +void CAddrMan::Delete(int nId) { - std::vector& vTried = vvTried[nKBucket]; - - // randomly shuffle the first few elements (using the entire list) - // find the least recently tried among them - int64_t nOldest = -1; - int nOldestPos = -1; - for (unsigned int i = 0; i < ADDRMAN_TRIED_ENTRIES_INSPECT_ON_EVICT && i < vTried.size(); i++) { - int nPos = GetRandInt(vTried.size() - i) + i; - int nTemp = vTried[nPos]; - vTried[nPos] = vTried[i]; - vTried[i] = nTemp; - assert(nOldest == -1 || mapInfo.count(nTemp) == 1); - if (nOldest == -1 || mapInfo[nTemp].nLastSuccess < mapInfo[nOldest].nLastSuccess) { - nOldest = nTemp; - nOldestPos = nPos; - } - } + assert(mapInfo.count(nId) != 0); + CAddrInfo& info = mapInfo[nId]; + assert(!info.fInTried); + assert(info.nRefCount == 0); - return nOldestPos; + SwapRandom(info.nRandomPos, vRandom.size() - 1); + vRandom.pop_back(); + mapAddr.erase(info); + mapInfo.erase(nId); + nNew--; } -int CAddrMan::ShrinkNew(int nUBucket) +void CAddrMan::ClearNew(int nUBucket, int nUBucketPos) { - assert(nUBucket >= 0 && (unsigned int)nUBucket < vvNew.size()); - std::set& vNew = vvNew[nUBucket]; - - // first look for deletable items - for (std::set::iterator it = vNew.begin(); it != vNew.end(); it++) { - assert(mapInfo.count(*it)); - CAddrInfo& info = mapInfo[*it]; - if (info.IsTerrible()) { - if (--info.nRefCount == 0) { - SwapRandom(info.nRandomPos, vRandom.size() - 1); - vRandom.pop_back(); - mapAddr.erase(info); - mapInfo.erase(*it); - nNew--; - } - vNew.erase(it); - return 0; - } - } - - // otherwise, select four randomly, and pick the oldest of those to replace - int n[4] = {GetRandInt(vNew.size()), GetRandInt(vNew.size()), GetRandInt(vNew.size()), GetRandInt(vNew.size())}; - int nI = 0; - int nOldest = -1; - for (std::set::iterator it = vNew.begin(); it != vNew.end(); it++) { - if (nI == n[0] || nI == n[1] || nI == n[2] || nI == n[3]) { - assert(nOldest == -1 || mapInfo.count(*it) == 1); - if (nOldest == -1 || mapInfo[*it].nTime < mapInfo[nOldest].nTime) - nOldest = *it; + // if there is an entry in the specified bucket, delete it. + if (vvNew[nUBucket][nUBucketPos] != -1) { + int nIdDelete = vvNew[nUBucket][nUBucketPos]; + CAddrInfo& infoDelete = mapInfo[nIdDelete]; + assert(infoDelete.nRefCount > 0); + infoDelete.nRefCount--; + vvNew[nUBucket][nUBucketPos] = -1; + if (infoDelete.nRefCount == 0) { + Delete(nIdDelete); } - nI++; - } - assert(mapInfo.count(nOldest) == 1); - CAddrInfo& info = mapInfo[nOldest]; - if (--info.nRefCount == 0) { - SwapRandom(info.nRandomPos, vRandom.size() - 1); - vRandom.pop_back(); - mapAddr.erase(info); - mapInfo.erase(nOldest); - nNew--; } - vNew.erase(nOldest); - - return 1; } -void CAddrMan::MakeTried(CAddrInfo& info, int nId, int nOrigin) +void CAddrMan::MakeTried(CAddrInfo& info, int nId) { - assert(vvNew[nOrigin].count(nId) == 1); - // remove the entry from all new buckets - for (std::vector >::iterator it = vvNew.begin(); it != vvNew.end(); it++) { - if ((*it).erase(nId)) + for (int bucket = 0; bucket < ADDRMAN_NEW_BUCKET_COUNT; bucket++) { + int pos = info.GetBucketPosition(nKey, true, bucket); + if (vvNew[bucket][pos] == nId) { + vvNew[bucket][pos] = -1; info.nRefCount--; + } } nNew--; @@ -214,44 +163,36 @@ void CAddrMan::MakeTried(CAddrInfo& info, int nId, int nOrigin) // which tried bucket to move the entry to int nKBucket = info.GetTriedBucket(nKey); - std::vector& vTried = vvTried[nKBucket]; - - // first check whether there is place to just add it - if (vTried.size() < ADDRMAN_TRIED_BUCKET_SIZE) { - vTried.push_back(nId); - nTried++; - info.fInTried = true; - return; - } - - // otherwise, find an item to evict - int nPos = SelectTried(nKBucket); - - // find which new bucket it belongs to - assert(mapInfo.count(vTried[nPos]) == 1); - int nUBucket = mapInfo[vTried[nPos]].GetNewBucket(nKey); - std::set& vNew = vvNew[nUBucket]; - - // remove the to-be-replaced tried entry from the tried set - CAddrInfo& infoOld = mapInfo[vTried[nPos]]; - infoOld.fInTried = false; - infoOld.nRefCount = 1; - // do not update nTried, as we are going to move something else there immediately - - // check whether there is place in that one, - if (vNew.size() < ADDRMAN_NEW_BUCKET_SIZE) { - // if so, move it back there - vNew.insert(vTried[nPos]); - } else { - // otherwise, move it to the new bucket nId came from (there is certainly place there) - vvNew[nOrigin].insert(vTried[nPos]); + int nKBucketPos = info.GetBucketPosition(nKey, false, nKBucket); + + // first make space to add it (the existing tried entry there is moved to new, deleting whatever is there). + if (vvTried[nKBucket][nKBucketPos] != -1) { + // find an item to evict + int nIdEvict = vvTried[nKBucket][nKBucketPos]; + assert(mapInfo.count(nIdEvict) == 1); + CAddrInfo& infoOld = mapInfo[nIdEvict]; + + // Remove the to-be-evicted item from the tried set. + infoOld.fInTried = false; + vvTried[nKBucket][nKBucketPos] = -1; + nTried--; + + // find which new bucket it belongs to + int nUBucket = infoOld.GetNewBucket(nKey); + int nUBucketPos = infoOld.GetBucketPosition(nKey, true, nUBucket); + ClearNew(nUBucket, nUBucketPos); + assert(vvNew[nUBucket][nUBucketPos] == -1); + + // Enter it into the new set again. + infoOld.nRefCount = 1; + vvNew[nUBucket][nUBucketPos] = nIdEvict; + nNew++; } - nNew++; + assert(vvTried[nKBucket][nKBucketPos] == -1); - vTried[nPos] = nId; - // we just overwrote an entry in vTried; no need to update nTried + vvTried[nKBucket][nKBucketPos] = nId; + nTried++; info.fInTried = true; - return; } void CAddrMan::Good_(const CService& addr, int64_t nTime) @@ -272,20 +213,21 @@ void CAddrMan::Good_(const CService& addr, int64_t nTime) // update info info.nLastSuccess = nTime; info.nLastTry = nTime; - info.nTime = nTime; info.nAttempts = 0; + // nTime is not updated here, to avoid leaking information about + // currently-connected peers. // if it is already in the tried set, don't do anything else if (info.fInTried) return; // find a bucket it is in now - int nRnd = GetRandInt(vvNew.size()); + int nRnd = GetRandInt(ADDRMAN_NEW_BUCKET_COUNT); int nUBucket = -1; - for (unsigned int n = 0; n < vvNew.size(); n++) { - int nB = (n + nRnd) % vvNew.size(); - std::set& vNew = vvNew[nB]; - if (vNew.count(nId)) { + for (unsigned int n = 0; n < ADDRMAN_NEW_BUCKET_COUNT; n++) { + int nB = (n + nRnd) % ADDRMAN_NEW_BUCKET_COUNT; + int nBpos = info.GetBucketPosition(nKey, true, nB); + if (vvNew[nB][nBpos] == nId) { nUBucket = nB; break; } @@ -299,7 +241,7 @@ void CAddrMan::Good_(const CService& addr, int64_t nTime) LogPrint("addrman", "Moving %s to tried\n", addr.ToString()); // move nId to the tried tables - MakeTried(info, nId, nUBucket); + MakeTried(info, nId); } bool CAddrMan::Add_(const CAddress& addr, const CNetAddr& source, int64_t nTimePenalty) @@ -347,12 +289,25 @@ bool CAddrMan::Add_(const CAddress& addr, const CNetAddr& source, int64_t nTimeP } int nUBucket = pinfo->GetNewBucket(nKey, source); - std::set& vNew = vvNew[nUBucket]; - if (!vNew.count(nId)) { - pinfo->nRefCount++; - if (vNew.size() == ADDRMAN_NEW_BUCKET_SIZE) - ShrinkNew(nUBucket); - vvNew[nUBucket].insert(nId); + int nUBucketPos = pinfo->GetBucketPosition(nKey, true, nUBucket); + if (vvNew[nUBucket][nUBucketPos] != nId) { + bool fInsert = vvNew[nUBucket][nUBucketPos] == -1; + if (!fInsert) { + CAddrInfo& infoExisting = mapInfo[vvNew[nUBucket][nUBucketPos]]; + if (infoExisting.IsTerrible() || (infoExisting.nRefCount > 1 && pinfo->nRefCount == 0)) { + // Overwrite the existing new table entry. + fInsert = true; + } + } + if (fInsert) { + ClearNew(nUBucket, nUBucketPos); + pinfo->nRefCount++; + vvNew[nUBucket][nUBucketPos] = nId; + } else { + if (pinfo->nRefCount == 0) { + Delete(nId); + } + } } return fNew; } @@ -376,24 +331,23 @@ void CAddrMan::Attempt_(const CService& addr, int64_t nTime) info.nAttempts++; } -CAddress CAddrMan::Select_(int nUnkBias) +CAddress CAddrMan::Select_() { if (size() == 0) return CAddress(); - double nCorTried = sqrt(nTried) * (100.0 - nUnkBias); - double nCorNew = sqrt(nNew) * nUnkBias; - if ((nCorTried + nCorNew) * GetRandInt(1 << 30) / (1 << 30) < nCorTried) { + // Use a 50% chance for choosing between tried and new table entries. + if (nTried > 0 && (nNew == 0 || GetRandInt(2) == 0)) { // use a tried node double fChanceFactor = 1.0; while (1) { - int nKBucket = GetRandInt(vvTried.size()); - std::vector& vTried = vvTried[nKBucket]; - if (vTried.size() == 0) + int nKBucket = GetRandInt(ADDRMAN_TRIED_BUCKET_COUNT); + int nKBucketPos = GetRandInt(ADDRMAN_BUCKET_SIZE); + if (vvTried[nKBucket][nKBucketPos] == -1) continue; - int nPos = GetRandInt(vTried.size()); - assert(mapInfo.count(vTried[nPos]) == 1); - CAddrInfo& info = mapInfo[vTried[nPos]]; + int nId = vvTried[nKBucket][nKBucketPos]; + assert(mapInfo.count(nId) == 1); + CAddrInfo& info = mapInfo[nId]; if (GetRandInt(1 << 30) < fChanceFactor * info.GetChance() * (1 << 30)) return info; fChanceFactor *= 1.2; @@ -402,16 +356,13 @@ CAddress CAddrMan::Select_(int nUnkBias) // use a new node double fChanceFactor = 1.0; while (1) { - int nUBucket = GetRandInt(vvNew.size()); - std::set& vNew = vvNew[nUBucket]; - if (vNew.size() == 0) + int nUBucket = GetRandInt(ADDRMAN_NEW_BUCKET_COUNT); + int nUBucketPos = GetRandInt(ADDRMAN_BUCKET_SIZE); + if (vvNew[nUBucket][nUBucketPos] == -1) continue; - int nPos = GetRandInt(vNew.size()); - std::set::iterator it = vNew.begin(); - while (nPos--) - it++; - assert(mapInfo.count(*it) == 1); - CAddrInfo& info = mapInfo[*it]; + int nId = vvNew[nUBucket][nUBucketPos]; + assert(mapInfo.count(nId) == 1); + CAddrInfo& info = mapInfo[nId]; if (GetRandInt(1 << 30) < fChanceFactor * info.GetChance() * (1 << 30)) return info; fChanceFactor *= 1.2; @@ -459,22 +410,30 @@ int CAddrMan::Check_() if (mapNew.size() != nNew) return -10; - for (int n = 0; n < vvTried.size(); n++) { - std::vector& vTried = vvTried[n]; - for (std::vector::iterator it = vTried.begin(); it != vTried.end(); it++) { - if (!setTried.count(*it)) - return -11; - setTried.erase(*it); + for (int n = 0; n < ADDRMAN_TRIED_BUCKET_COUNT; n++) { + for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) { + if (vvTried[n][i] != -1) { + if (!setTried.count(vvTried[n][i])) + return -11; + if (mapInfo[vvTried[n][i]].GetTriedBucket(nKey) != n) + return -17; + if (mapInfo[vvTried[n][i]].GetBucketPosition(nKey, false, n) != i) + return -18; + setTried.erase(vvTried[n][i]); + } } } - for (int n = 0; n < vvNew.size(); n++) { - std::set& vNew = vvNew[n]; - for (std::set::iterator it = vNew.begin(); it != vNew.end(); it++) { - if (!mapNew.count(*it)) - return -12; - if (--mapNew[*it] == 0) - mapNew.erase(*it); + for (int n = 0; n < ADDRMAN_NEW_BUCKET_COUNT; n++) { + for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) { + if (vvNew[n][i] != -1) { + if (!mapNew.count(vvNew[n][i])) + return -12; + if (mapInfo[vvNew[n][i]].GetBucketPosition(nKey, true, n) != i) + return -19; + if (--mapNew[vvNew[n][i]] == 0) + mapNew.erase(vvNew[n][i]); + } } } @@ -482,6 +441,8 @@ int CAddrMan::Check_() return -13; if (mapNew.size()) return -15; + if (nKey.IsNull()) + return -16; return 0; } diff --git a/src/addrman.h b/src/addrman.h index d47217683c732..ea6367930748c 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -79,17 +79,20 @@ class CAddrInfo : public CAddress } //! Calculate in which "tried" bucket this entry belongs - int GetTriedBucket(const std::vector &nKey) const; + int GetTriedBucket(const uint256 &nKey) const; //! Calculate in which "new" bucket this entry belongs, given a certain source - int GetNewBucket(const std::vector &nKey, const CNetAddr& src) const; + int GetNewBucket(const uint256 &nKey, const CNetAddr& src) const; //! Calculate in which "new" bucket this entry belongs, using its default source - int GetNewBucket(const std::vector &nKey) const + int GetNewBucket(const uint256 &nKey) const { return GetNewBucket(nKey, source); } + //! Calculate in which position of a bucket to store this entry. + int GetBucketPosition(const uint256 &nKey, bool fNew, int nBucket) const; + //! Determine whether the statistics about this entry are bad enough so that it can just be deleted bool IsTerrible(int64_t nNow = GetAdjustedTime()) const; @@ -106,15 +109,15 @@ class CAddrInfo : public CAddress * * To that end: * * Addresses are organized into buckets. - * * Address that have not yet been tried go into 256 "new" buckets. - * * Based on the address range (/16 for IPv4) of source of the information, 32 buckets are selected at random + * * Address that have not yet been tried go into 1024 "new" buckets. + * * Based on the address range (/16 for IPv4) of source of the information, 64 buckets are selected at random * * The actual bucket is chosen from one of these, based on the range the address itself is located. - * * One single address can occur in up to 4 different buckets, to increase selection chances for addresses that + * * One single address can occur in up to 8 different buckets, to increase selection chances for addresses that * are seen frequently. The chance for increasing this multiplicity decreases exponentially. * * When adding a new address to a full bucket, a randomly chosen entry (with a bias favoring less recently seen * ones) is removed from it first. - * * Addresses of nodes that are known to be accessible go into 64 "tried" buckets. - * * Each address range selects at random 4 of these buckets. + * * Addresses of nodes that are known to be accessible go into 256 "tried" buckets. + * * Each address range selects at random 8 of these buckets. * * The actual bucket is chosen from one of these, based on the full address. * * When adding a new good address to a full bucket, a randomly chosen entry (with a bias favoring less recently * tried ones) is evicted from it, back to the "new" buckets. @@ -125,28 +128,22 @@ class CAddrInfo : public CAddress */ //! total number of buckets for tried addresses -#define ADDRMAN_TRIED_BUCKET_COUNT 64 - -//! maximum allowed number of entries in buckets for tried addresses -#define ADDRMAN_TRIED_BUCKET_SIZE 64 +#define ADDRMAN_TRIED_BUCKET_COUNT 256 //! total number of buckets for new addresses -#define ADDRMAN_NEW_BUCKET_COUNT 256 +#define ADDRMAN_NEW_BUCKET_COUNT 1024 -//! maximum allowed number of entries in buckets for new addresses -#define ADDRMAN_NEW_BUCKET_SIZE 64 +//! maximum allowed number of entries in buckets for new and tried addresses +#define ADDRMAN_BUCKET_SIZE 64 //! over how many buckets entries with tried addresses from a single group (/16 for IPv4) are spread -#define ADDRMAN_TRIED_BUCKETS_PER_GROUP 4 +#define ADDRMAN_TRIED_BUCKETS_PER_GROUP 8 //! over how many buckets entries with new addresses originating from a single group are spread -#define ADDRMAN_NEW_BUCKETS_PER_SOURCE_GROUP 32 +#define ADDRMAN_NEW_BUCKETS_PER_SOURCE_GROUP 64 //! in how many buckets for entries with new addresses a single address may occur -#define ADDRMAN_NEW_BUCKETS_PER_ADDRESS 4 - -//! how many entries in a bucket with tried addresses are inspected, when selecting one to replace -#define ADDRMAN_TRIED_ENTRIES_INSPECT_ON_EVICT 4 +#define ADDRMAN_NEW_BUCKETS_PER_ADDRESS 8 //! how old addresses can maximally be #define ADDRMAN_HORIZON_DAYS 30 @@ -176,7 +173,7 @@ class CAddrMan mutable CCriticalSection cs; //! secret key to randomize bucket select with - std::vector nKey; + uint256 nKey; //! last used nId int nIdCount; @@ -194,13 +191,13 @@ class CAddrMan int nTried; //! list of "tried" buckets - std::vector > vvTried; + int vvTried[ADDRMAN_TRIED_BUCKET_COUNT][ADDRMAN_BUCKET_SIZE]; //! number of (unique) "new" entries int nNew; //! list of "new" buckets - std::vector > vvNew; + int vvNew[ADDRMAN_NEW_BUCKET_COUNT][ADDRMAN_BUCKET_SIZE]; protected: @@ -214,17 +211,14 @@ class CAddrMan //! Swap two elements in vRandom. void SwapRandom(unsigned int nRandomPos1, unsigned int nRandomPos2); - //! Return position in given bucket to replace. - int SelectTried(int nKBucket); + //! Move an entry from the "new" table(s) to the "tried" table + void MakeTried(CAddrInfo& info, int nId); - //! Remove an element from a "new" bucket. - //! This is the only place where actual deletions occur. - //! Elements are never deleted while in the "tried" table, only possibly evicted back to the "new" table. - int ShrinkNew(int nUBucket); + //! Delete an entry. It must not be in tried, and have refcount 0. + void Delete(int nId); - //! Move an entry from the "new" table(s) to the "tried" table - //! @pre vvUnkown[nOrigin].count(nId) != 0 - void MakeTried(CAddrInfo& info, int nId, int nOrigin); + //! Clear a position in a "new" table. This is the only place where entries are actually deleted. + void ClearNew(int nUBucket, int nUBucketPos); //! Mark an entry "good", possibly moving it from "new" to "tried". void Good_(const CService &addr, int64_t nTime); @@ -237,7 +231,7 @@ class CAddrMan //! Select an address to connect to. //! nUnkBias determines how much to favor new addresses over tried ones (min=0, max=100) - CAddress Select_(int nUnkBias); + CAddress Select_(); #ifdef DEBUG_ADDRMAN //! Perform consistency check. Returns an error code or zero. @@ -253,21 +247,25 @@ class CAddrMan public: /** * serialized format: - * * version byte (currently 0) - * * nKey + * * version byte (currently 1) + * * 0x20 + nKey (serialized as if it were a vector, for backward compatibility) * * nNew * * nTried - * * number of "new" buckets + * * number of "new" buckets XOR 2**30 * * all nNew addrinfos in vvNew * * all nTried addrinfos in vvTried * * for each bucket: * * number of elements * * for each element: index * + * 2**30 is xorred with the number of buckets to make addrman deserializer v0 detect it + * as incompatible. This is necessary because it did not check the version number on + * deserialization. + * * Notice that vvTried, mapAddr and vVector are never encoded explicitly; * they are instead reconstructed from the other information. * - * vvNew is serialized, but only used if ADDRMAN_UNKOWN_BUCKET_COUNT didn't change, + * vvNew is serialized, but only used if ADDRMAN_UNKNOWN_BUCKET_COUNT didn't change, * otherwise it is reconstructed as well. * * This format is more complex, but significantly smaller (at most 1.5 MiB), and supports @@ -275,48 +273,53 @@ class CAddrMan * * We don't use ADD_SERIALIZE_METHODS since the serialization and deserialization code has * very little in common. - * */ template void Serialize(Stream &s, int nType, int nVersionDummy) const { LOCK(cs); - unsigned char nVersion = 0; + unsigned char nVersion = 1; s << nVersion; + s << ((unsigned char)32); s << nKey; s << nNew; s << nTried; - int nUBuckets = ADDRMAN_NEW_BUCKET_COUNT; + int nUBuckets = ADDRMAN_NEW_BUCKET_COUNT ^ (1 << 30); s << nUBuckets; std::map mapUnkIds; int nIds = 0; for (std::map::const_iterator it = mapInfo.begin(); it != mapInfo.end(); it++) { - if (nIds == nNew) break; // this means nNew was wrong, oh ow mapUnkIds[(*it).first] = nIds; const CAddrInfo &info = (*it).second; if (info.nRefCount) { + assert(nIds != nNew); // this means nNew was wrong, oh ow s << info; nIds++; } } nIds = 0; for (std::map::const_iterator it = mapInfo.begin(); it != mapInfo.end(); it++) { - if (nIds == nTried) break; // this means nTried was wrong, oh ow const CAddrInfo &info = (*it).second; if (info.fInTried) { + assert(nIds != nTried); // this means nTried was wrong, oh ow s << info; nIds++; } } - for (std::vector >::const_iterator it = vvNew.begin(); it != vvNew.end(); it++) { - const std::set &vNew = (*it); - int nSize = vNew.size(); + for (int bucket = 0; bucket < ADDRMAN_NEW_BUCKET_COUNT; bucket++) { + int nSize = 0; + for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) { + if (vvNew[bucket][i] != -1) + nSize++; + } s << nSize; - for (std::set::const_iterator it2 = vNew.begin(); it2 != vNew.end(); it2++) { - int nIndex = mapUnkIds[*it2]; - s << nIndex; + for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) { + if (vvNew[bucket][i] != -1) { + int nIndex = mapUnkIds[vvNew[bucket][i]]; + s << nIndex; + } } } } @@ -326,64 +329,97 @@ class CAddrMan { LOCK(cs); + Clear(); + unsigned char nVersion; s >> nVersion; + unsigned char nKeySize; + s >> nKeySize; + if (nKeySize != 32) throw std::ios_base::failure("Incorrect keysize in addrman deserialization"); s >> nKey; s >> nNew; s >> nTried; - int nUBuckets = 0; s >> nUBuckets; - nIdCount = 0; - mapInfo.clear(); - mapAddr.clear(); - vRandom.clear(); - vvTried = std::vector >(ADDRMAN_TRIED_BUCKET_COUNT, std::vector(0)); - vvNew = std::vector >(ADDRMAN_NEW_BUCKET_COUNT, std::set()); + if (nVersion != 0) { + nUBuckets ^= (1 << 30); + } + + // Deserialize entries from the new table. for (int n = 0; n < nNew; n++) { CAddrInfo &info = mapInfo[n]; s >> info; mapAddr[info] = n; info.nRandomPos = vRandom.size(); vRandom.push_back(n); - if (nUBuckets != ADDRMAN_NEW_BUCKET_COUNT) { - vvNew[info.GetNewBucket(nKey)].insert(n); - info.nRefCount++; + if (nVersion != 1 || nUBuckets != ADDRMAN_NEW_BUCKET_COUNT) { + // In case the new table data cannot be used (nVersion unknown, or bucket count wrong), + // immediately try to give them a reference based on their primary source address. + int nUBucket = info.GetNewBucket(nKey); + int nUBucketPos = info.GetBucketPosition(nKey, true, nUBucket); + if (vvNew[nUBucket][nUBucketPos] == -1) { + vvNew[nUBucket][nUBucketPos] = n; + info.nRefCount++; + } } } nIdCount = nNew; + + // Deserialize entries from the tried table. int nLost = 0; for (int n = 0; n < nTried; n++) { CAddrInfo info; s >> info; - std::vector &vTried = vvTried[info.GetTriedBucket(nKey)]; - if (vTried.size() < ADDRMAN_TRIED_BUCKET_SIZE) { + int nKBucket = info.GetTriedBucket(nKey); + int nKBucketPos = info.GetBucketPosition(nKey, false, nKBucket); + if (vvTried[nKBucket][nKBucketPos] == -1) { info.nRandomPos = vRandom.size(); info.fInTried = true; vRandom.push_back(nIdCount); mapInfo[nIdCount] = info; mapAddr[info] = nIdCount; - vTried.push_back(nIdCount); + vvTried[nKBucket][nKBucketPos] = nIdCount; nIdCount++; } else { nLost++; } } nTried -= nLost; - for (int b = 0; b < nUBuckets; b++) { - std::set &vNew = vvNew[b]; + + // Deserialize positions in the new table (if possible). + for (int bucket = 0; bucket < nUBuckets; bucket++) { int nSize = 0; s >> nSize; for (int n = 0; n < nSize; n++) { int nIndex = 0; s >> nIndex; - CAddrInfo &info = mapInfo[nIndex]; - if (nUBuckets == ADDRMAN_NEW_BUCKET_COUNT && info.nRefCount < ADDRMAN_NEW_BUCKETS_PER_ADDRESS) { - info.nRefCount++; - vNew.insert(nIndex); + if (nIndex >= 0 && nIndex < nNew) { + CAddrInfo &info = mapInfo[nIndex]; + int nUBucketPos = info.GetBucketPosition(nKey, true, bucket); + if (nVersion == 1 && nUBuckets == ADDRMAN_NEW_BUCKET_COUNT && vvNew[bucket][nUBucketPos] == -1 && info.nRefCount < ADDRMAN_NEW_BUCKETS_PER_ADDRESS) { + info.nRefCount++; + vvNew[bucket][nUBucketPos] = nIndex; + } } } } + + // Prune new entries with refcount 0 (as a result of collisions). + int nLostUnk = 0; + for (std::map::const_iterator it = mapInfo.begin(); it != mapInfo.end(); ) { + if (it->second.fInTried == false && it->second.nRefCount == 0) { + std::map::const_iterator itCopy = it++; + Delete(itCopy->first); + nLostUnk++; + } else { + it++; + } + } + if (nLost + nLostUnk > 0) { + LogPrint("addrman", "addrman lost %i new and %i tried addresses due to collisions\n", nLostUnk, nLost); + } + + Check(); } unsigned int GetSerializeSize(int nType, int nVersion) const @@ -391,14 +427,34 @@ class CAddrMan return (CSizeComputer(nType, nVersion) << *this).size(); } - CAddrMan() : vRandom(0), vvTried(ADDRMAN_TRIED_BUCKET_COUNT, std::vector(0)), vvNew(ADDRMAN_NEW_BUCKET_COUNT, std::set()) + void Clear() { - nKey.resize(32); - GetRandBytes(&nKey[0], 32); + std::vector().swap(vRandom); + nKey = GetRandHash(); + for (size_t bucket = 0; bucket < ADDRMAN_NEW_BUCKET_COUNT; bucket++) { + for (size_t entry = 0; entry < ADDRMAN_BUCKET_SIZE; entry++) { + vvNew[bucket][entry] = -1; + } + } + for (size_t bucket = 0; bucket < ADDRMAN_TRIED_BUCKET_COUNT; bucket++) { + for (size_t entry = 0; entry < ADDRMAN_BUCKET_SIZE; entry++) { + vvTried[bucket][entry] = -1; + } + } + + nIdCount = 0; + nTried = 0; + nNew = 0; + } - nIdCount = 0; - nTried = 0; - nNew = 0; + CAddrMan() + { + Clear(); + } + + ~CAddrMan() + { + nKey = uint256(0); } //! Return the number of (unique) addresses in all tables. @@ -477,13 +533,13 @@ class CAddrMan * Choose an address to connect to. * nUnkBias determines how much "new" entries are favored over "tried" ones (0-100). */ - CAddress Select(int nUnkBias = 50) + CAddress Select() { CAddress addrRet; { LOCK(cs); Check(); - addrRet = Select_(nUnkBias); + addrRet = Select_(); Check(); } return addrRet; diff --git a/src/amount.cpp b/src/amount.cpp index e6f5b7d4407da..0c01db7abab90 100644 --- a/src/amount.cpp +++ b/src/amount.cpp @@ -17,6 +17,10 @@ CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nSize) CAmount CFeeRate::GetFee(size_t nSize) const { + // Round up nSize to the nearest 1000 + CAmount mod = nSize % 1000; + if (mod > 0) + nSize = nSize - mod + 1000; CAmount nFee = nSatoshisPerK*nSize / 1000; if (nFee == 0 && nSatoshisPerK > 0) @@ -27,5 +31,5 @@ CAmount CFeeRate::GetFee(size_t nSize) const std::string CFeeRate::ToString() const { - return strprintf("%d.%08d BTC/kB", nSatoshisPerK / COIN, nSatoshisPerK % COIN); + return strprintf("%d.%08d HOT/kB", nSatoshisPerK / COIN, nSatoshisPerK % COIN); } diff --git a/src/amount.h b/src/amount.h index c0d37954cb04b..4fee251b19f8e 100644 --- a/src/amount.h +++ b/src/amount.h @@ -17,7 +17,7 @@ static const CAmount COIN = 100000000; static const CAmount CENT = 1000000; /** No amount larger than this (in satoshi) is valid */ -static const CAmount MAX_MONEY = 21000000 * COIN; +static const CAmount MAX_MONEY = 168000000 * COIN; inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } /** Type-safe wrapper class to for fee rates diff --git a/src/bitcoin-cli-res.rc b/src/bitcoin-cli-res.rc index b1aa1b0e167e1..5659098491899 100644 --- a/src/bitcoin-cli-res.rc +++ b/src/bitcoin-cli-res.rc @@ -16,14 +16,14 @@ BEGIN BEGIN BLOCK "040904E4" // U.S. English - multilingual (hex) BEGIN - VALUE "CompanyName", "Bitcoin" - VALUE "FileDescription", "Bitcoin-cli (OSS RPC client for Bitcoin)" + VALUE "CompanyName", "Hypercoin" + VALUE "FileDescription", "Hypercoin-cli (OSS RPC client for Hypercoin)" VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "InternalName", "bitcoin-cli" + VALUE "InternalName", "hypercoin-cli" VALUE "LegalCopyright", COPYRIGHT_STR VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." - VALUE "OriginalFilename", "bitcoin-cli.exe" - VALUE "ProductName", "Bitcoin-cli" + VALUE "OriginalFilename", "hypercoin-cli.exe" + VALUE "ProductName", "Hypercoin-cli" VALUE "ProductVersion", VER_PRODUCTVERSION_STR END END diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index ea349b197e5e9..475c91b5022ef 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -24,18 +24,18 @@ std::string HelpMessageCli() string strUsage; strUsage += _("Options:") + "\n"; strUsage += " -? " + _("This help message") + "\n"; - strUsage += " -conf= " + strprintf(_("Specify configuration file (default: %s)"), "bitcoin.conf") + "\n"; + strUsage += " -conf= " + strprintf(_("Specify configuration file (default: %s)"), "hypercoin.conf") + "\n"; strUsage += " -datadir= " + _("Specify data directory") + "\n"; strUsage += " -testnet " + _("Use the test network") + "\n"; strUsage += " -regtest " + _("Enter regression test mode, which uses a special chain in which blocks can be " "solved instantly. This is intended for regression testing tools and app development.") + "\n"; strUsage += " -rpcconnect= " + strprintf(_("Send commands to node running on (default: %s)"), "127.0.0.1") + "\n"; - strUsage += " -rpcport= " + strprintf(_("Connect to JSON-RPC on (default: %u or testnet: %u)"), 8332, 18332) + "\n"; + strUsage += " -rpcport= " + strprintf(_("Connect to JSON-RPC on (default: %u or testnet: %u)"), 36308, 46308) + "\n"; strUsage += " -rpcwait " + _("Wait for RPC server to start") + "\n"; strUsage += " -rpcuser= " + _("Username for JSON-RPC connections") + "\n"; strUsage += " -rpcpassword= " + _("Password for JSON-RPC connections") + "\n"; - strUsage += "\n" + _("SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n"; + strUsage += "\n" + _("SSL options: (see the Hypercoin Wiki for SSL setup instructions)") + "\n"; strUsage += " -rpcssl " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n"; return strUsage; @@ -66,13 +66,13 @@ static bool AppInitRPC(int argc, char* argv[]) // Parameters // ParseParameters(argc, argv); - if (argc<2 || mapArgs.count("-?") || mapArgs.count("-help") || mapArgs.count("-version")) { - std::string strUsage = _("Bitcoin Core RPC client version") + " " + FormatFullVersion() + "\n"; + if (argc<2 || mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help") || mapArgs.count("-version")) { + std::string strUsage = _("Hypercoin Core RPC client version") + " " + FormatFullVersion() + "\n"; if (!mapArgs.count("-version")) { strUsage += "\n" + _("Usage:") + "\n" + - " bitcoin-cli [options] [params] " + _("Send command to Bitcoin Core") + "\n" + - " bitcoin-cli [options] help " + _("List commands") + "\n" + - " bitcoin-cli [options] help " + _("Get help for a command") + "\n"; + " hypercoin-cli [options] [params] " + _("Send command to Hypercoin Core") + "\n" + + " hypercoin-cli [options] help " + _("List commands") + "\n" + + " hypercoin-cli [options] help " + _("Get help for a command") + "\n"; strUsage += "\n" + HelpMessageCli(); } diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp index 7308d9366173d..e6249d2ba2171 100644 --- a/src/bitcoin-tx.cpp +++ b/src/bitcoin-tx.cpp @@ -44,13 +44,13 @@ static bool AppInitRawTx(int argc, char* argv[]) fCreateBlank = GetBoolArg("-create", false); - if (argc<2 || mapArgs.count("-?") || mapArgs.count("-help")) + if (argc<2 || mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help")) { // First part of help message is specific to this utility - std::string strUsage = _("Bitcoin Core bitcoin-tx utility version") + " " + FormatFullVersion() + "\n\n" + + std::string strUsage = _("Hypercoin Core hypercoin-tx utility version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + - " bitcoin-tx [options] [commands] " + _("Update hex-encoded bitcoin transaction") + "\n" + - " bitcoin-tx [options] -create [commands] " + _("Create hex-encoded bitcoin transaction") + "\n" + + " hypercoin-tx [options] [commands] " + _("Update hex-encoded hypercoin transaction") + "\n" + + " hypercoin-tx [options] -create [commands] " + _("Create hex-encoded hypercoin transaction") + "\n" + "\n"; fprintf(stdout, "%s", strUsage.c_str()); @@ -149,13 +149,14 @@ static void RegisterLoad(const string& strInput) valStr.insert(valStr.size(), buf, bread); } - if (ferror(f)) { + int error = ferror(f); + fclose(f); + + if (error) { string strErr = "Error reading file " + filename; throw runtime_error(strErr); } - fclose(f); - // evaluate as JSON buffer register RegisterSetJson(key, valStr); } @@ -368,7 +369,7 @@ static void MutateTxSign(CMutableTransaction& tx, const string& flagStr) // Add previous txouts given in the RPC call: if (!registers.count("prevtxs")) throw runtime_error("prevtxs register variable must be set."); - UniValue prevtxsObj = registers["privatekeys"]; + UniValue prevtxsObj = registers["prevtxs"]; { for (unsigned int previdx = 0; previdx < prevtxsObj.count(); previdx++) { UniValue prevOut = prevtxsObj[previdx]; @@ -379,13 +380,13 @@ static void MutateTxSign(CMutableTransaction& tx, const string& flagStr) if (!prevOut.checkObject(types)) throw runtime_error("prevtxs internal object typecheck fail"); - uint256 txid = ParseHashUV(prevOut, "txid"); + uint256 txid = ParseHashUV(prevOut["txid"], "txid"); int nOut = atoi(prevOut["vout"].getValStr()); if (nOut < 0) throw runtime_error("vout must be positive"); - vector pkData(ParseHexUV(prevOut, "scriptPubKey")); + vector pkData(ParseHexUV(prevOut["scriptPubKey"], "scriptPubKey")); CScript scriptPubKey(pkData.begin(), pkData.end()); { @@ -437,7 +438,7 @@ static void MutateTxSign(CMutableTransaction& tx, const string& flagStr) BOOST_FOREACH(const CTransaction& txv, txVariants) { txin.scriptSig = CombineSignatures(prevPubKey, mergedTx, i, txin.scriptSig, txv.vin[i].scriptSig); } - if (!VerifyScript(txin.scriptSig, prevPubKey, STANDARD_SCRIPT_VERIFY_FLAGS, SignatureChecker(mergedTx, i))) + if (!VerifyScript(txin.scriptSig, prevPubKey, STANDARD_SCRIPT_VERIFY_FLAGS, MutableTransactionSignatureChecker(&mergedTx, i))) fComplete = false; } diff --git a/src/bitcoind-res.rc b/src/bitcoind-res.rc index 2e6d754495070..d66379aee7b5b 100644 --- a/src/bitcoind-res.rc +++ b/src/bitcoind-res.rc @@ -16,14 +16,14 @@ BEGIN BEGIN BLOCK "040904E4" // U.S. English - multilingual (hex) BEGIN - VALUE "CompanyName", "Bitcoin" - VALUE "FileDescription", "Bitcoind (OSS daemon/client for Bitcoin)" + VALUE "CompanyName", "Hypercoin" + VALUE "FileDescription", "Hypercoind (OSS daemon/client for Hypercoin)" VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "InternalName", "bitcoind" + VALUE "InternalName", "hypercoind" VALUE "LegalCopyright", COPYRIGHT_STR VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." - VALUE "OriginalFilename", "bitcoind.exe" - VALUE "ProductName", "Bitcoind" + VALUE "OriginalFilename", "hypercoind.exe" + VALUE "ProductName", "Hypercoind" VALUE "ProductVersion", VER_PRODUCTVERSION_STR END END diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index be7757b0b6ced..45dc50c5d26a1 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -67,9 +67,9 @@ bool AppInit(int argc, char* argv[]) ParseParameters(argc, argv); // Process help and version before taking care about datadir - if (mapArgs.count("-?") || mapArgs.count("-help") || mapArgs.count("-version")) + if (mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help") || mapArgs.count("-version")) { - std::string strUsage = _("Bitcoin Core Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n"; + std::string strUsage = _("Hypercoin Core Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n"; if (mapArgs.count("-version")) { @@ -78,7 +78,7 @@ bool AppInit(int argc, char* argv[]) else { strUsage += "\n" + _("Usage:") + "\n" + - " bitcoind [options] " + _("Start Bitcoin Core Daemon") + "\n"; + " hypercoind [options] " + _("Start Hypercoin Core Daemon") + "\n"; strUsage += "\n" + HelpMessage(HMM_BITCOIND); } @@ -110,19 +110,19 @@ bool AppInit(int argc, char* argv[]) // Command-line RPC bool fCommandLine = false; for (int i = 1; i < argc; i++) - if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "bitcoin:")) + if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "hypercoin:")) fCommandLine = true; if (fCommandLine) { - fprintf(stderr, "Error: There is no RPC client functionality in bitcoind anymore. Use the bitcoin-cli utility instead.\n"); + fprintf(stderr, "Error: There is no RPC client functionality in hypercoind anymore. Use the hypercoin-cli utility instead.\n"); exit(1); } #ifndef WIN32 fDaemon = GetBoolArg("-daemon", false); if (fDaemon) { - fprintf(stdout, "Bitcoin server starting\n"); + fprintf(stdout, "Hypercoin server starting\n"); // Daemonize pid_t pid = fork(); diff --git a/src/chain.h b/src/chain.h index d834790f06a58..fe5e9a6cc9b65 100644 --- a/src/chain.h +++ b/src/chain.h @@ -215,6 +215,11 @@ class CBlockIndex return *phashBlock; } + uint256 GetBlockPoWHash() const + { + return GetBlockHeader().GetPoWHash(); + } + int64_t GetBlockTime() const { return (int64_t)nTime; diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 8a6a061ea1e2b..de43e1d3e8cb2 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -54,42 +54,29 @@ static void convertSeed6(std::vector &vSeedsOut, const SeedSpec6 *data */ static Checkpoints::MapCheckpoints mapCheckpoints = boost::assign::map_list_of - ( 11111, uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) - ( 33333, uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")) - ( 74000, uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")) - (105000, uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97")) - (134444, uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")) - (168000, uint256("0x000000000000099e61ea72015e79632f216fe6cb33d7899acb35b75c8303b763")) - (193000, uint256("0x000000000000059f452a5f7340de6682a977387c17010ff6e6c3bd83ca8b1317")) - (210000, uint256("0x000000000000048b95347e83192f69cf0366076336c639f9b7228e9ba171342e")) - (216116, uint256("0x00000000000001b4f4b433e81ee46494af945cf96014816a4e2370f11b23df4e")) - (225430, uint256("0x00000000000001c108384350f74090433e7fcf79a606b8e797f065b130575932")) - (250000, uint256("0x000000000000003887df1f29024b06fc2200b55f8af8f35453d7be294df2d214")) - (279000, uint256("0x0000000000000001ae8c72a0b0c301f67e3afca10e819efa9041e458e9bd7e40")) - (295000, uint256("0x00000000000000004d9b4ef50f0f9d686fd69db2e03af35a100370c64632a983")) + ( 1500, uint256("0xdfc4a933db3f1ed22883639619605abe874ec8b70396bf3befb16e03af9c37d2")) ; static const Checkpoints::CCheckpointData data = { &mapCheckpoints, - 1397080064, // * UNIX timestamp of last checkpoint block - 36544669, // * total number of transactions between genesis and last checkpoint - // (the tx=... number in the SetBestChain debug.log lines) - 60000.0 // * estimated number of transactions per day after checkpoint + 1525675981, + 1501, + 200 }; static Checkpoints::MapCheckpoints mapCheckpointsTestnet = boost::assign::map_list_of - ( 546, uint256("000000002a936ca763904c3c35fce2f3556c559c0214345d31b1bcebf76acb70")) + ( 0, uint256("3033aa5611d16842f2f954e21ffb8ad43dc2235b1bb8d654908b5b9765fe7637")) ; static const Checkpoints::CCheckpointData dataTestnet = { &mapCheckpointsTestnet, - 1337966069, - 1488, - 300 + 1317798646, + 1, + 9 }; static Checkpoints::MapCheckpoints mapCheckpointsRegtest = boost::assign::map_list_of - ( 0, uint256("0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206")) + ( 0, uint256("0")) ; static const Checkpoints::CCheckpointData dataRegtest = { &mapCheckpointsRegtest, @@ -108,20 +95,21 @@ class CMainParams : public CChainParams { * The characters are rarely used upper ASCII, not valid as UTF-8, and produce * a large 4-byte int at any alignment. */ - pchMessageStart[0] = 0xf9; - pchMessageStart[1] = 0xbe; - pchMessageStart[2] = 0xb4; - pchMessageStart[3] = 0xd9; - vAlertPubKey = ParseHex("04fc9702847840aaf195de8442ebecedf5b095cdbb9bc716bda9110971b28a49e0ead8564ff0db22209e0374782c093bb899692d524e9d6a6956e7c5ecbcd68284"); - nDefaultPort = 8333; - bnProofOfWorkLimit = ~uint256(0) >> 32; - nSubsidyHalvingInterval = 210000; + pchMessageStart[0] = 0x5a; + pchMessageStart[1] = 0x10; + pchMessageStart[2] = 0x82; + pchMessageStart[3] = 0x49; + vAlertPubKey = ParseHex("04820dd6458377076b0a1076c9989a622bb5c207ce53d49b2a8cb3a5211089c8afa60864feb7399aaf0e82171828ecac91066ec2f14fb58f0fb12b0dbbf5832cd0"); + nDefaultPort = 36307; + bnProofOfWorkLimit = ~uint256(0) >> 20; + nSubsidyHalvingInterval = 840000; nEnforceBlockUpgradeMajority = 750; nRejectBlockOutdatedMajority = 950; nToCheckBlockUpgradeMajority = 1000; nMinerThreads = 0; - nTargetTimespan = 14 * 24 * 60 * 60; // two weeks - nTargetSpacing = 10 * 60; + nTargetTimespan = 10 * 60; // 3.5 days + nTargetSpacing = 10 * 60; // 2.5 minutes + nMaxTipAge = 24 * 60 * 60; /** * Build the genesis block. Note that the output of the genesis coinbase cannot @@ -133,48 +121,51 @@ class CMainParams : public CChainParams { * CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B) * vMerkleTree: 4a5e1e */ - const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"; + const char* pszTimestamp = "The Times april 10 2018 Russia accuses Britain of abducting poison"; CMutableTransaction txNew; txNew.vin.resize(1); txNew.vout.resize(1); txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << vector((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp)); - txNew.vout[0].nValue = 50 * COIN; - txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG; + txNew.vout[0].nValue = 400 * COIN; + txNew.vout[0].scriptPubKey = CScript() << ParseHex("04820dd6458377076b0a1076c9989a622bb5c207ce53d49b2a8cb3a5211089c8afa60864feb7399aaf0e82171828ecac91066ec2f14fb58f0fb12b0dbbf5832cd0") << OP_CHECKSIG; genesis.vtx.push_back(txNew); genesis.hashPrevBlock = 0; genesis.hashMerkleRoot = genesis.BuildMerkleTree(); genesis.nVersion = 1; - genesis.nTime = 1231006505; - genesis.nBits = 0x1d00ffff; - genesis.nNonce = 2083236893; + genesis.nTime = 1523386830; + genesis.nBits = 0x1e0ffff0; + genesis.nNonce = 412750; hashGenesisBlock = genesis.GetHash(); - assert(hashGenesisBlock == uint256("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f")); - assert(genesis.hashMerkleRoot == uint256("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b")); - - vSeeds.push_back(CDNSSeedData("bitcoin.sipa.be", "seed.bitcoin.sipa.be")); - vSeeds.push_back(CDNSSeedData("bluematt.me", "dnsseed.bluematt.me")); - vSeeds.push_back(CDNSSeedData("dashjr.org", "dnsseed.bitcoin.dashjr.org")); - vSeeds.push_back(CDNSSeedData("bitcoinstats.com", "seed.bitcoinstats.com")); - vSeeds.push_back(CDNSSeedData("bitnodes.io", "seed.bitnodes.io")); - vSeeds.push_back(CDNSSeedData("xf2.org", "bitseed.xf2.org")); - - base58Prefixes[PUBKEY_ADDRESS] = list_of(0); - base58Prefixes[SCRIPT_ADDRESS] = list_of(5); - base58Prefixes[SECRET_KEY] = list_of(128); - base58Prefixes[EXT_PUBLIC_KEY] = list_of(0x04)(0x88)(0xB2)(0x1E); - base58Prefixes[EXT_SECRET_KEY] = list_of(0x04)(0x88)(0xAD)(0xE4); + assert(hashGenesisBlock == uint256("0x85f27c1c9e01406216b5edf2337b17e41e51fe8926bc20d94b5a9d5bdc78bebe")); + assert(genesis.hashMerkleRoot == uint256("0xcedef6e4bdfb5fa6f3d37d7b9c33a7678f3e660fbfb55542033934d19485f08e")); + + vSeeds.push_back(CDNSSeedData("hypercointools.com", "dnsseed.hypercointools.com")); + vSeeds.push_back(CDNSSeedData("hypercoinpool.org", "dnsseed.hypercoinpool.org")); + vSeeds.push_back(CDNSSeedData("xurious.com", "dnsseed.ltc.xurious.com")); + vSeeds.push_back(CDNSSeedData("koin-project.com", "dnsseed.koin-project.com")); + vSeeds.push_back(CDNSSeedData("weminemnc.com", "dnsseed.weminemnc.com")); + vSeeds.push_back(CDNSSeedData("loshan.co.uk", "seed-a.hypercoin.loshan.co.uk")); + + base58Prefixes[PUBKEY_ADDRESS] = std::vector(1,40); + base58Prefixes[SCRIPT_ADDRESS] = std::vector(1,5); + base58Prefixes[SECRET_KEY] = std::vector(1,176); + base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x88)(0xB2)(0x1E).convert_to_container >(); + base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x88)(0xAD)(0xE4).convert_to_container >(); convertSeed6(vFixedSeeds, pnSeed6_main, ARRAYLEN(pnSeed6_main)); fRequireRPCPassword = true; fMiningRequiresPeers = true; - fDefaultCheckMemPool = false; fAllowMinDifficultyBlocks = false; + fDefaultConsistencyChecks = false; fRequireStandard = true; fMineBlocksOnDemand = false; fSkipProofOfWorkCheck = false; fTestnetToBeDeprecatedFieldRPC = false; + + // Hypercoin: Mainnet v2 enforced as of block 710k + nEnforceV2AfterHeight = 710000; } const Checkpoints::CCheckpointData& Checkpoints() const @@ -192,47 +183,50 @@ class CTestNetParams : public CMainParams { CTestNetParams() { networkID = CBaseChainParams::TESTNET; strNetworkID = "test"; - pchMessageStart[0] = 0x0b; - pchMessageStart[1] = 0x11; - pchMessageStart[2] = 0x09; - pchMessageStart[3] = 0x07; - vAlertPubKey = ParseHex("04302390343f91cc401d56d68b123028bf52e5fca1939df127f63c6467cdf9c8e2c14b61104cf817d0b780da337893ecc4aaff1309e536162dabbdb45200ca2b0a"); - nDefaultPort = 18333; + pchMessageStart[0] = 0xd1; + pchMessageStart[1] = 0x3a; + pchMessageStart[2] = 0x28; + pchMessageStart[3] = 0x9a; + vAlertPubKey = ParseHex("04d76f84e8167135a62a5a67586ed55c733beccbe82e795ea75b23ec543e55b4203a78b4fa51ac8ff7184b82c0d32d438c81a72e68ba58331135d5892fc7ba6b49"); + nDefaultPort = 46307; nEnforceBlockUpgradeMajority = 51; nRejectBlockOutdatedMajority = 75; nToCheckBlockUpgradeMajority = 100; nMinerThreads = 0; - nTargetTimespan = 14 * 24 * 60 * 60; //! two weeks - nTargetSpacing = 10 * 60; + nTargetTimespan = 10 * 60; // 3.5 days + nTargetSpacing = 10 * 60; // 2.5 minutes + nMaxTipAge = 0x7fffffff; //! Modify the testnet genesis block so the timestamp is valid for a later start. - genesis.nTime = 1296688602; - genesis.nNonce = 414098458; + genesis.nTime = 1317798646; + genesis.nNonce = 385479230; hashGenesisBlock = genesis.GetHash(); - assert(hashGenesisBlock == uint256("0x000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943")); + assert(hashGenesisBlock == uint256("0x3033aa5611d16842f2f954e21ffb8ad43dc2235b1bb8d654908b5b9765fe7637")); vFixedSeeds.clear(); vSeeds.clear(); - vSeeds.push_back(CDNSSeedData("alexykot.me", "testnet-seed.alexykot.me")); - vSeeds.push_back(CDNSSeedData("bitcoin.petertodd.org", "testnet-seed.bitcoin.petertodd.org")); - vSeeds.push_back(CDNSSeedData("bluematt.me", "testnet-seed.bluematt.me")); - vSeeds.push_back(CDNSSeedData("bitcoin.schildbach.de", "testnet-seed.bitcoin.schildbach.de")); + vSeeds.push_back(CDNSSeedData("hypercointools.com", "testnet-seed.hypercointools.com")); + vSeeds.push_back(CDNSSeedData("loshan.co.uk", "seed-b.hypercoin.loshan.co.uk")); + vSeeds.push_back(CDNSSeedData("thrasher.io", "dnsseed-testnet.thrasher.io")); - base58Prefixes[PUBKEY_ADDRESS] = list_of(111); - base58Prefixes[SCRIPT_ADDRESS] = list_of(196); - base58Prefixes[SECRET_KEY] = list_of(239); - base58Prefixes[EXT_PUBLIC_KEY] = list_of(0x04)(0x35)(0x87)(0xCF); - base58Prefixes[EXT_SECRET_KEY] = list_of(0x04)(0x35)(0x83)(0x94); + base58Prefixes[PUBKEY_ADDRESS] = std::vector(1,111); + base58Prefixes[SCRIPT_ADDRESS] = std::vector(1,196); + base58Prefixes[SECRET_KEY] = std::vector(1,239); + base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x35)(0x87)(0xCF).convert_to_container >(); + base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x35)(0x83)(0x94).convert_to_container >(); convertSeed6(vFixedSeeds, pnSeed6_test, ARRAYLEN(pnSeed6_test)); fRequireRPCPassword = true; fMiningRequiresPeers = true; - fDefaultCheckMemPool = false; fAllowMinDifficultyBlocks = true; + fDefaultConsistencyChecks = false; fRequireStandard = false; fMineBlocksOnDemand = false; fTestnetToBeDeprecatedFieldRPC = true; + + // Hypercoin: v2 enforced using Bitcoin's supermajority rule + nEnforceV2AfterHeight = -1; } const Checkpoints::CCheckpointData& Checkpoints() const { @@ -258,26 +252,31 @@ class CRegTestParams : public CTestNetParams { nRejectBlockOutdatedMajority = 950; nToCheckBlockUpgradeMajority = 1000; nMinerThreads = 1; - nTargetTimespan = 14 * 24 * 60 * 60; //! two weeks - nTargetSpacing = 10 * 60; + nTargetTimespan = 10 * 60; // 3.5 days + nTargetSpacing = 10 * 60; // 2.5 minutes bnProofOfWorkLimit = ~uint256(0) >> 1; + nMaxTipAge = 24 * 60 * 60; genesis.nTime = 1296688602; genesis.nBits = 0x207fffff; genesis.nNonce = 2; hashGenesisBlock = genesis.GetHash(); - nDefaultPort = 18444; - assert(hashGenesisBlock == uint256("0x0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206")); + nDefaultPort = 46408; + //tfm::printf("genesis.GetHash = %s\n", genesis.GetHash().ToString().c_str()); + assert(hashGenesisBlock == uint256("0x6da80d39a8c96b240a2dd3a838324ff42b509b1ec8cbe5171acf8b77fd84c47e")); vFixedSeeds.clear(); //! Regtest mode doesn't have any fixed seeds. vSeeds.clear(); //! Regtest mode doesn't have any DNS seeds. fRequireRPCPassword = false; fMiningRequiresPeers = false; - fDefaultCheckMemPool = true; fAllowMinDifficultyBlocks = true; + fDefaultConsistencyChecks = true; fRequireStandard = false; fMineBlocksOnDemand = true; fTestnetToBeDeprecatedFieldRPC = false; + + // Hypercoin: v2 enforced using Bitcoin's supermajority rule + nEnforceV2AfterHeight = -1; } const Checkpoints::CCheckpointData& Checkpoints() const { @@ -300,9 +299,12 @@ class CUnitTestParams : public CMainParams, public CModifiableParams { fRequireRPCPassword = false; fMiningRequiresPeers = false; - fDefaultCheckMemPool = true; + fDefaultConsistencyChecks = true; fAllowMinDifficultyBlocks = false; fMineBlocksOnDemand = true; + + // Hypercoin: v2 enforced using Bitcoin's supermajority rule + nEnforceV2AfterHeight = -1; } const Checkpoints::CCheckpointData& Checkpoints() const @@ -316,7 +318,7 @@ class CUnitTestParams : public CMainParams, public CModifiableParams { virtual void setEnforceBlockUpgradeMajority(int anEnforceBlockUpgradeMajority) { nEnforceBlockUpgradeMajority=anEnforceBlockUpgradeMajority; } virtual void setRejectBlockOutdatedMajority(int anRejectBlockOutdatedMajority) { nRejectBlockOutdatedMajority=anRejectBlockOutdatedMajority; } virtual void setToCheckBlockUpgradeMajority(int anToCheckBlockUpgradeMajority) { nToCheckBlockUpgradeMajority=anToCheckBlockUpgradeMajority; } - virtual void setDefaultCheckMemPool(bool afDefaultCheckMemPool) { fDefaultCheckMemPool=afDefaultCheckMemPool; } + virtual void setDefaultConsistencyChecks(bool afDefaultConsistencyChecks) { fDefaultConsistencyChecks=afDefaultConsistencyChecks; } virtual void setAllowMinDifficultyBlocks(bool afAllowMinDifficultyBlocks) { fAllowMinDifficultyBlocks=afAllowMinDifficultyBlocks; } virtual void setSkipProofOfWorkCheck(bool afSkipProofOfWorkCheck) { fSkipProofOfWorkCheck = afSkipProofOfWorkCheck; } }; diff --git a/src/chainparams.h b/src/chainparams.h index 5d1ee1d3c6bd3..029a5577d9c10 100644 --- a/src/chainparams.h +++ b/src/chainparams.h @@ -58,8 +58,8 @@ class CChainParams bool RequireRPCPassword() const { return fRequireRPCPassword; } /** Make miner wait to have peers to avoid wasting work */ bool MiningRequiresPeers() const { return fMiningRequiresPeers; } - /** Default value for -checkmempool argument */ - bool DefaultCheckMemPool() const { return fDefaultCheckMemPool; } + /** Default value for -checkmempool and -checkblockindex argument */ + bool DefaultConsistencyChecks() const { return fDefaultConsistencyChecks; } /** Allow mining of a min-difficulty block */ bool AllowMinDifficultyBlocks() const { return fAllowMinDifficultyBlocks; } /** Skip proof-of-work check: allow mining of any difficulty block */ @@ -69,6 +69,7 @@ class CChainParams int64_t TargetTimespan() const { return nTargetTimespan; } int64_t TargetSpacing() const { return nTargetSpacing; } int64_t Interval() const { return nTargetTimespan / nTargetSpacing; } + int64_t MaxTipAge() const { return nMaxTipAge; } /** Make miner stop after a block is found. In RPC, don't return until nGenProcLimit blocks are generated */ bool MineBlocksOnDemand() const { return fMineBlocksOnDemand; } /** In the future use NetworkIDString() for RPC fields */ @@ -79,6 +80,9 @@ class CChainParams const std::vector& Base58Prefix(Base58Type type) const { return base58Prefixes[type]; } const std::vector& FixedSeeds() const { return vFixedSeeds; } virtual const Checkpoints::CCheckpointData& Checkpoints() const = 0; + + // Hypercoin: Height to enforce v2 block + int EnforceV2AfterHeight() const { return nEnforceV2AfterHeight; } protected: CChainParams() {} @@ -95,6 +99,7 @@ class CChainParams int64_t nTargetTimespan; int64_t nTargetSpacing; int nMinerThreads; + long nMaxTipAge; std::vector vSeeds; std::vector base58Prefixes[MAX_BASE58_TYPES]; CBaseChainParams::Network networkID; @@ -103,12 +108,15 @@ class CChainParams std::vector vFixedSeeds; bool fRequireRPCPassword; bool fMiningRequiresPeers; - bool fDefaultCheckMemPool; bool fAllowMinDifficultyBlocks; + bool fDefaultConsistencyChecks; bool fRequireStandard; bool fMineBlocksOnDemand; bool fSkipProofOfWorkCheck; bool fTestnetToBeDeprecatedFieldRPC; + + // Hypercoin: Height to enforce v2 blocks + int nEnforceV2AfterHeight; }; /** @@ -124,7 +132,7 @@ class CModifiableParams { virtual void setEnforceBlockUpgradeMajority(int anEnforceBlockUpgradeMajority)=0; virtual void setRejectBlockOutdatedMajority(int anRejectBlockOutdatedMajority)=0; virtual void setToCheckBlockUpgradeMajority(int anToCheckBlockUpgradeMajority)=0; - virtual void setDefaultCheckMemPool(bool aDefaultCheckMemPool)=0; + virtual void setDefaultConsistencyChecks(bool aDefaultConsistencyChecks)=0; virtual void setAllowMinDifficultyBlocks(bool aAllowMinDifficultyBlocks)=0; virtual void setSkipProofOfWorkCheck(bool aSkipProofOfWorkCheck)=0; }; diff --git a/src/chainparamsbase.cpp b/src/chainparamsbase.cpp index 8646a31603c01..973b2ab1cfc2c 100644 --- a/src/chainparamsbase.cpp +++ b/src/chainparamsbase.cpp @@ -22,7 +22,7 @@ class CBaseMainParams : public CBaseChainParams CBaseMainParams() { networkID = CBaseChainParams::MAIN; - nRPCPort = 8332; + nRPCPort = 36308; } }; static CBaseMainParams mainParams; @@ -36,7 +36,7 @@ class CBaseTestNetParams : public CBaseMainParams CBaseTestNetParams() { networkID = CBaseChainParams::TESTNET; - nRPCPort = 18332; + nRPCPort = 46308; strDataDir = "testnet3"; } }; diff --git a/src/chainparamsseeds.h b/src/chainparamsseeds.h index 575e12933428a..c2de0c3a4e13f 100644 --- a/src/chainparamsseeds.h +++ b/src/chainparamsseeds.h @@ -8,633 +8,12 @@ * IPv4 as well as onion addresses are wrapped inside a IPv6 address accordingly. */ static SeedSpec6 pnSeed6_main[] = { - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0x69,0x6a,0x7e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xa2,0xd1,0x04,0x7d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd9,0x17,0x0c,0x6c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb9,0x0a,0x33,0xdb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0xc7,0x49,0xc6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4d,0x48,0x95,0x78}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb0,0x09,0x71,0x04}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0xa5,0x0c,0xb9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5f,0x80,0x30,0xd1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xa6,0x4e,0x07,0xbd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xf1,0x8f,0x57}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb0,0x09,0x6e,0x28}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x42,0xaf,0xdc,0xd4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb8,0x6b,0x9b,0x52}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xc6,0x5c,0x63}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0x89,0xde,0xed}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc7,0xd9,0x76,0xa9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb8,0xa4,0x91,0xea}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0x4e,0xfa,0x03}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x8d,0x00,0xa9,0x6c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xc8,0x62,0xaf}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x51,0xba,0xf3,0x93}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd5,0xef,0xc9,0xc2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x17,0xd5,0x0e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0x28,0x70,0x48}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xc2,0x97,0x72}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0xc6,0xf0,0x8a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x1f,0xba,0x57,0x2e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0x8a,0x09,0xd0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3e,0x85,0xa8,0x46}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3e,0xdc,0x92,0xcc}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x55,0x19,0x6f,0xeb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x17,0xce,0x8c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xae,0x81,0x72,0x23}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0x79,0x42,0x9d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x09,0x4f,0x4f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd0,0x51,0x01,0xc5}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x90,0xba,0xb1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x17,0xd7,0xae}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xe5,0x4d,0x20}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x45,0x32,0xb0,0x4b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0x28,0x2b,0x93}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xe6,0xcc,0x2d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0x8a,0x70,0xe2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd5,0xb8,0x08,0x1b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xdc,0xa3,0x12}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x4c,0x88,0x8a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb8,0xa8,0x86,0xa3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x17,0xe4,0x18}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc3,0x9a,0x70,0x2e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xe9,0x62,0xeb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xae,0x03,0x65,0x6f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x81,0xd0,0x05}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x45,0xc5,0x9a,0x8a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0xd6,0x6f,0x94}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5d,0x49,0x57,0x3f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0xc6,0x29,0x4a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x4c,0x45,0xad}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x09,0x34,0x15}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0x3b,0x3f,0x4c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb9,0x19,0xfe,0x01}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0x59,0x20,0x56}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0x79,0x3c,0x44}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc8,0x4a,0xf2,0x44}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x46,0x42,0x04}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x82,0x58,0x66,0xc8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc3,0x3e,0x3f,0xed}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5d,0xbf,0x85,0xf5}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xda,0x41,0xd1,0x5d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x08,0x3a,0xf9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0xdd,0x64,0x12}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0xc6,0x11,0x07}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbe,0x7b,0x2e,0xf1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x40,0xb7,0x02,0x5b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd5,0x6d,0x52,0x7d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x4c,0xb0,0x0c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x11,0xbe,0x2a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0x9f,0xa3,0x61}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x06,0x4a,0x04}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xce,0x7d,0xaf,0xf3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0xc9,0x94,0xb9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0x50,0x1c,0x36}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x53,0x5d,0x73,0xca}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb0,0x43,0xa7,0xec}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x09,0x79,0xec}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x45,0x78,0xd3,0xc4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0xa2,0xc4,0xa1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x53,0xd4,0x6f,0x72}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xc6,0x5c,0x62}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0x13,0x20,0x6c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x79,0x0c,0xaa,0xb7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3d,0x98,0xed,0xc6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xcb,0xe4,0x47}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd4,0x75,0xac,0xa4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x45,0x93,0xe5,0xe2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd0,0x4a,0x78,0x4d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0xec,0xa5,0x18}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xc8,0x1c,0x48}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd5,0x2f,0x6c,0x7c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x60,0x4d,0x5e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x6c,0x4b,0x5b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x4c,0x9b,0xd9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xdc,0x87,0x39,0xe6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xbb,0x17,0xb8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0xfe,0x1c,0x14}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0x50,0x00,0x5f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0x7f,0x98,0x0d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0x49,0x2a,0x24}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0x9b,0x51,0x3e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4b,0x45,0xb2,0x02}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x3d,0xaf,0xdf}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0x28,0x81,0x88}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xbb,0x65,0x11}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xca,0xfe,0xab}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x40,0x35,0xf6,0x2e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0xc7,0x73,0x57}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0xdd,0x80,0x12}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd9,0xac,0xbc,0x8e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x39,0xc4,0x81}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x45,0xfa,0xfc,0x39}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x41,0x7d,0x17,0x62}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x62,0xed,0x75,0xc9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x76,0xf4,0xcf,0x05}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x43,0xa7,0xbd,0xda}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0xc2,0x1a,0xaa}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0xa2,0x55,0xe2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0xc7,0xaa,0x88}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0xc6,0x07,0xe7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x4b,0xe9,0xa9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4b,0x48,0x93,0x28}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x27,0x51,0x99}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xca,0x70,0x39,0xd6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x4f,0x99,0x45}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xad,0xa8,0x19,0xe5}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5d,0x5f,0xe2,0x92}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc1,0xa9,0x84,0x8b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x0a,0xaa,0x5e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xe5,0x4d,0xa7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x62,0xff,0x90,0xb0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x32,0xee,0x5e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x79,0xa6,0x31,0xc3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0xb7,0xd9,0xc1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x82,0xb9,0x6a,0x0c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xbb,0x62,0x73}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x42,0xdd,0xfe,0x4c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0xa0,0x09,0x1e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x4c,0xc3,0xa4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc7,0xd9,0x77,0x37}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x60,0xf2,0xdc,0x5e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x48,0xb5,0xe2,0x3c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x60,0x03,0xac,0xd2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x92,0xb9,0x80,0x2f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xbb,0x4c,0x3e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xe2,0x95,0x39}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xae,0x77,0x39,0xd0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x54,0xf0,0x3c,0x95}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd0,0x4e,0x65,0x3c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x4c,0x02,0x74}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x55,0x11,0x4f,0xa1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0x01,0xce,0x14}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6a,0xbb,0x5e,0xc1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0xc4,0x08,0x2c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0x06,0xfd,0xc7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xce,0xf8,0x04,0x76}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x83,0xb3,0xff}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd5,0xef,0xc2,0xa4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x40,0x61,0xe9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x57,0xe5,0x49,0xab}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0xc0,0x48,0x16}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0x40,0x02,0x36}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xad,0xff,0x8c,0x0e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x53,0x89,0x91,0x21}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xad,0x50,0x1f,0xb6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x59,0x6b,0x40,0x9b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x22,0x28,0xaf}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x16,0x1d,0x7f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xa2,0x0d,0x56,0x1f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0xbe,0x37,0xe2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x55,0x19,0xeb,0xbd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd9,0x17,0x07,0x6c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x62,0xce,0xf8,0xda}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x24,0x74,0x0f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x43,0x52,0xe9,0xde}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x56,0x1a,0x3f,0xf2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x67,0xf8,0xbd,0x61}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x54,0xc8,0x54,0xd2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x2e,0x42,0xc4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0x63,0x05,0xae}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5f,0xa9,0xb9,0xbd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x32,0xeb,0xa9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x50,0x39,0x94,0xd9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0xdd,0x6a,0x11}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x4c,0xa5,0x73}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x52,0x6b,0xb3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x17,0x34,0xd7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x76,0x7f,0x3d,0x33}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x1b,0x43,0x51}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xcf,0xe5,0x4a,0x08}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x23,0x0a,0xa6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0x69,0x67,0x5c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x45,0xcf,0x77,0x01}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x3a,0x68,0xa6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0xea,0xf4,0x7f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0xfa,0x92,0x21}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x46,0x0f,0x3a,0xa0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xae,0x39,0x3e,0xfe}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc1,0x5f,0xce,0x2c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x48,0xc1,0xa6,0xc8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4c,0x7e,0xfb,0x96}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0xc7,0x66,0x0a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x27,0x4d,0x6b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0xc1,0xa0,0xeb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0x79,0xa0,0x3b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3e,0xd2,0xcc,0x1d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xa2,0xf3,0x12,0x69}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x41,0x3c,0xf2,0x22}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4a,0x6b,0x64,0x65}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x87,0x9f,0x8b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x95,0x9a,0x9b,0xeb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x6b,0xfe,0x79}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0xf4,0x36,0x05}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x61,0x4d,0x22,0x23}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x2e,0x95,0x5d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xf7,0xb4,0x0c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0xbe,0x14,0xdc}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb0,0x09,0x46,0xb2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x62,0x9b,0xf7,0xd3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xc8,0x18,0x65}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x42,0xcf,0xa3,0x83}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb0,0x1f,0x64,0x9b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xf1,0xfe,0x17}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x82,0xcc,0x08,0xd5}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x9b,0x36,0xa4,0x91}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4c,0x4a,0xcb,0x39}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x53,0xc9,0xbb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4a,0xc4,0x64,0xaf}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x50,0xca,0x5e,0x60}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x68,0x6a,0x0c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x9d,0x7e,0xd0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xa2,0xd3,0xe6,0x78}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0xeb,0x31,0x1b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0xfe,0x01,0xaa}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xc2,0x03,0x46}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb6,0xa3,0xcb,0x1e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xe3,0xff,0x0e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xcb,0xfd,0xc3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6f,0x03,0x90,0xc2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0x69,0x64,0x44}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x89,0x75,0xca,0x1a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0xe5,0xa9,0x59}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x89,0x74,0xaa,0x19}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0xc8,0x22,0x26}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0xd3,0x98,0xa5}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x45,0xc3,0x8e,0x43}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb9,0x19,0x96,0xc7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x60,0x03,0x57,0xaf}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x89,0xe2,0x98,0x50}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x62,0xd8,0xad,0x36}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0xa2,0xc1,0x83}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x09,0x9d,0x96}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x15,0x3d,0xcf}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x45,0xa4,0xc1,0x49}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x62,0x75,0x0b,0xbd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x55,0x19,0xff,0x8f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x53,0xfe,0x51,0x1e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd5,0xef,0xd6,0x28}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x62,0xcc,0x37,0x28}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x42,0x2d,0xf4,0x02}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0x3f,0x0e,0x07}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x87,0xb1,0xbc}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xe1,0xa4,0x14}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x44,0x68,0x09,0x82}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0x1c,0xcb,0xcf}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc7,0x7f,0xe2,0x37}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x48,0x37,0x92,0x07}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0xbc,0x14,0x0c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x09,0x10,0x26}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3e,0xd9,0x7c,0xcb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xd2,0xc0,0x3b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4c,0x1b,0x13,0x97}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x17,0x5c,0x1e,0x6f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x43,0x9f,0x93,0xa7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0xbf,0xa0,0xb7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0x3a,0xa8,0xaf}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x3f,0xb8,0xcb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb0,0x1c,0x32,0x5f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc7,0xc3,0xd6,0x52}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc7,0x5b,0xac,0xde}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xcc,0x10,0xf3,0x2c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc3,0x2b,0x8a,0x10}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4f,0xa1,0x6f,0x72}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xcc,0xd2,0xba,0x85}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x4c,0x9e,0x45}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd8,0xb8,0x08,0x1a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x48,0x70,0xcd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x4c,0x5b,0x6d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x7b,0xfe,0x6c,0xa6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x09,0x73,0xad}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc7,0x5b,0xac,0xda}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x9f,0xfd,0x17,0x84}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x74,0x37,0x41}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x86,0x13,0x1f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0x12,0x5a,0x29}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0x31,0xc0,0x7a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x95,0xd2,0x87,0x3a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0xbc,0x19,0xe2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x95,0xd2,0x85,0xf4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x64,0x7b,0x13}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xad,0xd9,0xff,0xcf}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x44,0x08,0xe2,0xaf}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5f,0x9a,0x67,0x32}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x44,0xc6,0x31,0xa4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x8c,0xce,0x5f,0x0e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x53,0xf8,0x5e,0x30}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0xca,0x26,0xad}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x54,0x1a,0xd2,0xd9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xd7,0xd0,0xdd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc7,0xc0,0x4e,0xc2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xcd,0xad,0x4a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0x98,0x10,0x49}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x3a,0x6b,0x9d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x8b,0x1e,0xaa,0xf0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x43,0xa3,0xbf,0xf1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xad,0xc0,0x30,0x8a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd4,0x93,0x0f,0x26}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x60,0xe7,0x39,0x23}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x9f,0x95,0x69,0x88}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x21,0x07,0xc2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x48,0x34,0x45,0x29}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xec,0x51,0xb6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x59,0x62,0x49,0x45}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xcc,0x1b,0x3d,0xa2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x43,0xcf,0x9b,0xb3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x94,0xd2,0xa1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0xc6,0x07,0x35}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x62,0xdd,0x88,0x4a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x63,0xf3,0xaf,0x27}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0xea,0x98,0x74}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd5,0x85,0x67,0x4a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc2,0x47,0x6d,0x5e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x42,0xa5,0xab,0x3b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xae,0x37,0x5a,0x04}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc7,0xc0,0x4d,0xa2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4d,0xea,0x81,0xe9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x17,0xe2,0x6c,0xed}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x14,0x72,0x85}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x64,0x04,0x6c,0x6b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb8,0x45,0x49,0x5a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x42,0x47,0xf2,0x12}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xad,0x42,0x5f,0xf3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x5a,0x0f,0xfd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x56,0x15,0x08,0xfb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x61,0x58,0x4b,0xb2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x46,0x41,0x11,0x2e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x09,0x78,0xb7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x48,0x0e,0xbb,0x33}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x56,0x65,0xe2,0x39}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4d,0x48,0x94,0xa7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4d,0x42,0x25,0x42}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0x79,0x03,0x30}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x44,0xcf,0xc8,0x31}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x59,0xad,0x5b,0xd6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x48,0xc6,0x7b,0x12}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4c,0x4d,0xbc,0xf2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x50,0xdc,0x73,0x02}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xd7,0x72,0x45}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x53,0xf6,0x4b,0x06}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x12,0xcd,0xcd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xae,0x81,0x82,0x60}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x87,0x00,0x13,0x4d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xf7,0x16,0x10}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0x5f,0x18,0xba}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4f,0xa8,0xc1,0x16}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0x72,0x69,0xfb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x60,0x23,0x94,0xa2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x3b,0x08,0x53}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xf1,0x83,0x05}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x41,0x24,0x5a,0x2d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x43,0xaa,0x72,0xc1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xcf,0x11,0xcd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x62,0xed,0x14,0x7b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xf1,0x94,0x5c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0x13,0x23,0x7c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6f,0x5a,0x96,0x39}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0xe2,0x90,0x78}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0xc4,0x8e,0xa3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xf1,0x87,0xc1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0xb6,0x80,0xef}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x74,0x0a,0xf2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd2,0xd8,0xd1,0x7a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x2e,0x9e,0x86}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5d,0x5c,0xdb,0xcc}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xf6,0x11,0x9d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xbb,0x61,0x21}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x89,0xf8,0x99,0x75}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xad,0xec,0x65,0x22}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x55,0x0e,0x4f,0x0f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4a,0x85,0x25,0x7d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x60,0xe3,0x57,0xf8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x3d,0x3f,0xf8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb8,0x3b,0xc9,0x9c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x57,0x68,0x71,0x02}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x77,0xa1,0xd8,0x5d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd4,0x6c,0xdc,0x8a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x46,0x3d,0x61,0xe5}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x50,0x4f,0x73,0x6a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xae,0x3b,0x5c,0x2a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd1,0xc3,0x04,0x4a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x46,0x3d,0x61,0xe4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0xf4,0x26,0x84}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0x5f,0x1b,0x3e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x3c,0x5a,0x0d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x54,0xd1,0xf6,0xd0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0xff,0xc7,0x21}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x3d,0x3f,0xeb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xed,0xa5,0x9d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x81,0x3b,0x75,0x5d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd4,0x53,0x8d,0x0d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0xf0,0x13,0x26}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x8d,0x69,0x43,0x44}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xcd,0xed,0xa1,0x8c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x3f,0xed,0x10}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3a,0x40,0x9b,0x78}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4b,0x4a,0x98,0x7b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xbc,0x4e,0x96}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x60,0xee,0x20,0x75}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0x28,0x48,0x4f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x7d,0x40,0x5c,0x11}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x67,0x06,0xdd,0x32}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x71,0x41,0xa7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x35,0x3f,0x1d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x56,0x1f,0x7d,0x81}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0xa5,0x99,0x2f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x56,0x59,0x2a,0x6b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x4f,0x4f,0x8d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x17,0x1e,0x3c,0xd2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x48,0x37,0x99,0x98}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xe5,0x92,0x2c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc3,0xbd,0x7e,0x23}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x43,0xfb,0x62,0xa7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x71,0x6b,0x01,0x32}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x79,0xcf,0xe7,0xd0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd5,0xbd,0x35,0x7d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd2,0xc3,0xda,0x53}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x71,0x6b,0x01,0x31}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xce,0xf8,0xb8,0x7f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0xc2,0x38,0x9a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xad,0x42,0xaa,0xef}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3d,0x82,0x6b,0x87}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0x53,0x17,0x18}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x7d,0x59,0x46,0xdb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xda,0x68,0xc1,0xd2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xdc,0xe9,0x6f,0xcd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x2e,0x27,0x45}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xca,0x4b,0x8d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0x3d,0x04,0xa4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0xaa,0xb7,0xaa}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xae,0x81,0x28,0x20}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x60,0xf1,0xae,0xa4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0xe6,0xd7,0xec}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xad,0x59,0x13,0x39}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x93,0xcc,0xd8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0xe5,0xee,0xbb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb0,0x67,0x70,0x07}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x62,0x9d,0xd3,0xeb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0xc5,0xed,0x0c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0xe1,0xd3,0x23}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x13,0xa8,0xa5}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x32,0x9a,0x17}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3d,0x48,0xd3,0xe4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x09,0x68,0x03}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0x8a,0x01,0xe8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xef,0xe9,0xdd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x87,0x8b,0x43}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xa0,0x24,0x82,0xb4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x92,0xd6,0xcb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0x79,0x75,0x90}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3e,0x1c,0x41,0xc6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5c,0x3f,0x83,0x03}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x8b,0x3f,0xf3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4b,0x46,0x5e,0x49}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xe6,0xc8,0x83}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xcd,0x09,0xac}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x47,0xc5,0xab,0xda}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x53,0xa5,0x65,0x76}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x37,0x26,0xc5}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xcd,0xc5,0xd0,0x2f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x61,0x4d,0x22,0x22}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x48,0x40,0x95,0x3e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x57,0x75,0xa3,0xfa}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0xc6,0xdb,0x36}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd0,0x53,0x14,0xa8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5d,0x1f,0x94,0x5a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x60,0xea,0x98,0xa5}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x4a,0x38,0x65}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x45,0xa5,0xaa,0x10}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0x79,0xab,0xaa}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4c,0x02,0xa7,0xdd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0xf4,0x66,0x09}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x08,0x1c,0x57,0x68}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x59,0xee,0x40,0x8b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x09,0xac,0x33}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4b,0x4c,0x4b,0x84}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4d,0x25,0x92,0xd3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x46,0x5a,0x4d,0xba}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x53,0x96,0x02,0x63}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xf6,0x55,0xf6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb1,0x4b,0x4c,0xbe}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xd0,0xda,0x45}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0xc0,0x4b,0x20}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0xa2,0xc3,0x06}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6a,0xba,0x1f,0xf3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb0,0x09,0x1f,0xb2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x51,0x07,0x0d,0x54}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x57,0x6a,0xb4,0xc7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0x79,0x11,0x6a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x45,0x40,0x51,0x3d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0xaa,0x18,0x03}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc3,0x6e,0x30,0x30}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x74,0x07,0x5c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0xe4,0x9a,0x25}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5f,0xd3,0xbb,0x82}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0x22,0x42,0xae}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd4,0x15,0x44,0x25}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4b,0x57,0x5f,0xbd}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x17,0xfd,0xd8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc3,0x38,0x3f,0x0a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb8,0x6b,0xce,0x2d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0xd0,0x01,0xc2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0xa5,0xfc,0x17}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xca,0x3c,0x45,0xe8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xf6,0x61,0xd3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0xed,0xd9,0xa0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x2e,0x23,0x2f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6c,0x11,0x4e,0x13}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x58,0xc0,0xdd,0x61}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x83,0x72,0xba,0x05}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xed,0xf7,0xe1}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0xc4,0x0e,0x04}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x2e,0x67,0x4b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0xa3,0xef,0xe4}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x2e,0xa5,0xdc,0x47}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x2e,0x33,0xe9}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x92,0xb9,0xac,0xa3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x4c,0x71,0x24}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x32,0x86,0xcc,0xa8}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0xce,0xb1,0x26}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd4,0x53,0x4e,0x26}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x8c,0x71,0xd2,0xd3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xad,0x34,0x55,0x22}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xa2,0xf3,0x89,0xe2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x17,0x17,0x34,0x87}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4f,0xad,0x55,0x92}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xbb,0x4b,0x18}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0x7a,0x5c,0x88}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc6,0x9a,0x6e,0x3a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x18,0x24,0x19}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x4c,0x3d,0xb7}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x7a,0x80,0x6d,0x94}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3f,0x8e,0xd7,0xa0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0xbb,0x16,0x5a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0x79,0x09,0xcb}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x57,0xe6,0x0d,0x8d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x25,0x8b,0x0b,0x63}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xcf,0xc6,0x72,0xe5}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0x11,0x3f,0x2b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x1f,0xa9,0x42,0x42}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x09,0x99,0x32}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x05,0x09,0x8b,0x05}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x60,0xfc,0x66,0xe2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb0,0xc5,0x66,0xbe}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0xe4,0x98,0xcc}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x3e,0x94,0x8c,0x69}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc3,0x0c,0xbd,0x44}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbc,0x7a,0x5c,0x86}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd3,0x64,0x17,0x77}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x55,0xd6,0x75,0x46}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x26,0x48,0x4e,0x35}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x52,0xc1,0x7a,0xb6}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x85,0xf2,0xcc,0xae}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4e,0x5b,0x62,0xea}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x1f,0x03,0xd6,0xbc}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x18,0xeb,0x81,0x5e}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xce,0x47,0xb3,0x74}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc1,0x6a,0xa5,0x3c}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x46,0x45,0xee,0x54}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5e,0x17,0xa8,0x38}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x55,0x11,0xc2,0xa3}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6d,0x57,0x01,0x2f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x50,0xde,0x7a,0x5d}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x48,0xae,0x03,0xa0}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x1f,0xd3,0xc1,0x2b}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x4c,0x09,0xf5,0x13}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x48,0x26,0xb3,0x7a}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xd5,0x9f,0x2e,0x54}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc1,0x6b,0x13,0x53}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0x51,0xdf,0x7f}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0x97,0x21,0x80}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x5b,0xcc,0xd2,0xa2}, 8333}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc0,0x4b,0x5f,0x6b}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x0a,0x26,0x27,0x21,0xae,0x94,0xd5,0xc2,0x72,0x24}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0xea,0xb9,0x5b,0x63,0x1d,0x94,0xe2,0xed,0xec,0xa1}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0xce,0x36,0xa1,0xc1,0xd6,0x64,0x43,0xfb,0xb3,0xe7}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x26,0xe6,0xdf,0xeb,0xe5,0xc5,0x9a,0x87,0x5e,0x22}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x52,0x71,0xa2,0x43,0x2a,0xe6,0x6c,0x8e,0xe4,0x7b}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x7c,0xf4,0x0b,0x4c,0x52,0xd5,0x16,0xcf,0xf5,0x06}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x98,0xff,0x33,0x38,0xbb,0x43,0x08,0x8d,0x95,0x9e}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x16,0x64,0x1b,0x1f,0x8f,0x87,0x18,0x7d,0xa3,0x2b}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0xb8,0xda,0x83,0x67,0x90,0x6f,0x46,0x10,0xdb,0x53}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0xc3,0x1b,0x22,0x8c,0x89,0x60,0xbf,0xca,0x88,0xa1}, 7033}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x4d,0xe3,0x5b,0x75,0x10,0x46,0x5e,0xf0,0x99,0x8b}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x0a,0xba,0x44,0x94,0x9d,0xf5,0xc0,0xaa,0xcd,0x4a}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x96,0x64,0xce,0x6d,0xd4,0xfb,0xa7,0x6b,0x60,0xb5}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0xe9,0x8f,0x0b,0x72,0xc9,0xf1,0xde,0x62,0xd4,0x66}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x25,0x5c,0xbc,0x34,0xe8,0x9f,0xe4,0x7c,0x90,0x93}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0xe0,0xa2,0x72,0xef,0xfa,0x7b,0x88,0x95,0x8b,0x9c}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x99,0x69,0xc5,0x40,0xa7,0x95,0xbb,0x25,0xc1,0xfa}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x46,0xa3,0xd9,0x84,0x08,0xc8,0x7f,0xd3,0xeb,0xc5}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x0c,0xc4,0xd2,0x4f,0x74,0x99,0xb3,0x8c,0xe8,0x25}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0xac,0x9d,0xb8,0xf8,0x4c,0x4b,0x9c,0xc3,0x9c,0xc6}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x7c,0x1d,0x28,0x9f,0xd6,0x28,0x28,0x22,0x4f,0x7a}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0xce,0x36,0xa1,0xc1,0xd6,0x64,0x43,0xfb,0xb3,0xe7}, 8333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x8f,0x06,0x4e,0x64,0xbc,0x5e,0x1a,0x8a,0x71,0x97}, 8444} + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc7,0xc0,0x11,0x9a}, 36307}, + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xa2,0xd5,0xff,0xe6}, 36307} }; static SeedSpec6 pnSeed6_test[] = { - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x99,0xcb,0x26,0x31,0xba,0x48,0x51,0x31,0x39,0x0d}, 18333}, - {{0xfd,0x87,0xd8,0x7e,0xeb,0x43,0x44,0xf4,0xf4,0xf0,0xbf,0xf7,0x7e,0x6d,0xc4,0xe8}, 18333} + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xc7,0xc0,0x11,0x9a}, 46307}, + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xa2,0xd5,0xff,0xe6}, 46307} }; #endif // BITCOIN_CHAINPARAMSSEEDS_H diff --git a/src/checkqueue.h b/src/checkqueue.h index 2ee46a1210ac7..b27f9e3d17140 100644 --- a/src/checkqueue.h +++ b/src/checkqueue.h @@ -161,7 +161,12 @@ class CCheckQueue { } - friend class CCheckQueueControl; + bool IsIdle() + { + boost::unique_lock lock(mutex); + return (nTotal == nIdle && nTodo == 0 && fAllOk == true); + } + }; /** @@ -180,9 +185,8 @@ class CCheckQueueControl { // passed queue is supposed to be unused, or NULL if (pqueue != NULL) { - assert(pqueue->nTotal == pqueue->nIdle); - assert(pqueue->nTodo == 0); - assert(pqueue->fAllOk == true); + bool isIdle = pqueue->IsIdle(); + assert(isIdle); } } diff --git a/src/clientversion.h b/src/clientversion.h index 0a36eb80123a8..8e3fe17b4694f 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -15,18 +15,18 @@ //! These need to be macros, as clientversion.cpp's and bitcoin*-res.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 0 -#define CLIENT_VERSION_MINOR 9 -#define CLIENT_VERSION_REVISION 99 +#define CLIENT_VERSION_MINOR 10 +#define CLIENT_VERSION_REVISION 4 #define CLIENT_VERSION_BUILD 0 //! Set to true for release, false for prerelease or test build -#define CLIENT_VERSION_IS_RELEASE false +#define CLIENT_VERSION_IS_RELEASE true /** * Copyright year (2009-this) * Todo: update this when changing our copyright comments in the source */ -#define COPYRIGHT_YEAR 2014 +#define COPYRIGHT_YEAR 2018 #endif //HAVE_CONFIG_H diff --git a/src/coins.cpp b/src/coins.cpp index c2e802c95364e..6e95656175ebc 100644 --- a/src/coins.cpp +++ b/src/coins.cpp @@ -106,7 +106,6 @@ bool CCoinsViewCache::GetCoins(const uint256 &txid, CCoins &coins) const { CCoinsModifier CCoinsViewCache::ModifyCoins(const uint256 &txid) { assert(!hasModifier); - hasModifier = true; std::pair ret = cacheCoins.insert(std::make_pair(txid, CCoinsCacheEntry())); if (ret.second) { if (!base->GetCoins(txid, ret.first->second.coins)) { @@ -240,14 +239,17 @@ double CCoinsViewCache::GetPriority(const CTransaction &tx, int nHeight) const const CCoins* coins = AccessCoins(txin.prevout.hash); assert(coins); if (!coins->IsAvailable(txin.prevout.n)) continue; - if (coins->nHeight < nHeight) { - dResult += coins->vout[txin.prevout.n].nValue * (nHeight-coins->nHeight); + if (coins->nHeight <= nHeight) { + dResult += (double)(coins->vout[txin.prevout.n].nValue) * (nHeight-coins->nHeight); } } return tx.ComputePriority(dResult); } -CCoinsModifier::CCoinsModifier(CCoinsViewCache& cache_, CCoinsMap::iterator it_) : cache(cache_), it(it_) {} +CCoinsModifier::CCoinsModifier(CCoinsViewCache& cache_, CCoinsMap::iterator it_) : cache(cache_), it(it_) { + assert(!cache.hasModifier); + cache.hasModifier = true; +} CCoinsModifier::~CCoinsModifier() { diff --git a/src/compat.h b/src/compat.h index dffd4ecf52fac..651e641daa0e8 100644 --- a/src/compat.h +++ b/src/compat.h @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include @@ -88,8 +89,14 @@ typedef u_int SOCKET; #define THREAD_PRIORITY_ABOVE_NORMAL (-2) #endif -#if HAVE_DECL_STRNLEN == 0 -size_t strnlen( const char *start, size_t max_len); -#endif // HAVE_DECL_STRNLEN +size_t strnlen_int( const char *start, size_t max_len); + +bool static inline IsSelectableSocket(SOCKET s) { +#ifdef WIN32 + return true; +#else + return (s < FD_SETSIZE); +#endif +} #endif // BITCOIN_COMPAT_H diff --git a/src/compat/strnlen.cpp b/src/compat/strnlen.cpp index 7f3e1598875f9..7dafd98c0b563 100644 --- a/src/compat/strnlen.cpp +++ b/src/compat/strnlen.cpp @@ -7,12 +7,11 @@ #endif #include - -#if HAVE_DECL_STRNLEN == 0 -size_t strnlen( const char *start, size_t max_len) +// OSX 10.6 is missing strnlen at runtime, but builds targetting it will still +// succeed. Define our own version here to avoid a crash. +size_t strnlen_int( const char *start, size_t max_len) { const char *end = (const char *)memchr(start, '\0', max_len); return end ? (size_t)(end - start) : max_len; } -#endif // HAVE_DECL_STRNLEN diff --git a/src/core_io.h b/src/core_io.h index aba1928a36646..bc2eb1edd0995 100644 --- a/src/core_io.h +++ b/src/core_io.h @@ -19,6 +19,7 @@ extern CScript ParseScript(std::string s); extern bool DecodeHexTx(CTransaction& tx, const std::string& strHexTx); extern bool DecodeHexBlk(CBlock&, const std::string& strHexBlk); extern uint256 ParseHashUV(const UniValue& v, const std::string& strName); +extern uint256 ParseHashStr(const std::string&, const std::string& strName); extern std::vector ParseHexUV(const UniValue& v, const std::string& strName); // core_write.cpp diff --git a/src/core_read.cpp b/src/core_read.cpp index 65c3a08c551eb..beb746ce97025 100644 --- a/src/core_read.cpp +++ b/src/core_read.cpp @@ -131,6 +131,11 @@ uint256 ParseHashUV(const UniValue& v, const string& strName) string strHex; if (v.isStr()) strHex = v.getValStr(); + return ParseHashStr(strHex, strName); // Note: ParseHashStr("") throws a runtime_error +} + +uint256 ParseHashStr(const std::string& strHex, const std::string& strName) +{ if (!IsHex(strHex)) // Note: IsHex("") is false throw runtime_error(strName+" must be hexadecimal string (not '"+strHex+"')"); diff --git a/src/crypto/scrypt-sse2.cpp b/src/crypto/scrypt-sse2.cpp new file mode 100644 index 0000000000000..d9e7ffccc5f56 --- /dev/null +++ b/src/crypto/scrypt-sse2.cpp @@ -0,0 +1,136 @@ +/* + * Copyright 2009 Colin Percival, 2011 ArtForz, 2012-2013 pooler + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * This file was originally written by Colin Percival as part of the Tarsnap + * online backup system. + */ + +#include "crypto/scrypt.h" +#include +#include +#include +#include + +#include + +static inline void xor_salsa8_sse2(__m128i B[4], const __m128i Bx[4]) +{ + __m128i X0, X1, X2, X3; + __m128i T; + int i; + + X0 = B[0] = _mm_xor_si128(B[0], Bx[0]); + X1 = B[1] = _mm_xor_si128(B[1], Bx[1]); + X2 = B[2] = _mm_xor_si128(B[2], Bx[2]); + X3 = B[3] = _mm_xor_si128(B[3], Bx[3]); + + for (i = 0; i < 8; i += 2) { + /* Operate on "columns". */ + T = _mm_add_epi32(X0, X3); + X1 = _mm_xor_si128(X1, _mm_slli_epi32(T, 7)); + X1 = _mm_xor_si128(X1, _mm_srli_epi32(T, 25)); + T = _mm_add_epi32(X1, X0); + X2 = _mm_xor_si128(X2, _mm_slli_epi32(T, 9)); + X2 = _mm_xor_si128(X2, _mm_srli_epi32(T, 23)); + T = _mm_add_epi32(X2, X1); + X3 = _mm_xor_si128(X3, _mm_slli_epi32(T, 13)); + X3 = _mm_xor_si128(X3, _mm_srli_epi32(T, 19)); + T = _mm_add_epi32(X3, X2); + X0 = _mm_xor_si128(X0, _mm_slli_epi32(T, 18)); + X0 = _mm_xor_si128(X0, _mm_srli_epi32(T, 14)); + + /* Rearrange data. */ + X1 = _mm_shuffle_epi32(X1, 0x93); + X2 = _mm_shuffle_epi32(X2, 0x4E); + X3 = _mm_shuffle_epi32(X3, 0x39); + + /* Operate on "rows". */ + T = _mm_add_epi32(X0, X1); + X3 = _mm_xor_si128(X3, _mm_slli_epi32(T, 7)); + X3 = _mm_xor_si128(X3, _mm_srli_epi32(T, 25)); + T = _mm_add_epi32(X3, X0); + X2 = _mm_xor_si128(X2, _mm_slli_epi32(T, 9)); + X2 = _mm_xor_si128(X2, _mm_srli_epi32(T, 23)); + T = _mm_add_epi32(X2, X3); + X1 = _mm_xor_si128(X1, _mm_slli_epi32(T, 13)); + X1 = _mm_xor_si128(X1, _mm_srli_epi32(T, 19)); + T = _mm_add_epi32(X1, X2); + X0 = _mm_xor_si128(X0, _mm_slli_epi32(T, 18)); + X0 = _mm_xor_si128(X0, _mm_srli_epi32(T, 14)); + + /* Rearrange data. */ + X1 = _mm_shuffle_epi32(X1, 0x39); + X2 = _mm_shuffle_epi32(X2, 0x4E); + X3 = _mm_shuffle_epi32(X3, 0x93); + } + + B[0] = _mm_add_epi32(B[0], X0); + B[1] = _mm_add_epi32(B[1], X1); + B[2] = _mm_add_epi32(B[2], X2); + B[3] = _mm_add_epi32(B[3], X3); +} + +void scrypt_1024_1_1_256_sp_sse2(const char *input, char *output, char *scratchpad) +{ + uint8_t B[128]; + union { + __m128i i128[8]; + uint32_t u32[32]; + } X; + __m128i *V; + uint32_t i, j, k; + + V = (__m128i *)(((uintptr_t)(scratchpad) + 63) & ~ (uintptr_t)(63)); + + PBKDF2_SHA256((const uint8_t *)input, 80, (const uint8_t *)input, 80, 1, B, 128); + + for (k = 0; k < 2; k++) { + for (i = 0; i < 16; i++) { + X.u32[k * 16 + i] = le32dec(&B[(k * 16 + (i * 5 % 16)) * 4]); + } + } + + for (i = 0; i < 1024; i++) { + for (k = 0; k < 8; k++) + V[i * 8 + k] = X.i128[k]; + xor_salsa8_sse2(&X.i128[0], &X.i128[4]); + xor_salsa8_sse2(&X.i128[4], &X.i128[0]); + } + for (i = 0; i < 1024; i++) { + j = 8 * (X.u32[16] & 1023); + for (k = 0; k < 8; k++) + X.i128[k] = _mm_xor_si128(X.i128[k], V[j + k]); + xor_salsa8_sse2(&X.i128[0], &X.i128[4]); + xor_salsa8_sse2(&X.i128[4], &X.i128[0]); + } + + for (k = 0; k < 2; k++) { + for (i = 0; i < 16; i++) { + le32enc(&B[(k * 16 + (i * 5 % 16)) * 4], X.u32[k * 16 + i]); + } + } + + PBKDF2_SHA256((const uint8_t *)input, 80, B, 128, 1, (uint8_t *)output, 32); +} diff --git a/src/crypto/scrypt.cpp b/src/crypto/scrypt.cpp new file mode 100644 index 0000000000000..887f58770d194 --- /dev/null +++ b/src/crypto/scrypt.cpp @@ -0,0 +1,329 @@ +/* + * Copyright 2009 Colin Percival, 2011 ArtForz, 2012-2013 pooler + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * This file was originally written by Colin Percival as part of the Tarsnap + * online backup system. + */ + +#include "crypto/scrypt.h" +//#include "util.h" +#include +#include +#include +#include + +#if defined(USE_SSE2) && !defined(USE_SSE2_ALWAYS) +#ifdef _MSC_VER +// MSVC 64bit is unable to use inline asm +#include +#else +// GCC Linux or i686-w64-mingw32 +#include +#endif +#endif + +static inline uint32_t be32dec(const void *pp) +{ + const uint8_t *p = (uint8_t const *)pp; + return ((uint32_t)(p[3]) + ((uint32_t)(p[2]) << 8) + + ((uint32_t)(p[1]) << 16) + ((uint32_t)(p[0]) << 24)); +} + +static inline void be32enc(void *pp, uint32_t x) +{ + uint8_t *p = (uint8_t *)pp; + p[3] = x & 0xff; + p[2] = (x >> 8) & 0xff; + p[1] = (x >> 16) & 0xff; + p[0] = (x >> 24) & 0xff; +} + +typedef struct HMAC_SHA256Context { + SHA256_CTX ictx; + SHA256_CTX octx; +} HMAC_SHA256_CTX; + +/* Initialize an HMAC-SHA256 operation with the given key. */ +static void +HMAC_SHA256_Init(HMAC_SHA256_CTX *ctx, const void *_K, size_t Klen) +{ + unsigned char pad[64]; + unsigned char khash[32]; + const unsigned char *K = (const unsigned char *)_K; + size_t i; + + /* If Klen > 64, the key is really SHA256(K). */ + if (Klen > 64) { + SHA256_Init(&ctx->ictx); + SHA256_Update(&ctx->ictx, K, Klen); + SHA256_Final(khash, &ctx->ictx); + K = khash; + Klen = 32; + } + + /* Inner SHA256 operation is SHA256(K xor [block of 0x36] || data). */ + SHA256_Init(&ctx->ictx); + memset(pad, 0x36, 64); + for (i = 0; i < Klen; i++) + pad[i] ^= K[i]; + SHA256_Update(&ctx->ictx, pad, 64); + + /* Outer SHA256 operation is SHA256(K xor [block of 0x5c] || hash). */ + SHA256_Init(&ctx->octx); + memset(pad, 0x5c, 64); + for (i = 0; i < Klen; i++) + pad[i] ^= K[i]; + SHA256_Update(&ctx->octx, pad, 64); + + /* Clean the stack. */ + memset(khash, 0, 32); +} + +/* Add bytes to the HMAC-SHA256 operation. */ +static void +HMAC_SHA256_Update(HMAC_SHA256_CTX *ctx, const void *in, size_t len) +{ + /* Feed data to the inner SHA256 operation. */ + SHA256_Update(&ctx->ictx, in, len); +} + +/* Finish an HMAC-SHA256 operation. */ +static void +HMAC_SHA256_Final(unsigned char digest[32], HMAC_SHA256_CTX *ctx) +{ + unsigned char ihash[32]; + + /* Finish the inner SHA256 operation. */ + SHA256_Final(ihash, &ctx->ictx); + + /* Feed the inner hash to the outer SHA256 operation. */ + SHA256_Update(&ctx->octx, ihash, 32); + + /* Finish the outer SHA256 operation. */ + SHA256_Final(digest, &ctx->octx); + + /* Clean the stack. */ + memset(ihash, 0, 32); +} + +/** + * PBKDF2_SHA256(passwd, passwdlen, salt, saltlen, c, buf, dkLen): + * Compute PBKDF2(passwd, salt, c, dkLen) using HMAC-SHA256 as the PRF, and + * write the output to buf. The value dkLen must be at most 32 * (2^32 - 1). + */ +void +PBKDF2_SHA256(const uint8_t *passwd, size_t passwdlen, const uint8_t *salt, + size_t saltlen, uint64_t c, uint8_t *buf, size_t dkLen) +{ + HMAC_SHA256_CTX PShctx, hctx; + size_t i; + uint8_t ivec[4]; + uint8_t U[32]; + uint8_t T[32]; + uint64_t j; + int k; + size_t clen; + + /* Compute HMAC state after processing P and S. */ + HMAC_SHA256_Init(&PShctx, passwd, passwdlen); + HMAC_SHA256_Update(&PShctx, salt, saltlen); + + /* Iterate through the blocks. */ + for (i = 0; i * 32 < dkLen; i++) { + /* Generate INT(i + 1). */ + be32enc(ivec, (uint32_t)(i + 1)); + + /* Compute U_1 = PRF(P, S || INT(i)). */ + memcpy(&hctx, &PShctx, sizeof(HMAC_SHA256_CTX)); + HMAC_SHA256_Update(&hctx, ivec, 4); + HMAC_SHA256_Final(U, &hctx); + + /* T_i = U_1 ... */ + memcpy(T, U, 32); + + for (j = 2; j <= c; j++) { + /* Compute U_j. */ + HMAC_SHA256_Init(&hctx, passwd, passwdlen); + HMAC_SHA256_Update(&hctx, U, 32); + HMAC_SHA256_Final(U, &hctx); + + /* ... xor U_j ... */ + for (k = 0; k < 32; k++) + T[k] ^= U[k]; + } + + /* Copy as many bytes as necessary into buf. */ + clen = dkLen - i * 32; + if (clen > 32) + clen = 32; + memcpy(&buf[i * 32], T, clen); + } + + /* Clean PShctx, since we never called _Final on it. */ + memset(&PShctx, 0, sizeof(HMAC_SHA256_CTX)); +} + +#define ROTL(a, b) (((a) << (b)) | ((a) >> (32 - (b)))) + +static inline void xor_salsa8(uint32_t B[16], const uint32_t Bx[16]) +{ + uint32_t x00,x01,x02,x03,x04,x05,x06,x07,x08,x09,x10,x11,x12,x13,x14,x15; + int i; + + x00 = (B[ 0] ^= Bx[ 0]); + x01 = (B[ 1] ^= Bx[ 1]); + x02 = (B[ 2] ^= Bx[ 2]); + x03 = (B[ 3] ^= Bx[ 3]); + x04 = (B[ 4] ^= Bx[ 4]); + x05 = (B[ 5] ^= Bx[ 5]); + x06 = (B[ 6] ^= Bx[ 6]); + x07 = (B[ 7] ^= Bx[ 7]); + x08 = (B[ 8] ^= Bx[ 8]); + x09 = (B[ 9] ^= Bx[ 9]); + x10 = (B[10] ^= Bx[10]); + x11 = (B[11] ^= Bx[11]); + x12 = (B[12] ^= Bx[12]); + x13 = (B[13] ^= Bx[13]); + x14 = (B[14] ^= Bx[14]); + x15 = (B[15] ^= Bx[15]); + for (i = 0; i < 8; i += 2) { + /* Operate on columns. */ + x04 ^= ROTL(x00 + x12, 7); x09 ^= ROTL(x05 + x01, 7); + x14 ^= ROTL(x10 + x06, 7); x03 ^= ROTL(x15 + x11, 7); + + x08 ^= ROTL(x04 + x00, 9); x13 ^= ROTL(x09 + x05, 9); + x02 ^= ROTL(x14 + x10, 9); x07 ^= ROTL(x03 + x15, 9); + + x12 ^= ROTL(x08 + x04, 13); x01 ^= ROTL(x13 + x09, 13); + x06 ^= ROTL(x02 + x14, 13); x11 ^= ROTL(x07 + x03, 13); + + x00 ^= ROTL(x12 + x08, 18); x05 ^= ROTL(x01 + x13, 18); + x10 ^= ROTL(x06 + x02, 18); x15 ^= ROTL(x11 + x07, 18); + + /* Operate on rows. */ + x01 ^= ROTL(x00 + x03, 7); x06 ^= ROTL(x05 + x04, 7); + x11 ^= ROTL(x10 + x09, 7); x12 ^= ROTL(x15 + x14, 7); + + x02 ^= ROTL(x01 + x00, 9); x07 ^= ROTL(x06 + x05, 9); + x08 ^= ROTL(x11 + x10, 9); x13 ^= ROTL(x12 + x15, 9); + + x03 ^= ROTL(x02 + x01, 13); x04 ^= ROTL(x07 + x06, 13); + x09 ^= ROTL(x08 + x11, 13); x14 ^= ROTL(x13 + x12, 13); + + x00 ^= ROTL(x03 + x02, 18); x05 ^= ROTL(x04 + x07, 18); + x10 ^= ROTL(x09 + x08, 18); x15 ^= ROTL(x14 + x13, 18); + } + B[ 0] += x00; + B[ 1] += x01; + B[ 2] += x02; + B[ 3] += x03; + B[ 4] += x04; + B[ 5] += x05; + B[ 6] += x06; + B[ 7] += x07; + B[ 8] += x08; + B[ 9] += x09; + B[10] += x10; + B[11] += x11; + B[12] += x12; + B[13] += x13; + B[14] += x14; + B[15] += x15; +} + +void scrypt_1024_1_1_256_sp_generic(const char *input, char *output, char *scratchpad) +{ + uint8_t B[128]; + uint32_t X[32]; + uint32_t *V; + uint32_t i, j, k; + + V = (uint32_t *)(((uintptr_t)(scratchpad) + 63) & ~ (uintptr_t)(63)); + + PBKDF2_SHA256((const uint8_t *)input, 80, (const uint8_t *)input, 80, 1, B, 128); + + for (k = 0; k < 32; k++) + X[k] = le32dec(&B[4 * k]); + + for (i = 0; i < 1024; i++) { + memcpy(&V[i * 32], X, 128); + xor_salsa8(&X[0], &X[16]); + xor_salsa8(&X[16], &X[0]); + } + for (i = 0; i < 1024; i++) { + j = 32 * (X[16] & 1023); + for (k = 0; k < 32; k++) + X[k] ^= V[j + k]; + xor_salsa8(&X[0], &X[16]); + xor_salsa8(&X[16], &X[0]); + } + + for (k = 0; k < 32; k++) + le32enc(&B[4 * k], X[k]); + + PBKDF2_SHA256((const uint8_t *)input, 80, B, 128, 1, (uint8_t *)output, 32); +} + +#if defined(USE_SSE2) +// By default, set to generic scrypt function. This will prevent crash in case when scrypt_detect_sse2() wasn't called +void (*scrypt_1024_1_1_256_sp_detected)(const char *input, char *output, char *scratchpad) = &scrypt_1024_1_1_256_sp_generic; + +void scrypt_detect_sse2() +{ +#if defined(USE_SSE2_ALWAYS) + printf("scrypt: using scrypt-sse2 as built.\n"); +#else // USE_SSE2_ALWAYS + // 32bit x86 Linux or Windows, detect cpuid features + unsigned int cpuid_edx=0; +#if defined(_MSC_VER) + // MSVC + int x86cpuid[4]; + __cpuid(x86cpuid, 1); + cpuid_edx = (unsigned int)buffer[3]; +#else // _MSC_VER + // Linux or i686-w64-mingw32 (gcc-4.6.3) + unsigned int eax, ebx, ecx; + __get_cpuid(1, &eax, &ebx, &ecx, &cpuid_edx); +#endif // _MSC_VER + + if (cpuid_edx & 1<<26) + { + scrypt_1024_1_1_256_sp_detected = &scrypt_1024_1_1_256_sp_sse2; + printf("scrypt: using scrypt-sse2 as detected.\n"); + } + else + { + scrypt_1024_1_1_256_sp_detected = &scrypt_1024_1_1_256_sp_generic; + printf("scrypt: using scrypt-generic, SSE2 unavailable.\n"); + } +#endif // USE_SSE2_ALWAYS +} +#endif + +void scrypt_1024_1_1_256(const char *input, char *output) +{ + char scratchpad[SCRYPT_SCRATCHPAD_SIZE]; + scrypt_1024_1_1_256_sp(input, output, scratchpad); +} diff --git a/src/crypto/scrypt.h b/src/crypto/scrypt.h new file mode 100644 index 0000000000000..5431fb67ceeb5 --- /dev/null +++ b/src/crypto/scrypt.h @@ -0,0 +1,45 @@ +#ifndef SCRYPT_H +#define SCRYPT_H +#include +#include + +static const int SCRYPT_SCRATCHPAD_SIZE = 131072 + 63; + +void scrypt_1024_1_1_256(const char *input, char *output); +void scrypt_1024_1_1_256_sp_generic(const char *input, char *output, char *scratchpad); + +#if defined(USE_SSE2) +#if defined(_M_X64) || defined(__x86_64__) || defined(_M_AMD64) || (defined(MAC_OSX) && defined(__i386__)) +#define USE_SSE2_ALWAYS 1 +#define scrypt_1024_1_1_256_sp(input, output, scratchpad) scrypt_1024_1_1_256_sp_sse2((input), (output), (scratchpad)) +#else +#define scrypt_1024_1_1_256_sp(input, output, scratchpad) scrypt_1024_1_1_256_sp_detected((input), (output), (scratchpad)) +#endif + +void scrypt_detect_sse2(); +void scrypt_1024_1_1_256_sp_sse2(const char *input, char *output, char *scratchpad); +extern void (*scrypt_1024_1_1_256_sp_detected)(const char *input, char *output, char *scratchpad); +#else +#define scrypt_1024_1_1_256_sp(input, output, scratchpad) scrypt_1024_1_1_256_sp_generic((input), (output), (scratchpad)) +#endif + +void +PBKDF2_SHA256(const uint8_t *passwd, size_t passwdlen, const uint8_t *salt, + size_t saltlen, uint64_t c, uint8_t *buf, size_t dkLen); + +static inline uint32_t le32dec(const void *pp) +{ + const uint8_t *p = (uint8_t const *)pp; + return ((uint32_t)(p[0]) + ((uint32_t)(p[1]) << 8) + + ((uint32_t)(p[2]) << 16) + ((uint32_t)(p[3]) << 24)); +} + +static inline void le32enc(void *pp, uint32_t x) +{ + uint8_t *p = (uint8_t *)pp; + p[0] = x & 0xff; + p[1] = (x >> 8) & 0xff; + p[2] = (x >> 16) & 0xff; + p[3] = (x >> 24) & 0xff; +} +#endif diff --git a/src/ecwrapper.cpp b/src/ecwrapper.cpp index 5ce7e61294694..5bfa740cc6cdb 100644 --- a/src/ecwrapper.cpp +++ b/src/ecwrapper.cpp @@ -117,10 +117,34 @@ bool CECKey::SetPubKey(const unsigned char* pubkey, size_t size) { } bool CECKey::Verify(const uint256 &hash, const std::vector& vchSig) { - // -1 = error, 0 = bad sig, 1 = good - if (ECDSA_verify(0, (unsigned char*)&hash, sizeof(hash), &vchSig[0], vchSig.size(), pkey) != 1) + if (vchSig.empty()) return false; - return true; + + // New versions of OpenSSL will reject non-canonical DER signatures. de/re-serialize first. + unsigned char *norm_der = NULL; + ECDSA_SIG *norm_sig = ECDSA_SIG_new(); + const unsigned char* sigptr = &vchSig[0]; + assert(norm_sig); + if (d2i_ECDSA_SIG(&norm_sig, &sigptr, vchSig.size()) == NULL) + { + /* As of OpenSSL 1.0.0p d2i_ECDSA_SIG frees and nulls the pointer on + * error. But OpenSSL's own use of this function redundantly frees the + * result. As ECDSA_SIG_free(NULL) is a no-op, and in the absence of a + * clear contract for the function behaving the same way is more + * conservative. + */ + ECDSA_SIG_free(norm_sig); + return false; + } + int derlen = i2d_ECDSA_SIG(norm_sig, &norm_der); + ECDSA_SIG_free(norm_sig); + if (derlen <= 0) + return false; + + // -1 = error, 0 = bad sig, 1 = good + bool ret = ECDSA_verify(0, (unsigned char*)&hash, sizeof(hash), norm_der, derlen, pkey) == 1; + OPENSSL_free(norm_der); + return ret; } bool CECKey::Recover(const uint256 &hash, const unsigned char *p64, int rec) diff --git a/src/init.cpp b/src/init.cpp index 11329c16aa416..1e1701878ed7f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -112,7 +112,28 @@ bool ShutdownRequested() return fRequestShutdown; } +class CCoinsViewErrorCatcher : public CCoinsViewBacked +{ +public: + CCoinsViewErrorCatcher(CCoinsView* view) : CCoinsViewBacked(view) {} + bool GetCoins(const uint256 &txid, CCoins &coins) const { + try { + return CCoinsViewBacked::GetCoins(txid, coins); + } catch(const std::runtime_error& e) { + uiInterface.ThreadSafeMessageBox(_("Error reading from database, shutting down."), "", CClientUIInterface::MSG_ERROR); + LogPrintf("Error reading from database: %s\n", e.what()); + // Starting the shutdown sequence and returning false to the caller would be + // interpreted as 'entry not found' (as opposed to unable to read data), and + // could lead to invalid interpration. Just exit immediately, as we can't + // continue anyway, and all writes should be atomic. + abort(); + } + } + // Writes do not need similar protection, as failure to write is handled by the caller. +}; + static CCoinsViewDB *pcoinsdbview = NULL; +static CCoinsViewErrorCatcher *pcoinscatcher = NULL; void Shutdown() { @@ -126,7 +147,7 @@ void Shutdown() /// for example if the data directory was found to be locked. /// Be sure that anything that writes files or flushes caches only does this if the respective /// module was initialized. - RenameThread("bitcoin-shutoff"); + RenameThread("hypercoin-shutoff"); mempool.AddTransactionsUpdated(1); StopRPCThreads(); #ifdef ENABLE_WALLET @@ -155,6 +176,8 @@ void Shutdown() } delete pcoinsTip; pcoinsTip = NULL; + delete pcoinscatcher; + pcoinscatcher = NULL; delete pcoinsdbview; pcoinsdbview = NULL; delete pblocktree; @@ -218,10 +241,11 @@ std::string HelpMessage(HelpMessageMode mode) string strUsage = _("Options:") + "\n"; strUsage += " -? " + _("This help message") + "\n"; strUsage += " -alertnotify= " + _("Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message)") + "\n"; + strUsage += " -alerts " + strprintf(_("Receive and display P2P network alerts (default: %u)"), DEFAULT_ALERTS); strUsage += " -blocknotify= " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n"; strUsage += " -checkblocks= " + strprintf(_("How many blocks to check at startup (default: %u, 0 = all)"), 288) + "\n"; strUsage += " -checklevel= " + strprintf(_("How thorough the block verification of -checkblocks is (0-4, default: %u)"), 3) + "\n"; - strUsage += " -conf= " + strprintf(_("Specify configuration file (default: %s)"), "bitcoin.conf") + "\n"; + strUsage += " -conf= " + strprintf(_("Specify configuration file (default: %s)"), "hypercoin.conf") + "\n"; if (mode == HMM_BITCOIND) { #if !defined(WIN32) @@ -231,11 +255,10 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += " -datadir= " + _("Specify data directory") + "\n"; strUsage += " -dbcache= " + strprintf(_("Set database cache size in megabytes (%d to %d, default: %d)"), nMinDbCache, nMaxDbCache, nDefaultDbCache) + "\n"; strUsage += " -loadblock= " + _("Imports blocks from external blk000??.dat file") + " " + _("on startup") + "\n"; - strUsage += " -maxorphanblocks= " + strprintf(_("Keep at most unconnectable blocks in memory (default: %u)"), DEFAULT_MAX_ORPHAN_BLOCKS) + "\n"; strUsage += " -maxorphantx= " + strprintf(_("Keep at most unconnectable transactions in memory (default: %u)"), DEFAULT_MAX_ORPHAN_TRANSACTIONS) + "\n"; strUsage += " -par= " + strprintf(_("Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d)"), -(int)boost::thread::hardware_concurrency(), MAX_SCRIPTCHECK_THREADS, DEFAULT_SCRIPTCHECK_THREADS) + "\n"; #ifndef WIN32 - strUsage += " -pid= " + strprintf(_("Specify pid file (default: %s)"), "bitcoind.pid") + "\n"; + strUsage += " -pid= " + strprintf(_("Specify pid file (default: %s)"), "hypercoind.pid") + "\n"; #endif strUsage += " -reindex " + _("Rebuild block chain index from current blk000??.dat files") + " " + _("on startup") + "\n"; #if !defined(WIN32) @@ -261,7 +284,7 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += " -onion= " + strprintf(_("Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s)"), "-proxy") + "\n"; strUsage += " -onlynet= " + _("Only connect to nodes in network (ipv4, ipv6 or onion)") + "\n"; strUsage += " -permitbaremultisig " + strprintf(_("Relay non-P2SH multisig (default: %u)"), 1) + "\n"; - strUsage += " -port= " + strprintf(_("Listen for connections on (default: %u or testnet: %u)"), 8333, 18333) + "\n"; + strUsage += " -port= " + strprintf(_("Listen for connections on (default: %u or testnet: %u)"), 36307, 46307) + "\n"; strUsage += " -proxy= " + _("Connect through SOCKS5 proxy") + "\n"; strUsage += " -seednode= " + _("Connect to a node to retrieve peer addresses, and disconnect") + "\n"; strUsage += " -timeout= " + strprintf(_("Specify connection timeout in milliseconds (minimum: 1, default: %d)"), DEFAULT_CONNECT_TIMEOUT) + "\n"; @@ -281,13 +304,15 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += " -disablewallet " + _("Do not load the wallet and disable wallet RPC calls") + "\n"; strUsage += " -keypool= " + strprintf(_("Set key pool size to (default: %u)"), 100) + "\n"; if (GetBoolArg("-help-debug", false)) - strUsage += " -mintxfee= " + strprintf(_("Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s)"), FormatMoney(CWallet::minTxFee.GetFeePerK())) + "\n"; - strUsage += " -paytxfee= " + strprintf(_("Fee (in BTC/kB) to add to transactions you send (default: %s)"), FormatMoney(payTxFee.GetFeePerK())) + "\n"; + strUsage += " -mintxfee= " + strprintf(_("Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s)"), FormatMoney(CWallet::minTxFee.GetFeePerK())) + "\n"; + strUsage += " -paytxfee= " + strprintf(_("Fee (in HOT/kB) to add to transactions you send (default: %s)"), FormatMoney(payTxFee.GetFeePerK())) + "\n"; + strUsage += " -mininput= " + _("Wallet ignores inputs with value less than this (default: 0.0001)") + "\n"; strUsage += " -rescan " + _("Rescan the block chain for missing wallet transactions") + " " + _("on startup") + "\n"; strUsage += " -salvagewallet " + _("Attempt to recover private keys from a corrupt wallet.dat") + " " + _("on startup") + "\n"; strUsage += " -sendfreetransactions " + strprintf(_("Send transactions as zero-fee transactions if possible (default: %u)"), 0) + "\n"; strUsage += " -spendzeroconfchange " + strprintf(_("Spend unconfirmed change when sending transactions (default: %u)"), 1) + "\n"; - strUsage += " -txconfirmtarget= " + strprintf(_("If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u)"), 1) + "\n"; + strUsage += " -txconfirmtarget= " + strprintf(_("If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u)"), 1) + "\n"; + strUsage += " -maxtxfee= " + strprintf(_("Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s)"), FormatMoney(maxTxFee)) + "\n"; strUsage += " -upgradewallet " + _("Upgrade wallet to latest format") + " " + _("on startup") + "\n"; strUsage += " -wallet= " + _("Specify wallet file (within data directory)") + " " + strprintf(_("(default: %s)"), "wallet.dat") + "\n"; strUsage += " -walletnotify= " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n"; @@ -324,9 +349,10 @@ std::string HelpMessage(HelpMessageMode mode) if (GetBoolArg("-help-debug", false)) { strUsage += " -limitfreerelay= " + strprintf(_("Continuously rate-limit free transactions to *1000 bytes per minute (default:%u)"), 15) + "\n"; + strUsage += " -relaypriority " + strprintf(_("Require high priority for relaying free or low-fee transactions (default:%u)"), 1) + "\n"; strUsage += " -maxsigcachesize= " + strprintf(_("Limit size of signature cache to entries (default: %u)"), 50000) + "\n"; } - strUsage += " -minrelaytxfee= " + strprintf(_("Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s)"), FormatMoney(::minRelayTxFee.GetFeePerK())) + "\n"; + strUsage += " -minrelaytxfee= " + strprintf(_("Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s)"), FormatMoney(::minRelayTxFee.GetFeePerK())) + "\n"; strUsage += " -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n"; if (GetBoolArg("-help-debug", false)) { @@ -357,8 +383,9 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += " -rpcport= " + strprintf(_("Listen for JSON-RPC connections on (default: %u or testnet: %u)"), 8332, 18332) + "\n"; strUsage += " -rpcallowip= " + _("Allow JSON-RPC connections from specified source. Valid for are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times") + "\n"; strUsage += " -rpcthreads= " + strprintf(_("Set the number of threads to service RPC calls (default: %d)"), 4) + "\n"; + strUsage += " -rpckeepalive " + strprintf(_("RPC support for HTTP persistent connections (default: %d)"), 0) + "\n"; - strUsage += "\n" + _("RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n"; + strUsage += "\n" + _("RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions)") + "\n"; strUsage += " -rpcssl " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n"; strUsage += " -rpcsslcertificatechainfile= " + strprintf(_("Server certificate file (default: %s)"), "server.cert") + "\n"; strUsage += " -rpcsslprivatekeyfile= " + strprintf(_("Server private key (default: %s)"), "server.pem") + "\n"; @@ -370,6 +397,8 @@ std::string HelpMessage(HelpMessageMode mode) std::string LicenseInfo() { return FormatParagraph(strprintf(_("Copyright (C) 2009-%i The Bitcoin Core Developers"), COPYRIGHT_YEAR)) + "\n" + + "\n" + + FormatParagraph(strprintf(_("Copyright (C) 2011-%i The Hypercoin Core Developers"), COPYRIGHT_YEAR)) + "\n" + "\n" + FormatParagraph(_("This is experimental software.")) + "\n" + "\n" + @@ -402,7 +431,7 @@ struct CImportingNow void ThreadImport(std::vector vImportFiles) { - RenameThread("bitcoin-loadblk"); + RenameThread("hypercoin-loadblk"); // -reindex if (fReindex) { @@ -568,7 +597,11 @@ bool AppInit2(boost::thread_group& threadGroup) if (mapArgs.count("-proxy")) { // to protect privacy, do not listen by default if a default proxy server is specified if (SoftSetBoolArg("-listen", false)) - LogPrintf("AppInit2 : parameter interaction: -proxy set -> setting -listen=0\n"); + LogPrintf("%s: parameter interaction: -proxy set -> setting -listen=0\n", __func__); + // to protect privacy, do not use UPNP when a proxy is set. The user may still specify -listen=1 + // to listen locally, so don't rely on this happening through -listen below. + if (SoftSetBoolArg("-upnp", false)) + LogPrintf("%s: parameter interaction: -proxy set -> setting -upnp=0\n", __func__); // to protect privacy, do not discover addresses by default if (SoftSetBoolArg("-discover", false)) LogPrintf("AppInit2 : parameter interaction: -proxy set -> setting -discover=0\n"); @@ -631,8 +664,9 @@ bool AppInit2(boost::thread_group& threadGroup) if (GetBoolArg("-benchmark", false)) InitWarning(_("Warning: Unsupported argument -benchmark ignored, use -debug=bench.")); - // Checkmempool defaults to true in regtest mode - mempool.setSanityCheck(GetBoolArg("-checkmempool", Params().DefaultCheckMemPool())); + // Checkmempool and checkblockindex default to true in regtest mode + mempool.setSanityCheck(GetBoolArg("-checkmempool", Params().DefaultConsistencyChecks())); + fCheckBlockIndex = GetBoolArg("-checkblockindex", Params().DefaultConsistencyChecks()); Checkpoints::fEnabled = GetBoolArg("-checkpoints", true); // -par=0 means autodetect, but nScriptCheckThreads==0 means no concurrency @@ -653,12 +687,6 @@ bool AppInit2(boost::thread_group& threadGroup) if (nConnectTimeout <= 0) nConnectTimeout = DEFAULT_CONNECT_TIMEOUT; - // Continue to put "/P2SH/" in the coinbase to monitor - // BIP16 support. - // This can be removed eventually... - const char* pszP2SH = "/P2SH/"; - COINBASE_FLAGS << std::vector(pszP2SH, pszP2SH+strlen(pszP2SH)); - // Fee-per-kilobyte amount considered the same as "free" // If you are mining, be careful setting this: // if you set it to zero then @@ -697,21 +725,44 @@ bool AppInit2(boost::thread_group& threadGroup) mapArgs["-paytxfee"], ::minRelayTxFee.ToString())); } } + if (mapArgs.count("-maxtxfee")) + { + CAmount nMaxFee = 0; + if (!ParseMoney(mapArgs["-maxtxfee"], nMaxFee)) + return InitError(strprintf(_("Invalid amount for -maxtxfee=: '%s'"), mapArgs["-maptxfee"])); + if (nMaxFee > nHighTransactionMaxFeeWarning) + InitWarning(_("Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction.")); + maxTxFee = nMaxFee; + if (CFeeRate(maxTxFee, 1000) < ::minRelayTxFee) + { + return InitError(strprintf(_("Invalid amount for -maxtxfee=: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)"), + mapArgs["-maxtxfee"], ::minRelayTxFee.ToString())); + } + } nTxConfirmTarget = GetArg("-txconfirmtarget", 1); bSpendZeroConfChange = GetArg("-spendzeroconfchange", true); fSendFreeTransactions = GetArg("-sendfreetransactions", false); std::string strWalletFile = GetArg("-wallet", "wallet.dat"); + + if (mapArgs.count("-mininput")) + { + if (!ParseMoney(mapArgs["-mininput"], nMinimumInputThreshold)) + return InitError(strprintf(_("Invalid amount for -mininput=: '%s'"), mapArgs["-mininput"])); + } + #endif // ENABLE_WALLET fIsBareMultisigStd = GetArg("-permitbaremultisig", true) != 0; nMaxDatacarrierBytes = GetArg("-datacarriersize", nMaxDatacarrierBytes); + fAlerts = GetBoolArg("-alerts", DEFAULT_ALERTS); + // ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log // Sanity check if (!InitSanityCheck()) - return InitError(_("Initialization sanity check failed. Bitcoin Core is shutting down.")); + return InitError(_("Initialization sanity check failed. Hypercoin Core is shutting down.")); std::string strDataDir = GetDataDir().string(); #ifdef ENABLE_WALLET @@ -725,14 +776,14 @@ bool AppInit2(boost::thread_group& threadGroup) if (file) fclose(file); static boost::interprocess::file_lock lock(pathLockFile.string().c_str()); if (!lock.try_lock()) - return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running."), strDataDir)); + return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running."), strDataDir)); #ifndef WIN32 CreatePidFile(GetPidFile(), getpid()); #endif if (GetBoolArg("-shrinkdebugfile", !fDebug)) ShrinkDebugFile(); LogPrintf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"); - LogPrintf("Bitcoin version %s (%s)\n", FormatFullVersion(), CLIENT_DATE); + LogPrintf("Hypercoin version %s (%s)\n", FormatFullVersion(), CLIENT_DATE); LogPrintf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION)); #ifdef ENABLE_WALLET LogPrintf("Using BerkeleyDB version %s\n", DbEnv::version(0, 0, 0)); @@ -764,6 +815,10 @@ bool AppInit2(boost::thread_group& threadGroup) int64_t nStart; +#if defined(USE_SSE2) + scrypt_detect_sse2(); +#endif + // ********************************************************* Step 5: verify wallet database integrity #ifdef ENABLE_WALLET if (!fDisableWallet) { @@ -971,11 +1026,13 @@ bool AppInit2(boost::thread_group& threadGroup) UnloadBlockIndex(); delete pcoinsTip; delete pcoinsdbview; + delete pcoinscatcher; delete pblocktree; pblocktree = new CBlockTreeDB(nBlockTreeDBCache, false, fReindex); pcoinsdbview = new CCoinsViewDB(nCoinDBCache, false, fReindex); - pcoinsTip = new CCoinsViewCache(pcoinsdbview); + pcoinscatcher = new CCoinsViewErrorCatcher(pcoinsdbview); + pcoinsTip = new CCoinsViewCache(pcoinscatcher); if (fReindex) pblocktree->WriteReindexing(true); @@ -1094,10 +1151,10 @@ bool AppInit2(boost::thread_group& threadGroup) InitWarning(msg); } else if (nLoadWalletRet == DB_TOO_NEW) - strErrors << _("Error loading wallet.dat: Wallet requires newer version of Bitcoin Core") << "\n"; + strErrors << _("Error loading wallet.dat: Wallet requires newer version of Hypercoin Core") << "\n"; else if (nLoadWalletRet == DB_NEED_REWRITE) { - strErrors << _("Wallet needed to be rewritten: restart Bitcoin Core to complete") << "\n"; + strErrors << _("Wallet needed to be rewritten: restart Hypercoin Core to complete") << "\n"; LogPrintf("%s", strErrors.str()); return InitError(strErrors.str()); } @@ -1207,6 +1264,11 @@ bool AppInit2(boost::thread_group& threadGroup) vImportFiles.push_back(strFile); } threadGroup.create_thread(boost::bind(&ThreadImport, vImportFiles)); + if (chainActive.Tip() == NULL) { + LogPrintf("Waiting for genesis block to be imported...\n"); + while (!fRequestShutdown && chainActive.Tip() == NULL) + MilliSleep(10); + } // ********************************************************* Step 10: start node diff --git a/src/json/json_spirit_reader_template.h b/src/json/json_spirit_reader_template.h index 46f5892f62dd1..47e3c1ca84389 100644 --- a/src/json/json_spirit_reader_template.h +++ b/src/json/json_spirit_reader_template.h @@ -521,12 +521,11 @@ namespace json_spirit const spirit_namespace::parse_info< Iter_type > info = spirit_namespace::parse( begin, end, - Json_grammer< Value_type, Iter_type >( semantic_actions ), + Json_grammer< Value_type, Iter_type >( semantic_actions ) >> spirit_namespace::end_p, spirit_namespace::space_p ); if( !info.hit ) { - assert( false ); // in theory exception should already have been thrown throw_error( info.stop, "error" ); } @@ -570,7 +569,8 @@ namespace json_spirit { typename String_type::const_iterator begin = s.begin(); - return read_range( begin, s.end(), value ); + bool success = read_range( begin, s.end(), value ); + return success && begin == s.end(); } template< class Istream_type > diff --git a/src/leveldb/util/env_win.cc b/src/leveldb/util/env_win.cc index ef2ecae830662..e11a96b791871 100644 --- a/src/leveldb/util/env_win.cc +++ b/src/leveldb/util/env_win.cc @@ -103,39 +103,20 @@ class Win32RandomAccessFile : public RandomAccessFile DISALLOW_COPY_AND_ASSIGN(Win32RandomAccessFile); }; -class Win32MapFile : public WritableFile +class Win32WritableFile : public WritableFile { public: - Win32MapFile(const std::string& fname); + Win32WritableFile(const std::string& fname); + ~Win32WritableFile(); - ~Win32MapFile(); virtual Status Append(const Slice& data); virtual Status Close(); virtual Status Flush(); virtual Status Sync(); BOOL isEnable(); private: - std::string _filename; - HANDLE _hFile; - size_t _page_size; - size_t _map_size; // How much extra memory to map at a time - char* _base; // The mapped region - HANDLE _base_handle; - char* _limit; // Limit of the mapped region - char* _dst; // Where to write next (in range [base_,limit_]) - char* _last_sync; // Where have we synced up to - uint64_t _file_offset; // Offset of base_ in file - //LARGE_INTEGER file_offset_; - // Have we done an munmap of unsynced data? - bool _pending_sync; - - // Roundup x to a multiple of y - static size_t _Roundup(size_t x, size_t y); - size_t _TruncateToPageBoundary(size_t s); - bool _UnmapCurrentRegion(); - bool _MapNewRegion(); - DISALLOW_COPY_AND_ASSIGN(Win32MapFile); - BOOL _Init(LPCWSTR Path); + std::string filename_; + ::HANDLE _hFile; }; class Win32FileLock : public FileLock @@ -442,202 +423,63 @@ void Win32RandomAccessFile::_CleanUp() } } -size_t Win32MapFile::_Roundup( size_t x, size_t y ) +Win32WritableFile::Win32WritableFile(const std::string& fname) + : filename_(fname) { - return ((x + y - 1) / y) * y; + std::wstring path; + ToWidePath(fname, path); + DWORD Flag = PathFileExistsW(path.c_str()) ? OPEN_EXISTING : CREATE_ALWAYS; + _hFile = CreateFileW(path.c_str(), + GENERIC_READ | GENERIC_WRITE, + FILE_SHARE_READ|FILE_SHARE_DELETE|FILE_SHARE_WRITE, + NULL, + Flag, + FILE_ATTRIBUTE_NORMAL, + NULL); + // CreateFileW returns INVALID_HANDLE_VALUE in case of error, always check isEnable() before use } -size_t Win32MapFile::_TruncateToPageBoundary( size_t s ) +Win32WritableFile::~Win32WritableFile() { - s -= (s & (_page_size - 1)); - assert((s % _page_size) == 0); - return s; + if (_hFile != INVALID_HANDLE_VALUE) + Close(); } -bool Win32MapFile::_UnmapCurrentRegion() +Status Win32WritableFile::Append(const Slice& data) { - bool result = true; - if (_base != NULL) { - if (_last_sync < _limit) { - // Defer syncing this data until next Sync() call, if any - _pending_sync = true; - } - if (!UnmapViewOfFile(_base) || !CloseHandle(_base_handle)) - result = false; - _file_offset += _limit - _base; - _base = NULL; - _base_handle = NULL; - _limit = NULL; - _last_sync = NULL; - _dst = NULL; - // Increase the amount we map the next time, but capped at 1MB - if (_map_size < (1<<20)) { - _map_size *= 2; - } + DWORD r = 0; + if (!WriteFile(_hFile, data.data(), data.size(), &r, NULL) || r != data.size()) { + return Status::IOError("Win32WritableFile.Append::WriteFile: "+filename_, Win32::GetLastErrSz()); } - return result; -} - -bool Win32MapFile::_MapNewRegion() -{ - assert(_base == NULL); - //LONG newSizeHigh = (LONG)((file_offset_ + map_size_) >> 32); - //LONG newSizeLow = (LONG)((file_offset_ + map_size_) & 0xFFFFFFFF); - DWORD off_hi = (DWORD)(_file_offset >> 32); - DWORD off_lo = (DWORD)(_file_offset & 0xFFFFFFFF); - LARGE_INTEGER newSize; - newSize.QuadPart = _file_offset + _map_size; - SetFilePointerEx(_hFile, newSize, NULL, FILE_BEGIN); - SetEndOfFile(_hFile); - - _base_handle = CreateFileMappingA( - _hFile, - NULL, - PAGE_READWRITE, - 0, - 0, - 0); - if (_base_handle != NULL) { - _base = (char*) MapViewOfFile(_base_handle, - FILE_MAP_ALL_ACCESS, - off_hi, - off_lo, - _map_size); - if (_base != NULL) { - _limit = _base + _map_size; - _dst = _base; - _last_sync = _base; - return true; - } - } - return false; + return Status::OK(); } -Win32MapFile::Win32MapFile( const std::string& fname) : - _filename(fname), - _hFile(NULL), - _page_size(Win32::g_PageSize), - _map_size(_Roundup(65536, Win32::g_PageSize)), - _base(NULL), - _base_handle(NULL), - _limit(NULL), - _dst(NULL), - _last_sync(NULL), - _file_offset(0), - _pending_sync(false) +Status Win32WritableFile::Close() { - std::wstring path; - ToWidePath(fname, path); - _Init(path.c_str()); - assert((Win32::g_PageSize & (Win32::g_PageSize - 1)) == 0); -} - -Status Win32MapFile::Append( const Slice& data ) -{ - const char* src = data.data(); - size_t left = data.size(); - Status s; - while (left > 0) { - assert(_base <= _dst); - assert(_dst <= _limit); - size_t avail = _limit - _dst; - if (avail == 0) { - if (!_UnmapCurrentRegion() || - !_MapNewRegion()) { - return Status::IOError("WinMmapFile.Append::UnmapCurrentRegion or MapNewRegion: ", Win32::GetLastErrSz()); - } - } - size_t n = (left <= avail) ? left : avail; - memcpy(_dst, src, n); - _dst += n; - src += n; - left -= n; - } - return s; -} - -Status Win32MapFile::Close() -{ - Status s; - size_t unused = _limit - _dst; - if (!_UnmapCurrentRegion()) { - s = Status::IOError("WinMmapFile.Close::UnmapCurrentRegion: ",Win32::GetLastErrSz()); - } else if (unused > 0) { - // Trim the extra space at the end of the file - LARGE_INTEGER newSize; - newSize.QuadPart = _file_offset - unused; - if (!SetFilePointerEx(_hFile, newSize, NULL, FILE_BEGIN)) { - s = Status::IOError("WinMmapFile.Close::SetFilePointer: ",Win32::GetLastErrSz()); - } else - SetEndOfFile(_hFile); - } if (!CloseHandle(_hFile)) { - if (s.ok()) { - s = Status::IOError("WinMmapFile.Close::CloseHandle: ", Win32::GetLastErrSz()); - } + return Status::IOError("Win32WritableFile.Close::CloseHandle: "+filename_, Win32::GetLastErrSz()); } _hFile = INVALID_HANDLE_VALUE; - _base = NULL; - _base_handle = NULL; - _limit = NULL; - - return s; -} - -Status Win32MapFile::Sync() -{ - Status s; - if (_pending_sync) { - // Some unmapped data was not synced - _pending_sync = false; - if (!FlushFileBuffers(_hFile)) { - s = Status::IOError("WinMmapFile.Sync::FlushFileBuffers: ",Win32::GetLastErrSz()); - } - } - if (_dst > _last_sync) { - // Find the beginnings of the pages that contain the first and last - // bytes to be synced. - size_t p1 = _TruncateToPageBoundary(_last_sync - _base); - size_t p2 = _TruncateToPageBoundary(_dst - _base - 1); - _last_sync = _dst; - if (!FlushViewOfFile(_base + p1, p2 - p1 + _page_size)) { - s = Status::IOError("WinMmapFile.Sync::FlushViewOfFile: ",Win32::GetLastErrSz()); - } - } - return s; + return Status::OK(); } -Status Win32MapFile::Flush() +Status Win32WritableFile::Flush() { + // Nothing to do here, there are no application-side buffers return Status::OK(); } -Win32MapFile::~Win32MapFile() +Status Win32WritableFile::Sync() { - if (_hFile != INVALID_HANDLE_VALUE) { - Win32MapFile::Close(); + if (!FlushFileBuffers(_hFile)) { + return Status::IOError("Win32WritableFile.Sync::FlushFileBuffers "+filename_, Win32::GetLastErrSz()); } + return Status::OK(); } -BOOL Win32MapFile::_Init( LPCWSTR Path ) -{ - DWORD Flag = PathFileExistsW(Path) ? OPEN_EXISTING : CREATE_ALWAYS; - _hFile = CreateFileW(Path, - GENERIC_READ | GENERIC_WRITE, - FILE_SHARE_READ|FILE_SHARE_DELETE|FILE_SHARE_WRITE, - NULL, - Flag, - FILE_ATTRIBUTE_NORMAL, - NULL); - if(!_hFile || _hFile == INVALID_HANDLE_VALUE) - return FALSE; - else - return TRUE; -} - -BOOL Win32MapFile::isEnable() +BOOL Win32WritableFile::isEnable() { - return _hFile ? TRUE : FALSE; + return _hFile != INVALID_HANDLE_VALUE; } Win32FileLock::Win32FileLock( const std::string& fname ) : @@ -981,7 +823,7 @@ Status Win32Env::NewLogger( const std::string& fname, Logger** result ) { Status sRet; std::string path = fname; - Win32MapFile* pMapFile = new Win32MapFile(ModifyPath(path)); + Win32WritableFile* pMapFile = new Win32WritableFile(ModifyPath(path)); if(!pMapFile->isEnable()){ delete pMapFile; *result = NULL; @@ -995,7 +837,7 @@ Status Win32Env::NewWritableFile( const std::string& fname, WritableFile** resul { Status sRet; std::string path = fname; - Win32MapFile* pFile = new Win32MapFile(ModifyPath(path)); + Win32WritableFile* pFile = new Win32WritableFile(ModifyPath(path)); if(!pFile->isEnable()){ *result = NULL; sRet = Status::IOError(fname,Win32::GetLastErrSz()); diff --git a/src/leveldbwrapper.cpp b/src/leveldbwrapper.cpp index 70980fede5ae0..1f674a91df02c 100644 --- a/src/leveldbwrapper.cpp +++ b/src/leveldbwrapper.cpp @@ -58,7 +58,8 @@ CLevelDBWrapper::CLevelDBWrapper(const boost::filesystem::path& path, size_t nCa } else { if (fWipe) { LogPrintf("Wiping LevelDB in %s\n", path.string()); - leveldb::DestroyDB(path.string(), options); + leveldb::Status result = leveldb::DestroyDB(path.string(), options); + HandleError(result); } TryCreateDirectory(path); LogPrintf("Opening LevelDB in %s\n", path.string()); diff --git a/src/main.cpp b/src/main.cpp index 9e1c41ada7c9b..bf9cceda8919d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -31,7 +31,7 @@ using namespace boost; using namespace std; #if defined(NDEBUG) -# error "Bitcoin cannot be compiled without assertions." +# error "Hypercoin cannot be compiled without assertions." #endif /** @@ -51,11 +51,12 @@ bool fImporting = false; bool fReindex = false; bool fTxIndex = false; bool fIsBareMultisigStd = true; +bool fCheckBlockIndex = false; unsigned int nCoinCacheSize = 5000; - +bool fAlerts = DEFAULT_ALERTS; /** Fees smaller than this (in satoshi) are considered zero fee (for relaying and mining) */ -CFeeRate minRelayTxFee = CFeeRate(1000); +CFeeRate minRelayTxFee = CFeeRate(DEFAULT_TX_FEE); CTxMemPool mempool(::minRelayTxFee); @@ -67,17 +68,19 @@ map mapOrphanTransactions; map > mapOrphanTransactionsByPrev; void EraseOrphansFor(NodeId peer); +static void CheckBlockIndex(); + /** Constant stuff for coinbase transactions we create: */ CScript COINBASE_FLAGS; -const string strMessageMagic = "Bitcoin Signed Message:\n"; +const string strMessageMagic = "Hypercoin Signed Message:\n"; // Internal stuff namespace { struct CBlockIndexWorkComparator { - bool operator()(CBlockIndex *pa, CBlockIndex *pb) { + bool operator()(CBlockIndex *pa, CBlockIndex *pb) const { // First sort by most total work, ... if (pa->nChainWork > pb->nChainWork) return false; if (pa->nChainWork < pb->nChainWork) return true; @@ -99,8 +102,8 @@ namespace { CBlockIndex *pindexBestInvalid; /** - * The set of all CBlockIndex entries with BLOCK_VALID_TRANSACTIONS or better that are at least - * as good as our current tip. Entries may be failed, though. + * The set of all CBlockIndex entries with BLOCK_VALID_TRANSACTIONS (for itself and all ancestors) and + * as good as our current tip or better. Entries may be failed, though. */ set setBlockIndexCandidates; /** Number of nodes with fSyncStarted. */ @@ -131,9 +134,14 @@ namespace { uint256 hash; CBlockIndex *pindex; //! Optional. int64_t nTime; //! Time of "getdata" request in microseconds. + int nValidatedQueuedBefore; //! Number of blocks queued with validated headers (globally) at the time this one is requested. + bool fValidatedHeaders; //! Whether this block has validated headers at the time of request. }; map::iterator> > mapBlocksInFlight; + /** Number of blocks in flight with validated headers. */ + int nQueuedValidatedHeaders = 0; + /** Number of preferable block download peers. */ int nPreferredDownload = 0; @@ -226,6 +234,10 @@ struct CBlockReject { * and we're no longer holding the node's locks. */ struct CNodeState { + //! The peer's address + CService address; + //! Whether we have a fully established connection. + bool fCurrentlyConnected; //! Accumulated misbehaviour score for this peer. int nMisbehavior; //! Whether this peer should be disconnected and banned (unless whitelisted). @@ -250,6 +262,7 @@ struct CNodeState { bool fPreferredDownload; CNodeState() { + fCurrentlyConnected = false; nMisbehavior = 0; fShouldBan = false; pindexBestKnownBlock = NULL; @@ -293,6 +306,7 @@ void InitializeNode(NodeId nodeid, const CNode *pnode) { LOCK(cs_main); CNodeState &state = mapNodeState.insert(std::make_pair(nodeid, CNodeState())).first->second; state.name = pnode->addrName; + state.address = pnode->addr; } void FinalizeNode(NodeId nodeid) { @@ -302,6 +316,10 @@ void FinalizeNode(NodeId nodeid) { if (state->fSyncStarted) nSyncStarted--; + if (state->nMisbehavior == 0 && state->fCurrentlyConnected) { + AddressCurrentlyConnected(state->address); + } + BOOST_FOREACH(const QueuedBlock& entry, state->vBlocksInFlight) mapBlocksInFlight.erase(entry.hash); EraseOrphansFor(nodeid); @@ -315,6 +333,7 @@ void MarkBlockAsReceived(const uint256& hash) { map::iterator> >::iterator itInFlight = mapBlocksInFlight.find(hash); if (itInFlight != mapBlocksInFlight.end()) { CNodeState *state = State(itInFlight->second.first); + nQueuedValidatedHeaders -= itInFlight->second.second->fValidatedHeaders; state->vBlocksInFlight.erase(itInFlight->second.second); state->nBlocksInFlight--; state->nStallingSince = 0; @@ -330,7 +349,8 @@ void MarkBlockAsInFlight(NodeId nodeid, const uint256& hash, CBlockIndex *pindex // Make sure it's not listed somewhere already. MarkBlockAsReceived(hash); - QueuedBlock newentry = {hash, pindex, GetTimeMicros()}; + QueuedBlock newentry = {hash, pindex, GetTimeMicros(), nQueuedValidatedHeaders, pindex != NULL}; + nQueuedValidatedHeaders += newentry.fValidatedHeaders; list::iterator it = state->vBlocksInFlight.insert(state->vBlocksInFlight.end(), newentry); state->nBlocksInFlight++; mapBlocksInFlight[hash] = std::make_pair(nodeid, it); @@ -442,6 +462,10 @@ void FindNextBlocksToDownload(NodeId nodeid, unsigned int count, std::vectorIsValid(BLOCK_VALID_TREE)) { + // We consider the chain that this peer is on invalid. + return; + } if (pindex->nStatus & BLOCK_HAVE_DATA) { if (pindex->nChainTx) state->pindexLastCommonBlock = pindex; @@ -889,6 +913,15 @@ CAmount GetMinRelayFee(const CTransaction& tx, unsigned int nBytes, bool fAllowF return 0; } + // Hypercoin + // To limit dust spam, add 1000 byte penalty for each output smaller than DUST_THRESHOLD + BOOST_FOREACH(const CTxOut& txout, tx.vout) + if (txout.nValue < DUST_THRESHOLD) + { + nBytes += 1000; + fAllowFree = false; + } + CAmount nMinFee = ::minRelayTxFee.GetFee(nBytes); if (fAllowFree) @@ -897,7 +930,7 @@ CAmount GetMinRelayFee(const CTransaction& tx, unsigned int nBytes, bool fAllowF // * If we are relaying we allow transactions up to DEFAULT_BLOCK_PRIORITY_SIZE - 1000 // to be considered to fall into this category. We don't want to encourage sending // multiple transactions instead of one big transaction to avoid fees. - if (nBytes < (DEFAULT_BLOCK_PRIORITY_SIZE - 1000)) + if (nBytes < (DEFAULT_BLOCK_PRIORITY_SIZE - 5000)) nMinFee = 0; } @@ -1018,7 +1051,12 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa hash.ToString(), nFees, txMinFee), REJECT_INSUFFICIENTFEE, "insufficient fee"); - // Continuously rate-limit free (really, very-low-fee)transactions + // Require that free transactions have sufficient priority to be mined in the next block. + if (GetBoolArg("-relaypriority", true) && nFees < ::minRelayTxFee.GetFee(nSize) && !AllowFree(view.GetPriority(tx, chainActive.Height() + 1))) { + return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "insufficient priority"); + } + + // Continuously rate-limit free (really, very-low-fee) transactions // This mitigates 'penny-flooding' -- sending thousands of free transactions just to // be annoying or make others' transactions take longer to confirm. if (fLimitFree && nFees < ::minRelayTxFee.GetFee(nSize)) @@ -1037,7 +1075,7 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa // At default rate it would take over a month to fill 1GB if (dFreeCount >= GetArg("-limitfreerelay", 15)*10*1000) return state.DoS(0, error("AcceptToMemoryPool : free transaction rejected by rate limiter"), - REJECT_INSUFFICIENTFEE, "insufficient priority"); + REJECT_INSUFFICIENTFEE, "rate limited free transaction"); LogPrint("mempool", "Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize); dFreeCount += nSize; } @@ -1053,6 +1091,21 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa { return error("AcceptToMemoryPool: : ConnectInputs failed %s", hash.ToString()); } + + // Check again against just the consensus-critical mandatory script + // verification flags, in case of bugs in the standard flags that cause + // transactions to pass as valid when they're actually invalid. For + // instance the STRICTENC flag was incorrectly allowing certain + // CHECKSIG NOT scripts to pass, even though they were invalid. + // + // There is a similar check in CreateNewBlock() to prevent creating + // invalid blocks, however allowing such transactions into the mempool + // can be exploited as a DoS attack. + if (!CheckInputs(tx, state, view, true, MANDATORY_SCRIPT_VERIFY_FLAGS, true)) + { + return error("AcceptToMemoryPool: : BUG! PLEASE REPORT THIS! ConnectInputs failed against MANDATORY but not STANDARD flags %s", hash.ToString()); + } + // Store transaction in memory pool.addUnchecked(hash, entry); } @@ -1066,45 +1119,45 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa bool GetTransaction(const uint256 &hash, CTransaction &txOut, uint256 &hashBlock, bool fAllowSlow) { CBlockIndex *pindexSlow = NULL; + + LOCK(cs_main); + + if (mempool.lookup(hash, txOut)) { - LOCK(cs_main); - { - if (mempool.lookup(hash, txOut)) - { - return true; - } - } + return true; + } - if (fTxIndex) { - CDiskTxPos postx; - if (pblocktree->ReadTxIndex(hash, postx)) { - CAutoFile file(OpenBlockFile(postx, true), SER_DISK, CLIENT_VERSION); - CBlockHeader header; - try { - file >> header; - fseek(file.Get(), postx.nTxOffset, SEEK_CUR); - file >> txOut; - } catch (std::exception &e) { - return error("%s : Deserialize or I/O error - %s", __func__, e.what()); - } - hashBlock = header.GetHash(); - if (txOut.GetHash() != hash) - return error("%s : txid mismatch", __func__); - return true; + if (fTxIndex) { + CDiskTxPos postx; + if (pblocktree->ReadTxIndex(hash, postx)) { + CAutoFile file(OpenBlockFile(postx, true), SER_DISK, CLIENT_VERSION); + if (file.IsNull()) + return error("%s: OpenBlockFile failed", __func__); + CBlockHeader header; + try { + file >> header; + fseek(file.Get(), postx.nTxOffset, SEEK_CUR); + file >> txOut; + } catch (std::exception &e) { + return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } + hashBlock = header.GetHash(); + if (txOut.GetHash() != hash) + return error("%s : txid mismatch", __func__); + return true; } + } - if (fAllowSlow) { // use coin database to locate block that contains transaction, and scan it - int nHeight = -1; - { - CCoinsViewCache &view = *pcoinsTip; - const CCoins* coins = view.AccessCoins(hash); - if (coins) - nHeight = coins->nHeight; - } - if (nHeight > 0) - pindexSlow = chainActive[nHeight]; + if (fAllowSlow) { // use coin database to locate block that contains transaction, and scan it + int nHeight = -1; + { + CCoinsViewCache &view = *pcoinsTip; + const CCoins* coins = view.AccessCoins(hash); + if (coins) + nHeight = coins->nHeight; } + if (nHeight > 0) + pindexSlow = chainActive[nHeight]; } if (pindexSlow) { @@ -1172,7 +1225,7 @@ bool ReadBlockFromDisk(CBlock& block, const CDiskBlockPos& pos) } // Check the header - if (!CheckProofOfWork(block.GetHash(), block.nBits)) + if (!CheckProofOfWork(block.GetPoWHash(), block.nBits)) return error("ReadBlockFromDisk : Errors in block header"); return true; @@ -1189,7 +1242,7 @@ bool ReadBlockFromDisk(CBlock& block, const CBlockIndex* pindex) CAmount GetBlockValue(int nHeight, const CAmount& nFees) { - CAmount nSubsidy = 50 * COIN; + CAmount nSubsidy = 400 * COIN; int halvings = nHeight / Params().SubsidyHalvingInterval(); // Force block reward to zero when right shift is undefined. @@ -1204,6 +1257,7 @@ CAmount GetBlockValue(int nHeight, const CAmount& nFees) bool IsInitialBlockDownload() { + const CChainParams& chainParams = Params(); LOCK(cs_main); if (fImporting || fReindex || chainActive.Height() < Checkpoints::GetTotalBlocksEstimate()) return true; @@ -1211,7 +1265,7 @@ bool IsInitialBlockDownload() if (lockIBDState) return false; bool state = (chainActive.Height() < pindexBestHeader->nHeight - 24 * 6 || - pindexBestHeader->GetBlockTime() < GetTime() - 24 * 60 * 60); + pindexBestHeader->GetBlockTime() < GetTime() - chainParams.MaxTipAge()); if (!state) lockIBDState = true; return state; @@ -1367,8 +1421,8 @@ void UpdateCoins(const CTransaction& tx, CValidationState &state, CCoinsViewCach bool CScriptCheck::operator()() { const CScript &scriptSig = ptxTo->vin[nIn].scriptSig; - if (!VerifyScript(scriptSig, scriptPubKey, nFlags, CachingSignatureChecker(*ptxTo, nIn, cacheStore), &error)) { - return ::error("CScriptCheck() : %s:%d VerifySignature failed: %s", ptxTo->GetHash().ToString(), nIn, ScriptErrorString(error)); + if (!VerifyScript(scriptSig, scriptPubKey, nFlags, CachingTransactionSignatureChecker(ptxTo, nIn, cacheStore), &error)) { + return ::error("CScriptCheck(): %s:%d VerifySignature failed: %s", ptxTo->GetHash().ToString(), nIn, ScriptErrorString(error)); } return true; } @@ -1592,7 +1646,7 @@ bool FindUndoPos(CValidationState &state, int nFile, CDiskBlockPos &pos, unsigne static CCheckQueue scriptcheckqueue(128); void ThreadScriptCheck() { - RenameThread("bitcoin-scriptch"); + RenameThread("hypercoin-scriptch"); scriptcheckqueue.Thread(); } @@ -1630,13 +1684,10 @@ bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pin // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information. // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool // already refuses previously-known transaction ids entirely. - // This rule was originally applied all blocks whose timestamp was after March 15, 2012, 0:00 UTC. - // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the - // two in the chain that violate it. This prevents exploiting the issue against nodes in their - // initial block download. - bool fEnforceBIP30 = (!pindex->phashBlock) || // Enforce on CreateNewBlock invocations which don't have a hash. - !((pindex->nHeight==91842 && pindex->GetBlockHash() == uint256("0x00000000000a4d0a398161ffc163c503763b1f4360639393e0e4c8e300e0caec")) || - (pindex->nHeight==91880 && pindex->GetBlockHash() == uint256("0x00000000000743f190a18c5577a3c2d2a1f610ae9601ac046a38084ccb7cd721"))); + // This rule was originally applied all blocks whose timestamp was after October 1, 2012, 0:00 UTC. + // Now that the whole chain is irreversibly beyond that time it is applied to all blocks, + // this prevents exploiting the issue against nodes in their initial block download. + bool fEnforceBIP30 = true; if (fEnforceBIP30) { BOOST_FOREACH(const CTransaction& tx, block.vtx) { const CCoins* coins = view.AccessCoins(tx.GetHash()); @@ -1646,12 +1697,24 @@ bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pin } } - // BIP16 didn't become active until Apr 1 2012 - int64_t nBIP16SwitchTime = 1333238400; + // BIP16 didn't become active until Oct 1 2012 + int64_t nBIP16SwitchTime = 1349049600; bool fStrictPayToScriptHash = (pindex->GetBlockTime() >= nBIP16SwitchTime); unsigned int flags = fStrictPayToScriptHash ? SCRIPT_VERIFY_P2SH : SCRIPT_VERIFY_NONE; + // Start enforcing the DERSIG (BIP66) rules, for block.nVersion=3 blocks, + // when 75% of the network has upgraded: + if (block.nVersion >= 3 && CBlockIndex::IsSuperMajority(3, pindex->pprev, Params().EnforceBlockUpgradeMajority())) { + flags |= SCRIPT_VERIFY_DERSIG; + } + + // Start enforcing CHECKLOCKTIMEVERIFY, (BIP65) for block.nVersion=4 + // blocks, when 75% of the network has upgraded: + if (block.nVersion >= 4 && CBlockIndex::IsSuperMajority(4, pindex->pprev, Params().EnforceBlockUpgradeMajority())) { + flags |= SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY; + } + CBlockUndo blockundo; CCheckQueueControl control(fScriptChecks && nScriptCheckThreads ? &scriptcheckqueue : NULL); @@ -1779,6 +1842,7 @@ enum FlushStateMode { bool static FlushStateToDisk(CValidationState &state, FlushStateMode mode) { LOCK(cs_main); static int64_t nLastWrite = 0; + try { if ((mode == FLUSH_STATE_ALWAYS) || ((mode == FLUSH_STATE_PERIODIC || mode == FLUSH_STATE_IF_NEEDED) && pcoinsTip->GetCacheSize() > nCoinCacheSize) || (mode == FLUSH_STATE_PERIODIC && GetTimeMicros() > nLastWrite + DATABASE_WRITE_INTERVAL * 1000000)) { @@ -1819,6 +1883,9 @@ bool static FlushStateToDisk(CValidationState &state, FlushStateMode mode) { } nLastWrite = GetTimeMicros(); } + } catch (const std::runtime_error& e) { + return state.Abort(std::string("System error while flushing: ") + e.what()); + } return true; } @@ -2143,6 +2210,7 @@ bool ActivateBestChain(CValidationState &state, CBlock *pblock) { uiInterface.NotifyBlockTip(hashNewTip); } } while(pindexMostWork != chainActive.Tip()); + CheckBlockIndex(); // Write changes periodically to disk, after relay. if (!FlushStateToDisk(state, FLUSH_STATE_PERIODIC)) { @@ -2176,8 +2244,8 @@ bool InvalidateBlock(CValidationState& state, CBlockIndex *pindex) { // add them again. BlockMap::iterator it = mapBlockIndex.begin(); while (it != mapBlockIndex.end()) { - if (it->second->IsValid(BLOCK_VALID_TRANSACTIONS) && it->second->nChainTx && setBlockIndexCandidates.value_comp()(chainActive.Tip(), it->second)) { - setBlockIndexCandidates.insert(pindex); + if (it->second->IsValid(BLOCK_VALID_TRANSACTIONS) && it->second->nChainTx && !setBlockIndexCandidates.value_comp()(it->second, chainActive.Tip())) { + setBlockIndexCandidates.insert(it->second); } it++; } @@ -2263,10 +2331,6 @@ bool ReceivedBlockTransactions(const CBlock &block, CValidationState& state, CBl pindexNew->nUndoPos = 0; pindexNew->nStatus |= BLOCK_HAVE_DATA; pindexNew->RaiseValidity(BLOCK_VALID_TRANSACTIONS); - { - LOCK(cs_nBlockSequenceId); - pindexNew->nSequenceId = nBlockSequenceId++; - } setDirtyBlockIndex.insert(pindexNew); if (pindexNew->pprev == NULL || pindexNew->pprev->nChainTx) { @@ -2279,7 +2343,13 @@ bool ReceivedBlockTransactions(const CBlock &block, CValidationState& state, CBl CBlockIndex *pindex = queue.front(); queue.pop_front(); pindex->nChainTx = (pindex->pprev ? pindex->pprev->nChainTx : 0) + pindex->nTx; - setBlockIndexCandidates.insert(pindex); + { + LOCK(cs_nBlockSequenceId); + pindex->nSequenceId = nBlockSequenceId++; + } + if (chainActive.Tip() == NULL || !setBlockIndexCandidates.value_comp()(pindex, chainActive.Tip())) { + setBlockIndexCandidates.insert(pindex); + } std::pair::iterator, std::multimap::iterator> range = mapBlocksUnlinked.equal_range(pindex); while (range.first != range.second) { std::multimap::iterator it = range.first; @@ -2320,8 +2390,11 @@ bool FindBlockPos(CValidationState &state, CDiskBlockPos &pos, unsigned int nAdd } nLastBlockFile = nFile; - vinfoBlockFile[nFile].nSize += nAddSize; vinfoBlockFile[nFile].AddBlock(nHeight, nTime); + if (fKnown) + vinfoBlockFile[nFile].nSize = std::max(pos.nPos + nAddSize, vinfoBlockFile[nFile].nSize); + else + vinfoBlockFile[nFile].nSize += nAddSize; if (!fKnown) { unsigned int nOldChunks = (pos.nPos + BLOCKFILE_CHUNK_SIZE - 1) / BLOCKFILE_CHUNK_SIZE; @@ -2376,7 +2449,7 @@ bool FindUndoPos(CValidationState &state, int nFile, CDiskBlockPos &pos, unsigne bool CheckBlockHeader(const CBlockHeader& block, CValidationState& state, bool fCheckPOW) { // Check proof of work matches claimed amount - if (fCheckPOW && !CheckProofOfWork(block.GetHash(), block.nBits)) + if (fCheckPOW && !CheckProofOfWork(block.GetPoWHash(), block.nBits)) return state.DoS(50, error("CheckBlockHeader() : proof of work failed"), REJECT_INVALID, "high-hash"); @@ -2479,14 +2552,42 @@ bool ContextualCheckBlockHeader(const CBlockHeader& block, CValidationState& sta if (pcheckpoint && nHeight < pcheckpoint->nHeight) return state.DoS(100, error("%s : forked chain older than last checkpoint (height %d)", __func__, nHeight)); - // Reject block.nVersion=1 blocks when 95% (75% on testnet) of the network has upgraded: - if (block.nVersion < 2 && - CBlockIndex::IsSuperMajority(2, pindexPrev, Params().RejectBlockOutdatedMajority())) + // Hypercoin: Reject block.nVersion=1 blocks (mainnet >= 710000, testnet >= 400000, regtest uses supermajority) + bool enforceV2 = false; + if (block.nVersion < 2) + { + if (Params().EnforceV2AfterHeight() != -1) + { + // Mainnet 710k, Testnet 400k + if (nHeight >= Params().EnforceV2AfterHeight()) + enforceV2 = true; + } + else + { + // Testnet, Regtest and Unittest: use Bitcoin's supermajority rule + if (CBlockIndex::IsSuperMajority(2, pindexPrev, Params().RejectBlockOutdatedMajority())) + enforceV2 = true; + } + } + + if (enforceV2) { return state.Invalid(error("%s : rejected nVersion=1 block", __func__), REJECT_OBSOLETE, "bad-version"); } + // Reject block.nVersion=2 blocks when 95% (75% on testnet) of the network has upgraded: + if (block.nVersion < 3 && CBlockIndex::IsSuperMajority(3, pindexPrev, Params().RejectBlockOutdatedMajority())) + { + return state.Invalid(error("%s : rejected nVersion=2 block", __func__), + REJECT_OBSOLETE, "bad-version"); + } + + // Reject block.nVersion=3 blocks when 95% (75% on testnet) of the network has upgraded: + if (block.nVersion < 4 && CBlockIndex::IsSuperMajority(4, pindexPrev, Params().RejectBlockOutdatedMajority())) + return state.Invalid(error("%s : rejected nVersion=3 block", __func__), + REJECT_OBSOLETE, "bad-version"); + return true; } @@ -2500,10 +2601,27 @@ bool ContextualCheckBlock(const CBlock& block, CValidationState& state, CBlockIn return state.DoS(10, error("%s : contains a non-final transaction", __func__), REJECT_INVALID, "bad-txns-nonfinal"); } + // Hypercoin: (mainnet >= 710000, testnet >= 400000, regtest uses supermajority) // Enforce block.nVersion=2 rule that the coinbase starts with serialized block height // if 750 of the last 1,000 blocks are version 2 or greater (51/100 if testnet): - if (block.nVersion >= 2 && - CBlockIndex::IsSuperMajority(2, pindexPrev, Params().EnforceBlockUpgradeMajority())) + bool checkHeightMismatch = false; + if (block.nVersion >= 2) + { + if (Params().EnforceV2AfterHeight() != -1) + { + // Mainnet 710k, Testnet 400k + if (nHeight >= Params().EnforceV2AfterHeight()) + checkHeightMismatch = true; + } + else + { + // Regtest and Unittest: use Bitcoin's supermajority rule + if (CBlockIndex::IsSuperMajority(2, pindexPrev, Params().EnforceBlockUpgradeMajority())) + checkHeightMismatch = true; + } + } + + if (checkHeightMismatch) { CScript expect = CScript() << nHeight; if (block.vtx[0].vin[0].scriptSig.size() < expect.size() || @@ -2542,6 +2660,8 @@ bool AcceptBlockHeader(const CBlockHeader& block, CValidationState& state, CBloc if (mi == mapBlockIndex.end()) return state.DoS(10, error("%s : prev block not found", __func__), 0, "bad-prevblk"); pindexPrev = (*mi).second; + if (pindexPrev->nStatus & BLOCK_FAILED_MASK) + return state.DoS(100, error("%s : prev block invalid", __func__), REJECT_INVALID, "bad-prevblk"); } if (!ContextualCheckBlockHeader(block, state, pindexPrev)) @@ -2681,6 +2801,7 @@ bool ProcessNewBlock(CValidationState &state, CNode* pfrom, CBlock* pblock, CDis if (pindex && pfrom) { mapBlockSource[pindex->GetBlockHash()] = pfrom->GetId(); } + CheckBlockIndex(); if (!ret) return error("%s : AcceptBlock FAILED", __func__); } @@ -2726,7 +2847,7 @@ bool AbortNode(const std::string &strMessage, const std::string &userMessage) { strMiscWarning = strMessage; LogPrintf("*** %s\n", strMessage); uiInterface.ThreadSafeMessageBox( - userMessage.empty() ? _("Error: A fatal internal error occured, see debug.log for details") : userMessage, + userMessage.empty() ? _("Error: A fatal internal error occurred, see debug.log for details") : userMessage, "", CClientUIInterface::MSG_ERROR); StartShutdown(); return false; @@ -2963,6 +3084,8 @@ bool CVerifyDB::VerifyDB(CCoinsView *coinsview, int nCheckLevel, int nCheckDepth } else nGoodTransactions += block.vtx.size(); } + if (ShutdownRequested()) + return true; } if (pindexFailure) return error("VerifyDB() : *** coin database inconsistencies found (last %i blocks, %i good transactions before that)\n", chainActive.Height() - pindexFailure->nHeight + 1, nGoodTransactions); @@ -3146,6 +3269,149 @@ bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos *dbp) return nLoaded > 0; } +void static CheckBlockIndex() +{ + if (!fCheckBlockIndex) { + return; + } + + LOCK(cs_main); + + // During a reindex, we read the genesis block and call CheckBlockIndex before ActivateBestChain, + // so we have the genesis block in mapBlockIndex but no active chain. (A few of the tests when + // iterating the block tree require that chainActive has been initialized.) + if (chainActive.Height() < 0) { + assert(mapBlockIndex.size() <= 1); + return; + } + + // Build forward-pointing map of the entire block tree. + std::multimap forward; + for (BlockMap::iterator it = mapBlockIndex.begin(); it != mapBlockIndex.end(); it++) { + forward.insert(std::make_pair(it->second->pprev, it->second)); + } + + assert(forward.size() == mapBlockIndex.size()); + + std::pair::iterator,std::multimap::iterator> rangeGenesis = forward.equal_range(NULL); + CBlockIndex *pindex = rangeGenesis.first->second; + rangeGenesis.first++; + assert(rangeGenesis.first == rangeGenesis.second); // There is only one index entry with parent NULL. + + // Iterate over the entire block tree, using depth-first search. + // Along the way, remember whether there are blocks on the path from genesis + // block being explored which are the first to have certain properties. + size_t nNodes = 0; + int nHeight = 0; + CBlockIndex* pindexFirstInvalid = NULL; // Oldest ancestor of pindex which is invalid. + CBlockIndex* pindexFirstMissing = NULL; // Oldest ancestor of pindex which does not have BLOCK_HAVE_DATA. + CBlockIndex* pindexFirstNotTreeValid = NULL; // Oldest ancestor of pindex which does not have BLOCK_VALID_TREE (regardless of being valid or not). + CBlockIndex* pindexFirstNotChainValid = NULL; // Oldest ancestor of pindex which does not have BLOCK_VALID_CHAIN (regardless of being valid or not). + CBlockIndex* pindexFirstNotScriptsValid = NULL; // Oldest ancestor of pindex which does not have BLOCK_VALID_SCRIPTS (regardless of being valid or not). + while (pindex != NULL) { + nNodes++; + if (pindexFirstInvalid == NULL && pindex->nStatus & BLOCK_FAILED_VALID) pindexFirstInvalid = pindex; + if (pindexFirstMissing == NULL && !(pindex->nStatus & BLOCK_HAVE_DATA)) pindexFirstMissing = pindex; + if (pindex->pprev != NULL && pindexFirstNotTreeValid == NULL && (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_TREE) pindexFirstNotTreeValid = pindex; + if (pindex->pprev != NULL && pindexFirstNotChainValid == NULL && (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_CHAIN) pindexFirstNotChainValid = pindex; + if (pindex->pprev != NULL && pindexFirstNotScriptsValid == NULL && (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_SCRIPTS) pindexFirstNotScriptsValid = pindex; + + // Begin: actual consistency checks. + if (pindex->pprev == NULL) { + // Genesis block checks. + assert(pindex->GetBlockHash() == Params().HashGenesisBlock()); // Genesis block's hash must match. + assert(pindex == chainActive.Genesis()); // The current active chain's genesis block must be this block. + } + // HAVE_DATA is equivalent to VALID_TRANSACTIONS and equivalent to nTx > 0 (we stored the number of transactions in the block) + assert(!(pindex->nStatus & BLOCK_HAVE_DATA) == (pindex->nTx == 0)); + assert(((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_TRANSACTIONS) == (pindex->nTx > 0)); + if (pindex->nChainTx == 0) assert(pindex->nSequenceId == 0); // nSequenceId can't be set for blocks that aren't linked + // All parents having data is equivalent to all parents being VALID_TRANSACTIONS, which is equivalent to nChainTx being set. + assert((pindexFirstMissing != NULL) == (pindex->nChainTx == 0)); // nChainTx == 0 is used to signal that all parent block's transaction data is available. + assert(pindex->nHeight == nHeight); // nHeight must be consistent. + assert(pindex->pprev == NULL || pindex->nChainWork >= pindex->pprev->nChainWork); // For every block except the genesis block, the chainwork must be larger than the parent's. + assert(nHeight < 2 || (pindex->pskip && (pindex->pskip->nHeight < nHeight))); // The pskip pointer must point back for all but the first 2 blocks. + assert(pindexFirstNotTreeValid == NULL); // All mapBlockIndex entries must at least be TREE valid + if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_TREE) assert(pindexFirstNotTreeValid == NULL); // TREE valid implies all parents are TREE valid + if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_CHAIN) assert(pindexFirstNotChainValid == NULL); // CHAIN valid implies all parents are CHAIN valid + if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_SCRIPTS) assert(pindexFirstNotScriptsValid == NULL); // SCRIPTS valid implies all parents are SCRIPTS valid + if (pindexFirstInvalid == NULL) { + // Checks for not-invalid blocks. + assert((pindex->nStatus & BLOCK_FAILED_MASK) == 0); // The failed mask cannot be set for blocks without invalid parents. + } + if (!CBlockIndexWorkComparator()(pindex, chainActive.Tip()) && pindexFirstMissing == NULL) { + if (pindexFirstInvalid == NULL) { // If this block sorts at least as good as the current tip and is valid, it must be in setBlockIndexCandidates. + assert(setBlockIndexCandidates.count(pindex)); + } + } else { // If this block sorts worse than the current tip, it cannot be in setBlockIndexCandidates. + assert(setBlockIndexCandidates.count(pindex) == 0); + } + // Check whether this block is in mapBlocksUnlinked. + std::pair::iterator,std::multimap::iterator> rangeUnlinked = mapBlocksUnlinked.equal_range(pindex->pprev); + bool foundInUnlinked = false; + while (rangeUnlinked.first != rangeUnlinked.second) { + assert(rangeUnlinked.first->first == pindex->pprev); + if (rangeUnlinked.first->second == pindex) { + foundInUnlinked = true; + break; + } + rangeUnlinked.first++; + } + if (pindex->pprev && pindex->nStatus & BLOCK_HAVE_DATA && pindexFirstMissing != NULL) { + if (pindexFirstInvalid == NULL) { // If this block has block data available, some parent doesn't, and has no invalid parents, it must be in mapBlocksUnlinked. + assert(foundInUnlinked); + } + } else { // If this block does not have block data available, or all parents do, it cannot be in mapBlocksUnlinked. + assert(!foundInUnlinked); + } + // assert(pindex->GetBlockHash() == pindex->GetBlockHeader().GetHash()); // Perhaps too slow + // End: actual consistency checks. + + // Try descending into the first subnode. + std::pair::iterator,std::multimap::iterator> range = forward.equal_range(pindex); + if (range.first != range.second) { + // A subnode was found. + pindex = range.first->second; + nHeight++; + continue; + } + // This is a leaf node. + // Move upwards until we reach a node of which we have not yet visited the last child. + while (pindex) { + // We are going to either move to a parent or a sibling of pindex. + // If pindex was the first with a certain property, unset the corresponding variable. + if (pindex == pindexFirstInvalid) pindexFirstInvalid = NULL; + if (pindex == pindexFirstMissing) pindexFirstMissing = NULL; + if (pindex == pindexFirstNotTreeValid) pindexFirstNotTreeValid = NULL; + if (pindex == pindexFirstNotChainValid) pindexFirstNotChainValid = NULL; + if (pindex == pindexFirstNotScriptsValid) pindexFirstNotScriptsValid = NULL; + // Find our parent. + CBlockIndex* pindexPar = pindex->pprev; + // Find which child we just visited. + std::pair::iterator,std::multimap::iterator> rangePar = forward.equal_range(pindexPar); + while (rangePar.first->second != pindex) { + assert(rangePar.first != rangePar.second); // Our parent must have at least the node we're coming from as child. + rangePar.first++; + } + // Proceed to the next one. + rangePar.first++; + if (rangePar.first != rangePar.second) { + // Move to the sibling. + pindex = rangePar.first->second; + break; + } else { + // Move up further. + pindex = pindexPar; + nHeight--; + continue; + } + } + } + + // Check that we actually traversed the entire map. + assert(nNodes == forward.size()); +} + ////////////////////////////////////////////////////////////////////////////// // // CAlert @@ -3204,6 +3470,12 @@ string GetWarnings(string strFor) } +void static RelayAlerts(CNode* pfrom) +{ + LOCK(cs_mapAlerts); + BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts) + item.second.RelayTo(pfrom); +} @@ -3259,19 +3531,17 @@ void static ProcessGetData(CNode* pfrom) BlockMap::iterator mi = mapBlockIndex.find(inv.hash); if (mi != mapBlockIndex.end()) { - // If the requested block is at a height below our last - // checkpoint, only serve it if it's in the checkpointed chain - int nHeight = mi->second->nHeight; - CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(); - if (pcheckpoint && nHeight < pcheckpoint->nHeight) { - if (!chainActive.Contains(mi->second)) - { - LogPrintf("ProcessGetData(): ignoring request for old block that isn't in the main chain\n"); - } else { - send = true; - } - } else { + if (chainActive.Contains(mi->second)) { send = true; + } else { + // To prevent fingerprinting attacks, only send blocks outside of the active + // chain if they are valid, and no more than a month older than the best header + // chain we know about. + send = mi->second->IsValid(BLOCK_VALID_SCRIPTS) && (pindexBestHeader != NULL) && + (mi->second->GetBlockTime() > pindexBestHeader->GetBlockTime() - 30 * 24 * 60 * 60); + if (!send) { + LogPrintf("ProcessGetData(): ignoring request from peer=%i for old block that isn't in the main chain\n", pfrom->GetId()); + } } } if (send) @@ -3369,7 +3639,7 @@ void static ProcessGetData(CNode* pfrom) bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, int64_t nTimeReceived) { RandAddSeedPerfmon(); - LogPrint("net", "received: %s (%u bytes) peer=%d\n", strCommand, vRecv.size(), pfrom->id); + LogPrint("net", "received: %s (%u bytes) peer=%d\n", SanitizeString(strCommand), vRecv.size(), pfrom->id); if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0) { LogPrintf("dropmessagestest DROPPING RECV MESSAGE\n"); @@ -3396,12 +3666,14 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe; if (pfrom->nVersion < MIN_PEER_PROTO_VERSION) { + // relay alerts prior to disconnection + RelayAlerts(pfrom); // disconnect from peers older than this proto version LogPrintf("peer=%d using obsolete version %i; disconnecting\n", pfrom->id, pfrom->nVersion); pfrom->PushMessage("reject", strCommand, REJECT_OBSOLETE, strprintf("Version must be %d or greater", MIN_PEER_PROTO_VERSION)); pfrom->fDisconnect = true; - return false; + return true; } if (pfrom->nVersion == 10300) @@ -3412,6 +3684,20 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, vRecv >> LIMITED_STRING(pfrom->strSubVer, 256); pfrom->cleanSubVer = SanitizeString(pfrom->strSubVer); } + + // Disconnect certain incompatible clients + const char *badSubVers[] = { "/potcoinseeder", "/reddcoinseeder", "/worldcoinseeder" }; + for (int x = 0; x < 3; x++) + { + if (pfrom->cleanSubVer.find(badSubVers[x], 0) == 0) + { + LogPrintf("invalid subver %s at %s, disconnecting\n", pfrom->cleanSubVer, pfrom->addr.ToString()); + pfrom->PushMessage("reject", strCommand, REJECT_INVALID, string("invalid client subver")); + pfrom->fDisconnect = true; + return true; + } + } + if (!vRecv.empty()) vRecv >> pfrom->nStartingHeight; if (!vRecv.empty()) @@ -3477,11 +3763,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, } // Relay alerts - { - LOCK(cs_mapAlerts); - BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts) - item.second.RelayTo(pfrom); - } + RelayAlerts(pfrom); pfrom->fSuccessfullyConnected = true; @@ -3509,6 +3791,12 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, else if (strCommand == "verack") { pfrom->SetRecvVersion(min(pfrom->nVersion, PROTOCOL_VERSION)); + + // Mark this node as currently connected, so we update its timestamp later. + if (pfrom->fNetworkNode) { + LOCK(cs_main); + State(pfrom->GetId())->fCurrentlyConnected = true; + } } @@ -3618,7 +3906,9 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, // doing this will result in the received block being rejected as an orphan in case it is // not a direct successor. pfrom->PushMessage("getheaders", chainActive.GetLocator(pindexBestHeader), inv.hash); - if (chainActive.Tip()->GetBlockTime() > GetAdjustedTime() - Params().TargetSpacing() * 20) { + CNodeState *nodestate = State(pfrom->GetId()); + if (chainActive.Tip()->GetBlockTime() > GetAdjustedTime() - Params().TargetSpacing() * 20 && + nodestate->nBlocksInFlight < MAX_BLOCKS_IN_TRANSIT_PER_PEER) { vToFetch.push_back(inv); // Mark block as in flight already, even though the actual "getdata" message only goes out // later (within the same cs_main lock, though). @@ -3896,6 +4186,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, LogPrint("net", "more getheaders (%d) to end to peer=%d (startheight:%d)\n", pindexLast->nHeight, pfrom->id, pfrom->nStartingHeight); pfrom->PushMessage("getheaders", chainActive.GetLocator(pindexLast), uint256(0)); } + + CheckBlockIndex(); } else if (strCommand == "block" && !fImporting && !fReindex) // Ignore blocks received while importing @@ -3923,7 +4215,12 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, } - else if (strCommand == "getaddr") + // This asymmetric behavior for inbound and outbound connections was introduced + // to prevent a fingerprinting attack: an attacker can send specific fake addresses + // to users' AddrMan and later request them by sending getaddr messages. + // Making users (which are behind NAT and can only make outgoing connections) ignore + // getaddr message mitigates the attack. + else if ((strCommand == "getaddr") && (pfrom->fInbound)) { pfrom->vAddrToSend.clear(); vector vAddr = addrman.GetAddr(); @@ -4036,7 +4333,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, } - else if (strCommand == "alert") + else if (fAlerts && strCommand == "alert") { CAlert alert; vRecv >> alert; @@ -4146,11 +4443,6 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, } - // Update the last seen time for this node's address - if (pfrom->fNetworkNode) - if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping") - AddressCurrentlyConnected(pfrom->addr); - return true; } @@ -4200,7 +4492,7 @@ bool ProcessMessages(CNode* pfrom) // Scan for message start if (memcmp(msg.hdr.pchMessageStart, Params().MessageStart(), MESSAGE_START_SIZE) != 0) { - LogPrintf("PROCESSMESSAGE: INVALID MESSAGESTART %s peer=%d\n", msg.hdr.GetCommand(), pfrom->id); + LogPrintf("PROCESSMESSAGE: INVALID MESSAGESTART %s peer=%d\n", SanitizeString(msg.hdr.GetCommand()), pfrom->id); fOk = false; break; } @@ -4209,7 +4501,7 @@ bool ProcessMessages(CNode* pfrom) CMessageHeader& hdr = msg.hdr; if (!hdr.IsValid()) { - LogPrintf("PROCESSMESSAGE: ERRORS IN HEADER %s peer=%d\n", hdr.GetCommand(), pfrom->id); + LogPrintf("PROCESSMESSAGE: ERRORS IN HEADER %s peer=%d\n", SanitizeString(hdr.GetCommand()), pfrom->id); continue; } string strCommand = hdr.GetCommand(); @@ -4224,8 +4516,8 @@ bool ProcessMessages(CNode* pfrom) memcpy(&nChecksum, &hash, sizeof(nChecksum)); if (nChecksum != hdr.nChecksum) { - LogPrintf("ProcessMessages(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n", - strCommand, nMessageSize, nChecksum, hdr.nChecksum); + LogPrintf("ProcessMessages(%s, %u bytes): CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n", + SanitizeString(strCommand), nMessageSize, nChecksum, hdr.nChecksum); continue; } @@ -4242,12 +4534,12 @@ bool ProcessMessages(CNode* pfrom) if (strstr(e.what(), "end of data")) { // Allow exceptions from under-length message on vRecv - LogPrintf("ProcessMessages(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand, nMessageSize, e.what()); + LogPrintf("ProcessMessages(%s, %u bytes): Exception '%s' caught, normally caused by a message being shorter than its stated length\n", SanitizeString(strCommand), nMessageSize, e.what()); } else if (strstr(e.what(), "size too large")) { // Allow exceptions from over-long size - LogPrintf("ProcessMessages(%s, %u bytes) : Exception '%s' caught\n", strCommand, nMessageSize, e.what()); + LogPrintf("ProcessMessages(%s, %u bytes): Exception '%s' caught\n", SanitizeString(strCommand), nMessageSize, e.what()); } else { @@ -4264,7 +4556,7 @@ bool ProcessMessages(CNode* pfrom) } if (!fRet) - LogPrintf("ProcessMessage(%s, %u bytes) FAILED peer=%d\n", strCommand, nMessageSize, pfrom->id); + LogPrintf("ProcessMessage(%s, %u bytes) FAILED peer=%d\n", SanitizeString(strCommand), nMessageSize, pfrom->id); break; } @@ -4461,6 +4753,15 @@ bool SendMessages(CNode* pto, bool fSendTrickle) LogPrintf("Peer=%d is stalling block download, disconnecting\n", pto->id); pto->fDisconnect = true; } + // In case there is a block that has been in flight from this peer for (2 + 0.5 * N) times the block interval + // (with N the number of validated blocks that were in flight at the time it was requested), disconnect due to + // timeout. We compensate for in-flight blocks to prevent killing off peers due to our own downstream link + // being saturated. We only count validated in-flight blocks so peers can't advertize nonexisting block hashes + // to unreasonably increase our timeout. + if (!pto->fDisconnect && state.vBlocksInFlight.size() > 0 && state.vBlocksInFlight.front().nTime < nNow - 500000 * Params().TargetSpacing() * (4 + state.vBlocksInFlight.front().nValidatedQueuedBefore)) { + LogPrintf("Timeout downloading block %s from peer=%d, disconnecting\n", state.vBlocksInFlight.front().hash.ToString(), pto->id); + pto->fDisconnect = true; + } // // Message: getdata (blocks) diff --git a/src/main.h b/src/main.h index 8f0378647d163..7e023d5efbfd4 100644 --- a/src/main.h +++ b/src/main.h @@ -53,7 +53,9 @@ struct CNodeStateStats; static const unsigned int DEFAULT_BLOCK_MAX_SIZE = 750000; static const unsigned int DEFAULT_BLOCK_MIN_SIZE = 0; /** Default for -blockprioritysize, maximum space for zero/low-fee transactions **/ -static const unsigned int DEFAULT_BLOCK_PRIORITY_SIZE = 50000; +static const unsigned int DEFAULT_BLOCK_PRIORITY_SIZE = 17000; +/** Default for accepting alerts from the P2P network. */ +static const bool DEFAULT_ALERTS = true; /** The maximum size for transactions we're willing to relay/mine */ static const unsigned int MAX_STANDARD_TX_SIZE = 100000; /** The maximum allowed number of signature check operations in a block (network rule) */ @@ -64,8 +66,6 @@ static const unsigned int MAX_P2SH_SIGOPS = 15; static const unsigned int MAX_TX_SIGOPS = MAX_BLOCK_SIGOPS/5; /** Default for -maxorphantx, maximum number of orphan transactions kept in memory */ static const unsigned int DEFAULT_MAX_ORPHAN_TRANSACTIONS = 100; -/** Default for -maxorphanblocks, maximum number of orphan blocks kept in memory */ -static const unsigned int DEFAULT_MAX_ORPHAN_BLOCKS = 750; /** The maximum size of a blk?????.dat file (since 0.8) */ static const unsigned int MAX_BLOCKFILE_SIZE = 0x8000000; // 128 MiB /** The pre-allocation chunk size for blk?????.dat files (since 0.8) */ @@ -74,8 +74,6 @@ static const unsigned int BLOCKFILE_CHUNK_SIZE = 0x1000000; // 16 MiB static const unsigned int UNDOFILE_CHUNK_SIZE = 0x100000; // 1 MiB /** Coinbase transaction outputs can only be spent after this number of new blocks (network rule) */ static const int COINBASE_MATURITY = 100; -/** Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp. */ -static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov 5 00:53:20 1985 UTC /** Maximum number of script-checking threads allowed */ static const int MAX_SCRIPTCHECK_THREADS = 16; /** -par default (number of script-checking threads, 0 = auto) */ @@ -97,6 +95,14 @@ static const unsigned int DATABASE_WRITE_INTERVAL = 3600; /** Maximum length of reject messages. */ static const unsigned int MAX_REJECT_MESSAGE_LENGTH = 111; +/** Hypercoin: Dust Threshold: outputs below this value in satoshis are assessed an additional 1000 bytes per txout */ +static const CAmount DUST_THRESHOLD = 100000; // 0.001 HOT +/** Hypercoin: Default TX Fee per 1000 bytes */ +static const CAmount DEFAULT_TX_FEE = 100000; // 0.001 HOT + +/** Hypercoin: default minimum input threshold, override with -mininput */ +static const CAmount DEFAULT_MINIMUM_INPUT_THRESHOLD = DUST_THRESHOLD / 100; // 0.00001 HOT + /** "reject" message codes */ static const unsigned char REJECT_MALFORMED = 0x01; static const unsigned char REJECT_INVALID = 0x10; @@ -128,8 +134,10 @@ extern bool fReindex; extern int nScriptCheckThreads; extern bool fTxIndex; extern bool fIsBareMultisigStd; +extern bool fCheckBlockIndex; extern unsigned int nCoinCacheSize; extern CFeeRate minRelayTxFee; +extern bool fAlerts; /** Best header we've seen so far (used for getheaders queries' starting points). */ extern CBlockIndex *pindexBestHeader; @@ -181,7 +189,12 @@ bool LoadBlockIndex(); void UnloadBlockIndex(); /** Process protocol messages received from a given node */ bool ProcessMessages(CNode* pfrom); -/** Send queued protocol messages to be sent to a give node */ +/** + * Send queued protocol messages to be sent to a give node. + * + * @param[in] pto The node which we are sending messages to. + * @param[in] fSendTrickle When true send the trickled data, otherwise trickle the data until true. + */ bool SendMessages(CNode* pto, bool fSendTrickle); /** Run an instance of the script checking thread */ void ThreadScriptCheck(); diff --git a/src/merkleblock.cpp b/src/merkleblock.cpp index 8618e355d7418..0af5c6839ef4f 100644 --- a/src/merkleblock.cpp +++ b/src/merkleblock.cpp @@ -139,7 +139,7 @@ uint256 CPartialMerkleTree::ExtractMatches(std::vector &vMatch) { // traverse the partial tree unsigned int nBitsUsed = 0, nHashUsed = 0; uint256 hashMerkleRoot = TraverseAndExtract(nHeight, 0, nBitsUsed, nHashUsed, vMatch); - // verify that no problems occured during the tree traversal + // verify that no problems occurred during the tree traversal if (fBad) return 0; // verify that all bits were consumed (except for the padding caused by serializing it as a byte sequence) diff --git a/src/miner.cpp b/src/miner.cpp index ad2943142124f..653869cbf5294 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -9,6 +9,7 @@ #include "primitives/block.h" #include "primitives/transaction.h" #include "hash.h" +#include "crypto/scrypt.h" #include "main.h" #include "net.h" #include "pow.h" @@ -367,41 +368,6 @@ void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& double dHashesPerSec = 0.0; int64_t nHPSTimerStart = 0; -// -// ScanHash scans nonces looking for a hash with at least some zero bits. -// The nonce is usually preserved between calls, but periodically or if the -// nonce is 0xffff0000 or above, the block is rebuilt and nNonce starts over at -// zero. -// -bool static ScanHash(const CBlockHeader *pblock, uint32_t& nNonce, uint256 *phash) -{ - // Write the first 76 bytes of the block header to a double-SHA256 state. - CHash256 hasher; - CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); - ss << *pblock; - assert(ss.size() == 80); - hasher.Write((unsigned char*)&ss[0], 76); - - while (true) { - nNonce++; - - // Write the last 4 bytes of the block header (the nonce) to a copy of - // the double-SHA256 state, and compute the result. - CHash256(hasher).Write((unsigned char*)&nNonce, 4).Finalize((unsigned char*)phash); - - // Return the nonce if the hash has at least some zero bits, - // caller will check if it has enough to reach the target - if (((uint16_t*)phash)[15] == 0) - return true; - - // If nothing found after trying for a while, return -1 - if ((nNonce & 0xffff) == 0) - return false; - if ((nNonce & 0xfff) == 0) - boost::this_thread::interruption_point(); - } -} - CBlockTemplate* CreateNewBlockWithKey(CReserveKey& reservekey) { CPubKey pubkey; @@ -421,7 +387,7 @@ bool ProcessBlockFound(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey) { LOCK(cs_main); if (pblock->hashPrevBlock != chainActive.Tip()->GetBlockHash()) - return error("BitcoinMiner : generated block is stale"); + return error("HypercoinMiner : generated block is stale"); } // Remove key from key pool @@ -436,16 +402,16 @@ bool ProcessBlockFound(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey) // Process this block the same as if we had received it from another node CValidationState state; if (!ProcessNewBlock(state, NULL, pblock)) - return error("BitcoinMiner : ProcessNewBlock, block not accepted"); + return error("HypercoinMiner : ProcessNewBlock, block not accepted"); return true; } void static BitcoinMiner(CWallet *pwallet) { - LogPrintf("BitcoinMiner started\n"); + LogPrintf("HypercoinMiner started\n"); SetThreadPriority(THREAD_PRIORITY_LOWEST); - RenameThread("bitcoin-miner"); + RenameThread("hypercoin-miner"); // Each thread has its own key and counter CReserveKey reservekey(pwallet); @@ -456,8 +422,16 @@ void static BitcoinMiner(CWallet *pwallet) if (Params().MiningRequiresPeers()) { // Busy-wait for the network to come online so we don't waste time mining // on an obsolete chain. In regtest mode we expect to fly solo. - while (vNodes.empty()) + do { + bool fvNodesEmpty; + { + LOCK(cs_vNodes); + fvNodesEmpty = vNodes.empty(); + } + if (!fvNodesEmpty && !IsInitialBlockDownload()) + break; MilliSleep(1000); + } while (true); } // @@ -469,13 +443,13 @@ void static BitcoinMiner(CWallet *pwallet) auto_ptr pblocktemplate(CreateNewBlockWithKey(reservekey)); if (!pblocktemplate.get()) { - LogPrintf("Error in BitcoinMiner: Keypool ran out, please call keypoolrefill before restarting the mining thread\n"); + LogPrintf("Error in HypercoinMiner: Keypool ran out, please call keypoolrefill before restarting the mining thread\n"); return; } CBlock *pblock = &pblocktemplate->block; IncrementExtraNonce(pblock, pindexPrev, nExtraNonce); - LogPrintf("Running BitcoinMiner with %u transactions in block (%u bytes)\n", pblock->vtx.size(), + LogPrintf("Running HypercoinMiner with %u transactions in block (%u bytes)\n", pblock->vtx.size(), ::GetSerializeSize(*pblock, SER_NETWORK, PROTOCOL_VERSION)); // @@ -483,26 +457,19 @@ void static BitcoinMiner(CWallet *pwallet) // int64_t nStart = GetTime(); uint256 hashTarget = uint256().SetCompact(pblock->nBits); - uint256 hash; - uint32_t nNonce = 0; - uint32_t nOldNonce = 0; + uint256 thash; while (true) { - bool fFound = ScanHash(pblock, nNonce, &hash); - uint32_t nHashesDone = nNonce - nOldNonce; - nOldNonce = nNonce; - - // Check if something found - if (fFound) + unsigned int nHashesDone = 0; + char scratchpad[SCRYPT_SCRATCHPAD_SIZE]; + while(true) { - if (hash <= hashTarget) + scrypt_1024_1_1_256_sp(BEGIN(pblock->nVersion), BEGIN(thash), scratchpad); + if (thash <= hashTarget) { // Found a solution - pblock->nNonce = nNonce; - assert(hash == pblock->GetHash()); - SetThreadPriority(THREAD_PRIORITY_NORMAL); - LogPrintf("BitcoinMiner:\n"); - LogPrintf("proof-of-work found \n hash: %s \ntarget: %s\n", hash.GetHex(), hashTarget.GetHex()); + LogPrintf("HypercoinMiner:\n"); + LogPrintf("proof-of-work found \n powhash: %s \ntarget: %s\n", thash.GetHex(), hashTarget.GetHex()); ProcessBlockFound(pblock, *pwallet, reservekey); SetThreadPriority(THREAD_PRIORITY_LOWEST); @@ -512,6 +479,10 @@ void static BitcoinMiner(CWallet *pwallet) break; } + pblock->nNonce += 1; + nHashesDone += 1; + if ((pblock->nNonce & 0xFF) == 0) + break; } // Meter hashes/sec @@ -548,7 +519,7 @@ void static BitcoinMiner(CWallet *pwallet) // Regtest mode doesn't require peers if (vNodes.empty() && Params().MiningRequiresPeers()) break; - if (nNonce >= 0xffff0000) + if (pblock->nNonce >= 0xffff0000) break; if (mempool.GetTransactionsUpdated() != nTransactionsUpdatedLast && GetTime() - nStart > 60) break; @@ -567,9 +538,14 @@ void static BitcoinMiner(CWallet *pwallet) } catch (boost::thread_interrupted) { - LogPrintf("BitcoinMiner terminated\n"); + LogPrintf("HypercoinMiner terminated\n"); throw; } + catch (const std::runtime_error &e) + { + LogPrintf("HypercoinMiner runtime error: %s\n", e.what()); + return; + } } void GenerateBitcoins(bool fGenerate, CWallet* pwallet, int nThreads) diff --git a/src/net.cpp b/src/net.cpp index 42b3c30fb7717..f1ecdb3f6ae94 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -403,6 +403,12 @@ CNode* ConnectNode(CAddress addrConnect, const char *pszDest) if (pszDest ? ConnectSocketByName(addrConnect, hSocket, pszDest, Params().GetDefaultPort(), nConnectTimeout, &proxyConnectionFailed) : ConnectSocket(addrConnect, hSocket, nConnectTimeout, &proxyConnectionFailed)) { + if (!IsSelectableSocket(hSocket)) { + LogPrintf("Cannot create connection: non-selectable socket created (fd >= FD_SETSIZE ?)\n"); + CloseSocket(hSocket); + return NULL; + } + addrman.Attempt(addrConnect); // Add node @@ -574,6 +580,11 @@ bool CNode::ReceiveMsgBytes(const char *pch, unsigned int nBytes) if (handled < 0) return false; + if (msg.in_data && msg.hdr.nMessageSize > MAX_PROTOCOL_MESSAGE_LENGTH) { + LogPrint("net", "Oversized message from peer=%i, disconnecting\n", GetId()); + return false; + } + pch += handled; nBytes -= handled; @@ -866,8 +877,14 @@ void ThreadSocketHandler() if (nErr != WSAEWOULDBLOCK) LogPrintf("socket error accept failed: %s\n", NetworkErrorString(nErr)); } + else if (!IsSelectableSocket(hSocket)) + { + LogPrintf("connection from %s dropped: non-selectable socket\n", addr.ToString()); + CloseSocket(hSocket); + } else if (nInbound >= nMaxConnections - MAX_OUTBOUND_CONNECTIONS) { + LogPrint("net", "connection from %s dropped (full)\n", addr.ToString()); CloseSocket(hSocket); } else if (CNode::IsBanned(addr) && !whitelisted) @@ -877,6 +894,15 @@ void ThreadSocketHandler() } else { + // According to the internet TCP_NODELAY is not carried into accepted sockets + // on all platforms. Set it again here just to be sure. + int set = 1; +#ifdef WIN32 + setsockopt(hSocket, IPPROTO_TCP, TCP_NODELAY, (const char*)&set, sizeof(int)); +#else + setsockopt(hSocket, IPPROTO_TCP, TCP_NODELAY, (void*)&set, sizeof(int)); +#endif + CNode* pnode = new CNode(hSocket, addr, "", true); pnode->AddRef(); pnode->fWhitelisted = whitelisted; @@ -1015,10 +1041,14 @@ void ThreadMapPort() #ifndef UPNPDISCOVER_SUCCESS /* miniupnpc 1.5 */ devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0); -#else +#elif MINIUPNPC_API_VERSION < 14 /* miniupnpc 1.6 */ int error = 0; devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, &error); +#else + /* miniupnpc 1.9.20150730 */ + int error = 0; + devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, 2, &error); #endif struct UPNPUrls urls; @@ -1045,7 +1075,7 @@ void ThreadMapPort() } } - string strDesc = "Bitcoin " + FormatFullVersion(); + string strDesc = "Hypercoin " + FormatFullVersion(); try { while (true) { @@ -1266,8 +1296,7 @@ void ThreadOpenConnections() int nTries = 0; while (true) { - // use an nUnkBias between 10 (no outgoing connections) and 90 (8 outgoing connections) - CAddress addr = addrman.Select(10 + min(nOutbound,8)*10); + CAddress addr = addrman.Select(); // if we selected an invalid address, restart if (!addr.IsValid() || setConnected.count(addr.GetGroup()) || IsLocal(addr)) @@ -1451,7 +1480,7 @@ void ThreadMessageHandler() { TRY_LOCK(pnode->cs_vSend, lockSend); if (lockSend) - g_signals.SendMessages(pnode, pnode == pnodeTrickle); + g_signals.SendMessages(pnode, pnode == pnodeTrickle || pnode->fWhitelisted); } boost::this_thread::interruption_point(); } @@ -1494,6 +1523,13 @@ bool BindListenPort(const CService &addrBind, string& strError, bool fWhiteliste LogPrintf("%s\n", strError); return false; } + if (!IsSelectableSocket(hListenSocket)) + { + strError = "Error: Couldn't create a listenable socket for incoming connections"; + LogPrintf("%s\n", strError); + return false; + } + #ifndef WIN32 #ifdef SO_NOSIGPIPE @@ -1501,8 +1537,13 @@ bool BindListenPort(const CService &addrBind, string& strError, bool fWhiteliste setsockopt(hListenSocket, SOL_SOCKET, SO_NOSIGPIPE, (void*)&nOne, sizeof(int)); #endif // Allow binding if the port is still in TIME_WAIT state after - // the program was closed and restarted. Not an issue on windows! + // the program was closed and restarted. setsockopt(hListenSocket, SOL_SOCKET, SO_REUSEADDR, (void*)&nOne, sizeof(int)); + // Disable Nagle's algorithm + setsockopt(hListenSocket, IPPROTO_TCP, TCP_NODELAY, (void*)&nOne, sizeof(int)); +#else + setsockopt(hListenSocket, SOL_SOCKET, SO_REUSEADDR, (const char*)&nOne, sizeof(int)); + setsockopt(hListenSocket, IPPROTO_TCP, TCP_NODELAY, (const char*)&nOne, sizeof(int)); #endif // Set to non-blocking, incoming connections will also inherit this @@ -1532,7 +1573,7 @@ bool BindListenPort(const CService &addrBind, string& strError, bool fWhiteliste { int nErr = WSAGetLastError(); if (nErr == WSAEADDRINUSE) - strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin Core is probably already running."), addrBind.ToString()); + strError = strprintf(_("Unable to bind to %s on this computer. Hypercoin Core is probably already running."), addrBind.ToString()); else strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %s)"), addrBind.ToString(), NetworkErrorString(nErr)); LogPrintf("%s\n", strError); @@ -2021,7 +2062,7 @@ void CNode::BeginMessage(const char* pszCommand) EXCLUSIVE_LOCK_FUNCTION(cs_vSen ENTER_CRITICAL_SECTION(cs_vSend); assert(ssSend.size() == 0); ssSend << CMessageHeader(pszCommand, 0); - LogPrint("net", "sending: %s ", pszCommand); + LogPrint("net", "sending: %s ", SanitizeString(pszCommand)); } void CNode::AbortMessage() UNLOCK_FUNCTION(cs_vSend) diff --git a/src/net.h b/src/net.h index a475be0b334db..79d8baeb6d7a8 100644 --- a/src/net.h +++ b/src/net.h @@ -46,6 +46,8 @@ static const int TIMEOUT_INTERVAL = 20 * 60; static const unsigned int MAX_INV_SZ = 50000; /** The maximum number of new addresses to accumulate before announcing. */ static const unsigned int MAX_ADDR_TO_SEND = 1000; +/** Maximum length of incoming protocol messages (no message over 2 MiB is currently acceptable). */ +static const unsigned int MAX_PROTOCOL_MESSAGE_LENGTH = 2 * 1024 * 1024; /** -listen default */ static const bool DEFAULT_LISTEN = true; /** -upnp default */ diff --git a/src/netbase.cpp b/src/netbase.cpp index 053c645a1be10..0b38e4dba5726 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -267,6 +267,9 @@ bool static InterruptibleRecv(char* data, size_t len, int timeout, SOCKET& hSock } else { // Other error or blocking int nErr = WSAGetLastError(); if (nErr == WSAEINPROGRESS || nErr == WSAEWOULDBLOCK || nErr == WSAEINVAL) { + if (!IsSelectableSocket(hSocket)) { + return false; + } struct timeval tval = MillisToTimeval(std::min(endTime - curTime, maxWait)); fd_set fdset; FD_ZERO(&fdset); @@ -404,12 +407,19 @@ bool static ConnectSocketDirectly(const CService &addrConnect, SOCKET& hSocketRe if (hSocket == INVALID_SOCKET) return false; -#ifdef SO_NOSIGPIPE int set = 1; +#ifdef SO_NOSIGPIPE // Different way of disabling SIGPIPE on BSD setsockopt(hSocket, SOL_SOCKET, SO_NOSIGPIPE, (void*)&set, sizeof(int)); #endif + //Disable Nagle's algorithm +#ifdef WIN32 + setsockopt(hSocket, IPPROTO_TCP, TCP_NODELAY, (const char*)&set, sizeof(int)); +#else + setsockopt(hSocket, IPPROTO_TCP, TCP_NODELAY, (void*)&set, sizeof(int)); +#endif + // Set to non-blocking if (!SetSocketNonBlocking(hSocket, true)) return error("ConnectSocketDirectly: Setting socket to non-blocking failed, error %s\n", NetworkErrorString(WSAGetLastError())); @@ -944,7 +954,7 @@ std::vector CNetAddr::GetGroup() const nBits -= 8; } if (nBits > 0) - vchRet.push_back(GetByte(15 - nStartByte) | ((1 << nBits) - 1)); + vchRet.push_back(GetByte(15 - nStartByte) | ((1 << (8 - nBits)) - 1)); return vchRet; } @@ -1214,15 +1224,15 @@ CSubNet::CSubNet(const std::string &strSubnet, bool fAllowLookup) std::string strNetmask = strSubnet.substr(slash + 1); int32_t n; // IPv4 addresses start at offset 12, and first 12 bytes must match, so just offset n - int noffset = network.IsIPv4() ? (12 * 8) : 0; + const int astartofs = network.IsIPv4() ? 12 : 0; if (ParseInt32(strNetmask, &n)) // If valid number, assume /24 symtex { - if(n >= 0 && n <= (128 - noffset)) // Only valid if in range of bits of address + if(n >= 0 && n <= (128 - astartofs*8)) // Only valid if in range of bits of address { - n += noffset; + n += astartofs*8; // Clear bits [n..127] for (; n < 128; ++n) - netmask[n>>3] &= ~(1<<(n&7)); + netmask[n>>3] &= ~(1<<(7-(n&7))); } else { @@ -1233,12 +1243,10 @@ CSubNet::CSubNet(const std::string &strSubnet, bool fAllowLookup) { if (LookupHost(strNetmask.c_str(), vIP, 1, false)) // Never allow lookup for netmask { - // Remember: GetByte returns bytes in reversed order // Copy only the *last* four bytes in case of IPv4, the rest of the mask should stay 1's as // we don't want pchIPv4 to be part of the mask. - int asize = network.IsIPv4() ? 4 : 16; - for(int x=0; xnBits; } + // Litecoin: This fixes an issue where a 51% attack can change difficulty at will. + // Go back the full period unless it's the first retarget after genesis. Code courtesy of Art Forz + int blockstogoback = Params().Interval()-1; + if ((pindexLast->nHeight+1) != Params().Interval()) + blockstogoback = Params().Interval(); + // Go back by what we want to be 14 days worth of blocks const CBlockIndex* pindexFirst = pindexLast; - for (int i = 0; pindexFirst && i < Params().Interval()-1; i++) + for (int i = 0; pindexFirst && i < blockstogoback; i++) pindexFirst = pindexFirst->pprev; assert(pindexFirst); @@ -60,8 +66,14 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead uint256 bnOld; bnNew.SetCompact(pindexLast->nBits); bnOld = bnNew; + // Litecoin: intermediate uint256 can overflow by 1 bit + bool fShift = bnNew.bits() > 235; + if (fShift) + bnNew >>= 1; bnNew *= nActualTimespan; bnNew /= Params().TargetTimespan(); + if (fShift) + bnNew <<= 1; if (bnNew > Params().ProofOfWorkLimit()) bnNew = Params().ProofOfWorkLimit(); diff --git a/src/primitives/block.cpp b/src/primitives/block.cpp index 225bb80be810a..08b75f0a63793 100644 --- a/src/primitives/block.cpp +++ b/src/primitives/block.cpp @@ -6,6 +6,7 @@ #include "primitives/block.h" #include "hash.h" +#include "crypto/scrypt.h" #include "tinyformat.h" #include "utilstrencodings.h" @@ -14,6 +15,13 @@ uint256 CBlockHeader::GetHash() const return Hash(BEGIN(nVersion), END(nNonce)); } +uint256 CBlockHeader::GetPoWHash() const +{ + uint256 thash; + scrypt_1024_1_1_256(BEGIN(nVersion), BEGIN(thash)); + return thash; +} + uint256 CBlock::BuildMerkleTree(bool* fMutated) const { /* WARNING! If you're reading this because you're learning about crypto diff --git a/src/primitives/block.h b/src/primitives/block.h index a1895925395f3..65a67dfd92578 100644 --- a/src/primitives/block.h +++ b/src/primitives/block.h @@ -24,7 +24,7 @@ class CBlockHeader { public: // header - static const int32_t CURRENT_VERSION=2; + static const int32_t CURRENT_VERSION=4; int32_t nVersion; uint256 hashPrevBlock; uint256 hashMerkleRoot; @@ -67,6 +67,8 @@ class CBlockHeader uint256 GetHash() const; + uint256 GetPoWHash() const; + int64_t GetBlockTime() const { return (int64_t)nTime; diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h index a7a1e013ede31..8b07b5f2a6592 100644 --- a/src/primitives/transaction.h +++ b/src/primitives/transaction.h @@ -136,16 +136,9 @@ class CTxOut bool IsDust(CFeeRate minRelayTxFee) const { - // "Dust" is defined in terms of CTransaction::minRelayTxFee, - // which has units satoshis-per-kilobyte. - // If you'd pay more than 1/3 in fees - // to spend something, then we consider it dust. - // A typical txout is 34 bytes big, and will - // need a CTxIn of at least 148 bytes to spend: - // so dust is a txout less than 546 satoshis - // with default minRelayTxFee. - size_t nSize = GetSerializeSize(SER_DISK,0)+148u; - return (nValue < 3*minRelayTxFee.GetFee(nSize)); + // IsDust() detection disabled, allows any valid dust to be relayed + // The fees imposed on each dust txo is considered sufficient spam deterrant. + return false; } friend bool operator==(const CTxOut& a, const CTxOut& b) diff --git a/src/protocol.cpp b/src/protocol.cpp index 72fdd753a81b8..f03d6e75897cd 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -40,7 +40,7 @@ CMessageHeader::CMessageHeader(const char* pszCommand, unsigned int nMessageSize std::string CMessageHeader::GetCommand() const { - return std::string(pchCommand, pchCommand + strnlen(pchCommand, COMMAND_SIZE)); + return std::string(pchCommand, pchCommand + strnlen_int(pchCommand, COMMAND_SIZE)); } bool CMessageHeader::IsValid() const diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index f336d47e83eca..235c3599d8d42 100644 --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -61,11 +61,11 @@ AddressBookPage::AddressBookPage(Mode mode, Tabs tab, QWidget *parent) : switch(tab) { case SendingTab: - ui->labelExplanation->setText(tr("These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.")); + ui->labelExplanation->setText(tr("These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins.")); ui->deleteAddress->setVisible(true); break; case ReceivingTab: - ui->labelExplanation->setText(tr("These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.")); + ui->labelExplanation->setText(tr("These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.")); ui->deleteAddress->setVisible(false); break; } diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index fa9ac6b135cbf..d1cfd537b5930 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -108,7 +108,7 @@ void AskPassphraseDialog::accept() break; } QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm wallet encryption"), - tr("Warning: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR BITCOINS!") + "

" + tr("Are you sure you wish to encrypt your wallet?"), + tr("Warning: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR HYPERCOINS!") + "

" + tr("Are you sure you wish to encrypt your wallet?"), QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Cancel); if(retval == QMessageBox::Yes) @@ -119,9 +119,9 @@ void AskPassphraseDialog::accept() { QMessageBox::warning(this, tr("Wallet encrypted"), "" + - tr("Bitcoin will close now to finish the encryption process. " + tr("Hypercoin will close now to finish the encryption process. " "Remember that encrypting your wallet cannot fully protect " - "your bitcoins from being stolen by malware infecting your computer.") + + "your hypercoins from being stolen by malware infecting your computer.") + "

" + tr("IMPORTANT: Any previous backups you have made of your wallet file " "should be replaced with the newly generated, encrypted wallet file. " diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 123777a71bcd3..c49901b206e54 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -89,10 +89,24 @@ static std::string Translate(const char* psz) return QCoreApplication::translate("bitcoin-core", psz).toStdString(); } +static QString GetLangTerritory() +{ + QSettings settings; + // Get desired locale (e.g. "de_DE") + // 1) System default language + QString lang_territory = QLocale::system().name(); + // 2) Language from QSettings + QString lang_territory_qsettings = settings.value("language", "").toString(); + if(!lang_territory_qsettings.isEmpty()) + lang_territory = lang_territory_qsettings; + // 3) -lang command line argument + lang_territory = QString::fromStdString(GetArg("-lang", lang_territory.toStdString())); + return lang_territory; +} + /** Set up translations */ static void initTranslations(QTranslator &qtTranslatorBase, QTranslator &qtTranslator, QTranslator &translatorBase, QTranslator &translator) { - QSettings settings; // Remove old translators QApplication::removeTranslator(&qtTranslatorBase); @@ -102,13 +116,7 @@ static void initTranslations(QTranslator &qtTranslatorBase, QTranslator &qtTrans // Get desired locale (e.g. "de_DE") // 1) System default language - QString lang_territory = QLocale::system().name(); - // 2) Language from QSettings - QString lang_territory_qsettings = settings.value("language", "").toString(); - if(!lang_territory_qsettings.isEmpty()) - lang_territory = lang_territory_qsettings; - // 3) -lang command line argument - lang_territory = QString::fromStdString(GetArg("-lang", lang_territory.toStdString())); + QString lang_territory = GetLangTerritory(); // Convert to "de" only by truncating "_DE" QString lang = lang_territory; @@ -465,7 +473,7 @@ void BitcoinApplication::shutdownResult(int retval) void BitcoinApplication::handleRunawayException(const QString &message) { - QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. Bitcoin can no longer continue safely and will quit.") + QString("\n\n") + message); + QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. Hypercoin can no longer continue safely and will quit.") + QString("\n\n") + message); ::exit(1); } @@ -498,8 +506,6 @@ int main(int argc, char *argv[]) Q_INIT_RESOURCE(bitcoin); Q_INIT_RESOURCE(bitcoin_locale); - GUIUtil::SubstituteFonts(); - BitcoinApplication app(argc, argv); #if QT_VERSION > 0x050100 // Generate high-dpi pixmaps @@ -521,6 +527,7 @@ int main(int argc, char *argv[]) QApplication::setOrganizationName(QAPP_ORG_NAME); QApplication::setOrganizationDomain(QAPP_ORG_DOMAIN); QApplication::setApplicationName(QAPP_APP_NAME_DEFAULT); + GUIUtil::SubstituteFonts(GetLangTerritory()); /// 4. Initialization of translations, so that intro dialog is in user's language // Now that QSettings are accessible, initialize translations @@ -530,7 +537,7 @@ int main(int argc, char *argv[]) // Show help message immediately after parsing command-line options (for "-lang") and setting locale, // but before showing splash screen. - if (mapArgs.count("-?") || mapArgs.count("-help") || mapArgs.count("-version")) + if (mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help") || mapArgs.count("-version")) { HelpMessageDialog help(NULL, mapArgs.count("-version")); help.showOrPrint(); @@ -545,14 +552,14 @@ int main(int argc, char *argv[]) /// - Do not call GetDataDir(true) before this step finishes if (!boost::filesystem::is_directory(GetDataDir(false))) { - QMessageBox::critical(0, QObject::tr("Bitcoin Core"), + QMessageBox::critical(0, QObject::tr("Hypercoin Core"), QObject::tr("Error: Specified data directory \"%1\" does not exist.").arg(QString::fromStdString(mapArgs["-datadir"]))); return 1; } try { ReadConfigFile(mapArgs, mapMultiArgs); } catch(std::exception &e) { - QMessageBox::critical(0, QObject::tr("Bitcoin Core"), + QMessageBox::critical(0, QObject::tr("Hypercoin Core"), QObject::tr("Error: Cannot parse configuration file: %1. Only use key=value syntax.").arg(e.what())); return false; } @@ -565,7 +572,7 @@ int main(int argc, char *argv[]) // Check for -testnet or -regtest parameter (Params() calls are only valid after this clause) if (!SelectParamsFromCommandLine()) { - QMessageBox::critical(0, QObject::tr("Bitcoin Core"), QObject::tr("Error: Invalid combination of -regtest and -testnet.")); + QMessageBox::critical(0, QObject::tr("Hypercoin Core"), QObject::tr("Error: Invalid combination of -regtest and -testnet.")); return 1; } #ifdef ENABLE_WALLET @@ -623,7 +630,7 @@ int main(int argc, char *argv[]) app.createWindow(networkStyle.data()); app.requestInitialize(); #if defined(Q_OS_WIN) && QT_VERSION >= 0x050000 - WinShutdownMonitor::registerShutdownBlockReason(QObject::tr("Bitcoin Core didn't yet exit safely..."), (HWND)app.getMainWinId()); + WinShutdownMonitor::registerShutdownBlockReason(QObject::tr("Hypercoin Core didn't yet exit safely..."), (HWND)app.getMainWinId()); #endif app.exec(); app.requestShutdown(); diff --git a/src/qt/bitcoinamountfield.cpp b/src/qt/bitcoinamountfield.cpp index 5b8ab23b26a7e..4373357e444ec 100644 --- a/src/qt/bitcoinamountfield.cpp +++ b/src/qt/bitcoinamountfield.cpp @@ -20,6 +20,7 @@ class AmountSpinBox: public QAbstractSpinBox { Q_OBJECT + public: explicit AmountSpinBox(QWidget *parent): QAbstractSpinBox(parent), @@ -72,23 +73,6 @@ class AmountSpinBox: public QAbstractSpinBox setValue(val); } - StepEnabled stepEnabled() const - { - StepEnabled rv = 0; - if(text().isEmpty()) // Allow step-up with empty field - return StepUpEnabled; - bool valid = false; - CAmount val = value(&valid); - if(valid) - { - if(val > 0) - rv |= StepDownEnabled; - if(val < BitcoinUnits::maxMoney()) - rv |= StepUpEnabled; - } - return rv; - } - void setDisplayUnit(int unit) { bool valid = false; @@ -139,6 +123,7 @@ class AmountSpinBox: public QAbstractSpinBox } return cachedMinimumSizeHint; } + private: int currentUnit; CAmount singleStep; @@ -179,6 +164,25 @@ class AmountSpinBox: public QAbstractSpinBox return QAbstractSpinBox::event(event); } + StepEnabled stepEnabled() const + { + StepEnabled rv = 0; + if (isReadOnly()) // Disable steps when AmountSpinBox is read-only + return StepNone; + if(text().isEmpty()) // Allow step-up with empty field + return StepUpEnabled; + bool valid = false; + CAmount val = value(&valid); + if(valid) + { + if(val > 0) + rv |= StepDownEnabled; + if(val < BitcoinUnits::maxMoney()) + rv |= StepUpEnabled; + } + return rv; + } + signals: void valueChanged(); }; diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 6a457d361fe50..3c8ae7da12829 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -100,7 +100,7 @@ BitcoinGUI::BitcoinGUI(const NetworkStyle *networkStyle, QWidget *parent) : { GUIUtil::restoreWindowGeometry("nWindow", QSize(850, 550), this); - QString windowTitle = tr("Bitcoin Core") + " - "; + QString windowTitle = tr("Hypercoin Core") + " - "; #ifdef ENABLE_WALLET /* if compiled with wallet support, -disablewallet can still disable the wallet */ enableWallet = !GetBoolArg("-disablewallet", false); @@ -207,11 +207,6 @@ BitcoinGUI::BitcoinGUI(const NetworkStyle *networkStyle, QWidget *parent) : statusBar()->addWidget(progressBar); statusBar()->addPermanentWidget(frameBlocks); - connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show())); - - // prevents an open debug window from becoming stuck/unusable on client shutdown - connect(quitAction, SIGNAL(triggered()), rpcConsole, SLOT(hide())); - // Install event filter to be able to catch status tip events (QEvent::StatusTip) this->installEventFilter(this); @@ -232,7 +227,7 @@ BitcoinGUI::~BitcoinGUI() trayIcon->hide(); #ifdef Q_OS_MAC delete appMenuBar; - MacDockIconHandler::instance()->setMainWindow(NULL); + MacDockIconHandler::cleanup(); #endif } @@ -248,14 +243,14 @@ void BitcoinGUI::createActions(const NetworkStyle *networkStyle) tabGroup->addAction(overviewAction); sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send"), this); - sendCoinsAction->setStatusTip(tr("Send coins to a Bitcoin address")); + sendCoinsAction->setStatusTip(tr("Send coins to a Hypercoin address")); sendCoinsAction->setToolTip(sendCoinsAction->statusTip()); sendCoinsAction->setCheckable(true); sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2)); tabGroup->addAction(sendCoinsAction); receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive"), this); - receiveCoinsAction->setStatusTip(tr("Request payments (generates QR codes and bitcoin: URIs)")); + receiveCoinsAction->setStatusTip(tr("Request payments (generates QR codes and hypercoin: URIs)")); receiveCoinsAction->setToolTip(receiveCoinsAction->statusTip()); receiveCoinsAction->setCheckable(true); receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3)); @@ -285,8 +280,8 @@ void BitcoinGUI::createActions(const NetworkStyle *networkStyle) quitAction->setStatusTip(tr("Quit application")); quitAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q)); quitAction->setMenuRole(QAction::QuitRole); - aboutAction = new QAction(networkStyle->getAppIcon(), tr("&About Bitcoin Core"), this); - aboutAction->setStatusTip(tr("Show information about Bitcoin Core")); + aboutAction = new QAction(networkStyle->getAppIcon(), tr("&About Hypercoin Core"), this); + aboutAction->setStatusTip(tr("Show information about Hypercoin Core")); aboutAction->setMenuRole(QAction::AboutRole); #if QT_VERSION < 0x050000 aboutQtAction = new QAction(QIcon(":/trolltech/qmessagebox/images/qtlogo-64.png"), tr("About &Qt"), this); @@ -296,7 +291,7 @@ void BitcoinGUI::createActions(const NetworkStyle *networkStyle) aboutQtAction->setStatusTip(tr("Show information about Qt")); aboutQtAction->setMenuRole(QAction::AboutQtRole); optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this); - optionsAction->setStatusTip(tr("Modify configuration options for Bitcoin")); + optionsAction->setStatusTip(tr("Modify configuration options for Hypercoin")); optionsAction->setMenuRole(QAction::PreferencesRole); toggleHideAction = new QAction(networkStyle->getAppIcon(), tr("&Show / Hide"), this); toggleHideAction->setStatusTip(tr("Show or hide the main Window")); @@ -309,9 +304,9 @@ void BitcoinGUI::createActions(const NetworkStyle *networkStyle) changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase..."), this); changePassphraseAction->setStatusTip(tr("Change the passphrase used for wallet encryption")); signMessageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message..."), this); - signMessageAction->setStatusTip(tr("Sign messages with your Bitcoin addresses to prove you own them")); + signMessageAction->setStatusTip(tr("Sign messages with your Hypercoin addresses to prove you own them")); verifyMessageAction = new QAction(QIcon(":/icons/transaction_0"), tr("&Verify message..."), this); - verifyMessageAction->setStatusTip(tr("Verify messages to ensure they were signed with specified Bitcoin addresses")); + verifyMessageAction->setStatusTip(tr("Verify messages to ensure they were signed with specified Hypercoin addresses")); openRPCConsoleAction = new QAction(QIcon(":/icons/debugwindow"), tr("&Debug window"), this); openRPCConsoleAction->setStatusTip(tr("Open debugging and diagnostic console")); @@ -322,10 +317,11 @@ void BitcoinGUI::createActions(const NetworkStyle *networkStyle) usedReceivingAddressesAction->setStatusTip(tr("Show the list of used receiving addresses and labels")); openAction = new QAction(QApplication::style()->standardIcon(QStyle::SP_FileIcon), tr("Open &URI..."), this); - openAction->setStatusTip(tr("Open a bitcoin: URI or payment request")); + openAction->setStatusTip(tr("Open a hypercoin: URI or payment request")); showHelpMessageAction = new QAction(QApplication::style()->standardIcon(QStyle::SP_MessageBoxInformation), tr("&Command-line options"), this); - showHelpMessageAction->setStatusTip(tr("Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options")); + showHelpMessageAction->setMenuRole(QAction::NoRole); + showHelpMessageAction->setStatusTip(tr("Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options")); connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit())); connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked())); @@ -333,6 +329,10 @@ void BitcoinGUI::createActions(const NetworkStyle *networkStyle) connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked())); connect(toggleHideAction, SIGNAL(triggered()), this, SLOT(toggleHidden())); connect(showHelpMessageAction, SIGNAL(triggered()), this, SLOT(showHelpMessageClicked())); + connect(openRPCConsoleAction, SIGNAL(triggered()), this, SLOT(showDebugWindow())); + // prevents an open debug window from becoming stuck/unusable on client shutdown + connect(quitAction, SIGNAL(triggered()), rpcConsole, SLOT(hide())); + #ifdef ENABLE_WALLET if(walletFrame) { @@ -493,7 +493,7 @@ void BitcoinGUI::createTrayIcon(const NetworkStyle *networkStyle) { #ifndef Q_OS_MAC trayIcon = new QSystemTrayIcon(this); - QString toolTip = tr("Bitcoin Core client") + " " + networkStyle->getTitleAddText(); + QString toolTip = tr("Hypercoin Core client") + " " + networkStyle->getTitleAddText(); trayIcon->setToolTip(toolTip); trayIcon->setIcon(networkStyle->getAppIcon()); trayIcon->show(); @@ -568,6 +568,14 @@ void BitcoinGUI::aboutClicked() dlg.exec(); } +void BitcoinGUI::showDebugWindow() +{ + rpcConsole->showNormal(); + rpcConsole->show(); + rpcConsole->raise(); + rpcConsole->activateWindow(); +} + void BitcoinGUI::showHelpMessageClicked() { HelpMessageDialog *help = new HelpMessageDialog(this, false); @@ -632,7 +640,7 @@ void BitcoinGUI::setNumConnections(int count) default: icon = ":/icons/connect_4"; break; } labelConnectionsIcon->setPixmap(QIcon(icon).pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); - labelConnectionsIcon->setToolTip(tr("%n active connection(s) to Bitcoin network", "", count)); + labelConnectionsIcon->setToolTip(tr("%n active connection(s) to Hypercoin network", "", count)); } void BitcoinGUI::setNumBlocks(int count) @@ -747,7 +755,7 @@ void BitcoinGUI::setNumBlocks(int count) void BitcoinGUI::message(const QString &title, const QString &message, unsigned int style, bool *ret) { - QString strTitle = tr("Bitcoin"); // default title + QString strTitle = tr("Hypercoin"); // default title // Default to information icon int nMBoxIcon = QMessageBox::Information; int nNotifyIcon = Notificator::Information; diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 662ef9d9e8419..616c3717b9462 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -189,6 +189,8 @@ private slots: void optionsClicked(); /** Show about dialog */ void aboutClicked(); + /** Show debug window */ + void showDebugWindow(); /** Show help message dialog */ void showHelpMessageClicked(); #ifndef Q_OS_MAC diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp index 548529865a169..ce3e49db5ffc0 100644 --- a/src/qt/bitcoinstrings.cpp +++ b/src/qt/bitcoinstrings.cpp @@ -10,18 +10,6 @@ #endif static const char UNUSED *bitcoin_strings[] = { QT_TRANSLATE_NOOP("bitcoin-core", "" -"%s, you must set a rpcpassword in the configuration file:\n" -"%s\n" -"It is recommended you use the following random password:\n" -"rpcuser=bitcoinrpc\n" -"rpcpassword=%s\n" -"(you do not need to remember this password)\n" -"The username and password MUST NOT be the same.\n" -"If the file does not exist, create it with owner-readable-only file " -"permissions.\n" -"It is also recommended to set alertnotify so you are notified of problems;\n" -"for example: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com\n"), -QT_TRANSLATE_NOOP("bitcoin-core", "" "(1 = keep tx meta data e.g. account owner and payment request information, 2 " "= drop tx meta data)"), QT_TRANSLATE_NOOP("bitcoin-core", "" @@ -42,7 +30,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "notation for IPv6. This option can be specified multiple times (default: " "bind to all interfaces)"), QT_TRANSLATE_NOOP("bitcoin-core", "" -"Cannot obtain a lock on data directory %s. Bitcoin Core is probably already " +"Cannot obtain a lock on data directory %s. Hypercoin Core is probably already " "running."), QT_TRANSLATE_NOOP("bitcoin-core", "" "Continuously rate-limit free transactions to *1000 bytes per minute " @@ -62,13 +50,6 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" QT_TRANSLATE_NOOP("bitcoin-core", "" "Error: Listening for incoming connections failed (listen returned error %s)"), QT_TRANSLATE_NOOP("bitcoin-core", "" -"Error: The transaction was rejected! This might happen if some of the coins " -"in your wallet were already spent, such as if you used a copy of wallet.dat " -"and coins were spent in the copy but not marked as spent here."), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Error: This transaction requires a transaction fee of at least %s because of " -"its amount, complexity, or use of recently received funds!"), -QT_TRANSLATE_NOOP("bitcoin-core", "" "Error: Unsupported argument -socks found. Setting SOCKS version isn't " "possible anymore, only SOCKS5 proxies are supported."), QT_TRANSLATE_NOOP("bitcoin-core", "" @@ -81,10 +62,10 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "Execute command when the best block changes (%s in cmd is replaced by block " "hash)"), QT_TRANSLATE_NOOP("bitcoin-core", "" -"Fees (in BTC/Kb) smaller than this are considered zero fee for relaying " +"Fees (in HOT/Kb) smaller than this are considered zero fee for relaying " "(default: %s)"), QT_TRANSLATE_NOOP("bitcoin-core", "" -"Fees (in BTC/Kb) smaller than this are considered zero fee for transaction " +"Fees (in HOT/Kb) smaller than this are considered zero fee for transaction " "creation (default: %s)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Flush database activity from memory pool to disk log every megabytes " @@ -92,12 +73,15 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" QT_TRANSLATE_NOOP("bitcoin-core", "" "How thorough the block verification of -checkblocks is (0-4, default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "" -"If paytxfee is not set, include enough fee so transactions are confirmed on " -"average within n blocks (default: %u)"), +"If paytxfee is not set, include enough fee so transactions begin " +"confirmation on average within n blocks (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "In this mode -genproclimit controls how many blocks are generated " "immediately."), QT_TRANSLATE_NOOP("bitcoin-core", "" +"Invalid amount for -maxtxfee=: '%s' (must be at least the minrelay " +"fee of %s to prevent stuck transactions)"), +QT_TRANSLATE_NOOP("bitcoin-core", "" "Log transaction priority and fee per kB when mining blocks (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Maintain a full transaction index, used by the getrawtransaction rpc call " @@ -106,6 +90,9 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "Maximum size of data in data carrier transactions we relay and mine " "(default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "" +"Maximum total fees to use in a single wallet transaction, setting too low " +"may abort large transactions (default: %s)"), +QT_TRANSLATE_NOOP("bitcoin-core", "" "Number of seconds to keep misbehaving peers from reconnecting (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Output debugging information (default: %u, supplying is optional)"), @@ -113,6 +100,8 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "Query for peer addresses via DNS lookup, if low on addresses (default: 1 " "unless -connect)"), QT_TRANSLATE_NOOP("bitcoin-core", "" +"Require high priority for relaying free or low-fee transactions (default:%u)"), +QT_TRANSLATE_NOOP("bitcoin-core", "" "Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"), QT_TRANSLATE_NOOP("bitcoin-core", "" "Set the number of script verification threads (%u to %d, 0 = auto, <0 = " @@ -128,17 +117,33 @@ QT_TRANSLATE_NOOP("bitcoin-core", "" "the OpenSSL Toolkit and cryptographic software " "written by Eric Young and UPnP software written by Thomas Bernard."), QT_TRANSLATE_NOOP("bitcoin-core", "" -"Unable to bind to %s on this computer. Bitcoin Core is probably already " +"To use hypercoind, or the -server option to hypercoin-qt, you must set an " +"rpcpassword in the configuration file:\n" +"%s\n" +"It is recommended you use the following random password:\n" +"rpcuser=hypercoinrpc\n" +"rpcpassword=%s\n" +"(you do not need to remember this password)\n" +"The username and password MUST NOT be the same.\n" +"If the file does not exist, create it with owner-readable-only file " +"permissions.\n" +"It is also recommended to set alertnotify so you are notified of problems;\n" +"for example: alertnotify=echo %%s | mail -s \"Hypercoin Alert\" admin@foo.com\n"), +QT_TRANSLATE_NOOP("bitcoin-core", "" +"Unable to bind to %s on this computer. Hypercoin Core is probably already " "running."), QT_TRANSLATE_NOOP("bitcoin-core", "" "Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: " "%s)"), QT_TRANSLATE_NOOP("bitcoin-core", "" +"Warning: -maxtxfee is set very high! Fees this large could be paid on a " +"single transaction."), +QT_TRANSLATE_NOOP("bitcoin-core", "" "Warning: -paytxfee is set very high! This is the transaction fee you will " "pay if you send a transaction."), QT_TRANSLATE_NOOP("bitcoin-core", "" "Warning: Please check that your computer's date and time are correct! If " -"your clock is wrong Bitcoin Core will not work properly."), +"your clock is wrong Hypercoin Core will not work properly."), QT_TRANSLATE_NOOP("bitcoin-core", "" "Warning: The network does not appear to fully agree! Some miners appear to " "be experiencing issues."), @@ -163,6 +168,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", "(default: 1)"), QT_TRANSLATE_NOOP("bitcoin-core", " can be:"), QT_TRANSLATE_NOOP("bitcoin-core", "Accept command line and JSON-RPC commands"), QT_TRANSLATE_NOOP("bitcoin-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Accept public REST requests (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "Acceptable ciphers (default: %s)"), QT_TRANSLATE_NOOP("bitcoin-core", "Add a node to connect to and attempt to keep the connection open"), QT_TRANSLATE_NOOP("bitcoin-core", "Allow DNS lookups for -addnode, -seednode and -connect"), @@ -192,15 +198,15 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Error initializing wallet database environmen QT_TRANSLATE_NOOP("bitcoin-core", "Error loading block database"), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat"), QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet corrupted"), -QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet requires newer version of Bitcoin Core"), +QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet requires newer version of Hypercoin Core"), QT_TRANSLATE_NOOP("bitcoin-core", "Error opening block database"), +QT_TRANSLATE_NOOP("bitcoin-core", "Error reading from database, shutting down."), QT_TRANSLATE_NOOP("bitcoin-core", "Error"), -QT_TRANSLATE_NOOP("bitcoin-core", "Error: A fatal internal error occured, see debug.log for details"), +QT_TRANSLATE_NOOP("bitcoin-core", "Error: A fatal internal error occurred, see debug.log for details"), QT_TRANSLATE_NOOP("bitcoin-core", "Error: Disk space is low!"), QT_TRANSLATE_NOOP("bitcoin-core", "Error: Unsupported argument -tor found, use -onion."), -QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet locked, unable to create transaction!"), QT_TRANSLATE_NOOP("bitcoin-core", "Failed to listen on any port. Use -listen=0 if you want this."), -QT_TRANSLATE_NOOP("bitcoin-core", "Fee (in BTC/kB) to add to transactions you send (default: %s)"), +QT_TRANSLATE_NOOP("bitcoin-core", "Fee (in HOT/kB) to add to transactions you send (default: %s)"), QT_TRANSLATE_NOOP("bitcoin-core", "Force safe mode (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "Generate coins (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "How many blocks to check at startup (default: %u, 0 = all)"), @@ -210,17 +216,16 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Imports blocks from external blk000??.dat fil QT_TRANSLATE_NOOP("bitcoin-core", "Include IP addresses in debug output (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "Incorrect or no genesis block found. Wrong datadir for network?"), QT_TRANSLATE_NOOP("bitcoin-core", "Information"), -QT_TRANSLATE_NOOP("bitcoin-core", "Initialization sanity check failed. Bitcoin Core is shutting down."), +QT_TRANSLATE_NOOP("bitcoin-core", "Initialization sanity check failed. Hypercoin Core is shutting down."), QT_TRANSLATE_NOOP("bitcoin-core", "Insufficient funds"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -onion address: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -proxy address: '%s'"), +QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -maxtxfee=: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -minrelaytxfee=: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -mintxfee=: '%s'"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -paytxfee=: '%s' (must be at least %s)"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -paytxfee=: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount"), QT_TRANSLATE_NOOP("bitcoin-core", "Invalid netmask specified in -whitelist: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Keep at most unconnectable blocks in memory (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "Keep at most unconnectable transactions in memory (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "Limit size of signature cache to entries (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "Listen for JSON-RPC connections on (default: %u or testnet: %u)"), @@ -239,13 +244,13 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Only connect to nodes in network (ipv4, QT_TRANSLATE_NOOP("bitcoin-core", "Options:"), QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections"), QT_TRANSLATE_NOOP("bitcoin-core", "Prepend debug output with timestamp (default: %u)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Print block on startup, if found in block index"), -QT_TRANSLATE_NOOP("bitcoin-core", "Print block tree on startup (default: %u)"), -QT_TRANSLATE_NOOP("bitcoin-core", "RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), +QT_TRANSLATE_NOOP("bitcoin-core", "RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions)"), QT_TRANSLATE_NOOP("bitcoin-core", "RPC server options:"), +QT_TRANSLATE_NOOP("bitcoin-core", "RPC support for HTTP persistent connections (default: %d)"), QT_TRANSLATE_NOOP("bitcoin-core", "Randomly drop 1 of every network messages"), QT_TRANSLATE_NOOP("bitcoin-core", "Randomly fuzz 1 of every network messages"), QT_TRANSLATE_NOOP("bitcoin-core", "Rebuild block chain index from current blk000??.dat files"), +QT_TRANSLATE_NOOP("bitcoin-core", "Receive and display P2P network alerts (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "Relay and mine data carrier transactions (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "Relay non-P2SH multisig (default: %u)"), QT_TRANSLATE_NOOP("bitcoin-core", "Rescan the block chain for missing wallet transactions"), @@ -277,9 +282,9 @@ QT_TRANSLATE_NOOP("bitcoin-core", "This help message"), QT_TRANSLATE_NOOP("bitcoin-core", "This is experimental software."), QT_TRANSLATE_NOOP("bitcoin-core", "This is intended for regression testing tools and app development."), QT_TRANSLATE_NOOP("bitcoin-core", "Threshold for disconnecting misbehaving peers (default: %u)"), -QT_TRANSLATE_NOOP("bitcoin-core", "To use the %s option"), QT_TRANSLATE_NOOP("bitcoin-core", "Transaction amount too small"), QT_TRANSLATE_NOOP("bitcoin-core", "Transaction amounts must be positive"), +QT_TRANSLATE_NOOP("bitcoin-core", "Transaction too large for fee policy"), QT_TRANSLATE_NOOP("bitcoin-core", "Transaction too large"), QT_TRANSLATE_NOOP("bitcoin-core", "Unable to bind to %s on this computer (bind returned error %s)"), QT_TRANSLATE_NOOP("bitcoin-core", "Unknown network specified in -onlynet: '%s'"), @@ -292,7 +297,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Username for JSON-RPC connections"), QT_TRANSLATE_NOOP("bitcoin-core", "Verifying blocks..."), QT_TRANSLATE_NOOP("bitcoin-core", "Verifying wallet..."), QT_TRANSLATE_NOOP("bitcoin-core", "Wallet %s resides outside data directory %s"), -QT_TRANSLATE_NOOP("bitcoin-core", "Wallet needed to be rewritten: restart Bitcoin Core to complete"), +QT_TRANSLATE_NOOP("bitcoin-core", "Wallet needed to be rewritten: restart Hypercoin Core to complete"), QT_TRANSLATE_NOOP("bitcoin-core", "Wallet options:"), QT_TRANSLATE_NOOP("bitcoin-core", "Warning"), QT_TRANSLATE_NOOP("bitcoin-core", "Warning: This version is obsolete, upgrade required!"), diff --git a/src/qt/bitcoinunits.cpp b/src/qt/bitcoinunits.cpp index 5c542b59ae478..169613f748f49 100644 --- a/src/qt/bitcoinunits.cpp +++ b/src/qt/bitcoinunits.cpp @@ -40,9 +40,9 @@ QString BitcoinUnits::id(int unit) { switch(unit) { - case BTC: return QString("btc"); - case mBTC: return QString("mbtc"); - case uBTC: return QString("ubtc"); + case BTC: return QString("hot"); + case mBTC: return QString("mhot"); + case uBTC: return QString("uhot"); default: return QString("???"); } } @@ -51,9 +51,9 @@ QString BitcoinUnits::name(int unit) { switch(unit) { - case BTC: return QString("BTC"); - case mBTC: return QString("mBTC"); - case uBTC: return QString::fromUtf8("μBTC"); + case BTC: return QString("HOT"); + case mBTC: return QString("mHOT"); + case uBTC: return QString::fromUtf8("μHOT"); default: return QString("???"); } } @@ -62,9 +62,9 @@ QString BitcoinUnits::description(int unit) { switch(unit) { - case BTC: return QString("Bitcoins"); - case mBTC: return QString("Milli-Bitcoins (1 / 1" THIN_SP_UTF8 "000)"); - case uBTC: return QString("Micro-Bitcoins (1 / 1" THIN_SP_UTF8 "000" THIN_SP_UTF8 "000)"); + case BTC: return QString("Hypercoins"); + case mBTC: return QString("Milli-Hypercoins (1 / 1" THIN_SP_UTF8 "000)"); + case uBTC: return QString("Micro-Hypercoins (1 / 1" THIN_SP_UTF8 "000" THIN_SP_UTF8 "000)"); default: return QString("???"); } } diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index 85b43b7b1f58e..267a308a392f9 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -116,6 +116,10 @@ CoinControlDialog::CoinControlDialog(QWidget *parent) : // (un)select all connect(ui->pushButtonSelectAll, SIGNAL(clicked()), this, SLOT(buttonSelectAllClicked())); + // change coin control first column label due Qt4 bug. + // see https://github.com/bitcoin/bitcoin/issues/5716 + ui->treeWidget->headerItem()->setText(COLUMN_CHECKBOX, QString()); + ui->treeWidget->setColumnWidth(COLUMN_CHECKBOX, 84); ui->treeWidget->setColumnWidth(COLUMN_AMOUNT, 100); ui->treeWidget->setColumnWidth(COLUMN_LABEL, 170); @@ -454,6 +458,7 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) // nPayAmount CAmount nPayAmount = 0; bool fDust = false; + unsigned int nBytesPenalty = 0; CMutableTransaction txDummy; foreach(const CAmount &amount, CoinControlDialog::payAmounts) { @@ -461,6 +466,12 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) if (amount > 0) { + if (amount < DUST_THRESHOLD) + { + fDust = true; + nBytesPenalty += 1000; + } + CTxOut txout(amount, (CScript)vector(24, 0)); txDummy.vout.push_back(txout); if (txout.IsDust(::minRelayTxFee)) @@ -537,13 +548,13 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) sPriorityLabel = CoinControlDialog::getPriorityLabel(dPriority, mempoolEstimatePriority); // Fee - nPayFee = CWallet::GetMinimumFee(nBytes, nTxConfirmTarget, mempool); + nPayFee = CWallet::GetMinimumFee(nBytes + nBytesPenalty, nTxConfirmTarget, mempool); // Allow free? double dPriorityNeeded = mempoolEstimatePriority; if (dPriorityNeeded <= 0) dPriorityNeeded = AllowFreeThreshold(); // not enough data, back to hard-coded - fAllowFree = (dPriority >= dPriorityNeeded); + fAllowFree = !nBytesPenalty && (dPriority >= dPriorityNeeded); if (fSendFreeTransactions) if (fAllowFree && nBytes <= MAX_FREE_TRANSACTION_CREATE_SIZE) @@ -554,10 +565,10 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) nChange = nAmount - nPayFee - nPayAmount; // Never create dust outputs; if we would, just add the dust to the fee. - if (nChange > 0 && nChange < CENT) + if (nChange > 0 && nChange < DUST_THRESHOLD) { - CTxOut txout(nChange, (CScript)vector(24, 0)); - if (txout.IsDust(::minRelayTxFee)) + //CTxOut txout(nChange, (CScript)vector(24, 0)); + //if (txout.IsDust(::minRelayTxFee)) { nPayFee += nChange; nChange = 0; diff --git a/src/qt/coincontroltreewidget.cpp b/src/qt/coincontroltreewidget.cpp index 907b5caa05673..0082c9bfd0afa 100644 --- a/src/qt/coincontroltreewidget.cpp +++ b/src/qt/coincontroltreewidget.cpp @@ -17,7 +17,8 @@ void CoinControlTreeWidget::keyPressEvent(QKeyEvent *event) { event->ignore(); int COLUMN_CHECKBOX = 0; - this->currentItem()->setCheckState(COLUMN_CHECKBOX, ((this->currentItem()->checkState(COLUMN_CHECKBOX) == Qt::Checked) ? Qt::Unchecked : Qt::Checked)); + if(this->currentItem()) + this->currentItem()->setCheckState(COLUMN_CHECKBOX, ((this->currentItem()->checkState(COLUMN_CHECKBOX) == Qt::Checked) ? Qt::Unchecked : Qt::Checked)); } else if (event->key() == Qt::Key_Escape) // press esc -> close dialog { @@ -29,4 +30,4 @@ void CoinControlTreeWidget::keyPressEvent(QKeyEvent *event) { this->QTreeWidget::keyPressEvent(event); } -} \ No newline at end of file +} diff --git a/src/qt/editaddressdialog.cpp b/src/qt/editaddressdialog.cpp index 46982cc339cfa..b1e3c5fa0736a 100644 --- a/src/qt/editaddressdialog.cpp +++ b/src/qt/editaddressdialog.cpp @@ -107,7 +107,7 @@ void EditAddressDialog::accept() break; case AddressTableModel::INVALID_ADDRESS: QMessageBox::warning(this, windowTitle(), - tr("The entered address \"%1\" is not a valid Bitcoin address.").arg(ui->addressEdit->text()), + tr("The entered address \"%1\" is not a valid Hypercoin address.").arg(ui->addressEdit->text()), QMessageBox::Ok, QMessageBox::Ok); break; case AddressTableModel::DUPLICATE_ADDRESS: diff --git a/src/qt/forms/addressbookpage.ui b/src/qt/forms/addressbookpage.ui index 52fdc6ef06b50..264edeb7200c3 100644 --- a/src/qt/forms/addressbookpage.ui +++ b/src/qt/forms/addressbookpage.ui @@ -27,7 +27,7 @@ Qt::CustomContextMenu - Double-click to edit address or label + Right-click to edit address or label false diff --git a/src/qt/forms/coincontroldialog.ui b/src/qt/forms/coincontroldialog.ui index c1fef6b9b171a..97667a6a6926e 100644 --- a/src/qt/forms/coincontroldialog.ui +++ b/src/qt/forms/coincontroldialog.ui @@ -132,7 +132,7 @@ Qt::ActionsContextMenu - 0.00 BTC + 0.00 HOT Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -206,7 +206,7 @@ Qt::ActionsContextMenu - 0.00 BTC + 0.00 HOT Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -286,7 +286,7 @@ Qt::ActionsContextMenu - 0.00 BTC + 0.00 HOT Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -321,7 +321,7 @@ Qt::ActionsContextMenu - 0.00 BTC + 0.00 HOT Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse diff --git a/src/qt/forms/helpmessagedialog.ui b/src/qt/forms/helpmessagedialog.ui index 81dbd90b12d7f..ea745154e0d29 100644 --- a/src/qt/forms/helpmessagedialog.ui +++ b/src/qt/forms/helpmessagedialog.ui @@ -16,7 +16,7 @@ - Bitcoin Core - Command-line options + Hypercoin Core - Command-line options diff --git a/src/qt/forms/intro.ui b/src/qt/forms/intro.ui index 09e7bdb024542..782c247bb9b91 100644 --- a/src/qt/forms/intro.ui +++ b/src/qt/forms/intro.ui @@ -20,7 +20,7 @@ QLabel { font-style:italic; } - Welcome to Bitcoin Core. + Welcome to Hypercoin Core. true @@ -46,7 +46,7 @@ - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. true @@ -56,7 +56,7 @@ - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. true diff --git a/src/qt/forms/optionsdialog.ui b/src/qt/forms/optionsdialog.ui index 51156ade4ff1f..fb3fe3889b9f4 100644 --- a/src/qt/forms/optionsdialog.ui +++ b/src/qt/forms/optionsdialog.ui @@ -30,10 +30,10 @@ - Automatically start Bitcoin after logging in to the system. + Automatically start Hypercoin after logging in to the system. - &Start Bitcoin on system login + &Start Hypercoin on system login @@ -189,7 +189,7 @@ - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. Map port using &UPnP @@ -209,7 +209,7 @@ - Connect to the Bitcoin network through a SOCKS5 proxy. + Connect to the Hypercoin network through a SOCKS5 proxy. &Connect through SOCKS5 proxy (default proxy): @@ -375,7 +375,7 @@ - The user interface language can be set here. This setting will take effect after restarting Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. diff --git a/src/qt/forms/overviewpage.ui b/src/qt/forms/overviewpage.ui index 53d416ef3801a..5e1361e90f1e4 100644 --- a/src/qt/forms/overviewpage.ui +++ b/src/qt/forms/overviewpage.ui @@ -64,7 +64,7 @@ WhatsThisCursor - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. QLabel { color: red; } @@ -112,7 +112,7 @@ Unconfirmed transactions to watch-only addresses - 0.000 000 00 BTC + 0.000 000 00 HOT Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -137,7 +137,7 @@ Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - 0.000 000 00 BTC + 0.000 000 00 HOT Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -162,7 +162,7 @@ Mined balance in watch-only addresses that has not yet matured - 0.000 000 00 BTC + 0.000 000 00 HOT Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -220,7 +220,7 @@ Mined balance that has not yet matured - 0.000 000 00 BTC + 0.000 000 00 HOT Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -265,7 +265,7 @@ Your current total balance - 0.000 000 00 BTC + 0.000 000 00 HOT Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -290,7 +290,7 @@ Current total balance in watch-only addresses - 0.000 000 00 BTC + 0.000 000 00 HOT Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -332,7 +332,7 @@ Your current spendable balance - 0.000 000 00 BTC + 0.000 000 00 HOT Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -436,7 +436,7 @@ WhatsThisCursor - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. QLabel { color: red; } diff --git a/src/qt/forms/receivecoinsdialog.ui b/src/qt/forms/receivecoinsdialog.ui index 03fcb2fb50d1c..2a6017d238ce5 100644 --- a/src/qt/forms/receivecoinsdialog.ui +++ b/src/qt/forms/receivecoinsdialog.ui @@ -48,7 +48,7 @@ - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. &Message: @@ -71,7 +71,7 @@ - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. diff --git a/src/qt/forms/rpcconsole.ui b/src/qt/forms/rpcconsole.ui index c5ac371619c43..541c3a25378d0 100644 --- a/src/qt/forms/rpcconsole.ui +++ b/src/qt/forms/rpcconsole.ui @@ -331,7 +331,7 @@ - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. &Open diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendcoinsdialog.ui index 0bf04c75eb37a..ba1f554dad8dc 100644 --- a/src/qt/forms/sendcoinsdialog.ui +++ b/src/qt/forms/sendcoinsdialog.ui @@ -324,7 +324,7 @@ Qt::ActionsContextMenu - 0.00 BTC + 0.00 HOT Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -404,7 +404,7 @@ Qt::ActionsContextMenu - 0.00 BTC + 0.00 HOT Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -484,7 +484,7 @@ Qt::ActionsContextMenu - 0.00 BTC + 0.00 HOT Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -513,7 +513,7 @@ Qt::ActionsContextMenu - 0.00 BTC + 0.00 HOT Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -904,7 +904,7 @@ - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. @@ -917,7 +917,7 @@ true - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. (read the tooltip) @@ -1352,7 +1352,7 @@ IBeamCursor - 123.456 BTC + 123.456 HOT Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui index 9d829970f0f29..2f31de55c09d6 100644 --- a/src/qt/forms/sendcoinsentry.ui +++ b/src/qt/forms/sendcoinsentry.ui @@ -51,7 +51,7 @@ - The Bitcoin address to send the payment to + The Hypercoin address to send the payment to @@ -154,7 +154,7 @@ - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. Qt::PlainText diff --git a/src/qt/forms/signverifymessagedialog.ui b/src/qt/forms/signverifymessagedialog.ui index 40b2da322859c..71659f1eaf4d9 100644 --- a/src/qt/forms/signverifymessagedialog.ui +++ b/src/qt/forms/signverifymessagedialog.ui @@ -48,7 +48,7 @@ - The Bitcoin address to sign the message with + The Hypercoin address to sign the message with @@ -152,7 +152,7 @@ - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address Sign &Message @@ -258,7 +258,7 @@ - The Bitcoin address the message was signed with + The Hypercoin address the message was signed with @@ -295,7 +295,7 @@ - Verify the message to ensure it was signed with the specified Bitcoin address + Verify the message to ensure it was signed with the specified Hypercoin address Verify &Message diff --git a/src/qt/guiconstants.h b/src/qt/guiconstants.h index 8f3e476fd9aef..820b34b261ff7 100644 --- a/src/qt/guiconstants.h +++ b/src/qt/guiconstants.h @@ -44,9 +44,9 @@ static const int MAX_URI_LENGTH = 255; /* Number of frames in spinner animation */ #define SPINNER_FRAMES 35 -#define QAPP_ORG_NAME "Bitcoin" -#define QAPP_ORG_DOMAIN "bitcoin.org" -#define QAPP_APP_NAME_DEFAULT "Bitcoin-Qt" -#define QAPP_APP_NAME_TESTNET "Bitcoin-Qt-testnet" +#define QAPP_ORG_NAME "Hypercoin" +#define QAPP_ORG_DOMAIN "hypercoin.org" +#define QAPP_APP_NAME_DEFAULT "Hypercoin-Qt" +#define QAPP_APP_NAME_TESTNET "Hypercoin-Qt-testnet" #endif // BITCOIN_QT_GUICONSTANTS_H diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index a1ae756c43e63..cd30a60761dbf 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -67,6 +67,9 @@ static boost::filesystem::detail::utf8_codecvt_facet utf8; #if defined(Q_OS_MAC) extern double NSAppKitVersionNumber; +#if !defined(NSAppKitVersionNumber10_8) +#define NSAppKitVersionNumber10_8 1187 +#endif #if !defined(NSAppKitVersionNumber10_9) #define NSAppKitVersionNumber10_9 1265 #endif @@ -103,7 +106,7 @@ void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent) #if QT_VERSION >= 0x040700 // We don't want translators to use own addresses in translations // and this is the only place, where this address is supplied. - widget->setPlaceholderText(QObject::tr("Enter a Bitcoin address (e.g. %1)").arg("1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L")); + widget->setPlaceholderText(QObject::tr("Enter a Hypercoin address (e.g. %1)").arg("HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm")); #endif widget->setValidator(new BitcoinAddressEntryValidator(parent)); widget->setCheckValidator(new BitcoinAddressCheckValidator(parent)); @@ -121,7 +124,7 @@ void setupAmountWidget(QLineEdit *widget, QWidget *parent) bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out) { // return if URI is not valid or is no bitcoin: URI - if(!uri.isValid() || uri.scheme() != QString("bitcoin")) + if(!uri.isValid() || uri.scheme() != QString("hypercoin")) return false; SendCoinsRecipient rv; @@ -185,9 +188,9 @@ bool parseBitcoinURI(QString uri, SendCoinsRecipient *out) // // Cannot handle this later, because bitcoin:// will cause Qt to see the part after // as host, // which will lower-case it (and thus invalidate the address). - if(uri.startsWith("bitcoin://", Qt::CaseInsensitive)) + if(uri.startsWith("hypercoin://", Qt::CaseInsensitive)) { - uri.replace(0, 10, "bitcoin:"); + uri.replace(0, 11, "hypercoin:"); } QUrl uriInstance(uri); return parseBitcoinURI(uriInstance, out); @@ -195,7 +198,7 @@ bool parseBitcoinURI(QString uri, SendCoinsRecipient *out) QString formatBitcoinURI(const SendCoinsRecipient &info) { - QString ret = QString("bitcoin:%1").arg(info.address); + QString ret = QString("hypercoin:%1").arg(info.address); int paramCount = 0; if (info.amount) @@ -383,22 +386,38 @@ void openDebugLogfile() QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathDebug))); } -void SubstituteFonts() +void SubstituteFonts(const QString& language) { #if defined(Q_OS_MAC) // Background: -// OSX's default font changed in 10.9 and QT is unable to find it with its +// OSX's default font changed in 10.9 and Qt is unable to find it with its // usual fallback methods when building against the 10.7 sdk or lower. // The 10.8 SDK added a function to let it find the correct fallback font. // If this fallback is not properly loaded, some characters may fail to // render correctly. // +// The same thing happened with 10.10. .Helvetica Neue DeskInterface is now default. +// // Solution: If building with the 10.7 SDK or lower and the user's platform // is 10.9 or higher at runtime, substitute the correct font. This needs to // happen before the QApplication is created. #if defined(MAC_OS_X_VERSION_MAX_ALLOWED) && MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8 - if (floor(NSAppKitVersionNumber) >= NSAppKitVersionNumber10_9) - QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande"); + if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_8) + { + if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_9) + /* On a 10.9 - 10.9.x system */ + QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande"); + else + { + /* 10.10 or later system */ + if (language == "zh_CN" || language == "zh_TW" || language == "zh_HK") // traditional or simplified Chinese + QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Heiti SC"); + else if (language == "ja") // Japanesee + QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Songti SC"); + else + QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Lucida Grande"); + } + } #endif #endif } @@ -548,7 +567,7 @@ TableViewLastColumnResizingFixer::TableViewLastColumnResizingFixer(QTableView* t #ifdef WIN32 boost::filesystem::path static StartupShortcutPath() { - return GetSpecialFolderPath(CSIDL_STARTUP) / "Bitcoin.lnk"; + return GetSpecialFolderPath(CSIDL_STARTUP) / "Hypercoin.lnk"; } bool GetStartOnSystemStartup() @@ -630,7 +649,7 @@ boost::filesystem::path static GetAutostartDir() boost::filesystem::path static GetAutostartFilePath() { - return GetAutostartDir() / "bitcoin.desktop"; + return GetAutostartDir() / "hypercoin.desktop"; } bool GetStartOnSystemStartup() @@ -671,7 +690,7 @@ bool SetStartOnSystemStartup(bool fAutoStart) // Write a bitcoin.desktop file to the autostart directory: optionFile << "[Desktop Entry]\n"; optionFile << "Type=Application\n"; - optionFile << "Name=Bitcoin\n"; + optionFile << "Name=Hypercoin\n"; optionFile << "Exec=" << pszExePath << " -min\n"; optionFile << "Terminal=false\n"; optionFile << "Hidden=false\n"; diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index 09c79db2d9121..41ff608715353 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -107,7 +107,7 @@ namespace GUIUtil void openDebugLogfile(); // Replace invalid default fonts with known good ones - void SubstituteFonts(); + void SubstituteFonts(const QString& language); /** Qt event filter that intercepts ToolTipChange events, and replaces the tooltip with a rich text representation if needed. This assures that Qt can word-wrap long tooltip messages. diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index 7618bff69d9bf..14cd785bf8736 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -181,7 +181,7 @@ void Intro::pickDataDirectory() TryCreateDirectory(GUIUtil::qstringToBoostPath(dataDir)); break; } catch(fs::filesystem_error &e) { - QMessageBox::critical(0, tr("Bitcoin Core"), + QMessageBox::critical(0, tr("Hypercoin Core"), tr("Error: Specified data directory \"%1\" cannot be created.").arg(dataDir)); /* fall through, back to choosing screen */ } diff --git a/src/qt/locale/bitcoin_ach.ts b/src/qt/locale/bitcoin_ach.ts index ddb9fb85ced6c..835ddb8eaa753 100644 --- a/src/qt/locale/bitcoin_ach.ts +++ b/src/qt/locale/bitcoin_ach.ts @@ -1,4 +1,4 @@ - + AddressBookPage diff --git a/src/qt/locale/bitcoin_af_ZA.ts b/src/qt/locale/bitcoin_af_ZA.ts index c369c3c68ff96..881c00b62a5c2 100644 --- a/src/qt/locale/bitcoin_af_ZA.ts +++ b/src/qt/locale/bitcoin_af_ZA.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Dubbel-klik om die adres of etiket te wysig - Create a new address Skep 'n nuwe adres @@ -147,8 +143,8 @@ &Opsies - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -658,10 +654,6 @@ Loading addresses... Laai adresse... - - Invalid amount - Ongeldige bedrag - Insufficient funds Onvoldoende fondse diff --git a/src/qt/locale/bitcoin_ar.ts b/src/qt/locale/bitcoin_ar.ts index 101f51f8dcbf8..3062857228ee1 100644 --- a/src/qt/locale/bitcoin_ar.ts +++ b/src/qt/locale/bitcoin_ar.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - أنقر بالماوس مرتين لتعديل العنوان او الوصف + Right-click to edit address or label + انقر بالزر الايمن لتعديل العنوان Create a new address @@ -66,12 +66,12 @@ استقبال العناوين - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - هذه هي عناوين Bitcion التابعة لك من أجل إرسال الدفعات. تحقق دائما من المبلغ و عنوان المرسل المستقبل قبل إرسال العملات + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + هذه هي عناوين Hypercoin التابعة لك من أجل إرسال الدفعات. تحقق دائما من المبلغ و عنوان المرسل المستقبل قبل إرسال العملات - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - هذه هي عناوين Bitcion التابعة لك من أجل إستقبال الدفعات. ينصح استخدام عنوان جديد من أجل كل صفقة + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + هذه هي عناوين Hypercoin التابعة لك من أجل إستقبال الدفعات. ينصح استخدام عنوان جديد من أجل كل صفقة Copy &Label @@ -160,8 +160,8 @@ تأكيد تشفير المحفظة - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - تحذير: إذا قمت بتشفير محفظتك وفقدت كلمة المرور الخاص بك, ستفقد كل عملات BITCOINS الخاصة بك. + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + تحذير: إذا قمت بتشفير محفظتك وفقدت كلمة المرور الخاص بك, ستفقد كل عملات HYPERCOINS الخاصة بك. Are you sure you wish to encrypt your wallet? @@ -184,7 +184,7 @@ أدخل عبارة مرور جديدة إلى المحفظة. الرجاء استخدام عبارة مرور تتكون من10 حروف عشوائية على الاقل, أو أكثر من 7 كلمات - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. بتكوين سوف يغلق الآن لإنهاء عملية التشفير. تذكر أن التشفير لا يستطيع حماية محفظتك تمامًا من السرقة من خلال البرمجيات الخبيثة التي تصيب جهازك @@ -291,16 +291,24 @@ افتح &URI... - Bitcoin Core client - عميل bitcion core + Hypercoin Core client + عميل hypercoin core - Send coins to a Bitcoin address - ارسل عملات الى عنوان بيتكوين + Importing blocks from disk... + استيراد كتل من القرص ... - Modify configuration options for Bitcoin - تعديل إعدادات bitcoin + Reindexing blocks on disk... + إعادة فهرسة الكتل على القرص + + + Send coins to a Hypercoin address + ارسل عملات الى عنوان Hypercoin + + + Modify configuration options for Hypercoin + تعديل إعدادات hypercoin Backup wallet to another location @@ -319,7 +327,7 @@ &التحقق من الرسالة... - Bitcoin + Hypercoin بت كوين @@ -331,8 +339,8 @@ &استقبل - Show information about Bitcoin Core - اظهار معلومات حول bitcion core + Show information about Hypercoin Core + اظهار معلومات حول Hypercoin core &Show / Hide @@ -363,12 +371,12 @@ شريط أدوات علامات التبويب - Bitcoin Core + Hypercoin Core جوهر البيت كوين - &About Bitcoin Core - حول bitcoin core + &About Hypercoin Core + حول hypercoin core %n hour(s) @@ -618,7 +626,7 @@ HelpMessageDialog - Bitcoin Core + Hypercoin Core جوهر البيت كوين @@ -626,7 +634,7 @@ النسخة - About Bitcoin Core + About Hypercoin Core عن جوهر البيت كوين @@ -653,7 +661,7 @@ استخدام دليل بيانات مخصص: - Bitcoin Core + Hypercoin Core جوهر البيت كوين @@ -1144,10 +1152,6 @@ Copy change نسخ التعديل - - Total Amount %1 (= %2) - مجموع المبلغ %1 (= %2) - or أو @@ -1230,7 +1234,7 @@ التوقيع - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address وقع الرسالة لتثبت انك تمتلك عنوان البت كوين هذا @@ -1297,7 +1301,7 @@ SplashScreen - Bitcoin Core + Hypercoin Core جوهر البيت كوين @@ -1674,10 +1678,6 @@ Error: Disk space is low! تحذير: مساحة القرص منخفضة - - Error: Wallet locked, unable to create transaction! - تحذير: المحفظة مغلقة , لا تستطيع تنفيذ المعاملة - Failed to listen on any port. Use -listen=0 if you want this. فشل في الاستماع على أي منفذ. استخدام الاستماع = 0 إذا كنت تريد هذا. @@ -1746,10 +1746,6 @@ Invalid -proxy address: '%s' عنوان البروكسي غير صحيح : '%s' - - Invalid amount - قيمة غير صحيحة - Insufficient funds اموال غير كافية @@ -1770,10 +1766,6 @@ Done loading انتهاء التحميل - - To use the %s option - لاستخدام %s الخيار - Error خطأ diff --git a/src/qt/locale/bitcoin_be_BY.ts b/src/qt/locale/bitcoin_be_BY.ts index e63628396c889..77638f1da23d6 100644 --- a/src/qt/locale/bitcoin_be_BY.ts +++ b/src/qt/locale/bitcoin_be_BY.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Двайны клік для рэдагавання адрасу ці пазнакі + Right-click to edit address or label + Правы клік, каб рэдагаваць адрас ці метку Create a new address @@ -65,10 +65,26 @@ Receiving addresses адрасы Прымання + + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Тут знаходзяцца Hypercoin-адрасы для высылання плацяжоў. Заўсёды спраўджвайце колькасць і адрас прызначэння перад здзяйсненнем транзакцыі. + + + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Тут знаходзяцца Hypercoin-адрасы для прымання плацяжоў. Пажадана выкарыстоўваць новы адрас для кожнай транзакцыі. + + + Copy &Label + Капіяваць Метку + &Edit Рэдагаваць + + Export Address List + Экспартаваць Спіс Адрасоў + Comma separated file (*.csv) Коскамі падзелены файл (*.csv) @@ -77,12 +93,16 @@ Exporting Failed Экспартаванне няўдалае - + + There was an error trying to save the address list to %1. Please try again. + Адбылася памылка падчас спробы захаваць адрас у %1. Паспрабуйце зноў. + + AddressTableModel Label - Пазнака + Метка Address @@ -95,6 +115,10 @@ AskPassphraseDialog + + Passphrase Dialog + Дыялог сакрэтнай фразы + Enter passphrase Увядзіце кодавую фразу @@ -140,13 +164,17 @@ Пацвердзіце шыфраванне гаманца - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Увага: калі вы зашыфруеце свой гаманец і страціце парольную фразу, то <b>СТРАЦІЦЕ ЎСЕ СВАЕ БІТКОЙНЫ</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Увага: калі вы зашыфруеце свой гаманец і страціце парольную фразу, то <b>СТРАЦІЦЕ ЎСЕ СВАЕ HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? Ці ўпэўненыя вы, што жадаеце зашыфраваць свой гаманец? + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + ВАЖНА: Усе папярэднія копіі гаманца варта замяніць новым зашыфраваным файлам. У мэтах бяспекі папярэднія копіі незашыфраванага файла-гаманца стануць неўжывальнымі, калі вы станеце карыстацца новым зашыфраваным гаманцом. + Warning: The Caps Lock key is on! Увага: Caps Lock уключаны! @@ -156,8 +184,12 @@ Гаманец зашыфраваны - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin зачыняецца дзеля завяршэння працэсса шыфравання. Памятайце, што шыфраванне гаманца цалкам абараняе вашыя сродкі ад скрадання шкоднымі праграмамі якія могуць пранікнуць у ваш камп'ютар. + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + Увядзіце новы пароль для гаманца.<br/>Парольная фраза павинна складацца<b> не меньш чым з дзесяці сімвалаў</b>, ці <b>больш чым з васьмі слоў</b>. + + + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin зачыняецца дзеля завяршэння працэсса шыфравання. Памятайце, што шыфраванне гаманца цалкам абараняе вашыя сродкі ад скрадання шкоднымі праграмамі якія могуць пранікнуць у ваш камп'ютар. Wallet encryption failed @@ -242,10 +274,42 @@ &Encrypt Wallet... Зашыфраваць Гаманец... + + &Backup Wallet... + Стварыць копію гаманца... + + + &Change Passphrase... + &Change Passphrase... + + + &Sending addresses... + Адрасы дасылання... + + + &Receiving addresses... + Адрасы прымання... + Open &URI... Адчыниць &URI... + + Hypercoin Core client + Hypercoin Core кліент + + + Importing blocks from disk... + Імпартуюцца блокі з дыску... + + + Reindexing blocks on disk... + Пераіндэксацыя блокаў на дыску... + + + Send coins to a Hypercoin address + Даслаць манеты на Hypercoin-адрас + Backup wallet to another location Зрабіце копію гаманца ў іншае месца @@ -258,6 +322,18 @@ &Debug window Вакно адладкі + + Open debugging and diagnostic console + Адкрыць кансоль дыягностыкі і адладкі + + + &Verify message... + Праверыць паведамленне... + + + Hypercoin + Hypercoin + Wallet Гаманец @@ -270,6 +346,10 @@ &Receive Атрымаць + + Show information about Hypercoin Core + Паказаць інфармацыю аб Hypercoin Core + &Show / Hide &Паказаць / Схаваць @@ -282,6 +362,14 @@ Encrypt the private keys that belong to your wallet Зашыфраваць прыватныя ключы, якия належаць вашаму гаманцу + + Sign messages with your Hypercoin addresses to prove you own them + Падпісаць паведамленне з дапамогай Hypercoin-адраса каб даказаць, што яно належыць вам + + + Verify messages to ensure they were signed with specified Hypercoin addresses + Спраўдзіць паведамленне з дапамогай Hypercoin-адраса каб даказаць, што яно належыць вам + &File Ф&айл @@ -294,14 +382,74 @@ &Help Дапамога + + Hypercoin Core + Hypercoin Core + + + Request payments (generates QR codes and hypercoin: URIs) + Запатрабаваць плацёж (генеруецца QR-код для hypercoin URI) + + + &About Hypercoin Core + Аб Hypercoin Core + + + Show the list of used sending addresses and labels + Паказаць спіс адрасоў і метак для дасылання + + + Show the list of used receiving addresses and labels + Паказаць спіс адрасоў і метак для прымання + + + Open a hypercoin: URI or payment request + Адкрыць hypercoin: URI ці запыт плацяжу + + + &Command-line options + Опцыі каманднага радка + + + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Паказваць даведку Hypercoin Core каб атрымаць спіс магчымых опцый каманднага радка + - %n active connection(s) to Bitcoin network - %n актыўнае злучэнне з Bitcoin-сецівам%n актыўных злучэнняў з Bitcoin-сецівам + %n active connection(s) to Hypercoin network + %n актыўнае злучэнне з Hypercoin-сецівам%n актыўных злучэнняў з Hypercoin-сецівам%n актыўных злучэнняў з Hypercoin-сецівам%n актыўных злучэнняў з Hypercoin-сецівам + + + No block source available... + Крыніца блокаў недасяжная... + + + %1 and %2 + %1 і %2 + + + %1 behind + %1 таму + + + Last received block was generated %1 ago. + Апошні прыняты блок генераваны %1 таму. + + + Transactions after this will not yet be visible. + Транзакцыи пасля гэтай не будуць бачныя. Error Памылка + + Warning + Увага + + + Information + Інфармацыя + Up to date Сінхранізавана @@ -341,25 +489,81 @@ Address: %4 ClientModel - + + Network Alert + Трывога Сеціва + + CoinControlDialog + + Quantity: + Колькасць: + + + Bytes: + Байтаў: + Amount: Колькасць: + + Priority: + Прыярытэт: + + + Fee: + Камісія: + + + Dust: + Пыл: + + + After Fee: + Пасля камісіі: + + + (un)select all + (не)выбраць ўсё + + + Tree mode + Рэжым дрэва + + + List mode + Рэжым спіса + Amount Колькасць + + Received with label + Прыняць праз метку + + + Received with address + Прыняць праз адрас + Date Дата + + Confirmations + Пацверджанняў + Confirmed Пацверджана + + Priority + Прыярытэт + Copy address Капіяваць адрас @@ -376,6 +580,102 @@ Address: %4 Copy transaction ID Капіяваць ID транзакцыі + + Lock unspent + Замкнуць непатрачанае + + + Unlock unspent + Адамкнуць непатрачанае + + + Copy quantity + Капіяваць колькасць + + + Copy fee + Капіяваць камісію + + + Copy after fee + Капіяваць з выняткам камісіі + + + Copy bytes + Капіяваць байты + + + Copy priority + Капіяваць прыярытэт + + + Copy dust + Капіяваць пыл + + + highest + найвышэйшы + + + higher + вышэйшы + + + high + высокі + + + medium-high + вышэй сярэдняга + + + medium + сярэдні + + + low-medium + ніжэй сярэдняга + + + low + нізкі + + + lower + ніжэйшы + + + lowest + найніжэйшы + + + yes + так + + + no + не + + + This label turns red, if the transaction size is greater than 1000 bytes. + Гэта метка стане чырвонай, калі транзакцыя перавысіць 1000 байт. + + + This means a fee of at least %1 per kB is required. + Гэта значыць патрэбную камісію мінімум %1 на Кб. + + + Transactions with higher priority are more likely to get included into a block. + Транзакцыя большага прыярытэту больш прываблівая для ўключэння ў блок. + + + This label turns red, if the priority is smaller than "medium". + Гэта метка стане чырвонай, калі прыярытэт меньш чым "сярэдні". + + + This label turns red, if any recipient receives an amount smaller than %1. + Гэта метка стане чырвонай, калі любы з адрасатаў атрымае меньш чым %1. + (no label) непазначаны @@ -389,7 +689,7 @@ Address: %4 &Label - Пазнака + Метка &Address @@ -426,24 +726,64 @@ Address: %4 FreespaceChecker + + A new data directory will be created. + Будзе створаны новы каталог з данымі. + + + name + імя + + + Directory already exists. Add %1 if you intend to create a new directory here. + Каталог ужо існуе. Дадайце %1 калі вы збіраецеся стварыць тут новы каталог. + HelpMessageDialog + + Hypercoin Core + Hypercoin Core + (%1-bit) (%1-біт) - About Bitcoin Core - Аб Bitcoin Core + About Hypercoin Core + Аб Hypercoin Core + + + Command-line options + Опцыі каманднага радка Usage: Ужыванне: + + command-line options + опцыі каманднага радка + + + Start minimized + Стартаваць ммінімізаванай + Intro + + Welcome + Вітаем + + + Welcome to Hypercoin Core. + Вітаем у Hypercoin Core. + + + Hypercoin Core + Hypercoin Core + Error Памылка @@ -451,6 +791,10 @@ Address: %4 OpenURIDialog + + Open URI + Адкрыць URI + OptionsDialog @@ -458,6 +802,10 @@ Address: %4 Options Опцыі + + MB + Мб + OverviewPage @@ -489,7 +837,7 @@ Address: %4 ReceiveCoinsDialog &Label: - Пазнака: + Метка: Copy label @@ -512,7 +860,11 @@ Address: %4 Label - Пазнака + Метка + + + Message + Паведамленне @@ -523,7 +875,11 @@ Address: %4 Label - Пазнака + Метка + + + Message + Паведамленне Amount @@ -540,14 +896,38 @@ Address: %4 Send Coins Даслаць Манеты + + Quantity: + Колькасць: + + + Bytes: + Байтаў: + Amount: Колькасць: + + Priority: + Прыярытэт: + + + Fee: + Камісія: + + + After Fee: + Пасля камісіі: + Send to multiple recipients at once Даслаць адразу некалькім атрымальнікам + + Dust: + Пыл: + Balance: Баланс: @@ -560,10 +940,30 @@ Address: %4 Confirm send coins Пацвердзіць дасыланне манет + + Copy quantity + Капіяваць колькасць + Copy amount Капіяваць колькасць + + Copy fee + Капіяваць камісію + + + Copy after fee + Капіяваць з выняткам камісіі + + + Copy bytes + Капіяваць байты + + + Copy priority + Капіяваць прыярытэт + The amount to pay must be larger than 0. Велічыня плацяжу мае быць больш за 0. @@ -572,6 +972,10 @@ Address: %4 (no label) непазначаны + + Copy dust + Капіяваць пыл + SendCoinsEntry @@ -589,7 +993,7 @@ Address: %4 &Label: - Пазнака: + Метка: Alt+A @@ -603,7 +1007,11 @@ Address: %4 Alt+P Alt+P - + + Memo: + Памятка: + + ShutdownWindow @@ -624,6 +1032,10 @@ Address: %4 SplashScreen + + Hypercoin Core + Hypercoin Core + The Bitcoin Core developers Распрацоўнікі Bitcoin Core @@ -635,9 +1047,17 @@ Address: %4 TrafficGraphWidget - + + KB/s + Кб/с + + TransactionDesc + + %1/offline + %1/offline + %1/unconfirmed %1/непацверджана @@ -646,10 +1066,22 @@ Address: %4 %1 confirmations %1 пацверджанняў + + Status + Статус + Date Дата + + Message + Паведамленне + + + Comment + Каментар + Transaction ID ID @@ -849,7 +1281,7 @@ Address: %4 Label - Пазнака + Метка Address @@ -914,14 +1346,94 @@ Address: %4 Use the test network Ужываць тэставае сеціва + + Do you want to rebuild the block database now? + Ці жадаеце вы перабудаваць зараз базу звестак блокаў? + + + Error initializing block database + Памылка ініцыялізацыі базвы звестак блокаў + + + Error initializing wallet database environment %s! + Памалка ініцыялізацыі асяроддзя базы звестак гаманца %s! + + + Error loading block database + Памылка загрузкі базвы звестак блокаў + + + Error opening block database + Памылка адчынення базы звестак блокаў + + + Error: Disk space is low! + Памылка: Замала вольнага месца на дыску! + + + Importing... + Імпартаванне... + + + Not enough file descriptors available. + Не хапае файлавых дэскрыптараў. + + + Use UPnP to map the listening port (default: %u) + Use UPnP to map the listening port (default: %u) + + + Verifying blocks... + Праверка блокаў... + + + Verifying wallet... + Праверка гаманца... + + + Wallet options: + Опцыі гаманца: + + + Imports blocks from external blk000??.dat file + Імпартаванне блокаў з вонкавага blk000??.dat файла + + + Information + Інфармацыя + + + RPC server options: + Опцыі RPC сервера: + Send trace/debug info to console instead of debug.log file Слаць trace/debug звесткі ў кансоль замест файла debug.log + + Signing transaction failed + Памылка подпісу транзакцыі + + + This is experimental software. + Гэта эксперыментальная праграма. + + + Transaction amount too small + Транзакцыя занадта малая + + + Transaction too large + Транзакцыя занадта вялікая + Username for JSON-RPC connections Імя карыстальника для JSON-RPC злучэнняў + + Warning + Увага + Password for JSON-RPC connections Пароль для JSON-RPC злучэнняў @@ -954,10 +1466,6 @@ Address: %4 Error loading wallet.dat Памылка загрузкі wallet.dat - - Invalid amount - Памылковая колькасць - Insufficient funds Недастаткова сродкаў @@ -970,6 +1478,10 @@ Address: %4 Loading wallet... Загружаем гаманец... + + Cannot downgrade wallet + Немагчыма рэгрэсаваць гаманец + Rescanning... Перасканаванне... @@ -983,4 +1495,4 @@ Address: %4 Памылка - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_bg.ts b/src/qt/locale/bitcoin_bg.ts index 3095aa117286e..4390b8840d621 100644 --- a/src/qt/locale/bitcoin_bg.ts +++ b/src/qt/locale/bitcoin_bg.ts @@ -1,18 +1,30 @@ - + AddressBookPage - Double-click to edit address or label - Двоен клик за редакция на адрес или име + Right-click to edit address or label + Десен клик за промяна на адреса или името Create a new address Създаване на нов адрес + + &New + Нов + Copy the currently selected address to the system clipboard Копиране на избрания адрес + + &Copy + Копирай + + + C&lose + Затвори + &Copy Address &Копирай @@ -25,10 +37,26 @@ Export the data in the current tab to a file Запишете данните от текущия раздел във файл + + &Export + Изнеси + &Delete &Изтриване + + Choose the address to send coins to + Изберете адрес, на който да се изпращат монети + + + Choose the address to receive coins with + Изберете адрес за получаване на монети + + + C&hoose + Избери + Sending addresses Адреси за изпращане @@ -37,6 +65,14 @@ Receiving addresses Адреси за получаване + + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Това са адресите на получателите на плащания. Винаги проверявайте размера на сумата и адреса на получателя, преди да изпратите монети. + + + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Това са Вашите Hypercoin адреси,благодарение на които ще получавате плащания.Препоръчително е да използвате нови адреси за получаване за всяка транзакция. + Copy &Label Копирай &име @@ -57,7 +93,11 @@ Exporting Failed Грешка при изнасянето - + + There was an error trying to save the address list to %1. Please try again. + Възникна грешка при опита за запазване на списъка с адреси в %1.Моля опитайте отново. + + AddressTableModel @@ -75,6 +115,10 @@ AskPassphraseDialog + + Passphrase Dialog + Диалог за паролите + Enter passphrase Въведи парола @@ -120,8 +164,8 @@ Потвърждаване на криптирането - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - ВНИМАНИЕ: Ако защитите вашият портфейл и изгубите ключовата дума, вие ще <b>ИЗГУБИТЕ ВСИЧКИТЕ СИ БИТКОЙНОВЕ</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + ВНИМАНИЕ: Ако защитите вашият портфейл и изгубите ключовата дума, вие ще <b>ИЗГУБИТЕ ВСИЧКИТЕ СИ HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -140,8 +184,8 @@ Портфейлът е криптиран - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Биткоин ще се затоври сега за да завърши процеса на криптиране. Запомнете, че криптирането на вашия портефейл не може напълно да предпази вашите Бит-монети от кражба чрез зловреден софтуер, инфектирал вашия компютър + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin ще се затоври сега за да завърши процеса на криптиране. Запомнете, че криптирането на вашия портефейл не може напълно да предпази вашите hypercoins от кражба чрез зловреден софтуер, инфектирал вашия компютър Wallet encryption failed @@ -186,6 +230,10 @@ &Overview &Баланс + + Node + Сървър + Show general overview of wallet Обобщена информация за портфейла @@ -231,20 +279,52 @@ &Смяна на паролата... - Send coins to a Bitcoin address - Изпращане към Биткоин адрес + &Sending addresses... + &Изпращане на адресите... + + + &Receiving addresses... + &Получаване на адресите... + + + Open &URI... + Отвори &URI... + + + Hypercoin Core client + Hypercoin Core клиент + + + Send coins to a Hypercoin address + Изпращане към Hypercoin адрес + + + Modify configuration options for Hypercoin + Променете настройките на Hypercoin + + + Backup wallet to another location + Запазване на портфейла на друго място Change the passphrase used for wallet encryption Променя паролата за портфейла + + &Debug window + &Прозорец за отстраняване на грешки + + + Open debugging and diagnostic console + Отворете конзолата за диагностика и отстраняване на грешки + &Verify message... &Проверка на съобщение... - Bitcoin - Биткоин + Hypercoin + Hypercoin Wallet @@ -254,6 +334,14 @@ &Send &Изпращане + + &Receive + &Получаване + + + Show information about Hypercoin Core + Покажете информация за Hypercoin ядрото + &Show / Hide &Покажи / Скрий @@ -262,6 +350,18 @@ Show or hide the main Window Показване и скриване на основния прозорец + + Encrypt the private keys that belong to your wallet + Шифроване на личните ключове,които принадлежат на портфейла Ви. + + + Sign messages with your Hypercoin addresses to prove you own them + Пишете съобщения със своя Hypercoin адрес за да докажете,че е ваш. + + + Verify messages to ensure they were signed with specified Hypercoin addresses + Потвърждаване на съобщения за да се знае,че са написани с дадените Hypercoin адреси. + &File &Файл @@ -278,9 +378,45 @@ Tabs toolbar Раздели + + Hypercoin Core + Hypercoin ядро + + + Request payments (generates QR codes and hypercoin: URIs) + Изискване на плащания(генерира QR кодове и hypercoin: URIs) + + + &About Hypercoin Core + &Относно Hypercoin Core + + + Show the list of used sending addresses and labels + Показване на списъка с използвани адреси и имена + + + Show the list of used receiving addresses and labels + Покажи списък с използваните адреси и имена. + + + Open a hypercoin: URI or payment request + Отворете hypercoin: URI или заявка за плащане + + + &Command-line options + &Налични команди + + + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Покажи помощните съобщения на Hypercoin за да видиш наличните и валидни команди + - %n active connection(s) to Bitcoin network - %n връзка към Биткоин мрежата%n връзки към Биткоин мрежата + %n active connection(s) to Hypercoin network + %n връзка към Hypercoin мрежата%n връзки към Hypercoin мрежата + + + No block source available... + Липсва източник на блоковете... %n hour(s) @@ -302,6 +438,14 @@ %n year(s) %n година%n години + + %1 behind + %1 зад + + + Transactions after this will not yet be visible. + Транзакции след това няма все още да бъдат видими. + Error Грешка @@ -318,6 +462,10 @@ Up to date Синхронизиран + + Processed %n blocks of transaction history. + Обслужени %n блокове от историята с транзакции.Обслужени %n блокове от историята с транзакции. + Catching up... Зарежда блокове... @@ -330,6 +478,18 @@ Incoming transaction Входяща трансакция + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Дата: %1 +Сума: %2 +Вид: %3 +Адрес: %4 + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> Портфейлът е <b>криптиран</b> и <b>отключен</b> @@ -341,9 +501,21 @@ ClientModel - + + Network Alert + Мрежови проблем + + CoinControlDialog + + Coin Selection + Избор на монета + + + Quantity: + Количество: + Bytes: Байтове: @@ -360,10 +532,42 @@ Fee: Такса: + + Dust: + Прах: + + + After Fee: + След прилагане на ДДС + + + Change: + Ресто + + + (un)select all + (Пре)махни всички + + + Tree mode + Дървовиден режим + + + List mode + Списъчен режим + Amount Сума + + Received with label + Получени с име + + + Received with address + Получени с адрес + Date Дата @@ -392,6 +596,90 @@ Copy amount Копирай сума + + Copy transaction ID + Копирай транзакция с ID + + + Lock unspent + Заключване на неизхарченото + + + Unlock unspent + Отключване на неизхарченото + + + Copy quantity + Копиране на количеството + + + Copy fee + Копиране на данък добавена стойност + + + Copy after fee + Копиране след прилагане на данък добавена стойност + + + Copy bytes + Копиране на байтовете + + + Copy priority + Копиране на приоритет + + + Copy dust + Копирай прахта: + + + Copy change + Копирай рестото + + + highest + Най-висок + + + higher + По-висок + + + high + Висок + + + medium-high + Средно-висок + + + medium + Среден + + + low-medium + Ниско-среден + + + low + Нисък + + + lower + По-нисък + + + lowest + Най-нисък + + + (%1 locked) + (%1 заключен) + + + none + нищо + yes да @@ -400,11 +688,31 @@ no не + + This means a fee of at least %1 per kB is required. + Това означава че се изисква такса от поне %1 на килобайт. + + + Can vary +/- 1 byte per input. + Може да варира с +-1 байт + + + This label turns red, if any recipient receives an amount smaller than %1. + Това наименование се оцветява в червено, ако произволен получател получи сума по-малка от %1. + (no label) (без име) - + + change from %1 (%2) + ресто от %1 (%2) + + + (change) + (промени) + + EditAddressDialog @@ -440,8 +748,8 @@ Вече има адрес "%1" в списъка с адреси. - The entered address "%1" is not a valid Bitcoin address. - "%1" не е валиден Биткоин адрес. + The entered address "%1" is not a valid Hypercoin address. + "%1" не е валиден Hypercoin адрес. Could not unlock wallet. @@ -462,32 +770,92 @@ name име + + Directory already exists. Add %1 if you intend to create a new directory here. + Директорията вече съществува.Добавете %1 ако желаете да добавите нова директория тук. + Path already exists, and is not a directory. Пътят вече съществува и не е папка. - + + Cannot create data directory here. + Не може да се създаде директория тук. + + HelpMessageDialog + + Hypercoin Core + Hypercoin ядро + version версия + + (%1-bit) + (%1-битов) + + + About Hypercoin Core + За Hypercoin Core + + + Command-line options + Списък с команди + Usage: Използване: + + command-line options + Списък с налични команди + UI options UI Опции - + + Set language, for example "de_DE" (default: system locale) + Задаване на език,например "de_DE" (по подразбиране: system locale) + + + Start minimized + Стартирай минимизирано + + + Choose data directory on startup (default: 0) + Изберете директория при стартиране на програмата.( настройка по подразбиране:0) + + Intro Welcome Добре дошли + + Welcome to Hypercoin Core. + Добре дошли в Hypercoin ядрото. + + + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Тъй като това е първото стартиране на програмата можете да изберете къде Hypercoin ядрото да запази данните си. + + + Use the default data directory + Използване на директория по подразбиране + + + Use a custom data directory: + Използване на директория ръчно + + + Hypercoin Core + Hypercoin ядро + Error Грешка @@ -495,6 +863,10 @@ OpenURIDialog + + Open URI + Отваряне на URI + OptionsDialog @@ -507,21 +879,77 @@ &Основни - &Start Bitcoin on system login - &Пускане на Биткоин при вход в системата + Automatically start Hypercoin after logging in to the system. + Автоматично включване на Hypercoin след влизане в системата. + + + &Start Hypercoin on system login + &Пускане на Hypercoin при вход в системата + + + Size of &database cache + Размер на кеша в &базата данни + + + MB + Мегабайта + + + Accept connections from outside + Приемай връзки отвън + + + Allow incoming connections + Позволи входящите връзки + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP адрес на прокси (напр. за IPv4: 127.0.0.1 / за IPv6: ::1) + + + Third party transaction URLs + URL адреси на трети страни + + + Reset all client options to default. + Възстановете всички настройки по подразбиране. + + + &Reset Options + &Нулирай настройките &Network &Мрежа - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Автоматично отваряне на входящия Bitcoin порт. Работи само с рутери поддържащи UPnP. + W&allet + По&ртфейл + + + Expert + Експерт + + + &Spend unconfirmed change + &Похарчете непотвърденото ресто + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Автоматично отваряне на входящия Hypercoin порт. Работи само с рутери поддържащи UPnP. Map port using &UPnP Отваряне на входящия порт чрез &UPnP + + Connect to the Hypercoin network through a SOCKS5 proxy. + Свързване с Hypercoin мрежата чрез SOCKS5 прокси. + + + &Connect through SOCKS5 proxy (default proxy): + &Свързване чрез SOCKS5 прокси (прокси по подразбиране): + Proxy &IP: Прокси & АйПи: @@ -563,8 +991,8 @@ Език: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Промяната на езика ще влезе в сила след рестартиране на Биткоин. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Промяната на езика ще влезе в сила след рестартиране на Hypercoin. &Unit to show amounts in: @@ -574,6 +1002,10 @@ Choose the default subdivision unit to show in the interface and when sending coins. Изберете единиците, показвани по подразбиране в интерфейса. + + Whether to show coin control features or not. + Дали да покаже възможностите за контрол на монетите или не. + &OK ОК @@ -586,6 +1018,26 @@ default подразбиране + + none + нищо + + + Confirm options reset + Потвърдете отмяната на настройките. + + + Client restart required to activate changes. + Изисква се рестартиране на клиента за активиране на извършените промени. + + + Client will be shutdown, do you want to proceed? + Клиентът ще бъде изключен,искате ли да продължите? + + + This change would require a client restart. + Тази промяна изисква рестартиране на клиента Ви. + The supplied proxy address is invalid. Прокси адресът е невалиден. @@ -598,119 +1050,455 @@ Форма - Available: - Налично: + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Текущата информация на екрана може да не е актуална. Вашият портфейл ще се синхронизира автоматично с мрежата на Hypercoin, щом поне една връзката с нея се установи; този процес все още не е приключил. + + + Watch-only: + В наблюдателен режим: + + + Available: + Налично: + + + Your current spendable balance + Вашата текуща сметка за изразходване + + + Pending: + Изчакващо: + + + Immature: + Неразвит: + + + Mined balance that has not yet matured + Миниран баланс,който все още не се е развил + + + Balances + Баланс + + + Total: + Общо: + + + Your current total balance + Текущият ви общ баланс + + + Spendable: + За харчене: + + + Recent transactions + Скорошни транзакции + + + out of sync + несинхронизиран + + + + PaymentServer + + URI handling + Справяне с URI + + + Invalid payment address %1 + Невалиден адрес на плащане %1 + + + Payment request rejected + Заявката за плащане беше отхвърлена + + + Payment request network doesn't match client network. + Мрежата от която се извършва заявката за плащане не съвпада с мрежата на клиента. + + + Payment request has expired. + Заявката за плащане е изтекла. + + + Requested payment amount of %1 is too small (considered dust). + Заявената сума за плащане: %1 е твърде малка (счита се за отпадък) + + + Payment request error + Възникна грешка по време назаявката за плащане + + + Cannot start hypercoin: click-to-pay handler + Hypercoin не можe да се стартира: click-to-pay handler + + + Payment request file handling + Файл за справяне със заявки + + + Refund from %1 + Възстановяване на сума от %1 + + + Payment request DoS protection + Дос защита на заявката за плащане + + + Error communicating with %1: %2 + Грешка при комуникацията с %1: %2 + + + Bad response from server %1 + Възникна проблем при свързването със сървър %1 + + + Payment acknowledged + Плащането е прието + + + Network request error + Грешка в мрежата по време на заявката + + + + PeerTableModel + + User Agent + Клиент на потребителя + + + Address/Hostname + Адрес в интернет + + + Ping Time + Време за отговор + + + + QObject + + Amount + Сума + + + Enter a Hypercoin address (e.g. %1) + Въведете Hypercoin адрес (например: %1) + + + %1 d + %1 ден + + + %1 h + %1 час + + + %1 m + %1 минута + + + %1 s + %1 секунда + + + NETWORK + Мрежа + + + UNKNOWN + Неизвестен + + + None + Неналичен + + + N/A + Несъществуващ + + + %1 ms + %1 милисекунда + + + + QRImageWidget + + &Save Image... + &Запиши изображение... + + + &Copy Image + &Копирай изображение + + + Save QR Code + Запази QR Код + + + PNG Image (*.png) + PNG Изображение (*.png) + + + + RPCConsole + + Client name + Име на клиента + + + N/A + N/A + + + Client version + Версия на клиента + + + &Information + Данни + + + Debug window + Прозорец с грешки + + + General + Основни + + + Using OpenSSL version + Използване на OpenSSL версия + + + Using BerkeleyDB version + Използване на база данни BerkeleyDB + + + Startup time + Време за стартиране + + + Network + Мрежа + + + Name + Име + + + Number of connections + Брой връзки + + + Current number of blocks + Текущ брой блокове + + + Received + Получени + + + Sent + Изпратени + + + &Peers + &Пиъри + + + Select a peer to view detailed information. + Избери пиър за детайлна информация. + + + Direction + Посока + + + Version + Версия + + + User Agent + Клиент на потребителя + + + Services + Услуги + + + Starting Height + Стартова височина + + + Connection Time + Продължителност на връзката + + + Last Send + Изпратени за последно + + + Last Receive + Получени за последно + + + Bytes Sent + Изпратени байтове + + + Bytes Received + Получени байтове + + + Ping Time + Време за отговор + + + Last block time + Време на последния блок + + + &Open + &Отвори + + + &Console + &Конзола + + + &Network Traffic + &Мрежов Трафик - Pending: - Изчакващо: + &Clear + &Изчисти - Total: + Totals Общо: - Your current total balance - Текущият ви общ баланс + In: + Входящи: - out of sync - несинхронизиран + Out: + Изходящи - - - PaymentServer - Payment acknowledged - Плащането е приета + Build date + Дата на създаване - - - PeerTableModel - - - QObject - Amount - Сума + Debug log file + Лог файл,съдържащ грешките - N/A - N/A + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Отворете Hypercoin дебъг лог файла от настоящата Data папка. Може да отнеме няколко секунди при по - големи лог файлове. - - - QRImageWidget - - - RPCConsole - Client name - Име на клиента + Clear console + Изчисти конзолата - N/A - N/A + Welcome to the Hypercoin RPC console. + Добре дошли в Hypercoin RPC конзолата. - Client version - Версия на клиента + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Използвайте стрелки надолу и нагореза разглеждане на историятаот команди и <b>Ctrl-L</b> за изчистване на конзолата. - &Information - Данни + Type <b>help</b> for an overview of available commands. + Въведeте </b>помощ</b> за да видите наличните команди. - Using OpenSSL version - Използване на OpenSSL версия + %1 B + %1 Байт - Network - Мрежа + %1 KB + %1 Килобайт - Name - Име + %1 MB + %1 Мегабайт - Number of connections - Брой връзки + %1 GB + %1 Гигабайт - Current number of blocks - Текущ брой блокове + via %1 + посредством %1 - Last block time - Време на последния блок + never + Никога - Totals - Общо: + Inbound + Входящи - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Отворете Биткой дебъг лог файла от настоящата Data папка. Може да отнеме няколко секунди при по - големи лог файлове. + Outbound + Изходящи - Clear console - Изчисти конзолата + Unknown + Неизвестен - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Използвайте стрелки надолу и нагореза разглеждане на историятаот команди и <b>Ctrl-L</b> за изчистване на конзолата. + Fetching... + Прихващане... - + ReceiveCoinsDialog + + &Amount: + &Сума + &Label: &Име: + + &Message: + &Съобщение: + + + Use this form to request payments. All fields are <b>optional</b>. + Използвате този формуляр за заявяване на плащания. Всички полета са <b>незадължителни</b>. + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Незадължително заявяване на сума. Оставете полето празно или нулево, за да не заявите конкретна сума. + + + Clear all fields of the form. + Изчисти всички полета от формуляра. + Clear Изчистване + + Requested payments history + Изискана история на плащанията + + + &Request payment + &Изискване на плащане + Show Показване @@ -734,6 +1522,26 @@ ReceiveRequestDialog + + QR Code + QR код + + + Copy &URI + Копиране на &URI + + + Copy &Address + &Копирай адрес + + + &Save Image... + &Запиши изображение... + + + Request payment to %1 + Изискване на плащане от %1 + Payment information Данни за плащането @@ -781,13 +1589,37 @@ (no label) (без име) - + + (no message) + (без съобщение) + + + (no amount) + (липсва сума) + + SendCoinsDialog Send Coins Изпращане + + Coin Control Features + Настройки за контрол на монетите + + + automatically selected + астоматично избран + + + Insufficient funds! + Нямате достатъчно налични пари! + + + Quantity: + Количество: + Bytes: Байтове: @@ -804,6 +1636,58 @@ Fee: Такса: + + After Fee: + След прилагане на ДДС + + + Change: + Ресто + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Ако тази опция е активирана,но адресът на промяна е празен или невалиден,промяната ще бъде изпратена на новосъздаден адрес. + + + Transaction Fee: + Такса за транзакцията: + + + Choose... + Избери... + + + Minimize + Минимизирай + + + per kilobyte + за килобайт + + + total at least + Крайна сума поне + + + Recommended: + Препоръчителна: + + + Custom: + По избор: + + + Confirmation time: + Време за потвърждение: + + + normal + нормален + + + fast + бърз + Send to multiple recipients at once Изпращане към повече от един получател @@ -812,6 +1696,14 @@ Add &Recipient Добави &получател + + Clear all fields of the form. + Изчисти всички полета от формуляра. + + + Dust: + Прах: + Clear &All &Изчисти @@ -832,10 +1724,34 @@ Confirm send coins Потвърждаване + + Copy quantity + Копиране на количеството + Copy amount Копирай сума + + Copy fee + Копиране на данък добавена стойност + + + Copy after fee + Копиране след прилагане на данък добавена стойност + + + Copy bytes + Копиране на байтовете + + + Copy priority + Копиране на приоритет + + + Copy change + Копирай рестото + or или @@ -852,14 +1768,38 @@ The amount exceeds your balance. Сумата надвишава текущия баланс + + The total exceeds your balance when the %1 transaction fee is included. + Сумата при добавяне на данък добавена стойност по %1 транзакцията надвишава сумата по вашата сметка. + Transaction creation failed! - Грешка при създаването на трансакция! + Грешка при създаването на транзакция! + + + A fee higher than %1 is considered an insanely high fee. + Такса по-висока от %1 се смята за извънредно висока. + + + Pay only the minimum fee of %1 + Платете минималната такса от %1 + + + Warning: Invalid Hypercoin address + Внимание: Невалиден Hypercoin адрес (no label) (без име) + + Warning: Unknown change address + Внимание:Неизвестен адрес за промяна + + + Copy dust + Копирай прахта: + Are you sure you want to send? Наистина ли искате да изпратите? @@ -887,6 +1827,10 @@ &Label: &Име: + + Choose previously used address + Изберете използван преди адрес + This is a normal payment. Това е нормално плащане. @@ -911,14 +1855,34 @@ Message: Съобщение: + + This is a verified payment request. + Това е потвърдена транзакция. + + + This is an unverified payment request. + Това е непотвърдена заявка за плащане. + Pay To: Плащане на: - + + Memo: + Бележка: + + ShutdownWindow - + + Hypercoin Core is shutting down... + Hypercoin ядрото се изключва... + + + Do not shut down the computer until this window disappears. + Не изключвайте компютъра докато този прозорец не изчезне. + + SignVerifyMessageDialog @@ -933,6 +1897,10 @@ You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Можете да подпишете съобщение като доказателство, че притежавате определен адрес. Бъдете внимателни и не подписвайте съобщения, които биха разкрили лична информация без вашето съгласие. + + Choose previously used address + Изберете използван преди адрес + Alt+A Alt+A @@ -958,7 +1926,7 @@ Копиране на текущия подпис - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address Подпишете съобщение като доказателство, че притежавате определен адрес @@ -974,8 +1942,12 @@ &Провери - Verify the message to ensure it was signed with the specified Bitcoin address - Проверете съобщение, за да сте сигурни че е подписано с определен Биткоин адрес + Verify the message to ensure it was signed with the specified Hypercoin address + Проверете съобщение, за да сте сигурни че е подписано с определен Hypercoin адрес + + + Verify &Message + Потвърди &съобщението Click "Sign Message" to generate signature @@ -989,6 +1961,10 @@ Please check the address and try again. Моля проверете адреса и опитайте отново. + + The entered address does not refer to a key. + Въведеният адрес не може да се съпостави с валиден ключ. + Wallet unlock was cancelled. Отключването на портфейла беше отменено. @@ -1028,6 +2004,14 @@ SplashScreen + + Hypercoin Core + Hypercoin ядро + + + The Bitcoin Core developers + Разработчици на Bitcoin Core + [testnet] [testnet] @@ -1035,13 +2019,21 @@ TrafficGraphWidget - + + KB/s + Килобайта в секунда + + TransactionDesc Open until %1 Подлежи на промяна до %1 + + conflicted + припокриващ се + %1/offline %1/офлайн @@ -1098,6 +2090,14 @@ Debit Дебит + + Total debit + Общ дълг + + + Total credit + Общ дълг + Transaction fee Такса @@ -1122,6 +2122,14 @@ Merchant Търговец + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Генерираните монети трябва да отлежат %1 блока преди да могат да бъдат похарчени. Когато генерираш блока, той се разпространява в мрежата, за да се добави в блок-веригата. Ако не успее да се добави във веригата, неговия статус ще се стане "неприет" и няма да може да се похарчи. Това е възможно да се случи случайно, ако друг възел генерира блок няколко секунди след твоя. + + + Debug information + Информация за грешките + Transaction Трансакция @@ -1172,6 +2180,10 @@ Address Адрес + + Immature (%1 confirmations, will be available after %2) + Неплатим (%1 потвърждения, ще бъде платим след %2) + Open until %1 Подлежи на промяна до %1 @@ -1188,6 +2200,10 @@ Generated but not accepted Генерирана, но отхвърлена от мрежата + + Offline + Извън линия + Unconfirmed Непотвърдено @@ -1315,6 +2331,10 @@ Copy amount Копирай сума + + Copy transaction ID + Копирай транзакция с ID + Edit label Редактирай име @@ -1335,6 +2355,10 @@ Exporting Successful Изнасянето е успешна + + The transaction history was successfully saved to %1. + Историята с транзакциите беше успешно запазена в %1. + Comma separated file (*.csv) CSV файл (*.csv) @@ -1391,6 +2415,10 @@ WalletView + + &Export + Изнеси + Export the data in the current tab to a file Запишете данните от текущия раздел във файл @@ -1399,7 +2427,27 @@ Backup Wallet Запазване на портфейла - + + Wallet Data (*.dat) + Информация за портфейла (*.dat) + + + Backup Failed + Неуспешно запазване на портфейла + + + There was an error trying to save the wallet data to %1. + Възникна грешка при запазването на информацията за портфейла в %1. + + + The wallet data was successfully saved to %1. + Информацията за портфейла беше успешно запазена в %1. + + + Backup Successful + Успешно запазване на портфейла + + bitcoin-core @@ -1410,22 +2458,50 @@ Specify data directory Определете директория за данните + + Connect to a node to retrieve peer addresses, and disconnect + Свържете се към сървър за да можете да извлечете адресите на пиърите след което се разкачете. + + + Specify your own public address + Въведете Ваш публичен адрес + Use the test network Използвайте тестовата мрежа + + Accept connections from outside (default: 1 if no -proxy or -connect) + Приемайте връзки отвън.(по подразбиране:1 в противен случай -proxy или -connect) + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Внимание: -paytxfee има голяма стойност! Това е таксата за транзакциите, която ще платите ако направите транзакция. + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Сложете в бял списък пиъри,свързващи се от дадената интернет маска или айпи адрес.Може да бъде заложено неколкократно. + (default: 1) (по подразбиране 1) + + <category> can be: + <category> може да бъде: + Connection options: Настройки на връзката: + + Do you want to rebuild the block database now? + Желаете ли да пресъздадете базата данни с блокове сега? + + + Error initializing block database + Грешка в пускането на базата данни с блокове + Error: Disk space is low! Грешка: мястото на диска е малко! @@ -1450,14 +2526,42 @@ Wallet options: Настройки на портфейла: + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Заложете броя на нишки за генерация на монети ако е включено(-1 = всички ядра, по подразбиране: %d) + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Внимание: -maxtxfee има много висока стойност! Толкова високи такси могат да бъдат заплатени на една транзакция. + + + Connect through SOCKS5 proxy + Свързване чрез SOCKS5 прокси + + + Copyright (C) 2009-%i The Bitcoin Core Developers + Всички права запазени (C) 2009-%i Доставчиците на Биткойн + Information Данни + + Invalid amount for -minrelaytxfee=<amount>: '%s' + Невалидна сума за -minrelaytxfee=<amount>: '%s' + + + Invalid amount for -mintxfee=<amount>: '%s' + Невалидна сума за -mintxfee=<amount>: '%s' + Send trace/debug info to console instead of debug.log file Изпрати локализиращата или дебъг информацията към конзолата, вместо файлът debug.log + + This is experimental software. + Това е експериментален софтуер. + Transaction amount too small Сумата на трансакцията е твърде малка @@ -1482,6 +2586,10 @@ Warning: This version is obsolete, upgrade required! Внимание: Използвате остаряла версия, необходимо е обновление! + + on startup + по време на стартирането + Password for JSON-RPC connections Парола за JSON-RPC връзките @@ -1518,6 +2626,22 @@ Invalid -proxy address: '%s' Невалиден -proxy address: '%s' + + Specify configuration file (default: %s) + Назовете конфигурационен файл(по подразбиране %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Задайте време на изключване при проблеми със свързването в милисекунди(минимум:1, по подразбиране %d) + + + Specify pid file (default: %s) + Задайте pid файл(по подразбиране: %s) + + + Invalid amount for -paytxfee=<amount>: '%s' + Невалидна сума за -paytxfee=<amount>: '%s' + Insufficient funds Недостатъчно средства @@ -1543,4 +2667,4 @@ Грешка - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_bs.ts b/src/qt/locale/bitcoin_bs.ts index 86526022fe2ea..b5955182e3d66 100644 --- a/src/qt/locale/bitcoin_bs.ts +++ b/src/qt/locale/bitcoin_bs.ts @@ -1,4 +1,4 @@ - + AddressBookPage @@ -11,12 +11,12 @@ BitcoinGUI - Bitcoin - Bitcoin + Hypercoin + Hypercoin - Bitcoin Core - Bitcoin Jezrga + Hypercoin Core + Hypercoin Jezrga @@ -34,15 +34,15 @@ HelpMessageDialog - Bitcoin Core - Bitcoin Jezrga + Hypercoin Core + Hypercoin Jezrga Intro - Bitcoin Core - Bitcoin Jezrga + Hypercoin Core + Hypercoin Jezrga @@ -109,8 +109,8 @@ SplashScreen - Bitcoin Core - Bitcoin Jezrga + Hypercoin Core + Hypercoin Jezrga diff --git a/src/qt/locale/bitcoin_ca.ts b/src/qt/locale/bitcoin_ca.ts index 8f06ac3aa707b..8535cd735d331 100644 --- a/src/qt/locale/bitcoin_ca.ts +++ b/src/qt/locale/bitcoin_ca.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Feu doble clic per editar l'adreça o l'etiqueta + Right-click to edit address or label + Feu clic dret per a editar l'adreça o l'etiqueta Create a new address @@ -66,12 +66,12 @@ S'estan rebent les adreces - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Aquestes són les vostres adreces de Bitcoin per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Aquestes són les vostres adreces de Hypercoin per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Aquestes són les vostres adreces Bitcoin per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Aquestes són les vostres adreces Hypercoin per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció. Copy &Label @@ -164,8 +164,8 @@ Confirma l'encriptació del moneder - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Avís: si encripteu el vostre moneder i perdeu la contrasenya, <b>PERDREU TOTS ELS VOSTRES BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Avís: si encripteu el vostre moneder i perdeu la contrasenya, <b>PERDREU TOTS ELS VOSTRES HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Introduïu la contrasenya nova al moneder.<br/>Utilitzeu una contrasenya de <b>deu o més caràcters aleatoris</b>, o <b>vuit o més paraules</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin es tancarà ara per acabar el procés d'encriptació. Recordeu que encriptar el moneder no protegeix completament els bitcoins de ser robats per programari maliciós instal·lat a l'ordinador. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin es tancarà ara per acabar el procés d'encriptació. Recordeu que encriptar el moneder no protegeix completament els hypercoins de ser robats per programari maliciós instal·lat a l'ordinador. Wallet encryption failed @@ -295,8 +295,8 @@ Obre un &URI... - Bitcoin Core client - Client del Bitcoin Core + Hypercoin Core client + Client del Hypercoin Core Importing blocks from disk... @@ -307,12 +307,12 @@ S'estan reindexant els blocs al disc... - Send coins to a Bitcoin address - Envia monedes a una adreça Bitcoin + Send coins to a Hypercoin address + Envia monedes a una adreça Hypercoin - Modify configuration options for Bitcoin - Modifica les opcions de configuració per bitcoin + Modify configuration options for Hypercoin + Modifica les opcions de configuració per hypercoin Backup wallet to another location @@ -335,8 +335,8 @@ &Verifica el missatge... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Rep - Show information about Bitcoin Core - Mostra informació del Bitcoin Core + Show information about Hypercoin Core + Mostra informació del Hypercoin Core &Show / Hide @@ -367,12 +367,12 @@ Encripta les claus privades pertanyents al moneder - Sign messages with your Bitcoin addresses to prove you own them - Signa el missatges amb la seva adreça de Bitcoin per provar que les poseeixes + Sign messages with your Hypercoin addresses to prove you own them + Signa el missatges amb la seva adreça de Hypercoin per provar que les poseeixes - Verify messages to ensure they were signed with specified Bitcoin addresses - Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Bitcoin específica. + Verify messages to ensure they were signed with specified Hypercoin addresses + Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Hypercoin específica. &File @@ -391,16 +391,16 @@ Barra d'eines de les pestanyes - Bitcoin Core - Nucli de Bitcoin + Hypercoin Core + Nucli de Hypercoin - Request payments (generates QR codes and bitcoin: URIs) - Sol·licita pagaments (genera codis QR i bitcoin: URI) + Request payments (generates QR codes and hypercoin: URIs) + Sol·licita pagaments (genera codis QR i hypercoin: URI) - &About Bitcoin Core - &Quant al Bitcoin Core + &About Hypercoin Core + &Quant al Hypercoin Core Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Mostra la llista d'adreces de recepció i etiquetes utilitzades - Open a bitcoin: URI or payment request - Obre una bitcoin: sol·licitud d'URI o pagament + Open a hypercoin: URI or payment request + Obre una hypercoin: sol·licitud d'URI o pagament &Command-line options Opcions de la &línia d'ordres - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Mostra el missatge d'ajuda del Bitcoin Core per obtenir una llista amb les possibles opcions de línia d'ordres de Bitcoin + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Mostra el missatge d'ajuda del Hypercoin Core per obtenir una llista amb les possibles opcions de línia d'ordres de Hypercoin - %n active connection(s) to Bitcoin network - %n connexió activa a la xarxa Bitcoin%n connexions actives a la xarxa Bitcoin + %n active connection(s) to Hypercoin network + %n connexió activa a la xarxa Hypercoin%n connexions actives a la xarxa Hypercoin No block source available... @@ -478,6 +478,10 @@ Up to date Al dia + + Processed %n blocks of transaction history. + S'ha processat %n bloc de l'historial de transacció.S'han processat %n blocs de l'historial de transacció. + Catching up... S'està posant al dia ... @@ -516,6 +520,10 @@ Address: %4 CoinControlDialog + + Coin Selection + Selecció de moneda + Quantity: Quantitat: @@ -534,7 +542,7 @@ Address: %4 Fee: - Quota: + Comissió Dust: @@ -542,7 +550,7 @@ Address: %4 After Fee: - Quota posterior: + Comissió posterior: Change: @@ -562,7 +570,15 @@ Address: %4 Amount - Quantitat + Import + + + Received with label + Rebut amb l'etiqueta + + + Received with address + Rebut amb l'adreça Date @@ -694,7 +710,7 @@ Address: %4 This means a fee of at least %1 per kB is required. - Això comporta una comissi d'almenys %1 per kB. + Això comporta una comissió d'almenys %1 per kB. Can vary +/- 1 byte per input. @@ -729,7 +745,7 @@ Address: %4 EditAddressDialog Edit Address - Editar Adreça + Edita l'adreça &Label @@ -768,8 +784,8 @@ Address: %4 L'adreça introduïda «%1» ja és present a la llibreta d'adreces. - The entered address "%1" is not a valid Bitcoin address. - L'adreça introduïda «%1» no és una adreça de Bitcoin vàlida. + The entered address "%1" is not a valid Hypercoin address. + L'adreça introduïda «%1» no és una adreça de Hypercoin vàlida. Could not unlock wallet. @@ -806,8 +822,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - Nucli de Bitcoin + Hypercoin Core + Nucli de Hypercoin version @@ -818,8 +834,8 @@ Address: %4 (%1-bit) - About Bitcoin Core - Quant al Bitcoin Core + About Hypercoin Core + Quant al Hypercoin Core Command-line options @@ -839,7 +855,7 @@ Address: %4 Set language, for example "de_DE" (default: system locale) - Defineix un idioma, per exemple "de_DE" (per defecte: preferències locals de sistema) + Defineix un idioma, per exemple «de_DE» (per defecte: preferències locals de sistema) Start minimized @@ -865,16 +881,16 @@ Address: %4 Us donem la benviguda - Welcome to Bitcoin Core. - Us donem la benvinguda al Bitcoin Core. + Welcome to Hypercoin Core. + Us donem la benvinguda al Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Atès que és la primera vegada que executeu el programa, podeu triar on emmagatzemarà el Bitcoin Core les dades. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Atès que és la primera vegada que executeu el programa, podeu triar on emmagatzemarà el Hypercoin Core les dades. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - El Bitcoin Core descarregarà i emmagatzemarà una còpia de la cadena de blocs de Bitcoin. Com a mínim s'emmagatzemaran %1 GB de dades en aquest directori, que seguiran creixent gradualment. També s'hi emmagatzemarà el moneder. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + El Hypercoin Core descarregarà i emmagatzemarà una còpia de la cadena de blocs de Hypercoin. Com a mínim s'emmagatzemaran %1 GB de dades en aquest directori, que seguiran creixent gradualment. També s'hi emmagatzemarà el moneder. Use the default data directory @@ -885,8 +901,8 @@ Address: %4 Utilitza un directori de dades personalitzat: - Bitcoin Core - Nucli de Bitcoin + Hypercoin Core + Nucli de Hypercoin Error: Specified data directory "%1" cannot be created. @@ -896,7 +912,15 @@ Address: %4 Error Error - + + %n GB of free space available + %n GB d'espai lliure disponible%n GB d'espai lliure disponible + + + (of %n GB needed) + (de %n GB necessari)(de %n GB necessaris) + + OpenURIDialog @@ -931,12 +955,12 @@ Address: %4 &Principal - Automatically start Bitcoin after logging in to the system. - Inicia automàticament el Bitcoin després de l'inici de sessió del sistema. + Automatically start Hypercoin after logging in to the system. + Inicia automàticament el Hypercoin després de l'inici de sessió del sistema. - &Start Bitcoin on system login - &Inicia el Bitcoin a l'inici de sessió del sistema. + &Start Hypercoin on system login + &Inicia el Hypercoin a l'inici de sessió del sistema. Size of &database cache @@ -1011,13 +1035,21 @@ Address: %4 &Gasta el canvi sense confirmar - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Obre el port del client de Bitcoin al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Obre el port del client de Hypercoin al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. Map port using &UPnP Port obert amb &UPnP + + Connect to the Hypercoin network through a SOCKS5 proxy. + Connecta a la xarxa Hypercoin a través d'un proxy SOCKS5. + + + &Connect through SOCKS5 proxy (default proxy): + &Connecta a través d'un proxy SOCKS5 (proxy per defecte): + Proxy &IP: &IP del proxy: @@ -1059,8 +1091,8 @@ Address: %4 &Llengua de la interfície d'usuari: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Aquí podeu definir la llengua de l'aplicació. Aquesta configuració tindrà efecte una vegada es reiniciï Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Aquí podeu definir la llengua de l'aplicació. Aquesta configuració tindrà efecte una vegada es reiniciï Hypercoin. &Unit to show amounts in: @@ -1118,8 +1150,8 @@ Address: %4 Formulari - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Bitcoin un cop s'ha establert connexió, però aquest proces no s'ha completat encara. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Hypercoin un cop s'ha establert connexió, però aquest proces no s'ha completat encara. Watch-only: @@ -1149,6 +1181,10 @@ Address: %4 Mined balance that has not yet matured Balanç minat que encara no ha madurat + + Balances + Balances + Total: Total: @@ -1161,6 +1197,14 @@ Address: %4 Your current balance in watch-only addresses El vostre balanç actual en adreces de només lectura + + Spendable: + Que es pot gastar: + + + Recent transactions + Transaccions recents + Unconfirmed transactions to watch-only addresses Transaccions sense confirmar a adreces de només lectura @@ -1213,16 +1257,16 @@ Address: %4 Error en la sol·licitud de pagament - Cannot start bitcoin: click-to-pay handler - No es pot iniciar bitcoin: gestor clica-per-pagar + Cannot start hypercoin: click-to-pay handler + No es pot iniciar hypercoin: gestor clica-per-pagar Payment request fetch URL is invalid: %1 L'URL de recuperació de la sol·licitud de pagament no és vàlida: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Bitcoin no vàlida o per paràmetres URI amb mal format. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Hypercoin no vàlida o per paràmetres URI amb mal format. Payment request file handling @@ -1240,6 +1284,14 @@ Address: %4 Refund from %1 Reemborsament de %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La sol·licitud de pagament %1 és massa gran (%2 bytes, permès %3 bytes). + + + Payment request DoS protection + Protecció de DoS per a la sol·licitud de pagament + Error communicating with %1: %2 Error en comunicar amb %1: %2 @@ -1280,11 +1332,11 @@ Address: %4 QObject Amount - Quantitat + Import - Enter a Bitcoin address (e.g. %1) - Introduïu una adreça de Bitcoin (p. ex. %1) + Enter a Hypercoin address (e.g. %1) + Introduïu una adreça de Hypercoin (p. ex. %1) %1 d @@ -1509,16 +1561,16 @@ Address: %4 Fitxer de registre de depuració - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Obre el fitxer de registre de depuració de Bitcoin del directori de dades actual. Això pot trigar uns quants segons per a fitxers de registre grans. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Obre el fitxer de registre de depuració de Hypercoin del directori de dades actual. Això pot trigar uns quants segons per a fitxers de registre grans. Clear console Neteja la consola - Welcome to the Bitcoin RPC console. - Us donem la benvinguda a la consola RPC de Bitcoin + Welcome to the Hypercoin RPC console. + Us donem la benvinguda a la consola RPC de Hypercoin Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1592,8 +1644,8 @@ Address: %4 R&eutilitza una adreça de recepció anterior (no recomanat) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Hypercoin. An optional label to associate with the new receiving address. @@ -1782,7 +1834,7 @@ Address: %4 After Fee: - Quota posterior: + Comissió posterior: Change: @@ -1796,6 +1848,78 @@ Address: %4 Custom change address Personalitza l'adreça de canvi + + Transaction Fee: + Comissió de transacció + + + Choose... + Tria... + + + collapse fee-settings + redueix els paràmetres de comissió + + + Minimize + Minimitza + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + + per kilobyte + per kilobyte + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «total com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + + total at least + total com a mínim + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + No hi ha cap problema en pagar només la comissió mínima sempre que hi hagi menys volum de transacció que espai en els blocs. Però tingueu present que això pot acabar en una transacció que mai es confirmi una vegada hi hagi més demanda de transaccions de hypercoins que la xarxa pugui processar. + + + (read the tooltip) + (llegiu l'indicador de funció) + + + Recommended: + Recomanada: + + + Custom: + Personalitzada: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (No s'ha inicialitzat encara la comissió intel·ligent. Normalment pren uns pocs blocs...) + + + Confirmation time: + Temps de confirmació: + + + normal + normal + + + fast + ràpid + + + Send as zero-fee transaction if possible + Envia com a transacció de comissió zero si és possible + + + (confirmation may take longer) + (la confirmació pot trigar més temps) + Send to multiple recipients at once Envia a múltiples destinataris al mateix temps @@ -1846,7 +1970,7 @@ Address: %4 Copy fee - Copia la comissi + Copia la comissió Copy after fee @@ -1864,10 +1988,6 @@ Address: %4 Copy change Copia el canvi - - Total Amount %1 (= %2) - Import total %1 (= %2) - or o @@ -1886,7 +2006,7 @@ Address: %4 The total exceeds your balance when the %1 transaction fee is included. - El total excedeix el teu balanç quan s'afegeix la comisió a la transacció %1. + El total excedeix el teu balanç quan s'afegeix la comissió a la transacció %1. Duplicate address found, can only send to each address once per send operation. @@ -1901,8 +2021,20 @@ Address: %4 S'ha rebutjat la transacció! Això pot passar si alguna de les monedes del vostre moneder ja s'han gastat; per exemple, si heu fet servir una còpia de seguretat del fitxer wallet.dat i s'haguessin gastat monedes de la còpia però sense marcar-les-hi com a gastades. - Warning: Invalid Bitcoin address - Avís: adreça Bitcoin no vàlida + A fee higher than %1 is considered an insanely high fee. + Una comissió superior a %1 es considera una comissió excessiva. + + + Pay only the minimum fee of %1 + Paga només la comissió mínima de %1 + + + Estimated to begin confirmation within %1 block(s). + Estimat per a començar la confirmació en %1 bloc(s). + + + Warning: Invalid Hypercoin address + Avís: adreça Hypercoin no vàlida (no label) @@ -1952,8 +2084,8 @@ Address: %4 Això és un pagament normal. - The Bitcoin address to send the payment to - L'adreça Bitcoin on enviar el pagament + The Hypercoin address to send the payment to + L'adreça Hypercoin on enviar el pagament Alt+A @@ -1984,8 +2116,8 @@ Address: %4 Introduïu una etiqueta per a aquesta adreça per afegir-la a la llista d'adreces utilitzades - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Bitcoin. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Un missatge que s'ha adjuntat al hypercoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Hypercoin. This is an unverified payment request. @@ -2003,8 +2135,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - S'està aturant el Bitcoin Core... + Hypercoin Core is shutting down... + S'està aturant el Hypercoin Core... Do not shut down the computer until this window disappears. @@ -2026,8 +2158,8 @@ Address: %4 Podeu signar missatges amb la vostra adreça per provar que són vostres. Aneu amb compte no signar qualsevol cosa, ja que els atacs de pesca electrònica (phishing) poden provar de confondre-us perquè els signeu amb la vostra identitat. Només signeu als documents completament detallats amb què hi esteu d'acord. - The Bitcoin address to sign the message with - L'adreça Bitcoin amb què signar el missatge + The Hypercoin address to sign the message with + L'adreça Hypercoin amb què signar el missatge Choose previously used address @@ -2058,8 +2190,8 @@ Address: %4 Copia la signatura actual al porta-retalls del sistema - Sign the message to prove you own this Bitcoin address - Signa el missatge per provar que ets propietari d'aquesta adreça Bitcoin + Sign the message to prove you own this Hypercoin address + Signa el missatge per provar que ets propietari d'aquesta adreça Hypercoin Sign &Message @@ -2082,12 +2214,12 @@ Address: %4 Introdueixi l'adreça signant, missatge (assegura't que copies salts de línia, espais, tabuladors, etc excactament tot el text) i la signatura a sota per verificar el missatge. Per evitar ser enganyat per un atac home-entre-mig, vés amb compte de no llegir més en la signatura del que hi ha al missatge signat mateix. - The Bitcoin address the message was signed with - L'adreça Bitcoin amb què va ser signat el missatge + The Hypercoin address the message was signed with + L'adreça Hypercoin amb què va ser signat el missatge - Verify the message to ensure it was signed with the specified Bitcoin address - Verificar el missatge per assegurar-se que ha estat signat amb una adreça Bitcoin específica + Verify the message to ensure it was signed with the specified Hypercoin address + Verificar el missatge per assegurar-se que ha estat signat amb una adreça Hypercoin específica Verify &Message @@ -2153,8 +2285,8 @@ Address: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2300,7 +2432,7 @@ Address: %4 Amount - Quantitat + Import true @@ -2428,6 +2560,10 @@ Address: %4 Type of transaction. Tipus de transacció. + + Whether or not a watch-only address is involved in this transaction. + Si està implicada o no una adreça només de lectura en la transacció. + Destination address of transaction. Adreça del destinatari de la transacció. @@ -2523,6 +2659,10 @@ Address: %4 Export Transaction History Exporta l'historial de transacció + + Watch-only + Només de lectura + Exporting Failed L'exportació ha fallat @@ -2666,29 +2806,6 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Accepta connexions de fora (per defecte: 1 si no -proxy o -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, heu de establir una contrasenya RPC al fitxer de configuració: %s -Es recomana que useu la següent contrasenya aleatòria: -rpcuser=bitcoinrpc -rpcpassword=%s -(no necesiteu recordar aquesta contrasenya) -El nom d'usuari i la contrasenya NO HAN de ser els mateixos. -Si el fitxer no existeix, crea'l amb els permisos de fitxer de només lectura per al propietari. -També es recomana establir la notificació d'alertes i així sereu notificat de les incidències; -per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincula a una adreça específica i sempre escolta-hi. Utilitza la notació [host]:port per IPv6 @@ -2698,16 +2815,12 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Elimina totes les transaccions del moneder i només recupera aquelles de la cadena de blocs a través de -rescan a l'inici - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Entra en el mode de proves de regressió, que utilitza una cadena especial en què els blocs poden resoldre's al moment. - - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Error: La transacció ha estat rebutjada. Això pot passar si alguna de les monedes del teu moneder ja s'han gastat, com si haguesis usat una copia de l'arxiu wallet.dat i s'haguessin gastat monedes de la copia però sense marcar com gastades en aquest. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Distribuït sota llicència de programari MIT. Vegeu el fitxer acompanyant COPYING o <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Error: Aquesta transacció requereix una comissió d'almenys %s degut al seu import, complexitat o per l'ús de fons recentment rebuts! + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Entra en el mode de proves de regressió, que utilitza una cadena especial en què els blocs poden resoldre's al moment. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) @@ -2726,8 +2839,8 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Aquesta és una versió de pre-llançament - utilitza-la sota la teva responsabilitat - No usar per a minería o aplicacions de compra-venda - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - No es pot enllaçar %s a aquest ordinador. El Bitcoin Core probablement ja estigui executant-s'hi. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + No es pot enllaçar %s a aquest ordinador. El Hypercoin Core probablement ja estigui executant-s'hi. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2749,6 +2862,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Avís: el fitxer wallet.dat és corrupte, dades rescatades! L'arxiu wallet.dat original ha estat desat com wallet.{estampa_temporal}.bak al directori %s; si el teu balanç o transaccions son incorrectes hauries de restaurar-lo de un backup. + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Afegeix a la llista blanca els iguals que es connecten de la màscara de xarxa o adreça IP donada. Es pot especificar moltes vegades. + (default: 1) (per defecte: 1) @@ -2813,10 +2930,6 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error: Disk space is low! Error: Espai al disc baix! - - Error: Wallet locked, unable to create transaction! - Error: El moneder està bloquejat, no és possible crear la transacció! - Failed to listen on any port. Use -listen=0 if you want this. Ha fallat escoltar a qualsevol port. Feu servir -listen=0 si voleu fer això. @@ -2841,6 +2954,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Not enough file descriptors available. No hi ha suficient descriptors de fitxers disponibles. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Només connecta als nodes de la xarxa <net> (ipv4, ipv6 o onion) + Rebuild block chain index from current blk000??.dat files Reconstrueix l'índex de la cadena de blocs dels fitxers actuals blk000??.dat @@ -2861,6 +2978,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com This is intended for regression testing tools and app development. Això es així per a eines de proves de regressió per al desenvolupament d'aplicacions. + + Use UPnP to map the listening port (default: %u) + Utilitza UPnP per a mapejar el port d'escolta (per defecte: %u) + Verifying blocks... S'estan verificant els blocs... @@ -2898,8 +3019,12 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Vincula a l'adreça donada per a escoltar les connexions JSON-RPC. Feu servir la notació [host]:port per a IPv6. Aquesta opció pot ser especificada moltes vegades (per defecte: vincula a totes les interfícies) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - No es pot obtenir un bloqueig del directori de dades %s. El Bitcoin Core probablement ja s'estigui executant. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + No es pot obtenir un bloqueig del directori de dades %s. El Hypercoin Core probablement ja s'estigui executant. + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) + Limita contínuament la freqüència de les transaccions gratuïtes a <n>*1000 bytes per minut (per defecte: %u) Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) @@ -2918,33 +3043,88 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Executa l'ordre quan es rebi un avís rellevant o veiem una forquilla molt llarga (%s en cmd és reemplaçat per un missatge) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Comissions (en BTC/Kb) inferiors a això es consideren de comissió zero per a la transmissió (per defecte: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Comissions (en HOT/Kb) inferiors a això es consideren de comissió zero per a la transmissió (per defecte: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Comissions (en HOT/Kb) inferiors a això es consideren de comissió zero per a la creació de la transacció (per defecte: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Si no s'especifica una paytxfee (comissió de transacció de pagament), inclogueu suficient comissió per tal que les transaccions comencin a confirmar-se en una mitja de n blocs (per defecte: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Import no vàlid per a -maxtxfee=<amount>: '%s' (cal que sigui com a mínim la comissió de minrelay de %s per evitar que les comissions s'encallin) + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Mida màxima de les dades en les transaccions de l'operador en què confiem i en les meves (per defecte: %u) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Comissions (en BTC/Kb) inferiors a això es consideren de comissió zero per a la creació de la transacció (per defecte: %s) + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Comissions totals màximes que s'utilitzaran en una transacció d'un únic moneder. Si es defineix un valor massa baix les transaccions més grans poden interrompre's (per defecte: %s) Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Consulta a adreces d'iguals a través de DNS, si es troba baix en adreces (per defecte: 1 a menys que -connect) + + Require high priority for relaying free or low-fee transactions (default:%u) + Es requereix una prioritat alta per retransmetre transaccions gratuïtes o de baixa comissió (per defecte:%u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Defineix la mida màxima de transaccions d'alta prioritat / baixa comissió en bytes (per defecte: %d) + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Defineix el nombre de fils per a la generació de moneda si està habilitat (-1 = tots els nuclis, per defecte: %d) + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Aquest producte inclou programari desenvolupat pel projecte OpenSSL per a ús a l'OpenSSL Toolkit <https://www.openssl.org/> i programari criptogràfic escrit per Eric Young i programari UPnP escrit per Thomas Bernard. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Avís: comproveu que la data i hora del vostre ordinador siguin correctes! Si el vostre rellotge no és correcte, el Bitcoin Core no funcionarà correctament. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Per utilitzar hypercoind, o l'opció de serviddor de hypercoin-qt, heu de definir una rpcpassword en el fitxer de configuració: +%s +Es recomana que utilitzeu la contrasenya aleatòria següent: +rpcuser=hypercoinrpc +rpcpassword=%s +(no cal que recordeu la contrasenya) +El nom d'usuari i la contrasenya NO han de ser els mateixos. +Si el fitxer no existeix, creeu-ne un amb permisos de lectura només per al seu propietari. +Es recomana definir alertnotify per tal de ser notificat de qualsevol problema; +per exemple: alertnotify=echo %%s | mail -s "Avís de Hypercoin" admin@foo.com + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Avís: s'ha especificat un -maxtxfee molt alt! Comissions tan grans podrien pagar-se en una única transacció. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Avís: comproveu que la data i hora del vostre ordinador siguin correctes! Si el vostre rellotge no és correcte, el Hypercoin Core no funcionarà correctament. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Els iguals en la llista blanca no poden ser bandejats per DoS i es transmetran sempre llurs transaccions, fins i tot si ja són a la mempool. Això és útil, p. ex., per a una passarel·la + + Accept public REST requests (default: %u) + Accepta sol·licituds REST públiques (per defecte: %u) + Cannot resolve -whitebind address: '%s' No es pot resoldre l'adreça -whitebind: «%s» @@ -2962,24 +3142,32 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com No s'ha pogut analitzar el valor -rpcbind %s com una adreça de xarxa - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Error en carregar wallet.dat: el moneder requereix una versió més nova del Bitcoin core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Error en carregar wallet.dat: el moneder requereix una versió més nova del Hypercoin core + + + Error reading from database, shutting down. + Error en llegir la base de dades, tancant. Error: Unsupported argument -tor found, use -onion. Error: s'ha trobat un argument -tor no acceptat. Feu servir -onion. - Fee (in BTC/kB) to add to transactions you send (default: %s) - Comissió en (BTC/kB) per afegir a les transaccions que envieu (per defecte: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Comissió en (HOT/kB) per afegir a les transaccions que envieu (per defecte: %s) Information &Informació - Initialization sanity check failed. Bitcoin Core is shutting down. - Ha fallat la inicialització de la comprovació de validesa. El Bitcoin Core s'està aturant. + Initialization sanity check failed. Hypercoin Core is shutting down. + Ha fallat la inicialització de la comprovació de validesa. El Hypercoin Core s'està aturant. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Import no vàlid per a -maxtxfee=<amount>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -2998,8 +3186,8 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com S'ha especificat una màscara de xarxa no vàlida a -whitelist: «%s» - Keep at most <n> unconnectable blocks in memory (default: %u) - Manté com a màxim <n> blocs no connectables en memòria (per defecte: %u) + Keep at most <n> unconnectable transactions in memory (default: %u) + Manté com a màxim <n> transaccions no connectables en memòria (per defecte: %u) Need to specify a port with -whitebind: '%s' @@ -3010,17 +3198,17 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Opcions de transmissió del node: - Print block on startup, if found in block index - Imprimeix el block a l'inici, si es troba l'índex de blocs - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opcions RPC SSL: (veieu el wiki del Bitcoin per a instruccions de configuració de l'SSL) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Opcions RPC SSL: (veieu el wiki del Hypercoin per a instruccions de configuració de l'SSL) RPC server options: Opcions del servidor RPC: + + RPC support for HTTP persistent connections (default: %d) + Suport RPC per a connexions HTTP persistents (per defecte: %d) + Randomly drop 1 of every <n> network messages Descarta a l'atzar 1 de cada <n> missatges de la xarxa @@ -3033,6 +3221,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Send trace/debug info to console instead of debug.log file Envia informació de traça/depuració a la consola en comptes del fitxer debug.log + + Send transactions as zero-fee transactions if possible (default: %u) + Envia les transaccions com a transaccions de comissió zero sempre que sigui possible (per defecte: %u) + Show all debugging options (usage: --help -help-debug) Mostra totes les opcions de depuració (ús: --help --help-debug) @@ -3057,6 +3249,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Transaction amounts must be positive Els imports de les transaccions han de ser positius + + Transaction too large for fee policy + Transacció massa gran per a la política de comissions + Transaction too large La transacció és massa gran @@ -3074,8 +3270,8 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Nom d'usuari per a connexions JSON-RPC - Wallet needed to be rewritten: restart Bitcoin Core to complete - Cal reescriure el moneder: reiniceu el Bitcoin Core per completar-ho. + Wallet needed to be rewritten: restart Hypercoin Core to complete + Cal reescriure el moneder: reiniceu el Hypercoin Core per completar-ho. Warning @@ -3141,14 +3337,170 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error loading wallet.dat: Wallet corrupted Error en carregar wallet.dat: Moneder corrupte + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = manté les metadades de les tx, p. ex., propietari del compte i informació de sol·licitud del pagament, 2 = prescindeix de les metadades de les tx) + + + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) + Buida l'activitat de la base de dades de la memòria disponible al registre del disc cada <n> megabytes (per defecte: %u) + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Com d'exhaustiva és la verificació de blocs del -checkblocks (0-4, per defecte: %u) + + + Log transaction priority and fee per kB when mining blocks (default: %u) + Enregistreu la prioritat de la transacció i la comissió per kB en minar blocs (per defecte: %u) + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Manté un índex complet de transaccions, utilitzat per la crida rpc getrawtransaction (per defecte: %u) + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Nombre de segons necessaris perquè els iguals de comportament qüestionable puguin tornar a connectar-se (per defecte: %u) + + + Output debugging information (default: %u, supplying <category> is optional) + Informació de sortida de la depuració (per defecte: %u, proporcionar <category> és opcional) + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor (per defecte: %s) + + + (default: %s) + (per defecte: %s) + + + Acceptable ciphers (default: %s) + Xifrats acceptables (per defecte: %s) + + + Always query for peer addresses via DNS lookup (default: %u) + Demana sempre les adreces dels iguals a través de consultes DNS (per defecte: %u) + + + Disable safemode, override a real safe mode event (default: %u) + Inhabilita el mode segur, sobreescriu un esdeveniment de mode segur real (per defecte: %u) + Error loading wallet.dat Error en carregar wallet.dat + + Force safe mode (default: %u) + Força el mode segur (per defecte: %u) + + + Generate coins (default: %u) + Genera monedes (per defecte: %u) + + + How many blocks to check at startup (default: %u, 0 = all) + Quants blocs per comprovar a l'inici (per defecte: %u, 0 = tots) + + + Include IP addresses in debug output (default: %u) + Inclou l'adreça IP a la sortida de depuració (per defecte: %u) + Invalid -proxy address: '%s' Adreça -proxy invalida: '%s' + + Limit size of signature cache to <n> entries (default: %u) + Limita la mida de la cau de signatura a <n> entrades (per defecte: %u) + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + Escolta les connexions JSON-RPC en <port> (per defecte: %u o testnet: %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + Escolta les connexions en <port> (per defecte: %u o testnet: %u) + + + Maintain at most <n> connections to peers (default: %u) + Manté com a màxim <n> connexions a iguals (per defecte: %u) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + Memòria intermèdia màxima de recepció per connexió, <n>*1000 bytes (per defecte: %u) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + Memòria intermèdia màxima d'enviament per connexió, <n>*1000 bytes (per defecte: %u) + + + Only accept block chain matching built-in checkpoints (default: %u) + Només accepta els punts de control integrats que coincideixen amb la cadena de blocs (per defecte: %u) + + + Prepend debug output with timestamp (default: %u) + Posa davant de la sortida de depuració una marca horària (per defecte: %u) + + + Relay and mine data carrier transactions (default: %u) + Retransmet i mina les transaccions de l'operador (per defecte: %u) + + + Relay non-P2SH multisig (default: %u) + Retransmet multisig no P2SH (per defecte: %u) + + + Run a thread to flush wallet periodically (default: %u) + Executa un fil per buidar el moneder periòdicament (per defecte: %u) + + + Server certificate file (default: %s) + Fitxer de certificat del servidor (per defecte: %s) + + + Server private key (default: %s) + Clau privada del servidor (per defecte: %s) + + + Set key pool size to <n> (default: %u) + Defineix la mida clau disponible a <n> (per defecte: %u) + + + Set minimum block size in bytes (default: %u) + Defineix la mida de bloc mínima en bytes (per defecte: %u) + + + Set the number of threads to service RPC calls (default: %d) + Defineix el nombre de fils a crides de servei RPC (per defecte: %d) + + + Sets the DB_PRIVATE flag in the wallet db environment (default: %u) + Defineix el senyalador DB_PRIVATE en l'entorn db del moneder (per defecte: %u) + + + Specify configuration file (default: %s) + Especifica el fitxer de configuració (per defecte: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Especifica el temps d'espera de la connexió en milisegons (mínim: 1, per defecte: %d) + + + Specify pid file (default: %s) + Especifica el fitxer pid (per defecte: %s) + + + Spend unconfirmed change when sending transactions (default: %u) + Gasta el canvi no confirmat en enviar les transaccions (per defecte: %u) + + + Stop running after importing blocks from disk (default: %u) + Atura l'execució després d'importar blocs del disc (per defecte: %u) + + + Threshold for disconnecting misbehaving peers (default: %u) + Llindar per a desconnectar els iguals de comportament qüestionable (per defecte: %u) + Unknown network specified in -onlynet: '%s' Xarxa desconeguda especificada a -onlynet: '%s' @@ -3165,10 +3517,6 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Import no vàlid per a -paytxfee=<amount>: «%s» - - Invalid amount - Import no vàlid - Insufficient funds Balanç insuficient @@ -3201,13 +3549,9 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Ha acabat la càrrega - - To use the %s option - Utilitza l'opció %s - Error Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ca@valencia.ts b/src/qt/locale/bitcoin_ca@valencia.ts index d3bf33ebfbeb9..eed1de9ea6d59 100644 --- a/src/qt/locale/bitcoin_ca@valencia.ts +++ b/src/qt/locale/bitcoin_ca@valencia.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Feu doble clic per editar l'adreça o l'etiqueta + Right-click to edit address or label + Feu clic dret per a editar l'adreça o l'etiqueta Create a new address @@ -66,12 +66,12 @@ S'estan rebent les adreces - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estes són les vostres adreces de Bitcoin per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Estes són les vostres adreces de Hypercoin per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Estes són les vostres adreces Bitcoin per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Estes són les vostres adreces Hypercoin per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció. Copy &Label @@ -164,8 +164,8 @@ Confirma l'encriptació del moneder - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Avís: si encripteu el vostre moneder i perdeu la contrasenya, <b>PERDREU TOTS ELS VOSTRES BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Avís: si encripteu el vostre moneder i perdeu la contrasenya, <b>PERDREU TOTS ELS VOSTRES HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Introduïu la contrasenya nova al moneder.<br/>Utilitzeu una contrasenya de <b>deu o més caràcters aleatoris</b>, o <b>vuit o més paraules</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin es tancarà ara per acabar el procés d'encriptació. Recordeu que encriptar el moneder no protegeix completament els bitcoins de ser robats per programari maliciós instal·lat a l'ordinador. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin es tancarà ara per acabar el procés d'encriptació. Recordeu que encriptar el moneder no protegeix completament els hypercoins de ser robats per programari maliciós instal·lat a l'ordinador. Wallet encryption failed @@ -295,8 +295,8 @@ Obri un &URI... - Bitcoin Core client - Client del Bitcoin Core + Hypercoin Core client + Client del Hypercoin Core Importing blocks from disk... @@ -307,12 +307,12 @@ S'estan reindexant els blocs al disc... - Send coins to a Bitcoin address - Envia monedes a una adreça Bitcoin + Send coins to a Hypercoin address + Envia monedes a una adreça Hypercoin - Modify configuration options for Bitcoin - Modifica les opcions de configuració per bitcoin + Modify configuration options for Hypercoin + Modifica les opcions de configuració per hypercoin Backup wallet to another location @@ -335,8 +335,8 @@ &Verifica el missatge... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Rep - Show information about Bitcoin Core - Mostra informació del Bitcoin Core + Show information about Hypercoin Core + Mostra informació del Hypercoin Core &Show / Hide @@ -367,12 +367,12 @@ Encripta les claus privades pertanyents al moneder - Sign messages with your Bitcoin addresses to prove you own them - Signa el missatges amb la seua adreça de Bitcoin per provar que les poseeixes + Sign messages with your Hypercoin addresses to prove you own them + Signa el missatges amb la seua adreça de Hypercoin per provar que les poseeixes - Verify messages to ensure they were signed with specified Bitcoin addresses - Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Bitcoin específica. + Verify messages to ensure they were signed with specified Hypercoin addresses + Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Hypercoin específica. &File @@ -391,16 +391,16 @@ Barra d'eines de les pestanyes - Bitcoin Core - Nucli de Bitcoin + Hypercoin Core + Nucli de Hypercoin - Request payments (generates QR codes and bitcoin: URIs) - Sol·licita pagaments (genera codis QR i bitcoin: URI) + Request payments (generates QR codes and hypercoin: URIs) + Sol·licita pagaments (genera codis QR i hypercoin: URI) - &About Bitcoin Core - &Quant al Bitcoin Core + &About Hypercoin Core + &Quant al Hypercoin Core Show the list of used sending addresses and labels @@ -411,16 +411,16 @@ Mostra la llista d'adreces de recepció i etiquetes utilitzades - Open a bitcoin: URI or payment request - Obri una bitcoin: sol·licitud d'URI o pagament + Open a hypercoin: URI or payment request + Obri una hypercoin: sol·licitud d'URI o pagament &Command-line options Opcions de la &línia d'ordes - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Mostra el missatge d'ajuda del Bitcoin Core per obtindre una llista amb les possibles opcions de línia d'ordes de Bitcoin + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Mostra el missatge d'ajuda del Hypercoin Core per obtindre una llista amb les possibles opcions de línia d'ordes de Hypercoin No block source available... @@ -496,6 +496,10 @@ Address: %4 CoinControlDialog + + Coin Selection + Selecció de moneda + Quantity: Quantitat: @@ -544,6 +548,14 @@ Address: %4 Amount Quantitat + + Received with label + Rebut amb l'etiqueta + + + Received with address + Rebut amb l'adreça + Date Data @@ -748,8 +760,8 @@ Address: %4 L'adreça introduïda «%1» ja és present a la llibreta d'adreces. - The entered address "%1" is not a valid Bitcoin address. - L'adreça introduïda «%1» no és una adreça de Bitcoin vàlida. + The entered address "%1" is not a valid Hypercoin address. + L'adreça introduïda «%1» no és una adreça de Hypercoin vàlida. Could not unlock wallet. @@ -786,8 +798,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - Nucli de Bitcoin + Hypercoin Core + Nucli de Hypercoin version @@ -798,8 +810,8 @@ Address: %4 (%1-bit) - About Bitcoin Core - Quant al Bitcoin Core + About Hypercoin Core + Quant al Hypercoin Core Command-line options @@ -845,16 +857,16 @@ Address: %4 Vos donem la benviguda - Welcome to Bitcoin Core. - Vos donem la benvinguda al Bitcoin Core. + Welcome to Hypercoin Core. + Vos donem la benvinguda al Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Atès que és la primera vegada que executeu el programa, podeu triar on emmagatzemarà el Bitcoin Core les dades. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Atès que és la primera vegada que executeu el programa, podeu triar on emmagatzemarà el Hypercoin Core les dades. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - El Bitcoin Core descarregarà i emmagatzemarà una còpia de la cadena de blocs de Bitcoin. Com a mínim s'emmagatzemaran %1 GB de dades en este directori, que seguiran creixent gradualment. També s'hi emmagatzemarà el moneder. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + El Hypercoin Core descarregarà i emmagatzemarà una còpia de la cadena de blocs de Hypercoin. Com a mínim s'emmagatzemaran %1 GB de dades en este directori, que seguiran creixent gradualment. També s'hi emmagatzemarà el moneder. Use the default data directory @@ -865,8 +877,8 @@ Address: %4 Utilitza un directori de dades personalitzat: - Bitcoin Core - Nucli de Bitcoin + Hypercoin Core + Nucli de Hypercoin Error: Specified data directory "%1" cannot be created. @@ -911,12 +923,12 @@ Address: %4 &Principal - Automatically start Bitcoin after logging in to the system. - Inicia automàticament el Bitcoin després de l'inici de sessió del sistema. + Automatically start Hypercoin after logging in to the system. + Inicia automàticament el Hypercoin després de l'inici de sessió del sistema. - &Start Bitcoin on system login - &Inicia el Bitcoin a l'inici de sessió del sistema. + &Start Hypercoin on system login + &Inicia el Hypercoin a l'inici de sessió del sistema. Size of &database cache @@ -991,13 +1003,21 @@ Address: %4 &Gasta el canvi sense confirmar - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Obri el port del client de Bitcoin al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Obri el port del client de Hypercoin al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. Map port using &UPnP Port obert amb &UPnP + + Connect to the Hypercoin network through a SOCKS5 proxy. + Connecta a la xarxa Hypercoin a través d'un proxy SOCKS5. + + + &Connect through SOCKS5 proxy (default proxy): + &Connecta a través d'un proxy SOCKS5 (proxy per defecte): + Proxy &IP: &IP del proxy: @@ -1039,8 +1059,8 @@ Address: %4 &Llengua de la interfície d'usuari: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Ací podeu definir la llengua de l'aplicació. Esta configuració tindrà efecte una vegada es reinicie Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Ací podeu definir la llengua de l'aplicació. Esta configuració tindrà efecte una vegada es reinicie Hypercoin. &Unit to show amounts in: @@ -1098,8 +1118,8 @@ Address: %4 Formulari - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Bitcoin un cop s'ha establit connexió, però este proces no s'ha completat encara. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Hypercoin un cop s'ha establit connexió, però este proces no s'ha completat encara. Watch-only: @@ -1129,6 +1149,10 @@ Address: %4 Mined balance that has not yet matured Balanç minat que encara no ha madurat + + Balances + Balances + Total: Total: @@ -1141,6 +1165,14 @@ Address: %4 Your current balance in watch-only addresses El vostre balanç actual en adreces de només lectura + + Spendable: + Que es pot gastar: + + + Recent transactions + Transaccions recents + Unconfirmed transactions to watch-only addresses Transaccions sense confirmar a adreces de només lectura @@ -1193,16 +1225,16 @@ Address: %4 Error en la sol·licitud de pagament - Cannot start bitcoin: click-to-pay handler - No es pot iniciar bitcoin: gestor clica-per-pagar + Cannot start hypercoin: click-to-pay handler + No es pot iniciar hypercoin: gestor clica-per-pagar Payment request fetch URL is invalid: %1 L'URL de recuperació de la sol·licitud de pagament no és vàlida: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Bitcoin no vàlida o per paràmetres URI amb mal format. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Hypercoin no vàlida o per paràmetres URI amb mal format. Payment request file handling @@ -1220,6 +1252,14 @@ Address: %4 Refund from %1 Reemborsament de %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La sol·licitud de pagament %1 és massa gran (%2 bytes, permés %3 bytes). + + + Payment request DoS protection + Protecció de DoS per a la sol·licitud de pagament + Error communicating with %1: %2 Error en comunicar amb %1: %2 @@ -1263,8 +1303,8 @@ Address: %4 Quantitat - Enter a Bitcoin address (e.g. %1) - Introduïu una adreça de Bitcoin (p. ex. %1) + Enter a Hypercoin address (e.g. %1) + Introduïu una adreça de Hypercoin (p. ex. %1) %1 d @@ -1489,16 +1529,16 @@ Address: %4 Fitxer de registre de depuració - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Obri el fitxer de registre de depuració de Bitcoin del directori de dades actual. Això pot trigar uns quants segons per a fitxers de registre grans. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Obri el fitxer de registre de depuració de Hypercoin del directori de dades actual. Això pot trigar uns quants segons per a fitxers de registre grans. Clear console Neteja la consola - Welcome to the Bitcoin RPC console. - Vos donem la benvinguda a la consola RPC de Bitcoin + Welcome to the Hypercoin RPC console. + Vos donem la benvinguda a la consola RPC de Hypercoin Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1572,8 +1612,8 @@ Address: %4 R&eutilitza una adreça de recepció anterior (no recomanat) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'òbriga la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'òbriga la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Hypercoin. An optional label to associate with the new receiving address. @@ -1776,6 +1816,70 @@ Address: %4 Custom change address Personalitza l'adreça de canvi + + Transaction Fee: + Comissió de transacció + + + Choose... + Tria... + + + collapse fee-settings + redueix els paràmetres de comissió + + + per kilobyte + per kilobyte + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «total com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + + total at least + total com a mínim + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + No hi ha cap problema en pagar només la comissió mínima sempre que hi haja menys volum de transacció que espai en els blocs. Però tingueu present que això pot acabar en una transacció que mai es confirme una vegada hi haja més demanda de transaccions de hypercoins que la xarxa puga processar. + + + (read the tooltip) + (llegiu l'indicador de funció) + + + Recommended: + Recomanada: + + + Custom: + Personalitzada: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (No s'ha inicialitzat encara la comissió intel·ligent. Normalment pren uns pocs blocs...) + + + Confirmation time: + Temps de confirmació: + + + normal + normal + + + fast + ràpid + + + Send as zero-fee transaction if possible + Envia com a transacció de comissió zero si és possible + + + (confirmation may take longer) + (la confirmació pot trigar més temps) + Send to multiple recipients at once Envia a múltiples destinataris al mateix temps @@ -1844,10 +1948,6 @@ Address: %4 Copy change Copia el canvi - - Total Amount %1 (= %2) - Import total %1 (= %2) - or o @@ -1881,8 +1981,12 @@ Address: %4 S'ha rebutjat la transacció! Això pot passar si alguna de les monedes del vostre moneder ja s'han gastat; per exemple, si heu fet servir una còpia de seguretat del fitxer wallet.dat i s'hagueren gastat monedes de la còpia però sense marcar-les-hi com a gastades. - Warning: Invalid Bitcoin address - Avís: adreça Bitcoin no vàlida + Pay only the minimum fee of %1 + Paga només la comissió mínima de %1 + + + Warning: Invalid Hypercoin address + Avís: adreça Hypercoin no vàlida (no label) @@ -1932,8 +2036,8 @@ Address: %4 Això és un pagament normal. - The Bitcoin address to send the payment to - L'adreça Bitcoin on enviar el pagament + The Hypercoin address to send the payment to + L'adreça Hypercoin on enviar el pagament Alt+A @@ -1964,8 +2068,8 @@ Address: %4 Introduïu una etiqueta per a esta adreça per afegir-la a la llista d'adreces utilitzades - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Bitcoin. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Un missatge que s'ha adjuntat al hypercoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Hypercoin. This is an unverified payment request. @@ -1983,8 +2087,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - S'està parant el Bitcoin Core... + Hypercoin Core is shutting down... + S'està parant el Hypercoin Core... Do not shut down the computer until this window disappears. @@ -2006,8 +2110,8 @@ Address: %4 Podeu signar missatges amb la vostra adreça per provar que són vostres. Aneu amb compte no signar qualsevol cosa, ja que els atacs de pesca electrònica (phishing) poden provar de confondre-vos perquè els signeu amb la vostra identitat. Només signeu als documents completament detallats amb què hi esteu d'acord. - The Bitcoin address to sign the message with - L'adreça Bitcoin amb què signar el missatge + The Hypercoin address to sign the message with + L'adreça Hypercoin amb què signar el missatge Choose previously used address @@ -2038,8 +2142,8 @@ Address: %4 Copia la signatura actual al porta-retalls del sistema - Sign the message to prove you own this Bitcoin address - Signa el missatge per provar que ets propietari d'esta adreça Bitcoin + Sign the message to prove you own this Hypercoin address + Signa el missatge per provar que ets propietari d'esta adreça Hypercoin Sign &Message @@ -2062,12 +2166,12 @@ Address: %4 Introduïsca l'adreça signant, missatge (assegura't que copies salts de línia, espais, tabuladors, etc excactament tot el text) i la signatura a sota per verificar el missatge. Per evitar ser enganyat per un atac home-entre-mig, vés amb compte de no llegir més en la signatura del que hi ha al missatge signat mateix. - The Bitcoin address the message was signed with - L'adreça Bitcoin amb què va ser signat el missatge + The Hypercoin address the message was signed with + L'adreça Hypercoin amb què va ser signat el missatge - Verify the message to ensure it was signed with the specified Bitcoin address - Verificar el missatge per assegurar-se que ha estat signat amb una adreça Bitcoin específica + Verify the message to ensure it was signed with the specified Hypercoin address + Verificar el missatge per assegurar-se que ha estat signat amb una adreça Hypercoin específica Verify &Message @@ -2133,8 +2237,8 @@ Address: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2392,6 +2496,10 @@ Address: %4 Type of transaction. Tipus de transacció. + + Whether or not a watch-only address is involved in this transaction. + Si està implicada o no una adreça només de lectura en la transacció. + Destination address of transaction. Adreça del destinatari de la transacció. @@ -2487,6 +2595,10 @@ Address: %4 Export Transaction History Exporta l'historial de transacció + + Watch-only + Només de lectura + Exporting Failed L'exportació ha fallat @@ -2630,29 +2742,6 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Accepta connexions de fora (per defecte: 1 si no -proxy o -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, heu d'establir una contrasenya RPC al fitxer de configuració: %s -Es recomana que useu la següent contrasenya aleatòria: -rpcuser=bitcoinrpc -rpcpassword=%s -(no necesiteu recordar esta contrasenya) -El nom d'usuari i la contrasenya NO HAN de ser els mateixos. -Si el fitxer no existeix, crea'l amb els permisos de fitxer de només lectura per al propietari. -També es recomana establir la notificació d'alertes i així sereu notificat de les incidències; -per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincula a una adreça específica i sempre escolta-hi. Utilitza la notació [host]:port per IPv6 @@ -2662,16 +2751,12 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Elimina totes les transaccions del moneder i només recupera aquelles de la cadena de blocs a través de -rescan a l'inici - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Entra en el mode de proves de regressió, que utilitza una cadena especial en què els blocs poden resoldre's al moment. - - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Error: La transacció ha estat rebutjada. Això pot passar si alguna de les monedes del teu moneder ja s'han gastat, com si haguesis usat una copia de l'arxiu wallet.dat i s'hagueren gastat monedes de la copia però sense marcar com gastades en este. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Distribuït sota llicència de programari MIT. Vegeu el fitxer acompanyant COPYING o <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Error: Esta transacció requereix una comissió d'almenys %s degut al seu import, complexitat o per l'ús de fons recentment rebuts! + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Entra en el mode de proves de regressió, que utilitza una cadena especial en què els blocs poden resoldre's al moment. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) @@ -2690,8 +2775,8 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Esta és una versió de pre-llançament - utilitza-la sota la teva responsabilitat - No usar per a minería o aplicacions de compra-venda - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - No es pot enllaçar %s a este ordinador. El Bitcoin Core probablement ja estiga executant-s'hi. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + No es pot enllaçar %s a este ordinador. El Hypercoin Core probablement ja estiga executant-s'hi. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2713,6 +2798,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Avís: el fitxer wallet.dat és corrupte, dades rescatades! L'arxiu wallet.dat original ha estat guardat com wallet.{estampa_temporal}.bak al directori %s; si el teu balanç o transaccions son incorrectes hauries de restaurar-lo de un backup. + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Afig a la llista blanca els iguals que es connecten de la màscara de xarxa o adreça IP donada. Es pot especificar moltes vegades. + (default: 1) (per defecte: 1) @@ -2777,10 +2866,6 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error: Disk space is low! Error: Espai al disc baix! - - Error: Wallet locked, unable to create transaction! - Error: El moneder està bloquejat, no és possible crear la transacció! - Failed to listen on any port. Use -listen=0 if you want this. Ha fallat escoltar a qualsevol port. Feu servir -listen=0 si voleu fer això. @@ -2805,6 +2890,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Not enough file descriptors available. No hi ha suficient descriptors de fitxers disponibles. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Només connecta als nodes de la xarxa <net> (ipv4, ipv6 o onion) + Rebuild block chain index from current blk000??.dat files Reconstrueix l'índex de la cadena de blocs dels fitxers actuals blk000??.dat @@ -2825,6 +2914,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com This is intended for regression testing tools and app development. Això s'així per a eines de proves de regressió per al desenvolupament d'aplicacions. + + Use UPnP to map the listening port (default: %u) + Utilitza UPnP per a mapejar el port d'escolta (per defecte: %u) + Verifying blocks... S'estan verificant els blocs... @@ -2862,8 +2955,8 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Vincula a l'adreça donada per a escoltar les connexions JSON-RPC. Feu servir la notació [host]:port per a IPv6. Esta opció pot ser especificada moltes vegades (per defecte: vincula a totes les interfícies) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - No es pot obtindre un bloqueig del directori de dades %s. El Bitcoin Core probablement ja s'estiga executant. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + No es pot obtindre un bloqueig del directori de dades %s. El Hypercoin Core probablement ja s'estiga executant. Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) @@ -2882,12 +2975,24 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Executa l'orde quan es reba un avís rellevant o veiem una forquilla molt llarga (%s en cmd és reemplaçat per un missatge) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Comissions (en BTC/Kb) inferiors a això es consideren de comissió zero per a la transmissió (per defecte: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Comissions (en HOT/Kb) inferiors a això es consideren de comissió zero per a la transmissió (per defecte: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Comissions (en HOT/Kb) inferiors a això es consideren de comissió zero per a la creació de la transacció (per defecte: %s) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Comissions (en BTC/Kb) inferiors a això es consideren de comissió zero per a la creació de la transacció (per defecte: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Si no s'especifica una paytxfee (comissió de transacció de pagament), inclogueu suficient comissió per tal que les transaccions comencen a confirmar-se en una mitja de n blocs (per defecte: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Import no vàlid per a -maxtxfee=<amount>: '%s' (cal que siga com a mínim la comissió de minrelay de %s per evitar que les comissions s'encallin) + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Mida màxima de les dades en les transaccions de l'operador en què confiem i en les meues (per defecte: %u) Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) @@ -2897,18 +3002,53 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Defineix la mida màxima de transaccions d'alta prioritat / baixa comissió en bytes (per defecte: %d) + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Defineix el nombre de fils per a la generació de moneda si està habilitat (-1 = tots els nuclis, per defecte: %d) + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Este producte inclou programari desenvolupat pel projecte OpenSSL per a ús a l'OpenSSL Toolkit <https://www.openssl.org/> i programari criptogràfic escrit per Eric Young i programari UPnP escrit per Thomas Bernard. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Avís: comproveu que la data i hora del vostre ordinador siguen correctes! Si el vostre rellotge no és correcte, el Bitcoin Core no funcionarà correctament. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Per utilitzar hypercoind, o l'opció de serviddor de hypercoin-qt, heu de definir una rpcpassword en el fitxer de configuració: +%s +Es recomana que utilitzeu la contrasenya aleatòria següent: +rpcuser=hypercoinrpc +rpcpassword=%s +(no cal que recordeu la contrasenya) +El nom d'usuari i la contrasenya NO han de ser els mateixos. +Si el fitxer no existeix, creeu-ne un amb permisos de lectura només per al seu propietari. +Es recomana definir alertnotify per tal de ser notificat de qualsevol problema; +per exemple: alertnotify=echo %%s | mail -s "Avís de Hypercoin" admin@foo.com + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Avís: s'ha especificat un -maxtxfee molt alt! Comissions tan grans podrien pagar-se en una única transacció. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Avís: comproveu que la data i hora del vostre ordinador siguen correctes! Si el vostre rellotge no és correcte, el Hypercoin Core no funcionarà correctament. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Els iguals en la llista blanca no poden ser bandejats per DoS i es transmetran sempre llurs transaccions, fins i tot si ja són a la mempool. Això és útil, p. ex., per a una passarel·la + + Accept public REST requests (default: %u) + Accepta sol·licituds REST públiques (per defecte: %u) + Cannot resolve -whitebind address: '%s' No es pot resoldre l'adreça -whitebind: «%s» @@ -2926,24 +3066,32 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com No s'ha pogut analitzar el valor -rpcbind %s com una adreça de xarxa - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Error en carregar wallet.dat: el moneder requereix una versió més nova del Bitcoin core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Error en carregar wallet.dat: el moneder requereix una versió més nova del Hypercoin core + + + Error reading from database, shutting down. + Error en llegir la base de dades, tancant. Error: Unsupported argument -tor found, use -onion. Error: s'ha trobat un argument -tor no acceptat. Feu servir -onion. - Fee (in BTC/kB) to add to transactions you send (default: %s) - Comissió en (BTC/kB) per afegir a les transaccions que envieu (per defecte: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Comissió en (HOT/kB) per afegir a les transaccions que envieu (per defecte: %s) Information &Informació - Initialization sanity check failed. Bitcoin Core is shutting down. - Ha fallat la inicialització de la comprovació de validesa. El Bitcoin Core s'està parant. + Initialization sanity check failed. Hypercoin Core is shutting down. + Ha fallat la inicialització de la comprovació de validesa. El Hypercoin Core s'està parant. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Import no vàlid per a -maxtxfee=<amount>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -2962,8 +3110,8 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com S'ha especificat una màscara de xarxa no vàlida a -whitelist: «%s» - Keep at most <n> unconnectable blocks in memory (default: %u) - Manté com a màxim <n> blocs no connectables en memòria (per defecte: %u) + Keep at most <n> unconnectable transactions in memory (default: %u) + Manté com a màxim <n> transaccions no connectables en memòria (per defecte: %u) Need to specify a port with -whitebind: '%s' @@ -2974,17 +3122,17 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Opcions de transmissió del node: - Print block on startup, if found in block index - Imprimeix el block a l'inici, si es troba l'índex de blocs - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opcions RPC SSL: (veieu el wiki del Bitcoin per a instruccions de configuració de l'SSL) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Opcions RPC SSL: (veieu el wiki del Hypercoin per a instruccions de configuració de l'SSL) RPC server options: Opcions del servidor RPC: + + RPC support for HTTP persistent connections (default: %d) + Suport RPC per a connexions HTTP persistents (per defecte: %d) + Randomly drop 1 of every <n> network messages Descarta a l'atzar 1 de cada <n> missatges de la xarxa @@ -2997,6 +3145,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Send trace/debug info to console instead of debug.log file Envia informació de traça/depuració a la consola en comptes del fitxer debug.log + + Send transactions as zero-fee transactions if possible (default: %u) + Envia les transaccions com a transaccions de comissió zero sempre que siga possible (per defecte: %u) + Show all debugging options (usage: --help -help-debug) Mostra totes les opcions de depuració (ús: --help --help-debug) @@ -3021,6 +3173,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Transaction amounts must be positive Els imports de les transaccions han de ser positius + + Transaction too large for fee policy + Transacció massa gran per a la política de comissions + Transaction too large La transacció és massa gran @@ -3038,8 +3194,8 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Nom d'usuari per a connexions JSON-RPC - Wallet needed to be rewritten: restart Bitcoin Core to complete - Cal reescriure el moneder: reiniceu el Bitcoin Core per completar-ho. + Wallet needed to be rewritten: restart Hypercoin Core to complete + Cal reescriure el moneder: reiniceu el Hypercoin Core per completar-ho. Warning @@ -3105,14 +3261,134 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error loading wallet.dat: Wallet corrupted Error en carregar wallet.dat: Moneder corrupte + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = manté les metadades de les tx, p. ex., propietari del compte i informació de sol·licitud del pagament, 2 = prescindeix de les metadades de les tx) + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Com d'exhaustiva és la verificació de blocs del -checkblocks (0-4, per defecte: %u) + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Manté un índex complet de transaccions, utilitzat per la crida rpc getrawtransaction (per defecte: %u) + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Nombre de segons necessaris perquè els iguals de comportament qüestionable puguen tornar a connectar-se (per defecte: %u) + + + Output debugging information (default: %u, supplying <category> is optional) + Informació d'eixida de la depuració (per defecte: %u, proporcionar <category> és opcional) + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor (per defecte: %s) + + + (default: %s) + (per defecte: %s) + + + Acceptable ciphers (default: %s) + Xifrats acceptables (per defecte: %s) + + + Always query for peer addresses via DNS lookup (default: %u) + Demana sempre les adreces dels iguals a través de consultes DNS (per defecte: %u) + Error loading wallet.dat Error en carregar wallet.dat + + Generate coins (default: %u) + Genera monedes (per defecte: %u) + + + How many blocks to check at startup (default: %u, 0 = all) + Quants blocs per comprovar a l'inici (per defecte: %u, 0 = tots) + + + Include IP addresses in debug output (default: %u) + Inclou l'adreça IP a l'eixida de depuració (per defecte: %u) + Invalid -proxy address: '%s' Adreça -proxy invalida: '%s' + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + Escolta les connexions JSON-RPC en <port> (per defecte: %u o testnet: %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + Escolta les connexions en <port> (per defecte: %u o testnet: %u) + + + Maintain at most <n> connections to peers (default: %u) + Manté com a màxim <n> connexions a iguals (per defecte: %u) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + Memòria intermèdia màxima de recepció per connexió, <n>*1000 bytes (per defecte: %u) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + Memòria intermèdia màxima d'enviament per connexió, <n>*1000 bytes (per defecte: %u) + + + Prepend debug output with timestamp (default: %u) + Posa davant de l'eixida de depuració una marca horària (per defecte: %u) + + + Relay and mine data carrier transactions (default: %u) + Retransmet i mina les transaccions de l'operador (per defecte: %u) + + + Relay non-P2SH multisig (default: %u) + Retransmet multisig no P2SH (per defecte: %u) + + + Server certificate file (default: %s) + Fitxer de certificat del servidor (per defecte: %s) + + + Server private key (default: %s) + Clau privada del servidor (per defecte: %s) + + + Set key pool size to <n> (default: %u) + Defineix la mida clau disponible a <n> (per defecte: %u) + + + Set minimum block size in bytes (default: %u) + Defineix la mida de bloc mínima en bytes (per defecte: %u) + + + Set the number of threads to service RPC calls (default: %d) + Defineix el nombre de fils a crides de servei RPC (per defecte: %d) + + + Specify configuration file (default: %s) + Especifica el fitxer de configuració (per defecte: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Especifica el temps d'espera de la connexió en milisegons (mínim: 1, per defecte: %d) + + + Specify pid file (default: %s) + Especifica el fitxer pid (per defecte: %s) + + + Spend unconfirmed change when sending transactions (default: %u) + Gasta el canvi no confirmat en enviar les transaccions (per defecte: %u) + + + Threshold for disconnecting misbehaving peers (default: %u) + Llindar per a desconnectar els iguals de comportament qüestionable (per defecte: %u) + Unknown network specified in -onlynet: '%s' Xarxa desconeguda especificada a -onlynet: '%s' @@ -3129,10 +3405,6 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Import no vàlid per a -paytxfee=<amount>: «%s» - - Invalid amount - Import no vàlid - Insufficient funds Balanç insuficient @@ -3165,13 +3437,9 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Ha acabat la càrrega - - To use the %s option - Utilitza l'opció %s - Error Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ca_ES.ts b/src/qt/locale/bitcoin_ca_ES.ts index 60c6fa30f4cff..fc9baf4794ad3 100644 --- a/src/qt/locale/bitcoin_ca_ES.ts +++ b/src/qt/locale/bitcoin_ca_ES.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Feu doble clic per editar l'adreça o l'etiqueta + Right-click to edit address or label + Feu clic dret per a editar l'adreça o l'etiqueta Create a new address @@ -66,12 +66,12 @@ S'estan rebent les adreces - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Aquestes són les vostres adreces de Bitcoin per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Aquestes són les vostres adreces de Hypercoin per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Aquestes són les vostres adreces Bitcoin per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Aquestes són les vostres adreces Hypercoin per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció. Copy &Label @@ -164,8 +164,8 @@ Confirma l'encriptació del moneder - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Avís: si encripteu el vostre moneder i perdeu la contrasenya, <b>PERDREU TOTS ELS VOSTRES BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Avís: si encripteu el vostre moneder i perdeu la contrasenya, <b>PERDREU TOTS ELS VOSTRES HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Introduïu la contrasenya nova al moneder.<br/>Utilitzeu una contrasenya de <b>deu o més caràcters aleatoris</b>, o <b>vuit o més paraules</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin es tancarà ara per acabar el procés d'encriptació. Recordeu que encriptar el moneder no protegeix completament els bitcoins de ser robats per programari maliciós instal·lat a l'ordinador. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin es tancarà ara per acabar el procés d'encriptació. Recordeu que encriptar el moneder no protegeix completament els hypercoins de ser robats per programari maliciós instal·lat a l'ordinador. Wallet encryption failed @@ -295,8 +295,8 @@ Obre un &URI... - Bitcoin Core client - Client del Bitcoin Core + Hypercoin Core client + Client del Hypercoin Core Importing blocks from disk... @@ -307,12 +307,12 @@ S'estan reindexant els blocs al disc... - Send coins to a Bitcoin address - Envia monedes a una adreça Bitcoin + Send coins to a Hypercoin address + Envia monedes a una adreça Hypercoin - Modify configuration options for Bitcoin - Modifica les opcions de configuració per bitcoin + Modify configuration options for Hypercoin + Modifica les opcions de configuració per hypercoin Backup wallet to another location @@ -335,8 +335,8 @@ &Verifica el missatge... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Rep - Show information about Bitcoin Core - Mostra informació del Bitcoin Core + Show information about Hypercoin Core + Mostra informació del Hypercoin Core &Show / Hide @@ -367,12 +367,12 @@ Encripta les claus privades pertanyents al moneder - Sign messages with your Bitcoin addresses to prove you own them - Signa el missatges amb la seva adreça de Bitcoin per provar que les poseeixes + Sign messages with your Hypercoin addresses to prove you own them + Signa el missatges amb la seva adreça de Hypercoin per provar que les poseeixes - Verify messages to ensure they were signed with specified Bitcoin addresses - Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Bitcoin específica. + Verify messages to ensure they were signed with specified Hypercoin addresses + Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Hypercoin específica. &File @@ -391,16 +391,16 @@ Barra d'eines de les pestanyes - Bitcoin Core - Nucli de Bitcoin + Hypercoin Core + Nucli de Hypercoin - Request payments (generates QR codes and bitcoin: URIs) - Sol·licita pagaments (genera codis QR i bitcoin: URI) + Request payments (generates QR codes and hypercoin: URIs) + Sol·licita pagaments (genera codis QR i hypercoin: URI) - &About Bitcoin Core - &Quant al Bitcoin Core + &About Hypercoin Core + &Quant al Hypercoin Core Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Mostra la llista d'adreces de recepció i etiquetes utilitzades - Open a bitcoin: URI or payment request - Obre una bitcoin: sol·licitud d'URI o pagament + Open a hypercoin: URI or payment request + Obre una hypercoin: sol·licitud d'URI o pagament &Command-line options Opcions de la &línia d'ordres - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Mostra el missatge d'ajuda del Bitcoin Core per obtenir una llista amb les possibles opcions de línia d'ordres de Bitcoin + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Mostra el missatge d'ajuda del Hypercoin Core per obtenir una llista amb les possibles opcions de línia d'ordres de Hypercoin - %n active connection(s) to Bitcoin network - %n connexió activa a la xarxa Bitcoin%n connexions actives a la xarxa Bitcoin + %n active connection(s) to Hypercoin network + %n connexió activa a la xarxa Hypercoin%n connexions actives a la xarxa Hypercoin No block source available... @@ -478,6 +478,10 @@ Up to date Al dia + + Processed %n blocks of transaction history. + S'ha processat %n bloc de l'historial de transacció.S'han processat %n blocs de l'historial de transacció. + Catching up... S'està posant al dia ... @@ -516,6 +520,10 @@ Address: %4 CoinControlDialog + + Coin Selection + Selecció de moneda + Quantity: Quantitat: @@ -534,7 +542,7 @@ Address: %4 Fee: - Quota: + Comissió Dust: @@ -542,7 +550,7 @@ Address: %4 After Fee: - Quota posterior: + Comissió posterior: Change: @@ -562,7 +570,15 @@ Address: %4 Amount - Quantitat + Import + + + Received with label + Rebut amb l'etiqueta + + + Received with address + Rebut amb l'adreça Date @@ -694,7 +710,7 @@ Address: %4 This means a fee of at least %1 per kB is required. - Això comporta una comissi d'almenys %1 per kB. + Això comporta una comissió d'almenys %1 per kB. Can vary +/- 1 byte per input. @@ -729,7 +745,7 @@ Address: %4 EditAddressDialog Edit Address - Editar Adreça + Edita l'adreça &Label @@ -768,8 +784,8 @@ Address: %4 L'adreça introduïda «%1» ja és present a la llibreta d'adreces. - The entered address "%1" is not a valid Bitcoin address. - L'adreça introduïda «%1» no és una adreça de Bitcoin vàlida. + The entered address "%1" is not a valid Hypercoin address. + L'adreça introduïda «%1» no és una adreça de Hypercoin vàlida. Could not unlock wallet. @@ -806,8 +822,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - Nucli de Bitcoin + Hypercoin Core + Nucli de Hypercoin version @@ -818,8 +834,8 @@ Address: %4 (%1-bit) - About Bitcoin Core - Quant al Bitcoin Core + About Hypercoin Core + Quant al Hypercoin Core Command-line options @@ -839,7 +855,7 @@ Address: %4 Set language, for example "de_DE" (default: system locale) - Defineix un idioma, per exemple "de_DE" (per defecte: preferències locals de sistema) + Defineix un idioma, per exemple «de_DE» (per defecte: preferències locals de sistema) Start minimized @@ -865,16 +881,16 @@ Address: %4 Us donem la benviguda - Welcome to Bitcoin Core. - Us donem la benvinguda al Bitcoin Core. + Welcome to Hypercoin Core. + Us donem la benvinguda al Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Atès que és la primera vegada que executeu el programa, podeu triar on emmagatzemarà el Bitcoin Core les dades. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Atès que és la primera vegada que executeu el programa, podeu triar on emmagatzemarà el Hypercoin Core les dades. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - El Bitcoin Core descarregarà i emmagatzemarà una còpia de la cadena de blocs de Bitcoin. Com a mínim s'emmagatzemaran %1 GB de dades en aquest directori, que seguiran creixent gradualment. També s'hi emmagatzemarà el moneder. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + El Hypercoin Core descarregarà i emmagatzemarà una còpia de la cadena de blocs de Hypercoin. Com a mínim s'emmagatzemaran %1 GB de dades en aquest directori, que seguiran creixent gradualment. També s'hi emmagatzemarà el moneder. Use the default data directory @@ -885,8 +901,8 @@ Address: %4 Utilitza un directori de dades personalitzat: - Bitcoin Core - Nucli de Bitcoin + Hypercoin Core + Nucli de Hypercoin Error: Specified data directory "%1" cannot be created. @@ -896,7 +912,15 @@ Address: %4 Error Error - + + %n GB of free space available + %n GB d'espai lliure disponible%n GB d'espai lliure disponible + + + (of %n GB needed) + (de %n GB necessari)(de %n GB necessaris) + + OpenURIDialog @@ -931,12 +955,12 @@ Address: %4 &Principal - Automatically start Bitcoin after logging in to the system. - Inicia automàticament el Bitcoin després de l'inici de sessió del sistema. + Automatically start Hypercoin after logging in to the system. + Inicia automàticament el Hypercoin després de l'inici de sessió del sistema. - &Start Bitcoin on system login - &Inicia el Bitcoin a l'inici de sessió del sistema. + &Start Hypercoin on system login + &Inicia el Hypercoin a l'inici de sessió del sistema. Size of &database cache @@ -1011,13 +1035,21 @@ Address: %4 &Gasta el canvi sense confirmar - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Obre el port del client de Bitcoin al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Obre el port del client de Hypercoin al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. Map port using &UPnP Port obert amb &UPnP + + Connect to the Hypercoin network through a SOCKS5 proxy. + Connecta a la xarxa Hypercoin a través d'un proxy SOCKS5. + + + &Connect through SOCKS5 proxy (default proxy): + &Connecta a través d'un proxy SOCKS5 (proxy per defecte): + Proxy &IP: &IP del proxy: @@ -1059,8 +1091,8 @@ Address: %4 &Llengua de la interfície d'usuari: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Aquí podeu definir la llengua de l'aplicació. Aquesta configuració tindrà efecte una vegada es reiniciï Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Aquí podeu definir la llengua de l'aplicació. Aquesta configuració tindrà efecte una vegada es reiniciï Hypercoin. &Unit to show amounts in: @@ -1118,8 +1150,8 @@ Address: %4 Formulari - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Bitcoin un cop s'ha establert connexió, però aquest proces no s'ha completat encara. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Hypercoin un cop s'ha establert connexió, però aquest proces no s'ha completat encara. Watch-only: @@ -1149,6 +1181,10 @@ Address: %4 Mined balance that has not yet matured Balanç minat que encara no ha madurat + + Balances + Balances + Total: Total: @@ -1161,6 +1197,14 @@ Address: %4 Your current balance in watch-only addresses El vostre balanç actual en adreces de només lectura + + Spendable: + Que es pot gastar: + + + Recent transactions + Transaccions recents + Unconfirmed transactions to watch-only addresses Transaccions sense confirmar a adreces de només lectura @@ -1213,16 +1257,16 @@ Address: %4 Error en la sol·licitud de pagament - Cannot start bitcoin: click-to-pay handler - No es pot iniciar bitcoin: gestor clica-per-pagar + Cannot start hypercoin: click-to-pay handler + No es pot iniciar hypercoin: gestor clica-per-pagar Payment request fetch URL is invalid: %1 L'URL de recuperació de la sol·licitud de pagament no és vàlida: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Bitcoin no vàlida o per paràmetres URI amb mal format. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Hypercoin no vàlida o per paràmetres URI amb mal format. Payment request file handling @@ -1240,6 +1284,14 @@ Address: %4 Refund from %1 Reemborsament de %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La sol·licitud de pagament %1 és massa gran (%2 bytes, permès %3 bytes). + + + Payment request DoS protection + Protecció de DoS per a la sol·licitud de pagament + Error communicating with %1: %2 Error en comunicar amb %1: %2 @@ -1280,11 +1332,11 @@ Address: %4 QObject Amount - Quantitat + Import - Enter a Bitcoin address (e.g. %1) - Introduïu una adreça de Bitcoin (p. ex. %1) + Enter a Hypercoin address (e.g. %1) + Introduïu una adreça de Hypercoin (p. ex. %1) %1 d @@ -1509,16 +1561,16 @@ Address: %4 Fitxer de registre de depuració - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Obre el fitxer de registre de depuració de Bitcoin del directori de dades actual. Això pot trigar uns quants segons per a fitxers de registre grans. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Obre el fitxer de registre de depuració de Hypercoin del directori de dades actual. Això pot trigar uns quants segons per a fitxers de registre grans. Clear console Neteja la consola - Welcome to the Bitcoin RPC console. - Us donem la benvinguda a la consola RPC de Bitcoin + Welcome to the Hypercoin RPC console. + Us donem la benvinguda a la consola RPC de Hypercoin Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1592,8 +1644,8 @@ Address: %4 R&eutilitza una adreça de recepció anterior (no recomanat) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Hypercoin. An optional label to associate with the new receiving address. @@ -1782,7 +1834,7 @@ Address: %4 After Fee: - Quota posterior: + Comissió posterior: Change: @@ -1796,6 +1848,78 @@ Address: %4 Custom change address Personalitza l'adreça de canvi + + Transaction Fee: + Comissió de transacció + + + Choose... + Tria... + + + collapse fee-settings + redueix els paràmetres de comissió + + + Minimize + Minimitza + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + + per kilobyte + per kilobyte + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «total com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + + total at least + total com a mínim + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + No hi ha cap problema en pagar només la comissió mínima sempre que hi hagi menys volum de transacció que espai en els blocs. Però tingueu present que això pot acabar en una transacció que mai es confirmi una vegada hi hagi més demanda de transaccions de hypercoins que la xarxa pugui processar. + + + (read the tooltip) + (llegiu l'indicador de funció) + + + Recommended: + Recomanada: + + + Custom: + Personalitzada: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (No s'ha inicialitzat encara la comissió intel·ligent. Normalment pren uns pocs blocs...) + + + Confirmation time: + Temps de confirmació: + + + normal + normal + + + fast + ràpid + + + Send as zero-fee transaction if possible + Envia com a transacció de comissió zero si és possible + + + (confirmation may take longer) + (la confirmació pot trigar més temps) + Send to multiple recipients at once Envia a múltiples destinataris al mateix temps @@ -1846,7 +1970,7 @@ Address: %4 Copy fee - Copia la comissi + Copia la comissió Copy after fee @@ -1864,10 +1988,6 @@ Address: %4 Copy change Copia el canvi - - Total Amount %1 (= %2) - Import total %1 (= %2) - or o @@ -1886,7 +2006,7 @@ Address: %4 The total exceeds your balance when the %1 transaction fee is included. - El total excedeix el teu balanç quan s'afegeix la comisió a la transacció %1. + El total excedeix el teu balanç quan s'afegeix la comissió a la transacció %1. Duplicate address found, can only send to each address once per send operation. @@ -1901,8 +2021,20 @@ Address: %4 S'ha rebutjat la transacció! Això pot passar si alguna de les monedes del vostre moneder ja s'han gastat; per exemple, si heu fet servir una còpia de seguretat del fitxer wallet.dat i s'haguessin gastat monedes de la còpia però sense marcar-les-hi com a gastades. - Warning: Invalid Bitcoin address - Avís: adreça Bitcoin no vàlida + A fee higher than %1 is considered an insanely high fee. + Una comissió superior a %1 es considera una comissió excessiva. + + + Pay only the minimum fee of %1 + Paga només la comissió mínima de %1 + + + Estimated to begin confirmation within %1 block(s). + Estimat per a començar la confirmació en %1 bloc(s). + + + Warning: Invalid Hypercoin address + Avís: adreça Hypercoin no vàlida (no label) @@ -1952,8 +2084,8 @@ Address: %4 Això és un pagament normal. - The Bitcoin address to send the payment to - L'adreça Bitcoin on enviar el pagament + The Hypercoin address to send the payment to + L'adreça Hypercoin on enviar el pagament Alt+A @@ -1984,8 +2116,8 @@ Address: %4 Introduïu una etiqueta per a aquesta adreça per afegir-la a la llista d'adreces utilitzades - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Bitcoin. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Un missatge que s'ha adjuntat al hypercoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Hypercoin. This is an unverified payment request. @@ -2003,8 +2135,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - S'està aturant el Bitcoin Core... + Hypercoin Core is shutting down... + S'està aturant el Hypercoin Core... Do not shut down the computer until this window disappears. @@ -2026,8 +2158,8 @@ Address: %4 Podeu signar missatges amb la vostra adreça per provar que són vostres. Aneu amb compte no signar qualsevol cosa, ja que els atacs de pesca electrònica (phishing) poden provar de confondre-us perquè els signeu amb la vostra identitat. Només signeu als documents completament detallats amb què hi esteu d'acord. - The Bitcoin address to sign the message with - L'adreça Bitcoin amb què signar el missatge + The Hypercoin address to sign the message with + L'adreça Hypercoin amb què signar el missatge Choose previously used address @@ -2058,8 +2190,8 @@ Address: %4 Copia la signatura actual al porta-retalls del sistema - Sign the message to prove you own this Bitcoin address - Signa el missatge per provar que ets propietari d'aquesta adreça Bitcoin + Sign the message to prove you own this Hypercoin address + Signa el missatge per provar que ets propietari d'aquesta adreça Hypercoin Sign &Message @@ -2082,12 +2214,12 @@ Address: %4 Introdueixi l'adreça signant, missatge (assegura't que copies salts de línia, espais, tabuladors, etc excactament tot el text) i la signatura a sota per verificar el missatge. Per evitar ser enganyat per un atac home-entre-mig, vés amb compte de no llegir més en la signatura del que hi ha al missatge signat mateix. - The Bitcoin address the message was signed with - L'adreça Bitcoin amb què va ser signat el missatge + The Hypercoin address the message was signed with + L'adreça Hypercoin amb què va ser signat el missatge - Verify the message to ensure it was signed with the specified Bitcoin address - Verificar el missatge per assegurar-se que ha estat signat amb una adreça Bitcoin específica + Verify the message to ensure it was signed with the specified Hypercoin address + Verificar el missatge per assegurar-se que ha estat signat amb una adreça Hypercoin específica Verify &Message @@ -2153,8 +2285,8 @@ Address: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2300,7 +2432,7 @@ Address: %4 Amount - Quantitat + Import true @@ -2428,6 +2560,10 @@ Address: %4 Type of transaction. Tipus de transacció. + + Whether or not a watch-only address is involved in this transaction. + Si està implicada o no una adreça només de lectura en la transacció. + Destination address of transaction. Adreça del destinatari de la transacció. @@ -2523,6 +2659,10 @@ Address: %4 Export Transaction History Exporta l'historial de transacció + + Watch-only + Només de lectura + Exporting Failed L'exportació ha fallat @@ -2666,29 +2806,6 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Accepta connexions de fora (per defecte: 1 si no -proxy o -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, heu de establir una contrasenya RPC al fitxer de configuració: %s -Es recomana que useu la següent contrasenya aleatòria: -rpcuser=bitcoinrpc -rpcpassword=%s -(no necesiteu recordar aquesta contrasenya) -El nom d'usuari i la contrasenya NO HAN de ser els mateixos. -Si el fitxer no existeix, crea'l amb els permisos de fitxer de només lectura per al propietari. -També es recomana establir la notificació d'alertes i així sereu notificat de les incidències; -per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincula a una adreça específica i sempre escolta-hi. Utilitza la notació [host]:port per IPv6 @@ -2698,16 +2815,12 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Elimina totes les transaccions del moneder i només recupera aquelles de la cadena de blocs a través de -rescan a l'inici - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Entra en el mode de proves de regressió, que utilitza una cadena especial en què els blocs poden resoldre's al moment. - - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Error: La transacció ha estat rebutjada. Això pot passar si alguna de les monedes del teu moneder ja s'han gastat, com si haguesis usat una copia de l'arxiu wallet.dat i s'haguessin gastat monedes de la copia però sense marcar com gastades en aquest. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Distribuït sota llicència de programari MIT. Vegeu el fitxer acompanyant COPYING o <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Error: Aquesta transacció requereix una comissió d'almenys %s degut al seu import, complexitat o per l'ús de fons recentment rebuts! + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Entra en el mode de proves de regressió, que utilitza una cadena especial en què els blocs poden resoldre's al moment. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) @@ -2726,8 +2839,8 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Aquesta és una versió de pre-llançament - utilitza-la sota la teva responsabilitat - No usar per a minería o aplicacions de compra-venda - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - No es pot enllaçar %s a aquest ordinador. El Bitcoin Core probablement ja estigui executant-s'hi. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + No es pot enllaçar %s a aquest ordinador. El Hypercoin Core probablement ja estigui executant-s'hi. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2749,6 +2862,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Avís: el fitxer wallet.dat és corrupte, dades rescatades! L'arxiu wallet.dat original ha estat desat com wallet.{estampa_temporal}.bak al directori %s; si el teu balanç o transaccions son incorrectes hauries de restaurar-lo de un backup. + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Afegeix a la llista blanca els iguals que es connecten de la màscara de xarxa o adreça IP donada. Es pot especificar moltes vegades. + (default: 1) (per defecte: 1) @@ -2813,10 +2930,6 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error: Disk space is low! Error: Espai al disc baix! - - Error: Wallet locked, unable to create transaction! - Error: El moneder està bloquejat, no és possible crear la transacció! - Failed to listen on any port. Use -listen=0 if you want this. Ha fallat escoltar a qualsevol port. Feu servir -listen=0 si voleu fer això. @@ -2841,6 +2954,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Not enough file descriptors available. No hi ha suficient descriptors de fitxers disponibles. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Només connecta als nodes de la xarxa <net> (ipv4, ipv6 o onion) + Rebuild block chain index from current blk000??.dat files Reconstrueix l'índex de la cadena de blocs dels fitxers actuals blk000??.dat @@ -2861,6 +2978,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com This is intended for regression testing tools and app development. Això es així per a eines de proves de regressió per al desenvolupament d'aplicacions. + + Use UPnP to map the listening port (default: %u) + Utilitza UPnP per a mapejar el port d'escolta (per defecte: %u) + Verifying blocks... S'estan verificant els blocs... @@ -2898,8 +3019,12 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Vincula a l'adreça donada per a escoltar les connexions JSON-RPC. Feu servir la notació [host]:port per a IPv6. Aquesta opció pot ser especificada moltes vegades (per defecte: vincula a totes les interfícies) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - No es pot obtenir un bloqueig del directori de dades %s. El Bitcoin Core probablement ja s'estigui executant. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + No es pot obtenir un bloqueig del directori de dades %s. El Hypercoin Core probablement ja s'estigui executant. + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) + Limita contínuament la freqüència de les transaccions gratuïtes a <n>*1000 bytes per minut (per defecte: %u) Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) @@ -2918,33 +3043,88 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Executa l'ordre quan es rebi un avís rellevant o veiem una forquilla molt llarga (%s en cmd és reemplaçat per un missatge) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Comissions (en BTC/Kb) inferiors a això es consideren de comissió zero per a la transmissió (per defecte: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Comissions (en HOT/Kb) inferiors a això es consideren de comissió zero per a la transmissió (per defecte: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Comissions (en HOT/Kb) inferiors a això es consideren de comissió zero per a la creació de la transacció (per defecte: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Si no s'especifica una paytxfee (comissió de transacció de pagament), inclogueu suficient comissió per tal que les transaccions comencin a confirmar-se en una mitja de n blocs (per defecte: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Import no vàlid per a -maxtxfee=<amount>: '%s' (cal que sigui com a mínim la comissió de minrelay de %s per evitar que les comissions s'encallin) + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Mida màxima de les dades en les transaccions de l'operador en què confiem i en les meves (per defecte: %u) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Comissions (en BTC/Kb) inferiors a això es consideren de comissió zero per a la creació de la transacció (per defecte: %s) + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Comissions totals màximes que s'utilitzaran en una transacció d'un únic moneder. Si es defineix un valor massa baix les transaccions més grans poden interrompre's (per defecte: %s) Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Consulta a adreces d'iguals a través de DNS, si es troba baix en adreces (per defecte: 1 a menys que -connect) + + Require high priority for relaying free or low-fee transactions (default:%u) + Es requereix una prioritat alta per retransmetre transaccions gratuïtes o de baixa comissió (per defecte:%u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Defineix la mida màxima de transaccions d'alta prioritat / baixa comissió en bytes (per defecte: %d) + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Defineix el nombre de fils per a la generació de moneda si està habilitat (-1 = tots els nuclis, per defecte: %d) + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Aquest producte inclou programari desenvolupat pel projecte OpenSSL per a ús a l'OpenSSL Toolkit <https://www.openssl.org/> i programari criptogràfic escrit per Eric Young i programari UPnP escrit per Thomas Bernard. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Avís: comproveu que la data i hora del vostre ordinador siguin correctes! Si el vostre rellotge no és correcte, el Bitcoin Core no funcionarà correctament. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Per utilitzar hypercoind, o l'opció de serviddor de hypercoin-qt, heu de definir una rpcpassword en el fitxer de configuració: +%s +Es recomana que utilitzeu la contrasenya aleatòria següent: +rpcuser=hypercoinrpc +rpcpassword=%s +(no cal que recordeu la contrasenya) +El nom d'usuari i la contrasenya NO han de ser els mateixos. +Si el fitxer no existeix, creeu-ne un amb permisos de lectura només per al seu propietari. +Es recomana definir alertnotify per tal de ser notificat de qualsevol problema; +per exemple: alertnotify=echo %%s | mail -s "Avís de Hypercoin" admin@foo.com + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Avís: s'ha especificat un -maxtxfee molt alt! Comissions tan grans podrien pagar-se en una única transacció. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Avís: comproveu que la data i hora del vostre ordinador siguin correctes! Si el vostre rellotge no és correcte, el Hypercoin Core no funcionarà correctament. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Els iguals en la llista blanca no poden ser bandejats per DoS i es transmetran sempre llurs transaccions, fins i tot si ja són a la mempool. Això és útil, p. ex., per a una passarel·la + + Accept public REST requests (default: %u) + Accepta sol·licituds REST públiques (per defecte: %u) + Cannot resolve -whitebind address: '%s' No es pot resoldre l'adreça -whitebind: «%s» @@ -2962,24 +3142,32 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com No s'ha pogut analitzar el valor -rpcbind %s com una adreça de xarxa - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Error en carregar wallet.dat: el moneder requereix una versió més nova del Bitcoin core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Error en carregar wallet.dat: el moneder requereix una versió més nova del Hypercoin core + + + Error reading from database, shutting down. + Error en llegir la base de dades, tancant. Error: Unsupported argument -tor found, use -onion. Error: s'ha trobat un argument -tor no acceptat. Feu servir -onion. - Fee (in BTC/kB) to add to transactions you send (default: %s) - Comissió en (BTC/kB) per afegir a les transaccions que envieu (per defecte: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Comissió en (HOT/kB) per afegir a les transaccions que envieu (per defecte: %s) Information &Informació - Initialization sanity check failed. Bitcoin Core is shutting down. - Ha fallat la inicialització de la comprovació de validesa. El Bitcoin Core s'està aturant. + Initialization sanity check failed. Hypercoin Core is shutting down. + Ha fallat la inicialització de la comprovació de validesa. El Hypercoin Core s'està aturant. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Import no vàlid per a -maxtxfee=<amount>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -2998,8 +3186,8 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com S'ha especificat una màscara de xarxa no vàlida a -whitelist: «%s» - Keep at most <n> unconnectable blocks in memory (default: %u) - Manté com a màxim <n> blocs no connectables en memòria (per defecte: %u) + Keep at most <n> unconnectable transactions in memory (default: %u) + Manté com a màxim <n> transaccions no connectables en memòria (per defecte: %u) Need to specify a port with -whitebind: '%s' @@ -3010,17 +3198,17 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Opcions de transmissió del node: - Print block on startup, if found in block index - Imprimeix el block a l'inici, si es troba l'índex de blocs - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opcions RPC SSL: (veieu el wiki del Bitcoin per a instruccions de configuració de l'SSL) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Opcions RPC SSL: (veieu el wiki del Hypercoin per a instruccions de configuració de l'SSL) RPC server options: Opcions del servidor RPC: + + RPC support for HTTP persistent connections (default: %d) + Suport RPC per a connexions HTTP persistents (per defecte: %d) + Randomly drop 1 of every <n> network messages Descarta a l'atzar 1 de cada <n> missatges de la xarxa @@ -3033,6 +3221,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Send trace/debug info to console instead of debug.log file Envia informació de traça/depuració a la consola en comptes del fitxer debug.log + + Send transactions as zero-fee transactions if possible (default: %u) + Envia les transaccions com a transaccions de comissió zero sempre que sigui possible (per defecte: %u) + Show all debugging options (usage: --help -help-debug) Mostra totes les opcions de depuració (ús: --help --help-debug) @@ -3057,6 +3249,10 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Transaction amounts must be positive Els imports de les transaccions han de ser positius + + Transaction too large for fee policy + Transacció massa gran per a la política de comissions + Transaction too large La transacció és massa gran @@ -3074,8 +3270,8 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Nom d'usuari per a connexions JSON-RPC - Wallet needed to be rewritten: restart Bitcoin Core to complete - Cal reescriure el moneder: reiniceu el Bitcoin Core per completar-ho. + Wallet needed to be rewritten: restart Hypercoin Core to complete + Cal reescriure el moneder: reiniceu el Hypercoin Core per completar-ho. Warning @@ -3141,14 +3337,170 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error loading wallet.dat: Wallet corrupted Error en carregar wallet.dat: Moneder corrupte + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = manté les metadades de les tx, p. ex., propietari del compte i informació de sol·licitud del pagament, 2 = prescindeix de les metadades de les tx) + + + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) + Buida l'activitat de la base de dades de la memòria disponible al registre del disc cada <n> megabytes (per defecte: %u) + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Com d'exhaustiva és la verificació de blocs del -checkblocks (0-4, per defecte: %u) + + + Log transaction priority and fee per kB when mining blocks (default: %u) + Enregistreu la prioritat de la transacció i la comissió per kB en minar blocs (per defecte: %u) + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Manté un índex complet de transaccions, utilitzat per la crida rpc getrawtransaction (per defecte: %u) + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Nombre de segons necessaris perquè els iguals de comportament qüestionable puguin tornar a connectar-se (per defecte: %u) + + + Output debugging information (default: %u, supplying <category> is optional) + Informació de sortida de la depuració (per defecte: %u, proporcionar <category> és opcional) + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor (per defecte: %s) + + + (default: %s) + (per defecte: %s) + + + Acceptable ciphers (default: %s) + Xifrats acceptables (per defecte: %s) + + + Always query for peer addresses via DNS lookup (default: %u) + Demana sempre les adreces dels iguals a través de consultes DNS (per defecte: %u) + + + Disable safemode, override a real safe mode event (default: %u) + Inhabilita el mode segur, sobreescriu un esdeveniment de mode segur real (per defecte: %u) + Error loading wallet.dat Error en carregar wallet.dat + + Force safe mode (default: %u) + Força el mode segur (per defecte: %u) + + + Generate coins (default: %u) + Genera monedes (per defecte: %u) + + + How many blocks to check at startup (default: %u, 0 = all) + Quants blocs per comprovar a l'inici (per defecte: %u, 0 = tots) + + + Include IP addresses in debug output (default: %u) + Inclou l'adreça IP a la sortida de depuració (per defecte: %u) + Invalid -proxy address: '%s' Adreça -proxy invalida: '%s' + + Limit size of signature cache to <n> entries (default: %u) + Limita la mida de la cau de signatura a <n> entrades (per defecte: %u) + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + Escolta les connexions JSON-RPC en <port> (per defecte: %u o testnet: %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + Escolta les connexions en <port> (per defecte: %u o testnet: %u) + + + Maintain at most <n> connections to peers (default: %u) + Manté com a màxim <n> connexions a iguals (per defecte: %u) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + Memòria intermèdia màxima de recepció per connexió, <n>*1000 bytes (per defecte: %u) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + Memòria intermèdia màxima d'enviament per connexió, <n>*1000 bytes (per defecte: %u) + + + Only accept block chain matching built-in checkpoints (default: %u) + Només accepta els punts de control integrats que coincideixen amb la cadena de blocs (per defecte: %u) + + + Prepend debug output with timestamp (default: %u) + Posa davant de la sortida de depuració una marca horària (per defecte: %u) + + + Relay and mine data carrier transactions (default: %u) + Retransmet i mina les transaccions de l'operador (per defecte: %u) + + + Relay non-P2SH multisig (default: %u) + Retransmet multisig no P2SH (per defecte: %u) + + + Run a thread to flush wallet periodically (default: %u) + Executa un fil per buidar el moneder periòdicament (per defecte: %u) + + + Server certificate file (default: %s) + Fitxer de certificat del servidor (per defecte: %s) + + + Server private key (default: %s) + Clau privada del servidor (per defecte: %s) + + + Set key pool size to <n> (default: %u) + Defineix la mida clau disponible a <n> (per defecte: %u) + + + Set minimum block size in bytes (default: %u) + Defineix la mida de bloc mínima en bytes (per defecte: %u) + + + Set the number of threads to service RPC calls (default: %d) + Defineix el nombre de fils a crides de servei RPC (per defecte: %d) + + + Sets the DB_PRIVATE flag in the wallet db environment (default: %u) + Defineix el senyalador DB_PRIVATE en l'entorn db del moneder (per defecte: %u) + + + Specify configuration file (default: %s) + Especifica el fitxer de configuració (per defecte: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Especifica el temps d'espera de la connexió en milisegons (mínim: 1, per defecte: %d) + + + Specify pid file (default: %s) + Especifica el fitxer pid (per defecte: %s) + + + Spend unconfirmed change when sending transactions (default: %u) + Gasta el canvi no confirmat en enviar les transaccions (per defecte: %u) + + + Stop running after importing blocks from disk (default: %u) + Atura l'execució després d'importar blocs del disc (per defecte: %u) + + + Threshold for disconnecting misbehaving peers (default: %u) + Llindar per a desconnectar els iguals de comportament qüestionable (per defecte: %u) + Unknown network specified in -onlynet: '%s' Xarxa desconeguda especificada a -onlynet: '%s' @@ -3165,10 +3517,6 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Import no vàlid per a -paytxfee=<amount>: «%s» - - Invalid amount - Import no vàlid - Insufficient funds Balanç insuficient @@ -3201,13 +3549,9 @@ per exemple: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Ha acabat la càrrega - - To use the %s option - Utilitza l'opció %s - Error Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_cmn.ts b/src/qt/locale/bitcoin_cmn.ts index 09ff0acf026e3..28fe96750a250 100644 --- a/src/qt/locale/bitcoin_cmn.ts +++ b/src/qt/locale/bitcoin_cmn.ts @@ -1,6 +1,10 @@ - + AddressBookPage + + Create a new address + 创建新地址 + AddressTableModel diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitcoin_cs.ts index bc2a2ef7b5d06..df09ed80bbaca 100644 --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitcoin_cs.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Dvojklikem myši začneš upravovat označení adresy + Right-click to edit address or label + Pravým tlačítkem myši začneš upravovat označení adresy Create a new address @@ -66,12 +66,12 @@ Přijímací adresy - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Tohle jsou tvé Bitcoinové adresy pro posílání plateb. Před odesláním mincí si vždy zkontroluj částku a cílovou adresu. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Tohle jsou tvé Hypercoinové adresy pro posílání plateb. Před odesláním mincí si vždy zkontroluj částku a cílovou adresu. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Tohle jsou tvé Bitcoinové adresy pro příjem plateb. Je doporučené používat pokaždé novou adresu pro každou transakci. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Tohle jsou tvé Hypercoinové adresy pro příjem plateb. Je doporučené používat pokaždé novou adresu pro každou transakci. Copy &Label @@ -164,8 +164,8 @@ Potvrď zašifrování peněženky - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Upozornění: Pokud si zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY BITCOINY</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Upozornění: Pokud si zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY HYPERCOINY</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Zadej nové heslo k peněžence.<br/>Použij <b>alespoň deset náhodných znaků</b> nebo <b>alespoň osm slov</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se teď ukončí, aby dokončil zašifrování. Pamatuj však, že pouhé zašifrování peněženky úplně nezabraňuje krádeži tvých bitcoinů malwarem, kterým se může počítač nakazit. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin se teď ukončí, aby dokončil zašifrování. Pamatuj však, že pouhé zašifrování peněženky úplně nezabraňuje krádeži tvých hypercoinů malwarem, kterým se může počítač nakazit. Wallet encryption failed @@ -295,8 +295,8 @@ Načíst &URI... - Bitcoin Core client - Bitcoin Core klient + Hypercoin Core client + Hypercoin Core klient Importing blocks from disk... @@ -307,12 +307,12 @@ Vytvářím nový index bloků na disku... - Send coins to a Bitcoin address - Pošli mince na Bitcoinovou adresu + Send coins to a Hypercoin address + Pošli mince na Hypercoinovou adresu - Modify configuration options for Bitcoin - Uprav nastavení Bitcoinu + Modify configuration options for Hypercoin + Uprav nastavení Hypercoinu Backup wallet to another location @@ -335,8 +335,8 @@ &Ověř zprávu... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ Při&jmi - Show information about Bitcoin Core - Zobraz informace o Bitcoin Core + Show information about Hypercoin Core + Zobraz informace o Hypercoin Core &Show / Hide @@ -367,12 +367,12 @@ Zašifruj soukromé klíče ve své peněžence - Sign messages with your Bitcoin addresses to prove you own them - Podepiš zprávy svými Bitcoinovými adresami, čímž prokážeš, že jsi jejich vlastníkem + Sign messages with your Hypercoin addresses to prove you own them + Podepiš zprávy svými Hypercoinovými adresami, čímž prokážeš, že jsi jejich vlastníkem - Verify messages to ensure they were signed with specified Bitcoin addresses - Ověř zprávy, aby ses ujistil, že byly podepsány danými Bitcoinovými adresami + Verify messages to ensure they were signed with specified Hypercoin addresses + Ověř zprávy, aby ses ujistil, že byly podepsány danými Hypercoinovými adresami &File @@ -391,16 +391,16 @@ Panel s listy - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Požaduj platby (generuje QR kódy a bitcoin: URI) + Request payments (generates QR codes and hypercoin: URIs) + Požaduj platby (generuje QR kódy a hypercoin: URI) - &About Bitcoin Core - O &Bitcoin Core + &About Hypercoin Core + O &Hypercoin Core Show the list of used sending addresses and labels @@ -411,29 +411,45 @@ Ukaž seznam použitých přijímacích adres a jejich označení - Open a bitcoin: URI or payment request - Načti bitcoin: URI nebo platební požadavek + Open a hypercoin: URI or payment request + Načti hypercoin: URI nebo platební požadavek &Command-line options Ar&gumenty z příkazové řádky - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Seznam argumentů Bitcoinu pro příkazovou řádku získáš v nápovědě Bitcoinu Core + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Seznam argumentů Hypercoinu pro příkazovou řádku získáš v nápovědě Hypercoinu Core - %n active connection(s) to Bitcoin network - %n aktivní spojení do Bitcoinové sítě%n aktivní spojení do Bitcoinové sítě%n aktivních spojení do Bitcoinové sítě + %n active connection(s) to Hypercoin network + %n aktivní spojení do Hypercoinové sítě%n aktivní spojení do Hypercoinové sítě%n aktivních spojení do Hypercoinové sítě No block source available... Není dostupný žádný zdroj bloků... + + %n hour(s) + %n hodinu%n hodiny%n hodin + + + %n day(s) + %n den%n dny%n dnů + + + %n week(s) + %n týden%n týdny%n týdnů + %1 and %2 %1 a %2 + + %n year(s) + %n rok%n roky%n roků + %1 behind Stahuji ještě bloky transakcí za poslední %1 @@ -462,6 +478,10 @@ Up to date Aktuální + + Processed %n blocks of transaction history. + Zpracován %n blok transakční historie.Zpracovány %n bloky transakční historie.Zpracováno %n bloků transakční historie. + Catching up... Stahuji... @@ -504,6 +524,10 @@ Adresa: %4 CoinControlDialog + + Coin Selection + Výběr mincí + Quantity: Počet: @@ -552,6 +576,14 @@ Adresa: %4 Amount Částka + + Received with label + Příjem na označení + + + Received with address + Příjem na adrese + Date Datum @@ -756,8 +788,8 @@ Adresa: %4 Zadaná adresa "%1" už v adresáři je. - The entered address "%1" is not a valid Bitcoin address. - Zadaná adresa "%1" není platná Bitcoinová adresa. + The entered address "%1" is not a valid Hypercoin address. + Zadaná adresa "%1" není platná Hypercoinová adresa. Could not unlock wallet. @@ -794,8 +826,8 @@ Adresa: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -806,8 +838,8 @@ Adresa: %4 (%1-bit) - About Bitcoin Core - O Bitcoin Core + About Hypercoin Core + O Hypercoin Core Command-line options @@ -853,16 +885,16 @@ Adresa: %4 Vítej - Welcome to Bitcoin Core. - Vítej v Bitcoin Core. + Welcome to Hypercoin Core. + Vítej v Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Tohle je poprvé, co spouštíš Bitcoin Core, takže si můžeš zvolit, kam bude ukládat svá data. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Tohle je poprvé, co spouštíš Hypercoin Core, takže si můžeš zvolit, kam bude ukládat svá data. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core bude stahovat kopii řetězce bloků. Proto bude potřeba do tohoto adresáře uložit nejméně %1 GB dat – toto číslo bude navíc v průběhu času pomalu růst. Tvá peněženka bude rovněž uložena v tomto adresáři. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core bude stahovat kopii řetězce bloků. Proto bude potřeba do tohoto adresáře uložit nejméně %1 GB dat – toto číslo bude navíc v průběhu času pomalu růst. Tvá peněženka bude rovněž uložena v tomto adresáři. Use the default data directory @@ -873,8 +905,8 @@ Adresa: %4 Použij tento adresář pro data: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. @@ -884,7 +916,15 @@ Adresa: %4 Error Chyba - + + %n GB of free space available + %n GB volného místa%n GB volného místa%n GB volného místa + + + (of %n GB needed) + (z potřebného %n GB)(z potřebných %n GB)(z potřebných %n GB) + + OpenURIDialog @@ -919,12 +959,12 @@ Adresa: %4 &Hlavní - Automatically start Bitcoin after logging in to the system. - Automaticky spustí Bitcoin po přihlášení do systému. + Automatically start Hypercoin after logging in to the system. + Automaticky spustí Hypercoin po přihlášení do systému. - &Start Bitcoin on system login - S&pustit Bitcoin po přihlášení do systému + &Start Hypercoin on system login + S&pustit Hypercoin po přihlášení do systému Size of &database cache @@ -999,13 +1039,21 @@ Adresa: %4 &Utrácet i ještě nepotvrzené drobné - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. Automaticky otevře potřebný port na routeru. Tohle funguje jen za předpokladu, že tvůj router podporuje UPnP a že je UPnP povolené. Map port using &UPnP Namapovat port přes &UPnP + + Connect to the Hypercoin network through a SOCKS5 proxy. + Připojí se do Hypercoinové sítě přes SOCKS5 proxy. + + + &Connect through SOCKS5 proxy (default proxy): + &Připojit přes SOCKS5 proxy (výchozí proxy): + Proxy &IP: &IP adresa proxy: @@ -1047,8 +1095,8 @@ Adresa: %4 &Jazyk uživatelského rozhraní: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Tady lze nastavit jazyk uživatelského rozhraní. Nastavení se projeví až po restartování Bitcoinu. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Tady lze nastavit jazyk uživatelského rozhraní. Nastavení se projeví až po restartování Hypercoinu. &Unit to show amounts in: @@ -1106,8 +1154,8 @@ Adresa: %4 Formulář - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Zobrazené informace nemusí být aktuální. Tvá peněženka se automaticky sesynchronizuje s Bitcoinovou sítí, jakmile se s ní spojí. Zatím ale ještě není synchronizace dokončena. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Zobrazené informace nemusí být aktuální. Tvá peněženka se automaticky sesynchronizuje s Hypercoinovou sítí, jakmile se s ní spojí. Zatím ale ještě není synchronizace dokončena. Watch-only: @@ -1137,6 +1185,10 @@ Adresa: %4 Mined balance that has not yet matured Vytěžené mince, které ještě nejsou zralé + + Balances + Stavy účtů + Total: Celkem: @@ -1149,6 +1201,14 @@ Adresa: %4 Your current balance in watch-only addresses Aktuální stav účtu sledovaných adres + + Spendable: + Běžné: + + + Recent transactions + Poslední transakce + Unconfirmed transactions to watch-only addresses Nepotvrzené transakce sledovaných adres @@ -1201,16 +1261,16 @@ Adresa: %4 Chyba platebního požadavku - Cannot start bitcoin: click-to-pay handler - Nemůžu spustit bitcoin: obsluha click-to-pay + Cannot start hypercoin: click-to-pay handler + Nemůžu spustit hypercoin: obsluha click-to-pay Payment request fetch URL is invalid: %1 Zdrojová URL platebního požadavku není platná: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - Nepodařilo se analyzovat URI! Důvodem může být neplatná Bitcoinová adresa nebo poškozené parametry URI. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + Nepodařilo se analyzovat URI! Důvodem může být neplatná Hypercoinová adresa nebo poškozené parametry URI. Payment request file handling @@ -1228,6 +1288,14 @@ Adresa: %4 Refund from %1 Vrácení peněz od %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Platební požadavek %1 je moc velký (%2 bajtů, povoleno %3 bajtů). + + + Payment request DoS protection + DoS ochrana platebního požadavku + Error communicating with %1: %2 Chyba při komunikaci s %1: %2 @@ -1271,8 +1339,8 @@ Adresa: %4 Částka - Enter a Bitcoin address (e.g. %1) - Zadej Bitcoinovou adresu (např. %1) + Enter a Hypercoin address (e.g. %1) + Zadej Hypercoinovou adresu (např. %1) %1 d @@ -1497,16 +1565,16 @@ Adresa: %4 Soubor s ladicími záznamy - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Otevři soubor s ladicími záznamy Bitcoinu z aktuálního datového adresáře. U velkých logů to může pár vteřin zabrat. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Otevři soubor s ladicími záznamy Hypercoinu z aktuálního datového adresáře. U velkých logů to může pár vteřin zabrat. Clear console Vyčistit konzoli - Welcome to the Bitcoin RPC console. - Vítej v Bitcoinové RPC konzoli. + Welcome to the Hypercoin RPC console. + Vítej v Hypercoinové RPC konzoli. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1580,8 +1648,8 @@ Adresa: %4 &Recyklovat již existující adresy (nedoporučeno) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Volitelná zpráva, která se připojí k platebnímu požadavku a která se zobrazí, když se požadavek otevře. Poznámka: Tahle zpráva se neposílá s platbou po Bitcoinové síti. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Volitelná zpráva, která se připojí k platebnímu požadavku a která se zobrazí, když se požadavek otevře. Poznámka: Tahle zpráva se neposílá s platbou po Hypercoinové síti. An optional label to associate with the new receiving address. @@ -1784,6 +1852,78 @@ Adresa: %4 Custom change address Vlastní adresa pro drobné + + Transaction Fee: + Transakční poplatek: + + + Choose... + Zvol... + + + collapse fee-settings + sbal nastavení poplatků + + + Minimize + Skryj + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Pokud je vlastní poplatek nastavený na 1000 satoshi a transakce má pouze 250 bajtů, tak „za kilobajt“ zaplatí poplatek jen 250 satoshi, zatímco „přinejmenším“ zaplatí 1000 satoshi. Pro transakce větší než kilobajt obě možnosti platí za kilobajt. + + + per kilobyte + za kilobajt + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Pokud je vlastní poplatek nastavený na 1000 satoshi a transakce má pouze 250 bajtů, tak „za kilobajt“ zaplatí poplatek jen 250 satoshi, zatímco „přinejmenším“ zaplatí 1000 satoshi. Pro transakce větší než kilobajt obě možnosti platí za kilobajt. + + + total at least + přinejmenším + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Platit jen minimální poplatek je v pořádku, pokud je zrovna méně transakcí než místa v blocích. Ale počítej s tím, že to také může skončit transakcí, která nikdy nebude potvrzena, pokud je větší poptávka po hypercoinových transakcích, než síť zvládne zpracovat. + + + (read the tooltip) + (viz bublina) + + + Recommended: + Doporučený: + + + Custom: + Vlastní: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Inteligentní poplatek ještě není inicializovaný. Obvykle mu to tak pár bloků trvá...) + + + Confirmation time: + Rychlost potvrzení: + + + normal + normální + + + fast + rychlá + + + Send as zero-fee transaction if possible + Pošli transakci pokud možno bez poplatku + + + (confirmation may take longer) + (potvrzení může trvat déle) + Send to multiple recipients at once Pošli více příjemcům naráz @@ -1852,10 +1992,6 @@ Adresa: %4 Copy change Kopíruj drobné - - Total Amount %1 (= %2) - Celková částka %1 (= %2) - or nebo @@ -1889,8 +2025,8 @@ Adresa: %4 Transakce byla odmítnuta! Tohle může nastat, pokud nějaké mince z tvé peněženky už jednou byly utraceny, například pokud používáš kopii souboru wallet.dat a mince byly utraceny v druhé kopii, ale nebyly označeny jako utracené v této. - Warning: Invalid Bitcoin address - Upozornění: Neplatná Bitcoinová adresa + Warning: Invalid Hypercoin address + Upozornění: Neplatná Hypercoinová adresa (no label) @@ -1940,8 +2076,8 @@ Adresa: %4 Tohle je normální platba. - The Bitcoin address to send the payment to - Bitcoinová adresa příjemce + The Hypercoin address to send the payment to + Hypercoinová adresa příjemce Alt+A @@ -1972,8 +2108,8 @@ Adresa: %4 Zadej označení této adresy; obojí se ti pak uloží do adresáře - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Zpráva, která byla připojena k bitcoin: URI a která se ti pro přehled uloží k transakci. Poznámka: Tahle zpráva se neposílá s platbou po Bitcoinové síti. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Zpráva, která byla připojena k hypercoin: URI a která se ti pro přehled uloží k transakci. Poznámka: Tahle zpráva se neposílá s platbou po Hypercoinové síti. This is an unverified payment request. @@ -1991,8 +2127,8 @@ Adresa: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core se ukončuje... + Hypercoin Core is shutting down... + Hypercoin Core se ukončuje... Do not shut down the computer until this window disappears. @@ -2014,8 +2150,8 @@ Adresa: %4 Podepsáním zprávy svými adresami můžeš prokázat, že je skutečně vlastníš. Buď opatrný a nepodepisuj nic vágního; například při phishingových útocích můžeš být lákán, abys něco takového podepsal. Podepisuj pouze zcela úplná a detailní prohlášení, se kterými souhlasíš. - The Bitcoin address to sign the message with - Bitcoinová adresa, kterou se zpráva podepíše + The Hypercoin address to sign the message with + Hypercoinová adresa, kterou se zpráva podepíše Choose previously used address @@ -2046,8 +2182,8 @@ Adresa: %4 Zkopíruj aktuálně vybraný podpis do systémové schránky - Sign the message to prove you own this Bitcoin address - Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této Bitcoinové adresy + Sign the message to prove you own this Hypercoin address + Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této Hypercoinové adresy Sign &Message @@ -2070,12 +2206,12 @@ Adresa: %4 K ověření podpisu zprávy zadej podepisující adresu, zprávu (ověř si, že správně kopíruješ zalomení řádků, mezery, tabulátory apod.) a podpis. Dávej pozor na to, abys nezkopíroval do podpisu víc, než co je v samotné podepsané zprávě, abys nebyl napálen man-in-the-middle útokem. - The Bitcoin address the message was signed with - Bitcoinová adresa, kterou je zpráva podepsána + The Hypercoin address the message was signed with + Hypercoinová adresa, kterou je zpráva podepsána - Verify the message to ensure it was signed with the specified Bitcoin address - Ověř zprávu, aby ses ujistil, že byla podepsána danou Bitcoinovou adresou + Verify the message to ensure it was signed with the specified Hypercoin address + Ověř zprávu, aby ses ujistil, že byla podepsána danou Hypercoinovou adresou Verify &Message @@ -2141,8 +2277,8 @@ Adresa: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2216,7 +2352,7 @@ Adresa: %4 watch-only - sledovací + sledovaná label @@ -2226,6 +2362,10 @@ Adresa: %4 Credit Příjem + + matures in %n more block(s) + dozraje po %n blokudozraje po %n blocíchdozraje po %n blocích + not accepted neakceptováno @@ -2412,6 +2552,10 @@ Adresa: %4 Type of transaction. Druh transakce. + + Whether or not a watch-only address is involved in this transaction. + Zda tato transakce zahrnuje i některou sledovanou adresu. + Destination address of transaction. Cílová adresa transakce. @@ -2507,6 +2651,10 @@ Adresa: %4 Export Transaction History Exportuj transakční historii + + Watch-only + Sledovaná + Exporting Failed Exportování selhalo @@ -2650,30 +2798,6 @@ Adresa: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Přijímat spojení zvenčí (výchozí: 1, pokud není zadáno -proxy nebo -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, musíš nastavit rpcpassword v konfiguračním souboru: -%s -Je vhodné použít následující náhodné heslo: -rpcuser=bitcoinrpc -rpcpassword=%s -(není potřeba si ho pamatovat) -rpcuser a rpcpassword NESMÍ být stejné. -Pokud konfigurační soubor ještě neexistuje, vytvoř ho tak, aby ho mohl číst pouze vlastník. -Je také doporučeno si nastavit alertnotify, abys byl upozorněn na případné problémy; -například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Poslouchat na zadané adrese. Pro zápis IPv6 adresy použij notaci [adresa]:port @@ -2683,16 +2807,12 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Smazat všechny transakce peněženky a při startu obnovit pouze relevantní části řetězce bloků pomocí -rescan - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Přepnout do módu testování regresí, který používá speciální řetězec, ve kterém mohou být bloky okamžitě vyřešeny. - - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Chyba: Transakce byla odmítnuta! Tohle může nastat, pokud nějaké mince z tvé peněženky už jednou byly utraceny, například pokud používáš kopii souboru wallet.dat a mince byly utraceny v druhé kopii, ale nebyly označeny jako utracené v této. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Šířen pod softwarovou licencí MIT, viz přiložený soubor COPYING nebo <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Chyba: Tahle transakce vyžaduje transakční poplatek nejméně %s kvůli velikosti zasílané částky, komplexnosti nebo použití nedávno přijatých mincí! + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Přepnout do módu testování regresí, který používá speciální řetězec, ve kterém mohou být bloky okamžitě vyřešeny. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) @@ -2711,8 +2831,8 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Tohle je testovací verze – používej ji jen na vlastní riziko, ale rozhodně ji nepoužívej k těžbě nebo pro obchodní aplikace - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Nedaří se mi připojit na %s na tomhle počítači. Bitcoin Core už pravděpodobně jednou běží. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Nedaří se mi připojit na %s na tomhle počítači. Hypercoin Core už pravděpodobně jednou běží. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2734,6 +2854,10 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Upozornění: soubor wallet.dat je poškozený, data jsou však zachráněna! Původní soubor wallet.dat je uložený jako wallet.{timestamp}.bak v %s. Pokud je stav tvého účtu nebo transakce nesprávné, zřejmě bys měl obnovit zálohu. + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Umístit na bílou listinu protějšky připojující se z dané podsítě či IP adresy. Lze zadat i vícekrát. + (default: 1) (výchozí: 1) @@ -2798,10 +2922,6 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error: Disk space is low! Problém: Na disku je málo místa! - - Error: Wallet locked, unable to create transaction! - Chyba: Peněženka je zamčená, nemohu vytvořit transakci! - Failed to listen on any port. Use -listen=0 if you want this. Nepodařilo se naslouchat na žádném portu. Použij -listen=0, pokud to byl tvůj záměr. @@ -2826,6 +2946,10 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Not enough file descriptors available. Je nedostatek deskriptorů souborů. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Připojovat se pouze k uzlům v <net> síti (ipv4, ipv6 nebo onion) + Rebuild block chain index from current blk000??.dat files Znovu vytvořit index řetězce bloků z aktuálních blk000??.dat souborů @@ -2846,6 +2970,10 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com This is intended for regression testing tools and app development. Tohle je určeno pro nástroje na regresní testování a vyvíjení aplikací. + + Use UPnP to map the listening port (default: %u) + Použít UPnP k namapování naslouchacího portu (výchozí: %u) + Verifying blocks... Ověřuji bloky... @@ -2887,8 +3015,12 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Čekat na zadané adrese na JSON-RPC spojení. Pro zápis IPv6 adresy použij notaci [adresa]:port. Tuto volbu lze použít i vícekrát (výchozí: poslouchat na všech rozhraních) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Nedaří se mi získat zámek na datový adresář %s. Bitcoin Core pravděpodobně už jednou běží. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Nedaří se mi získat zámek na datový adresář %s. Hypercoin Core pravděpodobně už jednou běží. + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) + Kontinuálně omezovat bezpoplatkové transakce na <n>*1000 bajtů za minutu (výchozí: %u) Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) @@ -2907,33 +3039,89 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Spustit příkaz, když přijde relevantní upozornění nebo když dojde k opravdu dlouhému rozštěpení řetezce bloků (%s se v příkazu nahradí zprávou) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Poplatky (v BTC/Kb) menší než tato hodnota jsou považovány za nulové pro účely přeposílání transakcí (výchozí: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Poplatky (v HOT/Kb) menší než tato hodnota jsou považovány za nulové pro účely přeposílání transakcí (výchozí: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Poplatky (v HOT/Kb) menší než tato hodnota jsou považovány za nulové pro účely vytváření transakcí (výchozí: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Pokud paytxfee není nastaveno, platit dostatečný poplatek na to, aby začaly být transakce potvrzovány v průměru během n bloků (výchozí: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Neplatná částka pro -maxtxfee=<amount>: '%s' (musí být alespoň jako poplatek minrelay %s, aby transakce nezůstávaly trčet) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Poplatky (v BTC/Kb) menší než tato hodnota jsou považovány za nulové pro účely vytváření transakcí (výchozí: %s) + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Maximální velikost dat v transakcích nesoucích data, se kterou jsme ochotni je ještě přeposílat a těžit (výchozí: %u) + + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Horní hranice pro celkový poplatek za jednu transakci z peněženky; příliš nízká hodnota může zmařit velké transakce (výchozí: %s) Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Při nedostatku adres získat další protějšky z DNS (výchozí: 1, pokud není použito -connect) + + Require high priority for relaying free or low-fee transactions (default:%u) + Vyžadovat vysokou prioritu pro přeposílání bezplatných nebo nízkopoplatkových transakcí (výchozí: %u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Nastavit maximální velikost prioritních/nízkopoplatkových transakcí v bajtech (výchozí: %d) + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Nastavení počtu vláken pro těžení, je-li zapnuté (-1 = všechna jádra, výchozí: %d) + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v OpenSSL Toolkitu <https://www.openssl.org/> a kryptografický program od Erika Younga a program UPnP od Thomase Bernarda. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Upozornění: Zkontroluj, že máš v počítači správně nastavený datum a čas! Pokud jsou nastaveny špatně, Bitcoin Core nebude fungovat správně. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + K používání hypercoind nebo volby -server u hypercoin-qt musíš nastavit rpcpassword v konfiguračním souboru: +%s +Je vhodné použít následující náhodné heslo: +rpcuser=hypercoinrpc +rpcpassword=%s +(není potřeba si ho pamatovat) +rpcuser a rpcpassword NESMÍ být stejné. +Pokud konfigurační soubor ještě neexistuje, vytvoř ho tak, aby ho mohl číst pouze vlastník. +Je také doporučeno si nastavit alertnotify, abys byl upozorněn na případné problémy; +například: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Upozornění: -maxtxfee je nastaveno velmi vysoko! Takto vysoký poplatek může být zaplacen v jednotlivé transakci. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Upozornění: Zkontroluj, že máš v počítači správně nastavený datum a čas! Pokud jsou nastaveny špatně, Hypercoin Core nebude fungovat správně. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Na protějšky na bílé listině se nevztahuje DoS klatba a jejich transakce jsou vždy přeposílány, i když už třeba jsou v mempoolu, což je užitečné např. pro bránu + + Accept public REST requests (default: %u) + Přijímat veřejné REST požadavky (výchozí: %u) + Cannot resolve -whitebind address: '%s' Nemohu přeložit -whitebind adresu: '%s' @@ -2951,24 +3139,32 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Nejde mi přečíst hodnotu -rpcbind %s jako síťovou adresu - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Bitcoin Core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Chyba při načítání wallet.dat: peněženka vyžaduje novější verzi Hypercoin Core + + + Error reading from database, shutting down. + Chyba při čtení z databáze, ukončuji se. Error: Unsupported argument -tor found, use -onion. Chyba: Argument -tor již není podporovaný, použij -onion. - Fee (in BTC/kB) to add to transactions you send (default: %s) - Poplatek (v BTC/kB), který se přidá ke každé odeslané transakci (výchozí: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Poplatek (v HOT/kB), který se přidá ke každé odeslané transakci (výchozí: %s) Information Informace - Initialization sanity check failed. Bitcoin Core is shutting down. - Selhala úvodní zevrubná prověrka. Bitcoin Core se ukončuje. + Initialization sanity check failed. Hypercoin Core is shutting down. + Selhala úvodní zevrubná prověrka. Hypercoin Core se ukončuje. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Neplatná částka pro -maxtxfee=<amount>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -2987,8 +3183,8 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Ve -whitelist byla zadána neplatná podsíť: '%s' - Keep at most <n> unconnectable blocks in memory (default: %u) - Držet v paměti nejvýše <n> nespojitelných bloků (výchozí: %u) + Keep at most <n> unconnectable transactions in memory (default: %u) + Držet v paměti nejvýše <n> nespojitelných transakcí (výchozí: %u) Need to specify a port with -whitebind: '%s' @@ -2999,17 +3195,17 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Možnosti přeposílání: - Print block on startup, if found in block index - Vypsat při startu blok,pokud se nachází v indexu bloků - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Možnosti SSL pro RPC: (viz instrukce nastavení SSL na Bitcoin Wiki) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Možnosti SSL pro RPC: (viz instrukce nastavení SSL na Hypercoin Wiki) RPC server options: Možnosti RPC serveru: + + RPC support for HTTP persistent connections (default: %d) + Podpora RPC pro perzistentní HTTP spojení (výchozí: %d) + Randomly drop 1 of every <n> network messages Náhodně zahazovat jednu z každých <n> síťových zpráv @@ -3022,6 +3218,10 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Send trace/debug info to console instead of debug.log file Posílat stopovací/ladicí informace do konzole místo do souboru debug.log + + Send transactions as zero-fee transactions if possible (default: %u) + Posílat transakce pokud možno bez poplatků (výchozí: %u) + Show all debugging options (usage: --help -help-debug) Zobrazit všechny možnosti ladění (užití: --help -help-debug) @@ -3046,9 +3246,13 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Transaction amounts must be positive Částky v transakci musí být kladné + + Transaction too large for fee policy + Transakce je na poplatkovou politiku příliš velká + Transaction too large - Transace je příliš velká + Transakce je příliš velká Unable to bind to %s on this computer (bind returned error %s) @@ -3063,8 +3267,8 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Uživatelské jméno pro JSON-RPC spojení - Wallet needed to be rewritten: restart Bitcoin Core to complete - Soubor s peněženkou potřeboval přepsat: restartuj Bitcoin Core, aby se operace dokončila + Wallet needed to be rewritten: restart Hypercoin Core to complete + Soubor s peněženkou potřeboval přepsat: restartuj Hypercoin Core, aby se operace dokončila Warning @@ -3130,14 +3334,166 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error loading wallet.dat: Wallet corrupted Chyba při načítání wallet.dat: peněženka je poškozená + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = ukládat transakční metadata, např. majitele účtu a informace o platebním požadavku, 2 = mazat transakční metadata) + + + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) + Promítnout databázovou aktivitu z paměťového prostoru do záznamu na disku každých <n> megabajtů (výchozí: %u) + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Jak moc důkladná má být verifikace bloků -checkblocks (0-4, výchozí: %u) + + + Log transaction priority and fee per kB when mining blocks (default: %u) + Zaznamenávat během těžení bloků prioritu transakce a poplatek za kB (výchozí: %u) + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Spravovat úplný index transakcí, který je využíván rpc voláním getrawtransaction (výchozí: %u) + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Doba ve vteřinách, po kterou se nebudou moci zlobivé protějšky znovu připojit (výchozí: %u) + + + Output debugging information (default: %u, supplying <category> is optional) + Tisknout ladicí informace (výchozí: %u, zadání <category> je volitelné) + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Použít samostatnou SOCKS5 proxy ke spojení s protějšky přes skryté služby v Toru (výchozí: %s) + + + (default: %s) + (výchozí: %s) + + + Acceptable ciphers (default: %s) + Akceptovatelné šifry (výchozí: %s) + + + Always query for peer addresses via DNS lookup (default: %u) + Vždy získávat adresy dalších protějšků přes DNS (výchozí: %u) + + + Disable safemode, override a real safe mode event (default: %u) + Vypnout bezpečný režim (safemode), překrýt skutečnou událost bezpečného režimu (výchozí: %u) + Error loading wallet.dat Chyba při načítání wallet.dat + + Force safe mode (default: %u) + Vynutit bezpečný mód (výchozí: %u) + + + Generate coins (default: %u) + Těžit (výchozí: %u) + + + How many blocks to check at startup (default: %u, 0 = all) + Kolik bloků při startu zkontrolovat (výchozí: %u, 0 = všechny) + + + Include IP addresses in debug output (default: %u) + Zaznamenávat do ladicích výstupů i IP adresy (výchozí: %u) + Invalid -proxy address: '%s' Neplatná -proxy adresa: '%s' + + Limit size of signature cache to <n> entries (default: %u) + Omezit velikost vyrovnávací paměti pro podpisy na <n> položek (výchozí: %u) + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + Čekat na JSON-RPC spojení na <portu> (výchozí: %u nebo testnet: %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + Čekat na spojení na <portu> (výchozí: %u nebo testnet: %u) + + + Maintain at most <n> connections to peers (default: %u) + Povolit nejvýše <n> protějšků (výchozí: %u) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + Maximální velikost přijímacího bufferu pro každé spojení, <n>*1000 bajtů (výchozí: %u) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bajtů (výchozí: %u) + + + Only accept block chain matching built-in checkpoints (default: %u) + Uznávat pouze řetězec bloků, který odpovídá vnitřním kontrolním bodům (výchozí: %u) + + + Prepend debug output with timestamp (default: %u) + Připojit před ladicí výstup časové razítko (výchozí: %u) + + + Relay and mine data carrier transactions (default: %u) + Přeposílat a těžit transakce nesoucí data (výchozí: %u) + + + Relay non-P2SH multisig (default: %u) + Přeposílat ne-P2SH multisig (výchozí: %u) + + + Run a thread to flush wallet periodically (default: %u) + Spustit vlákno pročišťující periodicky peněženku (výchozí: %u) + + + Server certificate file (default: %s) + Soubor se serverovým certifikátem (výchozí: %s) + + + Server private key (default: %s) + Soubor se serverovým soukromým klíčem (výchozí: %s) + + + Set key pool size to <n> (default: %u) + Nastavit zásobník klíčů na velikost <n> (výchozí: %u) + + + Set minimum block size in bytes (default: %u) + Nastavit minimální velikost bloku v bajtech (výchozí: %u) + + + Set the number of threads to service RPC calls (default: %d) + Nastavení počtu vláken pro servisní RPC volání (výchozí: %d) + + + Sets the DB_PRIVATE flag in the wallet db environment (default: %u) + Nastavit příznak DB_PRIVATE v databázovém prostředí peněženky (výchozí: %u) + + + Specify configuration file (default: %s) + Konfigurační soubor (výchozí: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Zadej časový limit spojení v milivteřinách (minimum: 1, výchozí: %d) + + + Spend unconfirmed change when sending transactions (default: %u) + Utrácet i ještě nepotvrzené drobné při posílání transakcí (výchozí: %u) + + + Stop running after importing blocks from disk (default: %u) + Ukončit se po importu bloků z disku (výchozí: %u) + + + Threshold for disconnecting misbehaving peers (default: %u) + Práh pro odpojování zlobivých protějšků (výchozí: %u) + Unknown network specified in -onlynet: '%s' V -onlynet byla uvedena neznámá síť: '%s' @@ -3154,10 +3510,6 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Neplatná částka pro -paytxfee=<částka>: '%s' - - Invalid amount - Neplatná částka - Insufficient funds Nedostatek prostředků @@ -3190,13 +3542,9 @@ například: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Načítání dokončeno - - To use the %s option - K použití volby %s - Error Chyba - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_cy.ts b/src/qt/locale/bitcoin_cy.ts index c68fc274f320d..c9c4379248474 100644 --- a/src/qt/locale/bitcoin_cy.ts +++ b/src/qt/locale/bitcoin_cy.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Clicio dwywaith i olygu cyfeiriad neu label - Create a new address Creu cyfeiriad newydd diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index f733591098497..a7e9069d5b01c 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Dobbeltklik for at redigere adresse eller mærkat + Right-click to edit address or label + Højreklik for at redigere adresse eller mærke Create a new address @@ -47,11 +47,11 @@ Choose the address to send coins to - Vælg adresse at sende bitcoins til + Vælg adresse at sende hypercoins til Choose the address to receive coins with - Vælg adresse at modtage bitcoins med + Vælg adresse at modtage hypercoins med C&hoose @@ -66,12 +66,12 @@ Modtagelsesadresser - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Disse er dine Bitcoin-adresser for at sende betalinger. Tjek altid beløb og modtageradresse, inden du sender bitcoins. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Disse er dine Hypercoin-adresser for at sende betalinger. Tjek altid beløb og modtageradresse, inden du sender hypercoins. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Dette er dine Bitcoin-adresser til at modtage betalinger med. Det anbefales are bruge en ny modtagelsesadresse for hver transaktion. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Dette er dine Hypercoin-adresser til at modtage betalinger med. Det anbefales are bruge en ny modtagelsesadresse for hver transaktion. Copy &Label @@ -164,8 +164,8 @@ Bekræft tegnebogskryptering - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Advarsel: Hvis du krypterer din tegnebog og mister din adgangskode, vil du <b>MISTE ALLE DINE BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Advarsel: Hvis du krypterer din tegnebog og mister din adgangskode, vil du <b>MISTE ALLE DINE HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Indtast det nye kodeord til tegnebogen.<br/>Brug venligst et kodeord på <b>ti eller flere tilfældige tegn</b> eller <b>otte eller flere ord</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin vil nu lukke for at gennemføre krypteringsprocessen. Husk på, at kryptering af din tegnebog vil ikke beskytte dine bitcoins fuldt ud mod at blive stjålet af malware på din computer. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin vil nu lukke for at gennemføre krypteringsprocessen. Husk på, at kryptering af din tegnebog vil ikke beskytte dine hypercoins fuldt ud mod at blive stjålet af malware på din computer. Wallet encryption failed @@ -295,8 +295,8 @@ &Åbn URI … - Bitcoin Core client - Bitcoin Core-klient + Hypercoin Core client + Hypercoin Core-klient Importing blocks from disk... @@ -307,12 +307,12 @@ Genindekserer blokke på disken … - Send coins to a Bitcoin address - Send bitcoins til en Bitcoin-adresse + Send coins to a Hypercoin address + Send hypercoins til en Hypercoin-adresse - Modify configuration options for Bitcoin - Redigér konfigurationsindstillinger for Bitcoin + Modify configuration options for Hypercoin + Redigér konfigurationsindstillinger for Hypercoin Backup wallet to another location @@ -335,8 +335,8 @@ &Verificér besked … - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Modtag - Show information about Bitcoin Core - Vis oplysninger om Bitcoin Core + Show information about Hypercoin Core + Vis oplysninger om Hypercoin Core &Show / Hide @@ -367,12 +367,12 @@ Kryptér de private nøgler, der hører til din tegnebog - Sign messages with your Bitcoin addresses to prove you own them - Underskriv beskeder med dine Bitcoin-adresser for at bevise, at de tilhører dig + Sign messages with your Hypercoin addresses to prove you own them + Underskriv beskeder med dine Hypercoin-adresser for at bevise, at de tilhører dig - Verify messages to ensure they were signed with specified Bitcoin addresses - Verificér beskeder for at sikre, at de er underskrevet med de angivne Bitcoin-adresser + Verify messages to ensure they were signed with specified Hypercoin addresses + Verificér beskeder for at sikre, at de er underskrevet med de angivne Hypercoin-adresser &File @@ -391,16 +391,16 @@ Faneværktøjslinje - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Anmod om betalinger (genererer QR-koder og "bitcoin:"-URI'er) + Request payments (generates QR codes and hypercoin: URIs) + Anmod om betalinger (genererer QR-koder og "hypercoin:"-URI'er) - &About Bitcoin Core - &Om Bitcoin Core + &About Hypercoin Core + &Om Hypercoin Core Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Vis listen over brugte modtagelsesadresser og -mærkater - Open a bitcoin: URI or payment request - Åbn en "bitcoin:"-URI eller betalingsanmodning + Open a hypercoin: URI or payment request + Åbn en "hypercoin:"-URI eller betalingsanmodning &Command-line options Tilvalg for &kommandolinje - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Vis Bitcoin Core hjælpebesked for at få en liste over mulige tilvalg for Bitcoin kommandolinje + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Vis Hypercoin Core hjælpebesked for at få en liste over mulige tilvalg for Hypercoin kommandolinje - %n active connection(s) to Bitcoin network - %n aktiv forbindelse til Bitcoin-netværket%n aktive forbindelser til Bitcoin-netværket + %n active connection(s) to Hypercoin network + %n aktiv forbindelse til Hypercoin-netværket%n aktive forbindelser til Hypercoin-netværket No block source available... @@ -788,8 +788,8 @@ Adresse: %4 Den indtastede adresse "%1" er allerede i adressebogen. - The entered address "%1" is not a valid Bitcoin address. - Den indtastede adresse "%1" er ikke en gyldig Bitcoin-adresse. + The entered address "%1" is not a valid Hypercoin address. + Den indtastede adresse "%1" er ikke en gyldig Hypercoin-adresse. Could not unlock wallet. @@ -826,8 +826,8 @@ Adresse: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -838,8 +838,8 @@ Adresse: %4 (%1-bit) - About Bitcoin Core - Om Bitcoin Core + About Hypercoin Core + Om Hypercoin Core Command-line options @@ -885,16 +885,16 @@ Adresse: %4 Velkommen - Welcome to Bitcoin Core. - Velkommen til Bitcoin Core. + Welcome to Hypercoin Core. + Velkommen til Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Siden dette er første gang, programmet startes, kan du vælge, hvor Bitcoin Core skal gemme sin data. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Siden dette er første gang, programmet startes, kan du vælge, hvor Hypercoin Core skal gemme sin data. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core vil downloade og gemme et kopi af Bitcoin-blokkæden. Mindst %1 GB data vil blive gemt i denne mappe, og den vil vokse over tid. Tegnebogen vil også blive gemt i denne mappe. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core vil downloade og gemme et kopi af Hypercoin-blokkæden. Mindst %1 GB data vil blive gemt i denne mappe, og den vil vokse over tid. Tegnebogen vil også blive gemt i denne mappe. Use the default data directory @@ -905,8 +905,8 @@ Adresse: %4 Brug tilpasset mappe for data: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. @@ -955,12 +955,12 @@ Adresse: %4 &Generelt - Automatically start Bitcoin after logging in to the system. - Start Bitcoin automatisk, når der logges ind på systemet. + Automatically start Hypercoin after logging in to the system. + Start Hypercoin automatisk, når der logges ind på systemet. - &Start Bitcoin on system login - &Start Bitcoin ved systemlogin + &Start Hypercoin on system login + &Start Hypercoin ved systemlogin Size of &database cache @@ -1035,16 +1035,16 @@ Adresse: %4 &Brug ubekræftede byttepenge - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Åbn automatisk Bitcoin-klientens port på routeren. Dette virker kun, når din router understøtter UPnP, og UPnP er aktiveret. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Åbn automatisk Hypercoin-klientens port på routeren. Dette virker kun, når din router understøtter UPnP, og UPnP er aktiveret. Map port using &UPnP Konfigurér port vha. &UPnP - Connect to the Bitcoin network through a SOCKS5 proxy. - Forbind til Bitcoin-netværket gennem en SOCKS5-proxy. + Connect to the Hypercoin network through a SOCKS5 proxy. + Forbind til Hypercoin-netværket gennem en SOCKS5-proxy. &Connect through SOCKS5 proxy (default proxy): @@ -1091,8 +1091,8 @@ Adresse: %4 &Sprog for brugergrænseflade: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Sproget for brugergrænsefladen kan angives her. Denne indstilling træder først i kraft, når Bitcoin genstartes. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Sproget for brugergrænsefladen kan angives her. Denne indstilling træder først i kraft, når Hypercoin genstartes. &Unit to show amounts in: @@ -1100,7 +1100,7 @@ Adresse: %4 Choose the default subdivision unit to show in the interface and when sending coins. - Vælg standard for underopdeling af enhed, som skal vises i brugergrænsefladen og ved afsendelse af bitcoins. + Vælg standard for underopdeling af enhed, som skal vises i brugergrænsefladen og ved afsendelse af hypercoins. Whether to show coin control features or not. @@ -1150,8 +1150,8 @@ Adresse: %4 Formular - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Den viste information kan være forældet. Din tegnebog synkroniserer automatisk med Bitcoin-netværket, når en forbindelse etableres, men denne proces er ikke gennemført endnu. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Den viste information kan være forældet. Din tegnebog synkroniserer automatisk med Hypercoin-netværket, når en forbindelse etableres, men denne proces er ikke gennemført endnu. Watch-only: @@ -1257,16 +1257,16 @@ Adresse: %4 Fejl i betalingsanmodning - Cannot start bitcoin: click-to-pay handler - Kan ikke starte bitcoin: click-to-pay-håndtering + Cannot start hypercoin: click-to-pay handler + Kan ikke starte hypercoin: click-to-pay-håndtering Payment request fetch URL is invalid: %1 Hentnings-URL for betalingsanmodning er ugyldig: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - URI kan ikke tolkes! Dette kan skyldes en ugyldig Bitcoin-adresse eller forkert udformede URL-parametre. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI kan ikke tolkes! Dette kan skyldes en ugyldig Hypercoin-adresse eller forkert udformede URL-parametre. Payment request file handling @@ -1284,6 +1284,14 @@ Adresse: %4 Refund from %1 Tilbagebetaling fra %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Betalingsanmodning %1 er for stor (%2 byte, %3 byte tilladt). + + + Payment request DoS protection + Beskyttelse mod DoS-angreb via betalingsanmodninger + Error communicating with %1: %2 Fejl under kommunikation med %1: %2 @@ -1327,8 +1335,8 @@ Adresse: %4 Beløb - Enter a Bitcoin address (e.g. %1) - Indtast en Bitcoin-adresse (fx %1) + Enter a Hypercoin address (e.g. %1) + Indtast en Hypercoin-adresse (fx %1) %1 d @@ -1553,16 +1561,16 @@ Adresse: %4 Fejlsøgningslogfil - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Åbn Bitcoin-fejlsøgningslogfilen fra den nuværende datamappe. Dette kan tage nogle få sekunder for store logfiler. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Åbn Hypercoin-fejlsøgningslogfilen fra den nuværende datamappe. Dette kan tage nogle få sekunder for store logfiler. Clear console Ryd konsol - Welcome to the Bitcoin RPC console. - Velkommen til Bitcoin RPC-konsollen. + Welcome to the Hypercoin RPC console. + Velkommen til Hypercoin RPC-konsollen. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1636,8 +1644,8 @@ Adresse: %4 &Genbrug en eksisterende modtagelsesadresse (anbefales ikke) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - En valgfri besked, der føjes til betalingsanmodningen, og som vil vises, når anmodningen åbnes. Bemærk: Beskeden vil ikke sendes sammen med betalingen over Bitcoin-netværket. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + En valgfri besked, der føjes til betalingsanmodningen, og som vil vises, når anmodningen åbnes. Bemærk: Beskeden vil ikke sendes sammen med betalingen over Hypercoin-netværket. An optional label to associate with the new receiving address. @@ -1786,7 +1794,7 @@ Adresse: %4 SendCoinsDialog Send Coins - Send bitcoins + Send hypercoins Coin Control Features @@ -1873,8 +1881,8 @@ Adresse: %4 total mindst - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. - Det er helt fint kun at betale det minimale gebyr, så længe den totale transaktionsvolumen er mindre end den plads, der er tilgængelig i blokkene. Men vær opmærksom på, at dette kan ende ud i transaktioner, der aldrig bliver bekræftet, når der bliver større forespørgsel efter bitcoin-transaktioner, end hvad netværket kan bearbejde. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Det er helt fint kun at betale det minimale gebyr, så længe den totale transaktionsvolumen er mindre end den plads, der er tilgængelig i blokkene. Men vær opmærksom på, at dette kan ende ud i transaktioner, der aldrig bliver bekræftet, når der bliver større forespørgsel efter hypercoin-transaktioner, end hvad netværket kan bearbejde. (read the tooltip) @@ -1946,7 +1954,7 @@ Adresse: %4 Confirm send coins - Bekræft afsendelse af bitcoins + Bekræft afsendelse af hypercoins %1 to %2 @@ -1981,8 +1989,8 @@ Adresse: %4 Kopiér byttepenge - Total Amount %1 (= %2) - Totalbeløb %1 (= %2) + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + Totalbeløb %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> or @@ -2014,7 +2022,7 @@ Adresse: %4 The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Transaktionen blev afvist! Dette kan ske, hvis nogle af dine bitcoins i din tegnebog allerede er brugt, som hvis du brugte en kopi af wallet.dat og dine bitcoins er blevet brugt i kopien, men ikke er markeret som brugt her. + Transaktionen blev afvist! Dette kan ske, hvis nogle af dine hypercoins i din tegnebog allerede er brugt, som hvis du brugte en kopi af wallet.dat og dine hypercoins er blevet brugt i kopien, men ikke er markeret som brugt her. A fee higher than %1 is considered an insanely high fee. @@ -2029,8 +2037,8 @@ Adresse: %4 Bekræftelse vurderes at begynde inden for %1 blok(ke). - Warning: Invalid Bitcoin address - Advarsel: Ugyldig Bitcoin-adresse + Warning: Invalid Hypercoin address + Advarsel: Ugyldig Hypercoin-adresse (no label) @@ -2080,8 +2088,8 @@ Adresse: %4 Dette er en normal betaling. - The Bitcoin address to send the payment to - Bitcoin-adresse, som betalingen skal sendes til + The Hypercoin address to send the payment to + Hypercoin-adresse, som betalingen skal sendes til Alt+A @@ -2112,8 +2120,8 @@ Adresse: %4 Indtast et mærkat for denne adresse for at føje den til listen over brugte adresser - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - En besked, som blev føjet til "bitcon:"-URI'en, som vil gemmes med transaktionen til din reference. Bemærk: Denne besked vil ikke blive sendt over Bitcoin-netværket. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + En besked, som blev føjet til "bitcon:"-URI'en, som vil gemmes med transaktionen til din reference. Bemærk: Denne besked vil ikke blive sendt over Hypercoin-netværket. This is an unverified payment request. @@ -2131,8 +2139,8 @@ Adresse: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core lukker ned … + Hypercoin Core is shutting down... + Hypercoin Core lukker ned … Do not shut down the computer until this window disappears. @@ -2151,11 +2159,11 @@ Adresse: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Du kan underskrive beskeder med dine Bitcoin-adresser for at bevise, at de tilhører dig. Pas på ikke at underskrive noget vagt, da phisingangreb kan narre dig til at overdrage din identitet. Underskriv kun fuldt detaljerede udsagn, du er enig i. + Du kan underskrive beskeder med dine Hypercoin-adresser for at bevise, at de tilhører dig. Pas på ikke at underskrive noget vagt, da phisingangreb kan narre dig til at overdrage din identitet. Underskriv kun fuldt detaljerede udsagn, du er enig i. - The Bitcoin address to sign the message with - Bitcoin-adresse, som beskeden skal signeres med + The Hypercoin address to sign the message with + Hypercoin-adresse, som beskeden skal signeres med Choose previously used address @@ -2186,8 +2194,8 @@ Adresse: %4 Kopiér den nuværende underskrift til systemets udklipsholder - Sign the message to prove you own this Bitcoin address - Underskriv denne besked for at bevise, at Bitcoin-adressen tilhører dig + Sign the message to prove you own this Hypercoin address + Underskriv denne besked for at bevise, at Hypercoin-adressen tilhører dig Sign &Message @@ -2210,12 +2218,12 @@ Adresse: %4 Indtast herunder den underskrivende adresse, beskeden (inkludér linjeskift, mellemrum mv. nøjagtigt, som de fremgår) og underskriften for at verificere beskeden. Vær forsigtig med ikke at lægge mere i underskriften end besked selv, så du undgår at blive narret af et man-in-the-middle-angreb. - The Bitcoin address the message was signed with - Bitcoin-adressen, som beskeden blev signeret med + The Hypercoin address the message was signed with + Hypercoin-adressen, som beskeden blev signeret med - Verify the message to ensure it was signed with the specified Bitcoin address - Verificér beskeden for at sikre, at den er underskrevet med den angivne Bitcoin-adresse + Verify the message to ensure it was signed with the specified Hypercoin address + Verificér beskeden for at sikre, at den er underskrevet med den angivne Hypercoin-adresse Verify &Message @@ -2281,8 +2289,8 @@ Adresse: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2412,7 +2420,7 @@ Adresse: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Minede bitcoins skal modne %1 blokke, før de kan bruges. Da du genererede denne blok, blev den udsendt til netværket for at blive føjet til blokkæden. Hvis det ikke lykkes at få den i kæden, vil dens tilstand ændres til "ikke accepteret", og den vil ikke kunne bruges. Dette kan ske nu og da, hvis en anden knude udvinder en blok inden for nogle få sekunder fra din. + Minede hypercoins skal modne %1 blokke, før de kan bruges. Da du genererede denne blok, blev den udsendt til netværket for at blive føjet til blokkæden. Hvis det ikke lykkes at få den i kæden, vil dens tilstand ændres til "ikke accepteret", og den vil ikke kunne bruges. Dette kan ske nu og da, hvis en anden knude udvinder en blok inden for nogle få sekunder fra din. Debug information @@ -2730,7 +2738,7 @@ Adresse: %4 WalletModel Send Coins - Send bitcoins + Send hypercoins @@ -2802,30 +2810,6 @@ Adresse: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Acceptér forbindelser udefra (standard: 1 hvis hverken -proxy eller -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, du skal angive en RPC-adgangskode i konfigurationsfilen: -%s -Det anbefales, at du bruger nedenstående, tilfældige adgangskode: -rpcuser=bitcoinrpc -rpcpassword=%s -(du behøver ikke huske denne adgangskode) -Brugernavnet og adgangskode MÅ IKKE være det samme. -Hvis filen ikke eksisterer, opret den og giv ingen andre end ejeren læserettighed. -Det anbefales også at angive alertnotify, så du påmindes om problemer; -fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Tildel til den givne adresse og lyt altid på den. Brug [vært]:port-notation for IPv6 @@ -2842,14 +2826,6 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Start regressionstesttilstand, som bruger en speciel kæde, hvor blokke kan løses med det samme. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fejl: Transaktionen blev afvist. Dette kan ske, hvis nogle af dine bitcoins i din tegnebog allerede er brugt, som hvis du brugte en kopi af wallet.dat og dine bitcoins er blevet brugt i kopien, men ikke er markeret som brugt her. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Fejl: Denne transaktion kræver et transaktionsgebyr på minimum %s pga. dens beløb, kompleksitet eller anvendelse af nyligt modtagne bitcoins! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Udfør kommando, når en transaktion i tegnebogen ændres (%s i kommandoen erstattes med TxID) @@ -2867,8 +2843,8 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Dette er en foreløbig testudgivelse - brug på eget ansvar - brug ikke til udvinding eller handelsprogrammer - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Ikke i stand til at tildele til %s på denne computer. Bitcoin Core kører sansynligvis allerede. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Ikke i stand til at tildele til %s på denne computer. Hypercoin Core kører sansynligvis allerede. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2954,18 +2930,10 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error opening block database Åbning af blokdatabase mislykkedes - - Error: A fatal internal error occured, see debug.log for details - Fejl: En fatal intern fejl opstod; se debug.log for detaljer - Error: Disk space is low! Fejl: Mangel på ledig diskplads! - - Error: Wallet locked, unable to create transaction! - Fejl: Tegnebog låst, kan ikke oprette transaktion! - Failed to listen on any port. Use -listen=0 if you want this. Lytning på enhver port mislykkedes. Brug -listen=0, hvis du ønsker dette. @@ -3059,8 +3027,8 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Tildel til den givne adresse for at lytte efter JSON-RPC-forbindelser. Brug [vært]:port-notation for IPv6. Denne valgmulighed kan angives flere gange (standard: tildel til alle grænseflader) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Kan ikke opnå en lås på datamappe %s. Bitcoin Core kører sansynligvis allerede. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Kan ikke opnå en lås på datamappe %s. Hypercoin Core kører sansynligvis allerede. Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) @@ -3083,21 +3051,37 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Udfør kommando, når en relevant alarm modtages eller vi ser en virkelig lang udsplitning (%s i cmd erstattes af besked) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Gebyrer (i BTC/Kb) mindre end dette opfattes som nulgebyr for videresendelse (standard: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Gebyrer (i HOT/Kb) mindre end dette opfattes som nulgebyr for videresendelse (standard: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Gebyrer (i HOT/Kb) mindre end dette opfattes som nulgebyr for oprettelse af transaktion (standard: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Hvis paytxfee ikke er sat, inkluderes nok gebyr til at transaktioner begynder at blive bekræftet ingen for gennemsnitligt n blokke (standard: %u) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Gebyrer (i BTC/Kb) mindre end dette opfattes som nulgebyr for oprettelse af transaktion (standard: %s) + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Ugyldigt beløb for -maxtxfee=<beløb>: "%s" (skal være på mindst minrelay-gebyret på %s for at undgå hængende transaktioner) Maximum size of data in data carrier transactions we relay and mine (default: %u) Maksimal størrelse på data i transaktioner til dataoverførsel, som vi videresender og miner (standard: %u) + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Maksimalt totalgebyr der bruges på en enkelt tegnebogstransaktion. Sættes det for lavt kan store transaktioner afbrydes (standard: %s) + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Forespørgsel + + Require high priority for relaying free or low-fee transactions (default:%u) + Kræv høj prioritet for at videresende transaktioner med intet eller lavt gebyr (standard: %u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Sæt maksimumstørrelse for højprioritet/lavgebyr-transaktioner i byte (standard: %d) @@ -3111,13 +3095,45 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Dette produkt indeholder software, der er udviklet af OpenSSL-projektet for brug i OpenSSL-værktøjskassen <https://www.openssl.org/>, samt kryptografisk software, der er skrevet af Eric Young, samt UPnP-software, der er skrevet af Thomas Bernard. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet! Hvis der er fejl i disse vil Bitcoin Core ikke fungere korrekt. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + For at bruge hypercoind eller valgmuligheden -server i hypercoin-qt skal du oprette et rpcpassword i konfigurationsfilen: +%s +Det anbefales, at du bruger følgende tilfældige adgangskode: +rpcuser=hypercoinrpc +rpcpassword=%s +(du behøver ikke at huske adgangskoden) +Brugernavnet og adgangskoden MÅ IKKE være det samme. +Hvis filen ikke eksisterer, opret den da så kun ejeren har læserettigheder. +Det anbefales også at sætte alertnotify, så du får besked omkring problemer; +for eksempel: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Advarsel: -maxtxfee er sat meget højt! Så store gebyrer kan betales på en enkelt transaktion. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Advarsel: Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet! Hvis der er fejl i disse vil Hypercoin Core ikke fungere korrekt. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Andre knuder på hvidliste kan ikke DoS-bandlyses, og deres transaktioner videresendes altid, selv hvis de allerede er i mempool'en. Brugbart til fx et adgangspunkt + + Accept public REST requests (default: %u) + Acceptér offentlige REST-anmodninger (standard: %u) + Cannot resolve -whitebind address: '%s' Kan ikke løse -whitebind adresse: "%s" @@ -3135,24 +3151,36 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Kunne ikke tolke -rpcbind-værdi %s som en netværksadresse - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Fejl ved indlæsning af wallet.dat: Tegnebog kræver en nyere version af Bitcoin Core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Fejl ved indlæsning af wallet.dat: Tegnebog kræver en nyere version af Hypercoin Core + + + Error reading from database, shutting down. + Fejl under læsning fra database; lukker ned. + + + Error: A fatal internal error occurred, see debug.log for details + Fejl: En alvorlig intern fejl er opstået. Se debug.log for detaljer Error: Unsupported argument -tor found, use -onion. Fejl: Ikke understøttet argument -tor fundet, brug -onion. - Fee (in BTC/kB) to add to transactions you send (default: %s) - Gebyr (i BTC/kB) som skal føjes til transaktioner, du sender (standard: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Gebyr (i HOT/kB) som skal føjes til transaktioner, du sender (standard: %s) Information Information - Initialization sanity check failed. Bitcoin Core is shutting down. - Sundhedstjek under klargøring mislykkedes. Bitcoin Core lukker ned. + Initialization sanity check failed. Hypercoin Core is shutting down. + Sundhedstjek under klargøring mislykkedes. Hypercoin Core lukker ned. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Ugyldigt beløb for -maxtxfee=<beløb>: "%s" Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -3170,10 +3198,6 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid netmask specified in -whitelist: '%s' Ugyldig netmaske angivet i -whitelist: "%s" - - Keep at most <n> unconnectable blocks in memory (default: %u) - Behold højest <n> uforbindelige blokke i hukommelsen (standard: %u) - Keep at most <n> unconnectable transactions in memory (default: %u) Behold højest <n> uforbindelige transaktioner i hukommelsen (standard: %u) @@ -3187,17 +3211,17 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Videresendelsesvalgmuligheder for knude: - Print block on startup, if found in block index - Udskriv blok under opstart, hvis den findes i blokindeks - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Tilvalg for RPC SSL: (se Bitcoin Wiki for instruktioner i SSL-opstart) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Tilvalg for RPC SSL: (se Hypercoin Wiki for instruktioner i SSL-opstart) RPC server options: Tilvalg for RPC-server: + + RPC support for HTTP persistent connections (default: %d) + RPC-understøttelse for HTTP-persistente forbindelser (standard: %d) + Randomly drop 1 of every <n> network messages Drop tilfældigt 1 ud af hver <n> netværksbeskeder @@ -3206,6 +3230,10 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Randomly fuzz 1 of every <n> network messages Slør tilfældigt 1 ud af hver <n> netværksbeskeder + + Receive and display P2P network alerts (default: %u) + Modtag og vis P2P-netværksadvarsler (standard: %u) + Send trace/debug info to console instead of debug.log file Send sporings-/fejlsøgningsinformation til konsollen i stedet for debug.log filen @@ -3238,6 +3266,10 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Transaction amounts must be positive Transaktionsbeløb skal være positive + + Transaction too large for fee policy + Transaktion for stor til gebyrretningslinjer + Transaction too large Transaktionen er for stor @@ -3255,8 +3287,8 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Brugernavn til JSON-RPC-forbindelser - Wallet needed to be rewritten: restart Bitcoin Core to complete - Det var nødvendigt at genskrive tegnebogen: genstart Bitcoin Core for at gennemføre + Wallet needed to be rewritten: restart Hypercoin Core to complete + Det var nødvendigt at genskrive tegnebogen: genstart Hypercoin Core for at gennemføre Warning @@ -3334,10 +3366,6 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com How thorough the block verification of -checkblocks is (0-4, default: %u) Hvor gennemarbejdet blokverificeringen for -checkblocks er (0-4; standard: %u) - - If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u) - Hvis paytxfee ikke er angivet, inkludér da nok gebyr til at transaktioner gennemsnitligt bekræftes inden for n blokke (standard: %u) - Log transaction priority and fee per kB when mining blocks (default: %u) Prioritet for transaktionslog og gebyr pr. kB under udvinding af blokke (standard: %u) @@ -3384,7 +3412,7 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Generate coins (default: %u) - Generér bitcoins (standard: %u) + Generér hypercoins (standard: %u) How many blocks to check at startup (default: %u, 0 = all) @@ -3430,10 +3458,6 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Prepend debug output with timestamp (default: %u) Føj tidsstempel foran fejlsøgningsoutput (standard: %u) - - Print block tree on startup (default: %u) - Udskriv bloktræ under opstart (standard: %u) - Relay and mine data carrier transactions (default: %u) Videresend og udvind databærer-transaktioner (standard: %u) @@ -3512,10 +3536,6 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Ugyldigt beløb for -paytxfee=<beløb>: "%s" - - Invalid amount - Ugyldigt beløb - Insufficient funds Manglende dækning @@ -3548,13 +3568,9 @@ fx: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Indlæsning gennemført - - To use the %s option - For at bruge %s mulighed - Error Fejl - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index 2804d2d6654a0..8e2209712173f 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Doppelklick zum Bearbeiten der Adresse oder der Bezeichnung + Right-click to edit address or label + Rechtsklick zum Bearbeiten der Adresse oder der Bezeichnung Create a new address @@ -47,11 +47,11 @@ Choose the address to send coins to - Wählen Sie die Adresse aus, an die Sie Bitcoins überweisen möchten + Wählen Sie die Adresse aus, an die Sie Hypercoins überweisen möchten Choose the address to receive coins with - Wählen Sie die Adresse aus, über die Sie Bitcoins empfangen wollen + Wählen Sie die Adresse aus, über die Sie Hypercoins empfangen wollen C&hoose @@ -66,12 +66,12 @@ Empfangsadressen - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Dies sind Ihre Bitcoin-Adressen zum Tätigen von Überweisungen. Bitte prüfen Sie den Betrag und die Empfangsadresse, bevor Sie Bitcoins überweisen. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Dies sind Ihre Hypercoin-Adressen zum Tätigen von Überweisungen. Bitte prüfen Sie den Betrag und die Empfangsadresse, bevor Sie Hypercoins überweisen. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Dies sind Ihre Bitcoin-Adressen zum Empfangen von Zahlungen. Es wird empfohlen für jede Transaktion eine neue Empfangsadresse zu verwenden. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Dies sind Ihre Hypercoin-Adressen zum Empfangen von Zahlungen. Es wird empfohlen für jede Transaktion eine neue Empfangsadresse zu verwenden. Copy &Label @@ -164,8 +164,8 @@ Wallet-Verschlüsselung bestätigen - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Warnung: Wenn Sie Ihre Wallet verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>alle Ihre Bitcoins verlieren</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Warnung: Wenn Sie Ihre Wallet verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>alle Ihre Hypercoins verlieren</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Geben Sie die neue Passphrase für die Wallet ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>zehn oder mehr zufälligen Zeichen</b> oder <b>acht oder mehr Wörtern</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Wallet-Verschlüsselung nicht vollständig vor Diebstahl Ihrer Bitcoins durch Schadprogramme schützt, die Ihren Computer befällt. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Wallet-Verschlüsselung nicht vollständig vor Diebstahl Ihrer Hypercoins durch Schadprogramme schützt, die Ihren Computer befällt. Wallet encryption failed @@ -295,8 +295,8 @@ &URI öffnen... - Bitcoin Core client - "Bitcoin Core"-Client + Hypercoin Core client + "Hypercoin Core"-Client Importing blocks from disk... @@ -307,11 +307,11 @@ Reindiziere Blöcke auf Datenträger... - Send coins to a Bitcoin address - Bitcoins an eine Bitcoin-Adresse überweisen + Send coins to a Hypercoin address + Hypercoins an eine Hypercoin-Adresse überweisen - Modify configuration options for Bitcoin + Modify configuration options for Hypercoin Die Konfiguration des Clients bearbeiten @@ -335,8 +335,8 @@ Nachricht &verifizieren... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Empfangen - Show information about Bitcoin Core - Informationen über Bitcoin Core anzeigen + Show information about Hypercoin Core + Informationen über Hypercoin Core anzeigen &Show / Hide @@ -367,12 +367,12 @@ Verschlüsselt die zu Ihrer Wallet gehörenden privaten Schlüssel - Sign messages with your Bitcoin addresses to prove you own them - Nachrichten signieren, um den Besitz Ihrer Bitcoin-Adressen zu beweisen + Sign messages with your Hypercoin addresses to prove you own them + Nachrichten signieren, um den Besitz Ihrer Hypercoin-Adressen zu beweisen - Verify messages to ensure they were signed with specified Bitcoin addresses - Nachrichten verifizieren, um sicherzustellen, dass diese mit den angegebenen Bitcoin-Adressen signiert wurden + Verify messages to ensure they were signed with specified Hypercoin addresses + Nachrichten verifizieren, um sicherzustellen, dass diese mit den angegebenen Hypercoin-Adressen signiert wurden &File @@ -391,16 +391,16 @@ Registerkartenleiste - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Zahlungen anfordern (erzeugt QR-Codes und "bitcoin:"-URIs) + Request payments (generates QR codes and hypercoin: URIs) + Zahlungen anfordern (erzeugt QR-Codes und "hypercoin:"-URIs) - &About Bitcoin Core - &Über Bitcoin Core + &About Hypercoin Core + &Über Hypercoin Core Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Liste verwendeter Empfangsadressen und Bezeichnungen anzeigen - Open a bitcoin: URI or payment request - Eine "bitcoin:"-URI oder Zahlungsanforderung öffnen + Open a hypercoin: URI or payment request + Eine "hypercoin:"-URI oder Zahlungsanforderung öffnen &Command-line options &Kommandozeilenoptionen - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Zeige den "Bitcoin Core"-Hilfetext, um eine Liste mit möglichen Kommandozeilenoptionen zu erhalten + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Zeige den "Hypercoin Core"-Hilfetext, um eine Liste mit möglichen Kommandozeilenoptionen zu erhalten - %n active connection(s) to Bitcoin network - %n aktive Verbindung zum Bitcoin-Netzwerk%n aktive Verbindungen zum Bitcoin-Netzwerk + %n active connection(s) to Hypercoin network + %n aktive Verbindung zum Hypercoin-Netzwerk%n aktive Verbindungen zum Hypercoin-Netzwerk No block source available... @@ -478,6 +478,10 @@ Up to date Auf aktuellem Stand + + Processed %n blocks of transaction history. + %n Block des Transaktionsverlaufs verarbeitet.%n Blöcke des Transaktionsverlaufs verarbeitet. + Catching up... Hole auf... @@ -783,8 +787,8 @@ Adresse: %4 Die eingegebene Adresse "%1" befindet sich bereits im Adressbuch. - The entered address "%1" is not a valid Bitcoin address. - Die eingegebene Adresse "%1" ist keine gültige Bitcoin-Adresse. + The entered address "%1" is not a valid Hypercoin address. + Die eingegebene Adresse "%1" ist keine gültige Hypercoin-Adresse. Could not unlock wallet. @@ -821,8 +825,8 @@ Adresse: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -833,8 +837,8 @@ Adresse: %4 (%1-Bit) - About Bitcoin Core - Über Bitcoin Core + About Hypercoin Core + Über Hypercoin Core Command-line options @@ -862,7 +866,7 @@ Adresse: %4 Set SSL root certificates for payment request (default: -system-) - SSL-Wurzelzertifikate für Zahlungsanforderungen festlegen (Standard: Systemstandard) + SSL-Wurzelzertifikate für Zahlungsanforderungen festlegen (Standard: -system-) Show splash screen on startup (default: 1) @@ -880,16 +884,16 @@ Adresse: %4 Willkommen - Welcome to Bitcoin Core. - Willkommen zu Bitcoin Core. + Welcome to Hypercoin Core. + Willkommen zu Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Da Sie das Programm gerade zum ersten Mal starten, können Sie nun auswählen wo Bitcoin Core seine Daten ablegen soll. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Da Sie das Programm gerade zum ersten Mal starten, können Sie nun auswählen wo Hypercoin Core seine Daten ablegen soll. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core wird eine Kopie der Blockkette herunterladen und speichern. Mindestens %1GB Daten werden in diesem Verzeichnis abgelegt und die Datenmenge wächst über die Zeit an. Auch die Wallet wird in diesem Verzeichnis abgelegt. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core wird eine Kopie der Blockkette herunterladen und speichern. Mindestens %1GB Daten werden in diesem Verzeichnis abgelegt und die Datenmenge wächst über die Zeit an. Auch die Wallet wird in diesem Verzeichnis abgelegt. Use the default data directory @@ -900,8 +904,8 @@ Adresse: %4 Ein benutzerdefiniertes Datenverzeichnis verwenden: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. @@ -954,12 +958,12 @@ Adresse: %4 &Allgemein - Automatically start Bitcoin after logging in to the system. - Bitcoin nach der Anmeldung am System automatisch ausführen. + Automatically start Hypercoin after logging in to the system. + Hypercoin nach der Anmeldung am System automatisch ausführen. - &Start Bitcoin on system login - &Starte Bitcoin nach Systemanmeldung + &Start Hypercoin on system login + &Starte Hypercoin nach Systemanmeldung Size of &database cache @@ -1034,16 +1038,16 @@ Adresse: %4 &Unbestätigtes Wechselgeld darf ausgegeben werden - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Automatisch den Bitcoin-Clientport auf dem Router öffnen. Dies funktioniert nur, wenn Ihr Router UPnP unterstützt und dies aktiviert ist. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automatisch den Hypercoin-Clientport auf dem Router öffnen. Dies funktioniert nur, wenn Ihr Router UPnP unterstützt und dies aktiviert ist. Map port using &UPnP Portweiterleitung via &UPnP - Connect to the Bitcoin network through a SOCKS5 proxy. - Über einen SOCKS5-Proxy mit dem Bitcoin-Netzwerk verbinden. + Connect to the Hypercoin network through a SOCKS5 proxy. + Über einen SOCKS5-Proxy mit dem Hypercoin-Netzwerk verbinden. &Connect through SOCKS5 proxy (default proxy): @@ -1090,8 +1094,8 @@ Adresse: %4 &Sprache der Benutzeroberfläche: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Legt die Sprache der Benutzeroberfläche fest. Diese Einstellung wird erst nach einem Neustart von Bitcoin aktiv. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Legt die Sprache der Benutzeroberfläche fest. Diese Einstellung wird erst nach einem Neustart von Hypercoin aktiv. &Unit to show amounts in: @@ -1099,7 +1103,7 @@ Adresse: %4 Choose the default subdivision unit to show in the interface and when sending coins. - Wählen Sie die standardmäßige Untereinheit, die in der Benutzeroberfläche und beim Überweisen von Bitcoins angezeigt werden soll. + Wählen Sie die standardmäßige Untereinheit, die in der Benutzeroberfläche und beim Überweisen von Hypercoins angezeigt werden soll. Whether to show coin control features or not. @@ -1149,8 +1153,8 @@ Adresse: %4 Formular - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Die angezeigten Informationen sind möglicherweise nicht mehr aktuell. Ihre Wallet wird automatisch synchronisiert, nachdem eine Verbindung zum Bitcoin-Netzwerk hergestellt wurde. Dieser Prozess ist jedoch derzeit noch nicht abgeschlossen. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Die angezeigten Informationen sind möglicherweise nicht mehr aktuell. Ihre Wallet wird automatisch synchronisiert, nachdem eine Verbindung zum Hypercoin-Netzwerk hergestellt wurde. Dieser Prozess ist jedoch derzeit noch nicht abgeschlossen. Watch-only: @@ -1256,16 +1260,16 @@ Adresse: %4 fehlerhafte Zahlungsanforderung - Cannot start bitcoin: click-to-pay handler - "bitcoin: Klicken-zum-Bezahlen"-Handler konnte nicht gestartet werden + Cannot start hypercoin: click-to-pay handler + "hypercoin: Klicken-zum-Bezahlen"-Handler konnte nicht gestartet werden Payment request fetch URL is invalid: %1 Abruf-URL der Zahlungsanforderung ist ungültig: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - URI kann nicht analysiert werden! Dies kann durch eine ungültige Bitcoin-Adresse oder fehlerhafte URI-Parameter verursacht werden. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI kann nicht analysiert werden! Dies kann durch eine ungültige Hypercoin-Adresse oder fehlerhafte URI-Parameter verursacht werden. Payment request file handling @@ -1283,6 +1287,14 @@ Adresse: %4 Refund from %1 Rücküberweisung von %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Zahlungsanforderung %1 ist zu groß (%2 Byte, erlaubt sind %3 Byte). + + + Payment request DoS protection + Zahlungsanforderungs-DoS-Schutz + Error communicating with %1: %2 Kommunikationsfehler mit %1: %2 @@ -1326,8 +1338,8 @@ Adresse: %4 Betrag - Enter a Bitcoin address (e.g. %1) - Bitcoin-Adresse eingeben (z.B. %1) + Enter a Hypercoin address (e.g. %1) + Hypercoin-Adresse eingeben (z.B. %1) %1 d @@ -1552,16 +1564,16 @@ Adresse: %4 Debugprotokolldatei - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Öffnet die Bitcoin-Debugprotokolldatei aus dem aktuellen Datenverzeichnis. Dies kann bei großen Protokolldateien einige Sekunden dauern. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Öffnet die Hypercoin-Debugprotokolldatei aus dem aktuellen Datenverzeichnis. Dies kann bei großen Protokolldateien einige Sekunden dauern. Clear console Konsole zurücksetzen - Welcome to the Bitcoin RPC console. - Willkommen in der Bitcoin-RPC-Konsole. + Welcome to the Hypercoin RPC console. + Willkommen in der Hypercoin-RPC-Konsole. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1635,8 +1647,8 @@ Adresse: %4 Vorhandene Empfangsadresse &wiederverwenden (nicht empfohlen) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Eine optionale Nachricht, die an die Zahlungsanforderung angehängt wird. Sie wird angezeigt, wenn die Anforderung geöffnet wird. Hinweis: Diese Nachricht wird nicht mit der Zahlung über das Bitcoin-Netzwerk gesendet. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Eine optionale Nachricht, die an die Zahlungsanforderung angehängt wird. Sie wird angezeigt, wenn die Anforderung geöffnet wird. Hinweis: Diese Nachricht wird nicht mit der Zahlung über das Hypercoin-Netzwerk gesendet. An optional label to associate with the new receiving address. @@ -1785,7 +1797,7 @@ Adresse: %4 SendCoinsDialog Send Coins - Bitcoins überweisen + Hypercoins überweisen Coin Control Features @@ -1872,8 +1884,8 @@ Adresse: %4 Mindestbetrag - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. - Nur die minimale Gebühr zu bezahlen ist so lange in Ordnung, wie weniger Transaktionsvolumen als Platz in den Blöcken vorhanden ist. Aber Vorsicht, diese Option kann dazu führen, dass Transaktionen nicht bestätigt werden, wenn mehr Bedarf an Bitcoin-Transaktionen besteht als das Netzwerk verarbeiten kann. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Nur die minimale Gebühr zu bezahlen ist so lange in Ordnung, wie weniger Transaktionsvolumen als Platz in den Blöcken vorhanden ist. Aber Vorsicht, diese Option kann dazu führen, dass Transaktionen nicht bestätigt werden, wenn mehr Bedarf an Hypercoin-Transaktionen besteht als das Netzwerk verarbeiten kann. (read the tooltip) @@ -1980,8 +1992,8 @@ Adresse: %4 Wechselgeld kopieren - Total Amount %1 (= %2) - Gesamtbetrag %1 (= %2) + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + Gesamtbetrag %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> or @@ -2013,7 +2025,7 @@ Adresse: %4 The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Die Transaktion wurde abgelehnt! Dies kann passieren, wenn einige Bitcoins aus Ihrer Wallet bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Wallet nicht vermerkt ist. + Die Transaktion wurde abgelehnt! Dies kann passieren, wenn einige Hypercoins aus Ihrer Wallet bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Hypercoins dort ausgegeben haben und dies daher in der derzeit aktiven Wallet nicht vermerkt ist. A fee higher than %1 is considered an insanely high fee. @@ -2028,8 +2040,8 @@ Adresse: %4 Voraussichtlicher Beginn der Bestätigung innerhalb von %1 Blöcken. - Warning: Invalid Bitcoin address - Warnung: Ungültige Bitcoin-Adresse + Warning: Invalid Hypercoin address + Warnung: Ungültige Hypercoin-Adresse (no label) @@ -2079,7 +2091,7 @@ Adresse: %4 Dies ist eine normale Überweisung. - The Bitcoin address to send the payment to + The Hypercoin address to send the payment to Die Zahlungsadresse der Überweisung @@ -2111,8 +2123,8 @@ Adresse: %4 Adressbezeichnung eingeben, die dann zusammen mit der Adresse der Liste bereits verwendeter Adressen hinzugefügt wird. - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Eine an die "bitcoin:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das Bitcoin-Netzwerk gesendet. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Eine an die "hypercoin:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das Hypercoin-Netzwerk gesendet. This is an unverified payment request. @@ -2130,8 +2142,8 @@ Adresse: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core wird beendet... + Hypercoin Core is shutting down... + Hypercoin Core wird beendet... Do not shut down the computer until this window disappears. @@ -2153,8 +2165,8 @@ Adresse: %4 Sie können Nachrichten mit Ihren Adressen signieren, um den Besitz dieser Adressen zu beweisen. Bitte nutzen Sie diese Funktion mit Vorsicht und nehmen Sie sich vor Phishingangriffen in Acht. Signieren Sie nur Nachrichten, mit denen Sie vollständig einverstanden sind. - The Bitcoin address to sign the message with - Die Bitcoin-Adresse mit der die Nachricht signiert wird + The Hypercoin address to sign the message with + Die Hypercoin-Adresse mit der die Nachricht signiert wird Choose previously used address @@ -2185,8 +2197,8 @@ Adresse: %4 Aktuelle Signatur in die Zwischenablage kopieren - Sign the message to prove you own this Bitcoin address - Die Nachricht signieren, um den Besitz dieser Bitcoin-Adresse zu beweisen + Sign the message to prove you own this Hypercoin address + Die Nachricht signieren, um den Besitz dieser Hypercoin-Adresse zu beweisen Sign &Message @@ -2209,12 +2221,12 @@ Adresse: %4 Geben Sie die signierende Adresse, Nachricht (achten Sie darauf Zeilenumbrüche, Leerzeichen, Tabulatoren usw. exakt zu kopieren) und Signatur unten ein, um die Nachricht zu verifizieren. Vorsicht, interpretieren Sie nicht mehr in die Signatur hinein, als in der signierten Nachricht selber enthalten ist, um nicht von einem Man-in-the-middle-Angriff hinters Licht geführt zu werden. - The Bitcoin address the message was signed with - Die Bitcoin-Adresse mit der die Nachricht signiert wurde + The Hypercoin address the message was signed with + Die Hypercoin-Adresse mit der die Nachricht signiert wurde - Verify the message to ensure it was signed with the specified Bitcoin address - Die Nachricht verifizieren, um sicherzustellen, dass diese mit der angegebenen Bitcoin-Adresse signiert wurde + Verify the message to ensure it was signed with the specified Hypercoin address + Die Nachricht verifizieren, um sicherzustellen, dass diese mit der angegebenen Hypercoin-Adresse signiert wurde Verify &Message @@ -2280,8 +2292,8 @@ Adresse: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2411,7 +2423,7 @@ Adresse: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Erzeugte Bitcoins müssen %1 Blöcke lang reifen, bevor sie ausgegeben werden können. Als Sie diesen Block erzeugten, wurde er an das Netzwerk übertragen, um ihn der Blockkette hinzuzufügen. Falls dies fehlschlägt wird der Status in "nicht angenommen" geändert und Sie werden keine Bitcoins gutgeschrieben bekommen. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block fast zeitgleich erzeugt. + Erzeugte Hypercoins müssen %1 Blöcke lang reifen, bevor sie ausgegeben werden können. Als Sie diesen Block erzeugten, wurde er an das Netzwerk übertragen, um ihn der Blockkette hinzuzufügen. Falls dies fehlschlägt wird der Status in "nicht angenommen" geändert und Sie werden keine Hypercoins gutgeschrieben bekommen. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block fast zeitgleich erzeugt. Debug information @@ -2729,7 +2741,7 @@ Adresse: %4 WalletModel Send Coins - Bitcoins überweisen + Hypercoins überweisen @@ -2801,30 +2813,6 @@ Adresse: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Eingehende Verbindungen annehmen (Standard: 1, wenn nicht -proxy oder -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, Sie müssen den Wert rpcpasswort in dieser Konfigurationsdatei angeben: -%s -Es wird empfohlen das folgende Zufallspasswort zu verwenden: -rpcuser=bitcoinrpc -rpcpassword=%s -(Sie müssen sich dieses Passwort nicht merken!) -Der Benutzername und das Passwort dürfen NICHT identisch sein. -Falls die Konfigurationsdatei nicht existiert, erzeugen Sie diese bitte mit Leserechten nur für den Dateibesitzer. -Es wird ebenfalls empfohlen alertnotify anzugeben, um im Problemfall benachrichtig zu werden; -zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 An die angegebene Adresse binden und immer abhören. Für IPv6 "[Host]:Port"-Notation verwenden @@ -2841,14 +2829,6 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Regressionstest-Modus aktivieren, der eine spezielle Blockkette nutzt, in der Blöcke sofort gelöst werden können. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fehler: Die Transaktion wurde abgelehnt! Dies kann passieren, wenn einige Bitcoins aus Ihrer Wallet bereits ausgegeben wurden. Beispielsweise weil Sie eine Kopie Ihrer wallet.dat genutzt, die Bitcoins dort ausgegeben haben und dies daher in der derzeit aktiven Wallet nicht vermerkt ist. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Fehler: Diese Transaktion benötigt aufgrund Ihres Betrags, Ihrer Komplexität oder der Nutzung erst kürzlich erhaltener Zahlungen eine Transaktionsgebühr in Höhe von mindestens %s! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Befehl ausführen wenn sich eine Wallet-Transaktion verändert (%s im Befehl wird durch die Transaktions-ID ersetzt) @@ -2866,8 +2846,8 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Dies ist eine Vorab-Testversion - Verwendung auf eigene Gefahr - nicht für Mining- oder Handelsanwendungen nutzen! - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Kann auf diesem Computer nicht an %s binden, da Bitcoin Core wahrscheinlich bereits gestartet wurde. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Kann auf diesem Computer nicht an %s binden, da Hypercoin Core wahrscheinlich bereits gestartet wurde. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2953,18 +2933,10 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Error opening block database Fehler beim Öffnen der Blockdatenbank - - Error: A fatal internal error occured, see debug.log for details - Fehler: Ein schwerer Fehler ist aufgetreten, für Details debug.log ansehen. - Error: Disk space is low! Fehler: Zu wenig freier Speicherplatz auf dem Datenträger! - - Error: Wallet locked, unable to create transaction! - Fehler: Wallet gesperrt, Transaktion kann nicht erstellt werden! - Failed to listen on any port. Use -listen=0 if you want this. Fehler, es konnte kein Port abgehört werden. Wenn dies so gewünscht wird -listen=0 verwenden. @@ -3058,8 +3030,8 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com An die angegebene Adresse binden und nach eingehenden JSON-RPC-Verbindungen abhören. Für IPv6 "[Host]:Port"-Notation verwenden. Kann mehrmals angegeben werden. (Standard: an alle Schnittstellen binden) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Datenverzeichnis %s kann nicht gesperrt werden, da Bitcoin Core wahrscheinlich bereits gestartet wurde. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Datenverzeichnis %s kann nicht gesperrt werden, da Hypercoin Core wahrscheinlich bereits gestartet wurde. Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) @@ -3082,41 +3054,89 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Befehl ausführen wenn ein relevanter Alarm empfangen wird oder wir einen wirklich langen Fork entdecken (%s im Befehl wird durch die Nachricht ersetzt) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Niedrigere Gebühren (in BTC/Kb) als diese werden bei der Weiterleitung als gebührenfrei angesehen (Standard: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Niedrigere Gebühren (in HOT/Kb) als diese werden bei der Weiterleitung als gebührenfrei angesehen (Standard: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Niedrigere Gebühren (in HOT/Kb) als diese werden bei der Transaktionserstellung als gebührenfrei angesehen (Standard: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Wenn -paytxfee nicht festgelegt wurde Gebühren einschließen, so dass mit der Bestätigung von Transaktionen im Schnitt innerhalb von n Blöcken begonnen wird (Standard: %u) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Niedrigere Gebühren (in BTC/Kb) als diese werden bei der Transaktionserstellung als gebührenfrei angesehen (Standard: %s) + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Ungültiger Betrag für -maxtxfee=<amount>: '%s' (muss mindestens die minimale Weiterleitungsgebühr in Höhe von %s sein, um zu verhindern dass Transaktionen nicht bearbeitet werden) Maximum size of data in data carrier transactions we relay and mine (default: %u) Maximale Datengröße in "Data Carrier"-Transaktionen die weitergeleitet und erarbeitet werden (Standard: %u) + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Maximale Gesamtgebühren je Wallet-Transaktion, ein zu niedriger Wert kann große Transaktionen abbrechen (Standard: %s) + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Adressen von Gegenstellen via DNS-Namensauflösung finden, falls zu wenige Adressen verfügbar sind (Standard: 1, außer bei -connect) + + Require high priority for relaying free or low-fee transactions (default:%u) + Zum Weiterleiten von freien Transaktionen oder Transaktionen mit niedrigen Gebühren eine hohe Priorität voraussetzen (Standard: %u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Maximale Größe in Byte von "high-priority/low-fee"-Transaktionen festlegen (Standard: %d) Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) - Maximale Anzahl an Threads zur Bitcoinerzeugung, wenn aktiviert, festlegen (-1 = alle Kerne, Standard: %d) + Maximale Anzahl an Threads zur Hypercoinerzeugung, wenn aktiviert, festlegen (-1 = alle Kerne, Standard: %d) This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im OpenSSL-Toolkit <https://www.openssl.org/> entwickelt wird, sowie von Eric Young geschriebene kryptographische Software und von Thomas Bernard geschriebene UPnP-Software. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Bitcoin Core ansonsten nicht ordnungsgemäß funktionieren wird. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Um hypercoind oder die Option -server mit hypercoin-qt verwenden zu können, müssen Sie rpcpassword in der Konfigurationsdatei angeben: +%s +Es wird empfohlen das folgende Zufallspasswort zu verwenden. +rpcuser=hypercoinrpc +rpcpassword=%s +(Sie müssen sich dieses Passwort nicht merken!) +Der Benutzername und das Passwort dürfen NICHT identisch sein. +Falls die Konfigurationsdatei nicht existiert, erzeugen Sie diese bitte mit Leserechten nur für den Dateibesitzer. +Es wird ebenfalls empfohlen alertnotify anzugeben, um im Problemfall benachrichtigt zu werden. +Beispiel: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Warnung: -maxtxfee ist auf einen sehr hohen Wert festgelegt! Gebühren dieser Höhe könnten für eine einzelne Transaktion bezahlt werden. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Warnung: Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da Hypercoin Core ansonsten nicht ordnungsgemäß funktionieren wird. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Erlaubte Gegenstellen werden nicht für DoS-Attacken gesperrt und ihre Transkationen werden immer weitergeleitet, auch wenn sie sich bereits im Speicherpool befinden, was z.B. für Gateways sinnvoll ist. + + Accept public REST requests (default: %u) + Öffentliche REST-Anfragen annehmen (Standard: %u) + Cannot resolve -whitebind address: '%s' Kann Adresse in -whitebind nicht auflösen: '%s' @@ -3134,24 +3154,36 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Der Wert %s von -rpcbind wurde nicht als Netzwerkadresse erkannt - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Fehler beim Laden von wallet.dat: Wallet benötigt neuere Version von Bitcoin Core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Fehler beim Laden von wallet.dat: Wallet benötigt neuere Version von Hypercoin Core + + + Error reading from database, shutting down. + Fehler beim lesen der Datenbank, Ausführung wird beendet. + + + Error: A fatal internal error occurred, see debug.log for details + Fehler: Ein schwerer interner Fehler ist aufgetreten, siehe debug.log für Details. Error: Unsupported argument -tor found, use -onion. Fehler: Nicht unterstütztes Argument -tor gefunden, bitte -onion verwenden. - Fee (in BTC/kB) to add to transactions you send (default: %s) - Gebühr (in BTC/kB), die von Ihnen gesendeten Transaktionen hinzugefügt wird (Standard: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Gebühr (in HOT/kB), die von Ihnen gesendeten Transaktionen hinzugefügt wird (Standard: %s) Information Hinweis - Initialization sanity check failed. Bitcoin Core is shutting down. - Initialisierungsplausibilitätsprüfung fehlgeschlagen. Bitcoin Core wird beendet. + Initialization sanity check failed. Hypercoin Core is shutting down. + Initialisierungsplausibilitätsprüfung fehlgeschlagen. Hypercoin Core wird beendet. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Ungültiger Betrag für -maxtxfee=<amount>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -3169,10 +3201,6 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Invalid netmask specified in -whitelist: '%s' Ungültige Netzmaske angegeben in -whitelist: '%s' - - Keep at most <n> unconnectable blocks in memory (default: %u) - Maximal <n> nicht-verbindbare Blöcke im Speicher halten (Standard: %u) - Keep at most <n> unconnectable transactions in memory (default: %u) Maximal <n> nicht-verbindbare Transaktionen im Speicher halten (Standard: %u) @@ -3186,17 +3214,17 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Knoten-Weiterleitungsoptionen: - Print block on startup, if found in block index - Block beim Starten ausgeben, wenn dieser im Blockindex gefunden wurde. - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - RPC-SSL-Optionen (siehe Bitcoin-Wiki für SSL-Einrichtung): + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + RPC-SSL-Optionen (siehe Hypercoin-Wiki für SSL-Einrichtung): RPC server options: RPC-Serveroptionen: + + RPC support for HTTP persistent connections (default: %d) + Unterstützung für persistente HTTP-Verbindungen bei RPC (Standard: %d) + Randomly drop 1 of every <n> network messages Zufällig eine von <n> Netzwerknachrichten verwerfen @@ -3205,6 +3233,10 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Randomly fuzz 1 of every <n> network messages Zufällig eine von <n> Netzwerknachrichten verwürfeln + + Receive and display P2P network alerts (default: %u) + P2P-Netzwerk-Alarme empfangen und anzeigen (Standard: %u) + Send trace/debug info to console instead of debug.log file Rückverfolgungs- und Debuginformationen an die Konsole senden, anstatt sie in debug.log zu schreiben @@ -3237,6 +3269,10 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Transaction amounts must be positive Transaktionsbeträge müssen positiv sein + + Transaction too large for fee policy + Transaktion ist für die Gebührenrichtlinie zu groß + Transaction too large Transaktion zu groß @@ -3254,8 +3290,8 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Benutzername für JSON-RPC-Verbindungen - Wallet needed to be rewritten: restart Bitcoin Core to complete - Wallet musste neu geschrieben werden: starten Sie Bitcoin Core zur Fertigstellung neu + Wallet needed to be rewritten: restart Hypercoin Core to complete + Wallet musste neu geschrieben werden: starten Sie Hypercoin Core zur Fertigstellung neu Warning @@ -3333,10 +3369,6 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com How thorough the block verification of -checkblocks is (0-4, default: %u) Legt fest, wie gründlich die Blockverifikation von -checkblocks ist (0-4, Standard: %u) - - If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u) - Wenn keine Transaktionsgebühr festgelegt wurde eine Gebühr einbeziehen, sodass Transaktionen im Schnitt innerhalb von <n> Blöcken bestätigt werden (Standard: %u) - Log transaction priority and fee per kB when mining blocks (default: %u) Transaktionspriorität und Gebühr pro kB beim Erzeugen von Blöcken protokollieren (Standard: %u) @@ -3383,7 +3415,7 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Generate coins (default: %u) - Bitcoins erzeugen (Standard: %u) + Hypercoins erzeugen (Standard: %u) How many blocks to check at startup (default: %u, 0 = all) @@ -3425,10 +3457,6 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Prepend debug output with timestamp (default: %u) Debugausgaben einen Zeitstempel voranstellen (Standard: %u) - - Print block tree on startup (default: %u) - Blockbaum beim Starten ausgeben (Standard: %u) - Relay and mine data carrier transactions (default: %u) "Data Carrier"-Transaktionen weiterleiten und erarbeiten (Standard: %u) @@ -3505,10 +3533,6 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Ungültiger Betrag für -paytxfee=<amount>: '%s' - - Invalid amount - Ungültiger Betrag - Insufficient funds Unzureichender Kontostand @@ -3541,13 +3565,9 @@ zum Beispiel: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com Done loading Laden abgeschlossen - - To use the %s option - Zur Nutzung der %s-Option - Error Fehler - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_el_GR.ts b/src/qt/locale/bitcoin_el_GR.ts index cf29c222ed5b2..87d95d420e254 100644 --- a/src/qt/locale/bitcoin_el_GR.ts +++ b/src/qt/locale/bitcoin_el_GR.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Διπλό-κλικ για επεξεργασία της διεύθυνσης ή της ετικέτας + Right-click to edit address or label + Δεξί-κλικ για επεξεργασία της διεύθυνσης ή της ετικέτας Create a new address @@ -66,12 +66,12 @@ Διευθύνσεις λήψης - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Αυτές είναι οι Bitcoin διευθύνσεις σας για να λαμβάνετε πληρωμές. Δίνοντας μία ξεχωριστή διεύθυνση σε κάθε αποστολέα, θα μπορείτε να ελέγχετε ποιος σας πληρώνει. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Αυτές είναι οι Hypercoin διευθύνσεις σας για να λαμβάνετε πληρωμές. Δίνοντας μία ξεχωριστή διεύθυνση σε κάθε αποστολέα, θα μπορείτε να ελέγχετε ποιος σας πληρώνει. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Αυτές είναι οι Bitcoin διευθύνσεις σας για να λαμβάνετε πληρωμές. Δίνοντας μία ξεχωριστή διεύθυνση σε κάθε αποστολέα, θα μπορείτε να ελέγχετε ποιος σας πληρώνει. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Αυτές είναι οι Hypercoin διευθύνσεις σας για να λαμβάνετε πληρωμές. Δίνοντας μία ξεχωριστή διεύθυνση σε κάθε αποστολέα, θα μπορείτε να ελέγχετε ποιος σας πληρώνει. Copy &Label @@ -164,8 +164,8 @@ Επιβεβαίωσε την κρυπτογραφηση του πορτοφολιού - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Προσοχη: Εαν κρυπτογραφησεις το πορτοφολι σου και χάσεις τον κωδικο σου θα χάσεις <b> ΟΛΑ ΣΟΥ ΤΑ BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Προσοχη: Εαν κρυπτογραφησεις το πορτοφολι σου και χάσεις τον κωδικο σου θα χάσεις <b> ΟΛΑ ΣΟΥ ΤΑ HYPERCOINS</b>! Είσαι σίγουρος ότι θέλεις να κρυπτογραφησεις το πορτοφολι; @@ -189,8 +189,8 @@ Εισάγετε τον νέο κωδικό πρόσβασης στον πορτοφόλι <br/> Παρακαλώ χρησιμοποιείστε ένα κωδικό με <b> 10 ή περισσότερους τυχαίους χαρακτήρες</b> ή <b> οχτώ ή παραπάνω λέξεις</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Το Bitcoin θα κλεισει τώρα για να τελειώσει την διαδικασία κρυπτογραφησης. Θυμησου ότι κρυπτογραφώντας το πορτοφολι σου δεν μπορείς να προστατέψεις πλήρως τα bitcoins σου από κλοπή στην περίπτωση όπου μολυνθεί ο υπολογιστής σου με κακόβουλο λογισμικό. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Το Hypercoin θα κλεισει τώρα για να τελειώσει την διαδικασία κρυπτογραφησης. Θυμησου ότι κρυπτογραφώντας το πορτοφολι σου δεν μπορείς να προστατέψεις πλήρως τα hypercoins σου από κλοπή στην περίπτωση όπου μολυνθεί ο υπολογιστής σου με κακόβουλο λογισμικό. Wallet encryption failed @@ -296,8 +296,8 @@ 'Ανοιγμα &URI - Bitcoin Core client - Εφαρμογή Bitcoin Core + Hypercoin Core client + Εφαρμογή Hypercoin Core Importing blocks from disk... @@ -308,12 +308,12 @@ Φόρτωση ευρετηρίου μπλοκ στον σκληρο δισκο... - Send coins to a Bitcoin address - Στείλε νομίσματα σε μια διεύθυνση bitcoin + Send coins to a Hypercoin address + Στείλε νομίσματα σε μια διεύθυνση hypercoin - Modify configuration options for Bitcoin - Επεργασία ρυθμισεων επιλογών για το Bitcoin + Modify configuration options for Hypercoin + Επεργασία ρυθμισεων επιλογών για το Hypercoin Backup wallet to another location @@ -336,8 +336,8 @@ &Επιβεβαίωση μηνύματος - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -352,8 +352,8 @@ &Παραλαβή - Show information about Bitcoin Core - Σχετικά με το Bitcoin Core + Show information about Hypercoin Core + Σχετικά με το Hypercoin Core &Show / Hide @@ -368,12 +368,12 @@ Κρυπτογραφήστε τα ιδιωτικά κλειδιά που ανήκουν στο πορτοφόλι σας - Sign messages with your Bitcoin addresses to prove you own them + Sign messages with your Hypercoin addresses to prove you own them Υπογράψτε ένα μήνυμα για να βεβαιώσετε πως είστε ο κάτοχος αυτής της διεύθυνσης - Verify messages to ensure they were signed with specified Bitcoin addresses - Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως ανήκει μια συγκεκριμένη διεύθυνση Bitcoin + Verify messages to ensure they were signed with specified Hypercoin addresses + Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως ανήκει μια συγκεκριμένη διεύθυνση Hypercoin &File @@ -392,16 +392,16 @@ Εργαλειοθήκη καρτελών - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Αίτηση πληρωμών (δημιουργεί QR codes και διευθύνσεις bitcoin: ) + Request payments (generates QR codes and hypercoin: URIs) + Αίτηση πληρωμών (δημιουργεί QR codes και διευθύνσεις hypercoin: ) - &About Bitcoin Core - &Σχετικά με το Bitcoin Core + &About Hypercoin Core + &Σχετικά με το Hypercoin Core Show the list of used sending addresses and labels @@ -412,20 +412,20 @@ Προβολή της λίστας των χρησιμοποιημένων διευθύνσεων και ετικετών λήψεως - Open a bitcoin: URI or payment request - Άνοιγμα bitcoin: URI αίτησης πληρωμής + Open a hypercoin: URI or payment request + Άνοιγμα hypercoin: URI αίτησης πληρωμής &Command-line options &Επιλογές γραμμής εντολών - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Εμφανιση του Bitcoin-Qt μήνυματος βοήθειας για να πάρετε μια λίστα με τις πιθανές επιλογές Bitcoin γραμμής εντολών. + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Εμφανιση του Hypercoin-Qt μήνυματος βοήθειας για να πάρετε μια λίστα με τις πιθανές επιλογές Hypercoin γραμμής εντολών. - %n active connection(s) to Bitcoin network - %n ενεργή σύνδεση στο δίκτυο Bitcoin%n ενεργές συνδέσεις στο δίκτυο Βitcoin + %n active connection(s) to Hypercoin network + %n ενεργή σύνδεση στο δίκτυο Hypercoin%n ενεργές συνδέσεις στο δίκτυο Βitcoin No block source available... @@ -778,8 +778,8 @@ Address: %4 Η διεύθυνση "%1" βρίσκεται ήδη στο βιβλίο διευθύνσεων. - The entered address "%1" is not a valid Bitcoin address. - Η διεύθυνση "%1" δεν είναι έγκυρη Bitcoin διεύθυνση. + The entered address "%1" is not a valid Hypercoin address. + Η διεύθυνση "%1" δεν είναι έγκυρη Hypercoin διεύθυνση. Could not unlock wallet. @@ -816,8 +816,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -828,8 +828,8 @@ Address: %4 (%1-bit) - About Bitcoin Core - Σχετικά με το Bitcoin Core + About Hypercoin Core + Σχετικά με το Hypercoin Core Command-line options @@ -875,16 +875,16 @@ Address: %4 Καλώς ήρθατε - Welcome to Bitcoin Core. - Καλώς ήρθατε στο Bitcoin Core. + Welcome to Hypercoin Core. + Καλώς ήρθατε στο Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Καθώς αυτή είναι η πρώτη φορά που εκκινείται το πρόγραμμα, μπορείτε να διαλέξετε πού θα αποθηκεύει το Bitcoin Core τα δεδομένα του. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Καθώς αυτή είναι η πρώτη φορά που εκκινείται το πρόγραμμα, μπορείτε να διαλέξετε πού θα αποθηκεύει το Hypercoin Core τα δεδομένα του. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - O πυρήνας Bitcoin θα κατεβάσει και να αποθηκεύσει ένα αντίγραφο της αλυσίδας μπλοκ Bitcoin. Τουλάχιστον %1GB δεδομένων θα αποθηκευτούν σε αυτόν τον κατάλογο, και θα αυξηθεί με την πάροδο του χρόνου. Το πορτοφόλι θα αποθηκευτεί σε αυτόν τον κατάλογο. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + O πυρήνας Hypercoin θα κατεβάσει και να αποθηκεύσει ένα αντίγραφο της αλυσίδας μπλοκ Hypercoin. Τουλάχιστον %1GB δεδομένων θα αποθηκευτούν σε αυτόν τον κατάλογο, και θα αυξηθεί με την πάροδο του χρόνου. Το πορτοφόλι θα αποθηκευτεί σε αυτόν τον κατάλογο. Use the default data directory @@ -895,8 +895,8 @@ Address: %4 Προσαρμογή του φακέλου δεδομένων: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. @@ -941,11 +941,11 @@ Address: %4 &Κύριο - Automatically start Bitcoin after logging in to the system. - Αυτόματη εκκίνηση του Bitcoin μετά την εισαγωγή στο σύστημα + Automatically start Hypercoin after logging in to the system. + Αυτόματη εκκίνηση του Hypercoin μετά την εισαγωγή στο σύστημα - &Start Bitcoin on system login + &Start Hypercoin on system login &Έναρξη του Βιtcoin κατά την εκκίνηση του συστήματος @@ -972,10 +972,18 @@ Address: %4 IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) Διεύθυνση IP του διαμεσολαβητή (π.χ. 127.0.0.1 / IPv6: ::1) + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URLs από τρίτους (π.χ. ένας εξερευνητής μπλοκ) τα οποία εμφανίζονται στην καρτέλα συναλλαγών ως στοιχεία μενού. Το %s στα URL αντικαθιστάται από την τιμή της κατατεμαχισμένης συναλλαγής. + Third party transaction URLs Διευθύνσεις τρίτων συναλλαγών. + + Active command-line options that override above options: + Ενεργές επιλογές γραμμής-εντολών που παρακάμπτουν τις παραπάνω επιλογές: + Reset all client options to default. Επαναφορα όλων των επιλογων του πελάτη σε default. @@ -988,6 +996,10 @@ Address: %4 &Network &Δίκτυο + + (0 = auto, <0 = leave that many cores free) + (0 = αυτόματο, <0 = ελεύθεροι πυρήνες) + W&allet Π&ορτοφόλι @@ -1001,16 +1013,24 @@ Address: %4 Επιλογή κατα πόσο να αναδείχνονται οι δυνατότητες ελέγχου κερμάτων. - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Αυτόματο άνοιγμα των θυρών Bitcoin στον δρομολογητή. Λειτουργεί μόνο αν ο δρομολογητής σας υποστηρίζει τη λειτουργία UPnP. + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Εάν απενεργοποιήσετε το ξόδεμα μη επικυρωμένων ρέστων, τα ρέστα από μια συναλλαγή δεν μπορούν να χρησιμοποιηθούν έως ότου αυτή η συναλλαγή έχει έστω μια επικύρωση. Αυτό επίσης επηρεάζει το πως υπολογίζεται το υπόλοιπό σας. + + + &Spend unconfirmed change + &Ξόδεμα μη επικυρωμένων ρέστων + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Αυτόματο άνοιγμα των θυρών Hypercoin στον δρομολογητή. Λειτουργεί μόνο αν ο δρομολογητής σας υποστηρίζει τη λειτουργία UPnP. Map port using &UPnP Απόδοση θυρών με χρήστη &UPnP - Connect to the Bitcoin network through a SOCKS5 proxy. - Σύνδεση στο Bitcoin δίκτυο μέσω διαμεσολαβητή SOCKS5 (π.χ. για σύνδεση μέσω Tor) + Connect to the Hypercoin network through a SOCKS5 proxy. + Σύνδεση στο Hypercoin δίκτυο μέσω διαμεσολαβητή SOCKS5 (π.χ. για σύνδεση μέσω Tor) &Connect through SOCKS5 proxy (default proxy): @@ -1057,8 +1077,8 @@ Address: %4 Γλώσσα περιβάλλοντος εργασίας: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Εδώ μπορεί να ρυθμιστεί η γλώσσα διεπαφής χρήστη. Αυτή η ρύθμιση θα ισχύσει μετά την επανεκκίνηση του Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Εδώ μπορεί να ρυθμιστεί η γλώσσα διεπαφής χρήστη. Αυτή η ρύθμιση θα ισχύσει μετά την επανεκκίνηση του Hypercoin. &Unit to show amounts in: @@ -1116,8 +1136,8 @@ Address: %4 Φόρμα - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Οι πληροφορίες που εμφανίζονται μπορεί να είναι ξεπερασμένες. Το πορτοφόλι σας συγχρονίζεται αυτόματα με το δίκτυο Bitcoin μετά από μια σύνδεση, αλλά αυτή η διαδικασία δεν έχει ακόμη ολοκληρωθεί. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Οι πληροφορίες που εμφανίζονται μπορεί να είναι ξεπερασμένες. Το πορτοφόλι σας συγχρονίζεται αυτόματα με το δίκτυο Hypercoin μετά από μια σύνδεση, αλλά αυτή η διαδικασία δεν έχει ακόμη ολοκληρωθεί. Watch-only: @@ -1159,6 +1179,10 @@ Address: %4 Your current total balance Το τρέχον συνολικό υπόλοιπο + + Your current balance in watch-only addresses + Το τρέχον υπόλοιπο σας σε διευθύνσεις παρακολούθησης μόνο + Spendable: Ξοδεμένα: @@ -1167,6 +1191,18 @@ Address: %4 Recent transactions Πρόσφατες συναλλαγές + + Unconfirmed transactions to watch-only addresses + Μη επικυρωμένες συναλλαγές σε διευθύνσεις παρακολούθησης μόνο + + + Mined balance in watch-only addresses that has not yet matured + Εξορυγμένο υπόλοιπο σε διευθύνσεις παρακολούθησης μόνο που δεν έχει ωριμάσει ακόμα + + + Current total balance in watch-only addresses + Το τρέχον συνολικό υπόλοιπο σε διευθύνσεις παρακολούθησης μόνο + out of sync εκτός συγχρονισμού @@ -1194,13 +1230,17 @@ Address: %4 Payment request is not initialized. Η αίτηση πληρωμής δεν έχει αρχίζει ακόμα. + + Requested payment amount of %1 is too small (considered dust). + Το ζητούμενο ποσό πληρωμής του %1 είναι πολύ μικρό (θεωρείται σκόνη) + Payment request error Σφάλμα αιτήματος πληρωμής - Cannot start bitcoin: click-to-pay handler - Δεν είναι δυνατή η εκκίνηση του Bitcoin: click-to-pay handler + Cannot start hypercoin: click-to-pay handler + Δεν είναι δυνατή η εκκίνηση του Hypercoin: click-to-pay handler Payment request fetch URL is invalid: %1 @@ -1214,6 +1254,18 @@ Address: %4 Refund from %1 Επιστροφή ποσού από %1 + + Error communicating with %1: %2 + Σφάλμα επικοινωνίας με %1: %2 + + + Payment request cannot be parsed! + Η αίτηση πληρωμής δεν μπορεί να αναλυθεί! + + + Bad response from server %1 + Κακή απάντηση από διακομιστή %1 + Payment acknowledged Πληρωμή αναγνωρίστηκε @@ -1241,8 +1293,8 @@ Address: %4 Ποσό - Enter a Bitcoin address (e.g. %1) - Εισάγετε μια διεύθυνση Bitcoin (π.χ. %1) + Enter a Hypercoin address (e.g. %1) + Εισάγετε μια διεύθυνση Hypercoin (π.χ. %1) %1 d @@ -1330,6 +1382,10 @@ Address: %4 Using OpenSSL version Χρησιμοποιηση της OpenSSL εκδοσης + + Using BerkeleyDB version + Χρήση BerkeleyDB έκδοσης + Startup time Χρόνος εκκίνησης @@ -1358,6 +1414,18 @@ Address: %4 Received Παραλήφθησαν + + Sent + Αποστολή + + + &Peers + &Χρήστες + + + Select a peer to view detailed information. + Επιλέξτε ένα χρήστη για να δείτε αναλυτικές πληροφορίες. + Version Έκδοση @@ -1366,6 +1434,38 @@ Address: %4 Services Υπηρεσίες + + Starting Height + Αρχικό ύψος + + + Sync Height + Ύψος συγχονισμού + + + Ban Score + Σκορ αποκλησμού + + + Connection Time + Χρόνος σύνδεσης + + + Last Send + Τελευταία αποστολή + + + Last Receive + Τελευταία λήψη + + + Bytes Sent + Σταλθέντα bytes + + + Bytes Received + Ληφθέντα bytes + Ping Time Χρόνος καθυστέρησης @@ -1411,7 +1511,7 @@ Address: %4 Αρχείο καταγραφής εντοπισμού σφαλμάτων - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. Ανοίξτε το αρχείο καταγραφής εντοπισμού σφαλμάτων από τον τρέχοντα κατάλογο δεδομένων. Αυτό μπορεί να πάρει μερικά δευτερόλεπτα για τα μεγάλα αρχεία καταγραφής. @@ -1419,8 +1519,8 @@ Address: %4 Καθαρισμός κονσόλας - Welcome to the Bitcoin RPC console. - Καλώς ήρθατε στην Bitcoin RPC κονσόλα. + Welcome to the Hypercoin RPC console. + Καλώς ήρθατε στην Hypercoin RPC κονσόλα. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1466,7 +1566,11 @@ Address: %4 Unknown Άγνωστο(α) - + + Fetching... + Ανάκτηση... + + ReceiveCoinsDialog @@ -1481,6 +1585,10 @@ Address: %4 &Message: &Μήνυμα: + + R&euse an existing receiving address (not recommended) + Ε&παναχρησιμοποίηση υπάρχουσας διεύθυνσης λήψης (δεν συνιστάται) + Clear all fields of the form. Καθαρισμός όλων των πεδίων της φόρμας. @@ -1497,6 +1605,10 @@ Address: %4 Show Εμφάνιση + + Remove the selected entries from the list + Αφαίρεση επιλεγμένων καταχωρίσεων από τη λίστα + Remove Αφαίρεση @@ -1524,10 +1636,18 @@ Address: %4 Copy &URI Αντιγραφη της επιλεγμενης διεύθυνσης στο πρόχειρο του συστηματος + + Copy &Address + Αντιγραφή &Διεύθυνσης + &Save Image... &Αποθήκευση εικόνας... + + Request payment to %1 + Αίτηση πληρωμής για %1 + Payment information Πληροφορίες πληρωμής @@ -1602,6 +1722,10 @@ Address: %4 Coin Control Features Χαρακτηρηστικά επιλογής κερμάτων + + Inputs... + Εισροές... + automatically selected επιλεγμένο αυτόματα @@ -1638,6 +1762,14 @@ Address: %4 Change: Ρέστα: + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Όταν ενεργό, αλλά η διεύθυνση ρέστων είναι κενή ή άκυρη, τα ρέστα θα σταλούν σε μία πρόσφατα δημιουργημένη διεύθυνση. + + + Custom change address + Προσαρμοσμένη διεύθυνση ρέστων + Transaction Fee: Τέλος συναλλαγής: @@ -1650,9 +1782,37 @@ Address: %4 Minimize Ελαχιστοποίηση + + per kilobyte + ανά kilobyte + + + total at least + συνολικά τουλάχιστον + + + Recommended: + Προτεινόμενο: + + + Custom: + Προσαρμογή: + + + Confirmation time: + Χρόνος επικύρωσης: + + + normal + κανονικό + fast - Γρήγορο + γρήγορο + + + (confirmation may take longer) + (η επικύρωση ίσως χρειαστεί περισσότερο χρόνο) Send to multiple recipients at once @@ -1722,10 +1882,6 @@ Address: %4 Copy change Αντιγραφή των ρέστων - - Total Amount %1 (= %2) - Ολικό Ποσό %1 (= %2) - or ή @@ -1755,8 +1911,8 @@ Address: %4 Η δημιουργία της συναλλαγής απέτυχε! - Warning: Invalid Bitcoin address - Προειδοποίηση: Μη έγκυρη διεύθυνση Bitcoin + Warning: Invalid Hypercoin address + Προειδοποίηση: Μη έγκυρη διεύθυνση Hypercoin (no label) @@ -1797,6 +1953,14 @@ Address: %4 Choose previously used address Επιλογή διεύθυνσης που έχει ήδη χρησιμοποιηθεί + + This is a normal payment. + Αυτή είναι μια απλή πληρωμή. + + + The Hypercoin address to send the payment to + Η διεύθυνση Hypercoin που θα σταλεί η πληρωμή + Alt+A Alt+A @@ -1817,6 +1981,14 @@ Address: %4 Message: Μήνυμα: + + Enter a label for this address to add it to the list of used addresses + Εισάγεται μία ετικέτα για αυτή την διεύθυνση για να προστεθεί στη λίστα με τις χρησιμοποιημένες διευθύνσεις + + + This is an unverified payment request. + Αυτή είναι μία ανεπιβεβαίωτη αίτηση πληρωμής. + Pay To: Πληρωμή σε: @@ -1829,8 +2001,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - Το Bitcoin Core τερματίζεται... + Hypercoin Core is shutting down... + Το Hypercoin Core τερματίζεται... Do not shut down the computer until this window disappears. @@ -1852,8 +2024,8 @@ Address: %4 Μπορείτε να υπογράφετε μηνύματα με τις διευθύνσεις σας, ώστε ν' αποδεικνύετε πως αυτές σας ανήκουν. Αποφεύγετε να υπογράφετε κάτι αόριστο καθώς ενδέχεται να εξαπατηθείτε. Υπογράφετε μόνο πλήρης δηλώσεις με τις οποίες συμφωνείτε. - The Bitcoin address to sign the message with - Διεύθυνση Bitcoin που θα σταλεί το μήνυμα + The Hypercoin address to sign the message with + Διεύθυνση Hypercoin που θα σταλεί το μήνυμα Choose previously used address @@ -1884,8 +2056,8 @@ Address: %4 Αντέγραφη της επιλεγμενης διεύθυνσης στο πρόχειρο του συστηματος - Sign the message to prove you own this Bitcoin address - Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως σας ανήκει μια συγκεκριμένη διεύθυνση Bitcoin + Sign the message to prove you own this Hypercoin address + Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως σας ανήκει μια συγκεκριμένη διεύθυνση Hypercoin Sign &Message @@ -1908,12 +2080,12 @@ Address: %4 Πληκτρολογήστε την υπογραφή διεύθυνσης, μήνυμα (βεβαιωθείτε ότι έχετε αντιγράψει τις αλλαγές γραμμής, κενά, tabs, κ.λπ. ακριβώς) και την υπογραφή παρακάτω, για να ελέγξει το μήνυμα. Να είστε προσεκτικοί για να μην διαβάσετε περισσότερα στην υπογραφή ό, τι είναι στην υπογραφή ίδιο το μήνυμα , για να μην εξαπατηθούν από έναν άνθρωπο -in - the-middle επίθεση. - The Bitcoin address the message was signed with - Διεύθυνση Bitcoin η οποία το μήνυμα έχει υπογραφεί + The Hypercoin address the message was signed with + Διεύθυνση Hypercoin η οποία το μήνυμα έχει υπογραφεί - Verify the message to ensure it was signed with the specified Bitcoin address - Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως υπογραφθηκε απο μια συγκεκριμένη διεύθυνση Bitcoin + Verify the message to ensure it was signed with the specified Hypercoin address + Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως υπογραφθηκε απο μια συγκεκριμένη διεύθυνση Hypercoin Verify &Message @@ -1979,8 +2151,8 @@ Address: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2357,6 +2529,10 @@ Address: %4 Exporting Successful Επιτυχής εξαγωγή + + The transaction history was successfully saved to %1. + Το ιστορικό συναλλαγών αποθηκεύτηκε επιτυχώς στο %1. + Comma separated file (*.csv) Αρχείο οριοθετημένο με κόμματα (*.csv) @@ -2396,7 +2572,11 @@ Address: %4 UnitDisplayStatusBarControl - + + Unit to show amounts in. Click to select another unit. + Μονάδα μέτρησης προβολής ποσών. Κάντε κλικ για επιλογή άλλης μονάδας. + + WalletFrame @@ -2433,6 +2613,10 @@ Address: %4 Backup Failed Αποτυχία κατά τη δημιουργία αντιγράφου + + There was an error trying to save the wallet data to %1. + Παρουσιάστηκε σφάλμα κατά την αποθήκευση των δεδομένων πορτοφολιού στο %1. + The wallet data was successfully saved to %1. Τα δεδομένα πορτοφολιού αποθηκεύτηκαν με επιτυχία στο %1. @@ -2476,42 +2660,13 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Να δέχεσαι συνδέσεις από έξω(προεπιλογή:1) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Αποθηκευση σε συγκεκριμένη διεύθυνση. Χρησιμοποιήστε τα πλήκτρα [Host] : συμβολισμός θύρα για IPv6 - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Σφάλμα: Η συναλλαγή απορρίφθηκε. -Αυτό ίσως οφείλεται στο ότι τα νομίσματά σας έχουν ήδη ξοδευτεί, π.χ. με την αντιγραφή του wallet.dat σε άλλο σύστημα και την χρήση τους εκεί, χωρίς η συναλλαγή να έχει καταγραφεί στο παρόν σύστημα. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Σφάλμα: Αυτή η συναλλαγή απαιτεί αμοιβή συναλλαγής τουλάχιστον %s λόγω του μεγέθους, πολυπλοκότητας ή της χρήσης πρόσφατης παραλαβής κεφαλαίου + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Εισαγωγή δοκιμαστικής λειτουργίας παλινδρόμησης, που χρησιμοποιεί μια ειδική αλυσίδα στην οποία τα μπλοκ επιλύονται στιγμιαία. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) @@ -2581,18 +2736,10 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error opening block database Σφάλμα φορτωσης της βασης δεδομενων των μπλοκ - - Error: A fatal internal error occured, see debug.log for details - Σφάλμα: Παρουσιάστηκε ανεπανόρθωτο εσωτερικό σφάλμα, δείτε debug.log για λεπτομέρειες - Error: Disk space is low! Προειδοποίηση: Χαμηλός χώρος στο δίσκο - - Error: Wallet locked, unable to create transaction! - Σφάλμα: το πορτοφόλι είναι κλειδωμένο, δεν μπορεί να δημιουργηθεί συναλλαγή - Failed to listen on any port. Use -listen=0 if you want this. ταλαιπωρηθειτε για να ακούσετε σε οποιαδήποτε θύρα. Χρήση - ακούστε = 0 , αν θέλετε αυτό. @@ -2609,6 +2756,10 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Not enough file descriptors available. Δεν ειναι αρκετες περιγραφες αρχείων διαθέσιμες. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Μόνο σύνδεση σε κόμβους του δικτύου <net> (ipv4, ipv6 ή onion) + Rebuild block chain index from current blk000??.dat files Εισαγωγή μπλοκ από εξωτερικό αρχείο blk000?.dat @@ -2617,6 +2768,10 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Specify wallet file (within data directory) Επιλέξτε αρχείο πορτοφολιού (μέσα απο κατάλογο δεδομένων) + + This is intended for regression testing tools and app development. + Αυτό προορίζεται για εργαλεία δοκιμών παλινδρόμησης και την ανάπτυξη εφαρμογών. + Verifying blocks... Επαλήθευση των μπλοκ... @@ -2625,6 +2780,10 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Verifying wallet... Επαλήθευση πορτοφολιου... + + Wallet %s resides outside data directory %s + Το πορτοφόλι %s βρίσκεται έξω από το φάκελο δεδομένων %s + Wallet options: Επιλογές πορτοφολιού: @@ -2634,8 +2793,12 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Εισαγωγή μπλοκ από εξωτερικό αρχείο blk000?.dat - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Αδυναμία κλειδώματος του φακέλου δεδομένων %s. Πιθανώς το Bitcoin να είναι ήδη ενεργό. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Αδυναμία κλειδώματος του φακέλου δεδομένων %s. Πιθανώς το Hypercoin να είναι ήδη ενεργό. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Προειδοποίηση: Παρακαλώ ελέγξτε ότι η ημερομηνία και ώρα του υπολογιστή σας είναι σωστά ρυθμισμένες! Εάν το ρολόι σας είναι λάθος το Hypercoin Core δεν θα λειτουργήσει σωστά. Connect through SOCKS5 proxy @@ -2646,8 +2809,12 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Δεν μπόρεσε να αναλυθεί η παράμετρος -rpcbind value %s ως διεύθυνση δικτύου - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Σφάλμα φόρτωσης wallet.dat: Το Πορτοφόλι απαιτεί μια νεότερη έκδοση του Bitcoin + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Σφάλμα φόρτωσης wallet.dat: Το Πορτοφόλι απαιτεί μια νεότερη έκδοση του Hypercoin + + + Error reading from database, shutting down. + Σφάλμα ανάγνωσης από τη βάση δεδομένων, γίνεται τερματισμός. Error: Unsupported argument -tor found, use -onion. @@ -2657,6 +2824,10 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Information Πληροφορία + + Initialization sanity check failed. Hypercoin Core is shutting down. + Η εκκίνηση ελέγχου ορθότητας απέτυχε. Γίνεται τερματισμός του Hypercoin Core. + Invalid amount for -minrelaytxfee=<amount>: '%s' Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' @@ -2666,13 +2837,25 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Ρυθμίσεις SSL: (ανατρέξτε στο Bitcoin Wiki για οδηγίες ρυθμίσεων SSL) + Node relay options: + Επιλογές αναμετάδοσης κόμβου: + + + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Ρυθμίσεις SSL: (ανατρέξτε στο Hypercoin Wiki για οδηγίες ρυθμίσεων SSL) + + + RPC server options: + Επιλογές διακομιστή RPC: Send trace/debug info to console instead of debug.log file Αποστολή πληροφοριών εντοπισμού σφαλμάτων στην κονσόλα αντί του αρχείου debug.log + + Show all debugging options (usage: --help -help-debug) + Προβολή όλων των επιλογών εντοπισμού σφαλμάτων (χρήση: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Συρρίκνωση του αρχείο debug.log κατα την εκκίνηση του πελάτη (προεπιλογή: 1 όταν δεν-debug) @@ -2797,10 +2980,6 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid -proxy address: '%s' Δεν είναι έγκυρη η διεύθυνση διαμεσολαβητή: '%s' - - Print block tree on startup (default: %u) - Εκτύπωση μπλοκ δέντρου κατά την εκκίνηση (προεπιλογή: %u) - Server certificate file (default: %s) Αρχείο πιστοποιητικού του διακομιστή (προεπιλογή: %s) @@ -2833,10 +3012,6 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' - - Invalid amount - Λάθος ποσότητα - Insufficient funds Ανεπαρκές κεφάλαιο @@ -2869,13 +3044,9 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Η φόρτωση ολοκληρώθηκε - - To use the %s option - Χρήση της %s επιλογής - Error Σφάλμα - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index 71c626be4b0d3..bd6995b5a1748 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -1,12 +1,12 @@ - + AddressBookPage - Double-click to edit address or label - Double-click to edit address or label + Right-click to edit address or label + @@ -85,12 +85,12 @@ - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. @@ -206,8 +206,8 @@ - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! @@ -238,8 +238,8 @@ - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. @@ -291,12 +291,12 @@ Sign &message... - + Synchronizing with network... Synchronizing with network... - + &Overview &Overview @@ -377,8 +377,8 @@ - - Bitcoin Core client + + Hypercoin Core client @@ -392,14 +392,14 @@ Reindexing blocks on disk... - - Send coins to a Bitcoin address - Send coins to a Bitcoin address + + Send coins to a Hypercoin address + Send coins to a Hypercoin address - Modify configuration options for Bitcoin - Modify configuration options for Bitcoin + Modify configuration options for Hypercoin + Modify configuration options for Hypercoin @@ -427,12 +427,12 @@ &Verify message... - - Bitcoin - Bitcoin + + Hypercoin + Hypercoin - + Wallet Wallet @@ -448,7 +448,7 @@ - Show information about Bitcoin Core + Show information about Hypercoin Core @@ -468,16 +468,16 @@ - Sign messages with your Bitcoin addresses to prove you own them - Sign messages with your Bitcoin addresses to prove you own them + Sign messages with your Hypercoin addresses to prove you own them + Sign messages with your Hypercoin addresses to prove you own them - Verify messages to ensure they were signed with specified Bitcoin addresses - Verify messages to ensure they were signed with specified Bitcoin addresses + Verify messages to ensure they were signed with specified Hypercoin addresses + Verify messages to ensure they were signed with specified Hypercoin addresses - + &File &File @@ -497,18 +497,18 @@ Tabs toolbar - - Bitcoin Core - Bitcoin Core + + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) + Request payments (generates QR codes and hypercoin: URIs) - &About Bitcoin Core + &About Hypercoin Core @@ -523,7 +523,7 @@ - Open a bitcoin: URI or payment request + Open a hypercoin: URI or payment request @@ -532,16 +532,16 @@ - - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options + + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options - %n active connection(s) to Bitcoin network + %n active connection(s) to Hypercoin network - %n active connection to Bitcoin network - %n active connections to Bitcoin network + %n active connection to Hypercoin network + %n active connections to Hypercoin network @@ -841,7 +841,7 @@ Address: %4 - + highest @@ -1012,8 +1012,8 @@ Address: %4 - The entered address "%1" is not a valid Bitcoin address. - The entered address "%1" is not a valid Bitcoin address. + The entered address "%1" is not a valid Hypercoin address. + The entered address "%1" is not a valid Hypercoin address. @@ -1058,8 +1058,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core @@ -1074,7 +1074,7 @@ Address: %4 - About Bitcoin Core + About Hypercoin Core @@ -1132,17 +1132,17 @@ Address: %4 - Welcome to Bitcoin Core. + Welcome to Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. @@ -1157,8 +1157,8 @@ Address: %4 - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core @@ -1229,13 +1229,13 @@ Address: %4 - Automatically start Bitcoin after logging in to the system. - Automatically start Bitcoin after logging in to the system. + Automatically start Hypercoin after logging in to the system. + Automatically start Hypercoin after logging in to the system. - &Start Bitcoin on system login - &Start Bitcoin on system login + &Start Hypercoin on system login + &Start Hypercoin on system login @@ -1330,8 +1330,8 @@ Address: %4 - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. @@ -1340,7 +1340,7 @@ Address: %4 - Connect to the Bitcoin network through a SOCKS5 proxy. + Connect to the Hypercoin network through a SOCKS5 proxy. @@ -1400,8 +1400,8 @@ Address: %4 - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - The user interface language can be set here. This setting will take effect after restarting Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. @@ -1475,8 +1475,8 @@ Address: %4 - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. @@ -1568,7 +1568,7 @@ Address: %4 PaymentServer - + URI handling @@ -1580,7 +1580,7 @@ Address: %4 - + Payment request rejected @@ -1607,18 +1607,18 @@ Address: %4 - - + + - + Payment request error - - Cannot start bitcoin: click-to-pay handler + + Cannot start hypercoin: click-to-pay handler @@ -1628,7 +1628,7 @@ Address: %4 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. @@ -1642,7 +1642,7 @@ Address: %4 - + Unverified payment requests to custom payment scripts are unsupported. @@ -1653,6 +1653,16 @@ Address: %4 + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Payment request DoS protection + + + + Error communicating with %1: %2 @@ -1698,17 +1708,17 @@ Address: %4 QObject - + Amount Amount - - Enter a Bitcoin address (e.g. %1) + + Enter a Hypercoin address (e.g. %1) - + %1 d @@ -2009,8 +2019,8 @@ Address: %4 - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. @@ -2019,8 +2029,8 @@ Address: %4 - Welcome to the Bitcoin RPC console. - Welcome to the Bitcoin RPC console. + Welcome to the Hypercoin RPC console. + Welcome to the Hypercoin RPC console. @@ -2115,7 +2125,7 @@ Address: %4 - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. @@ -2301,7 +2311,7 @@ Address: %4 SendCoinsDialog - + Send Coins Send Coins @@ -2413,7 +2423,7 @@ Address: %4 - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. @@ -2515,7 +2525,7 @@ Address: %4 - + Copy quantity @@ -2550,8 +2560,8 @@ Address: %4 - - Total Amount %1 (= %2) + + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> @@ -2611,7 +2621,7 @@ Address: %4 - Warning: Invalid Bitcoin address + Warning: Invalid Hypercoin address @@ -2625,12 +2635,12 @@ Address: %4 - + Copy dust - + Are you sure you want to send? @@ -2676,7 +2686,7 @@ Address: %4 - The Bitcoin address to send the payment to + The Hypercoin address to send the payment to @@ -2718,7 +2728,7 @@ Address: %4 - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. @@ -2743,7 +2753,7 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... + Hypercoin Core is shutting down... @@ -2771,7 +2781,7 @@ Address: %4 - The Bitcoin address to sign the message with + The Hypercoin address to sign the message with @@ -2813,8 +2823,8 @@ Address: %4 - Sign the message to prove you own this Bitcoin address - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address + Sign the message to prove you own this Hypercoin address @@ -2844,13 +2854,13 @@ Address: %4 - The Bitcoin address the message was signed with + The Hypercoin address the message was signed with - Verify the message to ensure it was signed with the specified Bitcoin address - Verify the message to ensure it was signed with the specified Bitcoin address + Verify the message to ensure it was signed with the specified Hypercoin address + Verify the message to ensure it was signed with the specified Hypercoin address @@ -2938,8 +2948,8 @@ Address: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core @@ -3569,7 +3579,7 @@ Address: %4 bitcoin-core - + Options: Options: @@ -3579,12 +3589,12 @@ Address: %4 Specify data directory - + Connect to a node to retrieve peer addresses, and disconnect Connect to a node to retrieve peer addresses, and disconnect - + Specify your own public address Specify your own public address @@ -3609,32 +3619,7 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - - - + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bind to given address and always listen on it. Use [host]:port notation for IPv6 @@ -3654,17 +3639,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - - - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) @@ -3674,7 +3649,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) @@ -3684,12 +3659,12 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - - Unable to bind to %s on this computer. Bitcoin Core is probably already running. + + Unable to bind to %s on this computer. Hypercoin Core is probably already running. - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -3729,7 +3704,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + Attempt to recover private keys from a corrupt wallet.dat Attempt to recover private keys from a corrupt wallet.dat @@ -3794,22 +3769,12 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. Error opening block database - - Error: A fatal internal error occured, see debug.log for details - - - - + Error: Disk space is low! Error: Disk space is low! - Error: Wallet locked, unable to create transaction! - Error: Wallet locked, unable to create transaction! - - - Failed to listen on any port. Use -listen=0 if you want this. Failed to listen on any port. Use -listen=0 if you want this. @@ -3834,7 +3799,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + Not enough file descriptors available. Not enough file descriptors available. @@ -3844,12 +3809,12 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + Rebuild block chain index from current blk000??.dat files Rebuild block chain index from current blk000??.dat files - + Set database cache size in megabytes (%d to %d, default: %d) @@ -3899,12 +3864,12 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. You need to rebuild the database using -reindex to change -txindex - + Imports blocks from external blk000??.dat file Imports blocks from external blk000??.dat file - + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times @@ -3925,7 +3890,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. @@ -3944,7 +3909,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. @@ -3955,19 +3920,34 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) @@ -3975,6 +3955,11 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. + Require high priority for relaying free or low-fee transactions (default:%u) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) @@ -3989,8 +3974,28 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. + + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. @@ -3999,7 +4004,12 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + + Accept public REST requests (default: %u) + + + + Cannot resolve -whitebind address: '%s' @@ -4020,17 +4030,27 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core - + + Error reading from database, shutting down. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + Error: Unsupported argument -tor found, use -onion. - - Fee (in BTC/kB) to add to transactions you send (default: %s) + + Fee (in HOT/kB) to add to transactions you send (default: %s) @@ -4040,11 +4060,16 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - Initialization sanity check failed. Bitcoin Core is shutting down. + Initialization sanity check failed. Hypercoin Core is shutting down. + Invalid amount for -maxtxfee=<amount>: '%s' + + + + Invalid amount for -minrelaytxfee=<amount>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -4059,15 +4084,10 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + Invalid netmask specified in -whitelist: '%s' - - - Keep at most <n> unconnectable blocks in memory (default: %u) - - Keep at most <n> unconnectable transactions in memory (default: %u) @@ -4085,17 +4105,17 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - Print block on startup, if found in block index + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + RPC server options: - RPC server options: + RPC support for HTTP persistent connections (default: %d) @@ -4109,7 +4129,12 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + + Receive and display P2P network alerts (default: %u) + + + + Send trace/debug info to console instead of debug.log file Send trace/debug info to console instead of debug.log file @@ -4139,7 +4164,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + Transaction amount too small Transaction amount too small @@ -4148,6 +4173,11 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. Transaction amounts must be positive Transaction amounts must be positive + + + Transaction too large for fee policy + + Transaction too large @@ -4170,7 +4200,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - Wallet needed to be rewritten: restart Bitcoin Core to complete + Wallet needed to be rewritten: restart Hypercoin Core to complete @@ -4214,12 +4244,12 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. Password for JSON-RPC connections - + Execute command when the best block changes (%s in cmd is replaced by block hash) Execute command when the best block changes (%s in cmd is replaced by block hash) - + Upgrade wallet to latest format Upgrade wallet to latest format @@ -4239,27 +4269,27 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. This help message - + Allow DNS lookups for -addnode, -seednode and -connect Allow DNS lookups for -addnode, -seednode and -connect - + Loading addresses... Loading addresses... - + Error loading wallet.dat: Wallet corrupted Error loading wallet.dat: Wallet corrupted - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) - + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) @@ -4269,12 +4299,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - - If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u) - - - - + Log transaction priority and fee per kB when mining blocks (default: %u) @@ -4284,7 +4309,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + Number of seconds to keep misbehaving peers from reconnecting (default: %u) @@ -4294,17 +4319,17 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - + (default: %s) - + Acceptable ciphers (default: %s) @@ -4349,7 +4374,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. Invalid -proxy address: '%s' - + Limit size of signature cache to <n> entries (default: %u) @@ -4389,12 +4414,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. - - Print block tree on startup (default: %u) - - - - + Relay and mine data carrier transactions (default: %u) @@ -4474,7 +4494,7 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. Unknown network specified in -onlynet: '%s' - + Cannot resolve -bind address: '%s' Cannot resolve -bind address: '%s' @@ -4484,37 +4504,32 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. Cannot resolve -externalip address: '%s' - + Invalid amount for -paytxfee=<amount>: '%s' Invalid amount for -paytxfee=<amount>: '%s' - - - Invalid amount - Invalid amount - Insufficient funds Insufficient funds - + Loading block index... Loading block index... - + Add a node to connect to and attempt to keep the connection open Add a node to connect to and attempt to keep the connection open - + Loading wallet... Loading wallet... - + Cannot downgrade wallet Cannot downgrade wallet @@ -4524,22 +4539,17 @@ for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo. Cannot write default address - + Rescanning... Rescanning... - + Done loading Done loading - - To use the %s option - To use the %s option - - - + Error Error diff --git a/src/qt/locale/bitcoin_eo.ts b/src/qt/locale/bitcoin_eo.ts index 5189310e649a6..b980cdb3193f8 100644 --- a/src/qt/locale/bitcoin_eo.ts +++ b/src/qt/locale/bitcoin_eo.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Duoble-klaku por redakti adreson aŭ etikedon + Right-click to edit address or label + Dekstre-klaku por redakti adreson aŭ etikedon Create a new address @@ -66,12 +66,12 @@ Ricevaj adresoj - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Jen viaj Bitmon-adresoj por sendi pagojn. Zorge kontrolu la sumon kaj la alsendan adreson antaŭ ol sendi. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Jen viaj Hypercoin-adresoj por sendi pagojn. Zorge kontrolu la sumon kaj la alsendan adreson antaŭ ol sendi. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Jen viaj bitmonaj adresoj por ricevi pagojn. Estas konsilinde uzi apartan ricevan adreson por ĉiu transakcio. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Jen viaj Hypercoin adresoj por ricevi pagojn. Estas konsilinde uzi apartan ricevan adreson por ĉiu transakcio. Copy &Label @@ -89,7 +89,15 @@ Comma separated file (*.csv) Perkome disigita dosiero (*.csv) - + + Exporting Failed + ekspotado malsukcesinta + + + There was an error trying to save the address list to %1. Please try again. + Okazis eraron dum konservo de adreslisto al %1. Bonvolu provi denove. + + AddressTableModel @@ -156,8 +164,8 @@ Konfirmo de ĉifrado de la monujo - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Atentu! Se vi ĉifras vian monujon kaj perdas la pasfrazon, vi <b>PERDOS LA TUTON DE VIA BITMONO<b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Atentu! Se vi ĉifras vian monujon kaj perdas la pasfrazon, vi <b>PERDOS LA TUTON DE VIA HYPERCOINS<b>! Are you sure you wish to encrypt your wallet? @@ -176,8 +184,8 @@ La monujo estas ĉifrita - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitmono nun fermiĝos por fini la ĉifradon. Memoru, ke eĉ ĉifrado ne protektas kontraŭ ĉiu atako, ekz. se viruso infektus vian komputilon. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin nun fermiĝos por fini la ĉifradon. Memoru, ke eĉ ĉifrado ne protektas kontraŭ ĉiu atako, ekz. se viruso infektus vian komputilon. Wallet encryption failed @@ -282,6 +290,10 @@ Open &URI... Malfermi &URI-on... + + Hypercoin Core client + kliento de Hypercoin-kerno + Importing blocks from disk... Importado de blokoj el disko... @@ -291,12 +303,12 @@ Reindeksado de blokoj sur disko... - Send coins to a Bitcoin address - Sendi monon al Bitmon-adreso + Send coins to a Hypercoin address + Sendi monon al Hypercoin-adreso - Modify configuration options for Bitcoin - Modifi agordaĵojn por Bitmono + Modify configuration options for Hypercoin + Modifi agordaĵojn por Hypercoin Backup wallet to another location @@ -319,8 +331,8 @@ &Kontroli mesaĝon... - Bitcoin - Bitmono + Hypercoin + Hypercoin Wallet @@ -334,6 +346,10 @@ &Receive &Ricevi + + Show information about Hypercoin Core + Vidigi informon pri Hypercoin Kerno + &Show / Hide &Montri / Kaŝi @@ -347,12 +363,12 @@ Ĉifri la privatajn ŝlosilojn de via monujo - Sign messages with your Bitcoin addresses to prove you own them - Subskribi mesaĝojn per via Bitmon-adresoj por pravigi, ke vi estas la posedanto + Sign messages with your Hypercoin addresses to prove you own them + Subskribi mesaĝojn per via Hypercoin-adresoj por pravigi, ke vi estas la posedanto - Verify messages to ensure they were signed with specified Bitcoin addresses - Kontroli mesaĝojn por kontroli ĉu ili estas subskribitaj per specifaj Bitmon-adresoj + Verify messages to ensure they were signed with specified Hypercoin addresses + Kontroli mesaĝojn por kontroli ĉu ili estas subskribitaj per specifaj Hypercoin-adresoj &File @@ -371,16 +387,16 @@ Langeto-breto - Bitcoin Core - Kerno de Bitmono + Hypercoin Core + Kerno de Hypercoin - Request payments (generates QR codes and bitcoin: URIs) - Peti pagon (kreas QR-kodojn kaj URI-ojn kun prefikso bitcoin:) + Request payments (generates QR codes and hypercoin: URIs) + Peti pagon (kreas QR-kodojn kaj URI-ojn kun prefikso hypercoin:) - &About Bitcoin Core - &Pri la Bitmona Kerno + &About Hypercoin Core + &Pri la Hypercoin Kerno Show the list of used sending addresses and labels @@ -391,16 +407,16 @@ Vidigi la liston de uzitaj ricevaj adresoj kaj etikedoj - Open a bitcoin: URI or payment request - Malfermi bitcoin:-URI-on aŭ pagpeton + Open a hypercoin: URI or payment request + Malfermi hypercoin:-URI-on aŭ pagpeton &Command-line options &Komandliniaj agordaĵoj - %n active connection(s) to Bitcoin network - %n aktiva konekto al la bitmona reto%n aktivaj konektoj al la bitmona reto + %n active connection(s) to Hypercoin network + %n aktiva konekto al la Hypercoin reto%n aktivaj konektoj al la Hypercoin reto No block source available... @@ -422,6 +438,10 @@ %1 and %2 %1 kaj %2 + + %n year(s) + %n jaro%n jaroj + %1 behind mankas %1 @@ -512,6 +532,10 @@ Adreso: %4 Fee: Krompago: + + Dust: + Polvo: + After Fee: Post krompago: @@ -536,6 +560,14 @@ Adreso: %4 Amount Sumo + + Received with label + Ricevita kun etikedo + + + Received with address + Ricevita kun adreso + Date Dato @@ -596,6 +628,10 @@ Adreso: %4 Copy priority Kopii prioritaton + + Copy dust + Kopii polvon + Copy change Kopii restmonon @@ -728,8 +764,8 @@ Adreso: %4 La adreso enigita "%1" jam ekzistas en la adresaro. - The entered address "%1" is not a valid Bitcoin address. - La adreso enigita "%1" ne estas valida Bitmon-adreso. + The entered address "%1" is not a valid Hypercoin address. + La adreso enigita "%1" ne estas valida Hypercoin-adreso. Could not unlock wallet. @@ -766,16 +802,16 @@ Adreso: %4 HelpMessageDialog - Bitcoin Core - Kerno de Bitmono + Hypercoin Core + Kerno de Hypercoin version versio - About Bitcoin Core - Pri la Bitmona Kerno + About Hypercoin Core + Pri la Hypercoin Kerno Command-line options @@ -817,16 +853,16 @@ Adreso: %4 Bonvenon - Welcome to Bitcoin Core. - Bonvenon al la bitmona kerno, Bitcoin Core. + Welcome to Hypercoin Core. + Bonvenon al la Hypercoin kerno, Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Dum tiu ĉi unua uzo de la programo, vi povas elekti lokon, kie Bitcoin Core stokos siajn datumojn. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Dum tiu ĉi unua uzo de la programo, vi povas elekti lokon, kie Hypercoin Core stokos siajn datumojn. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core elŝutos kaj konservos kopion de la bitmona blokĉeno. Almenaŭ %1GB da datumoj konserviĝos en tiu loko, kaj tio poiome kreskos. Ankaŭ via monujo konserviĝos en tiu dosierujo. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core elŝutos kaj konservos kopion de la Hypercoin blokĉeno. Almenaŭ %1GB da datumoj konserviĝos en tiu loko, kaj tio poiome kreskos. Ankaŭ via monujo konserviĝos en tiu dosierujo. Use the default data directory @@ -837,8 +873,8 @@ Adreso: %4 Uzi alian dosierujon por datumoj: - Bitcoin Core - Kerno de Bitmono + Hypercoin Core + Kerno de Hypercoin Error @@ -879,12 +915,12 @@ Adreso: %4 Ĉ&efa - Automatically start Bitcoin after logging in to the system. - Aŭtomate lanĉi Bitmonon post ensaluto al la sistemo. + Automatically start Hypercoin after logging in to the system. + Aŭtomate lanĉi Hypercoin post ensaluto al la sistemo. - &Start Bitcoin on system login - &Lanĉi Bitmonon tuj post ensaluto al la sistemo + &Start Hypercoin on system login + &Lanĉi Hypercoin tuj post ensaluto al la sistemo Size of &database cache @@ -907,8 +943,12 @@ Adreso: %4 &Reto - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Aŭtomate malfermi la kursilan pordon por Bitmono. Tio funkcias nur se via kursilo havas la UPnP-funkcion, kaj se tiu ĉi estas ŝaltita. + Expert + Fakulo + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Aŭtomate malfermi la kursilan pordon por Hypercoin. Tio funkcias nur se via kursilo havas la UPnP-funkcion, kaj se tiu ĉi estas ŝaltita. Map port using &UPnP @@ -955,8 +995,8 @@ Adreso: %4 &Lingvo de la fasado: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Vi povas elekti la lingvon uzata en la aplikaĵo ĉi tie. Tiu ekefikos nur post relanĉo de Bitmono. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Vi povas elekti la lingvon uzata en la aplikaĵo ĉi tie. Tiu ekefikos nur post relanĉo de Hypercoin. &Unit to show amounts in: @@ -964,7 +1004,7 @@ Adreso: %4 Choose the default subdivision unit to show in the interface and when sending coins. - Elekti la defaŭltan manieron por montri bitmonajn sumojn en la interfaco, kaj kiam vi sendos bitmonon. + Elekti la defaŭltan manieron por montri Hypercoin sumojn en la interfaco, kaj kiam vi sendos hypercoins. Whether to show coin control features or not. @@ -1002,8 +1042,8 @@ Adreso: %4 Formularo - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Eblas, ke la informoj videblaj ĉi tie estas eksdataj. Via monujo aŭtomate sinkoniĝas kun la bitmona reto kiam ili konektiĝas, sed tiu procezo ankoraŭ ne finfariĝis. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Eblas, ke la informoj videblaj ĉi tie estas eksdataj. Via monujo aŭtomate sinkoniĝas kun la Hypercoin reto kiam ili konektiĝas, sed tiu procezo ankoraŭ ne finfariĝis. Your current spendable balance @@ -1053,7 +1093,7 @@ Adreso: %4 Eraro dum pagopeto - Cannot start bitcoin: click-to-pay handler + Cannot start hypercoin: click-to-pay handler Ne eblas lanĉi la ilon 'klaki-por-pagi' @@ -1172,6 +1212,10 @@ Adreso: %4 Current number of blocks Aktuala nombro de blokoj + + Bytes Sent + Bajtoj Senditaj: + Last block time Horo de la lasta bloko @@ -1213,16 +1257,16 @@ Adreso: %4 Sencimiga protokoldosiero - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Malfermi la sencimiga protokoldosiero de Bitmono el la aktuala dosierujo por datumoj. Tio eble daŭros plurajn sekundojn por granda protokoldosiero. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Malfermi la sencimiga protokoldosiero de Hypercoin el la aktuala dosierujo por datumoj. Tio eble daŭros plurajn sekundojn por granda protokoldosiero. Clear console Malplenigi konzolon - Welcome to the Bitcoin RPC console. - Bonvenon al la RPC-konzolo de Bitmono. + Welcome to the Hypercoin RPC console. + Bonvenon al la RPC-konzolo de Hypercoin. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1444,6 +1488,10 @@ Adreso: %4 Clear all fields of the form. Malplenigi ĉiujn kampojn de la formularo. + + Dust: + Polvo: + Clear &All &Forigi ĉion @@ -1462,7 +1510,7 @@ Adreso: %4 Confirm send coins - Konfirmi sendon de bitmono + Konfirmi sendon de hypercoin %1 to %2 @@ -1496,10 +1544,6 @@ Adreso: %4 Copy change Kopii restmonon - - Total Amount %1 (= %2) - Totala Sumo %1 (= %2) - or @@ -1529,13 +1573,17 @@ Adreso: %4 Kreo de transakcio fiaskis! - Warning: Invalid Bitcoin address - Averto: Nevalida Bitmon-adreso + Warning: Invalid Hypercoin address + Averto: Nevalida Hypercoin-adreso (no label) (neniu etikedo) + + Copy dust + Kopii polvon + Are you sure you want to send? Ĉu vi certas, ke vi volas sendi? @@ -1654,8 +1702,8 @@ Adreso: %4 Kopii la aktualan subskribon al la tondejo - Sign the message to prove you own this Bitcoin address - Subskribi la mesaĝon por pravigi, ke vi estas la posedanto de tiu Bitmon-adreso + Sign the message to prove you own this Hypercoin address + Subskribi la mesaĝon por pravigi, ke vi estas la posedanto de tiu Hypercoin-adreso Sign &Message @@ -1678,8 +1726,8 @@ Adreso: %4 Enmeti la subskriban adreson, la mesaĝon (kune kun ĉiu linisalto, spaceto, taboj, ktp. precize) kaj la subskribon ĉi sube por kontroli la mesaĝon. Atentu, ke vi ne komprenu per la subskribo pli ol la enhavo de la mesaĝo mem, por eviti homo-en-la-mezo-atakon. - Verify the message to ensure it was signed with the specified Bitcoin address - Kontroli la mesaĝon por pravigi, ke ĝi ja estas subskribita per la specifa Bitmon-adreso + Verify the message to ensure it was signed with the specified Hypercoin address + Kontroli la mesaĝon por pravigi, ke ĝi ja estas subskribita per la specifa Hypercoin-adreso Verify &Message @@ -1745,8 +1793,8 @@ Adreso: %4 SplashScreen - Bitcoin Core - Kerno de Bitmono + Hypercoin Core + Kerno de Hypercoin The Bitcoin Core developers @@ -2079,6 +2127,10 @@ Adreso: %4 Show transaction details Montri detalojn de transakcio + + Exporting Failed + ekspotado malsukcesinta + Comma separated file (*.csv) Perkome disigita dosiero (*.csv) @@ -2126,7 +2178,7 @@ Adreso: %4 WalletModel Send Coins - Sendi Bitmonon + Sendi Hypercoin @@ -2190,42 +2242,10 @@ Adreso: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Akcepti konektojn el ekstere (defaŭlte: 1 se ne estas -proxy nek -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, vi devas specifi rpcpassword en la konfigura dosiero: -%s -Estas konsilinde uzi tiun ĉi aleatore kreitan pasvorton: -rpcuser=bitcoinrpc -rpcpassword=%s -(ne utilas al vi memorigi tiun ĉi pasvorton) -La salutnomo kaj la pasvorto estu nepre MALSAMAJ. -Se la dosiero ne ekzistas, kreu ĝin kun permeso "nur posedanto rajtas legi". -Estas konsilinde ankaŭ agordi alertnotify por ke vi ricevu avertojn pri eventualaj problemoj; -ekzemple: alertnotify=echo %%s | mail -s "Averto de Bitmono" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bindi al donita adreso kaj ĉiam aŭskulti per ĝi. Uzu la formaton [gastigo]:pordo por IPv6 - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Eraro: la transakcio estas rifuzita. Tio povas okazi se iom da Bitmono en via monujo jam elspeziĝis (ekz. se vi uzis kopion de wallet.dat kies Bitmono jam elspeziĝis, sed ne estis markita kiel elspezita ĉi tie). - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Eraro: tiu ĉi transakcio bezonas krompagon de almenaŭ %s pro la sumo, la komplekseco, aŭ la uzo de ĵus ricevita mono! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Plenumi komandon kiam monuja transakcio ŝanĝiĝas (%s en cmd anstataŭiĝas per TxID) @@ -2302,10 +2322,6 @@ ekzemple: alertnotify=echo %%s | mail -s "Averto de Bitmono" admin@foo.com Error: Disk space is low! Eraro: restas malmulte da diskospaco! - - Error: Wallet locked, unable to create transaction! - Eraro: monujo ŝlosita, ne eblas krei transakcion! - Failed to listen on any port. Use -listen=0 if you want this. Ne sukcesis aŭskulti ajnan pordon. Uzu -listen=0 se tion vi volas. @@ -2382,6 +2398,10 @@ ekzemple: alertnotify=echo %%s | mail -s "Averto de Bitmono" admin@foo.com Signing transaction failed Subskriba transakcio fiaskis + + This is experimental software. + ĝi estas eksperimenta programo + Transaction amount too small Transakcia sumo tro malgranda @@ -2474,10 +2494,6 @@ ekzemple: alertnotify=echo %%s | mail -s "Averto de Bitmono" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Nevalida sumo por -paytxfee=<amount>: '%s' - - Invalid amount - Nevalida sumo - Insufficient funds Nesufiĉa mono @@ -2510,10 +2526,6 @@ ekzemple: alertnotify=echo %%s | mail -s "Averto de Bitmono" admin@foo.com Done loading Ŝargado finiĝis - - To use the %s option - Por uzi la agordon %s - Error Eraro diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index b701366706f66..10f20e0f7df8c 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Haga doble clic para editar la etiqueta o dirección + Right-click to edit address or label + Haz-clic para editar la dirección o etiqueta Create a new address @@ -35,7 +35,7 @@ Export the data in the current tab to a file - Exportar a un archivo los datos de esta pestaña + Exportar los datos en la ficha actual a un archivo &Export @@ -47,11 +47,11 @@ Choose the address to send coins to - Escoja la dirección a la que enviar bitcoins + Elije la dirección para enviar monedas a Choose the address to receive coins with - Escoja la dirección de la que recibir bitcoins + Elije la dirección para recibir monedas con C&hoose @@ -66,12 +66,12 @@ Direcciones de recepción - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estas son sus direcciones Bitcoin para enviar pagos. Compruebe siempre la cantidad y la dirección receptora antes de enviar bitcoins. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Estas son tus direcciones Hypercoin para enviar los pagos. Comprueba siempre la cantidad y la dirección receptora antes de enviar las monedas. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Estas son sus direcciones de Bitcoin para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Estas son tus direcciones de Hypercoin para recibir los pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción. Copy &Label @@ -87,17 +87,13 @@ Comma separated file (*.csv) - Archivos de columnas separadas por coma (*.csv) + Archivos separados por coma (*.csv) Exporting Failed - Error exportando + Fallo al exportar - - There was an error trying to save the address list to %1. Please try again. - Se ha producido un error al intentar guardar la lista de direcciones en %1. Por favor vuelva a intentarlo. - - + AddressTableModel @@ -157,19 +153,19 @@ Enter the old and new passphrase to the wallet. - Introduzca la contraseña anterior del monedero y la nueva. + Introduce la antigua y la nueva contraseña a el monedero. Confirm wallet encryption Confirmar cifrado del monedero - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Atencion: ¡Si cifra su monedero y pierde la contraseña perderá <b>TODOS SUS BITCOINS</b>!" + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Atencion: ¡Si cifra su monedero y pierde la contraseña perderá <b>TODOS SUS HYPERCOINS</b>!" Are you sure you wish to encrypt your wallet? - ¿Seguro que desea cifrar su monedero? + ¿Estás seguro que deseas cifrar tu monedero ? IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. @@ -177,7 +173,7 @@ Warning: The Caps Lock key is on! - Aviso: ¡La tecla de bloqueo de mayúsculas está activada! + Aviso: ¡La tecla de Mayúsculas está activada! Wallet encrypted @@ -188,8 +184,8 @@ Introduzca la nueva contraseña para el monedero.<br/>Utilice por favor una contraseña con <b>diez o más caracteres aleatorios</b> o con <b>ocho o más palabras</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se cerrará para finalizar el proceso de cifrado. Recuerde que el cifrado de su monedero no puede proteger totalmente sus bitcoins de robo por malware que infecte su sistema. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin se cerrará para finalizar el proceso de cifrado. Recuerde que el cifrado de su monedero no puede proteger totalmente sus hypercoins de robo por malware que infecte su sistema. Wallet encryption failed @@ -295,8 +291,8 @@ Abrir &URI... - Bitcoin Core client - Cliente Bitcoin Core + Hypercoin Core client + Cliente Hypercoin Core Importing blocks from disk... @@ -307,12 +303,12 @@ Reindexando bloques en disco... - Send coins to a Bitcoin address - Enviar bitcoins a una dirección Bitcoin + Send coins to a Hypercoin address + Enviar hypercoins a una dirección Hypercoin - Modify configuration options for Bitcoin - Modificar las opciones de configuración de Bitcoin + Modify configuration options for Hypercoin + Modificar las opciones de configuración de Hypercoin Backup wallet to another location @@ -335,8 +331,8 @@ &Verificar mensaje... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +347,8 @@ &Recibir - Show information about Bitcoin Core - Mostrar información acerca de Bitcoin Core + Show information about Hypercoin Core + Mostrar información acerca de Hypercoin Core &Show / Hide @@ -367,12 +363,12 @@ Cifrar las claves privadas de su monedero - Sign messages with your Bitcoin addresses to prove you own them - Firmar mensajes con sus direcciones Bitcoin para demostrar la propiedad + Sign messages with your Hypercoin addresses to prove you own them + Firmar mensajes con sus direcciones Hypercoin para demostrar la propiedad - Verify messages to ensure they were signed with specified Bitcoin addresses - Verificar mensajes comprobando que están firmados con direcciones Bitcoin concretas + Verify messages to ensure they were signed with specified Hypercoin addresses + Verificar mensajes comprobando que están firmados con direcciones Hypercoin concretas &File @@ -391,16 +387,16 @@ Barra de pestañas - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Solicitar pagos (generando códigos QR e identificadores URI "bitcoin:") + Request payments (generates QR codes and hypercoin: URIs) + Solicitar pagos (generando códigos QR e identificadores URI "hypercoin:") - &About Bitcoin Core - &Acerca de Bitcoin Core + &About Hypercoin Core + &Acerca de Hypercoin Core Show the list of used sending addresses and labels @@ -411,20 +407,20 @@ Muestra la lista de direcciones de recepción y etiquetas - Open a bitcoin: URI or payment request - Abrir un identificador URI "bitcoin:" o una petición de pago + Open a hypercoin: URI or payment request + Abrir un identificador URI "hypercoin:" o una petición de pago &Command-line options &Opciones de consola de comandos - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Mostrar el mensaje de ayuda de Bitcoin Core con una lista de las posibles opciones de la consola de comandos de Bitcoin + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Mostrar el mensaje de ayuda de Hypercoin Core con una lista de las posibles opciones de la consola de comandos de Hypercoin - %n active connection(s) to Bitcoin network - %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin + %n active connection(s) to Hypercoin network + %n conexión activa hacia la red Hypercoin%n conexiones activas hacia la red Hypercoin No block source available... @@ -788,8 +784,8 @@ Dirección: %4 La dirección introducida "%1" ya está presente en la libreta de direcciones. - The entered address "%1" is not a valid Bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin válida. + The entered address "%1" is not a valid Hypercoin address. + La dirección introducida "%1" no es una dirección Hypercoin válida. Could not unlock wallet. @@ -826,8 +822,8 @@ Dirección: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -838,8 +834,8 @@ Dirección: %4 (%1-bit) - About Bitcoin Core - Acerca de Bitcoin Core + About Hypercoin Core + Acerca de Hypercoin Core Command-line options @@ -885,16 +881,16 @@ Dirección: %4 Bienvenido - Welcome to Bitcoin Core. - Bienvenido a Bitcoin Core + Welcome to Hypercoin Core. + Bienvenido a Hypercoin Core - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Al ser la primera vez que se ejecuta el programa, puede elegir dónde almacenará sus datos Bitcoin Core. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Al ser la primera vez que se ejecuta el programa, puede elegir dónde almacenará sus datos Hypercoin Core. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core va a descargar y guardar una copia de la cadena de bloques de Bitcoin. Se almacenará al menos %1GB de datos en este directorio, que irá creciendo con el tiempo. El monedero se guardará también en este directorio. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core va a descargar y guardar una copia de la cadena de bloques de Hypercoin. Se almacenará al menos %1GB de datos en este directorio, que irá creciendo con el tiempo. El monedero se guardará también en este directorio. Use the default data directory @@ -905,8 +901,8 @@ Dirección: %4 Utilizar un directorio de datos personalizado: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. @@ -959,12 +955,12 @@ Dirección: %4 &Principal - Automatically start Bitcoin after logging in to the system. - Iniciar Bitcoin automáticamente al encender el sistema. + Automatically start Hypercoin after logging in to the system. + Iniciar Hypercoin automáticamente al encender el sistema. - &Start Bitcoin on system login - &Iniciar Bitcoin al iniciar el sistema + &Start Hypercoin on system login + &Iniciar Hypercoin al iniciar el sistema Size of &database cache @@ -1039,16 +1035,16 @@ Dirección: %4 &Gastar cambio no confirmado - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir automáticamente el puerto del cliente Bitcoin en el router. Esta opción solo funciona si el router admite UPnP y está activado. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir automáticamente el puerto del cliente Hypercoin en el router. Esta opción solo funciona si el router admite UPnP y está activado. Map port using &UPnP Mapear el puerto mediante &UPnP - Connect to the Bitcoin network through a SOCKS5 proxy. - Conectarse a la red Bitcoin a través de un proxy SOCKS5. + Connect to the Hypercoin network through a SOCKS5 proxy. + Conectarse a la red Hypercoin a través de un proxy SOCKS5. &Connect through SOCKS5 proxy (default proxy): @@ -1095,8 +1091,8 @@ Dirección: %4 I&dioma de la interfaz de usuario - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - El idioma de la interfaz de usuario puede establecerse aquí. Este ajuste se aplicará cuando se reinicie Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + El idioma de la interfaz de usuario puede establecerse aquí. Este ajuste se aplicará cuando se reinicie Hypercoin. &Unit to show amounts in: @@ -1104,7 +1100,7 @@ Dirección: %4 Choose the default subdivision unit to show in the interface and when sending coins. - Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían bitcoins. + Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían hypercoins. Whether to show coin control features or not. @@ -1154,8 +1150,8 @@ Dirección: %4 Formulario - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Bitcoin después de que se haya establecido una conexión, pero este proceso aún no se ha completado. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Hypercoin después de que se haya establecido una conexión, pero este proceso aún no se ha completado. Watch-only: @@ -1261,16 +1257,16 @@ Dirección: %4 Error en solicitud de pago - Cannot start bitcoin: click-to-pay handler - No se puede iniciar el gestor de identificadores "bitcoin:" de clic-para-pagar + Cannot start hypercoin: click-to-pay handler + No se puede iniciar el gestor de identificadores "hypercoin:" de clic-para-pagar Payment request fetch URL is invalid: %1 La URL de obtención de la solicitud de pago es inválida: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - ¡No se puede leer el identificador URI! Esto puede deberse a una dirección Bitcoin inválida o a parámetros de la URI mal formados + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + ¡No se puede leer el identificador URI! Esto puede deberse a una dirección Hypercoin inválida o a parámetros de la URI mal formados Payment request file handling @@ -1288,6 +1284,14 @@ Dirección: %4 Refund from %1 Devolución desde %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La petición de pago %1 es demasiado grande (%2 bytes, permitidos %3 bytes). + + + Payment request DoS protection + Solicitud pago de protección DoS + Error communicating with %1: %2 Error en la comunicación con %1: %2 @@ -1331,8 +1335,8 @@ Dirección: %4 Cantidad - Enter a Bitcoin address (e.g. %1) - Introducir una dirección Bitcoin (p. ej. %1) + Enter a Hypercoin address (e.g. %1) + Introducir una dirección Hypercoin (p. ej. %1) %1 d @@ -1557,7 +1561,7 @@ Dirección: %4 Archivo de registro de depuración - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. Abrir el archivo de registro de depuración en el directorio actual de datos. Esto puede llevar varios segundos para archivos de registro grandes. @@ -1565,8 +1569,8 @@ Dirección: %4 Borrar consola - Welcome to the Bitcoin RPC console. - Bienvenido a la consola RPC de Bitcoin + Welcome to the Hypercoin RPC console. + Bienvenido a la consola RPC de Hypercoin Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1640,8 +1644,8 @@ Dirección: %4 R&eutilizar una dirección existente para recibir (no recomendado) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red Hypercoin. An optional label to associate with the new receiving address. @@ -1790,7 +1794,7 @@ Dirección: %4 SendCoinsDialog Send Coins - Enviar bitcoins + Enviar hypercoins Coin Control Features @@ -1848,18 +1852,42 @@ Dirección: %4 Transaction Fee: Comisión de Transacción: + + Choose... + Elija... + + + collapse fee-settings + Colapsar ajustes de cuota + Minimize Minimizar + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la tarifa de aduana se establece en 1000 satoshis y la transacción está a disponible a solo 250 bytes, entonces "por kilobyte" sólo paga 250 satoshis de cuota, mientras que "por lo menos" paga 1.000 satoshis. Para las transacciones más grandes que un kilobyte ambos pagan por kilobyte. + per kilobyte por kilobyte + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la tarifa de aduana se establece en 1000 satoshis y la transacción está a sólo 250 bytes, entonces "por kilobyte" sólo paga 250 satoshis de cuota, mientras que "el mínimo total" pagaría 1.000 satoshis. Para las transacciones más grandes que un kilobyte ambos pagan por kilobyte + total at least total por lo menos + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Pagando solamente la cuota mínima es correcto, siempre y cuando haya menos volumen de transacciones que el espacio en los bloques. Pero tenga en cuenta que esto puede terminar en una transacción nunca confirmada, una vez que haya más demanda para transacciones Hypercoin que la red pueda procesar. + + + (read the tooltip) + (leer la sugerencia) + Recommended: Recomendado: @@ -1884,6 +1912,10 @@ Dirección: %4 fast rápido + + Send as zero-fee transaction if possible + Enviar transacción, si es posible, sin comisión + (confirmation may take longer) (confirmación puede tardar más tiempo) @@ -1922,7 +1954,7 @@ Dirección: %4 Confirm send coins - Confirmar el envío de bitcoins + Confirmar el envío de hypercoins %1 to %2 @@ -1956,10 +1988,6 @@ Dirección: %4 Copy change Copiar Cambio - - Total Amount %1 (= %2) - Cuantía Total %1 (=%2) - or o @@ -1990,7 +2018,7 @@ Dirección: %4 The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - ¡La transacción fue rechazada! Esto puede haber ocurrido si alguno de los bitcoins de su monedero ya estaba gastado o si ha usado una copia de wallet.dat y los bitcoins estaban gastados en la copia pero no se habían marcado como gastados aqui. + ¡La transacción fue rechazada! Esto puede haber ocurrido si alguno de los hypercoins de su monedero ya estaba gastado o si ha usado una copia de wallet.dat y los hypercoins estaban gastados en la copia pero no se habían marcado como gastados aqui. Pay only the minimum fee of %1 @@ -2001,8 +2029,8 @@ Dirección: %4 Estimado para comenzar confirmación dentro de %1 bloque(s) - Warning: Invalid Bitcoin address - Alerta: Dirección de Bitcoin inválida + Warning: Invalid Hypercoin address + Alerta: Dirección de Hypercoin inválida (no label) @@ -2010,7 +2038,7 @@ Dirección: %4 Warning: Unknown change address - Alerta: Dirección de Bitcoin inválida + Alerta: Dirección de Hypercoin inválida Copy dust @@ -2052,8 +2080,8 @@ Dirección: %4 Esto es un pago ordinario. - The Bitcoin address to send the payment to - Dirección Bitcoin a la que enviar el pago + The Hypercoin address to send the payment to + Dirección Hypercoin a la que enviar el pago Alt+A @@ -2084,8 +2112,8 @@ Dirección: %4 Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Un mensaje que se adjuntó a la bitcoin: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red Bitcoin. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Un mensaje que se adjuntó a la hypercoin: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red Hypercoin. This is an unverified payment request. @@ -2103,8 +2131,8 @@ Dirección: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core se está cerrando... + Hypercoin Core is shutting down... + Hypercoin Core se está cerrando... Do not shut down the computer until this window disappears. @@ -2126,8 +2154,8 @@ Dirección: %4 Puede firmar mensajes con sus direcciones para demostrar que las posee. Tenga cuidado de no firmar cualquier cosa vaga, ya que los ataques de phishing pueden tratar de engañarle para suplantar su identidad. Firme solo declaraciones totalmente detalladas con las que usted esté de acuerdo. - The Bitcoin address to sign the message with - Dirección Bitcoin con la que firmar el mensaje + The Hypercoin address to sign the message with + Dirección Hypercoin con la que firmar el mensaje Choose previously used address @@ -2158,8 +2186,8 @@ Dirección: %4 Copiar la firma actual al portapapeles del sistema - Sign the message to prove you own this Bitcoin address - Firmar el mensaje para demostrar que se posee esta dirección Bitcoin + Sign the message to prove you own this Hypercoin address + Firmar el mensaje para demostrar que se posee esta dirección Hypercoin Sign &Message @@ -2182,12 +2210,12 @@ Dirección: %4 Introduzca la dirección para la firma, el mensaje (asegurándose de copiar tal cual los saltos de línea, espacios, tabulaciones, etc.) y la firma a continuación para verificar el mensaje. Tenga cuidado de no asumir más información de lo que dice el propio mensaje firmado para evitar fraudes basados en ataques de tipo man-in-the-middle. - The Bitcoin address the message was signed with - La dirección Bitcoin con la que se firmó el mensaje + The Hypercoin address the message was signed with + La dirección Hypercoin con la que se firmó el mensaje - Verify the message to ensure it was signed with the specified Bitcoin address - Verificar el mensaje para comprobar que fue firmado con la dirección Bitcoin indicada + Verify the message to ensure it was signed with the specified Hypercoin address + Verificar el mensaje para comprobar que fue firmado con la dirección Hypercoin indicada Verify &Message @@ -2253,8 +2281,8 @@ Dirección: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2384,7 +2412,7 @@ Dirección: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Los bitcoins generados deben madurar %1 bloques antes de que puedan gastarse. Cuando generó este bloque, se transmitió a la red para que se añadiera a la cadena de bloques. Si no consigue entrar en la cadena, su estado cambiará a "no aceptado" y ya no se podrá gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del suyo. + Los hypercoins generados deben madurar %1 bloques antes de que puedan gastarse. Cuando generó este bloque, se transmitió a la red para que se añadiera a la cadena de bloques. Si no consigue entrar en la cadena, su estado cambiará a "no aceptado" y ya no se podrá gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del suyo. Debug information @@ -2702,7 +2730,7 @@ Dirección: %4 WalletModel Send Coins - Enviar bitcoins + Enviar hypercoins @@ -2778,30 +2806,6 @@ Dirección: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Aceptar conexiones desde el exterior (predeterminado: 1 si no -proxy o -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, debe establecer un valor rpcpassword en el archivo de configuración: -%s -Se recomienda utilizar la siguiente contraseña aleatoria: -rpcuser=bitcoinrpc -rpcpassword=%s -(no es necesario recordar esta contraseña) -El nombre de usuario y la contraseña DEBEN NO ser iguales. -Si el archivo no existe, créelo con permisos de archivo de solo lectura. -Se recomienda también establecer alertnotify para recibir notificaciones de problemas. -Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincular a la dirección dada y escuchar siempre en ella. Utilice la notación [host]:port para IPv6 @@ -2818,14 +2822,6 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Ingresar en el modo de prueba de regresión, que utiliza una cadena especial en la que los bloques se pueden resolver instantáneamente. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - ¡Error: se ha rechazado la transacción! Esto puede ocurrir si ya se han gastado algunos de los bitcoins del monedero, como ocurriría si hubiera hecho una copia de wallet.dat y se hubieran gastado bitcoins a partir de la copia, con lo que no se habrían marcado aquí como gastados. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - ¡Error: Esta transacción requiere una comisión de al menos %s debido a su cantidad, complejidad, o al uso de fondos recién recibidos! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Ejecutar comando cuando una transacción del monedero cambia (%s en cmd se remplazará por TxID) @@ -2843,8 +2839,8 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Esta es una versión de pre-prueba - utilícela bajo su propio riesgo. No la utilice para usos comerciales o de minería. - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - No se ha podido acceder a %s en esta máquina. Probablemente ya se está ejecutando Bitcoin Core. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + No se ha podido acceder a %s en esta máquina. Probablemente ya se está ejecutando Hypercoin Core. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2930,18 +2926,10 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error opening block database Error al abrir base de datos de bloques. - - Error: A fatal internal error occured, see debug.log for details - Error: un error grave interno ocurrió, sea debug.log para más detalles. - Error: Disk space is low! Error: ¡Espacio en disco bajo! - - Error: Wallet locked, unable to create transaction! - Error: ¡El monedero está bloqueado; no se puede crear la transacción! - Failed to listen on any port. Use -listen=0 if you want this. Ha fallado la escucha en todos los puertos. Use -listen=0 si desea esto. @@ -3035,8 +3023,8 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Ligar a las direcciones especificadas para escuchar por conexiones JSON-RPC. Usar la notación para IPv6 [host]:puerto. Esta opción se puede especificar múltiples veces (por defecto: ligar a todas las interfaces) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - No se ha podido bloquear el directorio de datos %s. Probablemente ya se está ejecutando Bitcoin Core. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + No se ha podido bloquear el directorio de datos %s. Probablemente ya se está ejecutando Hypercoin Core. Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) @@ -3059,33 +3047,85 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Ejecutar un comando cuando se reciba una alerta importante o cuando veamos un fork demasiado largo (%s en cmd se reemplazará por el mensaje) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Tarifas (en BTC/Kb) más pequeños que esto se consideran cero cuota de reinstalación (por defecto: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Tarifas (en HOT/Kb) más pequeños que esto se consideran cero cuota de reinstalación (por defecto: %s) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Tarifas (en BTC/Kb) más pequeños que esto se consideran cero cuota para la creación de la transacción (por defecto: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Tarifas (en HOT/Kb) más pequeños que esto se consideran cero cuota para la creación de la transacción (por defecto: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Si el pago de comisión no está establecido, incluir la cuota suficiente para que las transacciones comiencen la confirmación en una media de n bloques ( por defecto :%u) + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + El tamaño máximo de los datos en las operaciones de transporte de datos que transmitimos y el mio (default: %u) Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Consulta de direcciones pares mediante búsqueda de DNS, si bajo en direcciones (por defecto: 1 a menos que - conectar) + + Require high priority for relaying free or low-fee transactions (default:%u) + Se requiere alta prioridad para retransmitir transacciones gratis o de baja comisión (por defecto:%u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Establecer tamaño máximo de las transacciones de alta prioridad/baja comisión en bytes (predeterminado: %d) + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Ajuste el número de hilos para la generación de moneda si está habilitado (-1 = all cores, default: %d) + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Este producto incluye software desarrollado por el OpenSSL Project para su uso en OpenSSL Toolkit <https://www.openssl.org/>, software de cifrado escrito por Eric Young y software UPnP escrito por Thomas Bernard. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Aviso: ¡Comprueba la fecha y hora de tu ordenador y verifica si es correcta! Si no es correcta Bitcoin Core no funcionará adecuadamente. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Para utilizar hypercoind, o la -opción servidor a hypercoin-qt, debes establecer una rpcpassword en el fichero de configuración: +%s +Se recomienda utilizar la siguiente contraseña aleatoria: +rpcuser=hypercoinrpc +rpcpassword=%s +(no es necesario que recuerdes esta contraseña) +El nombre de usuario y contraseña NO DEBEN ser la misma. +Si no existe el archivo, crearlo con los permisos de archivos de propietarios de -sólo lectura-. +También se recomienda establecer una notificación de alerta para ser notificado de problemas; +por ejemplo: alertnotify=echo %% s | correo -s "Alerta Hypercoin" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Advertencia: ¡-maxtxfee se establece muy alta! Esta gran tarifa podría ser pagada en una sola transacción . + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Aviso: ¡Comprueba la fecha y hora de tu ordenador y verifica si es correcta! Si no es correcta Hypercoin Core no funcionará adecuadamente. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway A los equipos en lista blanca no se les pueden prohibir los ataques DoS y sus transacciones siempre son retransmitidas, incluso si ya están en el mempool, es útil por ejemplo para un gateway. + + Accept public REST requests (default: %u) + Aceptar solicitudes públicas en FERIADOS (por defecto: %u) + + + Cannot resolve -whitebind address: '%s' + No se puede resolver -whitebind address: '%s' + Connect through SOCKS5 proxy Conectar usando SOCKS5 proxy @@ -3095,20 +3135,40 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Copyright (C) 2009-%i The Bitcoin Core Developers - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Error al cargar wallet.dat: El monedero requiere una versión más reciente de Bitcoin Core + Could not parse -rpcbind value %s as network address + No se pudo analizar -rpcbind valor%s como dirección de red - Fee (in BTC/kB) to add to transactions you send (default: %s) - Cuota (in BTC/kB) para añadir a las transacciones que envíes (por defecto: %s) + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Error al cargar wallet.dat: El monedero requiere una versión más reciente de Hypercoin Core + + + Error reading from database, shutting down. + Error al leer la base de datos, cerrando. + + + Error: A fatal internal error occurred, see debug.log for details + Un error interno fatal ocurrió, ver debug.log para detalles + + + Error: Unsupported argument -tor found, use -onion. + Error: Argumento encontrado -tor no soportado, utilice -onion + + + Fee (in HOT/kB) to add to transactions you send (default: %s) + Cuota (in HOT/kB) para añadir a las transacciones que envíes (por defecto: %s) Information Información - Initialization sanity check failed. Bitcoin Core is shutting down. - La inicialización de la verificación de validez falló. Se está apagando Bitcoin Core. + Initialization sanity check failed. Hypercoin Core is shutting down. + La inicialización de la verificación de validez falló. Se está apagando Hypercoin Core. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Monto inválido para -maxtxfee=<amount>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -3126,10 +3186,6 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid netmask specified in -whitelist: '%s' Máscara de red inválida especificada en -whitelist: '%s' - - Keep at most <n> unconnectable blocks in memory (default: %u) - Mantener como máximo <n> bloques no conectables en memoria (por defecto: %u) - Keep at most <n> unconnectable transactions in memory (default: %u) Mantener como máximo <n> transacciones no conectables en memoria (por defecto: %u) @@ -3143,17 +3199,17 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Opciones de nodos de retransmisión: - Print block on startup, if found in block index - Imprimir bloque al iniciar, si se encuentra en el índice de bloques - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opciones SSL de RPC: (véase la wiki de Bitcoin para las instrucciones de instalación de SSL) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Opciones SSL de RPC: (véase la wiki de Hypercoin para las instrucciones de instalación de SSL) RPC server options: Opciones de servidor RPC: + + RPC support for HTTP persistent connections (default: %d) + Soporte RPC para conexiones HTTP persistentes (por defecto: %d) + Randomly drop 1 of every <n> network messages Ignorar 1 de cada <n> mensajes de red al azar @@ -3162,10 +3218,18 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Randomly fuzz 1 of every <n> network messages Introducir datos fuzz en 1 de cada <n> mensajes de red al azar + + Receive and display P2P network alerts (default: %u) + Recibir y mostrar alertas de la red P2P (default: %u) + Send trace/debug info to console instead of debug.log file Enviar información de trazas/depuración a la consola en lugar de al archivo debug.log + + Send transactions as zero-fee transactions if possible (default: %u) + Mandar transacciones como comisión-cero si es posible (por defecto: %u) + Show all debugging options (usage: --help -help-debug) Muestra todas las opciones de depuración (uso: --help -help-debug) @@ -3190,6 +3254,10 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Transaction amounts must be positive Las cantidades en las transacciones deben ser positivas + + Transaction too large for fee policy + Operación demasiado grande para la política de tasas + Transaction too large Transacción demasiado grande @@ -3208,8 +3276,8 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - Wallet needed to be rewritten: restart Bitcoin Core to complete - Monedero es necesario volver a escribir: reiniciar Bitcoin Core para completar + Wallet needed to be rewritten: restart Hypercoin Core to complete + Monedero es necesario volver a escribir: reiniciar Hypercoin Core para completar Warning @@ -3219,6 +3287,10 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Warning: This version is obsolete, upgrade required! Aviso: Esta versión es obsoleta, actualización necesaria! + + Warning: Unsupported argument -benchmark ignored, use -debug=bench. + Advertencia: Argumento no soportado -benchmark ignored, use -debug=bench. + Warning: Unsupported argument -debugnet ignored, use -debug=net. Aviso: Argumento no sportado -debugnet anticuado, utilice -debug=net. @@ -3274,6 +3346,10 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error loading wallet.dat: Wallet corrupted Error al cargar wallet.dat: el monedero está dañado + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) Volcar la actividad de la base de datos de memoria al registro en disco cada <n> megabytes (predeterminado: %u) @@ -3374,14 +3450,14 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Prepend debug output with timestamp (default: %u) Anteponer marca temporal a la información de depuración (por defecto: %u) - - Print block tree on startup (default: %u) - Imprimir árbol de bloques al iniciar (predeterminado: %u) - Relay and mine data carrier transactions (default: %u) Retransmitir y minar transacciones de transporte de datos (por defecto: %u) + + Relay non-P2SH multisig (default: %u) + Relay non-P2SH multisig (default: %u) + Run a thread to flush wallet periodically (default: %u) Ejecutar un hilo para limpiar de la memoria el monedero periódicamente (predeterminado: %u) @@ -3450,10 +3526,6 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Cantidad inválida para -paytxfee=<amount>: '%s' - - Invalid amount - Cuantía no válida - Insufficient funds Fondos insuficientes @@ -3486,13 +3558,9 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Se terminó de cargar - - To use the %s option - Para utilizar la opción %s - Error Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index e6f81e650f0c6..bfb3283c7fea7 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -1,26 +1,46 @@ - + AddressBookPage - Double-click to edit address or label - Haz doble clic para editar una dirección o etiqueta + Right-click to edit address or label + Haga clic para editar la dirección o etiqueta Create a new address - Crea una nueva dirección + Crea una nueva direCrea una nueva direccióncción + + + &New + y nueva Copy the currently selected address to the system clipboard Copia la dirección seleccionada al portapapeles + + &Copy + y copiar + + + C&lose + C y perder + &Copy Address &Copia dirección + + Delete the currently selected address from the list + Eliminar la dirección seleccionada de la lista + Export the data in the current tab to a file Exportar los datos de la pestaña actual a un archivo + + &Export + y exportar + &Delete &Borrar @@ -100,8 +120,8 @@ Confirma la codificación de cartera - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Atención: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Atención: ¡Si codificas tu billetera y pierdes la contraseña perderás <b>TODOS TUS HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -120,8 +140,8 @@ Billetera codificada - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus bitcoins de ser robados por malware que infecte su computador + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin se cerrará para finalizar el proceso de encriptación. Recuerde que encriptar su billetera no protegera completatamente sus hypercoins de ser robados por malware que infecte su computador Wallet encryption failed @@ -192,7 +212,7 @@ Show information about Qt - Mostrar Información sobre QT + Mostrar Información sobre Qt &Options... @@ -210,17 +230,25 @@ &Change Passphrase... &Cambiar la contraseña... + + Open &URI... + Abrir y url... + + + Hypercoin Core client + cliente hypercoin core + Reindexing blocks on disk... Cargando el index de bloques... - Send coins to a Bitcoin address - Enviar monedas a una dirección bitcoin + Send coins to a Hypercoin address + Enviar monedas a una dirección hypercoin - Modify configuration options for Bitcoin - Modifica las opciones de configuración de bitcoin + Modify configuration options for Hypercoin + Modifica las opciones de configuración de hypercoin Backup wallet to another location @@ -239,8 +267,8 @@ Abre consola de depuración y diagnóstico - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -250,12 +278,16 @@ &Send &Envía + + &Receive + y recibir + &Show / Hide &Mostrar/Ocultar - Sign messages with your Bitcoin addresses to prove you own them + Sign messages with your Hypercoin addresses to prove you own them Firmar un mensaje para provar que usted es dueño de esta dirección @@ -274,9 +306,13 @@ Tabs toolbar Barra de pestañas + + Hypercoin Core + hypercoin core + - %n active connection(s) to Bitcoin network - %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin + %n active connection(s) to Hypercoin network + %n conexión activa hacia la red Hypercoin%n conexiones activas hacia la red Hypercoin %n hour(s) @@ -363,6 +399,10 @@ Dirección: %4 Confirmed Confirmado + + Priority + prioridad + Copy address Copia dirección @@ -375,6 +415,18 @@ Dirección: %4 Copy amount Copiar Cantidad + + medium + medio + + + yes + si + + + no + no + (no label) (sin etiqueta) @@ -415,8 +467,8 @@ Dirección: %4 La dirección introducida "%1" ya esta guardada en la libreta de direcciones. - The entered address "%1" is not a valid Bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin valida. + The entered address "%1" is not a valid Hypercoin address. + La dirección introducida "%1" no es una dirección Hypercoin valida. Could not unlock wallet. @@ -436,6 +488,10 @@ Dirección: %4 HelpMessageDialog + + Hypercoin Core + hypercoin core + version versión @@ -456,6 +512,14 @@ Dirección: %4 Intro + + Welcome + bienvenido + + + Hypercoin Core + hypercoin core + Error Error @@ -463,6 +527,10 @@ Dirección: %4 OpenURIDialog + + URI: + url: + OptionsDialog @@ -475,12 +543,12 @@ Dirección: %4 &Principal - Automatically start Bitcoin after logging in to the system. - Inicia Bitcoin automáticamente despues de encender el computador + Automatically start Hypercoin after logging in to the system. + Inicia Hypercoin automáticamente despues de encender el computador - &Start Bitcoin on system login - &Inicia Bitcoin al iniciar el sistema + &Start Hypercoin on system login + &Inicia Hypercoin al iniciar el sistema Reset all client options to default. @@ -491,8 +559,12 @@ Dirección: %4 &Red - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Abre automáticamente el puerto del cliente Bitcoin en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado. + Expert + experto + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Abre automáticamente el puerto del cliente Hypercoin en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado. Map port using &UPnP @@ -510,6 +582,11 @@ Dirección: %4 Port of the proxy (e.g. 9050) Puerto del servidor proxy (ej. 9050) + + &Window + y windows + + Show only a tray icon after minimizing the window. Muestra solo un ícono en la bandeja después de minimizar la ventana @@ -586,6 +663,10 @@ Dirección: %4 Amount Cantidad + + UNKNOWN + DESCONOCIDO + N/A N/A @@ -620,6 +701,10 @@ Dirección: %4 &Information &Información + + General + General + Startup time Tiempo de inicio @@ -640,6 +725,11 @@ Dirección: %4 Block chain Bloquea cadena + + Version + version + + &Open &Abrir @@ -862,7 +952,7 @@ Dirección: %4 Firma - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address Firmar un mensjage para probar que usted es dueño de esta dirección @@ -887,7 +977,7 @@ Dirección: %4 Please check the address and try again. - Por favor, revise la dirección Bitcoin e inténtelo denuevo + Por favor, revise la dirección Hypercoin e inténtelo denuevo Wallet unlock was cancelled. @@ -908,6 +998,10 @@ Dirección: %4 SplashScreen + + Hypercoin Core + hypercoin core + [testnet] [red-de-pruebas] @@ -1235,6 +1329,10 @@ Dirección: %4 WalletView + + &Export + y exportar + Export the data in the current tab to a file Exportar los datos de la pestaña actual a un archivo @@ -1378,10 +1476,6 @@ Dirección: %4 Invalid amount for -paytxfee=<amount>: '%s' Cantidad inválida para -paytxfee=<amount>: '%s' - - Invalid amount - Cantidad inválida - Insufficient funds Fondos insuficientes @@ -1406,10 +1500,6 @@ Dirección: %4 Done loading Carga completa - - To use the %s option - Para utilizar la opción %s - Error Error diff --git a/src/qt/locale/bitcoin_es_DO.ts b/src/qt/locale/bitcoin_es_DO.ts index 2e5daf4cdb4ef..0900057f46e70 100644 --- a/src/qt/locale/bitcoin_es_DO.ts +++ b/src/qt/locale/bitcoin_es_DO.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Haga doble clic para editar una dirección o etiqueta - Create a new address Crear una nueva dirección @@ -66,12 +62,12 @@ Recibiendo dirección - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estas son sus direcciones Bitcoin para enviar pagos. Compruebe siempre la cantidad y la dirección receptora antes de transferir monedas. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Estas son sus direcciones Hypercoin para enviar pagos. Compruebe siempre la cantidad y la dirección receptora antes de transferir monedas. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Estas son sus direcciones de Bitcoin para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Estas son sus direcciones de Hypercoin para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción. Copy &Label @@ -160,8 +156,8 @@ Confirmar cifrado de la cartera - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Atencion: ¡Si cifra su monedero y pierde la contraseña perderá <b>TODOS SUS BITCOINS</b>!" + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Atencion: ¡Si cifra su monedero y pierde la contraseña perderá <b>TODOS SUS HYPERCOINS</b>!" Are you sure you wish to encrypt your wallet? @@ -180,8 +176,8 @@ Monedero cifrado - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se cerrará para finalizar el proceso de cifrado. Recuerde que el cifrado de su monedero no puede proteger totalmente sus bitcoins de robo por malware que infecte su sistema. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin se cerrará para finalizar el proceso de cifrado. Recuerde que el cifrado de su monedero no puede proteger totalmente sus hypercoins de robo por malware que infecte su sistema. Wallet encryption failed @@ -295,12 +291,12 @@ Reindexando bloques en disco... - Send coins to a Bitcoin address - Enviar monedas a una dirección Bitcoin + Send coins to a Hypercoin address + Enviar monedas a una dirección Hypercoin - Modify configuration options for Bitcoin - Modificar las opciones de configuración de Bitcoin + Modify configuration options for Hypercoin + Modificar las opciones de configuración de Hypercoin Backup wallet to another location @@ -323,8 +319,8 @@ &Verificar mensaje... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,12 +347,12 @@ Cifrar las claves privadas de su monedero - Sign messages with your Bitcoin addresses to prove you own them - Firmar mensajes con sus direcciones Bitcoin para demostrar la propiedad + Sign messages with your Hypercoin addresses to prove you own them + Firmar mensajes con sus direcciones Hypercoin para demostrar la propiedad - Verify messages to ensure they were signed with specified Bitcoin addresses - Verificar mensajes comprobando que están firmados con direcciones Bitcoin concretas + Verify messages to ensure they were signed with specified Hypercoin addresses + Verificar mensajes comprobando que están firmados con direcciones Hypercoin concretas &File @@ -375,16 +371,16 @@ Barra de pestañas - Bitcoin Core - Núcleo de Bitcoin + Hypercoin Core + Núcleo de Hypercoin - Request payments (generates QR codes and bitcoin: URIs) - Solicitar pagos (genera codigo QR y URL's de Bitcoin) + Request payments (generates QR codes and hypercoin: URIs) + Solicitar pagos (genera codigo QR y URL's de Hypercoin) - &About Bitcoin Core - &Acerca del Núcleo de Bitcoin + &About Hypercoin Core + &Acerca del Núcleo de Hypercoin Show the list of used sending addresses and labels @@ -395,8 +391,8 @@ Muestra la lista de direcciones de recepción y etiquetas - Open a bitcoin: URI or payment request - Abrir un bitcoin: URI o petición de pago + Open a hypercoin: URI or payment request + Abrir un hypercoin: URI o petición de pago &Command-line options @@ -716,8 +712,8 @@ Dirección: %4 La dirección introducida "%1" ya está presente en la libreta de direcciones. - The entered address "%1" is not a valid Bitcoin address. - La dirección introducida "%1" no es una dirección Bitcoin válida. + The entered address "%1" is not a valid Hypercoin address. + La dirección introducida "%1" no es una dirección Hypercoin válida. Could not unlock wallet. @@ -754,16 +750,16 @@ Dirección: %4 HelpMessageDialog - Bitcoin Core - Núcleo de Bitcoin + Hypercoin Core + Núcleo de Hypercoin version versión - About Bitcoin Core - Acerca del Núcleo de Bitcoin + About Hypercoin Core + Acerca del Núcleo de Hypercoin Command-line options @@ -805,16 +801,16 @@ Dirección: %4 Bienvenido - Welcome to Bitcoin Core. - Bienvenido al Núcleo de Bitcoin + Welcome to Hypercoin Core. + Bienvenido al Núcleo de Hypercoin - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Al ser la primera vez que se ejecuta el programa, puede elegir dónde almacenará sus datos Bitcoin-Qt. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Al ser la primera vez que se ejecuta el programa, puede elegir dónde almacenará sus datos Hypercoin-Qt. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin-Qt va a descargar y guardar una copia de la cadena de bloques de Bitcoin. Se almacenará al menos %1GB de datos en este directorio, que irá creciendo con el tiempo. El monedero se guardará también en este directorio. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin-Qt va a descargar y guardar una copia de la cadena de bloques de Hypercoin. Se almacenará al menos %1GB de datos en este directorio, que irá creciendo con el tiempo. El monedero se guardará también en este directorio. Use the default data directory @@ -825,8 +821,8 @@ Dirección: %4 Utilice un directorio de datos personalizado: - Bitcoin Core - Núcleo de Bitcoin + Hypercoin Core + Núcleo de Hypercoin Error @@ -867,12 +863,12 @@ Dirección: %4 &Principal - Automatically start Bitcoin after logging in to the system. - Iniciar Bitcoin automáticamente al encender el sistema. + Automatically start Hypercoin after logging in to the system. + Iniciar Hypercoin automáticamente al encender el sistema. - &Start Bitcoin on system login - &Iniciar Bitcoin al iniciar el sistema + &Start Hypercoin on system login + &Iniciar Hypercoin al iniciar el sistema MB @@ -899,8 +895,8 @@ Dirección: %4 Experto - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir automáticamente el puerto del cliente Bitcoin en el router. Esta opción solo funciona si el router admite UPnP y está activado. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir automáticamente el puerto del cliente Hypercoin en el router. Esta opción solo funciona si el router admite UPnP y está activado. Map port using &UPnP @@ -947,8 +943,8 @@ Dirección: %4 I&dioma de la interfaz de usuario - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - El idioma de la interfaz de usuario puede establecerse aquí. Este ajuste se aplicará cuando se reinicie Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + El idioma de la interfaz de usuario puede establecerse aquí. Este ajuste se aplicará cuando se reinicie Hypercoin. &Unit to show amounts in: @@ -1002,8 +998,8 @@ Dirección: %4 Desde - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Bitcoin después de que se haya establecido una conexión, pero este proceso aún no se ha completado. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Hypercoin después de que se haya establecido una conexión, pero este proceso aún no se ha completado. Your current spendable balance @@ -1053,8 +1049,8 @@ Dirección: %4 Error en petición de pago - Cannot start bitcoin: click-to-pay handler - No se pudo iniciar bitcoin: manejador de pago-al-clic + Cannot start hypercoin: click-to-pay handler + No se pudo iniciar hypercoin: manejador de pago-al-clic Unverified payment requests to custom payment scripts are unsupported. @@ -1217,7 +1213,7 @@ Dirección: %4 Archivo de registro de depuración - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. Abrir el archivo de registro de depuración en el directorio actual de datos. Esto puede llevar varios segundos para archivos de registro grandes. @@ -1225,8 +1221,8 @@ Dirección: %4 Borrar consola - Welcome to the Bitcoin RPC console. - Bienvenido a la consola RPC de Bitcoin + Welcome to the Hypercoin RPC console. + Bienvenido a la consola RPC de Hypercoin Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1516,10 +1512,6 @@ Dirección: %4 Copy change Copiar Cambio - - Total Amount %1 (= %2) - Cuantía Total %1 (=%2) - or o @@ -1553,8 +1545,8 @@ Dirección: %4 La transacción fue rechazada. Esto puede haber ocurrido si alguna de las monedas ya estaba gastada o si ha usado una copia de wallet.dat y las monedas se gastaron en la copia pero no se han marcado como gastadas aqui. - Warning: Invalid Bitcoin address - Alerta: Dirección de Bitcoin inválida + Warning: Invalid Hypercoin address + Alerta: Dirección de Hypercoin inválida (no label) @@ -1562,7 +1554,7 @@ Dirección: %4 Warning: Unknown change address - Alerta: Dirección de Bitcoin inválida + Alerta: Dirección de Hypercoin inválida Are you sure you want to send? @@ -1682,8 +1674,8 @@ Dirección: %4 Copiar la firma actual al portapapeles del sistema - Sign the message to prove you own this Bitcoin address - Firmar el mensaje para demostrar que se posee esta dirección Bitcoin + Sign the message to prove you own this Hypercoin address + Firmar el mensaje para demostrar que se posee esta dirección Hypercoin Sign &Message @@ -1706,8 +1698,8 @@ Dirección: %4 Introduzca la dirección para la firma, el mensaje (asegurándose de copiar tal cual los saltos de línea, espacios, tabulaciones, etc.) y la firma a continuación para verificar el mensaje. Tenga cuidado de no asumir más información de lo que dice el propio mensaje firmado para evitar fraudes basados en ataques de tipo man-in-the-middle. - Verify the message to ensure it was signed with the specified Bitcoin address - Verificar el mensaje para comprobar que fue firmado con la dirección Bitcoin indicada + Verify the message to ensure it was signed with the specified Hypercoin address + Verificar el mensaje para comprobar que fue firmado con la dirección Hypercoin indicada Verify &Message @@ -1773,8 +1765,8 @@ Dirección: %4 SplashScreen - Bitcoin Core - Núcleo de Bitcoin + Hypercoin Core + Núcleo de Hypercoin The Bitcoin Core developers @@ -2230,42 +2222,10 @@ Dirección: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Aceptar conexiones desde el exterior (predeterminado: 1 si no -proxy o -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, debe establecer un valor rpcpassword en el archivo de configuración: -%s -Se recomienda utilizar la siguiente contraseña aleatoria: -rpcuser=bitcoinrpc -rpcpassword=%s -(no es necesario recordar esta contraseña) -El nombre de usuario y la contraseña DEBEN NO ser iguales. -Si el archivo no existe, créelo con permisos de archivo de solo lectura. -Se recomienda también establecer alertnotify para recibir notificaciones de problemas. -Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincular a la dirección dada y escuchar siempre en ella. Utilice la notación [host]:port para IPv6 - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - ¡Error: se ha rechazado la transacción! Esto puede ocurrir si ya se han gastado algunas de las monedas del monedero, como ocurriría si hubiera hecho una copia de wallet.dat y se hubieran gastado monedas a partir de la copia, con lo que no se habrían marcado aquí como gastadas. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - ¡Error: Esta transacción requiere una comisión de al menos %s debido a su monto, complejidad, o al uso de fondos recién recibidos! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Ejecutar comando cuando una transacción del monedero cambia (%s en cmd se remplazará por TxID) @@ -2342,10 +2302,6 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error: Disk space is low! Error: ¡Espacio en disco bajo! - - Error: Wallet locked, unable to create transaction! - Error: ¡El monedero está bloqueado; no se puede crear la transacción! - Failed to listen on any port. Use -listen=0 if you want this. Ha fallado la escucha en todos los puertos. Use -listen=0 si desea esto. @@ -2418,10 +2374,26 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -mintxfee=<amount>: '%s' Inválido por el monto -mintxfee=<amount>: '%s' + + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Opciones RPC SSL: (Vea la Wiki de Hypercoin para las instrucciones de la configuración de SSL) + + + RPC server options: + Opciones del sservidor RPC: + + + Randomly drop 1 of every <n> network messages + Descartar aleatoriamente 1 de cada <n> mensajes de red + Send trace/debug info to console instead of debug.log file Enviar información de trazas/depuración a la consola en lugar de al archivo debug.log + + Show all debugging options (usage: --help -help-debug) + Mostrar todas las opciones de depuración (uso: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Reducir el archivo debug.log al iniciar el cliente (predeterminado: 1 sin -debug) @@ -2459,6 +2431,10 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Warning: This version is obsolete, upgrade required! Aviso: Esta versión es obsoleta, actualización necesaria! + + on startup + al iniciar + wallet.dat corrupt, salvage failed wallet.dat corrupto. Ha fallado la recuperación. @@ -2526,10 +2502,6 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Cantidad inválida para -paytxfee=<amount>: '%s' - - Invalid amount - Cuantía no válida - Insufficient funds Fondos insuficientes @@ -2562,13 +2534,9 @@ Por ejemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Generado pero no aceptado - - To use the %s option - Para utilizar la opción %s - Error Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_es_MX.ts b/src/qt/locale/bitcoin_es_MX.ts index bedc5d243e096..84900858fe3d8 100644 --- a/src/qt/locale/bitcoin_es_MX.ts +++ b/src/qt/locale/bitcoin_es_MX.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Haga doble clic para editar el domicilio o la etiqueta - Create a new address Crear una dirección nueva @@ -66,12 +62,12 @@ Recibiendo direcciones - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estas son tus direcciones de Bitcoin para enviar pagos. Siempre revise la cantidad y la dirección receptora antes de enviar monedas + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Estas son tus direcciones de Hypercoin para enviar pagos. Siempre revise la cantidad y la dirección receptora antes de enviar monedas - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Estas son tus direcciones Bitcoin para recibir pagos. Es recomendado usar una nueva dirección receptora para cada transacción. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Estas son tus direcciones Hypercoin para recibir pagos. Es recomendado usar una nueva dirección receptora para cada transacción. Copy &Label @@ -156,8 +152,8 @@ Confirmar la encriptación de cartera - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Advertencia: Si encripta su cartera y pierde su contraseña, <b>PERDERÁ TODOS SUS BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Advertencia: Si encripta su cartera y pierde su contraseña, <b>PERDERÁ TODOS SUS HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -172,8 +168,8 @@ Cartera encriptada - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptar tu cartera no protege completamente a tus bitcoins de ser robadas por malware infectando tu computadora. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin se cerrará para finalizar el proceso de encriptación. Recuerda que encriptar tu cartera no protege completamente a tus hypercoins de ser robadas por malware infectando tu computadora. Wallet encryption failed @@ -287,12 +283,12 @@ Reindexando bloques en el disco... - Send coins to a Bitcoin address - Enviar monedas a una dirección Bitcoin + Send coins to a Hypercoin address + Enviar monedas a una dirección Hypercoin - Modify configuration options for Bitcoin - Modificar las opciones de configuración de Bitcoin + Modify configuration options for Hypercoin + Modificar las opciones de configuración de Hypercoin Backup wallet to another location @@ -331,20 +327,20 @@ Pestañas - Bitcoin Core - nucleo Bitcoin + Hypercoin Core + nucleo Hypercoin &Command-line options opciones de la &Linea de comandos - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Mostrar mensaje de ayuda del nucleo de Bitcoin para optener una lista con los posibles comandos de Bitcoin + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Mostrar mensaje de ayuda del nucleo de Hypercoin para optener una lista con los posibles comandos de Hypercoin - %n active connection(s) to Bitcoin network - %n Activar conexión a la red de Bitcoin%n Activar conexiones a la red de Bitcoin + %n active connection(s) to Hypercoin network + %n Activar conexión a la red de Hypercoin%n Activar conexiones a la red de Hypercoin Up to date @@ -494,8 +490,8 @@ HelpMessageDialog - Bitcoin Core - nucleo Bitcoin + Hypercoin Core + nucleo Hypercoin version @@ -506,8 +502,8 @@ (%1-bit) - About Bitcoin Core - Acerca de Bitcoin Core + About Hypercoin Core + Acerca de Hypercoin Core Usage: @@ -541,8 +537,8 @@ Intro - Bitcoin Core - nucleo Bitcoin + Hypercoin Core + nucleo Hypercoin @@ -592,8 +588,8 @@ &Etiqueta - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Mensaje opcional para agregar a la solicitud de pago, el cual será mostrado cuando la solicitud este abierta. Nota: El mensaje no se manda con el pago a travéz de la red de Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Mensaje opcional para agregar a la solicitud de pago, el cual será mostrado cuando la solicitud este abierta. Nota: El mensaje no se manda con el pago a travéz de la red de Hypercoin. Use this form to request payments. All fields are <b>optional</b>. @@ -712,10 +708,6 @@ Copy change copiar cambio - - Total Amount %1 (= %2) - Monto total %1(=%2) - or o @@ -733,8 +725,8 @@ ¡La transación fue rechazada! Esto puede ocurrir si algunas de tus monedas en tu cartera han sido gastadas, al igual que si usas una cartera copiada y la monedas fueron gastadas en la copia pero no se marcaron como gastadas. - Warning: Invalid Bitcoin address - Advertencia: Dirección de Bitcoin invalida + Warning: Invalid Hypercoin address + Advertencia: Dirección de Hypercoin invalida (no label) @@ -803,8 +795,8 @@ ShutdownWindow - Bitcoin Core is shutting down... - Apagando el nucleo de Bitcoin... + Hypercoin Core is shutting down... + Apagando el nucleo de Hypercoin... Do not shut down the computer until this window disappears. @@ -829,8 +821,8 @@ SplashScreen - Bitcoin Core - nucleo Bitcoin + Hypercoin Core + nucleo Hypercoin The Bitcoin Core developers @@ -1131,4 +1123,4 @@ Carga completa - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_es_UY.ts b/src/qt/locale/bitcoin_es_UY.ts index a5a1583b19c9b..d53bb31a32c24 100644 --- a/src/qt/locale/bitcoin_es_UY.ts +++ b/src/qt/locale/bitcoin_es_UY.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Doble clic para editar etiqueta o dirección - Create a new address Crear una nueva dirección @@ -163,8 +159,8 @@ Barra de herramientas - %n active connection(s) to Bitcoin network - %n conexión activa a la red Bitcoin %n conexiones activas a la red Bitcoin + %n active connection(s) to Hypercoin network + %n conexión activa a la red Hypercoin %n conexiones activas a la red Hypercoin Up to date diff --git a/src/qt/locale/bitcoin_et.ts b/src/qt/locale/bitcoin_et.ts index 801fcf6258e09..601ca6dc3667a 100644 --- a/src/qt/locale/bitcoin_et.ts +++ b/src/qt/locale/bitcoin_et.ts @@ -1,18 +1,26 @@ - + AddressBookPage - - Double-click to edit address or label - Topeltklõps aadressi või märgise muutmiseks - Create a new address Loo uus aadress + + &New + &Uus + Copy the currently selected address to the system clipboard Kopeeri märgistatud aadress vahemällu + + &Copy + &Kopeeri + + + C&lose + S&ulge + &Copy Address &Aadressi kopeerimine @@ -25,13 +33,21 @@ Export the data in the current tab to a file Ekspordi kuvatava vahelehe sisu faili + + &Export + &Ekspordi + &Delete &Kustuta - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Need on sinu Bitcoini aadressid maksete saatmiseks. Müntide saatmisel kontrolli alati summat ning saaja aadressi. + C&hoose + V&ali + + + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Need on sinu Hypercoini aadressid maksete saatmiseks. Müntide saatmisel kontrolli alati summat ning saaja aadressi. Copy &Label @@ -45,6 +61,10 @@ Comma separated file (*.csv) Komaeraldatud fail (*.csv) + + Exporting Failed + Eksportimine Ebaõnnestus + AddressTableModel @@ -112,8 +132,8 @@ Kinnita rahakoti krüpteering - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Hoiatus: Kui sa kaotad oma, rahakoti krüpteerimisel kasutatud, salafraasi, siis <b>KAOTAD KA KÕIK OMA BITCOINID</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Hoiatus: Kui sa kaotad oma, rahakoti krüpteerimisel kasutatud, salafraasi, siis <b>KAOTAD KA KÕIK OMA HYPERCOINID</b>! Are you sure you wish to encrypt your wallet? @@ -132,8 +152,8 @@ Rahakott krüpteeritud - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin sulgub krüpteeringu lõpetamiseks. Pea meeles, et rahakoti krüpteerimine ei välista bitcoinide vargust, kui sinu arvuti on nakatunud pahavaraga. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin sulgub krüpteeringu lõpetamiseks. Pea meeles, et rahakoti krüpteerimine ei välista hypercoinide vargust, kui sinu arvuti on nakatunud pahavaraga. Wallet encryption failed @@ -222,6 +242,10 @@ &Change Passphrase... &Salafraasi muutmine + + Open &URI... + Ava &URI... + Importing blocks from disk... Impordi blokid kettalt... @@ -231,12 +255,12 @@ Kettal olevate blokkide re-indekseerimine... - Send coins to a Bitcoin address - Saada münte Bitcoini aadressile + Send coins to a Hypercoin address + Saada münte Hypercoini aadressile - Modify configuration options for Bitcoin - Muuda Bitcoini seadeid + Modify configuration options for Hypercoin + Muuda Hypercoini seadeid Backup wallet to another location @@ -259,8 +283,8 @@ &Kontrolli sõnumit... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -287,12 +311,12 @@ Krüpteeri oma rahakoti privaatvõtmed - Sign messages with your Bitcoin addresses to prove you own them - Omandi tõestamiseks allkirjasta sõnumid oma Bitcoini aadressiga + Sign messages with your Hypercoin addresses to prove you own them + Omandi tõestamiseks allkirjasta sõnumid oma Hypercoini aadressiga - Verify messages to ensure they were signed with specified Bitcoin addresses - Kinnita sõnumid kindlustamaks et need allkirjastati määratud Bitcoini aadressiga + Verify messages to ensure they were signed with specified Hypercoin addresses + Kinnita sõnumid kindlustamaks et need allkirjastati määratud Hypercoini aadressiga &File @@ -311,12 +335,12 @@ Vahelehe tööriistariba - Bitcoin Core - Bitcoini tuumik + Hypercoin Core + Hypercoini tuumik - %n active connection(s) to Bitcoin network - %n aktiivne ühendus Bitcoini võrku%n aktiivset ühendust Bitcoini võrku + %n active connection(s) to Hypercoin network + %n aktiivne ühendus Hypercoini võrku%n aktiivset ühendust Hypercoini võrku %n hour(s) @@ -330,6 +354,10 @@ %n week(s) %n nädal%n nädalat + + %1 and %2 + %1 ja %2 + %1 behind %1 maas @@ -399,10 +427,18 @@ Aadress: %4⏎ CoinControlDialog + + Quantity: + Kogus: + Amount: Summa: + + Fee: + Tasu: + Amount Kogus @@ -431,6 +467,50 @@ Aadress: %4⏎ Copy transaction ID Kopeeri tehingu ID + + Copy fee + Kopeeri tasu + + + highest + kõrgeim + + + higher + kõrgem + + + high + kõrge + + + medium + keskmine + + + low + madal + + + lower + madalam + + + lowest + madalaim + + + (%1 locked) + (%1 lukustatud) + + + yes + jah + + + no + ei + (no label) (silti pole) @@ -471,8 +551,8 @@ Aadress: %4⏎ Selline aadress on juba olemas: "%1" - The entered address "%1" is not a valid Bitcoin address. - Sisestatud aadress "%1" ei ole Bitcoinis kehtiv. + The entered address "%1" is not a valid Hypercoin address. + Sisestatud aadress "%1" ei ole Hypercoinis kehtiv. Could not unlock wallet. @@ -485,17 +565,25 @@ Aadress: %4⏎ FreespaceChecker + + name + nimi + HelpMessageDialog - Bitcoin Core - Bitcoini tuumik + Hypercoin Core + Hypercoini tuumik version versioon + + About Hypercoin Core + Kirjeldus Hypercoini Tuumast + Command-line options Käsurea valikud @@ -528,8 +616,12 @@ Aadress: %4⏎ Intro - Bitcoin Core - Bitcoini tuumik + Welcome + Teretulemast + + + Hypercoin Core + Hypercoini tuumik Error @@ -538,6 +630,14 @@ Aadress: %4⏎ OpenURIDialog + + Open URI + Ava URI + + + URI: + URI: + OptionsDialog @@ -546,12 +646,16 @@ Aadress: %4⏎ Valikud - Automatically start Bitcoin after logging in to the system. - Käivita Bitcoin süsteemi logimisel. + Automatically start Hypercoin after logging in to the system. + Käivita Hypercoin süsteemi logimisel. - &Start Bitcoin on system login - &Start Bitcoin sisselogimisel + &Start Hypercoin on system login + &Start Hypercoin sisselogimisel + + + MB + MB Reset all client options to default. @@ -566,8 +670,16 @@ Aadress: %4⏎ &Võrk - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Bitcoini kliendi pordi automaatne avamine ruuteris. Toimib, kui sinu ruuter aktsepteerib UPnP ühendust. + W&allet + R&ahakott + + + Expert + Ekspert + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Hypercoini kliendi pordi automaatne avamine ruuteris. Toimib, kui sinu ruuter aktsepteerib UPnP ühendust. Map port using &UPnP @@ -614,8 +726,8 @@ Aadress: %4⏎ Kasutajaliidese &keel: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Kasutajaliidese keele valimise koht. Valik rakendub Bitcoini käivitamisel. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Kasutajaliidese keele valimise koht. Valik rakendub Hypercoini käivitamisel. &Unit to show amounts in: @@ -653,8 +765,8 @@ Aadress: %4⏎ Vorm - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Kuvatav info ei pruugi olla ajakohane. Ühenduse loomisel süngitakse sinu rahakott automaatselt Bitconi võrgustikuga, kuid see toiming on hetkel lõpetamata. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Kuvatav info ei pruugi olla ajakohane. Ühenduse loomisel süngitakse sinu rahakott automaatselt Hypercoin võrgustikuga, kuid see toiming on hetkel lõpetamata. Immature: @@ -664,6 +776,10 @@ Aadress: %4⏎ Mined balance that has not yet matured Mitte aegunud mine'itud jääk + + Recent transactions + Hiljutised tehingud + out of sync sünkimata @@ -676,8 +792,8 @@ Aadress: %4⏎ URI käsitsemine - Cannot start bitcoin: click-to-pay handler - Bitcoin ei käivitu: vajuta-maksa toiming + Cannot start hypercoin: click-to-pay handler + Hypercoin ei käivitu: vajuta-maksa toiming @@ -719,6 +835,10 @@ Aadress: %4⏎ &Information &Informatsioon + + General + Üldine + Using OpenSSL version Kasutan OpenSSL versiooni @@ -731,6 +851,10 @@ Aadress: %4⏎ Network Võrgustik + + Name + Nimi + Number of connections Ühenduste arv @@ -743,6 +867,26 @@ Aadress: %4⏎ Current number of blocks Plokkide hetkearv + + Received + Vastuvõetud + + + Sent + Saadetud + + + Direction + Suund + + + Version + Versioon + + + Services + Teenused + Last block time Viimane ploki aeg @@ -764,16 +908,16 @@ Aadress: %4⏎ Debugimise logifail - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Ava Bitcoini logifail praegusest andmekaustast. Toiminguks võib kuluda kuni mõni sekund. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Ava Hypercoini logifail praegusest andmekaustast. Toiminguks võib kuluda kuni mõni sekund. Clear console Puhasta konsool - Welcome to the Bitcoin RPC console. - Teretulemast Bitcoini RPC konsooli. + Welcome to the Hypercoin RPC console. + Teretulemast Hypercoini RPC konsooli. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -783,17 +927,53 @@ Aadress: %4⏎ Type <b>help</b> for an overview of available commands. Ülevaateks võimalikest käsklustest trüki <b>help</b>. + + %1 B + %1 B + + + %1 KB + %1 B + + + %1 MB + %1 MB + + + %1 GB + %1 GB + ReceiveCoinsDialog + + &Amount: + &Summa: + &Label: &Märgis + + &Message: + &Sõnum: + + + Show + Näita + + + Remove + Eemalda + Copy label Märgise kopeerimine + + Copy message + Kopeeri sõnum + Copy amount Kopeeri summa @@ -848,17 +1028,49 @@ Aadress: %4⏎ (no label) (silti pole) - + + (no message) + (sõnum puudub) + + + (no amount) + (summa puudub) + + SendCoinsDialog Send Coins Müntide saatmine + + Quantity: + Kogus: + Amount: Summa: + + Fee: + Tasu: + + + Choose... + Vali... + + + Recommended: + Soovitatud: + + + normal + normaalne + + + fast + kiire + Send to multiple recipients at once Saatmine mitmele korraga @@ -891,6 +1103,14 @@ Aadress: %4⏎ Copy amount Kopeeri summa + + Copy fee + Kopeeri tasu + + + or + või + The recipient address is not valid, please recheck. Saaja aadress ei ole kehtiv, palun kontrolli. @@ -993,8 +1213,8 @@ Aadress: %4⏎ Kopeeri praegune signatuur vahemällu - Sign the message to prove you own this Bitcoin address - Allkirjasta sõnum Bitcoini aadressi sulle kuulumise tõestamiseks + Sign the message to prove you own this Hypercoin address + Allkirjasta sõnum Hypercoini aadressi sulle kuulumise tõestamiseks Sign &Message @@ -1017,8 +1237,8 @@ Aadress: %4⏎ Kinnitamiseks sisesta allkirjastamise aadress, sõnum (kindlasti kopeeri täpselt ka reavahetused, tühikud, tabulaatorid jms) ning allolev signatuur. - Verify the message to ensure it was signed with the specified Bitcoin address - Kinnita sõnum tõestamaks selle allkirjastatust määratud Bitcoini aadressiga. + Verify the message to ensure it was signed with the specified Hypercoin address + Kinnita sõnum tõestamaks selle allkirjastatust määratud Hypercoini aadressiga. Verify &Message @@ -1084,8 +1304,12 @@ Aadress: %4⏎ SplashScreen - Bitcoin Core - Bitcoini tuumik + Hypercoin Core + Hypercoini tuumik + + + The Bitcoin Core developers + Bitcoini Tuuma arendajad [testnet] @@ -1094,7 +1318,11 @@ Aadress: %4⏎ TrafficGraphWidget - + + KB/s + KB/s + + TransactionDesc @@ -1390,6 +1618,10 @@ Aadress: %4⏎ Show transaction details Kuva tehingu detailid + + Exporting Failed + Eksportimine Ebaõnnestus + Comma separated file (*.csv) Komaeraldatud fail (*.csv) @@ -1442,6 +1674,10 @@ Aadress: %4⏎ WalletView + + &Export + &Ekspordi + Export the data in the current tab to a file Ekspordi kuvatava vahelehe sisu faili @@ -1497,42 +1733,10 @@ Aadress: %4⏎ Accept connections from outside (default: 1 if no -proxy or -connect) Luba välisühendusi (vaikeväärtus: 1 kui puudub -proxy või -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, sul tuleb rpcpassword määrata seadete failis: -%s -Soovitatav on kasutada järgmist juhuslikku parooli: -rpcuser=bitcoinrpc -rpcpassword=%s -(seda parooli ei pea meeles pidama) -Kasutajanimi ning parool EI TOHI kattuda. -Kui faili ei leita, loo see ainult-omaniku-loetavas failiõigustes . -Soovitatav on seadistada tõrgete puhul teavitus; -nt: alertnotify=echo %%s | email -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Määratud aadressiga sidumine ning sellelt kuulamine. IPv6 jaoks kasuta vormingut [host]:port - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Tõrge: Tehingust keelduti! Põhjuseks võib olla juba kulutatud mündid, nt kui wallet.dat fail koopias kulutatid mündid, kuid ei märgitud neid siin vastavalt. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Tõrge: Selle tehingu jaoks on nõutav lisatasu vähemalt %s. Põhjuseks võib olla summa suurus, keerukus või hiljuti saadud summade kasutamine! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Käivita käsklus, kui rahakoti tehing muutub (%s cmd's muudetakse TxID'ks) @@ -1597,10 +1801,6 @@ nt: alertnotify=echo %%s | email -s "Bitcoin Alert" admin@foo.com Error: Disk space is low! Tõrge: liiga vähe kettaruumi! - - Error: Wallet locked, unable to create transaction! - Tõrge: Rahakott on lukus, tehingu loomine ei ole võimalik! - Failed to listen on any port. Use -listen=0 if you want this. Pordi kuulamine nurjus. Soovikorral kasuta -listen=0. @@ -1617,6 +1817,10 @@ nt: alertnotify=echo %%s | email -s "Bitcoin Alert" admin@foo.com Verifying wallet... Kontrollin rahakotti... + + Wallet options: + Rahakoti valikud: + Imports blocks from external blk000??.dat file Impordi blokid välisest blk000??.dat failist @@ -1625,6 +1829,10 @@ nt: alertnotify=echo %%s | email -s "Bitcoin Alert" admin@foo.com Information Informatsioon + + RPC server options: + RPC serveri valikud: + Send trace/debug info to console instead of debug.log file Saada jälitus/debug, debug.log faili asemel, konsooli @@ -1633,6 +1841,18 @@ nt: alertnotify=echo %%s | email -s "Bitcoin Alert" admin@foo.com Shrink debug.log file on client startup (default: 1 when no -debug) Kahanda programmi käivitamisel debug.log faili (vaikeväärtus: 1, kui ei ole -debug) + + Signing transaction failed + Tehingu allkirjastamine ebaõnnestus + + + Transaction amount too small + Tehingu summa liiga väikene + + + Transaction too large + Tehing liiga suur + Use UPnP to map the listening port (default: 1 when listening) Kasuta kuulatava pordi määramiseks UPnP ühendust (vaikeväärtus: 1, kui kuulatakse) @@ -1649,6 +1869,10 @@ nt: alertnotify=echo %%s | email -s "Bitcoin Alert" admin@foo.com Warning: This version is obsolete, upgrade required! Hoiatus: versioon on aegunud, uuendus on nõutav! + + on startup + käivitamisel + wallet.dat corrupt, salvage failed wallet.dat fail on katki, päästmine ebaõnnestus @@ -1689,6 +1913,10 @@ nt: alertnotify=echo %%s | email -s "Bitcoin Alert" admin@foo.com Error loading wallet.dat: Wallet corrupted Viga wallet.dat käivitamisel. Vigane rahakkott + + (default: %s) + (vaikimisi: %s) + Error loading wallet.dat Viga wallet.dat käivitamisel @@ -1713,10 +1941,6 @@ nt: alertnotify=echo %%s | email -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' -paytxfee=<amount> jaoks vigane kogus: '%s' - - Invalid amount - Kehtetu summa - Insufficient funds Liiga suur summa @@ -1749,13 +1973,9 @@ nt: alertnotify=echo %%s | email -s "Bitcoin Alert" admin@foo.com Done loading Laetud - - To use the %s option - %s valiku kasutamine - Error Tõrge - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_eu_ES.ts b/src/qt/locale/bitcoin_eu_ES.ts index ea0ce1a67d3e1..517ca0e41fc1d 100644 --- a/src/qt/locale/bitcoin_eu_ES.ts +++ b/src/qt/locale/bitcoin_eu_ES.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Klik bikoitza helbidea edo etiketa editatzeko - Create a new address Sortu helbide berria @@ -148,7 +144,7 @@ Show information about Qt - Erakutsi Bitcoin-i buruzko informazioa + Erakutsi Hypercoin-i buruzko informazioa &Options... diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitcoin_fa.ts index 475515f4b72dd..0c39a32720a01 100644 --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitcoin_fa.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - برای ویرایش نشانی یا برچسب دوبار کلیک کنید + Right-click to edit address or label + برای تغییر آدرس و یا برچسب کلیک راست کنید. Create a new address @@ -46,8 +46,28 @@ &حذف - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - این‌ها نشانی‌های بیت‌کوین شما برای ارسال وجود هستند. همیشه قبل از ارسال سکه‌ها، نشانی دریافت‌کننده و مقدار ارسالی را بررسی کنید. + Choose the address to send coins to + آدرس مورد نظر برای ارسال کوین ها را انتخاب کنید + + + Choose the address to receive coins with + آدرس موردنظر برای دریافت کوین ها را انتخاب کنید. + + + Sending addresses + آدرس های ارسال کننده + + + Receiving addresses + آدرس های دریافت کننده + + + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + این‌ها نشانی‌های Hypercoin شما برای ارسال وجود هستند. همیشه قبل از ارسال سکه‌ها، نشانی دریافت‌کننده و مقدار ارسالی را بررسی کنید. + + + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + این‌ها نشانی‌های Hypercoin شما برای دریافت وجوه هستند. توصیه می‌شود یک نشانی دریافت جدید برای هر تبادل استفاده کنید. Copy &Label @@ -136,8 +156,8 @@ تأیید رمزنگاری کیف پول - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - هشدار: اگر کیف پول خود را رمزنگاری کنید و گذرواژه را فراموش کنید، <b>تمام دارایی بیت‌کوین خود را از دست خواهید داد</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + هشدار: اگر کیف پول خود را رمزنگاری کنید و گذرواژه را فراموش کنید، <b>تمام دارایی HYPERCOINS خود را از دست خواهید داد</b>! Are you sure you wish to encrypt your wallet? @@ -156,8 +176,12 @@ کیف پول رمزنگاری شد - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - بیت‌کوین هم اکنون بسته می‌شود تا فرایند رمزگذاری را تمام کند. به خاطر داشته باشید که رمزگذاری کردن کیف پول‌تان نمی‌تواند به طور کامل بیت‌کوین‌های شما را در برابر دزدیده شدن توسط بدافزارهایی که احتمالاً رایانهٔ شما را آلوده می‌کنند، محافظت نماید. + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + رمز جدید کیف پول خود را وارد کنید.<br/>از رمز عبوری استفاده کنید که<b> حداقل 10 کاراکتر تصادفی </b> و یا <b> حداقل 8 حرف داشته باشد.</b> + + + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin هم اکنون بسته می‌شود تا فرایند رمزگذاری را تمام کند. به خاطر داشته باشید که رمزگذاری کردن کیف پول‌تان نمی‌تواند به طور کامل Hypercoin‌های شما را در برابر دزدیده شدن توسط بدافزارهایی که احتمالاً رایانهٔ شما را آلوده می‌کنند، محافظت نماید. Wallet encryption failed @@ -202,6 +226,10 @@ &Overview &بررسی اجمالی + + Node + گره + Show general overview of wallet نمایش بررسی اجمالی کیف پول @@ -246,6 +274,18 @@ &Change Passphrase... &تغییر گذرواژه... + + &Sending addresses... + $ارسال آدرس ها... + + + &Receiving addresses... + &در حال دریافت آدرس ها... + + + Open &URI... + باز کردن &آدرس + Importing blocks from disk... دریافت بلوک‌ها از دیسک... @@ -255,12 +295,12 @@ بازنشانی بلوک‌ها روی دیسک... - Send coins to a Bitcoin address - ارسال وجه به نشانی بیت‌کوین + Send coins to a Hypercoin address + ارسال وجه به نشانی Hypercoin - Modify configuration options for Bitcoin - تغییر و اصلاح تنظیمات پیکربندی بیت‌کوین + Modify configuration options for Hypercoin + تغییر و اصلاح تنظیمات پیکربندی Hypercoin Backup wallet to another location @@ -283,8 +323,8 @@ با&زبینی پیام... - Bitcoin - بیت‌کوین + Hypercoin + Hypercoin Wallet @@ -298,6 +338,10 @@ &Receive &دریافت + + Show information about Hypercoin Core + نمایش اطلاعات در مورد Hypercoin + &Show / Hide &نمایش/ عدم نمایش @@ -311,12 +355,12 @@ رمزنگاری کلیدهای خصوصی متعلق به کیف پول شما - Sign messages with your Bitcoin addresses to prove you own them - برای اثبات اینکه پیام‌ها به شما تعلق دارند، آن‌ها را با نشانی بیت‌کوین خود امضا کنید + Sign messages with your Hypercoin addresses to prove you own them + برای اثبات اینکه پیام‌ها به شما تعلق دارند، آن‌ها را با نشانی Hypercoin خود امضا کنید - Verify messages to ensure they were signed with specified Bitcoin addresses - برای حصول اطمینان از اینکه پیام با نشانی بیت‌کوین مشخص شده امضا است یا خیر، پیام را شناسایی کنید + Verify messages to ensure they were signed with specified Hypercoin addresses + برای حصول اطمینان از اینکه پیام با نشانی Hypercoin مشخص شده امضا است یا خیر، پیام را شناسایی کنید &File @@ -335,12 +379,24 @@ نوارابزار برگه‌ها - Bitcoin Core - هسته Bitcoin + Hypercoin Core + هسته Hypercoin + + + &About Hypercoin Core + درباره هسته ی Hypercoin + + + Show the list of used sending addresses and labels + نمایش لیست آدرس های ارسال و لیبل ها + + + Show the list of used receiving addresses and labels + نمایش لیست آدرس های دریافت و لیبل ها - %n active connection(s) to Bitcoin network - %n ارتباط فعال با شبکهٔ بیت‌کوین + %n active connection(s) to Hypercoin network + %n ارتباط فعال با شبکهٔ Hypercoin No block source available... @@ -428,22 +484,74 @@ Address: %4 CoinControlDialog + + Coin Selection + انتخاب سکه + + + Quantity: + تعداد: + + + Bytes: + بایت ها: + Amount: مبلغ: + + Priority: + اولویت: + + + Fee: + هزینه: + + + After Fee: + هزینه ی پسین: + + + Change: + پول خورد: + + + Tree mode + مدل درختی + + + List mode + مدل لیست + Amount مبلغ + + Received with label + دریافت شده با برچسب + + + Received with address + دریافت شده با نشانی + Date تاریخ + + Confirmations + تاییدیه ها + Confirmed تأیید شده + + Priority + اولویت + Copy address کپی نشانی @@ -460,6 +568,46 @@ Address: %4 Copy transaction ID کپی شناسهٔ تراکنش + + highest + بیشترین + + + higher + بیشتر + + + high + زیاد + + + medium-high + متوسط رو به بالا + + + medium + متوسط + + + low-medium + متوسط متمایل به کم + + + low + کم + + + lower + کمتر + + + lowest + کمترین + + + none + هیچکدام + yes بله @@ -472,7 +620,11 @@ Address: %4 (no label) (بدون برچسب) - + + (change) + (تغییر) + + EditAddressDialog @@ -508,8 +660,8 @@ Address: %4 نشانی وارد شده «%1» در حال حاضر در دفترچه وجود دارد. - The entered address "%1" is not a valid Bitcoin address. - نشانی وارد شده «%1» یک نشانی معتبر بیت‌کوین نیست. + The entered address "%1" is not a valid Hypercoin address. + نشانی وارد شده «%1» یک نشانی معتبر Hypercoin نیست. Could not unlock wallet. @@ -546,13 +698,17 @@ Address: %4 HelpMessageDialog - Bitcoin Core - هسته Bitcoin + Hypercoin Core + هسته Hypercoin version نسخه + + About Hypercoin Core + درباره هسته ی Hypercoin + Command-line options گزینه‌های خط‌فرمان @@ -592,6 +748,14 @@ Address: %4 Welcome خوش‌آمدید + + Welcome to Hypercoin Core. + به هسته Hypercoin خوش آمدید. + + + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + از آنجایی که این اولین اجرای برنامه است، شما می‌توانید مسیر ذخیرهٔ داده‌ها را انتخاب کنید. + Use the default data directory استفاده از مسیر پیش‌فرض @@ -601,8 +765,8 @@ Address: %4 استفاده از یک مسیر سفارشی: - Bitcoin Core - هسته Bitcoin + Hypercoin Core + هسته Hypercoin Error @@ -623,12 +787,12 @@ Address: %4 &عمومی - Automatically start Bitcoin after logging in to the system. - اجرای خودکار بیت‌کوین در زمان ورود به سیستم. + Automatically start Hypercoin after logging in to the system. + اجرای خودکار Hypercoin در زمان ورود به سیستم. - &Start Bitcoin on system login - &اجرای بیت‌کوین با ورود به سیستم + &Start Hypercoin on system login + &اجرای Hypercoin با ورود به سیستم Reset all client options to default. @@ -647,8 +811,8 @@ Address: %4 استخراج - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - باز کردن خودکار درگاه شبکهٔ بیت‌کوین روی روترها. تنها زمانی کار می‌کند که روتر از پروتکل UPnP پشتیبانی کند و این پروتکل فعال باشد. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + باز کردن خودکار درگاه شبکهٔ Hypercoin روی روترها. تنها زمانی کار می‌کند که روتر از پروتکل UPnP پشتیبانی کند و این پروتکل فعال باشد. Map port using &UPnP @@ -695,8 +859,8 @@ Address: %4 زبان &رابط کاربری: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - زبان رابط کاربر می‌تواند در این‌جا تنظیم شود. تنظیمات بعد از ظروع مجدد بیت‌کوین اعمال خواهد شد. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + زبان رابط کاربر می‌تواند در این‌جا تنظیم شود. تنظیمات بعد از ظروع مجدد Hypercoin اعمال خواهد شد. &Unit to show amounts in: @@ -718,6 +882,10 @@ Address: %4 default پیش‌فرض + + none + هیچکدام + Confirm options reset تأییدِ بازنشانی گزینه‌ها @@ -738,8 +906,8 @@ Address: %4 فرم - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - اطلاعات نمایش‌داده شده ممکن است قدیمی باشند. بعد از این که یک اتصال با شبکه برقرار شد، کیف پول شما به‌صورت خودکار با شبکهٔ بیت‌کوین همگام‌سازی می‌شود. اما این روند هنوز کامل نشده است. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + اطلاعات نمایش‌داده شده ممکن است قدیمی باشند. بعد از این که یک اتصال با شبکه برقرار شد، کیف پول شما به‌صورت خودکار با شبکهٔ Hypercoin همگام‌سازی می‌شود. اما این روند هنوز کامل نشده است. Available: @@ -761,6 +929,10 @@ Address: %4 Mined balance that has not yet matured تراز استخراج شده از معدن که هنوز بالغ نشده است + + Balances + تراز ها + Total: جمع کل: @@ -769,6 +941,14 @@ Address: %4 Your current total balance تراز کل فعلی شما + + Spendable: + :قابل خرج کردن + + + Recent transactions + تراکنش های اخیر + out of sync ناهمگام @@ -781,8 +961,16 @@ Address: %4 مدیریت URI - Cannot start bitcoin: click-to-pay handler - نمی‌توان بیت‌کوین را اجرا کرد: کنترل‌کنندهٔ کلیک-و-پرداخت + Payment request rejected + درخواست پرداخت رد شد. + + + Payment request error + خطای درخواست پرداخت + + + Cannot start hypercoin: click-to-pay handler + نمی‌توان Hypercoin را اجرا کرد: کنترل‌کنندهٔ کلیک-و-پرداخت @@ -794,6 +982,10 @@ Address: %4 Amount مبلغ + + None + هیچکدام + N/A ناموجود @@ -852,6 +1044,22 @@ Address: %4 Current number of blocks تعداد فعلی بلوک‌ها + + Received + دریافتی + + + Sent + ارسال شده + + + Version + نسخه + + + Services + سرویس ها + Last block time زمان آخرین بلوک @@ -877,16 +1085,16 @@ Address: %4 فایلِ لاگِ اشکال زدایی - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - فایلِ لاگِ اشکال زدایی Bitcoin را از دایرکتوری جاری داده ها باز کنید. این عملیات ممکن است برای فایلهای لاگِ حجیم طولانی شود. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + فایلِ لاگِ اشکال زدایی Hypercoin را از دایرکتوری جاری داده ها باز کنید. این عملیات ممکن است برای فایلهای لاگِ حجیم طولانی شود. Clear console پاکسازی کنسول - Welcome to the Bitcoin RPC console. - به کنسور RPC بیت‌کوین خوش آمدید. + Welcome to the Hypercoin RPC console. + به کنسور RPC Hypercoin خوش آمدید. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -907,6 +1115,14 @@ Address: %4 &Label: &برچسب: + + Show + نمایش + + + Remove + حذف کردن + Copy label کپی برچسب @@ -976,10 +1192,38 @@ Address: %4 Send Coins ارسال سکه + + Quantity: + تعداد: + + + Bytes: + بایت ها: + Amount: مبلغ: + + Priority: + اولویت: + + + Fee: + هزینه: + + + After Fee: + هزینه ی پسین: + + + Change: + پول خورد: + + + fast + سریع + Send to multiple recipients at once ارسال به چند دریافت‌کنندهٔ به‌طور همزمان @@ -1040,6 +1284,10 @@ Address: %4 (no label) (بدون برچسب) + + Are you sure you want to send? + آیا مطمئن هستید که می خواهید ارسال کنید؟ + SendCoinsEntry @@ -1059,6 +1307,18 @@ Address: %4 &Label: &برچسب: + + Choose previously used address + انتخاب نشانی پیش‌تر استفاده شده + + + This is a normal payment. + این یک پرداخت عادی است + + + The Hypercoin address to send the payment to + نشانی Hypercoin برای ارسال پرداخت به آن + Alt+A Alt+A @@ -1071,6 +1331,10 @@ Address: %4 Alt+P Alt+P + + Remove this entry + حذف این مدخل + Message: پیام: @@ -1093,6 +1357,14 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. برای احراز اینکه پیام‌ها از جانب شما هستند، می‌توانید آن‌ها را با نشانی خودتان امضا کنید. مراقب باشید چیزی که بدان اطمینان ندارید را امضا نکنید زیرا حملات فیشینگ ممکن است بخواهند از.پیامی با امضای شما سوءاستفاده کنند. تنها مواردی را که حاوی اطلاعات دقیق و قابل قبول برای شما هستند امضا کنید. + + The Hypercoin address to sign the message with + نشانی Hypercoin برای امضاء پیغام با آن + + + Choose previously used address + انتخاب نشانی پیش‌تر استفاده شده + Alt+A Alt+A @@ -1118,7 +1390,7 @@ Address: %4 امضای فعلی را به حافظهٔ سیستم کپی کن - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address برای اثبات تعلق این نشانی به شما، پیام را امضا کنید @@ -1142,8 +1414,12 @@ Address: %4 برای شناسایی پیام، نشانیِ امضا کننده و متن پیام را وارد کنید. (مطمئن شوید که فاصله‌ها، تب‌ها و خطوط را عیناً کپی می‌کنید.) مراقب باشید در امضا چیزی بیشتر از آنچه در پیام می‌بینید وجود نداشته باشد تا فریب دزدان اینترنتی و حملات از نوع MITM را نخورید. - Verify the message to ensure it was signed with the specified Bitcoin address - برای حصول اطمینان از اینکه پیام با نشانی بیت‌کوین مشخص شده امضا است یا خیر، پیام را شناسایی کنید + The Hypercoin address the message was signed with + نشانی Hypercoin که پیغام با آن امضاء شده + + + Verify the message to ensure it was signed with the specified Hypercoin address + برای حصول اطمینان از اینکه پیام با نشانی Hypercoin مشخص شده امضا است یا خیر، پیام را شناسایی کنید Verify &Message @@ -1209,8 +1485,12 @@ Address: %4 SplashScreen - Bitcoin Core - هسته Bitcoin + Hypercoin Core + هسته Hypercoin + + + The Bitcoin Core developers + توسعه‌دهندگان هسته بیت‌کوین [testnet] @@ -1219,7 +1499,11 @@ Address: %4 TrafficGraphWidget - + + KB/s + کیلوبایت + + TransactionDesc @@ -1523,6 +1807,10 @@ Address: %4 Exporting Failed استخراج انجام نشد + + Exporting Successful + استخراج موفق + Comma separated file (*.csv) پروندهٔ نوع CSV جداشونده با کاما (*.csv) @@ -1638,14 +1926,6 @@ Address: %4 Bind to given address and always listen on it. Use [host]:port notation for IPv6 مقید به نشانی داده شده باشید و همیشه از آن پیروی کنید. از نشانه گذاری استاندار IPv6 به صورت Host]:Port] استفاده کنید. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - تراکنش پذیرفته نیست! این خطا ممکن است در حالتی رخ داده باشد که مقداری از سکه های شما در کیف پولتان از جایی دیگر، همانند یک کپی از کیف پول اصلی اتان، خرج شده باشد اما در کیف پول اصلی اتان به عنوان مبلغ خرج شده، نشانه گذاری نشده باشد. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - خطا: این تراکنش به علت میزان وجه، دشواری، و یا استفاده از وجوه دریافتی اخیر نیازمند کارمزد به مبلغ حداقل %s است. - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) هنگامی که یک تراکنش در کیف پولی رخ می دهد، دستور را اجرا کن(%s در دستورات بوسیله ی TxID جایگزین می شود) @@ -1690,10 +1970,18 @@ Address: %4 Error opening block database خطا در بازگشایی پایگاه داده ی بلوک + + Error: Disk space is low! + خطا: فضای دیسک کم است! + Failed to listen on any port. Use -listen=0 if you want this. شنیدن هر گونه درگاه انجام پذیر نیست. ازlisten=0 برای اینکار استفاده کیند. + + Importing... + در حال پیاده‌سازی... + Verifying blocks... در حال بازبینی بلوک ها... @@ -1702,6 +1990,10 @@ Address: %4 Verifying wallet... در حال بازبینی کیف پول... + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + هشدار: تاریخ و ساعت کامپیوتر خود را بررسی کنید. اگر ساعت درست نباشد هسته Hypercoin به درستی کار نخواهد کرد. + Information اطلاعات @@ -1790,10 +2082,6 @@ Address: %4 Invalid amount for -paytxfee=<amount>: '%s' میزان وجه اشتباه برای paytxfee=<میزان وجه>: %s - - Invalid amount - میزان وجه اشتباه - Insufficient funds بود جه نا کافی @@ -1826,10 +2114,6 @@ Address: %4 Done loading بار گیری انجام شده است - - To use the %s option - برای استفاده از %s از انتخابات - Error خطا diff --git a/src/qt/locale/bitcoin_fa_IR.ts b/src/qt/locale/bitcoin_fa_IR.ts index 1a639a859200a..5d97b1c869cb4 100644 --- a/src/qt/locale/bitcoin_fa_IR.ts +++ b/src/qt/locale/bitcoin_fa_IR.ts @@ -1,30 +1,66 @@ - + AddressBookPage - - Double-click to edit address or label - برای ویرایش حساب و یا برچسب دوبار کلیک نمایید - Create a new address گشایش حسابی جدید + + &New + جدید + Copy the currently selected address to the system clipboard کپی کردن حساب انتخاب شده به حافظه سیستم - کلیپ بورد + + &Copy + کپی + + + C&lose + بستن + &Copy Address و کپی آدرس + + Delete the currently selected address from the list + حذف آدرس های انتخاب شده از لیست + Export the data in the current tab to a file صدور داده نوار جاری به یک فایل + + &Export + صدور + &Delete و حذف + + Choose the address to send coins to + انتخاب آدرس جهت ارسال کوین ها + + + Choose the address to receive coins with + انتخاب آدرس جهت دریافت کوین ها از آن + + + C&hoose + انتخاب + + + Sending addresses + ارسال آدرس ها + + + Receiving addresses + دریافت آدرس ها + Copy &Label کپی و برچسب @@ -33,11 +69,23 @@ &Edit و ویرایش + + Export Address List + صدور لیست آدرس + Comma separated file (*.csv) Comma separated file (*.csv) فایل جداگانه دستوری - + + Exporting Failed + صدور با شکست مواجه شد + + + There was an error trying to save the address list to %1. Please try again. + خطایی به هنگام ذخیره لیست آدرس در %1 رخ داده است. لطفا دوباره تلاش کنید. + + AddressTableModel @@ -55,6 +103,10 @@ AskPassphraseDialog + + Passphrase Dialog + دیالوگ رمزعبور + Enter passphrase رمز/پَس فرِیز را وارد کنید @@ -99,13 +151,17 @@ Confirm wallet encryption رمزگذاری wallet را تایید کنید + + Warning: The Caps Lock key is on! + اخطار: کلید Caps Lock فعال است! + Wallet encrypted تایید رمزگذاری - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin برای اتمام فرایند رمزگذاری بسته خواهد شد. به خاطر داشته باشید که رمزگذاری WALLET شما، کامپیوتر شما را از آلودگی به بدافزارها مصون نمی دارد. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin برای اتمام فرایند رمزگذاری بسته خواهد شد. به خاطر داشته باشید که رمزگذاری WALLET شما، کامپیوتر شما را از آلودگی به بدافزارها مصون نمی دارد. Wallet encryption failed @@ -131,7 +187,11 @@ Wallet decryption failed کشف رمز wallet انجام نشد - + + Wallet passphrase was successfully changed. + رمز عبور کیف پول با موفقیت تغییر کرد. + + BitcoinGUI @@ -168,11 +228,11 @@ About &Qt - درباره و QT + درباره و Qt Show information about Qt - نمایش اطلاعات درباره QT + نمایش اطلاعات درباره Qt &Options... @@ -191,8 +251,8 @@ تغییر رمز/پَس فرِیز - Modify configuration options for Bitcoin - اصلاح انتخابها برای پیکربندی Bitcoin + Modify configuration options for Hypercoin + اصلاح انتخابها برای پیکربندی Hypercoin Backup wallet to another location @@ -203,8 +263,8 @@ رمز مربوط به رمزگذاریِ wallet را تغییر دهید - Bitcoin - bitcoin + Hypercoin + hypercoin Wallet @@ -346,8 +406,8 @@ Address: %4 ویرایش حساب ارسال کننده - The entered address "%1" is not a valid Bitcoin address. - آدرس وارد شده "%1" یک آدرس صحیح برای bitcoin نسشت + The entered address "%1" is not a valid Hypercoin address. + آدرس وارد شده "%1" یک آدرس صحیح برای hypercoin نسشت Could not unlock wallet. @@ -408,8 +468,8 @@ Address: %4 فرم - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - اطلاعات نمایش داده شده ممکن است روزآمد نباشد. wallet شما به صورت خودکار بعد از برقراری اتصال با شبکه bitcoin به روز می شود اما این فرایند هنوز تکمیل نشده است. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + اطلاعات نمایش داده شده ممکن است روزآمد نباشد. wallet شما به صورت خودکار بعد از برقراری اتصال با شبکه hypercoin به روز می شود اما این فرایند هنوز تکمیل نشده است. out of sync @@ -459,8 +519,8 @@ Address: %4 تعداد زنجیره های حاضر - Welcome to the Bitcoin RPC console. - به کنسول آر.پی.سی. BITCOIN خوش آمدید + Welcome to the Hypercoin RPC console. + به کنسول آر.پی.سی. HYPERCOIN خوش آمدید @@ -556,7 +616,7 @@ Address: %4 Confirm send coins - تایید ارسال بیت کوین ها + تایید ارسال Hypercoins Copy amount @@ -609,10 +669,26 @@ Address: %4 Message: پیام: - + + Pay To: + پرداخت به: + + + Memo: + یادداشت: + + ShutdownWindow - + + Hypercoin Core is shutting down... + هسته Hypercoin در حال خاموش شدن است... + + + Do not shut down the computer until this window disappears. + تا پیش از بسته شدن این پنجره کامپیوتر خود را خاموش نکنید. + + SignVerifyMessageDialog @@ -845,6 +921,14 @@ Address: %4 Edit label برچسب را ویرایش کنید + + Exporting Failed + صدور با شکست مواجه شد + + + Exporting Successful + صدور با موفقیت انجام شد + Comma separated file (*.csv) Comma separated file (*.csv) فایل جداگانه دستوری @@ -897,6 +981,10 @@ Address: %4 WalletView + + &Export + صدور + Export the data in the current tab to a file صدور داده نوار جاری به یک فایل @@ -937,10 +1025,22 @@ Address: %4 Use the test network از تستِ شبکه استفاده نمایید + + RPC server options: + گزینه های سرویس دهنده RPC: + + + Randomly drop 1 of every <n> network messages + حذف تصادفی 1 مورد از هر <n> مورد پیغام های شبکه + Send trace/debug info to console instead of debug.log file ارسال اطلاعات پیگیری/خطایابی به کنسول به جای ارسال به فایل debug.log + + Send transactions as zero-fee transactions if possible (default: %u) + ارسال تراکنش ها به صورت بدون کارمزد در صورت امکان (پیش فرض: %u) + Username for JSON-RPC connections شناسه کاربری برای ارتباطاتِ JSON-RPC @@ -982,12 +1082,24 @@ Address: %4 خطا در هنگام لود شدن wallet.dat - Invalid amount for -paytxfee=<amount>: '%s' - میزان اشتباه است for -paytxfee=<amount>: '%s' + Set minimum block size in bytes (default: %u) + تنظیم کمینه اندازه بلاک بر حسب بایت (پیش فرض: %u) + + + Set the number of threads to service RPC calls (default: %d) + تنظیم تعداد ریسمان ها برای سرویس دهی فراخوانی های RPC (پیش فرض: %d) + + + Specify configuration file (default: %s) + فایل تنظیمات را مشخص کنید (پیش فرض: %s) - Invalid amount - میزان اشتباه است + Specify pid file (default: %s) + فایل pid را مشخص کنید (پیش فرض: %s) + + + Invalid amount for -paytxfee=<amount>: '%s' + میزان اشتباه است for -paytxfee=<amount>: '%s' Insufficient funds @@ -1021,10 +1133,6 @@ Address: %4 Done loading اتمام لود شدن - - To use the %s option - برای استفاده از %s از اختیارات - Error خطا diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts index 9a2eadd6ea289..2327c080d1daa 100644 --- a/src/qt/locale/bitcoin_fi.ts +++ b/src/qt/locale/bitcoin_fi.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Kaksoisnapauta muokataksesi osoitetta tai nimeä + Right-click to edit address or label + Klikkaa hiiren oikealla painikkeella muokataksesi osoitetta tai nimikettä Create a new address @@ -23,7 +23,7 @@ C&lose - &Sulje + S&ulje &Copy Address @@ -39,7 +39,7 @@ &Export - &Vie... + &Vie &Delete @@ -47,15 +47,15 @@ Choose the address to send coins to - Valitse osoite johon lähetetään kolikoita + Valitse osoite johon kolikot lähetetään Choose the address to receive coins with - Valitse osoite jolla vastaanotetaan kolikoita + Valitse osoite johon vastaanotetaan kolikoita C&hoose - &Valitse + V&alitse Sending addresses @@ -66,16 +66,16 @@ Vastaanottava osoite - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Nämä ovat sinun Bitcoin osoitteita maksujen lähetykseen. Tarkista aina rahan määrä ja vastaanottajan osoite ennenkuin lähetät kolikkoja. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Nämä ovat sinun Hypercoin osoitteita maksujen lähetykseen. Tarkista aina summa ja vastaanottajan osoite ennenkuin lähetät kolikkoja. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Nämä ovat sinun Bitcoin-osoitteesi suoritusten vastaanottamiseen. Suositellaan että annat uuden osoitteen kullekin rahansiirrolle + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Nämä ovat sinun Hypercoin-osoitteesi suoritusten vastaanottamiseen. Suositellaan että annat uuden osoitteen kullekin transaktiolle. Copy &Label - Kopioi &Nimi + Kopioi &nimike &Edit @@ -110,14 +110,14 @@ (no label) - (ei nimeä) + (ei nimikettä) AskPassphraseDialog Passphrase Dialog - Tunnuslauseen Dialogi + Tunnuslauseen tekstinsyöttökenttä Enter passphrase @@ -129,7 +129,7 @@ Repeat new passphrase - Kirjoita uusi tunnuslause uudelleen + Toista uusi tunnuslause Encrypt wallet @@ -164,8 +164,8 @@ Vahvista lompakon salaus - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Varoitus: Jos salaat lompakkosi ja menetät tunnuslauseesi, <b>MENETÄT KAIKKI BITCOINISI</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Varoitus: Jos salaat lompakkosi ja menetät tunnuslauseesi, <b>MENETÄT KAIKKI HYPERCOINISI</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Anna salauslause lompakkoon. <br/>Ole hyvä ja käytä lausetta jossa on <b>kymmenen tai enemmän satunnaista merkkiä</b> tai <b>kahdeksan tai useampi sanaa</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin sulkeutuu lopettaakseen salausprosessin. Muista, että salattukaan lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin sulkeutuu lopettaakseen salausprosessin. Muista, että salattukaan lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. Wallet encryption failed @@ -264,7 +264,7 @@ Show information about Qt - Näytä tietoja QT:ta + Näytä tietoja Qt:ta &Options... @@ -295,8 +295,8 @@ Avaa &URI... - Bitcoin Core client - Bitcoin Core ohjelma + Hypercoin Core client + Hypercoin Core ohjelma Importing blocks from disk... @@ -307,12 +307,12 @@ Ladataan lohkoindeksiä... - Send coins to a Bitcoin address - Lähetä kolikoita Bitcoin-osoitteeseen + Send coins to a Hypercoin address + Lähetä kolikoita Hypercoin-osoitteeseen - Modify configuration options for Bitcoin - Muuta Bitcoinin konfiguraatioasetuksia + Modify configuration options for Hypercoin + Muuta Hypercoinin konfiguraatioasetuksia Backup wallet to another location @@ -335,8 +335,8 @@ Varmista &viesti... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Vastaanota - Show information about Bitcoin Core - Näytä tietoja Bitcoin Core:sta + Show information about Hypercoin Core + Näytä tietoja Hypercoin Core:sta &Show / Hide @@ -360,19 +360,19 @@ Show or hide the main Window - Näytä tai piilota Bitcoin-ikkuna + Näytä tai piilota Hypercoin-ikkuna Encrypt the private keys that belong to your wallet Suojaa yksityiset avaimet, jotka kuuluvat lompakkoosi - Sign messages with your Bitcoin addresses to prove you own them - Allekirjoita viestisi omalla Bitcoin -osoitteellasi todistaaksesi, että omistat ne + Sign messages with your Hypercoin addresses to prove you own them + Allekirjoita viestisi omalla Hypercoin -osoitteellasi todistaaksesi, että omistat ne - Verify messages to ensure they were signed with specified Bitcoin addresses - Varmista, että viestisi on allekirjoitettu määritetyllä Bitcoin -osoitteella + Verify messages to ensure they were signed with specified Hypercoin addresses + Varmista, että viestisi on allekirjoitettu määritetyllä Hypercoin -osoitteella &File @@ -391,16 +391,16 @@ Välilehtipalkki - Bitcoin Core - Bitcoin-ydin + Hypercoin Core + Hypercoin-ydin - Request payments (generates QR codes and bitcoin: URIs) - Pyydä maksuja (Luo QR koodit ja bitcoin: URIt) + Request payments (generates QR codes and hypercoin: URIs) + Pyydä maksuja (Luo QR koodit ja hypercoin: URIt) - &About Bitcoin Core - &Tietoja Bitcoin Core + &About Hypercoin Core + &Tietoja Hypercoin Core Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Näytä vastaanottamiseen käytettyjen osoitteiden ja nimien lista - Open a bitcoin: URI or payment request - Avaa bitcoin: URI tai maksupyyntö + Open a hypercoin: URI or payment request + Avaa hypercoin: URI tai maksupyyntö &Command-line options &Komentorivin valinnat - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Näytä Bitcoin Core ohjeet saadaksesi listan mahdollisista Bitcoinin komentorivivalinnoista + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Näytä Hypercoin Core ohjeet saadaksesi listan mahdollisista Hypercoinin komentorivivalinnoista - %n active connection(s) to Bitcoin network - %n aktiivinen yhteys Bitcoin-verkkoon%n aktiivista yhteyttä Bitcoin-verkkoon + %n active connection(s) to Hypercoin network + %n aktiivinen yhteys Hypercoin-verkkoon%n aktiivista yhteyttä Hypercoin-verkkoon No block source available... @@ -478,6 +478,10 @@ Up to date Rahansiirtohistoria on ajan tasalla + + Processed %n blocks of transaction history. + Käsitelty %n lohko rahansiirtohistoriasta.Käsitelty %n lohkoa rahansiirtohistoriasta. + Catching up... Saavutetaan verkkoa... @@ -519,6 +523,10 @@ Osoite: %4 CoinControlDialog + + Coin Selection + Kolikoiden valinta + Quantity: Määrä: @@ -567,6 +575,14 @@ Osoite: %4 Amount Määrä + + Received with label + Vastaanotettu nimikkeellä + + + Received with address + Vastaanotettu osoitteella + Date Aika @@ -771,8 +787,8 @@ Osoite: %4 Osoite "%1" on jo osoitekirjassa. - The entered address "%1" is not a valid Bitcoin address. - Antamasi osoite "%1" ei ole validi Bitcoin-osoite. + The entered address "%1" is not a valid Hypercoin address. + Antamasi osoite "%1" ei ole validi Hypercoin-osoite. Could not unlock wallet. @@ -809,8 +825,8 @@ Osoite: %4 HelpMessageDialog - Bitcoin Core - Bitcoin-ydin + Hypercoin Core + Hypercoin-ydin version @@ -821,8 +837,8 @@ Osoite: %4 (%1-bit) - About Bitcoin Core - Tietoja Bitcoin Core + About Hypercoin Core + Tietoja Hypercoin Core Command-line options @@ -868,16 +884,16 @@ Osoite: %4 Tervetuloa - Welcome to Bitcoin Core. - Tervetuloa Bitcoin Core + Welcome to Hypercoin Core. + Tervetuloa Hypercoin Core - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Tämän on ensimmäinen kerta kun Bitcoin Core on käynnistetty joten voit valita data-hakemiston paikan. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Tämän on ensimmäinen kerta kun Hypercoin Core on käynnistetty joten voit valita data-hakemiston paikan. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core lataa ja tallentaa kopion Bitcoinin lohkoketjusta. Vähintään %1GB dataa tullaan tallentamaan tähän hakemistoon ja tarve kasvaa ajan myötä. Lomakko tullaan myös tallentamaan tähän hakemistoon. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core lataa ja tallentaa kopion Hypercoinin lohkoketjusta. Vähintään %1GB dataa tullaan tallentamaan tähän hakemistoon ja tarve kasvaa ajan myötä. Lomakko tullaan myös tallentamaan tähän hakemistoon. Use the default data directory @@ -888,8 +904,8 @@ Osoite: %4 Määritä oma kansio: - Bitcoin Core - Bitcoin-ydin + Hypercoin Core + Hypercoin-ydin Error: Specified data directory "%1" cannot be created. @@ -899,7 +915,15 @@ Osoite: %4 Error Virhe - + + %n GB of free space available + %n Gt vapaata tilaa käytettävissä%n Gt vapaata tilaa käytettävissä + + + (of %n GB needed) + (%n Gt tarvittavasta tilasta)(%n Gt tarvittavasta tilasta) + + OpenURIDialog @@ -934,12 +958,12 @@ Osoite: %4 &Yleiset - Automatically start Bitcoin after logging in to the system. - Käynnistä Bitcoin kirjautumisen yhteydessä. + Automatically start Hypercoin after logging in to the system. + Käynnistä Hypercoin kirjautumisen yhteydessä. - &Start Bitcoin on system login - &Käynnistä Bitcoin kirjautumisen yhteydessä + &Start Hypercoin on system login + &Käynnistä Hypercoin kirjautumisen yhteydessä Size of &database cache @@ -1014,13 +1038,21 @@ Osoite: %4 &Käytä varmistamattomia vaihtorahoja - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Avaa Bitcoin-asiakasohjelman portti reitittimellä automaattisesti. Tämä toimii vain, jos reitittimesi tukee UPnP:tä ja se on käytössä. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Avaa Hypercoin-asiakasohjelman portti reitittimellä automaattisesti. Tämä toimii vain, jos reitittimesi tukee UPnP:tä ja se on käytössä. Map port using &UPnP Portin uudelleenohjaus &UPnP:llä + + Connect to the Hypercoin network through a SOCKS5 proxy. + Yhdistä Hypercoin-verkkoon SOCKS5-välityspalvelimen kautta. + + + &Connect through SOCKS5 proxy (default proxy): + &Yhdistä SOCKS5-välityspalvelimen kautta (oletus välityspalvelin): + Proxy &IP: Proxyn &IP: @@ -1047,7 +1079,7 @@ Osoite: %4 Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Ikkunaa suljettaessa vain pienentää Bitcoin-ohjelman ikkunan lopettamatta itse ohjelmaa. Kun tämä asetus on valittuna, ohjelman voi sulkea vain valitsemalla Lopeta ohjelman valikosta. + Ikkunaa suljettaessa vain pienentää Hypercoin-ohjelman ikkunan lopettamatta itse ohjelmaa. Kun tämä asetus on valittuna, ohjelman voi sulkea vain valitsemalla Lopeta ohjelman valikosta. M&inimize on close @@ -1062,16 +1094,16 @@ Osoite: %4 &Käyttöliittymän kieli - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Tässä voit määritellä käyttöliittymän kielen. Muutokset astuvat voimaan seuraavan kerran, kun Bitcoin käynnistetään. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Tässä voit määritellä käyttöliittymän kielen. Muutokset astuvat voimaan seuraavan kerran, kun Hypercoin käynnistetään. &Unit to show amounts in: - Yksikkö jona bitcoin-määrät näytetään + Yksikkö jona hypercoin-määrät näytetään Choose the default subdivision unit to show in the interface and when sending coins. - Valitse mitä yksikköä käytetään ensisijaisesti bitcoin-määrien näyttämiseen. + Valitse mitä yksikköä käytetään ensisijaisesti hypercoin-määrien näyttämiseen. Whether to show coin control features or not. @@ -1121,8 +1153,8 @@ Osoite: %4 Lomake - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Näytetyt tiedot eivät välttämättä ole ajantasalla. Lompakkosi synkronoituu Bitcoin-verkon kanssa automaattisesti yhteyden muodostamisen jälkeen, mutta synkronointi on vielä meneillään. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Näytetyt tiedot eivät välttämättä ole ajantasalla. Lompakkosi synkronoituu Hypercoin-verkon kanssa automaattisesti yhteyden muodostamisen jälkeen, mutta synkronointi on vielä meneillään. Watch-only: @@ -1152,18 +1184,38 @@ Osoite: %4 Mined balance that has not yet matured Louhittu saldo, joka ei ole vielä kypsynyt + + Balances + Saldot + Total: Yhteensä: Your current total balance - Tililläsi tällä hetkellä olevien Bitcoinien määrä + Tililläsi tällä hetkellä olevien Hypercoinien määrä Your current balance in watch-only addresses Nykyinen tase seurantaosoitetteissa + + Spendable: + Käytettävissä: + + + Recent transactions + Viimeisimmät rahansiirrot + + + Unconfirmed transactions to watch-only addresses + Vahvistamattomat rahansiirrot vain katseltaviin osoitteisiin + + + Mined balance in watch-only addresses that has not yet matured + Louhittu, ei vielä kypsynyt saldo vain katseltavissa osoitteissa + Current total balance in watch-only addresses Nykyinen tase seurantaosoitetteissa @@ -1187,10 +1239,18 @@ Osoite: %4 Payment request rejected Maksupyyntö hylätty + + Payment request network doesn't match client network. + Maksypyyntö verkossa ei täsmää asiakasohjelman verkkoon. + Payment request has expired. Maksupyyntö on vanhentunut. + + Payment request is not initialized. + Maksupyyntöä ei ole alustettu. + Requested payment amount of %1 is too small (considered dust). Maksupyyntö %1 on liian pieni (huomioidaan tomuna). @@ -1200,21 +1260,25 @@ Osoite: %4 Maksupyyntövirhe - Cannot start bitcoin: click-to-pay handler - Ei voida käynnistää bitcoin: klikkaa-maksu käsittelijää + Cannot start hypercoin: click-to-pay handler + Ei voida käynnistää hypercoin: klikkaa-maksu käsittelijää Payment request fetch URL is invalid: %1 Maksupyynnön haku URL on virheellinen: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - URIa ei voitu jäsentää! Tämä voi johtua kelvottomasta Bitcoin-osoitteesta tai virheellisistä URI parametreista. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URIa ei voitu jäsentää! Tämä voi johtua kelvottomasta Hypercoin-osoitteesta tai virheellisistä URI parametreista. Payment request file handling Maksupyynnön tiedoston käsittely + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Maksupyynnön tiedostoa ei voida lukea! Tämä voi aiheutua sopimattomasta maksupyyntötiedostosta. + Unverified payment requests to custom payment scripts are unsupported. Varmistamattomia maksupyyntöjä kustomoituun maksupalveluun ei tueta. @@ -1223,10 +1287,22 @@ Osoite: %4 Refund from %1 Maksupalautus %1:sta + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Maksupyyntö %1 on liian suuri (%2 tavua, sallittu %3 tavua). + + + Payment request DoS protection + Maksupyynnön DoS-suojaus + Error communicating with %1: %2 Virhe kommunikoidessa %1n kanssa: %2 + + Payment request cannot be parsed! + Maksupyyntöä ei voida jäsentää! + Bad response from server %1 Huono vastaus palvelimelta %1 @@ -1246,13 +1322,25 @@ Osoite: %4 User Agent Käyttöliittymä - + + Address/Hostname + Osoite/Isäntänimi + + + Ping Time + Vasteaika + + QObject Amount Määrä + + Enter a Hypercoin address (e.g. %1) + Syötä Hypercoin-osoite (esim. %1) + %1 d %1 d @@ -1269,6 +1357,18 @@ Osoite: %4 %1 s %1 s + + NETWORK + VERKKO + + + UNKNOWN + TUNNISTAMATON + + + None + Ei yhtään + N/A Ei saatavilla @@ -1327,6 +1427,10 @@ Osoite: %4 Using OpenSSL version Käytössä oleva OpenSSL-versio + + Using BerkeleyDB version + Käyttää BerkeleyDB-versiota + Startup time Käynnistysaika @@ -1359,6 +1463,18 @@ Osoite: %4 Sent Lähetetyt + + &Peers + &Vertaiset + + + Select a peer to view detailed information. + Valitse vertainen eriteltyjä tietoja varten. + + + Direction + Suunta + Version Versio @@ -1367,6 +1483,46 @@ Osoite: %4 User Agent Käyttöliittymä + + Services + Palvelut + + + Starting Height + Aloituskorkeus + + + Sync Height + Synkronointikorkeus + + + Ban Score + Panna-pisteytys + + + Connection Time + Yhteysaika + + + Last Send + Viimeisin lähetetty + + + Last Receive + Viimeisin vastaanotettu + + + Bytes Sent + Tavua lähetetty + + + Bytes Received + Tavua vastaanotettu + + + Ping Time + Vasteaika + Last block time Viimeisimmän lohkon aika @@ -1408,7 +1564,7 @@ Osoite: %4 Debug lokitiedosto - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. Avaa lokitiedosto nykyisestä data-kansiosta. Tämä voi viedä useamman sekunnin, jos lokitiedosto on iso. @@ -1416,8 +1572,8 @@ Osoite: %4 Tyhjennä konsoli - Welcome to the Bitcoin RPC console. - Tervetuloa Bitcoin RPC konsoliin. + Welcome to the Hypercoin RPC console. + Tervetuloa Hypercoin RPC konsoliin. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1443,11 +1599,31 @@ Osoite: %4 %1 GB %1 GB + + via %1 + %1 kautta + + + never + ei koskaan + + + Inbound + Sisääntuleva + + + Outbound + Ulosmenevä + Unknown Tuntematon - + + Fetching... + Hankitaan... + + ReceiveCoinsDialog @@ -1471,8 +1647,8 @@ Osoite: %4 &Uudelleenkäytä vastaanotto-osoitetta (ei suositella) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Valinnainen viesti liitetään maksupyyntöön ja näytetään avattaessa. Viestiä ei lähetetä Bitcoin-verkkoon. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Valinnainen viesti liitetään maksupyyntöön ja näytetään avattaessa. Viestiä ei lähetetä Hypercoin-verkkoon. An optional label to associate with the new receiving address. @@ -1621,7 +1797,7 @@ Osoite: %4 SendCoinsDialog Send Coins - Lähetä Bitcoineja + Lähetä Hypercoineja Coin Control Features @@ -1675,6 +1851,62 @@ Osoite: %4 Custom change address Kustomoitu vaihtorahan osoite + + Transaction Fee: + Rahansiirtokulu: + + + Choose... + Valitse... + + + collapse fee-settings + pudota kulujen asetukset + + + Minimize + Pienennä + + + per kilobyte + per kilotavu + + + total at least + yhteensä ainakin + + + (read the tooltip) + (lue työkaluvinkki) + + + Recommended: + Suositeltu: + + + Custom: + Muokattu: + + + Confirmation time: + Vahvistusaika: + + + normal + normaali + + + fast + nopea + + + Send as zero-fee transaction if possible + Lähetä siirtokuluttomana jos mahdollista + + + (confirmation may take longer) + (vahvistaminen voi viedä kauemmin) + Send to multiple recipients at once Lähetä usealla vastaanottajalle samanaikaisesti @@ -1709,7 +1941,7 @@ Osoite: %4 Confirm send coins - Hyväksy Bitcoinien lähettäminen + Hyväksy Hypercoinien lähettäminen %1 to %2 @@ -1743,10 +1975,6 @@ Osoite: %4 Copy change Kopioi vaihtoraha - - Total Amount %1 (= %2) - Yhteensä %1 (= %2) - or tai @@ -1757,7 +1985,7 @@ Osoite: %4 The amount to pay must be larger than 0. - Maksettavan summan tulee olla suurempi kuin 0 Bitcoinia. + Maksettavan summan tulee olla suurempi kuin 0 Hypercoinia. The amount exceeds your balance. @@ -1780,8 +2008,20 @@ Osoite: %4 Rahansiirto hylättiin! Tämä saattaa tapahtua jos lompakossa olevat kolikot on jo kulutettu, kuten jos käytät kopioita wallet.dat tiedostosta ja kolikot oli jos käytetty mutta ei merkattu täällä. - Warning: Invalid Bitcoin address - Varoitus: Virheellinen Bitcoin osoite + A fee higher than %1 is considered an insanely high fee. + Rahansiirtokulua %1 ja sitä suurempia määriä pidetään järjettöminä. + + + Pay only the minimum fee of %1 + Maksa vain vähimmäiskulu %1 + + + Estimated to begin confirmation within %1 block(s). + Vahvistuminen alkaa arviolta %1 lohkon päästä. + + + Warning: Invalid Hypercoin address + Varoitus: Virheellinen Hypercoin osoite (no label) @@ -1830,6 +2070,10 @@ Osoite: %4 This is a normal payment. Tämä on normaali maksu. + + The Hypercoin address to send the payment to + Hypercoin-osoite johon maksu lähetetään + Alt+A Alt+A @@ -1859,8 +2103,8 @@ Osoite: %4 Aseta nimi tälle osoitteelle lisätäksesi sen käytettyjen osoitteiden listalle. - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Viesti joka liitettiin bitcoin: URI:iin tallennetaan rahansiirtoon viitteeksi. Tätä viestiä ei lähetetä Bitcoin-verkkoon. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Viesti joka liitettiin hypercoin: URI:iin tallennetaan rahansiirtoon viitteeksi. Tätä viestiä ei lähetetä Hypercoin-verkkoon. This is an unverified payment request. @@ -1878,8 +2122,8 @@ Osoite: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin core sulkeutuu... + Hypercoin Core is shutting down... + Hypercoin core sulkeutuu... Do not shut down the computer until this window disappears. @@ -1900,6 +2144,10 @@ Osoite: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Voit allekirjoittaa viestit omalla osoitteellasi todistaaksesi että omistat ne. Ole huolellinen, että et allekirjoita mitään epämääräistä, phishing-hyökkääjät voivat huijata sinua allekirjoittamaan luovuttamalla henkilöllisyytesi. Allekirjoita selvitys täysin yksityiskohtaisesti mihin olet sitoutunut. + + The Hypercoin address to sign the message with + Hypercoin-osoite jolla viesti allekirjoitetaan + Choose previously used address Valitse aikaisemmin käytetty osoite @@ -1929,8 +2177,8 @@ Osoite: %4 Kopioi tämänhetkinen allekirjoitus leikepöydälle - Sign the message to prove you own this Bitcoin address - Allekirjoita viesti todistaaksesi, että omistat tämän Bitcoin-osoitteen + Sign the message to prove you own this Hypercoin address + Allekirjoita viesti todistaaksesi, että omistat tämän Hypercoin-osoitteen Sign &Message @@ -1953,8 +2201,12 @@ Osoite: %4 Syötä allekirjoittava osoite, viesti ja allekirjoitus alla oleviin kenttiin varmistaaksesi allekirjoituksen aitouden. Varmista että kopioit kaikki kentät täsmälleen oikein, myös rivinvaihdot, välilyönnit, tabulaattorit, jne. - Verify the message to ensure it was signed with the specified Bitcoin address - Tarkista viestin allekirjoitus varmistaaksesi, että se allekirjoitettiin tietyllä Bitcoin-osoitteella + The Hypercoin address the message was signed with + Hypercoin-osoite jolla viesti on allekirjoitettu + + + Verify the message to ensure it was signed with the specified Hypercoin address + Tarkista viestin allekirjoitus varmistaaksesi, että se allekirjoitettiin tietyllä Hypercoin-osoitteella Verify &Message @@ -2020,8 +2272,8 @@ Osoite: %4 SplashScreen - Bitcoin Core - Bitcoin-ydin + Hypercoin Core + Hypercoin-ydin The Bitcoin Core developers @@ -2093,6 +2345,10 @@ Osoite: %4 own address oma osoite + + watch-only + vain katseltava + label nimi @@ -2113,6 +2369,14 @@ Osoite: %4 Debit Debit + + Total debit + Yhteensä debit + + + Total credit + Yhteensä credit + Transaction fee Maksukulu @@ -2263,6 +2527,10 @@ Osoite: %4 Mined Louhittu + + watch-only + vain katseltava + (n/a) (ei saatavilla) @@ -2279,9 +2547,13 @@ Osoite: %4 Type of transaction. Rahansiirron laatu. + + Whether or not a watch-only address is involved in this transaction. + Onko rahansiirrossa mukana ainoastaan katseltava osoite vai ei. + Destination address of transaction. - Rahansiirron kohteen Bitcoin-osoite + Rahansiirron kohteen Hypercoin-osoite Amount removed from or added to balance. @@ -2374,6 +2646,10 @@ Osoite: %4 Export Transaction History Vie rahansiirtohistoria + + Watch-only + Vain katseltava + Exporting Failed Vienti epäonnistui @@ -2429,7 +2705,11 @@ Osoite: %4 UnitDisplayStatusBarControl - + + Unit to show amounts in. Click to select another unit. + Yksikkö jossa määrät näytetään. Klikkaa valitaksesi toisen yksikön. + + WalletFrame @@ -2441,7 +2721,7 @@ Osoite: %4 WalletModel Send Coins - Lähetä Bitcoineja + Lähetä Hypercoineja @@ -2513,30 +2793,6 @@ Osoite: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Hyväksy yhteyksiä ulkopuolelta (vakioasetus: 1 jos -proxy tai -connect ei määritelty) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, sinun tulee asettaa rpcpassword asetustietostossa: -%s -Suositellaan että käytät allaolevaa satunnaista salasanaa: -rpcuser=bitcoinrpc -rpcpassword=%s -(sinun ei tarvitse muistaa tätä salasanaa) -Tämän tunnuksen ja salasanan TULEE OLLA sama. -Jos tiedostoa ei ole, luo se vain omistajan-luku-oikeudella. -Suositellaan asettaa alertnotify jotta saat tietoa ongelmista; -esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Kytkeydy annettuun osoitteeseen ja pidä linja aina auki. Käytä [host]:portin merkintätapaa IPv6:lle. @@ -2545,14 +2801,6 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Aloita regression testimoodi joka käyttää erikoisketjua jossa lohkoja voidaan ratkaista välittömästi. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Virhe: Rahansiirto hylättiin! Tämä saattaa tapahtua jos jotkut kolikot lompakossa on jo käytetty. Esimerkiksi jos kopioit wallet.dat tiedoston ja kolikot on käytetty mutta ei merkattu täällä. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Virhe: Tämä rahansiirto vaatii rahansiirtopalkkion vähintään %s johtuen sen määrästä, monimutkaisuudesta tai hiljattain vastaanotettujen summien käytöstä - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Suorita käsky kun lompakossa rahansiirto muuttuu (%s cmd on vaihdettu TxID kanssa) @@ -2570,8 +2818,8 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Tämä on esi-julkaistu testiversio - Käytä omalla riskillä - Ei saa käytää louhimiseen tai kauppasovelluksiin. - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Ei voida yhdistää %s tässä tietokoneessa. Bitcoin Core on luultavasti jo käynnissä. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Ei voida yhdistää %s tässä tietokoneessa. Hypercoin Core on luultavasti jo käynnissä. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2657,10 +2905,6 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error: Disk space is low! Varoitus: Levytila on vähissä! - - Error: Wallet locked, unable to create transaction! - Virhe: Lompakko on lukittu, rahansiirtoa ei voida luoda - Failed to listen on any port. Use -listen=0 if you want this. Ei onnistuttu kuuntelemaan missään portissa. Käytä -listen=0 jos haluat tätä. @@ -2685,6 +2929,10 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Not enough file descriptors available. Ei tarpeeksi tiedostomerkintöjä vapaana. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Yhdistä vain solmukohtiin <net>-verkossa (ipv4, ipv6 tai onion) + Rebuild block chain index from current blk000??.dat files Uudelleenrakenna lohkoketjuindeksi nykyisistä blk000??.dat tiedostoista @@ -2705,6 +2953,10 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com This is intended for regression testing tools and app development. Tämä on tarkoitettu regression testityökaluille ja ohjelman kehittämiseen. + + Use UPnP to map the listening port (default: %u) + Käytä UPnP:ta kuuntelevan portin kartoittamiseen (oletus: %u) + Verifying blocks... Varmistetaan lohkoja... @@ -2730,8 +2982,8 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Tuodaan lohkoja ulkoisesta blk000??.dat tiedostosta - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Ei voida lukita data-hakemistoa %s. Bitcoin Core on luultavasti jo käynnissä. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Ei voida lukita data-hakemistoa %s. Hypercoin Core on luultavasti jo käynnissä. Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) @@ -2741,6 +2993,18 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Aseta maksimikoko korkea prioriteetti/pieni palkkio rahansiirtoihin tavuissa (oletus: %d) + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Aseta kolikoiden luomiseen tarkoitettujen säikeiden lukumäärä (-1 = kaikki ytimet, oletus: %d) + + + Accept public REST requests (default: %u) + Hyväksy julkisia REST-pyyntöjä (oletus: %u) + + + Cannot resolve -whitebind address: '%s' + -whitebind -osoitetta '%s' ei voida jäsentää + Connect through SOCKS5 proxy Yhdistä SOCKS5 proxin kautta @@ -2750,8 +3014,12 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Copyright (C) 2009-%i Bitcoin kehittäjät - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Virhe ladattaessa wallet.dat-tiedostoa: Tarvitset uudemman version Bitcoinista + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Virhe ladattaessa wallet.dat-tiedostoa: Tarvitset uudemman version Hypercoinista + + + Error reading from database, shutting down. + Virheitä tietokantaa luettaessa, ohjelma pysäytetään. Information @@ -2766,17 +3034,21 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Virheellinen määrä -mintxfee=<amount>: '%s' - Print block on startup, if found in block index - Tulosta lohko käynnistyksessä jos löydetään lohkoindeksistä + Node relay options: + Välityssolmukohdan asetukset: - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - RPC SSL valinnat: (katso Bitcoin Wikistä SSL-asennuksen ohjeet) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + RPC SSL valinnat: (katso Hypercoin Wikistä SSL-asennuksen ohjeet) RPC server options: RPC-palvelimen valinnat: + + RPC support for HTTP persistent connections (default: %d) + RPC-tuki pysyville HTTP-yhteyksille (oletus: %d) + Randomly drop 1 of every <n> network messages Satunnaisesti pudota 1 joka <n> verkkoviestistä @@ -2801,6 +3073,10 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Signing transaction failed Siirron vahvistus epäonnistui + + This is experimental software. + Tämä on ohjelmistoa kokeelliseen käyttöön. + Transaction amount too small Siirtosumma liian pieni @@ -2822,8 +3098,8 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Käyttäjätunnus JSON-RPC-yhteyksille - Wallet needed to be rewritten: restart Bitcoin Core to complete - Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Bitcoin uudelleen + Wallet needed to be rewritten: restart Hypercoin Core to complete + Lompakko tarvitsee uudelleenkirjoittaa: käynnistä Hypercoin uudelleen Warning @@ -2881,14 +3157,82 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error loading wallet.dat: Wallet corrupted Virhe ladattaessa wallet.dat-tiedostoa: Lompakko vioittunut + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Käytä erillistä SOCKS5-proxyä tavoittaaksesi vertaisia Tor-piilopalveluiden kautta (oletus: %s) + + + (default: %s) + (oletus: %s) + + + Acceptable ciphers (default: %s) + Hyväksyttävät salaukset (oletus: %s) + Error loading wallet.dat Virhe ladattaessa wallet.dat-tiedostoa + + Force safe mode (default: %u) + Pakota yhteensopivuustila (oletus: %u) + + + Generate coins (default: %u) + Luo kolikoita (oletus: %u) + + + How many blocks to check at startup (default: %u, 0 = all) + Kuinka monta lohkoa tarkistetaan käynnistyksessä (oletus: %u, 0 = kaikki) + + + Include IP addresses in debug output (default: %u) + Sisällytä IP-osoitteet virheenkorjauslokissa (oletus: %u) + Invalid -proxy address: '%s' Virheellinen proxy-osoite '%s' + + Listen for connections on <port> (default: %u or testnet: %u) + Kuuntele yhteyksiä portissa <port> (oletus: %u tai testnet: %u) + + + Relay non-P2SH multisig (default: %u) + Välitä ei-P2SH-multisig (oletus: %u) + + + Server certificate file (default: %s) + Palvelimen sertifikaattitiedosto (oletus: %s) + + + Server private key (default: %s) + Palvelimen private key (oletus: %s) + + + Set key pool size to <n> (default: %u) + Aseta avainaltaan kooksi <n> (oletus: %u) + + + Set minimum block size in bytes (default: %u) + Aseta pienin mahdollinen lohkokoko tavuina (oletus: %u) + + + Set the number of threads to service RPC calls (default: %d) + Aseta RPC-kutsujen palvelemiseen tarkoitettujen säikeiden lukumäärä (oletus: %d) + + + Specify configuration file (default: %s) + Määritä asetustiedosto (oletus: %s) + + + Specify pid file (default: %s) + Määritä pid-tiedosto (oletus: %s) + + + Spend unconfirmed change when sending transactions (default: %u) + Käytä vahvistamattomia vaihtorahoja lähetettäessä rahansiirtoja (oletus: %u) + Unknown network specified in -onlynet: '%s' Tuntematon verkko -onlynet parametrina: '%s' @@ -2905,10 +3249,6 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' -paytxfee=<amount>: '%s' on virheellinen - - Invalid amount - Virheellinen määrä - Insufficient funds Lompakon saldo ei riitä @@ -2941,13 +3281,9 @@ esimerkiksi: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Lataus on valmis - - To use the %s option - Käytä %s optiota - Error Virhe - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fr.ts b/src/qt/locale/bitcoin_fr.ts index 71a151941119c..a900b80d184cc 100644 --- a/src/qt/locale/bitcoin_fr.ts +++ b/src/qt/locale/bitcoin_fr.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Double cliquer afin de modifier l'adresse ou l'étiquette + Right-click to edit address or label + Cliquer à droite pour modifier l'adresse ou l'étiquette Create a new address @@ -66,12 +66,12 @@ Adresses de réception - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Voici vos adresses Bitcoin pour envoyer des paiements. Vérifiez toujours le montant et l'adresse du destinataire avant d'envoyer des pièces. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Voici vos adresses Hypercoin pour envoyer des paiements. Vérifiez toujours le montant et l'adresse du destinataire avant d'envoyer des pièces. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Voici vos adresses Bitcoin pour recevoir des paiements. Il est recommandé d'utiliser une nouvelle adresse de réception pour chaque transaction. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Voici vos adresses Hypercoin pour recevoir des paiements. Il est recommandé d'utiliser une nouvelle adresse de réception pour chaque transaction. Copy &Label @@ -164,8 +164,8 @@ Confirmer le chiffrement du portefeuille - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Avertissement : si vous chiffrez votre portefeuille et perdez votre phrase de passe, vous <b>PERDREZ TOUS VOS BITCOINS</b> ! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Avertissement : si vous chiffrez votre portefeuille et perdez votre phrase de passe, vous <b>PERDREZ TOUS VOS HYPERCOINS</b> ! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Saisissez une nouvelle phrase de passe pour le portefeuille.<br/>Veuillez utiliser une phrase composée de <b>dix caractères aléatoires ou plus</b>, ou bien de <b>huit mots ou plus</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin va à présent se fermer pour terminer le chiffrement. N'oubliez pas que le chiffrement de votre portefeuille n'est pas une protection totale contre le vol par des logiciels malveillants qui infecteraient votre ordinateur. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin va à présent se fermer pour terminer le chiffrement. N'oubliez pas que le chiffrement de votre portefeuille n'est pas une protection totale contre le vol par des logiciels malveillants qui infecteraient votre ordinateur. Wallet encryption failed @@ -295,24 +295,24 @@ Ouvrir un &URI... - Bitcoin Core client - Client Bitcoin Core + Hypercoin Core client + Client Hypercoin Core Importing blocks from disk... - Importation des blocs depuis le disque... + Importation des blocs à partir du disque... Reindexing blocks on disk... Réindexation des blocs sur le disque... - Send coins to a Bitcoin address - Envoyer des pièces à une adresse Bitcoin + Send coins to a Hypercoin address + Envoyer des pièces à une adresse Hypercoin - Modify configuration options for Bitcoin - Modifier les options de configuration de Bitcoin + Modify configuration options for Hypercoin + Modifier les options de configuration de Hypercoin Backup wallet to another location @@ -335,8 +335,8 @@ &Vérifier un message... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Recevoir - Show information about Bitcoin Core - Montrer des informations à propos de Bitcoin Core + Show information about Hypercoin Core + Montrer des informations à propos de Hypercoin Core &Show / Hide @@ -367,12 +367,12 @@ Chiffrer les clefs privées de votre portefeuille - Sign messages with your Bitcoin addresses to prove you own them - Signer les messages avec vos adresses Bitcoin pour prouver que vous les détenez + Sign messages with your Hypercoin addresses to prove you own them + Signer les messages avec vos adresses Hypercoin pour prouver que vous les détenez - Verify messages to ensure they were signed with specified Bitcoin addresses - Vérifier les messages pour vous assurer qu'ils ont été signés avec les adresses Bitcoin spécifiées + Verify messages to ensure they were signed with specified Hypercoin addresses + Vérifier les messages pour vous assurer qu'ils ont été signés avec les adresses Hypercoin spécifiées &File @@ -391,16 +391,16 @@ Barre d'outils des onglets - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Demander des paiements (génère des codes QR et des URIs bitcoin:) + Request payments (generates QR codes and hypercoin: URIs) + Demander des paiements (génère des codes QR et des URIs hypercoin:) - &About Bitcoin Core - À &propos de Bitcoin Core + &About Hypercoin Core + À &propos de Hypercoin Core Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Afficher la liste d'adresses de réception et d'étiquettes utilisées - Open a bitcoin: URI or payment request - Ouvrir un URI bitcoin: ou une demande de paiement + Open a hypercoin: URI or payment request + Ouvrir un URI hypercoin: ou une demande de paiement &Command-line options Options de ligne de &commande - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Afficher le message d'aide de Bitcoin Core pour obtenir une liste des options de ligne de commande Bitcoin possibles. + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Afficher le message d'aide de Hypercoin Core pour obtenir une liste des options de ligne de commande Hypercoin possibles. - %n active connection(s) to Bitcoin network - %n connexion active avec le réseau Bitcoin%n connexions actives avec le réseau Bitcoin + %n active connection(s) to Hypercoin network + %n connexion active avec le réseau Hypercoin%n connexions actives avec le réseau Hypercoin No block source available... @@ -728,6 +728,10 @@ Adresse : %4 This label turns red, if the priority is smaller than "medium". Cette étiquette devient rouge si la priorité est plus basse que « moyenne » + + This label turns red, if any recipient receives an amount smaller than %1. + Cette étiquette devient rouge si un destinataire reçoit un montant inférieur à %1. + (no label) (aucune étiquette) @@ -784,8 +788,8 @@ Adresse : %4 L’adresse fournie « %1 » est déjà présente dans le carnet d'adresses. - The entered address "%1" is not a valid Bitcoin address. - L'adresse fournie « %1 » n'est pas une adresse Bitcoin valide. + The entered address "%1" is not a valid Hypercoin address. + L'adresse fournie « %1 » n'est pas une adresse Hypercoin valide. Could not unlock wallet. @@ -822,8 +826,8 @@ Adresse : %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -834,8 +838,8 @@ Adresse : %4 (%1-bit) - About Bitcoin Core - À propos de Bitcoin Core + About Hypercoin Core + À propos de Hypercoin Core Command-line options @@ -881,16 +885,16 @@ Adresse : %4 Bienvenue - Welcome to Bitcoin Core. - Bienvenue à Bitcoin Core. + Welcome to Hypercoin Core. + Bienvenue à Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Comme c'est la première fois que le logiciel est lancé, vous pouvez choisir où Bitcoin Core stockera ses données. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Comme c'est la première fois que le logiciel est lancé, vous pouvez choisir où Hypercoin Core stockera ses données. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core va télécharger et stocker une copie de la chaîne de blocs Bitcoin. Au moins %1Go de données seront stockées dans ce répertoire et cela augmentera avec le temps. Le portefeuille sera également stocké dans ce répertoire. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core va télécharger et stocker une copie de la chaîne de blocs Hypercoin. Au moins %1Go de données seront stockées dans ce répertoire et cela augmentera avec le temps. Le portefeuille sera également stocké dans ce répertoire. Use the default data directory @@ -901,8 +905,8 @@ Adresse : %4 Utiliser un répertoire de données personnalisé : - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. @@ -951,12 +955,12 @@ Adresse : %4 Réglages &principaux - Automatically start Bitcoin after logging in to the system. - Démarrer Bitcoin automatiquement après avoir ouvert une session sur l'ordinateur. + Automatically start Hypercoin after logging in to the system. + Démarrer Hypercoin automatiquement après avoir ouvert une session sur le système. - &Start Bitcoin on system login - &Démarrer Bitcoin lors de l'ouverture d'une session + &Start Hypercoin on system login + &Démarrer Hypercoin lors de l'ouverture d'une session Size of &database cache @@ -1031,16 +1035,16 @@ Adresse : %4 &Dépenser la monnaie non confirmée - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Ouvrir le port du client Bitcoin automatiquement sur le routeur. Ceci ne fonctionne que si votre routeur supporte l'UPnP et si la fonctionnalité est activée. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Ouvrir le port du client Hypercoin automatiquement sur le routeur. Ceci ne fonctionne que si votre routeur supporte l'UPnP et si la fonctionnalité est activée. Map port using &UPnP Mapper le port avec l'&UPnP - Connect to the Bitcoin network through a SOCKS5 proxy. - Se connecter au réseau Bitcoin par un mandataire SOCKS5. + Connect to the Hypercoin network through a SOCKS5 proxy. + Se connecter au réseau Hypercoin par un mandataire SOCKS5. &Connect through SOCKS5 proxy (default proxy): @@ -1087,8 +1091,8 @@ Adresse : %4 &Langue de l'interface utilisateur : - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - La langue de l'interface utilisateur peut être définie ici. Ce réglage sera pris en compte après redémarrage de Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + La langue de l'interface utilisateur peut être définie ici. Ce réglage sera pris en compte après redémarrage de Hypercoin. &Unit to show amounts in: @@ -1128,7 +1132,7 @@ Adresse : %4 Client will be shutdown, do you want to proceed? - Le client sera arrêté, voulez-vous continuer? + Le client sera arrêté, voulez-vous continuer ? This change would require a client restart. @@ -1146,8 +1150,8 @@ Adresse : %4 Formulaire - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Les informations affichées peuvent être obsolètes. Votre portefeuille est automatiquement synchronisé avec le réseau Bitcoin lorsque la connexion s'établit, or ce processus n'est pas encore terminé. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Les informations affichées peuvent être obsolètes. Votre portefeuille est automatiquement synchronisé avec le réseau Hypercoin lorsque la connexion s'établit, or ce processus n'est pas encore terminé. Watch-only: @@ -1253,16 +1257,16 @@ Adresse : %4 Erreur de demande de paiement - Cannot start bitcoin: click-to-pay handler - Impossible de démarrer le gestionnaire de cliquer-pour-payer bitcoin : + Cannot start hypercoin: click-to-pay handler + Impossible de démarrer le gestionnaire de cliquer-pour-payer hypercoin : Payment request fetch URL is invalid: %1 L'URL de récupération de la demande de paiement est invalide : %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - L'URI ne peut pas être analysé ! Ceci peut être causé par une adresse Bitcoin invalide ou par des paramètres d'URI mal formés. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + L'URI ne peut pas être analysé ! Ceci peut être causé par une adresse Hypercoin invalide ou par des paramètres d'URI mal formés. Payment request file handling @@ -1280,6 +1284,14 @@ Adresse : %4 Refund from %1 Remboursement de %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La demande de paiement %1 est trop grande (%2 octets, %3 octets permis). + + + Payment request DoS protection + Protection DdS des demandes de paiement + Error communicating with %1: %2 Erreur de communication avec %1 : %2 @@ -1323,8 +1335,8 @@ Adresse : %4 Montant - Enter a Bitcoin address (e.g. %1) - Saisir une adresse Bitcoin (p. ex. %1) + Enter a Hypercoin address (e.g. %1) + Saisir une adresse Hypercoin (p. ex. %1) %1 d @@ -1549,16 +1561,16 @@ Adresse : %4 Journal de débogage - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Ouvrir le journal de débogage de Bitcoin depuis le répertoire de données actuel. Ceci peut prendre quelques secondes pour les journaux de grande taille. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Ouvrir le journal de débogage de Hypercoin depuis le répertoire de données actuel. Ceci peut prendre quelques secondes pour les journaux de grande taille. Clear console Nettoyer la console - Welcome to the Bitcoin RPC console. - Bienvenue sur la console RPC de Bitcoin. + Welcome to the Hypercoin RPC console. + Bienvenue sur la console RPC de Hypercoin. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1566,7 +1578,7 @@ Adresse : %4 Type <b>help</b> for an overview of available commands. - Taper <b>help</b> pour afficher une vue générale des commandes disponibles. + Taper <b>help</b> pour afficher une vue générale des commandes proposées. %1 B @@ -1632,8 +1644,8 @@ Adresse : %4 Ré&utiliser une adresse de réception existante (non recommandé) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Un message optionnel à joindre à la demande de paiement qui sera affiché à l'ouverture de celle-ci. Note : le message ne sera pas envoyé avec le paiement par le réseau Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Un message optionnel à joindre à la demande de paiement qui sera affiché à l'ouverture de celle-ci. Note : le message ne sera pas envoyé avec le paiement par le réseau Hypercoin. An optional label to associate with the new receiving address. @@ -1869,7 +1881,7 @@ Adresse : %4 total au moins - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. Il est correct de payer les frais minimum tant que le volume transactionnel est inférieur à l'espace dans les blocs. Mais soyez conscient que ceci pourrait résulter en une transaction n'étant jamais confirmée une fois qu'il y aura plus de transactions que le réseau ne pourra en traiter. @@ -1977,8 +1989,8 @@ Adresse : %4 Copier la monnaie - Total Amount %1 (= %2) - Montant total %1 (= %2) + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + Montant total %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> or @@ -2002,7 +2014,7 @@ Adresse : %4 Duplicate address found, can only send to each address once per send operation. - Adresse indentique trouvée, il n'est possible d'envoyer qu'une fois à chaque adresse par opération d'envoi. + Adresse identique trouvée. Il n'est possible d'envoyer qu'une fois à chaque adresse, par opération d'envoi. Transaction creation failed! @@ -2025,8 +2037,8 @@ Adresse : %4 Début de confirmation estimé à %1 bloc(s). - Warning: Invalid Bitcoin address - Avertissement : adresse Bitcoin invalide + Warning: Invalid Hypercoin address + Avertissement : adresse Hypercoin invalide (no label) @@ -2076,8 +2088,8 @@ Adresse : %4 Ceci est un paiement normal. - The Bitcoin address to send the payment to - L'adresse Bitcoin à laquelle envoyer le paiement + The Hypercoin address to send the payment to + L'adresse Hypercoin à laquelle envoyer le paiement Alt+A @@ -2108,8 +2120,8 @@ Adresse : %4 Saisir une étiquette pour cette adresse afin de l'ajouter à la liste d'adresses utilisées - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Un message qui était joint à l'URI Bitcoin et qui sera stocké avec la transaction pour référence. Note : ce message ne sera pas envoyé par le réseau Bitcoin. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Un message qui était joint à l'URI Hypercoin et qui sera stocké avec la transaction pour référence. Note : ce message ne sera pas envoyé par le réseau Hypercoin. This is an unverified payment request. @@ -2127,8 +2139,8 @@ Adresse : %4 ShutdownWindow - Bitcoin Core is shutting down... - Arrêt de Bitcoin Core... + Hypercoin Core is shutting down... + Arrêt de Hypercoin Core... Do not shut down the computer until this window disappears. @@ -2147,11 +2159,11 @@ Adresse : %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Vous pouvez signer des messages avec vos adresses pour prouver que vous les détenez. Faites attention de ne pas signer de vague car des attaques d'hameçonnage peuvent essayer d'usurper votre identité par votre signature. Ne signez que des déclarations entièrement détaillées et avec lesquelles vous serez d'accord. + Vous pouvez signer des messages avec vos adresses pour prouver que vous les détenez. Faites attention de ne rien signer de vague, car des attaques d'hameçonnage pourraient essayer de vous faire signer avec votre identité afin de l'usurper. Ne signez que des déclarations entièrement détaillées et avec lesquelles vous êtes d'accord. - The Bitcoin address to sign the message with - L'adresse Bitcoin avec laquelle signer le message + The Hypercoin address to sign the message with + L'adresse Hypercoin avec laquelle signer le message Choose previously used address @@ -2182,8 +2194,8 @@ Adresse : %4 Copier la signature actuelle dans le presse-papiers - Sign the message to prove you own this Bitcoin address - Signer le message pour prouver que vous détenez cette adresse Bitcoin + Sign the message to prove you own this Hypercoin address + Signer le message pour prouver que vous détenez cette adresse Hypercoin Sign &Message @@ -2203,15 +2215,15 @@ Adresse : %4 Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - Saisir ci-dessous l'adresse de signature, le message (assurez-vous d'avoir copié exactement les retours à la ligne, les espaces, tabulations etc.) et la signature pour vérifier le message. Faire attention à ne pas déduire davantage de la signature que ce qui est contenu dans le message signé lui-même pour éviter d'être trompé par une attaque d'homme du milieu. + Saisir ci-dessous l'adresse de signature, le message (assurez-vous d'avoir copié exactement les retours à la ligne, les espaces, tabulations etc.) et la signature pour vérifier le message. Faire attention à ne pas déduire davantage de la signature que ce qui est contenu dans le message signé même, pour éviter d'être trompé par une attaque d'homme du milieu. - The Bitcoin address the message was signed with - L'adresse Bitcoin avec laquelle le message a été signé + The Hypercoin address the message was signed with + L'adresse Hypercoin avec laquelle le message a été signé - Verify the message to ensure it was signed with the specified Bitcoin address - Vérifier le message pour vous assurer qu'il a bien été signé par l'adresse Bitcoin spécifiée + Verify the message to ensure it was signed with the specified Hypercoin address + Vérifier le message pour vous assurer qu'il a bien été signé par l'adresse Hypercoin spécifiée Verify &Message @@ -2243,7 +2255,7 @@ Adresse : %4 Private key for the entered address is not available. - La clef privée pour l'adresse indiquée n'est pas disponible. + La clef privée n'est pas disponible pour l'adresse indiquée. Message signing failed. @@ -2277,8 +2289,8 @@ Adresse : %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2798,30 +2810,6 @@ Adresse : %4 Accept connections from outside (default: 1 if no -proxy or -connect) Accepter les connexions entrantes (par défaut : 1 si aucun -proxy ou -connect ) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, vous devez définir un mot de passe rpc dans le fichier de configuration : -%s -Il vous est conseillé d'utiliser le mot de passe aléatoire suivant : -rpcuser=bitcoinrpc -rpcpassword=%s -(vous n'avez pas besoin de retenir ce mot de passe) -Le nom d'utilisateur et le mot de passe NE DOIVENT PAS être identiques. -Si le fichier n'existe pas, créez-le avec les droits de lecture accordés au propriétaire. -Il est aussi conseillé de régler alertnotify pour être prévenu des problèmes ; -par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Se lier à l'adresse donnée et toujours l'écouter. Utilisez la notation [host]:port pour l'IPv6 @@ -2838,14 +2826,6 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Passer en mode de test de régression qui utilise une chaîne spéciale dans laquelle les blocs sont résolus instantanément. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Erreur : La transaction a été rejetée ! Ceci peut arriver si certaines pièces de votre portefeuille étaient déjà dépensées, par exemple si vous avez utilisé une copie de wallet.dat et les pièces ont été dépensées avec cette copie sans être marquées comme tel ici. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Erreur : cette transaction exige des frais de transaction d'au moins %s en raison de son montant, de sa complexité ou de l'utilisation de fonds reçus récemment ! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Exécuter la commande lorsqu'une transaction de portefeuille change (%s dans la commande est remplacée par TxID) @@ -2863,8 +2843,8 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Ceci est une pré-version de test - l'utiliser à vos risques et périls - ne pas l'utiliser pour miner ou pour des applications marchandes - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Impossible de se lier à %s sur cet ordinateur. Bitcoin Core fonctionne probablement déjà. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Impossible de se lier à %s sur cet ordinateur. Hypercoin Core fonctionne probablement déjà. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2950,18 +2930,10 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Error opening block database Erreur lors de l'ouverture de la base de données des blocs - - Error: A fatal internal error occured, see debug.log for details - Erreur : une erreur interne fatale s'est produite. Voir debug.log pour des détails - Error: Disk space is low! Erreur : l'espace disque est faible ! - - Error: Wallet locked, unable to create transaction! - Erreur : Portefeuille verrouillé, impossible de créer la transaction ! - Failed to listen on any port. Use -listen=0 if you want this. Échec de l'écoute sur un port quelconque. Utilisez -listen=0 si vous voulez ceci. @@ -2984,7 +2956,7 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Not enough file descriptors available. - Pas assez de descripteurs de fichiers de disponibles. + Pas assez de descripteurs de fichiers proposés. Only connect to nodes in network <net> (ipv4, ipv6 or onion) @@ -3055,8 +3027,8 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Se lier à l'adresse donnée pour écouter des connexions JSON-RPC. Utiliser la notation [host]:port pour l'IPv6. Cette option peut être spécifiée plusieurs fois (par défaut : se lier à toutes les interfaces) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Impossible d’obtenir un verrou sur le répertoire de données %s. Bitcoin Core fonctionne probablement déjà. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Impossible d’obtenir un verrou sur le répertoire de données %s. Hypercoin Core fonctionne probablement déjà. Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) @@ -3079,17 +3051,29 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Exécuter une commande lorsqu'une alerte pertinente est reçue ou si nous voyons une bifurcation vraiment étendue (%s dans la commande est remplacé par le message) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Les frais (en BTC/Ko) inférieurs à ce seuil sont considérés comme étant nuls pour le relayage (par défaut : %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Les frais (en HOT/Ko) inférieurs à ce seuil sont considérés comme étant nuls pour le relayage (par défaut : %s) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Les frais (en BTC/Ko) inférieurs à ce seuil sont considérés comme étant nuls pour la création de transactions (par défaut : %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Les frais (en HOT/Ko) inférieurs à ce seuil sont considérés comme étant nuls pour la création de transactions (par défaut : %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Si paytxfee n'est pas défini, inclure suffisamment de frais afin que les transactions commencent la confirmation en moyenne avant n blocs (par défaut : %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Montant invalide pour -maxtxfee=<amount> : « %s » (doit être au moins les frais minrelay de %s pour prévenir le blocage des transactions) Maximum size of data in data carrier transactions we relay and mine (default: %u) Quantité maximale de données dans les transactions du porteur de données que nous relayons et minons (par défaut : %u) + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Total maximal des frais à utiliser en une seule transaction de portefeuille. Le définir trop bas pourrait interrompre les grosses transactions (par défaut : %s) + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Demander les adresses des pairs par recherche DNS si l'on manque d'adresses (par défaut : 1 sauf si -connect) @@ -3107,13 +3091,45 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Ce produit comprend des logiciels développés par le projet OpenSSL pour être utilisés dans la boîte à outils OpenSSL <https://www.openssl.org/> et un logiciel cryptographique écrit par Eric Young, ainsi qu'un logiciel UPnP écrit par Thomas Bernard. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Avertissement : veuillez vérifier que l'heure et la date de votre ordinateur sont correctes ! Si votre horloge n'est pas à l'heure, Bitcoin Core ne fonctionnera pas correctement. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Pour utiliser hypercoind, ou l'option -server de hypercoin-qt, vous devez définir un mot de passe rpc dans le fichier de configuration : +%s +Il est recommandé d'utiliser le mot de passe aléatoire suivant : +rpcuser=hypercoinrpc +rpcpassword=%s +(vous n'avez pas à mémoriser ce mot de passe) +Le nom d'utilisateur et le mot de passe NE DOIVENT PAS être identiques. +Si le fichier n'existe pas, créez-le avec la permission lecture-seule-par-le-propriétaire. +Il est aussi recommandé de définir alertnotify afin que les problèmes vous soient signalés ; +par exemple : alertnotify=echo %%s | mail -s "Alerte Hypercoin" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Avertissement :-maxtxfee est défini très haut ! Des frais aussi élevés pourraient être payés sur une seule transaction. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Avertissement : veuillez vérifier que l'heure et la date de votre ordinateur sont correctes ! Si votre horloge n'est pas à l'heure, Hypercoin Core ne fonctionnera pas correctement. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Les pairs de la liste blanche ne peuvent pas être bannis DoS et leurs transactions sont toujours relayées, même si elles sont déjà dans le mempool, utile p. ex. pour une passerelle + + Accept public REST requests (default: %u) + Accepter les demandes REST publiques (par défaut : %u) + Cannot resolve -whitebind address: '%s' Impossible de résoudre l'adresse -whitebind : « %s » @@ -3131,24 +3147,36 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Impossible d'analyser la valeur -rpcbind %s comme adresse réseau - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Erreur lors du chargement de wallet.dat : le portefeuille exige une version plus récente de Bitcoin Core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Erreur lors du chargement de wallet.dat : le portefeuille exige une version plus récente de Hypercoin Core + + + Error reading from database, shutting down. + Erreur de lecture de la base de données, fermeture en cours. + + + Error: A fatal internal error occurred, see debug.log for details + Erreur : une erreur interne fatale s'est produite. Voir debug.log pour plus de détails Error: Unsupported argument -tor found, use -onion. Erreur : argument non pris en charge -tor trouvé, utiliser -onion. - Fee (in BTC/kB) to add to transactions you send (default: %s) - Les frais (en BTC/ko) à ajouter aux transactions que vous envoyez (par défaut : %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Les frais (en HOT/ko) à ajouter aux transactions que vous envoyez (par défaut : %s) Information Informations - Initialization sanity check failed. Bitcoin Core is shutting down. - L'initialisation du test de cohérence a échoué. Bitcoin est en cours de fermeture. + Initialization sanity check failed. Hypercoin Core is shutting down. + L'initialisation du test de cohérence a échoué. Hypercoin est en cours de fermeture. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Montant invalide pour -maxtxfee=<amount> : « %s » Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -3166,10 +3194,6 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Invalid netmask specified in -whitelist: '%s' Masque réseau invalide spécifié dans -whitelist : « %s » - - Keep at most <n> unconnectable blocks in memory (default: %u) - Garder au plus <n> blocs non connectables en mémoire (par défaut : %u) - Keep at most <n> unconnectable transactions in memory (default: %u) Garder au plus <n> transactions non connectables en mémoire (par défaut : %u) @@ -3183,17 +3207,17 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Options de relais du nœud : - Print block on startup, if found in block index - Imprimer le bloc au démarrage s'il est trouvé dans l'index des blocs - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Options RPC SSL : (voir le wiki Bitcoin pour les instructions de configuration de SSL) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Options RPC SSL : (voir le wiki Hypercoin pour les instructions de configuration de SSL) RPC server options: Options du serveur RPC : + + RPC support for HTTP persistent connections (default: %d) + Prise en charge de RPC pour les connexions persistantes HTTP (par défaut : %d) + Randomly drop 1 of every <n> network messages Abandonner aléatoirement 1 message du réseau sur <n> @@ -3202,6 +3226,10 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Randomly fuzz 1 of every <n> network messages Tester aléatoirement 1 message du réseau sur <n> + + Receive and display P2P network alerts (default: %u) + Recevoir et afficher les alertes du réseau poste à poste (%u par défaut) + Send trace/debug info to console instead of debug.log file Envoyer les informations de débogage/trace à la console au lieu du fichier debug.log @@ -3234,6 +3262,10 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Transaction amounts must be positive Les montants de transaction doivent être positifs + + Transaction too large for fee policy + La transaction est trop grosse pour la politique de frais + Transaction too large Transaction trop volumineuse @@ -3251,8 +3283,8 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Nom d'utilisateur pour les connexions JSON-RPC - Wallet needed to be rewritten: restart Bitcoin Core to complete - Le portefeuille avait besoin d'être réécrit : veuillez redémarrer Bitcoin Core pour terminer + Wallet needed to be rewritten: restart Hypercoin Core to complete + Le portefeuille avait besoin d'être réécrit : veuillez redémarrer Hypercoin Core pour terminer Warning @@ -3330,10 +3362,6 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com How thorough the block verification of -checkblocks is (0-4, default: %u) Degré de profondeur de la vérification des blocs -checkblocks (0-4, par défaut : %u) - - If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u) - Si paytxfee n'est pas défini, inclure des frais suffisants afin que les transactions soient confirmées en moyenne en n blocs (par défaut : %u) - Log transaction priority and fee per kB when mining blocks (default: %u) Lors du minage, journaliser la priorité des transactions et les frais par ko (par défaut : %u) @@ -3426,10 +3454,6 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Prepend debug output with timestamp (default: %u) Ajouter l'horodatage au début de la sortie de débogage (par défaut : %u) - - Print block tree on startup (default: %u) - Imprimer l'arborescence des blocs au démarrage (par défaut : %u) - Relay and mine data carrier transactions (default: %u) Relayer et miner les transactions du porteur de données (par défaut : %u) @@ -3494,10 +3518,6 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Montant invalide pour -paytxfee=<montant> : « %s » - - Invalid amount - Montant invalide - Insufficient funds Fonds insuffisants @@ -3530,13 +3550,9 @@ par exemple : alertnotify=echo %%s | mail -s "Alerte Bitcoin" admin@foo.com Done loading Chargement terminé - - To use the %s option - Pour utiliser l'option %s - Error Erreur - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fr_CA.ts b/src/qt/locale/bitcoin_fr_CA.ts index eae0b00b76c00..f314f3d1c1512 100644 --- a/src/qt/locale/bitcoin_fr_CA.ts +++ b/src/qt/locale/bitcoin_fr_CA.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Double-cliquez afin de modifier l'adress ou l'étiquette - Create a new address Créer une nouvelle adresse diff --git a/src/qt/locale/bitcoin_gl.ts b/src/qt/locale/bitcoin_gl.ts index 2252baec732b5..8665bbac7a100 100644 --- a/src/qt/locale/bitcoin_gl.ts +++ b/src/qt/locale/bitcoin_gl.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Doble click para editar a dirección ou a etiqueta - Create a new address Crear unha nova dirección @@ -66,12 +62,12 @@ Direccións para recibir - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estas son as túas direccións Bitcoin para enviar pagos. Revisa sempre a cantidade e a dirección receptora antes de enviar moedas. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Estas son as túas direccións Hypercoin para enviar pagos. Revisa sempre a cantidade e a dirección receptora antes de enviar moedas. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Estas son as túas direccións Bitcoin para recibir pagos. Recoméndase empregar unha nova dirección de recepción por cada transacción. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Estas son as túas direccións Hypercoin para recibir pagos. Recoméndase empregar unha nova dirección de recepción por cada transacción. Copy &Label @@ -160,8 +156,8 @@ Confirmar encriptación de moedeiro - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Precaución: Se encriptas o teu moedeiro e perdes o teu contrasinal, ti <b>PERDERÁS TÓDOLOS TEUS BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Precaución: Se encriptas o teu moedeiro e perdes o teu contrasinal, ti <b>PERDERÁS TÓDOLOS TEUS HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -180,8 +176,8 @@ Moedeiro encriptado - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se pechará agora para rematar o proceso de encriptación. Lembra que encriptar o teu moedeiro non protexe totalmente os teus bitcoins de ser robados por malware que infecte o teu ordenador. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin se pechará agora para rematar o proceso de encriptación. Lembra que encriptar o teu moedeiro non protexe totalmente os teus hypercoins de ser robados por malware que infecte o teu ordenador. Wallet encryption failed @@ -279,12 +275,12 @@ Reindexando bloques no disco... - Send coins to a Bitcoin address - Enviar moedas a unha dirección Bitcoin + Send coins to a Hypercoin address + Enviar moedas a unha dirección Hypercoin - Modify configuration options for Bitcoin - Modificar opcións de configuración para Bitcoin + Modify configuration options for Hypercoin + Modificar opcións de configuración para Hypercoin Backup wallet to another location @@ -307,8 +303,8 @@ &Verificar mensaxe... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -335,12 +331,12 @@ Encriptar as claves privadas que pertencen ao teu moedeiro - Sign messages with your Bitcoin addresses to prove you own them - Asina mensaxes coas túas direccións Bitcoin para probar que te pertencen + Sign messages with your Hypercoin addresses to prove you own them + Asina mensaxes coas túas direccións Hypercoin para probar que te pertencen - Verify messages to ensure they were signed with specified Bitcoin addresses - Verificar mensaxes para asegurar que foron asinados con direccións Bitcoin dadas. + Verify messages to ensure they were signed with specified Hypercoin addresses + Verificar mensaxes para asegurar que foron asinados con direccións Hypercoin dadas. &File @@ -359,16 +355,16 @@ Barra de ferramentas - Bitcoin Core - Core de Bitcoin + Hypercoin Core + Core de Hypercoin - Request payments (generates QR codes and bitcoin: URIs) - Solicitar pagos (xenera códigos QR e bitcoin: URIs) + Request payments (generates QR codes and hypercoin: URIs) + Solicitar pagos (xenera códigos QR e hypercoin: URIs) - &About Bitcoin Core - &Sobre Bitcoin Core + &About Hypercoin Core + &Sobre Hypercoin Core Show the list of used sending addresses and labels @@ -379,12 +375,12 @@ Amosar a listaxe de etiquetas e direccións para recibir empregadas - Open a bitcoin: URI or payment request - Abrir un bitcoin: URI ou solicitude de pago + Open a hypercoin: URI or payment request + Abrir un hypercoin: URI ou solicitude de pago - %n active connection(s) to Bitcoin network - %n conexión activa coa rede Bitcoin%n conexións activas coa rede Bitcoin + %n active connection(s) to Hypercoin network + %n conexión activa coa rede Hypercoin%n conexións activas coa rede Hypercoin No block source available... @@ -676,8 +672,8 @@ Dirección: %4 A dirección introducida "%1" xa está no libro de direccións. - The entered address "%1" is not a valid Bitcoin address. - A dirección introducida '%1' non é unha dirección Bitcoin válida. + The entered address "%1" is not a valid Hypercoin address. + A dirección introducida '%1' non é unha dirección Hypercoin válida. Could not unlock wallet. @@ -714,16 +710,16 @@ Dirección: %4 HelpMessageDialog - Bitcoin Core - Core de Bitcoin + Hypercoin Core + Core de Hypercoin version versión - About Bitcoin Core - Sobre Bitcoin core + About Hypercoin Core + Sobre Hypercoin core Command-line options @@ -773,8 +769,8 @@ Dirección: %4 Empregar un directorio de datos personalizado - Bitcoin Core - Core de Bitcoin + Hypercoin Core + Core de Hypercoin Error @@ -815,12 +811,12 @@ Dirección: %4 &Principal - Automatically start Bitcoin after logging in to the system. - Comezar Bitcoin automáticamente despois de loguearse no sistema. + Automatically start Hypercoin after logging in to the system. + Comezar Hypercoin automáticamente despois de loguearse no sistema. - &Start Bitcoin on system login - &Comezar Bitcoin ao facer login no sistema + &Start Hypercoin on system login + &Comezar Hypercoin ao facer login no sistema Reset all client options to default. @@ -835,8 +831,8 @@ Dirección: %4 &Rede - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir automáticamente o porto do cliente Bitcoin no router. Esto so funciona se o teu router soporta UPnP e está habilitado. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir automáticamente o porto do cliente Hypercoin no router. Esto so funciona se o teu router soporta UPnP e está habilitado. Map port using &UPnP @@ -883,8 +879,8 @@ Dirección: %4 &Linguaxe de interface de usuario: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - A linguaxe de interface de usuario pode fixarse aquí. Esta configuración terá efecto tras reiniciar Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + A linguaxe de interface de usuario pode fixarse aquí. Esta configuración terá efecto tras reiniciar Hypercoin. &Unit to show amounts in: @@ -922,8 +918,8 @@ Dirección: %4 Formulario - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - A información amosada por estar desactualizada. O teu moedeiro sincronízase automáticamente coa rede Bitcoin despois de que se estableza unha conexión, pero este proceso non está todavía rematado. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + A información amosada por estar desactualizada. O teu moedeiro sincronízase automáticamente coa rede Hypercoin despois de que se estableza unha conexión, pero este proceso non está todavía rematado. Your current spendable balance @@ -1113,16 +1109,16 @@ Dirección: %4 Arquivo de log de depuración - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Abrir o arquivo de log de depuración de Bitcoin dende o directorio actual de datos. Esto pode levar uns cantos segundos para grandes arquivos de log. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Abrir o arquivo de log de depuración de Hypercoin dende o directorio actual de datos. Esto pode levar uns cantos segundos para grandes arquivos de log. Clear console Limpar consola - Welcome to the Bitcoin RPC console. - Benvido á consola RPC de Bitcoin + Welcome to the Hypercoin RPC console. + Benvido á consola RPC de Hypercoin Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1385,8 +1381,8 @@ Dirección: %4 Atopouse dirección duplicada, so se pode enviar a cada dirección unha vez por operación. - Warning: Invalid Bitcoin address - Atención: Enderezo Bitcoin non válido + Warning: Invalid Hypercoin address + Atención: Enderezo Hypercoin non válido (no label) @@ -1514,8 +1510,8 @@ Dirección: %4 Copiar a sinatura actual ao portapapeis do sistema - Sign the message to prove you own this Bitcoin address - Asina a mensaxe para probar que posees esta dirección Bitcoin + Sign the message to prove you own this Hypercoin address + Asina a mensaxe para probar que posees esta dirección Hypercoin Sign &Message @@ -1538,8 +1534,8 @@ Dirección: %4 Introduce a dirección coa que asinar, a mensaxe (asegúrate de copiar exactamente os saltos de liña, espacios, tabulacións, etc.) e a sinatura debaixo para verificar a mensaxe. Ten coidado de non ler máis na sinatura do que hai no mensaxe asinado mesmo, a fin de evitar ser cazado nun ataque de home no medio. - Verify the message to ensure it was signed with the specified Bitcoin address - Verificar a mensaxe para asegurar que foi asinada coa dirección Bitcoin especificada + Verify the message to ensure it was signed with the specified Hypercoin address + Verificar a mensaxe para asegurar que foi asinada coa dirección Hypercoin especificada Verify &Message @@ -1605,8 +1601,8 @@ Dirección: %4 SplashScreen - Bitcoin Core - Core de Bitcoin + Hypercoin Core + Core de Hypercoin The Bitcoin Core developers @@ -2062,42 +2058,10 @@ Dirección: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Aceptar conexións de fóra (por defecto: 1 se non -proxy ou -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, debes fixar unha rpcpassword no arquivo de configuración: -%s -Reoméndase usar o seguinte contrasinal aleatorio: -rpcuser=bitcoinrpc -rpcpassword=%s -(non precisas lembrar este contrasinal) -O nome do usuario e o contrasinal DEBEN NON ser o mesmo. -Se o arquivo non existe, debes crealo con permisos de so lectura para o propietario. -Tamén é recomendable fixar alertnotify de modo que recibas notificación dos problemas; -por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Enlazar a unha dirección dada e escoitar sempre nela. Emprega a notación [host]:post para IPv6 - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Erro: A transacción foi rexeitada! Esto podería suceder se unha das moedas do teu moedeiro xa foi gastada, como se usas unha copia de wallet.dat e hai moedas que se gastaron na copia pero non foron marcadas como gastadas aquí. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Erro: Esta transacción require unha tarifa de transacción de alomenos %s debido á súa cantidade, complexidade ou emprego de fondos recentemente recibidos! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executar comando cando unha transacción do moedeiro cambia (%s no comando é substituído por TxID) @@ -2174,10 +2138,6 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error: Disk space is low! Erro: Espacio en disco escaso! - - Error: Wallet locked, unable to create transaction! - Erro: Moedeiro bloqueado, imposible crear transacción! - Failed to listen on any port. Use -listen=0 if you want this. Fallou escoitar en calquera porto. Emprega -listen=0 se queres esto. @@ -2342,10 +2302,6 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Cantidade inválida para -paytxfee=<cantidade>: '%s' - - Invalid amount - Cantidade inválida - Insufficient funds Fondos insuficientes @@ -2378,13 +2334,9 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Carga completa - - To use the %s option - Empregar a opción %s - Error Erro - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_gu_IN.ts b/src/qt/locale/bitcoin_gu_IN.ts index ef99b0dd39434..b7b091aa39c03 100644 --- a/src/qt/locale/bitcoin_gu_IN.ts +++ b/src/qt/locale/bitcoin_gu_IN.ts @@ -1,4 +1,4 @@ - + AddressBookPage diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitcoin_he.ts index b5470589860dd..100b00ee992fa 100644 --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitcoin_he.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - לחיצה כפולה לעריכת כתובת או תווית - Create a new address יצירת כתובת חדשה @@ -66,12 +62,12 @@ כתובות לקבלה - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - אלה כתובת הביטקוין שלך לצורך שליחת תשלומים. תמיד יש לבדוק את הכמות ואת כתובות מקבלי התשלומים לפני שליחת מטבעות. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + אלה כתובת ללייטקוין שלך לצורך שליחת תשלומים. תמיד יש לבדוק את הכמות ואת כתובות מקבלי התשלומים לפני שליחת מטבעות. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - אלה כתובות הביטקוין שלך לצורך קבלת תשלומים. מומלץ להשתמש בכתובת קבלה חדשה לכל העברה. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + אלה כתובות ללייטקוין שלך לצורך קבלת תשלומים. מומלץ להשתמש בכתובת קבלה חדשה לכל העברה. Copy &Label @@ -164,8 +160,8 @@ אישור הצפנת הארנק - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - אזהרה: הצפנת הארנק ואיבוד מילת הצופן עשויה להוביל <b>לאיבוד כל הביטקוינים שלך</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + אזהרה: הצפנת הארנק ואיבוד מילת הצופן עשויה להוביל <b>לאיבוד כל הלייטקוינים שלך</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +184,8 @@ נא להזין את מילת הצופן החדשה לארנק.<br/>כדאי להשתמש במילת צופן המורכבת מ<b>עשרה תווים אקראיים ומעלה</b>, או <b>שמונה מילים ומעלה</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - ביטקוין ייסגר כעת כדי להשלים את תהליך ההצפנה. עליך לזכור שהצפנת הארנק שלך אינה מגנה באופן מלא על הביטקוינים שלך מתכניות זדוניות המושתלות על המחשב. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + לייטקוין ייסגר כעת כדי להשלים את תהליך ההצפנה. עליך לזכור שהצפנת הארנק שלך אינה מגנה באופן מלא על הלייטקוינים שלך מתכניות זדוניות המושתלות על המחשב. Wallet encryption failed @@ -295,8 +291,8 @@ פתיחת &כתובת משאב… - Bitcoin Core client - לקוח ליבה של ביטקוין + Hypercoin Core client + לקוח ליבה של לייטקוין Importing blocks from disk... @@ -307,12 +303,12 @@ המקטעים נוספים למפתח בכונן… - Send coins to a Bitcoin address - שליחת מטבעות לכתובת ביטקוין + Send coins to a Hypercoin address + שליחת מטבעות לכתובת לייטקוין - Modify configuration options for Bitcoin - שינוי התצורה של ביטקוין + Modify configuration options for Hypercoin + שינוי התצורה של לייטקוין Backup wallet to another location @@ -335,8 +331,8 @@ &אימות הודעה… - Bitcoin - ביטקוין + Hypercoin + לייטקוין Wallet @@ -351,8 +347,8 @@ &קבלה - Show information about Bitcoin Core - הצגת מידע על ליבת ביטקוין + Show information about Hypercoin Core + הצגת מידע על ליבת לייטקוין &Show / Hide @@ -367,12 +363,12 @@ הצפנת המפתחות הפרטיים ששייכים לארנק שלך - Sign messages with your Bitcoin addresses to prove you own them - חתום על הודעות עם כתובות הביטקוין שלך כדי להוכיח שהן בבעלותך + Sign messages with your Hypercoin addresses to prove you own them + חתום על הודעות עם כתובות ללייטקוין שלך כדי להוכיח שהן בבעלותך - Verify messages to ensure they were signed with specified Bitcoin addresses - אמת הודעות כדי להבטיח שהן נחתמו עם כתובת ביטקוין מסוימות + Verify messages to ensure they were signed with specified Hypercoin addresses + אמת הודעות כדי להבטיח שהן נחתמו עם כתובת לייטקוין מסוימות &File @@ -391,16 +387,16 @@ סרגל כלים לשוניות - Bitcoin Core - ליבת ביטקוין + Hypercoin Core + ליבת לייטקוין - Request payments (generates QR codes and bitcoin: URIs) - בקשת תשלומים (יצירה של קודים מסוג QR וסכימות כתובות משאב של :bitcoin) + Request payments (generates QR codes and hypercoin: URIs) + בקשת תשלומים (יצירה של קודים מסוג QR וסכימות כתובות משאב של :hypercoin) - &About Bitcoin Core - על &אודות ליבת ביטקוין + &About Hypercoin Core + על &אודות ליבת לייטקוין Show the list of used sending addresses and labels @@ -411,16 +407,16 @@ הצגת רשימת הכתובות והתוויות הנמצאות בשימוש - Open a bitcoin: URI or payment request - פתיחת ביטקוין: כתובת משאב או בקשת תשלום + Open a hypercoin: URI or payment request + פתיחת לייטקוין: כתובת משאב או בקשת תשלום &Command-line options אפשרויות &שורת הפקודה - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - הצגת הודעות העזרה של ליבת ביטקוין כדי לקבל רשימה עם אפשרויות שורת הפקודה האפשריות של ביטקוין + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + הצגת הודעות העזרה של ליבת לייטקוין כדי לקבל רשימה עם אפשרויות שורת הפקודה האפשריות של לייטקוין No block source available... @@ -751,8 +747,8 @@ Address: %4 הכתובת שהוכנסה „%1“ כבר נמצאת בפנקס הכתובות. - The entered address "%1" is not a valid Bitcoin address. - הכתובת שהוכנסה „%1“ אינה כתובת ביטקוין תקנית. + The entered address "%1" is not a valid Hypercoin address. + הכתובת שהוכנסה „%1“ אינה כתובת לייטקוין תקנית. Could not unlock wallet. @@ -789,8 +785,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - ליבת ביטקוין + Hypercoin Core + ליבת לייטקוין version @@ -801,8 +797,8 @@ Address: %4 (%1-סיביות) - About Bitcoin Core - על אודות ליבת ביטקוין + About Hypercoin Core + על אודות ליבת לייטקוין Command-line options @@ -848,16 +844,16 @@ Address: %4 ברוך בואך - Welcome to Bitcoin Core. - ברוך בואך לליבת ביטקוין + Welcome to Hypercoin Core. + ברוך בואך לליבת לייטקוין - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - מכיוון שזאת הפעם הראשונה שהתכנית פועלת ניתן לבחור איפה ליבת ביטקוין תאחסן את הנתונים שלה. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + מכיוון שזאת הפעם הראשונה שהתכנית פועלת ניתן לבחור איפה ליבת לייטקוין תאחסן את הנתונים שלה. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - לקוח ביטקוין יוריד וישמור העתק של שרשרת המקטעים של ביטקוין. לפחות %1 ג״ב מהנתונים יאוחסנו בתיקייה זו, והיא תגדל עם הזמן. הארנק גם יאוחסן בתיקייה הזו. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + לקוח לייטקוין יוריד וישמור העתק של שרשרת המקטעים של לייטקוין. לפחות %1 ג״ב מהנתונים יאוחסנו בתיקייה זו, והיא תגדל עם הזמן. הארנק גם יאוחסן בתיקייה הזו. Use the default data directory @@ -868,8 +864,8 @@ Address: %4 שימוש בתיקיית נתונים מותאמת אישית: - Bitcoin Core - ליבת ביטקוין + Hypercoin Core + ליבת לייטקוין Error: Specified data directory "%1" cannot be created. @@ -914,12 +910,12 @@ Address: %4 &ראשי - Automatically start Bitcoin after logging in to the system. - הפעלת ביטקוין אוטומטית לאחר כניסה למערכת. + Automatically start Hypercoin after logging in to the system. + הפעלת לייטקוין אוטומטית לאחר כניסה למערכת. - &Start Bitcoin on system login - ה&פעלת ביטקוין בעת הכניסה למערכת + &Start Hypercoin on system login + ה&פעלת לייטקוין בעת הכניסה למערכת Size of &database cache @@ -994,8 +990,8 @@ Address: %4 עודף &בלתי מאושר מההשקעה - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - פתיחת הפתחה של ביטקוין בנתב באופן אוטומטי. עובד רק אם UPnP מופעל ונתמך בנתב. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + פתיחת הפתחה של לייטקוין בנתב באופן אוטומטי. עובד רק אם UPnP מופעל ונתמך בנתב. Map port using &UPnP @@ -1042,8 +1038,8 @@ Address: %4 &שפת מנשק המשתמש: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - להלן ניתן לקבוע את שפת מנשק המשתמש. הגדרה זו תיכנס לתוקף לאחר הפעלה מחדש של ביטקוין. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + להלן ניתן לקבוע את שפת מנשק המשתמש. הגדרה זו תיכנס לתוקף לאחר הפעלה מחדש של לייטקוין. &Unit to show amounts in: @@ -1101,8 +1097,8 @@ Address: %4 טופס - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - המידע המוצג עשוי להיות מיושן. הארנק שלך מסתנכרן באופן אוטומטי עם רשת הביטקוין לאחר יצירת החיבור, אך התהליך טרם הסתיים. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + המידע המוצג עשוי להיות מיושן. הארנק שלך מסתנכרן באופן אוטומטי עם רשת ללייטקוין לאחר יצירת החיבור, אך התהליך טרם הסתיים. Watch-only: @@ -1204,16 +1200,16 @@ Address: %4 שגיאה בבקשת תשלום - Cannot start bitcoin: click-to-pay handler - לא ניתן להתחיל את ביטקוין: טיפול בלחיצה–לתשלום + Cannot start hypercoin: click-to-pay handler + לא ניתן להתחיל את לייטקוין: טיפול בלחיצה–לתשלום Payment request fetch URL is invalid: %1 כתובת אחזור בקשת התשלום שגויה: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - לא ניתן לנתח את כתובת המשאב! מצב זה יכול לקרות עקב כתובת ביטקוין שגויה או פרמטרים שגויים בכתובת המשאב. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + לא ניתן לנתח את כתובת המשאב! מצב זה יכול לקרות עקב כתובת לייטקוין שגויה או פרמטרים שגויים בכתובת המשאב. Payment request file handling @@ -1274,8 +1270,8 @@ Address: %4 כמות - Enter a Bitcoin address (e.g. %1) - נא להזין כתובת ביטקוין (למשל: %1) + Enter a Hypercoin address (e.g. %1) + נא להזין כתובת לייטקוין (למשל: %1) %1 d @@ -1500,7 +1496,7 @@ Address: %4 קובץ יומן ניפוי - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. פתיחת קובץ יומן הניפוי מתיקיית הנתונים הנוכחית. פעולה זו עשויה להימשך מספר שניות עבור קובצי יומן גדולים. @@ -1508,8 +1504,8 @@ Address: %4 ניקוי מסוף הבקרה - Welcome to the Bitcoin RPC console. - ברוכים הבאים למסוף ה־RPC של ביטקוין. + Welcome to the Hypercoin RPC console. + ברוכים הבאים למסוף ה־RPC של לייטקוין. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1583,8 +1579,8 @@ Address: %4 ש&ימוש &חוזר בכתובת קבלה קיימת (לא מומלץ) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - הודעת רשות לצירוף לבקשת התשלום שתוצג בעת פתיחת הבקשה. לתשומת לבך: ההודעה לא תישלח עם התשלום ברשת ביטקוין. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + הודעת רשות לצירוף לבקשת התשלום שתוצג בעת פתיחת הבקשה. לתשומת לבך: ההודעה לא תישלח עם התשלום ברשת לייטקוין. An optional label to associate with the new receiving address. @@ -1855,10 +1851,6 @@ Address: %4 Copy change העתקת עודף - - Total Amount %1 (= %2) - הסכום הכולל %1 (= %2) - or או @@ -1892,8 +1884,8 @@ Address: %4 ההעברה נדחתה! מצב כזה עשוי לקרות אם חלק מהמטבעות בארנק שלך כבר הושקעו, כמו למשל עקב שימוש בעותק של wallet.dat והמטבעות הושקעו בעותק אבל לא סומנו כאילו הושקעו דרך כאן. - Warning: Invalid Bitcoin address - אזהרה: כתובת ביטקוין שגויה + Warning: Invalid Hypercoin address + אזהרה: כתובת לייטקוין שגויה (no label) @@ -1943,8 +1935,8 @@ Address: %4 זהו תשלום רגיל. - The Bitcoin address to send the payment to - כתובת הביטקוין של המוטב + The Hypercoin address to send the payment to + כתובת ללייטקוין של המוטב Alt+A @@ -1975,8 +1967,8 @@ Address: %4 יש להזין תווית עבור כתובת זו כדי להוסיף אותה לרשימת הכתובות בשימוש - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - הודעה שצורפה לביטקוין: כתובת שתאוחסן בהעברה לצורך מעקב מצדך. לתשומת לבך: הודעה זו לא תישלח ברשת הביטקוין. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + הודעה שצורפה ללייטקוין: כתובת שתאוחסן בהעברה לצורך מעקב מצדך. לתשומת לבך: הודעה זו לא תישלח ברשת ללייטקוין. This is an unverified payment request. @@ -1994,8 +1986,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - ליבת ביטקוין נסגרת… + Hypercoin Core is shutting down... + ליבת לייטקוין נסגרת… Do not shut down the computer until this window disappears. @@ -2017,8 +2009,8 @@ Address: %4 ניתן לחתום על הודעות עם הכתובות שלך כדי להוכיח שהן בבעלותך. מומלץ להיזהר לא לחתום על משהו מפוקפק, שכן התקפות דיוג עשויות לגרום לך בעורמה למסור את זהותך. רצוי לחתום רק על הצהרות מפורטות לחלוטין שהסכמת עמן. - The Bitcoin address to sign the message with - כתובת הביטקוין אתה לחתום אתה את ההודעה + The Hypercoin address to sign the message with + כתובת ללייטקוין אתה לחתום אתה את ההודעה Choose previously used address @@ -2049,8 +2041,8 @@ Address: %4 העתקת החתימה הנוכחית ללוח הגזירים - Sign the message to prove you own this Bitcoin address - ניתן לחתום על ההודעה כדי להוכיח שכתובת הביטקוין הזו בבעלותך. + Sign the message to prove you own this Hypercoin address + ניתן לחתום על ההודעה כדי להוכיח שכתובת ללייטקוין הזו בבעלותך. Sign &Message @@ -2073,12 +2065,12 @@ Address: %4 הכנס למטה את הכתובת החותמת, ההודעה (ודא שאתה מעתיק מעברי שורה, רווחים, טאבים וכו' באופן מדויק) והחתימה כדי לאמת את ההודעה. היזהר לא לפרש את החתימה כיותר ממה שמופיע בהודעה החתומה בעצמה, כדי להימנע מליפול קורבן למתקפת איש-באמצע. - The Bitcoin address the message was signed with - כתובת הביטקוין שאתה נחתמה ההודעה + The Hypercoin address the message was signed with + כתובת ללייטקוין שאתה נחתמה ההודעה - Verify the message to ensure it was signed with the specified Bitcoin address - ניתן לאמת את ההודעה כדי להבטיח שהיא נחתמה עם כתובת הביטקוין הנתונה + Verify the message to ensure it was signed with the specified Hypercoin address + ניתן לאמת את ההודעה כדי להבטיח שהיא נחתמה עם כתובת ללייטקוין הנתונה Verify &Message @@ -2144,8 +2136,8 @@ Address: %4 SplashScreen - Bitcoin Core - ליבת ביטקוין + Hypercoin Core + ליבת לייטקוין The Bitcoin Core developers @@ -2657,30 +2649,6 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) קבלת חיבורים מבחוץ (בררת מחדל: 1 ללא ‎-proxy או ‎-connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, עליך להגדיר את ססמת ה־RPC בקובץ התצורה: - %s -מומלץ להשתמש בססמה האקראית הבאה: -rpcuser=bitcoinrpc -rpcpassword=%s -(אין צורך לזכור את הססמה) -אסור ששם המשתמש והססמה יהיו זהים. -אם הקובץ אינו קיים, יש ליצור אותו עם הרשאות קריאה לבעלים בלבד. -כמו כן, מומלץ להגדיר את alertnotify כדי לקבל דיווח על תקלות; -למשל: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 להתאגד לכתובת נתונה להאזין לה תמיד. יש להשתמש בצורה ‎[host]:port עבור IPv6. @@ -2693,14 +2661,6 @@ rpcpassword=%s Enter regression test mode, which uses a special chain in which blocks can be solved instantly. כניסה למצב בדיקת נסיגה, שמשתמש בשרשרת מיוחדת בה ניתן לפתור את המקטעים במהירות. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - שגיאה: ההעברה נדחתה! מצב כזה עלול לקרות אם כמה מהמטבעות בארנק שלך כבר נוצלו, למשל אם השתמשת בעותק של wallet.dat ומטבעות נשלחו בעותק אך לא סומנו כמושקעות כאן. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - שגיאה: ההעברה הזאת דורשת עמלת פעולה של לפחות %s עקב הכמות, המורכבות או השימוש בכספים שהתקבלו לאחרונה! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) ביצוע פקודה כאשר העברה בארנק משתנה (%s ב־cmd יוחלף ב־TxID) @@ -2710,8 +2670,8 @@ rpcpassword=%s זוהי בניית ניסיון טרום-שחרור - השימוש בה על אחריותך - אין להשתמש לצורך כריה או יישומי מסחר - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - לא ניתן להתאגד אל %s במחשב זה. כנראה שליבת ביטקוין כבר פועלת. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + לא ניתן להתאגד אל %s במחשב זה. כנראה שליבת לייטקוין כבר פועלת. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2797,10 +2757,6 @@ rpcpassword=%s Error: Disk space is low! שגיאה: מעט מקום פנוי בכונן! - - Error: Wallet locked, unable to create transaction! - שגיאה: הארנק נעול, אין אפשרות ליצור העברה! - Failed to listen on any port. Use -listen=0 if you want this. האזנה נכשלה בכל פורט. השתמש ב- -listen=0 אם ברצונך בכך. @@ -2878,12 +2834,12 @@ rpcpassword=%s הרץ פקודה כאשר ההתראה הרלוונטית מתקבלת או כשאנחנו עדים לפיצול ארוך מאוד (%s בשורת הפקודה יוחלף ע"י ההודעה) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - העמלות (ב־BTC/ק״ב) הנמוכות מהסכום הזה נחשבות לעמלות אפס ליצירת העברה (בררת מחדל: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + העמלות (ב־HOT/ק״ב) הנמוכות מהסכום הזה נחשבות לעמלות אפס ליצירת העברה (בררת מחדל: %s) - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - אזהרה: נא לבדוק שהתאריך והשעה של המחשב שלך נכונים! אם השעון שלך שגוי ליבת ביטקוין לא תעבוד כראוי. + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + אזהרה: נא לבדוק שהתאריך והשעה של המחשב שלך נכונים! אם השעון שלך שגוי ליבת לייטקוין לא תעבוד כראוי. Cannot resolve -whitebind address: '%s' @@ -2902,24 +2858,24 @@ rpcpassword=%s לא ניתן לנתח את הערך של ‎-rpcbind שצוין בתור %s ככתובת רשת - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - אירעה שגיאה בטעינת wallet.dat: הארנק דורש גרסה חדשה יותר של ליבת ביטקוין + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + אירעה שגיאה בטעינת wallet.dat: הארנק דורש גרסה חדשה יותר של ליבת לייטקוין Error: Unsupported argument -tor found, use -onion. שגיאה: נמצא ארגומנט בלתי נתמך ‎-tor, יש להשתמש ב־‎-onion. - Fee (in BTC/kB) to add to transactions you send (default: %s) - עמלה (ב־BTC/ק״ב) להוספה להעברות שנשלחות ממך (בררת מחדל: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + עמלה (ב־HOT/ק״ב) להוספה להעברות שנשלחות ממך (בררת מחדל: %s) Information מידע - Initialization sanity check failed. Bitcoin Core is shutting down. - בדיקת התקינות ההתחלתית נכשלה. ליבת ביטקוין תיסגר כעת. + Initialization sanity check failed. Hypercoin Core is shutting down. + בדיקת התקינות ההתחלתית נכשלה. ליבת לייטקוין תיסגר כעת. Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -2946,12 +2902,8 @@ rpcpassword=%s אפשרויות ממסר מפרק: - Print block on startup, if found in block index - הצגת מקטע בהפעלה, אם נמצא במפתח המקטעים - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - אפשרויות RPC SSL: (נא לעיין בוויקי של ביטקוין לקבלת הנחיות על הגדרת SSL) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + אפשרויות RPC SSL: (נא לעיין בוויקי של לייטקוין לקבלת הנחיות על הגדרת SSL) RPC server options: @@ -3006,8 +2958,8 @@ rpcpassword=%s שם משתמש לחיבורי JSON-RPC - Wallet needed to be rewritten: restart Bitcoin Core to complete - יש לכתוב את הארנק מחדש: נא להפעיל את ליבת ביטקוין מחדש כדי להשלים את הפעולה + Wallet needed to be rewritten: restart Hypercoin Core to complete + יש לכתוב את הארנק מחדש: נא להפעיל את ליבת לייטקוין מחדש כדי להשלים את הפעולה Warning @@ -3093,10 +3045,6 @@ rpcpassword=%s Invalid amount for -paytxfee=<amount>: '%s' כמות לא תקינה עבור ‎-paytxfee=<amount>‎:‏ '%s' - - Invalid amount - כמות לא תקינה - Insufficient funds אין מספיק כספים @@ -3129,13 +3077,9 @@ rpcpassword=%s Done loading טעינה הושלמה - - To use the %s option - שימוש באפשרות %s - Error שגיאה - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_hi_IN.ts b/src/qt/locale/bitcoin_hi_IN.ts index 09a8392c27ab0..d2e89cb9c0fd3 100644 --- a/src/qt/locale/bitcoin_hi_IN.ts +++ b/src/qt/locale/bitcoin_hi_IN.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - दो बार क्लिक करे पता या लेबल संपादन करने के लिए ! - Create a new address नया पता लिखिए ! @@ -168,8 +164,8 @@ पहचान शब्द/अक्षर जो वॉलेट एनक्रिपशन के लिए इस्तेमाल किया है उसे बदलिए! - Bitcoin - बीटकोइन + Hypercoin + Hypercoin Wallet @@ -192,8 +188,8 @@ टैबस टूलबार - %n active connection(s) to Bitcoin network - %n सक्रिया संपर्क बीटकोइन नेटवर्क से%n सक्रिया संपर्क बीटकोइन नेटवर्क से + %n active connection(s) to Hypercoin network + %n सक्रिया संपर्क Hypercoin नेटवर्क से%n सक्रिया संपर्क Hypercoin नेटवर्क से %n hour(s) @@ -876,10 +872,6 @@ Address: %4 Loading addresses... पता पुस्तक आ रही है... - - Invalid amount - राशि ग़लत है - Loading block index... ब्लॉक इंडेक्स आ रहा है... diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitcoin_hr.ts index 22831a0fd5aa6..f1971bb166983 100644 --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitcoin_hr.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Dvostruki klik za uređivanje adrese ili oznake + Right-click to edit address or label + Desni klik za uređivanje adresa i oznaka Create a new address @@ -66,12 +66,12 @@ Adresa za primanje - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Ovo su vaše Bitcoin adrese za slanje uplate. Uvijek provjerite iznos i adresu primatelja prije slanja novca. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Ovo su vaše Hypercoin adrese za slanje uplate. Uvijek provjerite iznos i adresu primatelja prije slanja novca. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Ovo su vaše Bitcoin adrese za primanje isplate. Preporučamo da koristite novu primateljsku adresu za svaku transakciju. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Ovo su vaše Hypercoin adrese za primanje isplate. Preporučamo da koristite novu primateljsku adresu za svaku transakciju. Copy &Label @@ -164,8 +164,8 @@ Potvrdi šifriranje novčanika - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Upozorenje: Ako šifrirate vaš novčanik i izgubite lozinku, <b>IZGUBIT ĆETE SVE SVOJE BITCOINSE!</b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Upozorenje: Ako šifrirate vaš novčanik i izgubite lozinku, <b>IZGUBIT ĆETE SVE SVOJE HYPERCOINSE!</b> Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Unesite novu lozinku za novčanik. <br/>Molimo Vas da koristite zaporku od <b>deset ili više slučajnih znakova</b>, ili <b>osam ili više riječi.</b> - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin će se sada zatvoriti kako bi dovršio postupak šifriranja. Zapamtite da šifriranje vašeg novčanika ne može u potpunosti zaštititi vaše bitcoine od krađe preko zloćudnog softvera koji bi bio na vašem računalu. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin će se sada zatvoriti kako bi dovršio postupak šifriranja. Zapamtite da šifriranje vašeg novčanika ne može u potpunosti zaštititi vaše hypercoine od krađe preko zloćudnog softvera koji bi bio na vašem računalu. Wallet encryption failed @@ -295,8 +295,8 @@ Otvori &URI... - Bitcoin Core client - Bitcoin Core klijent + Hypercoin Core client + Hypercoin Core klijent Importing blocks from disk... @@ -307,12 +307,12 @@ Re-indeksiranje blokova na disku... - Send coins to a Bitcoin address - Slanje novca na bitcoin adresu + Send coins to a Hypercoin address + Slanje novca na hypercoin adresu - Modify configuration options for Bitcoin - Promijeni postavke konfiguracije za bitcoin + Modify configuration options for Hypercoin + Promijeni postavke konfiguracije za hypercoin Backup wallet to another location @@ -335,8 +335,8 @@ &Potvrdite poruku... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ Pri&miti - Show information about Bitcoin Core - Prikaži informacije o Bitcoin Coreu + Show information about Hypercoin Core + Prikaži informacije o Hypercoin Coreu &Show / Hide @@ -367,12 +367,12 @@ Šifriraj privatne ključeve koji pripadaju tvom novčaniku - Sign messages with your Bitcoin addresses to prove you own them - Potpiši poruke svojim Bitcoin adresama kako bi dokazao da si njihov vlasnik + Sign messages with your Hypercoin addresses to prove you own them + Potpiši poruke svojim Hypercoin adresama kako bi dokazao da si njihov vlasnik - Verify messages to ensure they were signed with specified Bitcoin addresses - Provjerite porkue kako bi se uvjerili da su potpisane navedenim Bitcoin adresama + Verify messages to ensure they were signed with specified Hypercoin addresses + Provjerite porkue kako bi se uvjerili da su potpisane navedenim Hypercoin adresama &File @@ -391,16 +391,16 @@ Traka kartica - Bitcoin Core - Bitcoin Jezgra + Hypercoin Core + Hypercoin Jezgra - Request payments (generates QR codes and bitcoin: URIs) - Zatraži uplate (Stvara QR kodove i bitcoin: URIje) + Request payments (generates QR codes and hypercoin: URIs) + Zatraži uplate (Stvara QR kodove i hypercoin: URIje) - &About Bitcoin Core - &O Bitcoin Jezgri + &About Hypercoin Core + &O Hypercoin Jezgri Show the list of used sending addresses and labels @@ -410,9 +410,33 @@ Show the list of used receiving addresses and labels Prikaži popis korištenih adresa i oznaka za primanje isplate + + Open a hypercoin: URI or payment request + Otvori hypercoin: URI adresu ili zahtjev za uplatu + + + &Command-line options + Opcije &naredbene linije + + + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Ispis svih opcija naredbene linije programa sa kratkim opisom + - %n active connection(s) to Bitcoin network - %n aktivna veza na Bitcoin mrežu%n aktivne veze na Bitcoin mrežu%n aktivnih veza na Bitcoin mrežu + %n active connection(s) to Hypercoin network + %n aktivna veza na Hypercoin mrežu%n aktivne veze na Hypercoin mrežu%n aktivnih veza na Hypercoin mrežu + + + %1 and %2 + %1 i %2 + + + Last received block was generated %1 ago. + Zadnji primljeni blok je bio ustvaren prije %1. + + + Transactions after this will not yet be visible. + Transakcije izvršene za tim blokom nisu jop prikazane. Error @@ -468,22 +492,70 @@ Adresa:%4 CoinControlDialog + + Coin Selection + Izbor ulaza transakcije + + + Quantity: + Količina: + + + Bytes: + Bajtova: + Amount: Iznos: + + Priority: + Prioriteta: + + + Fee: + Naknada: + + + Dust: + Prah: + + + Change: + Vraćeno: + + + (un)select all + Izaberi sve/ništa + Amount Iznos + + Received with label + Primljeno pod oznakom + + + Received with address + Primljeno na adresu + Date Datum + + Confirmations + Broj potvrda + Confirmed Potvrđeno + + Priority + Prioriteta + Copy address Kopirati adresu @@ -496,6 +568,58 @@ Adresa:%4 Copy amount Kopiraj iznos + + Copy transaction ID + Kopiraj ID transakcije + + + highest + najviša + + + higher + viša + + + high + visoka + + + medium-high + srednje visoka + + + medium + srednja + + + low-medium + srednje niska + + + low + niska + + + lower + niža + + + lowest + najniža + + + yes + da + + + no + ne + + + Transactions with higher priority are more likely to get included into a block. + Transakcije više prioritete imaju veću vjerojatnost da budu prije dodane u novi blok. + (no label) (bez oznake) @@ -511,6 +635,14 @@ Adresa:%4 &Label &Oznaka + + The label associated with this address list entry + Oznaka adrese + + + The address associated with this address list entry. This can only be modified for sending addresses. + Hypercoin adresa. Izmjene adrese su moguće samo za adrese za slanje. + &Address &Adresa @@ -536,8 +668,8 @@ Adresa:%4 Upisana adresa "%1" je već u adresaru. - The entered address "%1" is not a valid Bitcoin address. - Upisana adresa "%1" nije valjana bitcoin adresa. + The entered address "%1" is not a valid Hypercoin address. + Upisana adresa "%1" nije valjana hypercoin adresa. Could not unlock wallet. @@ -550,29 +682,49 @@ Adresa:%4 FreespaceChecker + + A new data directory will be created. + Stvoren će biti novi direktorij za podatke. + name ime - + + Cannot create data directory here. + Nije moguće stvoriti direktorij za podatke na tom mjestu. + + HelpMessageDialog - Bitcoin Core - Bitcoin Jezgra + Hypercoin Core + Hypercoin Jezgra version verzija - About Bitcoin Core - O Bitcoin Jezrgu + (%1-bit) + (%1-bit) + + + About Hypercoin Core + O Hypercoin Jezrgu + + + Command-line options + Opcije programa u naredbenoj liniji Usage: Upotreba: + + command-line options + opcije programa u naredbenoj liniji + UI options UI postavke @@ -589,8 +741,12 @@ Adresa:%4 Dobrodošli - Bitcoin Core - Bitcoin Jezgra + Welcome to Hypercoin Core. + Dobrodošli u programu Hypercoin Core. + + + Hypercoin Core + Hypercoin Jezgra Error @@ -599,7 +755,27 @@ Adresa:%4 OpenURIDialog - + + Open URI + Otvori URI adresu + + + Open payment request from URI or file + Otvori zahtjev za plaćanje iz URI adrese ili datoteke + + + URI: + URI: + + + Select payment request file + Izaberi datoteku zahtjeva za plaćanje + + + Select payment request file to open + Izaberi datoteku zahtjeva za plaćanje + + OptionsDialog @@ -611,20 +787,56 @@ Adresa:%4 &Glavno - Automatically start Bitcoin after logging in to the system. - Automatski pokreni Bitcoin kad se uključi računalo + Automatically start Hypercoin after logging in to the system. + Automatski pokreni Hypercoin kad se uključi računalo + + + &Start Hypercoin on system login + &Pokreni Hypercoin kod pokretanja sustava + + + Size of &database cache + Veličina predmemorije baze podataka + + + MB + MB + + + Number of script &verification threads + Broj CPU niti za verifikaciju transakcija + + + Allow incoming connections + Dozvoli povezivanje izvana - &Start Bitcoin on system login - &Pokreni Bitcoin kod pokretanja sustava + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP adresa proxy servera (npr. IPv4: 127.0.0.1 / IPv6: ::1) + + + Reset all client options to default. + Nastavi sve postavke programa na početne vrijednosti. + + + &Reset Options + Po&nastavi postavke &Network &Mreža - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Automatski otvori port Bitcoin klijenta na ruteru. To radi samo ako ruter podržava UPnP i ako je omogućen. + W&allet + &Novčanik + + + &Spend unconfirmed change + &Trošenje nepotvrđenih vraćenih iznosa + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automatski otvori port Hypercoin klijenta na ruteru. To radi samo ako ruter podržava UPnP i ako je omogućen. Map port using &UPnP @@ -634,6 +846,10 @@ Adresa:%4 Proxy &IP: Proxy &IP: + + &Port: + &Vrata: + Port of the proxy (e.g. 9050) Port od proxy-a (npr. 9050) @@ -662,13 +878,17 @@ Adresa:%4 &Display &Prikaz + + User Interface &language: + Jezik: + &Unit to show amounts in: &Jedinica za prikazivanje iznosa: Choose the default subdivision unit to show in the interface and when sending coins. - Izaberite željeni najmanji dio bitcoina koji će biti prikazan u sučelju i koji će se koristiti za plaćanje. + Izaberite željeni najmanji dio hypercoina koji će biti prikazan u sučelju i koji će se koristiti za plaćanje. &OK @@ -694,8 +914,8 @@ Adresa:%4 Oblik - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Prikazani podatci mogu biti zastarjeli. Vaš novčanik se automatski sinkronizira s Bitcoin mrežom kada je veza uspostavljena, ali taj proces još nije završen. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Prikazani podatci mogu biti zastarjeli. Vaš novčanik se automatski sinkronizira s Hypercoin mrežom kada je veza uspostavljena, ali taj proces još nije završen. Total: @@ -725,6 +945,10 @@ Adresa:%4 QRImageWidget + + &Save Image... + &Spremi sliku... + Save QR Code Spremi QR kod @@ -772,6 +996,34 @@ Adresa:%4 Current number of blocks Trenutni broj blokova + + Received + Primljeno + + + Sent + Poslano + + + Direction + Smjer + + + Version + Verzija + + + Connection Time + Trajanje veze + + + Bytes Sent + Bajtova poslano + + + Bytes Received + Bajtova primljeno + Last block time Posljednje vrijeme bloka @@ -784,6 +1036,10 @@ Adresa:%4 &Console &Konzola + + &Network Traffic + &Mrežni promet + Totals Ukupno: @@ -793,20 +1049,40 @@ Adresa:%4 Očisti konzolu - Welcome to the Bitcoin RPC console. - Dobrodošli u Bitcoin RPC konzolu. + Welcome to the Hypercoin RPC console. + Dobrodošli u Hypercoin RPC konzolu. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. Kako bi navigirali kroz povijest koristite strelice gore i dolje. <b>Ctrl-L</b> kako bi očistili ekran. + + Unknown + Nepoznato + ReceiveCoinsDialog + + &Amount: + Iznos: + &Label: &Oznaka: + + &Message: + &Poruka: + + + Clear all fields of the form. + Obriši sva polja + + + &Request payment + &Zatraži plaćanje + Show Pokaži @@ -826,6 +1102,22 @@ Adresa:%4 QR Code QR kôd + + Copy &URI + Kopiraj &URI + + + Copy &Address + Kopiraj &adresu + + + &Save Image... + &Spremi sliku... + + + URI + URI + Address Adresa @@ -846,7 +1138,11 @@ Adresa:%4 Resulting URI too long, try to reduce the text for label / message. Rezultirajući URI je predug, probajte umanjiti tekst za naslov / poruku. - + + Error encoding URI into QR Code. + Greška pri kodiranju URI adrese u QR kod. + + RecentRequestsTableModel @@ -869,17 +1165,45 @@ Adresa:%4 (no label) (bez oznake) - + + (no message) + (bez poruke) + + + (no amount) + (bez iznosa) + + SendCoinsDialog Send Coins Slanje novca + + Quantity: + Količina: + + + Bytes: + Bajtova: + Amount: Iznos: + + Priority: + Prioriteta: + + + Fee: + Naknada: + + + Change: + Vraćeno: + Send to multiple recipients at once Pošalji k nekoliko primatelja odjednom @@ -888,6 +1212,14 @@ Adresa:%4 Add &Recipient &Dodaj primatelja + + Clear all fields of the form. + Obriši sva polja + + + Dust: + Prah: + Clear &All Obriši &sve @@ -1033,8 +1365,8 @@ Adresa:%4 SplashScreen - Bitcoin Core - Bitcoin Jezgra + Hypercoin Core + Hypercoin Jezgra [testnet] @@ -1303,6 +1635,10 @@ Adresa:%4 Copy amount Kopiraj iznos + + Copy transaction ID + Kopiraj ID transakcije + Edit label Izmjeniti oznaku @@ -1502,10 +1838,6 @@ Adresa:%4 Invalid amount for -paytxfee=<amount>: '%s' Nevaljali iznos za opciju -paytxfee=<amount>: '%s' - - Invalid amount - Nevaljali iznos za opciju - Insufficient funds Nedovoljna sredstva diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index 8109542405936..c1fa22293d5b4 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Dupla-kattintás a cím vagy címke szerkesztéséhez + Right-click to edit address or label + A cím vagy címke szerkeszteséhez kattintson a jobb gombbal Create a new address @@ -66,12 +66,12 @@ Fogadó címek - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Ezekről a címekről küldhetsz bitcoint. Mindig ellenőrizd a fogadó címet és a fizetendő összeget, mielőtt elküldöd. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Ezekről a címekről küldhetsz hypercoint. Mindig ellenőrizd a fogadó címet és a fizetendő összeget, mielőtt elküldöd. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Ezekkel a címekkel fogadhatsz bitcoint. Ajánlott minden tranzakcióhoz egy új fogadó címet használni. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Ezekkel a címekkel fogadhatsz hypercoint. Ajánlott minden tranzakcióhoz egy új fogadó címet használni. Copy &Label @@ -164,8 +164,8 @@ Biztosan titkosítani akarod a tárcát? - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Figyelem: ha titkosítod a tárcát és elveszted a jelszavad, akkor <b>AZ ÖSSZES BITCOINOD ELVESZIK!</b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Figyelem: ha titkosítod a tárcát és elveszted a jelszavad, akkor <b>AZ ÖSSZES HYPERCOINOD ELVESZIK!</b> Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Add meg a tárca új jelszavát.<br/>Olyan jelszót válassz, ami <b>legalább tíz véletlenszerű karakterből</b> vagy <b>legalább 8 véletlenszerű szóból</b> áll. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - A Bitcoin Core most bezár, hogy befejezze a titkosítást. Ne feledd: a tárca titkosítása nem nyújt teljes védelmet azzal szemben, hogy adathalász programok megfertőzzék a számítógéped és ellopják a bitcoinjaid. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + A Hypercoin Core most bezár, hogy befejezze a titkosítást. Ne feledd: a tárca titkosítása nem nyújt teljes védelmet azzal szemben, hogy adathalász programok megfertőzzék a számítógéped és ellopják a hypercoinjaid. Wallet encryption failed @@ -295,8 +295,8 @@ &URI azonosító megnyitása... - Bitcoin Core client - Bitcoin Core kliens + Hypercoin Core client + Hypercoin Core kliens Importing blocks from disk... @@ -307,12 +307,12 @@ Lemezen lévő blokkok újraindexelése... - Send coins to a Bitcoin address - Bitcoin küldése megadott címre + Send coins to a Hypercoin address + Hypercoin küldése megadott címre - Modify configuration options for Bitcoin - Bitcoin konfigurációs opciók + Modify configuration options for Hypercoin + Hypercoin konfigurációs opciók Backup wallet to another location @@ -335,8 +335,8 @@ Üzenet &valódiságának ellenőrzése - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Fogadás - Show information about Bitcoin Core - Bitcoin Core információ megjelenítése + Show information about Hypercoin Core + Hypercoin Core információ megjelenítése &Show / Hide @@ -367,12 +367,12 @@ A tárcádhoz tartozó privát kulcsok titkosítása - Sign messages with your Bitcoin addresses to prove you own them - Üzenetek aláírása a Bitcoin-címmeiddel, amivel bizonyítod, hogy a cím a sajátod + Sign messages with your Hypercoin addresses to prove you own them + Üzenetek aláírása a Hypercoin-címmeiddel, amivel bizonyítod, hogy a cím a sajátod - Verify messages to ensure they were signed with specified Bitcoin addresses - Üzenetek ellenőrzése, hogy valóban a megjelölt Bitcoin-címekkel vannak-e aláírva + Verify messages to ensure they were signed with specified Hypercoin addresses + Üzenetek ellenőrzése, hogy valóban a megjelölt Hypercoin-címekkel vannak-e aláírva &File @@ -391,16 +391,16 @@ Fül eszköztár - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Fizetési kérelem (QR-kódot és "bitcoin:" URI azonosítót hoz létre) + Request payments (generates QR codes and hypercoin: URIs) + Fizetési kérelem (QR-kódot és "hypercoin:" URI azonosítót hoz létre) - &About Bitcoin Core - &A Bitcoin Core-ról + &About Hypercoin Core + &A Hypercoin Core-ról Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ A használt fogadó címek és címkék megtekintése - Open a bitcoin: URI or payment request - "bitcoin:" URI azonosító vagy fizetési kérelem megnyitása + Open a hypercoin: URI or payment request + "hypercoin:" URI azonosító vagy fizetési kérelem megnyitása &Command-line options Paran&cssor kapcsolók - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - A Bitcoin Core súgóüzenet megjelenítése a Bitcoin lehetséges parancssori kapcsolóival. + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + A Hypercoin Core súgóüzenet megjelenítése a Hypercoin lehetséges parancssori kapcsolóival. - %n active connection(s) to Bitcoin network - %n aktív kapcsolat a Bitcoin-hálózattal%n aktív kapcsolat a Bitcoin-hálózattal + %n active connection(s) to Hypercoin network + %n aktív kapcsolat a Hypercoin-hálózattal%n aktív kapcsolat a Hypercoin-hálózattal No block source available... @@ -520,6 +520,10 @@ Cím: %4 CoinControlDialog + + Coin Selection + Érme Választás + Quantity: Mennyiség: @@ -568,6 +572,14 @@ Cím: %4 Amount Összeg + + Received with label + Címkével érkezett + + + Received with address + Címmel érkezett + Date Dátum @@ -772,8 +784,8 @@ Cím: %4 A megadott "%1" cím már szerepel a címjegyzékben. - The entered address "%1" is not a valid Bitcoin address. - A megadott "%1" cím nem egy érvényes Bitcoin-cím. + The entered address "%1" is not a valid Hypercoin address. + A megadott "%1" cím nem egy érvényes Hypercoin-cím. Could not unlock wallet. @@ -806,8 +818,8 @@ Cím: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -818,8 +830,8 @@ Cím: %4 (%1-bit) - About Bitcoin Core - A Bitcoin Core-ról + About Hypercoin Core + A Hypercoin Core-ról Command-line options @@ -866,12 +878,28 @@ Cím: %4 Üdvözlünk - Welcome to Bitcoin Core. - Üdvözlünk a Bitcoin Core-ban. + Welcome to Hypercoin Core. + Üdvözlünk a Hypercoin Core-ban. + + + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + A Hypercoin Core le fogja tölteni és tárolni fogja a Hypercoin blokklánc egy másolatát. Legalább %1GB adat lesz tárolva ebben a mappában, és ez folyamatosan nőni fog. A tárca szintén itt lesz tárolva. + + + Use the default data directory + Az alapértelmezett adat könyvtár használata + + + Use a custom data directory: + Saját adatkönyvtár használata: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core + + + Error: Specified data directory "%1" cannot be created. + Hiba: A megadott "%1" adatkönyvtár nem hozható létre. Error @@ -896,7 +924,11 @@ Cím: %4 Select payment request file Fizetési kérelmi fájl kiválasztása - + + Select payment request file to open + Fizetés kérelmi fájl kiválasztása + + OptionsDialog @@ -908,17 +940,33 @@ Cím: %4 &Fő - Automatically start Bitcoin after logging in to the system. - Induljon el a Bitcoin a számítógép bekapcsolásakor + Automatically start Hypercoin after logging in to the system. + Induljon el a Hypercoin a számítógép bekapcsolásakor - &Start Bitcoin on system login + &Start Hypercoin on system login &Induljon el a számítógép bekapcsolásakor + + Size of &database cache + A&datbázis gyorsítótár mérete + MB MB + + Accept connections from outside + Külső kapcsolatok elfogadása + + + Allow incoming connections + Bejövő kapcsolatok engedélyezése + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + A proxy IP címe (pl.: IPv4: 127.0.0.1 / IPv6: ::1) + Reset all client options to default. Minden kliensbeállítás alapértelmezettre állítása. @@ -932,13 +980,25 @@ Cím: %4 &Hálózat - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - A Bitcoin-kliens portjának automatikus megnyitása a routeren. Ez csak akkor működik, ha a routered támogatja az UPnP-t és az engedélyezve is van rajta. + W&allet + T&árca + + + Expert + szakértő + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + A Hypercoin-kliens portjának automatikus megnyitása a routeren. Ez csak akkor működik, ha a routered támogatja az UPnP-t és az engedélyezve is van rajta. Map port using &UPnP &UPnP port-feltérképezés + + Connect to the Hypercoin network through a SOCKS5 proxy. + Csatlakozás a Hypercoin hálózatához SOCKS5 proxyn keresztül + Proxy &IP: Proxy &IP: @@ -980,8 +1040,8 @@ Cím: %4 Felhasználófelület nye&lve: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Itt beállíthatod a felhasználófelület nyelvét. Ez a beállítás a Bitcoin ujraindítása után lép érvénybe. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Itt beállíthatod a felhasználófelület nyelvét. Ez a beállítás a Hypercoin ujraindítása után lép érvénybe. &Unit to show amounts in: @@ -1011,6 +1071,10 @@ Cím: %4 Confirm options reset Beállítások törlésének jóváhagyása. + + Client restart required to activate changes. + A változtatások aktiválásahoz újra kell indítani a klienst. + The supplied proxy address is invalid. A megadott proxy cím nem érvényes. @@ -1023,8 +1087,12 @@ Cím: %4 Űrlap - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - A kijelzett információ lehet, hogy elavult. A pénztárcája automatikusan szinkronizálja magát a Bitcoin hálózattal miután a kapcsolat létrejön, de ez e folyamat még nem fejeződött be. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + A kijelzett információ lehet, hogy elavult. A pénztárcája automatikusan szinkronizálja magát a Hypercoin hálózattal miután a kapcsolat létrejön, de ez e folyamat még nem fejeződött be. + + + Watch-only: + Csak megfigyelés Available: @@ -1050,6 +1118,10 @@ Cím: %4 Mined balance that has not yet matured Bányászott egyenleg amely még nem érett be. + + Balances + Egyenlegek + Total: Összesen: @@ -1058,6 +1130,14 @@ Cím: %4 Your current total balance Aktuális egyenleged + + Spendable: + Elkölthető: + + + Recent transactions + A legutóbbi tranzakciók + out of sync Nincs szinkronban. @@ -1070,28 +1150,72 @@ Cím: %4 URI kezelés - Cannot start bitcoin: click-to-pay handler - A bitcoint nem lehet elindítani: click-to-pay handler + Cannot start hypercoin: click-to-pay handler + A hypercoint nem lehet elindítani: click-to-pay handler PeerTableModel - + + User Agent + User Agent + + + Address/Hostname + Cím/Hosztnév + + + Ping Time + Ping idő + + QObject Amount Összeg + + Enter a Hypercoin address (e.g. %1) + Ad meg egy Hypercoin címet (pl: %1) + + + %1 d + %1 n + + + %1 h + %1 ó + + + %1 m + %1 p + + + %1 s + %1 mp + NETWORK HÁLÓZAT + + UNKNOWN + ISMERETLEN + + + None + Semmi + N/A Nem elérhető - + + %1 ms + %1 ms + + QRImageWidget @@ -1133,10 +1257,18 @@ Cím: %4 Debug window Debug ablak + + General + Általános + Using OpenSSL version Használt OpenSSL verzió + + Using BerkeleyDB version + Használt BerkeleyDB verzió + Startup time Bekapcsolás ideje @@ -1173,6 +1305,46 @@ Cím: %4 &Peers &Peerek + + Select a peer to view detailed information. + Peer kijelölése a részletes információkért + + + Version + Verzió + + + User Agent + User Agent + + + Services + Szolgáltatások + + + Connection Time + Csatlakozás ideje + + + Last Send + Legutóbb küldött + + + Last Receive + Legutóbbi fogadás + + + Bytes Sent + Küldött bájtok + + + Bytes Received + Fogadott bájtok + + + Ping Time + Ping idő + Last block time Utolsó blokk ideje @@ -1189,6 +1361,10 @@ Cím: %4 &Network Traffic &Hálózati forgalom + + &Clear + &Törlés + Totals Összesen: @@ -1214,8 +1390,8 @@ Cím: %4 Konzol törlése - Welcome to the Bitcoin RPC console. - Üdv a Bitcoin RPC konzoljában! + Welcome to the Hypercoin RPC console. + Üdv a Hypercoin RPC konzoljában! Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1241,25 +1417,69 @@ Cím: %4 %1 GB %1 GB + + via %1 + által %1 + never soha - + + Inbound + Bejövő + + + Outbound + Kimenő + + + Unknown + Ismeretlen + + + Fetching... + Begyüjtés + + ReceiveCoinsDialog + + &Amount: + &Összeg: + &Label: Címke: + + &Message: + &Üzenet: + + + Clear all fields of the form. + Minden mező törlése + Clear Törlés + + Requested payments history + A kért kifizetések története + + + &Request payment + &Fizetés kérése + Show Mutat + + Remove the selected entries from the list + A kijelölt elemek törlése a listáról + Remove Eltávolítás @@ -1295,6 +1515,14 @@ Cím: %4 &Save Image... &Kép mentése + + Request payment to %1 + Fizetés kérése a %1-hez + + + Payment information + Kifizetés információ + URI URI: @@ -1346,7 +1574,15 @@ Cím: %4 (no label) (nincs címke) - + + (no message) + (nincs üzenet) + + + (no amount) + (nincs összeg) + + SendCoinsDialog @@ -1357,6 +1593,14 @@ Cím: %4 Inputs... Bemenetek... + + automatically selected + automatikusan kiválasztva + + + Insufficient funds! + Fedezethiány! + Quantity: Mennyiség: @@ -1385,6 +1629,30 @@ Cím: %4 Change: Visszajáró: + + Transaction Fee: + Tranzakciós díj + + + Choose... + Válassz... + + + Minimize + Kicsinyítés + + + per kilobyte + kilobájtonként + + + normal + normal + + + fast + gyors + Send to multiple recipients at once Küldés több címzettnek egyszerre @@ -1393,6 +1661,10 @@ Cím: %4 Add &Recipient &Címzett hozzáadása + + Clear all fields of the form. + Minden mező törlése + Dust: Por-határ: @@ -1459,7 +1731,7 @@ Cím: %4 The amount exceeds your balance. - Nincs ennyi bitcoin az egyenlegeden. + Nincs ennyi hypercoin az egyenlegeden. The total exceeds your balance when the %1 transaction fee is included. @@ -1469,6 +1741,10 @@ Cím: %4 Duplicate address found, can only send to each address once per send operation. Többször szerepel ugyanaz a cím. Egy küldési műveletben egy címre csak egyszer lehet küldeni. + + Warning: Invalid Hypercoin address + Figyelmeztetés: Érvénytelen Hypercoin cím + (no label) (nincs címke) @@ -1477,6 +1753,10 @@ Cím: %4 Copy dust Visszajáró másolása + + Are you sure you want to send? + Biztos, hogy el akarod küldeni? + SendCoinsEntry @@ -1497,6 +1777,10 @@ Cím: %4 &Label: Címke: + + Choose previously used address + Válassz egy korábban már használt címet + Alt+A Alt+A @@ -1509,6 +1793,10 @@ Cím: %4 Alt+P Alt+P + + Remove this entry + Ez a bejegyzés eltávolítása + Message: Üzenet: @@ -1521,10 +1809,14 @@ Cím: %4 ShutdownWindow - Bitcoin Core is shutting down... - A Bitcoin Core leáll... + Hypercoin Core is shutting down... + A Hypercoin Core leáll... - + + Do not shut down the computer until this window disappears. + Ne álljon le a számítógép amíg ez az ablak el nem tűnik. + + SignVerifyMessageDialog @@ -1539,6 +1831,10 @@ Cím: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Aláírhat a címeivel üzeneteket, amivel bizonyíthatja, hogy a címek az önéi. Vigyázzon, hogy ne írjon alá semmi félreérthetőt, mivel a phising támadásokkal megpróbálhatják becsapni, hogy az azonosságát átírja másokra. Csak olyan részletes állításokat írjon alá, amivel egyetért. + + Choose previously used address + Válassz egy korábban már használt címet + Alt+A Alt+A @@ -1564,7 +1860,7 @@ Cím: %4 A jelenleg kiválasztott aláírás másolása a rendszer-vágólapra - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address Üzenet @@ -1623,8 +1919,8 @@ Cím: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -1810,6 +2106,10 @@ Cím: %4 Offline Offline + + Unconfirmed + Megerősítetlen: + Received with Erre a címre @@ -1941,6 +2241,10 @@ Cím: %4 Exporting Failed Az exportálás sikertelen volt + + Exporting Successful + Sikeres exportálás + Comma separated file (*.csv) Vesszővel elválasztott fájl (*.csv) @@ -2057,10 +2361,6 @@ Cím: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Kívülről érkező kapcsolatok elfogadása (alapértelmezett: 1, ha nem használt a -proxy vagy a -connect) - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Hiba: a tranzakciót elutasították. Ezt az okozhatja, ha már elköltöttél valamennyi érmét a tárcádból például ha a wallet.dat-od egy másolatát használtad, és így az elköltés csak abban lett jelölve, de itt nem. - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Parancs, amit akkor hajt végre, amikor egy tárca-tranzakció megváltozik (%s a parancsban lecserélődik a blokk TxID-re) @@ -2133,10 +2433,22 @@ Cím: %4 Verifying wallet... Tárca ellenőrzése... + + Wallet options: + Tárca beállítások: + You need to rebuild the database using -reindex to change -txindex Az adatbázist újra kell építeni -reindex használatával (módosítás -tindex). + + Copyright (C) 2009-%i The Bitcoin Core Developers + Copyright (C) 2009-%i A Bitcoin Core Fejlesztői + + + Error reading from database, shutting down. + Hiba az adatbázis olvasásakor, leállítás + Information Információ @@ -2250,13 +2562,9 @@ Cím: %4 Invalid amount for -paytxfee=<amount>: '%s' Étvénytelen -paytxfee=<összeg> összeg: '%s' - - Invalid amount - Étvénytelen összeg - Insufficient funds - Nincs elég bitcoinod. + Nincs elég hypercoinod. Loading block index... @@ -2286,10 +2594,6 @@ Cím: %4 Done loading Betöltés befejezve. - - To use the %s option - Használd a %s opciót - Error Hiba diff --git a/src/qt/locale/bitcoin_id_ID.ts b/src/qt/locale/bitcoin_id_ID.ts index ea2750ed08397..9a1974ab47f22 100644 --- a/src/qt/locale/bitcoin_id_ID.ts +++ b/src/qt/locale/bitcoin_id_ID.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Klik-ganda untuk mengubah alamat atau label - Create a new address Buat alamat baru @@ -66,11 +62,11 @@ Alamat-alamat menerima - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Alamat-alamat Anda supaya mengirim pembayaran. Periksalah jumlah dan alamat penerima setiap kali Anda mengirim Bitcoin. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Alamat-alamat Anda supaya mengirim pembayaran. Periksalah jumlah dan alamat penerima setiap kali Anda mengirim Hypercoin. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Alamat-alamat Anda supaya menerima pembayaran. Dianjurkan agar Anda menggunakan alamat menerima yang baru untuk setiap transaksi. @@ -160,8 +156,8 @@ Konfirmasi enkripsi dompet - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Perhatian: Jika anda mengenkripsi dompet anda dan lupa kata kuncinya, anda pasti <b>KEHILANGAN SELURUH BITCOIN ANDA</B>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Perhatian: Jika anda mengenkripsi dompet anda dan lupa kata kuncinya, anda pasti <b>KEHILANGAN SELURUH HYPERCOIN ANDA</B>! Are you sure you wish to encrypt your wallet? @@ -176,8 +172,8 @@ Dompet terenkripsi - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin akan menutup untuk menyelesaikan proses enkripsi. Ingat bahwa dengan mengenkripsi dompet Anda tidak sepenuhnya melindungi bitcoin Anda dari perangkat lunak berbahaya yang menginfeksi komputer Anda. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin akan menutup untuk menyelesaikan proses enkripsi. Ingat bahwa dengan mengenkripsi dompet Anda tidak sepenuhnya melindungi hypercoin Anda dari perangkat lunak berbahaya yang menginfeksi komputer Anda. Wallet encryption failed @@ -279,8 +275,8 @@ Buka &URI - Bitcoin Core client - Client Bitcoin Inti + Hypercoin Core client + Client Hypercoin Inti Importing blocks from disk... @@ -291,12 +287,12 @@ Mengindex ulang block di harddisk... - Send coins to a Bitcoin address - Kirim koin ke alamat Bitcoin + Send coins to a Hypercoin address + Kirim koin ke alamat Hypercoin - Modify configuration options for Bitcoin - Ubah pilihan konfigurasi untuk Bitcoin + Modify configuration options for Hypercoin + Ubah pilihan konfigurasi untuk Hypercoin Backup wallet to another location @@ -319,8 +315,8 @@ &Verifikasi pesan... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -335,8 +331,8 @@ &Menerima - Show information about Bitcoin Core - Tampilkan informasi tentang Bitcoin Inti + Show information about Hypercoin Core + Tampilkan informasi tentang Hypercoin Inti &Show / Hide @@ -351,12 +347,12 @@ Mengenkripsi kunci-kunci pribadi yang dipunyai dompetmu - Sign messages with your Bitcoin addresses to prove you own them - Tandalah pesanan dengan alamat-alamat Bitcoin Anda supaya membuktikan pesanan itu dikirim oleh Anda + Sign messages with your Hypercoin addresses to prove you own them + Tandalah pesanan dengan alamat-alamat Hypercoin Anda supaya membuktikan pesanan itu dikirim oleh Anda - Verify messages to ensure they were signed with specified Bitcoin addresses - Periksakan pesan-pesan supaya menjaminkan ditandatangani oleh alamat Bitcoin yang terperinci + Verify messages to ensure they were signed with specified Hypercoin addresses + Periksakan pesan-pesan supaya menjaminkan ditandatangani oleh alamat Hypercoin yang terperinci &File @@ -375,16 +371,16 @@ Baris tab - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Permintaan pembayaran (membangkitkan kode QR dan bitcoin: URIs) + Request payments (generates QR codes and hypercoin: URIs) + Permintaan pembayaran (membangkitkan kode QR dan hypercoin: URIs) - &About Bitcoin Core - &Mengenai Bitcoin Core + &About Hypercoin Core + &Mengenai Hypercoin Core Show the list of used sending addresses and labels @@ -395,20 +391,20 @@ Tampilkan daftar alamat dan label yang diterima - Open a bitcoin: URI or payment request - Buka URI bitcoin: atau permintaan pembayaran + Open a hypercoin: URI or payment request + Buka URI hypercoin: atau permintaan pembayaran &Command-line options &pilihan Perintah-baris - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Tampilkan pesan bantuan Bitcoin Core untuk memberikan daftar pilihan perintah-baris yang memungkinkan dalam aplikasi Bitcoin + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Tampilkan pesan bantuan Hypercoin Core untuk memberikan daftar pilihan perintah-baris yang memungkinkan dalam aplikasi Hypercoin - %n active connection(s) to Bitcoin network - %n hubungan aktif ke jaringan Bitcoin + %n active connection(s) to Hypercoin network + %n hubungan aktif ke jaringan Hypercoin No block source available... @@ -744,8 +740,8 @@ Alamat: %4 Alamat yang dimasukkan "%1" sudah ada di dalam buku alamat. - The entered address "%1" is not a valid Bitcoin address. - Alamat yang dimasukkan "%1" bukan alamat Bitcoin yang benar. + The entered address "%1" is not a valid Hypercoin address. + Alamat yang dimasukkan "%1" bukan alamat Hypercoin yang benar. Could not unlock wallet. @@ -782,16 +778,16 @@ Alamat: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version versi - About Bitcoin Core - Mengenai Bitcoin Core + About Hypercoin Core + Mengenai Hypercoin Core Usage: @@ -825,8 +821,8 @@ Alamat: %4 Selamat Datang - Welcome to Bitcoin Core. - Selamat Datang ke Bitcoin Core + Welcome to Hypercoin Core. + Selamat Datang ke Hypercoin Core Use the default data directory @@ -837,8 +833,8 @@ Alamat: %4 Menggunakan direktori data yang dipilih Anda: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error @@ -883,12 +879,12 @@ Alamat: %4 &Utama - Automatically start Bitcoin after logging in to the system. - Menyalakan Bitcoin secara otomatis setelah masuk ke dalam sistem. + Automatically start Hypercoin after logging in to the system. + Menyalakan Hypercoin secara otomatis setelah masuk ke dalam sistem. - &Start Bitcoin on system login - &Menyalakan Bitcoin pada login sistem + &Start Hypercoin on system login + &Menyalakan Hypercoin pada login sistem MB @@ -939,8 +935,8 @@ Alamat: %4 &Perubahan saldo untuk transaksi yang belum dikonfirmasi - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Otomatis membuka port client Bitcoin di router. Hanya berjalan apabila router anda mendukung UPnP dan di-enable. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Otomatis membuka port client Hypercoin di router. Hanya berjalan apabila router anda mendukung UPnP dan di-enable. Map port using &UPnP @@ -987,8 +983,8 @@ Alamat: %4 &Bahasa Antarmuka Pengguna: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Tampilan bahasa pengguna dapat diatur disini. Pengaturan ini akan berpengaruh setelah memulai kembali aplikasi Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Tampilan bahasa pengguna dapat diatur disini. Pengaturan ini akan berpengaruh setelah memulai kembali aplikasi Hypercoin. &Unit to show amounts in: @@ -1046,8 +1042,8 @@ Alamat: %4 Formulir - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Informasi terlampir mungkin sudah kedaluwarsa. Dompet Anda secara otomatis mensinkronisasi dengan jaringan Bitcoin ketika sebuah hubungan terbentuk, namun proses ini belum selesai. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Informasi terlampir mungkin sudah kedaluwarsa. Dompet Anda secara otomatis mensinkronisasi dengan jaringan Hypercoin ketika sebuah hubungan terbentuk, namun proses ini belum selesai. Available: @@ -1261,16 +1257,16 @@ Alamat: %4 Berkas catatan debug - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Buka berkas catatan debug Bitcoin dari direktori data sekarang. Hal ini dapat memakan waktu beberapa detik untuk berkas catatan yang besar. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Buka berkas catatan debug Hypercoin dari direktori data sekarang. Hal ini dapat memakan waktu beberapa detik untuk berkas catatan yang besar. Clear console Bersihkan konsol - Welcome to the Bitcoin RPC console. - Selamat datang ke konsol RPC Bitcoin. + Welcome to the Hypercoin RPC console. + Selamat datang ke konsol RPC Hypercoin. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1576,10 +1572,6 @@ Alamat: %4 Copy change Salin uang kembali - - Total Amount %1 (= %2) - Jumlah Nilai %1 (= %2) - or atau @@ -1613,8 +1605,8 @@ Alamat: %4 Gagal: Transaksi ditolak. Ini mungkin terjadi jika beberapa dari koin dalam dompet Anda telah digunakan, seperti ketika Anda menggunakan salinan wallet.dat dan beberapa koin telah dibelanjakan dalam salinan tersebut tetapi disini tidak tertandai sebagai terpakai. - Warning: Invalid Bitcoin address - Awas: Alamat Bitcoin tidak sah + Warning: Invalid Hypercoin address + Awas: Alamat Hypercoin tidak sah (no label) @@ -1699,8 +1691,8 @@ Alamat: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core sementara dimatikan... + Hypercoin Core is shutting down... + Hypercoin Core sementara dimatikan... Do not shut down the computer until this window disappears. @@ -1746,8 +1738,8 @@ Alamat: %4 Salin tanda tangan terpilih ke sistem klipboard - Sign the message to prove you own this Bitcoin address - Tandai pesan untuk menyetujui kamu pemiliki alamat Bitcoin ini + Sign the message to prove you own this Hypercoin address + Tandai pesan untuk menyetujui kamu pemiliki alamat Hypercoin ini Sign &Message @@ -1825,8 +1817,8 @@ Alamat: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2306,17 +2298,13 @@ Alamat: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Terima hubungan dari luar (standar: 1 kalau -proxy atau -connect tidak dipilih) - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Gagal: Transaksi ditolak. Ini mungkin terjadi jika beberapa dari koin dalam dompet Anda telah digunakan, seperti ketika Anda menggunakan salinan wallet.dat dan beberapa koin telah dibelanjakan dalam salinan tersebut tetapi disini tidak tertandai sebagai terpakai. - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Jalankan perintah ketika perubahan transaksi dompet (%s di cmd digantikan oleh TxID) - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Tidak bisa mengikat dengan %s di computer ini. Kemungkinan Bitcoin Core sudah mulai. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Tidak bisa mengikat dengan %s di computer ini. Kemungkinan Hypercoin Core sudah mulai. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2390,10 +2378,6 @@ Alamat: %4 Error: Disk space is low! Gagal: Hard disk hampir terisi! - - Error: Wallet locked, unable to create transaction! - Gagal: Dompet terkunci, transaksi tidak bisa dibuat! - Importing... mengimpor... @@ -2443,8 +2427,8 @@ Alamat: %4 Impor blok dari eksternal berkas blk000???.dat - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Tidak bisa mengunci data directory %s. Kemungkinan Bitcoin Core sudah mulai. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Tidak bisa mengunci data directory %s. Kemungkinan Hypercoin Core sudah mulai. Information @@ -2566,10 +2550,6 @@ Alamat: %4 Invalid amount for -paytxfee=<amount>: '%s' Nilai salah untuk -paytxfee=<amount>: '%s' - - Invalid amount - Nilai salah - Insufficient funds Saldo tidak mencukupi @@ -2602,10 +2582,6 @@ Alamat: %4 Done loading Memuat selesai - - To use the %s option - Gunakan pilihan %s - Error Gagal diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index 06cf0e0162aaf..89511bcb7ea71 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Doppio click per modificare l'indirizzo o l'etichetta + Right-click to edit address or label + Fare click con il tasto destro del mouse per modificare l'indirizzo o l'etichetta Create a new address @@ -15,7 +15,7 @@ Copy the currently selected address to the system clipboard - Copia l'indirizzo attualmente selezionato negli appunti + Copia negli appunti l'indirizzo attualmente selezionato &Copy @@ -31,11 +31,11 @@ Delete the currently selected address from the list - Cancella l'indirizzo attualmente selezionato dalla lista + Rimuove dalla lista l'indirizzo attualmente selezionato Export the data in the current tab to a file - Esporta i dati nella tabella corrente in un file + Esporta su file i dati contenuti nella tabella corrente &Export @@ -43,15 +43,15 @@ &Delete - &Cancella + &Elimina Choose the address to send coins to - Scegli l'indirizzo a cui inviare bitcoin + Scegli l'indirizzo a cui inviare hypercoin Choose the address to receive coins with - Scegli l'indirizzo con cui ricevere bitcoin + Scegli l'indirizzo con cui ricevere hypercoin C&hoose @@ -66,12 +66,12 @@ Indirizzi di ricezione - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Questo è un elenco di indirizzi bitcoin a cui puoi inviare pagamenti. Controlla sempre l'importo e l'indirizzo del beneficiario prima di inviare bitcoin. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Questo è un elenco di indirizzi Hypercoin a cui puoi inviare pagamenti. Controlla sempre l'importo e l'indirizzo del beneficiario prima di inviare hypercoin. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Questi sono i tuoi indirizzi bitcoin che puoi usare per ricevere pagamenti. Si raccomanda di generare un nuovo indirizzo per ogni transazione. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Questi sono i tuoi indirizzi Hypercoin che puoi usare per ricevere pagamenti. Si raccomanda di generare un nuovo indirizzo per ogni transazione. Copy &Label @@ -95,7 +95,7 @@ There was an error trying to save the address list to %1. Please try again. - Si è verificato un errore tentando di salvare la lista degli indirizzi. %1. Riprova + Si è verificato un errore tentando di salvare la lista degli indirizzi su %1. Si prega di riprovare. @@ -117,19 +117,19 @@ AskPassphraseDialog Passphrase Dialog - Finestra parola d'ordine + Finestra passphrase Enter passphrase - Inserisci la parola d'ordine + Inserisci la passphrase New passphrase - Nuova parola d'ordine + Nuova passphrase Repeat new passphrase - Ripeti la nuova parola d'ordine + Ripeti la nuova passphrase Encrypt wallet @@ -137,7 +137,7 @@ This operation needs your wallet passphrase to unlock the wallet. - Quest'operazione necessita della passphrase per sbloccare il portamonete. + Questa operazione necessita della passphrase per sbloccare il portamonete. Unlock wallet @@ -164,8 +164,8 @@ Conferma la cifratura del portamonete - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Attenzione: se si cifra il portamonete e si perde la passphrase <b>TUTTI I PROPRI BITCOIN ANDRANNO PERSI</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Attenzione: perdendo la passphrase di un portamonete cifrato <b>TUTTI I PROPRI HYPERCOIN ANDRANNO PERSI</b>! Are you sure you wish to encrypt your wallet? @@ -185,11 +185,11 @@ Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. - Inserisci una nuona password per il postafoglio.<br/>Perfavore usa una password di<b>dieci o più caratteri</b>, o <b>otto o più parole</b>. + Inserisci la nuova passphrase per il portamonete.<br/>Si consiglia di utilizzare <b>almeno dieci caratteri casuali</b> oppure <b>otto o più parole</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin si chiuderà per portare a termine il processo di cifratura. Ricorda che cifrare il tuo portamonete non può fornire una protezione totale contro i furti causati da infezioni malware. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin si chiuderà per portare a termine il processo di cifratura. Ricorda che cifrare il tuo portamonete non può fornire una protezione totale contro i furti causati da infezioni malware. Wallet encryption failed @@ -224,7 +224,7 @@ BitcoinGUI Sign &message... - Firma il &messaggio... + Firma &messaggio... Synchronizing with network... @@ -264,7 +264,7 @@ Show information about Qt - Mostra informazioni su Qt + Mostra le informazioni su Qt &Options... @@ -276,11 +276,11 @@ &Backup Wallet... - &Backup Portamonete... + &Backup portamonete... &Change Passphrase... - &Cambia la passphrase... + &Cambia passphrase... &Sending addresses... @@ -295,8 +295,8 @@ Apri &URI... - Bitcoin Core client - Bitcoin Core client + Hypercoin Core client + Hypercoin Core client Importing blocks from disk... @@ -307,12 +307,12 @@ Re-indicizzazione blocchi su disco... - Send coins to a Bitcoin address - Invia monete ad un indirizzo bitcoin + Send coins to a Hypercoin address + Invia fondi ad un indirizzo Hypercoin - Modify configuration options for Bitcoin - Modifica opzioni di configurazione per bitcoin + Modify configuration options for Hypercoin + Modifica opzioni di configurazione per Hypercoin Backup wallet to another location @@ -324,7 +324,7 @@ &Debug window - Finestra &Debug + Finestra di &debug Open debugging and diagnostic console @@ -335,8 +335,8 @@ &Verifica messaggio... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Ricevi - Show information about Bitcoin Core - Mostra le informazioni riguardo a Bitcoin core + Show information about Hypercoin Core + Mostra le informazioni su Hypercoin Core &Show / Hide @@ -367,12 +367,12 @@ Cifra le chiavi private che appartengono al tuo portamonete - Sign messages with your Bitcoin addresses to prove you own them - Firma i messaggi con il tuo indirizzo bitcoin per dimostrarne il possesso + Sign messages with your Hypercoin addresses to prove you own them + Firma messaggi con i tuoi indirizzi Hypercoin per dimostrarne il possesso - Verify messages to ensure they were signed with specified Bitcoin addresses - Verifica i messaggi per accertare che siano stati firmati con gli indirizzi bitcoin specificati + Verify messages to ensure they were signed with specified Hypercoin addresses + Verifica che i messaggi siano stati firmati con gli indirizzi Hypercoin specificati &File @@ -388,19 +388,19 @@ Tabs toolbar - Barra degli strumenti "Tabs" + Barra degli strumenti - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Richiedi pagamenti (genera codici QR e bitcoin: URI) + Request payments (generates QR codes and hypercoin: URIs) + Richiedi pagamenti (genera codici QR e hypercoin: URI) - &About Bitcoin Core - Info su Bitcoin Core + &About Hypercoin Core + &Informazioni su Hypercoin Core Show the list of used sending addresses and labels @@ -411,24 +411,24 @@ Mostra la lista degli indirizzi di ricezione utilizzati - Open a bitcoin: URI or payment request - Apri un URI o una richiesta di pagamento + Open a hypercoin: URI or payment request + Apri un hypercoin: URI o una richiesta di pagamento &Command-line options - Opzioni riga di &comando + Opzioni della riga di &comando - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Mostra il messaggio di aiuto di Bitcoin Core per avere la lista di tutte le opzioni della riga di comando di Bitcoin. + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Mostra il messaggio di aiuto di Hypercoin Core per ottenere la lista delle opzioni della riga di comando valide. - %n active connection(s) to Bitcoin network - %n connessione attiva alla rete Bitcoin%n connessioni attive alla rete Bitcoin + %n active connection(s) to Hypercoin network + %n connessione attiva alla rete Hypercoin%n connessioni alla rete Hypercoin attive No block source available... - Nessuna fonte di blocchi disponibile + Nessuna fonte di blocchi disponibile... %n hour(s) @@ -460,7 +460,7 @@ Transactions after this will not yet be visible. - Transazioni successive a questa non saranno ancora visibili. + Le transazioni effettuate successivamente non sono ancora visibili. Error @@ -527,8 +527,7 @@ Indirizzo: %4 CoinControlDialog Coin Selection - Seleziona Moneta - + Selezione Input Quantity: @@ -552,7 +551,7 @@ Indirizzo: %4 Dust: - Importo + Trascurabile: After Fee: @@ -580,7 +579,7 @@ Indirizzo: %4 Received with label - Ricevuto con etichetta + Ricevuto con l'etichetta Received with address @@ -592,7 +591,7 @@ Indirizzo: %4 Confirmations - Conferme: + Conferme Confirmed @@ -612,7 +611,7 @@ Indirizzo: %4 Copy amount - Copia l'importo + Copia importo Copy transaction ID @@ -648,7 +647,7 @@ Indirizzo: %4 Copy dust - Copia l'importo + Copia trascurabile Copy change @@ -660,7 +659,7 @@ Indirizzo: %4 higher - superiore + molto alta high @@ -684,7 +683,7 @@ Indirizzo: %4 lower - minore + molto bassa lowest @@ -700,7 +699,7 @@ Indirizzo: %4 Can vary +/- %1 satoshi(s) per input. - Può variare +/- %1 satoshi(s) per input. + Può variare di +/- %1 satoshi per input. yes @@ -712,11 +711,11 @@ Indirizzo: %4 This label turns red, if the transaction size is greater than 1000 bytes. - Questa etichetta diventa rossa se la dimensione della transazione supera i 1000 bytes + Questa etichetta diventerà rossa se la dimensione della transazione supererà i 1000 byte. This means a fee of at least %1 per kB is required. - Questo significa che è richiesta una commissione di almeno %1 per ogni kB. + In tal caso sarà necessaria una commissione di almeno %1 per ogni kB. Can vary +/- 1 byte per input. @@ -728,11 +727,11 @@ Indirizzo: %4 This label turns red, if the priority is smaller than "medium". - Questa etichetta diventa rossa se la priorità è inferiore a "media". + Questa etichetta diventerà rossa se la priorità sarà inferiore a "media". This label turns red, if any recipient receives an amount smaller than %1. - Questa etichetta diventa rossa se uno qualsiasi dei destinatari riceve un ammontare inferiore di %1. + Questa etichetta diventerà rossa se uno qualsiasi dei destinatari riceverà un ammontare inferiore a %1. (no label) @@ -763,7 +762,7 @@ Indirizzo: %4 The address associated with this address list entry. This can only be modified for sending addresses. - L'indirizzo associato a questa voce della rubrica. Può essere modificato solo per gli indirizzi d'invio. + L'indirizzo associato con questa voce della lista degli indirizzi. Può essere modificato solo per gli indirizzi d'invio. &Address @@ -787,11 +786,11 @@ Indirizzo: %4 The entered address "%1" is already in the address book. - L'indirizzo inserito "%1" è già in rubrica. + L'indirizzo "%1" è già presente in rubrica. - The entered address "%1" is not a valid Bitcoin address. - L'indirizzo inserito "%1" non è un indirizzo bitcoin valido. + The entered address "%1" is not a valid Hypercoin address. + L'indirizzo "%1" non è un indirizzo hypercoin valido. Could not unlock wallet. @@ -810,11 +809,11 @@ Indirizzo: %4 name - Nome + nome Directory already exists. Add %1 if you intend to create a new directory here. - La cartella esiste già. Aggiungi %1 se intendi creare qui una nuova cartella. + Cartella già esistente. Aggiungi %1 se intendi creare qui una nuova cartella. Path already exists, and is not a directory. @@ -822,14 +821,14 @@ Indirizzo: %4 Cannot create data directory here. - Qui non è possibile creare una cartella dati. + Impossibile creare una cartella dati qui. HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -840,12 +839,12 @@ Indirizzo: %4 (%1-bit) - About Bitcoin Core - Info su Bitcoin Core + About Hypercoin Core + Informazioni su Hypercoin Core Command-line options - opzioni riga di comando + Opzioni della riga di comando Usage: @@ -853,15 +852,15 @@ Indirizzo: %4 command-line options - opzioni riga di comando + opzioni della riga di comando UI options - UI opzioni + Opzioni UI Set language, for example "de_DE" (default: system locale) - Imposta lingua, ad esempio "it_IT" (predefinita: lingua di sistema) + Imposta lingua, ad esempio "it_IT" (predefinito: lingua di sistema) Start minimized @@ -877,7 +876,7 @@ Indirizzo: %4 Choose data directory on startup (default: 0) - Scegli una cartella dati all'avvio (predefinito: 0) + Seleziona la cartella dati all'avvio (predefinito: 0) @@ -887,16 +886,16 @@ Indirizzo: %4 Benvenuto - Welcome to Bitcoin Core. - Benvenuti su Bitcoin Core. + Welcome to Hypercoin Core. + Benvenuti su Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Visto che questa è la prima volta che il programma viene lanciato, puoi scegliere dove Bitcoin Core salverà i propri dati. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Visto che questa è la prima volta che il programma viene lanciato, puoi scegliere dove Hypercoin Core salverà i propri dati. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core scaricherà e salverà una copia del block chain di Bitcoin. Almeno %1GB di dati che andranno ad aumentare col tempo saranno salvati in questa cartella. Anche il portamonete sarà salvato in questa cartella. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core scaricherà e salverà una copia della block chain di Hypercoin. Il portamonete ed almeno %1GB di dati saranno salvati in questa cartella. Si ricorda che lo spazio occupato andrà ad aumentare nel tempo. Use the default data directory @@ -907,8 +906,8 @@ Indirizzo: %4 Usa una cartella dati personalizzata: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. @@ -953,12 +952,12 @@ Indirizzo: %4 &Principale - Automatically start Bitcoin after logging in to the system. - Avvia automaticamente Bitcoin una volta effettuato l'accesso al sistema. + Automatically start Hypercoin after logging in to the system. + Avvia automaticamente Hypercoin una volta effettuato l'accesso al sistema. - &Start Bitcoin on system login - &Avvia Bitcoin all'accesso al sistema + &Start Hypercoin on system login + &Avvia Hypercoin all'accesso al sistema Size of &database cache @@ -974,20 +973,20 @@ Indirizzo: %4 Accept connections from outside - Accetta connessioni da fuori + Accetta connessioni provenienti dall'esterno Allow incoming connections - Permetti connessioni in entrata + Permetti connessioni in ingresso IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Indirizzo IP del proxy (es: IPv4: 127.0.0.1 / IPv6: ::1) + Indirizzo IP del proxy (ad es. IPv4: 127.0.0.1 / IPv6: ::1) Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL di terze parti (es: un block explorer) che appaiono nella tabella delle transazioni come voci nel menu contestuale. %s nell'URL è sostituito dall'hash della transazione. -Più URL vengono separati da una barra verticale |. + URL di terze parti (ad es. un block explorer) che appaiono nella tabella delle transazioni come voci nel menu contestuale. "%s" nell'URL è sostituito dall'hash della transazione. +Per specificare più URL separarli con una barra verticale "|". Third party transaction URLs @@ -995,7 +994,7 @@ Più URL vengono separati da una barra verticale |. Active command-line options that override above options: - Opzioni command-line attive che sostituiscono i settaggi sopra elencati: + Opzioni della riga di comando attive che sostituiscono i settaggi sopra elencati: Reset all client options to default. @@ -1027,23 +1026,23 @@ Più URL vengono separati da una barra verticale |. If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Disabilitando l'uso di resti non confermati, il resto di una transazione non potrà essere speso fino a quando la transazione non avrà ottenuto almeno una conferma. Questa impostazione influisce inoltre sul calcolo saldo. + Disabilitando l'uso di resti non confermati, il resto di una transazione non potrà essere speso fino a quando non avrà ottenuto almeno una conferma. Questa impostazione influisce inoltre sul calcolo del saldo. &Spend unconfirmed change - &Spendere resti non confermati + &Spendi resti non confermati - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Apri automaticamente la porta del client Bitcoin sul router. Il protocollo UPnP deve essere supportato da parte del router ed attivo. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Apri automaticamente la porta del client Hypercoin sul router. Il protocollo UPnP deve essere supportato da parte del router ed attivo. Map port using &UPnP Mappa le porte tramite &UPnP - Connect to the Bitcoin network through a SOCKS5 proxy. - Connessione alla rete Bitcoin attraverso un proxy SOCKS5. + Connect to the Hypercoin network through a SOCKS5 proxy. + Connessione alla rete Hypercoin attraverso un proxy SOCKS5. &Connect through SOCKS5 proxy (default proxy): @@ -1059,7 +1058,7 @@ Più URL vengono separati da una barra verticale |. Port of the proxy (e.g. 9050) - Porta del proxy (es. 9050) + Porta del proxy (ad es. 9050) &Window @@ -1090,8 +1089,8 @@ Più URL vengono separati da una barra verticale |. &Lingua Interfaccia Utente: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - La lingua dell'interfaccia utente può essere impostata qui. L'impostazione avrà effetto dopo il riavvio di Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + La lingua dell'interfaccia utente può essere impostata qui. L'impostazione avrà effetto dopo il riavvio di Hypercoin. &Unit to show amounts in: @@ -1099,7 +1098,7 @@ Più URL vengono separati da una barra verticale |. Choose the default subdivision unit to show in the interface and when sending coins. - Scegli l'unità di suddivisione predefinita da utilizzare per l'interfaccia e per l'invio di monete. + Scegli l'unità di suddivisione predefinita da utilizzare per l'interfaccia e per l'invio di hypercoin. Whether to show coin control features or not. @@ -1127,7 +1126,7 @@ Più URL vengono separati da una barra verticale |. Client restart required to activate changes. - È necessario un riavvio del client per rendere attivi i cambiamenti. + È necessario un riavvio del client per applicare le modifiche. Client will be shutdown, do you want to proceed? @@ -1135,11 +1134,11 @@ Più URL vengono separati da una barra verticale |. This change would require a client restart. - Questo cambiamento richiede un riavvio del client. + Questa modifica richiede un riavvio del client. The supplied proxy address is invalid. - L'indirizzo proxy che hai fornito è invalido. + L'indirizzo proxy che hai fornito non è valido. @@ -1149,12 +1148,12 @@ Più URL vengono separati da una barra verticale |. Modulo - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Le informazioni visualizzate potrebbero non essere aggiornate. Il portamonete si sincronizza automaticamente con la rete Bitcoin una volta stabilita una connessione, ma questo processo non è ancora stato completato. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Le informazioni visualizzate potrebbero non essere aggiornate. Il portamonete si sincronizza automaticamente con la rete Hypercoin una volta stabilita una connessione, ma questo processo non è ancora stato completato. Watch-only: - Guarda solo + Sola lettura: Available: @@ -1162,7 +1161,7 @@ Più URL vengono separati da una barra verticale |. Your current spendable balance - Saldo spendibile attuale + Il tuo saldo spendibile attuale Pending: @@ -1190,15 +1189,15 @@ Più URL vengono separati da una barra verticale |. Your current total balance - Saldo totale attuale + Il tuo saldo totale attuale Your current balance in watch-only addresses - Il tuo saldo attuale negli indirizzi watch-only + Il tuo saldo attuale negli indirizzi di sola lettura Spendable: - Saldo Spendibile: + Spendibile: Recent transactions @@ -1210,11 +1209,11 @@ Più URL vengono separati da una barra verticale |. Mined balance in watch-only addresses that has not yet matured - l'equilibrio estratto solo nello sguardo degli indirizzi non è ancora maturo + Importo generato dal mining su indirizzi di sola lettura e non ancora maturato Current total balance in watch-only addresses - Saldo corrente totale negli indirizzi watch-only + Saldo corrente totale negli indirizzi di sola lettura out of sync @@ -1233,15 +1232,15 @@ Più URL vengono separati da una barra verticale |. Payment request rejected - Richiesta di pagamento rifiutata + Richiesta di pagamento respinta Payment request network doesn't match client network. - Il network della richiesta di pagamento non corrisponde al network del client. + La rete della richiesta di pagamento non corrisponde alla rete del client. Payment request has expired. - Richieda di pagamento scaduta + Richiesta di pagamento scaduta. Payment request is not initialized. @@ -1249,23 +1248,23 @@ Più URL vengono separati da una barra verticale |. Requested payment amount of %1 is too small (considered dust). - L'importo di pagamento richiesto di %1 è troppo basso (considerato come trascurabile). + L'importo di pagamento di %1 richiesto è troppo basso (considerato come trascurabile). Payment request error Errore di richiesta di pagamento - Cannot start bitcoin: click-to-pay handler - Impossibile avviare bitcoin: gestore click-to-pay + Cannot start hypercoin: click-to-pay handler + Impossibile avviare hypercoin: gestore click-to-pay Payment request fetch URL is invalid: %1 URL di recupero della Richiesta di pagamento non valido: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - Impossibile interpretare l'URI! Ciò può essere causato da un indirizzo Bitcoin invalido o da parametri URI non corretti. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + Impossibile interpretare l'URI! I parametri URI o l'indirizzo Hypercoin potrebbero non essere corretti. Payment request file handling @@ -1273,7 +1272,7 @@ Più URL vengono separati da una barra verticale |. Payment request file cannot be read! This can be caused by an invalid payment request file. - Il file di richiesta del pagamento non può essere letto o elaborato! Questo può essere causato da una richiesta di pagamento non valida. + Impossibile leggere il file della richiesta di pagamento! Il file della richiesta di pagamento potrebbe non essere valido. Unverified payment requests to custom payment scripts are unsupported. @@ -1283,13 +1282,21 @@ Più URL vengono separati da una barra verticale |. Refund from %1 Rimborso da %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La richiesta di pagamento %1 (%2 byte) supera la dimensione massima di %3 byte. + + + Payment request DoS protection + Protezione DoS per la richiesta di pagamento + Error communicating with %1: %2 Errore di comunicazione con %1: %2 Payment request cannot be parsed! - La richiesta di pagamento non può essere analizzata. + La richiesta di pagamento non può essere analizzata! Bad response from server %1 @@ -1312,7 +1319,7 @@ Più URL vengono separati da una barra verticale |. Address/Hostname - Indirizzo/Hostname + Indirizzo/Nome host Ping Time @@ -1326,8 +1333,8 @@ Più URL vengono separati da una barra verticale |. Importo - Enter a Bitcoin address (e.g. %1) - Inserisci un indirizzo Bitcoin (e.g. %1) + Enter a Hypercoin address (e.g. %1) + Inserisci un indirizzo Hypercoin (ad es. %1) %1 d @@ -1370,7 +1377,7 @@ Più URL vengono separati da una barra verticale |. QRImageWidget &Save Image... - &Salva Immagine + &Salva Immagine... &Copy Image @@ -1421,7 +1428,7 @@ Più URL vengono separati da una barra verticale |. Startup time - Tempo di avvio + Ora di avvio Network @@ -1453,7 +1460,7 @@ Più URL vengono separati da una barra verticale |. &Peers - &Peers + &Peer Select a peer to view detailed information. @@ -1477,35 +1484,35 @@ Più URL vengono separati da una barra verticale |. Starting Height - Blocco di partenza + Nr. Blocco Iniziale Sync Height - valore di sincronizzazione + Nr. Blocco Sincronizzato Ban Score - divieto di segnalazione + Punteggio di Ban Connection Time - Tempo di connessione + Tempo di Connessione Last Send - Ultimo invio + Ultimo Invio Last Receive - Ultima ricevuta + Ultima Ricezione Bytes Sent - Bytes Inviati + Byte Inviati Bytes Received - Bytes Ricevuti + Byte Ricevuti Ping Time @@ -1552,24 +1559,24 @@ Più URL vengono separati da una barra verticale |. File log del Debug - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Apri il file di log del debug di Bitcoin dalla cartella attuale. Può richiedere alcuni secondi per file di log grandi. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Apri il file log del debug di Hypercoin dalla cartella dati attuale. Può richiedere alcuni secondi per file di log di grandi dimensioni. Clear console Cancella console - Welcome to the Bitcoin RPC console. - Benvenuto nella console RPC di Bitcoin + Welcome to the Hypercoin RPC console. + Benvenuto nella console RPC di Hypercoin. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Usa le frecce direzionali per navigare la cronologia, e <b>Ctrl-L</b> per cancellarla. + Usa le frecce direzionali per scorrere la cronologia, e <b>Ctrl-L</b> per cancellarla. Type <b>help</b> for an overview of available commands. - Scrivi <b>help</b> per un riassunto dei comandi disponibili + Scrivi <b>help</b> per un riassunto dei comandi disponibili. %1 B @@ -1609,7 +1616,7 @@ Più URL vengono separati da una barra verticale |. Fetching... - attraente + Recuperando... @@ -1620,7 +1627,7 @@ Più URL vengono separati da una barra verticale |. &Label: - &Etichetta + &Etichetta: &Message: @@ -1628,19 +1635,19 @@ Più URL vengono separati da una barra verticale |. Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Riutilizza uno degli indirizzi di ricezione generati in precedenza. Riutilizzare un indirizzo comporta problemi di sicurezza e privacy. Non utilizzare a meno che non si stia rigenerando una richiesta di pagamento creata in precedenza. + Riutilizza uno degli indirizzi di ricezione generati in precedenza. Riutilizzare un indirizzo comporta problemi di sicurezza e privacy. Non selezionare questa opzione a meno che non si stia rigenerando una richiesta di pagamento creata in precedenza. R&euse an existing receiving address (not recommended) R&iusa un indirizzo di ricezione (non raccomandato) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Un messaggio opzionale da allegare alla richiesta di pagamento, il quale sarà mostrato all'apertura della richiesta. Nota: Il messaggio non sarà inviato con il pagamento sulla rete Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Un messaggio opzionale da allegare e mostrare all'apertura della richiesta di pagamento. Nota: Il messaggio non sarà inviato con il pagamento sulla rete Hypercoin. An optional label to associate with the new receiving address. - Un'etichetta facoltativa da associare al nuovo indirizzo di ricezione + Un'etichetta opzionale da associare al nuovo indirizzo di ricezione. Use this form to request payments. All fields are <b>optional</b>. @@ -1688,7 +1695,7 @@ Più URL vengono separati da una barra verticale |. Copy message - Copia messaggio + Copia il messaggio Copy amount @@ -1711,7 +1718,7 @@ Più URL vengono separati da una barra verticale |. &Save Image... - &Salva Immagine + &Salva Immagine... Request payment to %1 @@ -1747,7 +1754,7 @@ Più URL vengono separati da una barra verticale |. Error encoding URI into QR Code. - Errore nella codifica dell'URI nel codice QR + Errore nella codifica dell'URI nel codice QR. @@ -1785,7 +1792,7 @@ Più URL vengono separati da una barra verticale |. SendCoinsDialog Send Coins - Invia Bitcoin + Invia Hypercoin Coin Control Features @@ -1833,7 +1840,7 @@ Più URL vengono separati da una barra verticale |. If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Se questo è abilitato e l'indirizzo per il resto è vuoto o invalido, il resto sarà inviato ad un nuovo indirizzo bitcoin generato appositamente. + In caso di abilitazione con indirizzo vuoto o non valido, il resto sarà inviato ad un nuovo indirizzo generato appositamente. Custom change address @@ -1841,31 +1848,55 @@ Più URL vengono separati da una barra verticale |. Transaction Fee: - Tasse di Transazione + Commissione di Transazione: Choose... Scegli... + + collapse fee-settings + minimizza le impostazioni di commissione + Minimize Minimizza + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Se la commissione personalizzata è impostata su 1000 satoshi e la transazione è di soli 250 byte, allora "per kilobyte" paga solo 250 satoshi di commissione, mentre "somma almeno" paga 1000 satoshi. Per transazioni più grandi di un kilobyte, entrambe le opzioni pagano al kilobyte. + per kilobyte per kilobyte - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. - Pagando solo la tariffa minima è bene finché c'è meno volume di transazioni di spazio nei blocchi. Ma essere consapevoli che questo può finire in una transazione non confermando ancora una volta non vi è più richiesta per le transazioni Bitcoin di rete in grado di elaborare. + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Se la commissione personalizzata è impostata su 1000 satoshi e la transazione è di soli 250 byte, allora "per kilobyte" paga solo 250 satoshi di commissione, mentre "somma almeno" paga 1000 satoshi. Per transazioni più grandi di un kilobyte, entrambe le opzioni pagano al kilobyte. + + + total at least + somma almeno + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Non vi è alcuna controindicazione a pagare la commissione minima, a patto che il volume delle transazioni sia inferiore allo spazio disponibile nei blocchi. Occorre comunque essere consapevoli che ciò potrebbe impedire la conferma delle transazioni nel caso in cui la rete risultasse satura. + + + (read the tooltip) + (leggi il suggerimento) Recommended: - Raccomandati: + Raccomandata: Custom: - Personalizza: + Personalizzata: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Commissione intelligente non ancora inizializzata. Normalmente richiede un'attesa di alcuni blocchi...) Confirmation time: @@ -1881,11 +1912,15 @@ Più URL vengono separati da una barra verticale |. Send as zero-fee transaction if possible - Invia una transazione a zero commissioni se possibile + Invia come transazione a zero commissioni se possibile + + + (confirmation may take longer) + (la conferma potrebbe richiedere più tempo) Send to multiple recipients at once - Invia a diversi beneficiari in una volta sola + Invia simultaneamente a più beneficiari Add &Recipient @@ -1897,7 +1932,7 @@ Più URL vengono separati da una barra verticale |. Dust: - Trascurabile + Trascurabile: Clear &All @@ -1917,7 +1952,7 @@ Più URL vengono separati da una barra verticale |. Confirm send coins - Conferma l'invio di bitcoin + Conferma l'invio di hypercoin %1 to %2 @@ -1929,7 +1964,7 @@ Più URL vengono separati da una barra verticale |. Copy amount - Copia l'importo + Copia importo Copy fee @@ -1951,10 +1986,6 @@ Più URL vengono separati da una barra verticale |. Copy change Copia resto - - Total Amount %1 (= %2) - Importo Totale %1 (= %2) - or o @@ -1965,11 +1996,11 @@ Più URL vengono separati da una barra verticale |. The amount to pay must be larger than 0. - L'importo da pagare dev'essere maggiore di 0. + L'importo da pagare deve essere maggiore di 0. The amount exceeds your balance. - L'importo è superiore al tuo saldo attuale + L'importo è superiore al tuo saldo attuale. The total exceeds your balance when the %1 transaction fee is included. @@ -1977,7 +2008,7 @@ Più URL vengono separati da una barra verticale |. Duplicate address found, can only send to each address once per send operation. - Rilevato un indirizzo duplicato, è possibile inviare bitcoin una sola volta agli indirizzi durante un'operazione di invio. + Rilevato un indirizzo duplicato. È possibile inviare hypercoin una sola volta a ciascun indirizzo durante un'operazione di invio. Transaction creation failed! @@ -1985,11 +2016,23 @@ Più URL vengono separati da una barra verticale |. The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - La transazione è stata rifiutata! Questo può accadere se alcuni bitcoin nel tuo portamonete sono già stati spesi, ad esempio se hai utilizzato una copia del file wallet.dat per spendere bitcoin e questi non sono stati considerati spesi dal portamonete corrente. + La transazione è stata respinta! Questo può accadere se alcuni hypercoin nel tuo portamonete sono già stati spesi, come nel caso in cui tu avessi utilizzato una copia del file wallet.dat per spendere hypercoin e questi non fossero stati considerati come spesi dal portamonete corrente. + + + A fee higher than %1 is considered an insanely high fee. + Una commissione maggiore di %1 è considerata irragionevolmente elevata. - Warning: Invalid Bitcoin address - Attenzione: Indirizzo Bitcoin non valido + Pay only the minimum fee of %1 + Paga solamente la commissione minima di %1 + + + Estimated to begin confirmation within %1 block(s). + Inizio delle conferme stimato entro %1 blocchi. + + + Warning: Invalid Hypercoin address + Attenzione: Indirizzo Hypercoin non valido (no label) @@ -2001,7 +2044,7 @@ Più URL vengono separati da una barra verticale |. Copy dust - Copia l'importo + Copia trascurabile Are you sure you want to send? @@ -2024,11 +2067,11 @@ Più URL vengono separati da una barra verticale |. Enter a label for this address to add it to your address book - Inserisci un'etichetta per questo indirizzo, per aggiungerlo nella rubrica + Inserisci un'etichetta per questo indirizzo, per aggiungerlo alla rubrica &Label: - &Etichetta + &Etichetta: Choose previously used address @@ -2039,8 +2082,8 @@ Più URL vengono separati da una barra verticale |. Questo è un normale pagamento. - The Bitcoin address to send the payment to - L'indirizzo Bitcoin a cui vuoi inviare il pagamento + The Hypercoin address to send the payment to + L'indirizzo Hypercoin a cui vuoi inviare il pagamento Alt+A @@ -2071,8 +2114,8 @@ Più URL vengono separati da una barra verticale |. Inserisci un'etichetta per questo indirizzo per aggiungerlo alla lista degli indirizzi utilizzati - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Messaggio incluso nel bitcoin URI e che sarà memorizzato con la transazione per vostro riferimento. Nota: Questo messaggio non sarà inviato attraverso la rete Bitcoin. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Messaggio incluso nel hypercoin URI e che sarà memorizzato con la transazione per vostro riferimento. Nota: Questo messaggio non sarà inviato attraverso la rete Hypercoin. This is an unverified payment request. @@ -2090,8 +2133,8 @@ Più URL vengono separati da una barra verticale |. ShutdownWindow - Bitcoin Core is shutting down... - Arresto di Bitcoin Core in corso... + Hypercoin Core is shutting down... + Arresto di Hypercoin Core in corso... Do not shut down the computer until this window disappears. @@ -2106,15 +2149,15 @@ Più URL vengono separati da una barra verticale |. &Sign Message - &Firma il messaggio + &Firma Messaggio You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Puoi firmare messaggi con i tuoi indirizzi in modo da dimostrarne il possesso. Presta attenzione a non firmare dichiarazioni vaghe, attacchi di phishing potrebbero cercare di spingerti ad apporre la tua firma su di esse. Firma solo dichiarazioni completamente dettagliate e delle quali condividi in pieno il contenuto. - The Bitcoin address to sign the message with - L'indirizzo Bitcoin con cui vuoi contrassegnare il messaggio + The Hypercoin address to sign the message with + L'indirizzo Hypercoin da utilizzare per firmare il messaggio Choose previously used address @@ -2145,8 +2188,8 @@ Più URL vengono separati da una barra verticale |. Copia la firma corrente nella clipboard - Sign the message to prove you own this Bitcoin address - Firma un messaggio per dimostrare di possedere questo indirizzo + Sign the message to prove you own this Hypercoin address + Firma un messaggio per dimostrare di possedere questo indirizzo Hypercoin Sign &Message @@ -2158,7 +2201,7 @@ Più URL vengono separati da una barra verticale |. Clear &All - Cancella &tutto + Cancella &Tutto &Verify Message @@ -2166,14 +2209,14 @@ Più URL vengono separati da una barra verticale |. Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - Inserisci l'indirizzo del firmatario, il messaggio (assicurati di copiare esattamente anche i ritorni a capo, gli spazi, le tabulazioni, etc..) e la firma qui sotto, per verificare il messaggio. Presta attenzione a non vedere nella firma più di quanto non sia riportato nel messaggio stesso, per evitare di cadere vittima di attacchi di tipo man-in-the-middle. + Inserisci l'indirizzo del firmatario, il messaggio (assicurandoti di copiare esattamente anche i ritorni a capo, gli spazi, le tabulazioni, etc..) e la firma qui sotto, per verificare il messaggio. Presta attenzione a non vedere nella sola firma più di quanto non sia riportato nel messaggio stesso, in modo da evitare di cadere vittima di attacchi di tipo man-in-the-middle. - The Bitcoin address the message was signed with - L'indirizzo Bitcoin con cui è stato contrassegnato il messaggio + The Hypercoin address the message was signed with + L'indirizzo Hypercoin con cui è stato contrassegnato il messaggio - Verify the message to ensure it was signed with the specified Bitcoin address + Verify the message to ensure it was signed with the specified Hypercoin address Verifica il messaggio per accertare che sia stato firmato con l'indirizzo specificato @@ -2194,11 +2237,11 @@ Più URL vengono separati da una barra verticale |. Please check the address and try again. - Per favore controlla l'indirizzo e prova ancora + Per favore controlla l'indirizzo e prova di nuovo. The entered address does not refer to a key. - L'indirizzo bitcoin inserito non è associato a nessuna chiave. + L'indirizzo hypercoin inserito non è associato a nessuna chiave. Wallet unlock was cancelled. @@ -2222,7 +2265,7 @@ Più URL vengono separati da una barra verticale |. Please check the signature and try again. - Per favore controlla la firma e prova ancora. + Per favore controlla la firma e prova di nuovo. The signature did not match the message digest. @@ -2240,12 +2283,12 @@ Più URL vengono separati da una barra verticale |. SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers - Gli sviluppatori del Bitcoin Core + Gli sviluppatori di Bitcoin Core [testnet] @@ -2275,7 +2318,7 @@ Più URL vengono separati da una barra verticale |. %1/unconfirmed - %1/non confermato + %1/non confermata %1 confirmations @@ -2287,7 +2330,7 @@ Più URL vengono separati da una barra verticale |. , broadcast through %n node(s) - , trasmesso attraverso %n nodo, trasmesso attraverso %n nodi + , trasmesso attraverso %n nodo, trasmessa attraverso %n nodi Date @@ -2315,7 +2358,7 @@ Più URL vengono separati da una barra verticale |. watch-only - Guarda solo + sola lettura label @@ -2339,7 +2382,7 @@ Più URL vengono separati da una barra verticale |. Total debit - Credito Totale + Debito totale Total credit @@ -2367,11 +2410,11 @@ Più URL vengono separati da una barra verticale |. Merchant - Mercante + Commerciante Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - È necessario attendere %1 blocchi prima che i bitcoin generati possano essere spesi. Quando è stato generato questo blocco, è stato trasmesso alla rete in modo da poter essere aggiunto alla block chain. Se l'inserimento avrà esito negativo il suo stato sarà modificato in "non accettato" e risulterà non spendibile. Questo può occasionalmente accadere se un altro nodo genera un blocco entro pochi secondi dal tuo. + È necessario attendere %1 blocchi prima che i hypercoin generati possano essere spesi. Al momento della generazione questo blocco è stato trasmesso alla rete in modo da poter essere aggiunto alla block chain. Se l'inserimento avrà esito negativo lo stato del blocco sarà modificato in "non accettato" ed esso risulterà non spendibile. Ciò può verificarsi occasionalmente nel caso in cui un altro blocco sia stato generato entro pochi secondi dal tuo. Debug information @@ -2399,7 +2442,7 @@ Più URL vengono separati da una barra verticale |. , has not been successfully broadcast yet - , non è stato ancora trasmesso con successo + , non è ancora stata trasmessa con successo Open for %n more block(s) @@ -2449,11 +2492,11 @@ Più URL vengono separati da una barra verticale |. Confirmed (%1 confirmations) - Confermato (%1 conferme) + Confermata (%1 conferme) This block was not received by any other nodes and will probably not be accepted! - Questo blocco non è stato ricevuto dagli altri nodi e probabilmente non sarà accettato! + Questo blocco non è stato ricevuto da alcun altro nodo e probabilmente non sarà accettato! Generated but not accepted @@ -2465,7 +2508,7 @@ Più URL vengono separati da una barra verticale |. Unconfirmed - Non confermato: + Non confermata Confirming (%1 of %2 recommended confirmations) @@ -2497,11 +2540,11 @@ Più URL vengono separati da una barra verticale |. watch-only - Guarda solo + sola lettura (n/a) - (N / a) + (n/d) Transaction status. Hover over this field to show number of confirmations. @@ -2515,6 +2558,10 @@ Più URL vengono separati da una barra verticale |. Type of transaction. Tipo di transazione. + + Whether or not a watch-only address is involved in this transaction. + Indica se un indirizzo di sola lettura sia o meno coinvolto in questa transazione. + Destination address of transaction. Indirizzo di destinazione della transazione. @@ -2671,7 +2718,7 @@ Più URL vengono separati da una barra verticale |. UnitDisplayStatusBarControl Unit to show amounts in. Click to select another unit. - Tipo di unità visualizzata. Clicca per selezionare un altra unità + Unità con cui visualizzare gli importi. Clicca per selezionare un altra unità. @@ -2685,7 +2732,7 @@ Più URL vengono separati da una barra verticale |. WalletModel Send Coins - Invia Bitcoin + Invia Hypercoin @@ -2696,7 +2743,7 @@ Più URL vengono separati da una barra verticale |. Export the data in the current tab to a file - Esporta su file i dati della tabella corrente + Esporta su file i dati contenuti nella tabella corrente Backup Wallet @@ -2735,7 +2782,7 @@ Più URL vengono separati da una barra verticale |. Connect to a node to retrieve peer addresses, and disconnect - Connettiti ad un nodo per recuperare gli indirizzi dei peer e scollegati + Connessione ad un nodo e successiva disconnessione per recuperare gli indirizzi dei peer Specify your own public address @@ -2755,55 +2802,27 @@ Più URL vengono separati da una barra verticale |. Accept connections from outside (default: 1 if no -proxy or -connect) - Accetta connessioni dall'esterno (predefinito: 1 se no -proxy o -connect) - - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, devi impostare una rpcpassword nel file di configurazione: -%s -Si raccomanda l'uso della seguente password generata casualmente: -rpcuser=bitcoinrpc -rpcpassword=%s -(non serve ricordare questa password) -Il nome utente e la password NON DEVONO essere uguali. -Se il file non esiste, crealo concedendo permessi di lettura al solo proprietario del file. -Si raccomanda anche di impostare alertnotify così sarai avvisato di eventuali problemi; -ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com - + Accetta connessioni dall'esterno (predefinito: 1 se -proxy o -connect non sono utilizzati) Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Associa all'indirizzo indicato e resta permanentemente in ascolto su questo. Usa la notazione [host]:porta per l'IPv6 + Associa all'indirizzo indicato e resta permanentemente in ascolto su di esso. Usa la notazione [host]:porta per l'IPv6 Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Elimina tutte le transazioni dal wallet e recupera solo le parti della blockchain con il comando -rescan all'avvio. - - - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Entra in modalità di test di regressione, la quale usa una speciale catena in cui i blocchi possono essere risolti istantaneamente. + Elimina tutte le transazioni dal portamonete e recupera solo quelle che fanno parte della blockchain attraverso il comando -rescan all'avvio. - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Errore: la transazione è stata rifiutata! Questo può accadere se alcuni bitcoin nel tuo portamonete sono già stati spesi, ad esempio se hai utilizzato una copia del file wallet.dat per spendere bitcoin e questi non sono stati considerati spesi dal portamonete corrente. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Distribuito secondo la licenza software MIT, vedi il file COPYING incluso oppure <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Errore: questa transazione necessita di una commissione di almeno %s a causa del suo ammontare, della sua complessità, o dell'uso di fondi recentemente ricevuti! + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Entra in modalità test di regressione. Questa utilizza una speciale catena in cui i blocchi possono essere risolti istantaneamente. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Esegui comando quando una transazione del portamonete cambia (%s in cmd è sostituito da TxID) + Esegue un comando quando lo stato di una transazione del portamonete cambia (%s in cmd è sostituito da TxID) In this mode -genproclimit controls how many blocks are generated immediately. @@ -2818,28 +2837,32 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Questa versione è una compilazione pre-rilascio - usala a tuo rischio - non utilizzarla per la generazione o per applicazioni di commercio - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Impossibile associarsi a %s su questo computer. Probabilmente Bitcoin Core è già in esecuzione. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Impossibile associarsi a %s su questo computer. Probabilmente Hypercoin Core è già in esecuzione. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - Attenzione: -paytxfee è molto alta. Questa è la commissione che si paga quando si invia una transazione. + Attenzione: -paytxfee è impostato su un valore molto elevato. Questa è la commissione che si paga quando si invia una transazione. Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - Attenzione: La rete non sembra essere d'accordo pienamente! Alcuni minatori sembrano riscontrare problemi. + Attenzione: La rete non sembra trovarsi in pieno consenso! Alcuni minatori sembrano riscontrare problemi. Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - Attenzione: Sembra che non ci sia completo accordo con i nostri peer! Un aggiornamento da parte tua o degli altri nodi potrebbe essere necessario. + Attenzione: Sembra che non vi sia pieno consenso con i nostri peer! Un aggiornamento da parte tua o degli altri nodi potrebbe essere necessario. Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Attenzione: errore di lettura di wallet.dat! Tutte le chiavi sono state lette correttamente, ma i dati delle transazioni o le voci in rubrica potrebbero mancare o non essere corretti. + Attenzione: errore di lettura di wallet.dat! Tutte le chiavi sono state lette correttamente, ma i dati delle transazioni o della rubrica potrebbero essere mancanti o non corretti. Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - Attenzione: wallet.dat corrotto, dati recuperati! Il wallet.dat originale è stato salvato come wallet.{timestamp}.bak in %s; se il tuo saldo o le transazioni non sono corrette dovresti ripristinare da un backup. + Attenzione: wallet.dat corrotto, dati recuperati! Il wallet.dat originale è stato salvato come wallet.{timestamp}.bak in %s. Se i dati relativi a saldo o transazioni non dovessero risultare corretti si consiglia di procedere al ripristino da un backup. + + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Inserisce in whitelist i peer che si connettono da un dato indirizzo IP o netmask. Può essere specificato più volte. (default: 1) @@ -2847,7 +2870,7 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com <category> can be: - <category> può essere: + Valori possibili per <category>: Attempt to recover private keys from a corrupt wallet.dat @@ -2859,7 +2882,7 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Connect only to the specified node(s) - Connetti solo al nodo specificato + Connessione ai soli nodi specificati Connection options: @@ -2875,11 +2898,11 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Discover own IP address (default: 1 when listening and no -externalip) - Scopre il proprio indirizzo IP (predefinito: 1 se in ascolto e no -externalip) + Scopre il proprio indirizzo IP (predefinito: 1 se in ascolto ed -externalip non è specificato) Do not load the wallet and disable wallet RPC calls - Non caricare il portamonete e disabilita le chiamate RPC al portamonete + Disabilita il portamonete e le relative chiamate RPC Do you want to rebuild the block database now? @@ -2891,28 +2914,20 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Error initializing wallet database environment %s! - Errore durante l'inizializzazione dell'ambiente %s del database del portamonete! + Errore durante l'inizializzazione dell'ambiente del database del portamonete %s! Error loading block database - Errore caricamento database blocchi + Errore durante il caricamento del database blocchi Error opening block database - Errore caricamento database blocchi - - - Error: A fatal internal error occured, see debug.log for details - Errore: si è verificato un errore fatale, consulta il file debug.log for maggiori dettagli. + Errore durante l'apertura del database blocchi Error: Disk space is low! Errore: la spazio libero sul disco è insufficiente! - - Error: Wallet locked, unable to create transaction! - Errore: portamonete bloccato, impossibile creare la transazione! - Failed to listen on any port. Use -listen=0 if you want this. Nessuna porta disponibile per l'ascolto. Usa -listen=0 se vuoi procedere comunque. @@ -2927,7 +2942,7 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Incorrect or no genesis block found. Wrong datadir for network? - Blocco genesis non corretto o non trovato. Cartella dati errata? + Blocco genesi non corretto o non trovato. È possibile che la cartella dati appartenga ad un'altra rete. Invalid -onion address: '%s' @@ -2939,27 +2954,31 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Connetti solo ai nodi nella rete <net> (ipv4, ipv6 o Tor) + Connessione ai soli nodi appartenenti alla rete <net> (ipv4, ipv6 o Tor) Rebuild block chain index from current blk000??.dat files - Ricreare l'indice della catena di blocchi dai file blk000??.dat correnti + Ricostruzione dell'indice della block chain dai file blk000??.dat correnti Set database cache size in megabytes (%d to %d, default: %d) - Imposta la dimensione cache del database in megabyte (%d a %d, predefinito: %d) + Imposta la dimensione della cache del database in megabyte (%d a %d, predefinito: %d) Set maximum block size in bytes (default: %d) - Imposta la dimensione massima del blocco in byte (predefinita: %d) + Imposta la dimensione massima del blocco in byte (predefinito: %d) Specify wallet file (within data directory) - Specifica il file portamonete (all'interno della cartella dati) + Specifica il file del portamonete (all'interno della cartella dati) This is intended for regression testing tools and app development. - Questo è previsto per l'uso con test di regressione e per lo sviluppo di applicazioni. + Questa impostazione è destinata all'uso con i test di regressione e per lo sviluppo di applicazioni. + + + Use UPnP to map the listening port (default: %u) + Usa UPnP per mappare la porta di ascolto (predefinito: %u) Verifying blocks... @@ -2986,53 +3005,172 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Importa blocchi da un file blk000??.dat esterno - An error occurred while setting up the RPC address %s port %u for listening: %s - Si è verificato un errore durante l'impostazione della %s porta %u RPC per l'ascolto su: %s + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Permette connessioni JSON-RPC dall'origine specificata. I valori validi per <ip> sono un singolo IP (ad es. 1.2.3.4), una network/netmask (ad es. 1.2.3.4/255.255.255.0) oppure una network/CIDR (ad es. 1.2.3.4/24). Questa opzione può essere specificata più volte. - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Non è possibile ottenere un lock sulla cartella %s. Probabilmente Bitcoin Core è già in esecuzione. + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Resta in ascolto sull'indirizzo indicato ed inserisce in whitelist i peer che vi si collegano. Usa la notazione [host]:porta per l'IPv6 + + + Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) + Resta in attesa di connessioni JSON-RPC sull'indirizzo indicato. Usa la notazione [host]:porta per IPv6. Questa opzione può essere specificata più volte (predefinito: associa a tutte le interfacce) + + + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Non è possibile ottenere un lock sulla cartella %s. Probabilmente Hypercoin Core è già in esecuzione. + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) + Limita la quantità di transazioni gratuite ad <n>*1000 byte al minuto (predefinito: %u) + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Crea nuovi file con i permessi di default del sistema, invece che con umask 077 (ha effetto solo con funzionalità di portamonete disabilitate) Error: Listening for incoming connections failed (listen returned error %s) - Errore: l'ascolto per per connessioni in arrivo fallito (errore riportato %s) + Errore: attesa per connessioni in arrivo fallita (errore riportato %s) + + + Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + Errore: individuato argomento -socks non supportato. Non è più possibile impostare la versione SOCKS, solamente i proxy SOCKS5 sono supportati. Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Esegue un comando quando viene ricevuto un allarme rilevante o quando vediamo un fork veramente lungo (%s in cmd è sostituito dal messaggio) + Esegue un comando in caso di ricezione di un allarme pertinente o se si rileva un fork molto lungo (%s in cmd è sostituito dal messaggio) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Le commissioni (in BTC/kb) minori di questa saranno considerate nulle per la trasmissione (predefinito: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Le commissioni (in HOT/kB) inferiori a questo valore sono considerate pari a zero relativamente alla trasmissione (predefinito: %s) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Le commissioni inferiori a questo valore saranno considerate nulle per la creazione della transazione (predefinito: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Le commissioni (in HOT/kB) inferiori a questo valore sono considerate pari a zero relativamente alla creazione della transazione (predefinito: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Nel caso in cui paytxfee non sia impostato, include una commissione tale da ottenere un avvio delle conferme entro una media di n blocchi (predefinito: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Importo non valido per -maxtxfee=<amount>: '%s' (deve essere almeno pari alla commissione 'minrelay fee' di %s per prevenire transazioni bloccate) + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Dimensione massima dei dati in transazioni di trasporto dati che saranno trasmesse ed incluse nei blocchi (predefinito: %u) + + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Commissioni massime totali da includere in una singola transazione dal portamonete. Un'impostazione troppo bassa potrebbe provocare il fallimento di transazioni di grosse dimensioni (predefinito: %s) + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + Ottiene gli indirizzi dei peer attraverso interrogazioni DNS, in caso di scarsa disponibilità (predefinito: 1 a meno che -connect non sia specificato) + + + Require high priority for relaying free or low-fee transactions (default:%u) + Richiedi alta priorità per la trasmissione di transazioni a zero o basse commissioni (predefinito:%u ) Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Imposta la dimensione massima in byte delle transazioni ad alta-priorità/basse-commissioni (predefinita: %d) + Imposta la dimensione massima in byte delle transazioni ad alta-priorità/basse-commissioni (predefinito: %d) + + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Specifica il numero di thread per la generazione di hypercoin, se abilitata (-1 = tutti i core, predefinito: %d) + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso del Toolkit OpenSSL <https://www.openssl.org/>, software crittografico scritto da Eric Young e software UPnP scritto da Thomas Bernard. + + + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Per utilizzare hypercoind o l'opzione -server in Hypercoin Core è necessario specificare una rpcpassword nel file di configurazione: +%s +Si raccomanda di utilizzare la seguente password casuale: +rpcuser=hypercoinrpc +rpcpassword=%s +(non è necessario ricordare questa password) +Il nome utente e la password NON DEVONO corrispondere. +Se il file non esiste si raccomanda di crearlo con permessi di lettura per il solo proprietario. +Si raccomanda inoltre di configurare alertnotify in modo da ricevere notifiche di eventuali problemi, ad es. alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Attenzione: -maxtxfee è impostato su un valore molto elevato. Tali commissioni potrebbero essere pagate anche in una singola transazione. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Attenzione: Si prega di verificare che data ed ora del computer siano corrette! Una configurazione errata dell'orologio di sistema potrebbe impedire a Hypercoin Core di funzionare regolarmente. + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + I peer inclusi in whitelist non possono subire ban per DoS e le loro transazioni saranno sempre trasmesse, anche nel caso in cui si trovino già nel mempool. Ciò è utile ad es. per i gateway + + + Accept public REST requests (default: %u) + Accetta richieste REST pubbliche (predefinito: %u) Cannot resolve -whitebind address: '%s' - Impossibile risolvere -whitebind address: '%s' + Impossibile risolvere indirizzo -whitebind: '%s' Connect through SOCKS5 proxy - Connetti attraverso SOCKS5 proxy + Connessione attraverso un proxy SOCKS5 + + + Copyright (C) 2009-%i The Bitcoin Core Developers + Copyright (C) 2009-%i Gli sviluppatori di Bitcoin Core + + + Could not parse -rpcbind value %s as network address + Non è stato possibile riconoscere il valore %s di -rpcbind come indirizzo di rete - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Errore caricamento wallet.dat: il wallet richiede una versione nuova di Bitcoin Core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Errore durante il caricamento del file wallet.dat: il portamonete richiede una versione di Hypercoin Core più recente - Fee (in BTC/kB) to add to transactions you send (default: %s) - Commissione (in BTC/kB) da aggiungere alla transazione che invii (default: %s) + Error reading from database, shutting down. + Errore durante lalettura del database. Arresto in corso. + + + Error: A fatal internal error occurred, see debug.log for details + Errore: si è presentato un errore interno fatale, consulta il file debug.log per maggiori dettagli + + + Error: Unsupported argument -tor found, use -onion. + Errore: Rilevato argomento -tor non supportato, utilizzare -onion. + + + Fee (in HOT/kB) to add to transactions you send (default: %s) + Commissione (in HOT/kB) da aggiungere alle transazioni che invii (predefinito: %s) Information Informazioni + + Initialization sanity check failed. Hypercoin Core is shutting down. + Test di integrità iniziale fallito. Hypercoin Core si arresterà. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Importo non valido per -maxtxfee=<amount>: '%s' + Invalid amount for -minrelaytxfee=<amount>: '%s' Importo non valido per -minrelaytxfee=<amount>: '%s' @@ -3042,21 +3180,37 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Importo non valido per -mintxfee=<amount>: '%s' - Node relay options: - Opzioni relay nodo: + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Importo non valido per -paytxfee=<amount>: '%s' (deve essere almeno %s) + + + Invalid netmask specified in -whitelist: '%s' + Netmask non valida specificata in -whitelist: '%s' - Print block on startup, if found in block index - Stampa il blocco all'avvio, se presente nell'indice dei blocchi + Keep at most <n> unconnectable transactions in memory (default: %u) + Mantiene in memoria al massimo <n> transazioni non collegabili (predefinito: %u) - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opzioni RPC SSL: (consulta la Bitcoin Wiki per le istruzioni relative alla configurazione SSL) + Need to specify a port with -whitebind: '%s' + È necessario specificare una porta con -whitebind: '%s' + + + Node relay options: + Opzioni trasmissione nodo: + + + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Opzioni RPC SSL: (consulta la Hypercoin Wiki per le istruzioni relative alla configurazione SSL) RPC server options: Opzioni server RPC: + + RPC support for HTTP persistent connections (default: %d) + Supporto RPC per le connessioni HTTP persistenti (predefinito: %d) + Randomly drop 1 of every <n> network messages Scarta casualmente 1 ogni <n> messaggi di rete @@ -3071,7 +3225,7 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Send transactions as zero-fee transactions if possible (default: %u) - Invia transazioni a zero commissioni se possibile (default: %u) + Invia transazioni a zero commissioni se possibile (predefinito: %u) Show all debugging options (usage: --help -help-debug) @@ -3079,11 +3233,11 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Shrink debug.log file on client startup (default: 1 when no -debug) - Riduci il file debug.log all'avvio del client (predefinito: 1 se non impostato -debug) + Riduce il file debug.log all'avvio del client (predefinito: 1 se -debug non è impostato) Signing transaction failed - Transazione di firma fallita + Firma transazione fallita This is experimental software. @@ -3095,24 +3249,31 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Transaction amounts must be positive - L'importo della transazione deve essere positivo + Gli importi della transazione devono essere positivi + + + Transaction too large for fee policy + Transazione troppo grande in base alla policy sulle commissioni Transaction too large Transazione troppo grande + + Unable to bind to %s on this computer (bind returned error %s) + Impossibile associarsi a %s su questo computer (l'associazione ha restituito l'errore %s) + Use UPnP to map the listening port (default: 1 when listening) - Usa UPnP per mappare la porta in ascolto (predefinito: 1 when listening) + Usa UPnP per mappare la porta in ascolto (predefinito: 1 quando in ascolto) Username for JSON-RPC connections - Nome utente per connessioni JSON-RPC - + Nome utente per connessioni JSON-RPC - Wallet needed to be rewritten: restart Bitcoin Core to complete - Il wallet ha bisogno di essere reiscritto : riavvia Bitcoin Core per completare l'operazione + Wallet needed to be rewritten: restart Hypercoin Core to complete + Il portamonete necessitava di essere riscritto: riavviare Hypercoin Core per completare l'operazione Warning @@ -3122,9 +3283,17 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Warning: This version is obsolete, upgrade required! Attenzione: questa versione è obsoleta, aggiornamento necessario! + + Warning: Unsupported argument -benchmark ignored, use -debug=bench. + Attenzione: Argomento -benchmark ignorato in quanto non supportato, usare -debug=bench. + + + Warning: Unsupported argument -debugnet ignored, use -debug=net. + Attenzione: Argomento -debugnet ignorato in quanto non supportato, usare -debug=net. + Zapping all transactions from wallet... - Cancella e ricompila tutte le transazioni dal wallet... + Eliminazione dal portamonete di tutte le transazioni... on startup @@ -3136,12 +3305,11 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Password for JSON-RPC connections - Password per connessioni JSON-RPC - + Password per connessioni JSON-RPC Execute command when the best block changes (%s in cmd is replaced by block hash) - Esegui il comando quando il migliore blocco cambia(%s nel cmd è sostituito dall'hash del blocco) + Esegue un comando quando il miglior blocco cambia (%s nel cmd è sostituito dall'hash del blocco) Upgrade wallet to latest format @@ -3149,22 +3317,19 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Rescan the block chain for missing wallet transactions - Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete - + Ripete la scansione della block chain per individuare le transazioni che mancano dal portamonete Use OpenSSL (https) for JSON-RPC connections - Utilizzare OpenSSL (https) per le connessioni JSON-RPC - + Utilizza OpenSSL (https) per le connessioni JSON-RPC This help message - Questo messaggio di aiuto - + Questo messaggio di aiuto Allow DNS lookups for -addnode, -seednode and -connect - Consenti ricerche DNS per -addnode, -seednode e -connect + Consente interrogazioni DNS per -addnode, -seednode e -connect Loading addresses... @@ -3174,65 +3339,169 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Error loading wallet.dat: Wallet corrupted Errore caricamento wallet.dat: Portamonete corrotto + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = mantiene metadati tx, ad es. proprietario account ed informazioni di richiesta di pagamento, 2 = scarta metadati tx) + + + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) + Scarica l'attività del database dal pool in memoria al log su disco ogni <n> megabyte (predefinito: %u) + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Determina quanto sarà approfondita la verifica da parte di -checkblocks (0-4, predefinito: %u) + + + Log transaction priority and fee per kB when mining blocks (default: %u) + Abilita il log della priorità di transazione e della commissione per kB quando si generano blocchi (predefinito: %u) + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Mantiene l'indice completo delle transazioni usato dalla chiamata rpc getrawtransaction (predefinito: %u) + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Numero di secondi di sospensione prima della riconnessione per i peer che mostrano un comportamento anomalo (predefinito: %u) + + + Output debugging information (default: %u, supplying <category> is optional) + Emette informazioni di debug (predefinito: %u, fornire <category> è opzionale) + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Usa un proxy SOCKS5 a parte per raggiungere i peer attraverso gli hidden services di Tor (predefinito: %s) + + + (default: %s) + (predefinito: %s) + + + Acceptable ciphers (default: %s) + Cifrari accettabili (predefinito: %s) + + + Always query for peer addresses via DNS lookup (default: %u) + Interroga sempre i DNS per ottenere gli indirizzi dei peer (predefinito: %u) + + + Disable safemode, override a real safe mode event (default: %u) + Disabilita la modalità sicura ignorando gli eventi che porterebbero alla sua attivazione (predefinito: %u) + Error loading wallet.dat Errore caricamento wallet.dat Force safe mode (default: %u) - Forza modalità provvisoria (dafault: %u) + Forza modalità sicura (predefinito: %u) Generate coins (default: %u) - Genera coins (default: %u) + Genera hypercoin (predefinito: %u) How many blocks to check at startup (default: %u, 0 = all) - Quanti blocchi da controllare all'avvio (dafault: %u, 0 = tutti) + Numero di blocchi da controllare all'avvio (predefinito: %u, 0 = tutti) + + + Include IP addresses in debug output (default: %u) + Include gli indirizzi IP nell'output del debug (predefinito: %u) Invalid -proxy address: '%s' Indirizzo -proxy non valido: '%s' + + Limit size of signature cache to <n> entries (default: %u) + Limita la dimensione della cache delle firme a <n> voci (predefinito: %u) + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + Resta in attesa di connessioni JSON-RPC su <port> (predefinito: %u o testnet: %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + Resta in attesa di connessioni su <port> (predefinito: %u o testnet: %u) + Maintain at most <n> connections to peers (default: %u) - Mantieni al massimo <n> connessioni ai peers (default: %u) + Mantiene al massimo <n> connessioni verso i peer (predefinito: %u) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + Buffer di ricezione massimo per connessione, <n>*1000 byte (predefinito: %u) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + Buffer di invio massimo per connessione, <n>*1000 byte (predefinito: %u) + + + Only accept block chain matching built-in checkpoints (default: %u) + Accetta solo block chain corrispondenti ai checkpoint integrati nel codice (predefinito: %u) Prepend debug output with timestamp (default: %u) - Pretendi output di debug con timestamp (default: %u) + Antepone un timestamp all'output del debug (predefinito: %u) - Print block tree on startup (default: %u) - Stampa l'albero dei blocchi all'avvio (default: %u) + Relay and mine data carrier transactions (default: %u) + Trasmette ed include nei blocchi transazioni di trasporto dati (predefinito: %u) + + + Relay non-P2SH multisig (default: %u) + Trasmette transazioni non-P2SH multisig (predefinito: %u) + + + Run a thread to flush wallet periodically (default: %u) + Mantieni in esecuzione un thread per scaricare periodicamente il portamonete (predefinito: %u) Server certificate file (default: %s) - File certificato del server (default: %s) + File del certificato del server (predefinito: %s) Server private key (default: %s) - Chiave privata del server (default: %s) + Chiave privata del server (predefinito: %s) + + + Set key pool size to <n> (default: %u) + Imposta la dimensione del pool di chiavi a <n> (predefinito: %u) + + + Set minimum block size in bytes (default: %u) + Imposta la dimensione minima del blocco in byte (predefinito: %u) + + + Set the number of threads to service RPC calls (default: %d) + Imposta il numero di thread destinati a rispondere alle chiamate RPC (predefinito %d) + + + Sets the DB_PRIVATE flag in the wallet db environment (default: %u) + Imposta il flag DB_PRIVATE nell'ambiente di database del portamonete (predefinito: %u) Specify configuration file (default: %s) - Specifica il file di configurazione (default: %s) + Specifica il file di configurazione (predefinito: %s) Specify connection timeout in milliseconds (minimum: 1, default: %d) - Specifica il timeout di connessione in millisecondi (minimo:1, default: %d) + Specifica il timeout di connessione in millisecondi (minimo:1, predefinito: %d) Specify pid file (default: %s) - Specifica il file pid (default: %s) + Specifica il file pid (predefinito: %s) Spend unconfirmed change when sending transactions (default: %u) - Spendi il resto non confermato quando si inviano transazioni (default: %u) + Abilita la spesa di resto non confermato quando si inviano transazioni (predefinito: %u) Stop running after importing blocks from disk (default: %u) - Interrompi dopo aver importato i blocchi dal disco (default: %u) + Interrompi l'esecuzione dopo aver importato i blocchi dal disco (predefinito: %u) + + + Threshold for disconnecting misbehaving peers (default: %u) + Soglia di disconnessione per i peer che si comportano in maniera anomala (predefinito: %u) Unknown network specified in -onlynet: '%s' @@ -3240,7 +3509,7 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Cannot resolve -bind address: '%s' - Impossibile risolvere -bind address: '%s' + Impossibile risolvere indirizzo -bind: '%s' Cannot resolve -externalip address: '%s' @@ -3250,21 +3519,17 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Importo non valido per -paytxfee=<amount>: '%s' - - Invalid amount - Importo non valido - Insufficient funds Fondi insufficienti Loading block index... - Caricamento dell'indice del blocco... + Caricamento dell'indice dei blocchi... Add a node to connect to and attempt to keep the connection open - Aggiunge un nodo a cui connettersi e tenta di tenere aperta la connessione + Aggiunge un nodo a cui connettersi e tenta di mantenere aperta la connessione Loading wallet... @@ -3286,13 +3551,9 @@ ad esempio: alertnotify=echo %%s | mail -s "Allarme Bitcoin" admin@foo.com Done loading Caricamento completato - - To use the %s option - Per usare l'opzione %s - Error Errore - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ja.ts b/src/qt/locale/bitcoin_ja.ts index 0c9805de8f905..f1d6d16a3b3be 100644 --- a/src/qt/locale/bitcoin_ja.ts +++ b/src/qt/locale/bitcoin_ja.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - アドレスまたはラベルを編集するにはダブルクリック + Right-click to edit address or label + 右クリックでアドレスまたはラベルを編集します Create a new address @@ -66,12 +66,12 @@ アドレス受信中 - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - これらは支払いを送信するためのあなたの Bitcoin アドレスです。コインを送信する前に、常に額と受信アドレスを確認してください。 + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + これらは支払いを送信するためのあなたの Hypercoin アドレスです。コインを送信する前に、常に額と受信アドレスを確認してください。 - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - これらは支払いを受け取るためのビットコインアドレスです。トランザクションごとに新しい受け取り用アドレスを作成することが推奨されます。 + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + これらは支払いを受け取るためのライトコインアドレスです。トランザクションごとに新しい受け取り用アドレスを作成することが推奨されます。 Copy &Label @@ -164,8 +164,8 @@ ウォレットの暗号化を確認する - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - 警告: もしもあなたのウォレットを暗号化してパスフレーズを失ってしまったなら、<b>あなたの Bitcoin はすべて失われます</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + 警告: もしもあなたのウォレットを暗号化してパスフレーズを失ってしまったなら、<b>あなたの Hypercoin はすべて失われます</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ ウォレットの新しいパスフレーズを入力してください。<br/><b>10文字以上のランダムな文字</b>で構成されたものか、<b>8単語以上の単語</b>で構成されたパスフレーズを使用してください。 - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin は暗号化プロセスを終了するために今すぐ終了します。あなたのコンピュータがマルウェアに感染してコインを盗まれることもあるので、暗号化してもあなたのウォレットを完全に保護できないことを覚えていてください。 + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin は暗号化プロセスを終了するために今すぐ終了します。あなたのコンピュータがマルウェアに感染してコインを盗まれることもあるので、暗号化してもあなたのウォレットを完全に保護できないことを覚えていてください。 Wallet encryption failed @@ -295,8 +295,8 @@ URI を開く (&U)... - Bitcoin Core client - Bitcoinコア クライアント + Hypercoin Core client + Hypercoinコア クライアント Importing blocks from disk... @@ -307,12 +307,12 @@ ディスク上のブロックのインデックスを再作成中... - Send coins to a Bitcoin address - Bitcoin アドレスにコインを送る + Send coins to a Hypercoin address + Hypercoin アドレスにコインを送る - Modify configuration options for Bitcoin - Bitcoin の設定を変更する + Modify configuration options for Hypercoin + Hypercoin の設定を変更する Backup wallet to another location @@ -335,8 +335,8 @@ メッセージの検証... (&V) - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ 受信 (&R) - Show information about Bitcoin Core - Bitcoinコアに関する情報を表示 + Show information about Hypercoin Core + Hypercoinコアに関する情報を表示 &Show / Hide @@ -367,12 +367,12 @@ あなたのウォレットの秘密鍵を暗号化します - Sign messages with your Bitcoin addresses to prove you own them - あなたが所有していることを証明するために、あなたの Bitcoin アドレスでメッセージに署名してください + Sign messages with your Hypercoin addresses to prove you own them + あなたが所有していることを証明するために、あなたの Hypercoin アドレスでメッセージに署名してください - Verify messages to ensure they were signed with specified Bitcoin addresses - 指定された Bitcoin アドレスで署名されたことを確認するためにメッセージを検証します + Verify messages to ensure they were signed with specified Hypercoin addresses + 指定された Hypercoin アドレスで署名されたことを確認するためにメッセージを検証します &File @@ -391,16 +391,16 @@ タブツールバー - Bitcoin Core - Bitcoin のコア + Hypercoin Core + Hypercoin のコア - Request payments (generates QR codes and bitcoin: URIs) - 支払いを要求する (QRコードとbitcoin:ではじまるURIを生成する) + Request payments (generates QR codes and hypercoin: URIs) + 支払いを要求する (QRコードとhypercoin:ではじまるURIを生成する) - &About Bitcoin Core - ビットコインコアについて (&A) + &About Hypercoin Core + ライトコインコアについて (&A) Show the list of used sending addresses and labels @@ -410,13 +410,21 @@ Show the list of used receiving addresses and labels 支払いを受け取るアドレスとラベルのリストを表示する + + Open a hypercoin: URI or payment request + hypercoin: URIまたは支払いリクエストを開く + &Command-line options コマンドラインオプション (&C) + + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + 有効な Hypercoin のコマンドライン オプションを見るために Hypercoin Core のヘルプメッセージを表示します。 + - %n active connection(s) to Bitcoin network - %n の Bitcoin ネットワークへのアクティブな接続 + %n active connection(s) to Hypercoin network + %n の Hypercoin ネットワークへのアクティブな接続 No block source available... @@ -470,6 +478,10 @@ Up to date バージョンは最新です + + Processed %n blocks of transaction history. + トランザクション履歴の %n ブロックを処理しました。 + Catching up... 追跡中... @@ -535,10 +547,18 @@ Address: %4 Fee: 手数料: + + Dust: + ダスト: + After Fee: 手数料差引後: + + Change: + 釣り銭: + (un)select all すべて選択/選択解除 @@ -555,6 +575,14 @@ Address: %4 Amount 総額 + + Received with label + ラベルに対する入金一覧 + + + Received with address + アドレスに対する入金一覧 + Date 日付 @@ -615,10 +643,62 @@ Address: %4 Copy priority 優先度をコピーする + + Copy dust + ダストをコピーする + + + Copy change + 釣り銭をコピー + + + highest + 最高 + + + higher + 非常に高 + + + high + + + + medium-high + 中〜高 + + + medium + + + + low-medium + 低〜中 + + + low + + + + lower + 非常に低 + + + lowest + 最低 + + + (%1 locked) + (%1 がロック済み) + none なし + + Can vary +/- %1 satoshi(s) per input. + ひとつの入力につき %1 satoshi 前後ずれることがあります。 + yes はい @@ -627,15 +707,43 @@ Address: %4 no いいえ + + This label turns red, if the transaction size is greater than 1000 bytes. + トランザクションサイズが1000バイトを超える場合にはこのラベルは赤くなります。 + + + This means a fee of at least %1 per kB is required. + これは少なくとも1kBあたり %1 の手数料が必要であることを意味します。 + + + Can vary +/- 1 byte per input. + ひとつの入力につき1バイト程度ずれることがあります。 + + + Transactions with higher priority are more likely to get included into a block. + より高い優先度を持つトランザクションの方がブロックに取り込まれやすくなります。 + This label turns red, if the priority is smaller than "medium". 優先度が「中」未満の場合には、このラベルは赤くなります。 + + This label turns red, if any recipient receives an amount smaller than %1. + 少なくともひとつの受取額が %1 を下回る場合にはこのラベルは赤くなります。 + (no label) (ラベル無し) - + + change from %1 (%2) + %1 (%2) からのおつり + + + (change) + (おつり) + + EditAddressDialog @@ -646,6 +754,14 @@ Address: %4 &Label ラベル(&L) + + The label associated with this address list entry + このアドレス帳項目に結びつけられているラベル + + + The address associated with this address list entry. This can only be modified for sending addresses. + このアドレス帳項目に結びつけられているアドレス。この項目は送金用アドレスの場合のみ編集することができます。 + &Address アドレス帳 (&A) @@ -671,8 +787,8 @@ Address: %4 入力されたアドレス "%1" は既にアドレス帳にあります。 - The entered address "%1" is not a valid Bitcoin address. - 入力されたアドレス "%1" は無効な Bitcoin アドレスです。 + The entered address "%1" is not a valid Hypercoin address. + 入力されたアドレス "%1" は無効な Hypercoin アドレスです。 Could not unlock wallet. @@ -709,16 +825,20 @@ Address: %4 HelpMessageDialog - Bitcoin Core - Bitcoin のコア + Hypercoin Core + Hypercoin のコア version バージョン - About Bitcoin Core - Bitcoinコアについて + (%1-bit) + (%1ビット) + + + About Hypercoin Core + Hypercoinコアについて Command-line options @@ -744,6 +864,10 @@ Address: %4 Start minimized 最小化された状態で起動する + + Set SSL root certificates for payment request (default: -system-) + 支払いリクエスト用にSSLルート証明書を設定する(デフォルト:-system-) + Show splash screen on startup (default: 1) 起動時にスプラッシュ画面を表示する (初期値: 1) @@ -760,9 +884,17 @@ Address: %4 ようこそ - Welcome to Bitcoin Core. + Welcome to Hypercoin Core. ようこそ! + + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + これはプログラム最初の起動です。Hypercoin Coreがデータを保存する場所を選択して下さい。 + + + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Coreは、ライトコインのブロックチェーンのコピーを、ダウンロードして保存します。少なくとも%1ギガバイトのデータが、このディレクトリに保存されます。そしてそれは時間と共に増加します。またウォレットもこのディレクトリに保存されます。 + Use the default data directory 初期値のデータ ディレクトリを使用 @@ -772,8 +904,12 @@ Address: %4 任意のデータ ディレクトリを使用: - Bitcoin Core - Bitcoin のコア + Hypercoin Core + Hypercoin のコア + + + Error: Specified data directory "%1" cannot be created. + エラー: 指定のデータディレクトリ "%1" を作成できません。 Error @@ -822,12 +958,12 @@ Address: %4 メイン (&M) - Automatically start Bitcoin after logging in to the system. - システムにログインした時に自動的に Bitcoin を起動します。 + Automatically start Hypercoin after logging in to the system. + システムにログインした時に自動的に Hypercoin を起動します。 - &Start Bitcoin on system login - システムにログインした時に Bitcoin を起動 (&S) + &Start Hypercoin on system login + システムにログインした時に Hypercoin を起動 (&S) Size of &database cache @@ -845,10 +981,26 @@ Address: %4 Accept connections from outside 外部からの接続を許可する + + Allow incoming connections + 外部からの接続を許可する + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) プロキシのIPアドレス (例えば IPv4: 127.0.0.1 / IPv6: ::1) + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + トランザクションタブのコンテキストメニュー項目に表示する、サードパーティURL (例えばブロックエクスプローラ)。URL中の%sはトランザクションのハッシュ値に置き換えられます。垂直バー | で区切ることで、複数のURLを指定できます。 + + + Third party transaction URLs + サードパーティのトランザクションURL + + + Active command-line options that override above options: + 上のオプションを置き換えることのできる、有効なコマンドラインオプションの一覧: + Reset all client options to default. すべてのオプションを初期値に戻します。 @@ -861,6 +1013,10 @@ Address: %4 &Network ネットワーク (&N) + + (0 = auto, <0 = leave that many cores free) + (0 = 自動、0以上 = 指定した数のコアをフリーにする) + W&allet ウォレット (&A) @@ -874,13 +1030,29 @@ Address: %4 コインコントロール機能を有効化する (&C) - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - 自動的にルーター上の Bitcoin クライアントのポートを開きます。あなたのルーターが UPnP に対応していて、それが有効になっている場合に作動します。 + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + 未検証のおつりの使用を無効化すると、トランザクションが少なくとも1検証を獲得するまではそのトランザクションのおつりは利用できなくなります。これは残高の計算方法にも影響します。 + + + &Spend unconfirmed change + 未検証のおつりを使用する (&S) + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + 自動的にルーター上の Hypercoin クライアントのポートを開きます。あなたのルーターが UPnP に対応していて、それが有効になっている場合に作動します。 Map port using &UPnP UPnP を使ってポートを割り当てる (&U) + + Connect to the Hypercoin network through a SOCKS5 proxy. + SOCKS5 プロキシ経由でHypercoinネットワークに接続する + + + &Connect through SOCKS5 proxy (default proxy): + SOCKS5 プロキシ経由で接続する (デフォルトプロキシ): (&C) + Proxy &IP: プロキシの IP (&I) : @@ -922,8 +1094,8 @@ Address: %4 ユーザインターフェースの言語 (&l) : - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - ここでユーザインターフェースの言語を設定できます。設定を反映するには Bitcoin を再起動します。 + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + ここでユーザインターフェースの言語を設定できます。設定を反映するには Hypercoin を再起動します。 &Unit to show amounts in: @@ -933,6 +1105,10 @@ Address: %4 Choose the default subdivision unit to show in the interface and when sending coins. インターフェース上の表示とコインの送信で使用する単位を選択します。 + + Whether to show coin control features or not. + コインコントロール機能を表示するかどうか。 + &OK &OK @@ -953,6 +1129,18 @@ Address: %4 Confirm options reset オプションのリセットの確認 + + Client restart required to activate changes. + 変更を有効化するにはクライアントを再起動する必要があります。 + + + Client will be shutdown, do you want to proceed? + クライアントは停止されます。続行しますか? + + + This change would require a client restart. + この変更はクライアントの再起動が必要です。 + The supplied proxy address is invalid. プロキシアドレスが無効です。 @@ -965,13 +1153,25 @@ Address: %4 フォーム - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - 表示された情報は古いかもしれません。接続が確立されると、あなたのウォレットは Bitcoin ネットワークと自動的に同期しますが、このプロセスはまだ完了していません。 + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + 表示された情報は古いかもしれません。接続が確立されると、あなたのウォレットは Hypercoin ネットワークと自動的に同期しますが、このプロセスはまだ完了していません。 + + + Watch-only: + 監視限定: + + + Available: + 利用可能: Your current spendable balance あなたの利用可能残高 + + Pending: + 検証待ち: + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance 未検証の取引で利用可能残高に反映されていない数 @@ -984,6 +1184,10 @@ Address: %4 Mined balance that has not yet matured 完成していない採掘された残高 + + Balances + 残高 + Total: 合計: @@ -992,14 +1196,30 @@ Address: %4 Your current total balance あなたの現在の残高 + + Your current balance in watch-only addresses + 監視限定アドレス内の現在の残高 + + + Spendable: + 使用可能: + Recent transactions 最近のトランザクション + + Unconfirmed transactions to watch-only addresses + 監視限定アドレスに対する未検証のトランザクション + Mined balance in watch-only addresses that has not yet matured ウォッチオンリーアドレスの採掘された残高のうち、成熟していないもの + + Current total balance in watch-only addresses + 監視限定アドレス内の現在の全残高 + out of sync 同期していない @@ -1019,22 +1239,70 @@ Address: %4 Payment request rejected 支払い要求は拒否されました + + Payment request network doesn't match client network. + 支払いリクエストのネットワークは現在のクライアントのネットワークに一致しません。 + Payment request has expired. 支払いのリクエストは期限切れです + + Payment request is not initialized. + 支払いリクエストは開始されていません。 + + + Requested payment amount of %1 is too small (considered dust). + 要求された支払額 %1 は少なすぎます (ダストとみなされてしまいます)。 + Payment request error 支払いのリクエストのエラーです - Cannot start bitcoin: click-to-pay handler - Bitcoin を起動できません: click-to-pay handler + Cannot start hypercoin: click-to-pay handler + Hypercoin を起動できません: click-to-pay handler + + + Payment request fetch URL is invalid: %1 + 支払い要求の取得先URLが無効です: %1 + + + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI を解析できません! これは無効な Hypercoin アドレスあるいや不正な形式の URI パラメーターによって引き起こされる場合があります。 + + + Payment request file handling + 支払いリクエストファイルを処理しています + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + 支払いリクエストファイルを読み込めませんでした!無効な支払いリクエストファイルにより引き起こされた可能性があります。 + + + Unverified payment requests to custom payment scripts are unsupported. + カスタム支払いスクリプトに対する、検証されていない支払いリクエストはサポートされていません。 + + + Refund from %1 + %1 からの返金 + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + 支払リクエスト %1 は大きすぎます(%2バイトですが、%3バイトまでが許されています)。 + + + Payment request DoS protection + 支払リクエストDoS保護 Error communicating with %1: %2 %1: %2とコミュニケーション・エラーです + + Payment request cannot be parsed! + 支払リクエストを読み込めませんでした! + Bad response from server %1 サーバーの返事は無効 %1 @@ -1054,13 +1322,29 @@ Address: %4 User Agent ユーザエージェント - + + Address/Hostname + アドレス/ホスト名 + + + Ping Time + Ping時間 + + QObject Amount 総額 + + Enter a Hypercoin address (e.g. %1) + Hypercoinアドレスを入力してください (例 %1) + + + %1 d + %1日 + %1 h %1 h @@ -1069,11 +1353,31 @@ Address: %4 %1 m %1 m + + %1 s + %1秒 + + + NETWORK + ネットワーク + + + UNKNOWN + 未知 + + + None + なし + N/A N/A - + + %1 ms + %1ミリ秒 + + QRImageWidget @@ -1115,10 +1419,18 @@ Address: %4 Debug window デバッグ ウインドウ + + General + 一般 + Using OpenSSL version 使用中の OpenSSL のバージョン + + Using BerkeleyDB version + 使用中のBerkleyDBバージョン + Startup time 起動した日時 @@ -1143,10 +1455,74 @@ Address: %4 Current number of blocks 現在のブロック数 + + Received + 受取 + + + Sent + 送金 + + + &Peers + ピア (&P) + + + Select a peer to view detailed information. + 詳しい情報を見たいピアを選択してください。 + + + Direction + 方向 + + + Version + バージョン + User Agent ユーザエージェント + + Services + サービス + + + Starting Height + 開始時のブロック高 + + + Sync Height + 同期済みブロック高 + + + Ban Score + Banスコア + + + Connection Time + 接続時間 + + + Last Send + 最終送信 + + + Last Receive + 最終受信 + + + Bytes Sent + 送信済バイト数 + + + Bytes Received + 受信済バイト数 + + + Ping Time + Ping時間 + Last block time 最終ブロックの日時 @@ -1188,16 +1564,16 @@ Address: %4 デバッグ用ログファイル - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - 現在のデータ ディレクトリから Bitcoin のデバッグ用ログファイルを開きます。ログファイルが大規模な場合には数秒かかることがあります。 + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + 現在のデータ ディレクトリから Hypercoin のデバッグ用ログファイルを開きます。ログファイルが大規模な場合には数秒かかることがあります。 Clear console コンソールをクリア - Welcome to the Bitcoin RPC console. - Bitcoin RPC コンソールへようこそ。 + Welcome to the Hypercoin RPC console. + Hypercoin RPC コンソールへようこそ。 Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1223,7 +1599,31 @@ Address: %4 %1 GB %1 GB - + + via %1 + %1経由 + + + never + 一度もなし + + + Inbound + 内向き + + + Outbound + 外向き + + + Unknown + 未知 + + + Fetching... + 取得中…… + + ReceiveCoinsDialog @@ -1238,6 +1638,30 @@ Address: %4 &Message: メッセージ (&M): + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + 以前利用した受取用アドレスのどれかを再利用します。アドレスの再利用はセキュリティおよびプライバシーにおいて問題があります。以前作成した支払リクエストを再生成するとき以外は利用しないでください。 + + + R&euse an existing receiving address (not recommended) + 既存の受取用アドレスを再利用する (非推奨) (&E) + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + 支払リクエストが開始された時に表示される、支払リクエストに添える任意のメッセージです。注意:メッセージはHypercoinネットワークを通じて、支払と共に送られるわけではありません。 + + + An optional label to associate with the new receiving address. + 受取用アドレスに紐づく任意のラベル。 + + + Use this form to request payments. All fields are <b>optional</b>. + このフォームを使用して支払のリクエストを行いましょう。すべての項目は<b>任意入力</b>です。 + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + リクエストする任意の金額。特定の金額をリクエストするのでない場合には、この欄は空白のままかゼロにしてください。 + Clear all fields of the form. 全ての入力項目をクリア @@ -1246,6 +1670,18 @@ Address: %4 Clear クリア + + Requested payments history + 支払リクエスト履歴 + + + &Request payment + 支払をリクエストする (&R) + + + Show the selected request (does the same as double clicking an entry) + 選択されたリクエストを表示する(項目をダブルクリックすることでも表示できます) + Show 表示 @@ -1254,6 +1690,10 @@ Address: %4 Remove the selected entries from the list リストから選択項目を削除 + + Remove + 削除 + Copy label ラベルをコピーする @@ -1344,7 +1784,15 @@ Address: %4 (no label) (ラベル無し) - + + (no message) + (メッセージなし) + + + (no amount) + (金額なし) + + SendCoinsDialog @@ -1392,51 +1840,143 @@ Address: %4 手数料差引後: - Send to multiple recipients at once - 一度に複数の人に送る + Change: + 釣り銭: - Add &Recipient - 受取人を追加 (&R) + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + これが有効にもかかわらずおつりアドレスが空欄であったり無効であった場合には、おつりは新しく生成されたアドレスへ送金されます。 - Clear all fields of the form. - 全ての入力項目をクリア + Custom change address + カスタムおつりアドレス - Clear &All - すべてクリア (&A) + Transaction Fee: + トランザクション手数料: - Balance: - 残高: + Choose... + 選択…… - Confirm the send action - 送る操作を確認する + collapse fee-settings + 手数料設定を折りたたむ - S&end - 送る (&e) + Minimize + 最小化 - Confirm send coins - コインを送る確認 + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + カスタム手数料が1000satoshiに設定されている場合、トランザクションサイズが250バイトとすると、「1キロバイトあたり手数料」では250satoshiの手数料のみを支払いますが、「最小手数料」では1000satoshiを支払います。1キロバイトを超えるトランザクションの場合には、どちらの方法を選択したとしても1キロバイトあたりで支払われます。 - Copy quantity - 数量をコピーする + per kilobyte + 1キロバイトあたり手数料 - Copy amount - 総額のコピー + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + カスタム手数料が1000satoshiに設定されている場合、トランザクションサイズが250バイトとすると、「1キロバイトあたり手数料」では250satoshiの手数料のみを支払いますが、「最小手数料」では1000satoshiを支払います。1キロバイトを超えるトランザクションの場合には、どちらの方法を選択したとしても1キロバイトあたりで支払われます。 - Copy fee - 手数料をコピーする + total at least + 最小手数料 - Copy after fee + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + ブロックの容量に比べてトランザクション流量が少ないうちは最小手数料のみの支払で十分です。しかしながらネットワークが処理しきれないほどhypercoinトランザクションの需要がひとたび生まれてしまった場合には、永遠に検証がされないトランザクションになってしまう可能性があることに注意してください。 + + + (read the tooltip) + (ツールチップをお読みください) + + + Recommended: + 推奨: + + + Custom: + カスタム: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (スマート手数料はまだ初期化されていません。これにはおおよそ数ブロックほどかかります……) + + + Confirmation time: + 検証時間: + + + normal + 普通 + + + fast + 高速 + + + Send as zero-fee transaction if possible + 可能な場合には手数料ゼロのトランザクションとして送金する + + + (confirmation may take longer) + (検証に長い時間がかかる可能性があります) + + + Send to multiple recipients at once + 一度に複数の人に送る + + + Add &Recipient + 受取人を追加 (&R) + + + Clear all fields of the form. + 全ての入力項目をクリア + + + Dust: + ダスト: + + + Clear &All + すべてクリア (&A) + + + Balance: + 残高: + + + Confirm the send action + 送る操作を確認する + + + S&end + 送る (&e) + + + Confirm send coins + コインを送る確認 + + + %1 to %2 + %1 から %2 + + + Copy quantity + 数量をコピーする + + + Copy amount + 総額のコピー + + + Copy fee + 手数料をコピーする + + + Copy after fee 手数料差引後の値をコピーする @@ -1447,6 +1987,18 @@ Address: %4 Copy priority 優先度をコピーする + + Copy change + 釣り銭をコピー + + + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + 総額 %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + + + or + または + The recipient address is not valid, please recheck. 受取人のアドレスが不正です。再確認してください。 @@ -1467,10 +2019,42 @@ Address: %4 Duplicate address found, can only send to each address once per send operation. 重複しているアドレスが見つかりました。1回の送信で同じアドレスに送ることは出来ません。 + + Transaction creation failed! + トラザクションの作成に失敗しました! + + + The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + トランザクションは拒否されました。wallet.dat のコピーを使い、そしてコピーしたウォレットからコインを使用したことがマークされなかったときなど、ウォレットのいくつかのコインがすでに使用されている場合に、このエラーは起こるかもしれません。 + + + A fee higher than %1 is considered an insanely high fee. + %1 よりも高い手数料は、異常に高い手数料だと考えられます。 + + + Pay only the minimum fee of %1 + 最小手数料 %1 のみを支払う + + + Estimated to begin confirmation within %1 block(s). + %1 ブロック以内に検証が終わると予想されます。 + + + Warning: Invalid Hypercoin address + 警告:無効なHypercoinアドレスです + (no label) (ラベル無し) + + Warning: Unknown change address + 警告:未知のおつりアドレスです + + + Copy dust + ダストをコピーする + Are you sure you want to send? 送ってよろしいですか? @@ -1502,6 +2086,14 @@ Address: %4 Choose previously used address 前に使用したアドレスを選ぶ + + This is a normal payment. + これは通常の支払です。 + + + The Hypercoin address to send the payment to + 支払の送金先Hypercoinアドレス + Alt+A Alt+A @@ -1514,10 +2106,30 @@ Address: %4 Alt+P Alt+P + + Remove this entry + この項目を削除する + Message: メッセージ: + + This is a verified payment request. + これは検証済みの支払リクエストです。 + + + Enter a label for this address to add it to the list of used addresses + このアドレスに対するラベルを入力することで、使用済みアドレスの一覧に追加することができます + + + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + hypercoin: URIに添付されていたメッセージです。これは参照用としてトランザクションとともに保存されます。注意:このメッセージはHypercoinネットワークを通して送信されるわけではありません。 + + + This is an unverified payment request. + これは未検証の支払リクエストです。 + Pay To: 支払先: @@ -1530,8 +2142,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Coreをシャットダウンしています。 + Hypercoin Core is shutting down... + Hypercoin Coreをシャットダウンしています。 Do not shut down the computer until this window disappears. @@ -1552,6 +2164,10 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. あなた自身を立証するためにあなたのアドレスでメッセージに署名することができます。フィッシング攻撃によってあなたを騙して署名を譲渡させようとするかもしれないので、不明確なものは絶対に署名しないように注意してください。あなたが同意する完全に詳細な声明にだけ署名してください。 + + The Hypercoin address to sign the message with + メッセージを署名するHypercoinアドレス + Choose previously used address 前に使用したアドレスを選ぶ @@ -1581,8 +2197,8 @@ Address: %4 現在の署名をシステムのクリップボードにコピーする - Sign the message to prove you own this Bitcoin address - この Bitcoin アドレスを所有していることを証明するためにメッセージに署名 + Sign the message to prove you own this Hypercoin address + この Hypercoin アドレスを所有していることを証明するためにメッセージに署名 Sign &Message @@ -1605,8 +2221,12 @@ Address: %4 メッセージを検証するために、署名するアドレスとメッセージ(改行、スペース、タブなどを正確にコピーしてください)、そして署名を入力します。中間者攻撃によってだまされることを避けるために、署名されたメッセージそのものよりも、署名を読み取られないように注意してください。 - Verify the message to ensure it was signed with the specified Bitcoin address - 指定された Bitcoin アドレスで署名されたことを保証するメッセージを検証 + The Hypercoin address the message was signed with + メッセージの署名に使われたHypercoinアドレス + + + Verify the message to ensure it was signed with the specified Hypercoin address + 指定された Hypercoin アドレスで署名されたことを保証するメッセージを検証 Verify &Message @@ -1672,8 +2292,8 @@ Address: %4 SplashScreen - Bitcoin Core - Bitcoin のコア + Hypercoin Core + Hypercoin のコア The Bitcoin Core developers @@ -1697,6 +2317,10 @@ Address: %4 Open until %1 ユニット %1 を開く + + conflicted + 衝突 + %1/offline %1/オフライン @@ -1741,6 +2365,10 @@ Address: %4 own address 自分のアドレス + + watch-only + 監視限定 + label ラベル @@ -1761,6 +2389,14 @@ Address: %4 Debit 引き落とし額 + + Total debit + 総出金額 + + + Total credit + 総入金額 + Transaction fee 取引手数料 @@ -1785,6 +2421,10 @@ Address: %4 Merchant 商人 + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + 生成されたコインは使う前に%1のブロックを完成させる必要があります。あなたが生成した時、このブロックはブロック チェーンに追加されるネットワークにブロードキャストされました。チェーンに追加されるのが失敗した場合、状態が"不承認"に変更されて使えなくなるでしょう。これは、別のノードがあなたの数秒前にブロックを生成する場合に時々起こるかもしれません。 + Debug information デバッグ情報 @@ -1847,6 +2487,10 @@ Address: %4 Address Helbidea + + Immature (%1 confirmations, will be available after %2) + 未成熟(%1検証。%2検証完了後に使用可能となります) + Open for %n more block(s) %n 以上のブロックを開く @@ -1875,6 +2519,14 @@ Address: %4 Unconfirmed 未検証 + + Confirming (%1 of %2 recommended confirmations) + 検証中(%2の推奨検証数のうち、%1検証が完了) + + + Conflicted + 衝突 + Received with 受信元 @@ -1895,6 +2547,10 @@ Address: %4 Mined 発掘した + + watch-only + 監視限定 + (n/a) (n/a) @@ -1911,6 +2567,10 @@ Address: %4 Type of transaction. 取引の種類。 + + Whether or not a watch-only address is involved in this transaction. + 監視限定アドレスがこのトランザクションに含まれているかどうか + Destination address of transaction. 取引の宛先アドレス。 @@ -2006,6 +2666,10 @@ Address: %4 Export Transaction History トランザクション履歴をエクスポートする + + Watch-only + 監視限定 + Exporting Failed エクスポートに失敗しました @@ -2018,6 +2682,10 @@ Address: %4 Exporting Successful エクスポートに成功しました + + The transaction history was successfully saved to %1. + トランザクション履歴は正常に%1に保存されました。 + Comma separated file (*.csv) テキスト CSV (*.csv) @@ -2057,7 +2725,11 @@ Address: %4 UnitDisplayStatusBarControl - + + Unit to show amounts in. Click to select another unit. + 金額を表示する際の単位。クリックすることで他の単位を選択します。 + + WalletFrame @@ -2094,6 +2766,14 @@ Address: %4 Backup Failed バックアップに失敗しました + + There was an error trying to save the wallet data to %1. + ウォレットデータを%1へ保存する際にエラーが発生しました。 + + + The wallet data was successfully saved to %1. + ウォレット データは正常に%1に保存されました。 + Backup Successful バックアップ成功 @@ -2133,49 +2813,42 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) 外部からの接続を許可 (初期値: -proxy または -connect を使用していない場合は1) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, rpcpassword を設定ファイルで設定してください: -%s -下記のランダムなパスワードの使用を推奨します: -rpcuser=bitcoinrpc -rpcpassword=%s -(このパスワードを覚える必要はありません) -ユーザー名とパスワードが同じであってはいけません。 -もしもファイルが存在しないなら、所有者だけが読み取れる権限で作成してください。 -また、問題が通知されるように alertnotify を設定することをお勧めします; -例えば: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - Bind to given address and always listen on it. Use [host]:port notation for IPv6 指定のアドレスへバインドし、その上で常にリスンします。IPv6 は [ホスト名]:ポート番号 と表記します - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - エラー: 取引は拒否されました。wallet.dat のコピーを使い、そしてコピーしたウォレットからコインを使用したことがマークされなかったときなど、ウォレットのいくつかのコインがすでに使用されている場合に、このエラーは起こるかもしれません。 + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + ウォレットの全トランザクションを削除し、これらを-rescanオプションを用いることで起動時にブロックチェインのデータのみからリカバリします。 + + + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + MITソフトウェアライセンスのもとで配布されています。付属のCOPYINGファイルまたは<http://www.opensource.org/licenses/mit-license.php>を参照してください。 - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - エラー: この取引は、額、複雑さ、あるいは最近受け取った資金の使用のために、少なくとも %s の手数料が必要です! + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + ブロックを瞬時に解決することができる特別なチェーンを使用して、リグレッションテストモードに入る。 Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) ウォレットの取引を変更する際にコマンドを実行 (cmd の %s は TxID に置換される) + + In this mode -genproclimit controls how many blocks are generated immediately. + このモードでは -genproclimit は何個のブロックをただちに生成するのか制御します。 + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + スクリプト検証スレッドを設定 (%uから%dの間, 0 = 自動, <0 = たくさんのコアを自由にしておく, 初期値: %d) + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications これはリリース前のテストビルドです - 各自の責任で利用すること - 採掘や商取引に使用しないでください + + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + このコンピュータの %s にバインドすることができません。おそらく Hypercoin Core は既に実行されています。 + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. 警告: -paytxfee が非常に高く設定されています! これは取引を送信する場合に支払う取引手数料です。 @@ -2196,10 +2869,18 @@ rpcpassword=%s Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. 警告: wallet.dat が壊れたのでデータを復旧しました! オリジナルの wallet.dat は wallet.{timestamp}.bak として %s に保存されました; もしもあなたの残高や取引が正しくないならバックアップから復元してください。 + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + 与えられたネットマスクやIPアドレスから接続を行う、ホワイトリストのピア。複数回指定できます。 + (default: 1) (デフォルト: 1) + + <category> can be: + <category>は以下の値を指定できます: + Attempt to recover private keys from a corrupt wallet.dat 壊れた wallet.dat から秘密鍵を復旧することを試す @@ -2212,6 +2893,10 @@ rpcpassword=%s Connect only to the specified node(s) 指定したノードだけに接続 + + Connection options: + 接続オプション: + Corrupted block database detected 破損したブロック データベースが見つかりました @@ -2225,6 +2910,10 @@ rpcpassword=%s Discover own IP address (default: 1 when listening and no -externalip) 自分の IP アドレスを発見 (初期値: リスン中と -externalip を使用していない場合は1) + + Do not load the wallet and disable wallet RPC calls + ウォレットは読み込まず、ウォレットRPCコールを無効化する + Do you want to rebuild the block database now? ブロック データベースを今すぐ再構築しますか? @@ -2249,10 +2938,6 @@ rpcpassword=%s Error: Disk space is low! エラー: ディスク容量不足! - - Error: Wallet locked, unable to create transaction! - エラー: ウォレットはロックされ、取引を作成できません! - Failed to listen on any port. Use -listen=0 if you want this. ポートのリスンに失敗しました。必要であれば -listen=0 を使用してください。 @@ -2261,22 +2946,50 @@ rpcpassword=%s If <category> is not supplied, output all debugging information. <category> が与えられなかった場合には、すべてのデバッグ情報が出力されます。 + + Importing... + インポートしています…… + Incorrect or no genesis block found. Wrong datadir for network? 不正なブロックあるいは、生成されていないブロックが見つかりました。ネットワークの datadir が間違っていませんか? + + Invalid -onion address: '%s' + 無効な -onion アドレス:'%s' + Not enough file descriptors available. 使用可能なファイルディスクリプタが不足しています。 + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + <net> (ipv4, ipv6 または onion) ネットワーク内のノードだけに接続する + Rebuild block chain index from current blk000??.dat files 現在の blk000??.dat ファイルからブロック チェーンのインデックスを再構築 + + Set database cache size in megabytes (%d to %d, default: %d) + データベースのキャッシュサイズをメガバイトで設定 (%dから%d。初期値: %d) + + + Set maximum block size in bytes (default: %d) + 最大ブロックサイズをバイトで設定 (初期値: %d) + Specify wallet file (within data directory) ウォレットのファイルを指定 (データ・ディレクトリの中に) + + This is intended for regression testing tools and app development. + これはリグレッションテストツールやアプリ開発のためのものです。 + + + Use UPnP to map the listening port (default: %u) + リッスンポートの割当に UPnP を使用 (初期値: %u) + Verifying blocks... ブロックの検証中... @@ -2289,6 +3002,10 @@ rpcpassword=%s Wallet %s resides outside data directory %s 財布 %s はデータ・ディレクトリ%sの外にあります + + Wallet options: + ウォレットオプション: + You need to rebuild the database using -reindex to change -txindex -txindex を変更するには -reindex を使用してデータベースを再構築する必要があります @@ -2297,14 +3014,178 @@ rpcpassword=%s Imports blocks from external blk000??.dat file 外部の blk000??.dat ファイルからブロックをインポート + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + 指定したアクセス元からのJSON-RPC接続を許可する。有効な<ip>は、単一のIP (例 1.2.3.4)、ネットワーク/ネットマスク (1.2.3.4/255.255.255.0)、またはネットワーク/CIDR (1.2.3.4/24)です。このオプションは複数回指定できます。 + + + An error occurred while setting up the RPC address %s port %u for listening: %s + リッスンする RPC アドレス %s、ポート %u の設定中にエラーが発生しました: %s + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + 指定されたアドレスおよび、そこに接続を行ってきたホワイトリストのピアに対してバインドを行います。IPv6の場合には [host]:port 表記を使用してください + + + Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) + 指定されたアドレスに対して JSON-RPC 接続をリッスンしするようバインドします。IPv6の場合には [host]:port 表記を使用してください。このオプションは複数回指定することが可能です (初期値: すべてのインターフェースに対してバインドする) + + + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + データ ディレクトリ %s のロックを取得することができません。おそらく Hypercoin Core は実行中です。 + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) + 手数料ゼロのトランザクションのリレー速度を一分間あたり <n>*1000 バイトに常に制限する (初期値: %u) + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + umask 077 ではなく、システムのデフォルトパーミッションで新規ファイルを作成する (ウォレット機能が無効化されていた場合にのみ有効) + + + Error: Listening for incoming connections failed (listen returned error %s) + エラー: 内向きの接続をリッスンするのに失敗しました (エラー %s が返却されました) + + + Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + エラー: サポートされていない引数 -socks が見つかりました。SOCKSバージョンの設定はできないようになりました。SOCKS5プロキシのみがサポートされています。 + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) 関連のアラートをもらってもすごく長いのフォークを見てもコマンドを実行 (コマンドの中にあるの%sはメッセージから置き換えさせる) + + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + 中継の際、この値未満の手数料 (HOT/Kb単位) はゼロであるとみなす (デフォルト: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + トランザクション作成の際、この値未満の手数料 (HOT/Kb単位) はゼロであるとみなす (デフォルト: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + paytxfee が設定されていなかった場合、平均して n ブロック以内にトランザクションが検証され始めるのに十分な手数料を含める (初期値: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + -maxtxfee=<amount> の数量の指定が不正です: '%s' (トランザクションが詰まってしまうのを防ぐため、少なくとも %s の最小中継手数料を指定しなければいけません) + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + 中継および採掘を行う際の、データ運送トランザクションの中のデータの最大サイズ (初期値: %u) + + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + ひとつのウォレットトランザクションで使用する合計手数料の最大値。低く設定し過ぎると大きなトランザクションの生成に失敗することがあります (初期値: %s) + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + 保有するピアアドレスが少ない場合、DNS ルックアップによりピアアドレスを問い合わせる (-connect を使っていない場合の初期値: 1) + + + Require high priority for relaying free or low-fee transactions (default:%u) + 手数料なし、または低手数料のトランザクションのリレー時に高い優先度を要求する (初期値: %u) + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + 最優先/最低手数料の最大サイズをバイトで指定 (初期値: %d) + + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + コイン生成が有効になっていた場合の利用スレッド数を設定する (-1 = すべてのコア, 初期値: %d) + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + この製品はOpenSSLプロジェクトにより開発されたソフトウェアをOpenSSLツールキットとして利用しています <https://www.openssl.org/>。また、Eric Young氏により開発された暗号ソフトウェア、Thomas Bernard氏により書かれたUPnPソフトウェアを用いています。 + + + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + hypercoindを用いる場合や、-server オプションをhypercoin-qtに指定する場合には、設定ファイルにrpcpasswordを設定しなければなりません: +%s +以下のランダムなパスワードを用いることが推奨されます: +rpcuser=hypercoinrpc +rpcpassword=%s +(このパスワードを暗記する必要はありません) +ユーザ名とパスワードは一致してはいけません。 +ファイルが存在しない場合には、所有者のみ読み込み可能なファイルパーミッションでファイルを作成してください。 +またalertnotifyを設定し、問題発生時に通知が行くようにすることをおすすめします; +例: alertnotify=echo %%s | mail -s "Hypercoinアラート" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + 警告: -maxtxfee が非常に高く設定されています!ひとつのトランザクションでこの量の手数料が支払われてしまうことがあります。 + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + 警告: あなたのPCの日付と時刻が正しいことを確認して下さい! もしあなたの時計が正しくなければHypercoin Coreが正確に動作しません。 + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + ホワイトリストのピアはDoSによるアクセス禁止処理が無効化され、トランザクションは例えmempool内に既に存在していたとしても常にリレーされます。これは例えばゲートウェイに対して有用です + + + Accept public REST requests (default: %u) + 公開 REST リクエストを許可する (初期値: %u) + + + Cannot resolve -whitebind address: '%s' + -whitebind アドレス '%s' を解決できません + + + Connect through SOCKS5 proxy + SOCKS5 プロキシ経由で接続する + + + Copyright (C) 2009-%i The Bitcoin Core Developers + Copyright (C) 2009-%i Bitcoin Core 開発者 + + + Could not parse -rpcbind value %s as network address + -rpcbind の値 %s をネットワークアドレスとして解釈できませんでした + + + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + wallet.dat の読み込みに失敗しました: ウォレットの読み込みにはより新しいバージョンの Hypercoin Core が必要です + + + Error reading from database, shutting down. + データベースの読み込みエラー。シャットダウンします。 + + + Error: A fatal internal error occurred, see debug.log for details + エラー:致命的な内部エラーが発生しました。詳細はdebug.logを参照してください + + + Error: Unsupported argument -tor found, use -onion. + エラー: サポートされていない引数 -tor が見つかりました。-onion を使用してください。 + + + Fee (in HOT/kB) to add to transactions you send (default: %s) + 送信するトランザクションに付加する手数料 (HOT/kB単位) (初期値: %s) + Information 情報 + + Initialization sanity check failed. Hypercoin Core is shutting down. + 初期化時の健全性チェックに失敗しました。Hypercoin Coreを終了します。 + + + Invalid amount for -maxtxfee=<amount>: '%s' + -maxtxfee=<amount> に対する無効な数量です: '%s' + Invalid amount for -minrelaytxfee=<amount>: '%s' 不正な額 -minrelaytxfee=<amount>: '%s' @@ -2314,17 +3195,61 @@ rpcpassword=%s 不正な額 -minrelaytxfee=<amount>: '%s' - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - RPC SSL オプション: (SSLのセットアップ手順はビットコインWikiを参照してください) + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + -paytxfee=<amount> に対する無効な数量です: '%s' (少なくとも %s でなければいけません) + + + Invalid netmask specified in -whitelist: '%s' + -whitelist に対する無効なネットマスクです: '%s' + + + Keep at most <n> unconnectable transactions in memory (default: %u) + 最大で <n> 個の孤立したトランザクションをメモリの中に保持する (初期値: %u) + + + Need to specify a port with -whitebind: '%s' + -whitebind を用いてポートを指定する必要があります: '%s' + + + Node relay options: + ノード中継オプション: + + + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + RPC SSL オプション: (SSLのセットアップ手順はライトコインWikiを参照してください) RPC server options: RPCサーバのオプション: + + RPC support for HTTP persistent connections (default: %d) + RPCにおけるHTTPの持続的接続のサポート (初期値: %d) + + + Randomly drop 1 of every <n> network messages + <n> 個のネットワークメッセージごとにひとつをランダムに捨てる + + + Randomly fuzz 1 of every <n> network messages + <n>個のネットワークメッセージごとにひとつをランダムに改変する + + + Receive and display P2P network alerts (default: %u) + P2Pネットワークのアラートの受け取りと表示を行う (デフォルト: %u) + Send trace/debug info to console instead of debug.log file トレース/デバッグ情報を debug.log ファイルの代わりにコンソールへ送る + + Send transactions as zero-fee transactions if possible (default: %u) + 可能な場合には手数料ゼロのトランザクションとしてトランザクションを送信する (初期値: %u) + + + Show all debugging options (usage: --help -help-debug) + すべてのデバッグオプションを表示する (使い方: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) クライアント起動時に debug.log ファイルを縮小 (初期値: -debug オプションを指定しない場合は1) @@ -2333,6 +3258,10 @@ rpcpassword=%s Signing transaction failed 取引の署名に失敗しました + + This is experimental software. + これは実験的なソフトウェアです。 + Transaction amount too small 取引の額が小さ過ぎます @@ -2341,10 +3270,18 @@ rpcpassword=%s Transaction amounts must be positive 取引の額は0より大きくしてください + + Transaction too large for fee policy + 手数料ポリシーに対してトランザクションが大きすぎます + Transaction too large 取引が大き過ぎます + + Unable to bind to %s on this computer (bind returned error %s) + このコンピュータの %s にバインドすることができません (バインドが返したエラーは %s) + Use UPnP to map the listening port (default: 1 when listening) リスン ポートの割当に UPnP を使用 (初期値: リスン中は1) @@ -2353,6 +3290,10 @@ rpcpassword=%s Username for JSON-RPC connections JSON-RPC 接続のユーザー名 + + Wallet needed to be rewritten: restart Hypercoin Core to complete + ウォレットが書き直される必要がありました: 完了するために Hypercoin Core を再起動します + Warning 警告 @@ -2361,6 +3302,22 @@ rpcpassword=%s Warning: This version is obsolete, upgrade required! 警告: このバージョンは古いのでアップグレードが必要です! + + Warning: Unsupported argument -benchmark ignored, use -debug=bench. + 警告: サポートされていない引数 -benchmark は無視されました。-debug=bench を使用してください。 + + + Warning: Unsupported argument -debugnet ignored, use -debug=net. + 警告: サポートされていない引数 -debugnet は無視されました。-debug=net を使用してください。 + + + Zapping all transactions from wallet... + ウォレットからすべてのトランザクションを消去しています... + + + on startup + 起動時 + wallet.dat corrupt, salvage failed wallet.dat が壊れ、復旧に失敗しました @@ -2401,14 +3358,170 @@ rpcpassword=%s Error loading wallet.dat: Wallet corrupted wallet.dat 読み込みエラー: ウォレットが壊れました + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = トランザクションのメタデータ、例えばアカウントの所有者や支払リクエストの内容を保持する, 2 = トランザクションのメタデータを破棄する) + + + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) + <n> メガバイトごとにメモリプールからデータベースのアクティビティをディスクログに書き出す (初期値: %u) + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + -checkblocks のブロックの検証レベル (0-4, 初期値: %u) + + + Log transaction priority and fee per kB when mining blocks (default: %u) + ブロックの採掘時にトランザクションの優先度と1kBあたりの手数料をログに残す (デフォルト: %u) + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + getrawtransaction rpc 呼び出し時に用いる、完全なトランザクションインデックスを保持する (初期値: %u) + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + 不正なピアを再接続するまでの秒数 (初期値: %u) + + + Output debugging information (default: %u, supplying <category> is optional) + デバッグ情報を出力する (初期値: %u, <category> の指定は任意です) + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Tor 秘匿サービスを通し、別々の SOCKS5 プロキシを用いることでピアに到達する (初期値: %s) + + + (default: %s) + (デフォルト: %s) + + + Acceptable ciphers (default: %s) + 受付可能な暗号化方式 (初期値: %s) + + + Always query for peer addresses via DNS lookup (default: %u) + DNS ルックアップを通してピアアドレスを常に問い合わせる (初期値: %u) + + + Disable safemode, override a real safe mode event (default: %u) + セーフモードを無効化し、実際のセーフモードイベントも無効化する (初期値: %u) + Error loading wallet.dat wallet.dat 読み込みエラー + + Force safe mode (default: %u) + セーフモードを強制する (初期値: %u) + + + Generate coins (default: %u) + コインを生成 (初期値: %u) + + + How many blocks to check at startup (default: %u, 0 = all) + 起動時に点検するブロック数 (初期値: %u, 0=すべて) + + + Include IP addresses in debug output (default: %u) + デバッグ出力にIPアドレスを含める (初期値: %u) + Invalid -proxy address: '%s' 無効な -proxy アドレス: '%s' + + Limit size of signature cache to <n> entries (default: %u) + 署名キャッシュのサイズを <n> エントリーに制限する (デフォルト: %u) + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + <port> で JSON-RPC 接続をリスン (初期値: %u、testnet は %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + 接続のリッスンを <port> で行う (初期値: %u、testnet: %u) + + + Maintain at most <n> connections to peers (default: %u) + ピアの接続数を最大でも <n> 個に維持する (初期値: %u) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + 接続毎の最大受信バッファ <n>*1000 バイト (初期値: %u) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + 接続毎の最大送信バッファ <n>*1000 バイト (初期値: %u) + + + Only accept block chain matching built-in checkpoints (default: %u) + 内蔵のチェックポイントと一致するブロック チェーンのみを許可 (初期値: %u) + + + Prepend debug output with timestamp (default: %u) + デバッグ出力にタイムスタンプを付ける (初期値: %u) + + + Relay and mine data carrier transactions (default: %u) + データ運送トランザクションのリレーおよび採掘を行う (初期値: %u) + + + Relay non-P2SH multisig (default: %u) + P2SHでないマルチシグトランザクションをリレーする (初期値: %u) + + + Run a thread to flush wallet periodically (default: %u) + ウォレットを定期的に書き出すためのスレッドを走らせる (初期値: %u) + + + Server certificate file (default: %s) + サーバ証明書ファイル (初期値: %s) + + + Server private key (default: %s) + サーバの秘密鍵 (初期値: %s) + + + Set key pool size to <n> (default: %u) + key pool のサイズを <n> (初期値: %u) にセット + + + Set minimum block size in bytes (default: %u) + 最小ブロックサイズをバイトで設定 (初期値: %u) + + + Set the number of threads to service RPC calls (default: %d) + RPC サービスのスレッド数を設定 (初期値: %d) + + + Sets the DB_PRIVATE flag in the wallet db environment (default: %u) + ウォレットDB環境内にDB_PRIVATEフラグを設定する (デフォルト: %u) + + + Specify configuration file (default: %s) + 設定ファイルの指定 (初期値: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + 接続のタイムアウトをミリセコンドで指定 (最小値: 1, 初期値: %d) + + + Specify pid file (default: %s) + pid ファイルの指定 (初期値: %s) + + + Spend unconfirmed change when sending transactions (default: %u) + トランザクション送信時に未検証のおつりを使用する (デフォルト: %u) + + + Stop running after importing blocks from disk (default: %u) + ディスクからブロックを読み込んだ後に終了する (デフォルト: %u) + + + Threshold for disconnecting misbehaving peers (default: %u) + 不正なピアを切断するためのしきい値 (初期値: %u) + Unknown network specified in -onlynet: '%s' -onlynet で指定された '%s' は未知のネットワークです @@ -2425,10 +3538,6 @@ rpcpassword=%s Invalid amount for -paytxfee=<amount>: '%s' -paytxfee=<amount> の額 '%s' が無効です - - Invalid amount - 無効な総額 - Insufficient funds 残高不足 @@ -2461,13 +3570,9 @@ rpcpassword=%s Done loading 読み込み完了 - - To use the %s option - %s オプションを使うには - Error エラー - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ka.ts b/src/qt/locale/bitcoin_ka.ts index 3faad159adcc0..d7ce8cfd5af18 100644 --- a/src/qt/locale/bitcoin_ka.ts +++ b/src/qt/locale/bitcoin_ka.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - დააკლიკეთ ორჯერ მისამართის ან ნიშნულის შესაცვლელად - Create a new address ახალი მისამართის შექმნა @@ -66,12 +62,12 @@ მიღების მისამართი - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - ეს არის თქვენი Bitcoin-მისამართები გადახდების შესასრულებლად. მონეტების გაგზავნამდე ყოველთვის შეამოწმეთ თანხა და მიმღების მისამართი. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + ეს არის თქვენი Hypercoin-მისამართები გადახდების შესასრულებლად. მონეტების გაგზავნამდე ყოველთვის შეამოწმეთ თანხა და მიმღების მისამართი. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - ეს არის თქვენი Bitcoin-მისამართები გადახდების მისაღებად. რეკომენდებულია ყოველი ტრანსაქციისათვის ახალი მიღების მისამართის გამოყენება. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + ეს არის თქვენი Hypercoin-მისამართები გადახდების მისაღებად. რეკომენდებულია ყოველი ტრანსაქციისათვის ახალი მიღების მისამართის გამოყენება. Copy &Label @@ -160,8 +156,8 @@ დაადასტურეთ საფულის დაშიფრვა - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - ყურადღება: საფულის დაშიფრვის შემდეგ თუ თქვენ დაკარგავთ ფრაზა-პაროლს, <b>ყველა ბიტქოინი დაგეკარგებათ</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + ყურადღება: საფულის დაშიფრვის შემდეგ თუ თქვენ დაკარგავთ ფრაზა-პაროლს, <b>ყველა HYPERCOINS დაგეკარგებათ</b>! Are you sure you wish to encrypt your wallet? @@ -180,8 +176,8 @@ საფულე დაშიფრულია - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - ახლა Bitcoin დაიხურება დაშიფრვის პროცესის დასასრულებლად. გაითვალისწინეთ, რომ დაშიფრვა სრულად ვერ დაიცავს თქვენს ბითქოინებს თქვენს კომპიუტერში შემოპარული მავნე პროგრამების საშუალებით დატაცებისაგან. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + ახლა Hypercoin დაიხურება დაშიფრვის პროცესის დასასრულებლად. გაითვალისწინეთ, რომ დაშიფრვა სრულად ვერ დაიცავს თქვენს hypercoins თქვენს კომპიუტერში შემოპარული მავნე პროგრამების საშუალებით დატაცებისაგან. Wallet encryption failed @@ -295,12 +291,12 @@ დისკზე ბლოკების რეინდექსაცია... - Send coins to a Bitcoin address - მონეტების გაგზავნა Bitcoin-მისამართზე + Send coins to a Hypercoin address + მონეტების გაგზავნა Hypercoin-მისამართზე - Modify configuration options for Bitcoin - Bitcoin-ის საკონფიგურაციო პარამეტრების ცვლილება + Modify configuration options for Hypercoin + Hypercoin-ის საკონფიგურაციო პარამეტრების ცვლილება Backup wallet to another location @@ -323,8 +319,8 @@ &ვერიფიკაცია - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,12 +347,12 @@ თქვენი საფულის პირადი გასაღებების დაშიფრვა - Sign messages with your Bitcoin addresses to prove you own them - მესიჯებზე ხელმოწერა თქვენი Bitcoin-მისამართებით იმის დასტურად, რომ ის თქვენია + Sign messages with your Hypercoin addresses to prove you own them + მესიჯებზე ხელმოწერა თქვენი Hypercoin-მისამართებით იმის დასტურად, რომ ის თქვენია - Verify messages to ensure they were signed with specified Bitcoin addresses - შეამოწმეთ, რომ მესიჯები ხელმოწერილია მითითებული Bitcoin-მისამართით + Verify messages to ensure they were signed with specified Hypercoin addresses + შეამოწმეთ, რომ მესიჯები ხელმოწერილია მითითებული Hypercoin-მისამართით &File @@ -375,16 +371,16 @@ ბარათების პანელი - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - გადახდის მოთხოვნა (შეიქმნება QR-კოდები და bitcoin: ბმულები) + Request payments (generates QR codes and hypercoin: URIs) + გადახდის მოთხოვნა (შეიქმნება QR-კოდები და hypercoin: ბმულები) - &About Bitcoin Core - Bitcoin Core-ს შეს&ახებ + &About Hypercoin Core + Hypercoin Core-ს შეს&ახებ Show the list of used sending addresses and labels @@ -395,16 +391,16 @@ გამოყენებული მიღების მისამართებისა და ნიშნულების სიის ჩვენება - Open a bitcoin: URI or payment request - bitcoin: URI-ის ან გადახდის მოთხოვნის გახსნა + Open a hypercoin: URI or payment request + hypercoin: URI-ის ან გადახდის მოთხოვნის გახსნა &Command-line options საკომანდო სტრიქონის ოპ&ციები - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Bitcoin Core-ს დახმარების ჩვენება Bitcoin-ის საკომანდო სტრიქონის დასაშვები ოპციების სანახავად + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Hypercoin Core-ს დახმარების ჩვენება Hypercoin-ის საკომანდო სტრიქონის დასაშვები ოპციების სანახავად No block source available... @@ -724,8 +720,8 @@ Address: %4 მისამართი "%1" უკვე არის მისამართების წიგნში. - The entered address "%1" is not a valid Bitcoin address. - შეყვანილი მისამართი "%1" არ არის ვალიდური Bitcoin-მისამართი. + The entered address "%1" is not a valid Hypercoin address. + შეყვანილი მისამართი "%1" არ არის ვალიდური Hypercoin-მისამართი. Could not unlock wallet. @@ -762,16 +758,16 @@ Address: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version ვერსია - About Bitcoin Core - Bitcoin Core-ს შესახებ + About Hypercoin Core + Hypercoin Core-ს შესახებ Command-line options @@ -813,12 +809,12 @@ Address: %4 მოგესალმებით - Welcome to Bitcoin Core. - მოგესალმებათ Bitcoin Core. + Welcome to Hypercoin Core. + მოგესალმებათ Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - ეს პროგრამის პირველი გაშვებაა; შეგიძლიათ მიუთითოთ, სად შეინახოს მონაცემები Bitcoin Core-მ. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + ეს პროგრამის პირველი გაშვებაა; შეგიძლიათ მიუთითოთ, სად შეინახოს მონაცემები Hypercoin Core-მ. Use the default data directory @@ -829,8 +825,8 @@ Address: %4 მითითებული კატალოგის გამოყენება: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error @@ -871,11 +867,11 @@ Address: %4 &მთავარი - Automatically start Bitcoin after logging in to the system. - სისტემაში შესვლის შემდეგ Bitcoin-ის ავტომატური გაშვება. + Automatically start Hypercoin after logging in to the system. + სისტემაში შესვლის შემდეგ Hypercoin-ის ავტომატური გაშვება. - &Start Bitcoin on system login + &Start Hypercoin on system login &სისტემაში შესვლისას გაშვება @@ -919,8 +915,8 @@ Address: %4 დაუდასტურებელი ხურდის გამოყენების აკრძალვის შემდეგ მათი გამოყენება შეუძლებელი იქნება, სანამ ტრანსაქციას არ ექნება ერთი დასტური მაინც. ეს აისახება თქვენი ნაშთის დათვლაზეც. - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - როუტერში Bitcoin-კლიენტის პორტის ავტომატური გახსნა. მუშაობს, თუ თქვენს როუტერს ჩართული აქვს UPnP. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + როუტერში Hypercoin-კლიენტის პორტის ავტომატური გახსნა. მუშაობს, თუ თქვენს როუტერს ჩართული აქვს UPnP. Map port using &UPnP @@ -967,8 +963,8 @@ Address: %4 სამომხმარებ&ლო ენა: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - აქ შეგიძლიათ აირჩიოთ სამომხმარებლო ენა. ძალაში შევა Bitcoin-ის რესტარტის შემდეგ. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + აქ შეგიძლიათ აირჩიოთ სამომხმარებლო ენა. ძალაში შევა Hypercoin-ის რესტარტის შემდეგ. &Unit to show amounts in: @@ -1026,8 +1022,8 @@ Address: %4 ფორმა - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - ნაჩვენები ინფორმაცია შეიძლება მოძველებული იყოს. თქვენი საფულე ავტომატურად სინქრონიზდება Bitcoin-ის ქსელთან კავშირის დამყარების შემდეგ, ეს პროცესი ჯერ არ არის დასრულებული. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + ნაჩვენები ინფორმაცია შეიძლება მოძველებული იყოს. თქვენი საფულე ავტომატურად სინქრონიზდება Hypercoin-ის ქსელთან კავშირის დამყარების შემდეგ, ეს პროცესი ჯერ არ არის დასრულებული. Available: @@ -1085,8 +1081,8 @@ Address: %4 გადახდის მოთხოვნის შეცდომა - Cannot start bitcoin: click-to-pay handler - ვერ გაიშვა bitcoin: click-to-pay + Cannot start hypercoin: click-to-pay handler + ვერ გაიშვა hypercoin: click-to-pay Payment request fetch URL is invalid: %1 @@ -1257,16 +1253,16 @@ Address: %4 დახვეწის ლოგ-ფაილი - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - გახსენით Bitcoin-ის დახვეწის ლოგ-ფაილი მიმდინარე კატალოგიდან. დიდი ლოგ-ფაილის შემთხვევაში ამას შეიძლება რამდენიმე წამი მოუნდეს. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + გახსენით Hypercoin-ის დახვეწის ლოგ-ფაილი მიმდინარე კატალოგიდან. დიდი ლოგ-ფაილის შემთხვევაში ამას შეიძლება რამდენიმე წამი მოუნდეს. Clear console კონსოლის გასუფთავება - Welcome to the Bitcoin RPC console. - მოგესალმებათ Bitcoin-ის RPC კონსოლი. + Welcome to the Hypercoin RPC console. + მოგესალმებათ Hypercoin-ის RPC კონსოლი. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1316,8 +1312,8 @@ Address: %4 ად&რე გამოყენებული მიღების მისამართის გამოყენება (არ არის რეკომენდებული) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - არააუცილებელი მესიჯი, რომელიც ერთვის გადახდის მოთხოვნას და ნაჩვენები იქნება მოთხოვნის გახსნისას. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + არააუცილებელი მესიჯი, რომელიც ერთვის გადახდის მოთხოვნას და ნაჩვენები იქნება მოთხოვნის გახსნისას. შენიშვნა: მესიჯი არ გაყვება გადახდას Hypercoin ქსელში. An optional label to associate with the new receiving address. @@ -1584,10 +1580,6 @@ Address: %4 Copy change ხურდის კოპირება - - Total Amount %1 (= %2) - ჯამური თანხა %1 (= %2) - or ან @@ -1617,8 +1609,8 @@ Address: %4 ტრანსაქცია უარყოფილია! შესაძლოა მონეტების ნაწილი თქვენი საფულიდან უკვე გამოყენებულია, რაც შეიძლება მოხდეს wallet.dat-ის ასლის გამოყენებისას, როცა მონეტები გაიგზავნა სხვა ასლიდან, აქ კი არ არის გაგზავნილად მონიშნული. - Warning: Invalid Bitcoin address - ყურადღება: არასწორია Bitcoin-მისამართი + Warning: Invalid Hypercoin address + ყურადღება: არასწორია Hypercoin-მისამართი (no label) @@ -1692,8 +1684,8 @@ Address: %4 შეიყვანეთ ამ მისამართის ნიშნული გამოყენებული მისამართების სიაში დასამატებლად - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - მესიჯი, რომელიც თან ერთვის მონეტებს: URI, რომელიც შეინახება ტრანსაქციასთან ერთად თქვენთვის. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + მესიჯი, რომელიც თან ერთვის მონეტებს: URI, რომელიც შეინახება ტრანსაქციასთან ერთად თქვენთვის. შენიშვნა: მესიჯი არ გაყვება გადახდას hypercoin ქსელში. This is an unverified payment request. @@ -1711,8 +1703,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core იხურება... + Hypercoin Core is shutting down... + Hypercoin Core იხურება... Do not shut down the computer until this window disappears. @@ -1762,7 +1754,7 @@ Address: %4 მიმდინარე ხელმოწერის კოპირება კლიპბორდში - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address მოაწერეთ ხელი იმის დასადასტურებლად, რომ ეს მისამართი თქვენია @@ -1786,8 +1778,8 @@ Address: %4 შეიყვანეთ ხელმოწერის მისამართი, მესიჯი (დაუკვირდით, რომ ზუსტად იყოს კოპირებული სტრიქონის გადატანები, ჰარები, ტაბულაციები და სხვ) და ხელმოწერა მესიჯის ვერიფიკაციისათვის. მიაქციეთ ყურადღება, რომ რაიმე ზედმეტი არ გაგყვეთ კოპირებისას, რათა არ გახდეთ "man-in-the-middle" შეტევის ობიექტი. - Verify the message to ensure it was signed with the specified Bitcoin address - შეამოწმეთ, რომ მესიჯი ხელმოწერილია მითითებული Bitcoin-მისამართით + Verify the message to ensure it was signed with the specified Hypercoin address + შეამოწმეთ, რომ მესიჯი ხელმოწერილია მითითებული Hypercoin-მისამართით Verify &Message @@ -1853,8 +1845,8 @@ Address: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2330,30 +2322,6 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) გარედან შეერთებების დაშვება (ნაგულისხმევი: 1 თუ არ გამოიყენება -proxy ან -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, მიუთითეთ rpcpassword საკონფიგურაციო ფაილში: -%s -რეკომენდებულია შემდეგი შემთხვევითი პაროლი: -rpcuser=bitcoinrpc -rpcpassword=%s -(ამის დამახსოვრება არ გჭირდებათ) -სახელი და პაროლი ერთმანეთს არ უნდა ემთხვეოდეს. -თუ ფაილი არ არსებობს, შექმენით იგი უფლებებით owner-readable-only. -ასევე რეკომენდებულია დააყენოთ alertnotify რათა მიიღოთ შეტყობინებები პრობლემების შესახებ; -მაგალითად: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 მოცემულ მისამართზე მიჯაჭვა მუდმივად მასზე მიყურადებით. გამოიყენეთ [host]:port ფორმა IPv6-სათვის @@ -2362,14 +2330,6 @@ rpcpassword=%s Enter regression test mode, which uses a special chain in which blocks can be solved instantly. გადასვლა რეგრესული ტესტირების რეჟიმში, რომელიც იყენებს სპეციალურ ჯაჭვს ბლოკების დაუყოვნებლივი პოვნის შესაძლებლობით. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - შეცდომა: ტრანსაქცია უარყოფილია! შესაძლოა მონეტების ნაწილი თქვენი საფულიდან უკვე გამოყენებულია, რაც შეიძლება მოხდეს wallet.dat-ის ასლის გამოყენებისას, როცა მონეტები გაიგზავნა სხვა ასლიდან, აქ კი არ არის გაგზავნილად მონიშნული. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - შეცდომა: ტრანსაქცია მოითხოვს საკომისიოს მინიმუმ %s რაოდენობის, სირთულის ან ბოლოს მიღებული თანხების შესაბამისად! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) კომანდის შესრულება საფულის ტრანსაქციის ცვლილებისას (%s კომანდაში ჩანაცვლდება TxID-ით) @@ -2450,10 +2410,6 @@ rpcpassword=%s Error: Disk space is low! შეცდომა: დისზე არ არის ადგილი! - - Error: Wallet locked, unable to create transaction! - შეცდომა: საფულე დაბლოკილია, ტრანსაქცია ვერ შეიქმნება! - Failed to listen on any port. Use -listen=0 if you want this. ვერ ხერხდება პორტების მიყურადება. თუ გსურთ, გამოიყენეთ -listen=0. @@ -2642,10 +2598,6 @@ rpcpassword=%s Invalid amount for -paytxfee=<amount>: '%s' დაუშვებელი მნიშვნელობა -paytxfee=<amount>: '%s' - - Invalid amount - დაუშვებელი თანხა - Insufficient funds არ არის საკმარისი თანხა @@ -2678,10 +2630,6 @@ rpcpassword=%s Done loading ჩატვირთვა დასრულებულია - - To use the %s option - %s ოპციის გამოსაყენებლად - Error შეცდომა diff --git a/src/qt/locale/bitcoin_kk_KZ.ts b/src/qt/locale/bitcoin_kk_KZ.ts index 5a39417a7ae61..28e93285503ca 100644 --- a/src/qt/locale/bitcoin_kk_KZ.ts +++ b/src/qt/locale/bitcoin_kk_KZ.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Адресті немесе белгіні өзгерту үшін екі рет шертіңіз - Create a new address Жаңа адрес енгізу @@ -111,8 +107,8 @@ Құпия сөзді өзгерту - Bitcoin - Биткоин + Hypercoin + Hypercoin Wallet diff --git a/src/qt/locale/bitcoin_ko_KR.ts b/src/qt/locale/bitcoin_ko_KR.ts index efc41ec6b708a..b764d69d595e9 100644 --- a/src/qt/locale/bitcoin_ko_KR.ts +++ b/src/qt/locale/bitcoin_ko_KR.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - 지갑 주소나 이름을 수정하려면 더블클릭하세요. + Right-click to edit address or label + 지갑 주소나 이름을 수정하려면 우클릭하세요. Create a new address @@ -66,12 +66,12 @@ 받은 주소들 - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - 비트코인을 받는 계좌 주소입니다. 코인을 보내기 전에 잔고와 받는 주소를 항상 확인하세요. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + 라이트코인을 받는 계좌 주소입니다. 코인을 보내기 전에 잔고와 받는 주소를 항상 확인하세요. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - 비트코인을 받을 수 있는 계좌 주소입니다. 매 거래마다 새로운 주소 사용을 권장합니다. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + 라이트코인을 받을 수 있는 계좌 주소입니다. 매 거래마다 새로운 주소 사용을 권장합니다. Copy &Label @@ -93,7 +93,11 @@ Exporting Failed 내보내기 실패 - + + There was an error trying to save the address list to %1. Please try again. + %1으로 주소 리스트를 저장하는 동안 오류가 발생했습니다. 다시 시도해주세요. + + AddressTableModel @@ -160,8 +164,8 @@ 지갑의 암호화를 확정 - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - 경고: 만약 암호화된 지갑의 비밀번호를 잃어버릴 경우, 모든 비트코인들을 잃어버릴 수 있습니다! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + 경고: 만약 암호화된 지갑의 비밀번호를 잃어버릴 경우, 모든 라이트코인들을 잃어버릴 수 있습니다! Are you sure you wish to encrypt your wallet? @@ -180,8 +184,8 @@ 지갑 암호화 완료 - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 암호화 처리 과정을 끝내기 위해 비트코인을 종료합니다. 지갑 암호화는 컴퓨터로의 멀웨어 감염으로 인한 비트코인 도난을 완전히 방지할 수 없음을 기억하세요. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + 암호화 처리 과정을 끝내기 위해 라이트코인을 종료합니다. 지갑 암호화는 컴퓨터로의 멀웨어 감염으로 인한 라이트코인 도난을 완전히 방지할 수 없음을 기억하세요. Wallet encryption failed @@ -287,8 +291,8 @@ URI&열기... - Bitcoin Core client - 비트코인 코어 클라이언트 + Hypercoin Core client + 라이트코인 코어 클라이언트 Importing blocks from disk... @@ -299,12 +303,12 @@ 디스크에서 블록 다시 색인중... - Send coins to a Bitcoin address - 비트코인 주소로 코인 전송 + Send coins to a Hypercoin address + 라이트코인 주소로 코인 전송 - Modify configuration options for Bitcoin - 비트코인 설정 옵션 수정 + Modify configuration options for Hypercoin + 라이트코인 설정 옵션 수정 Backup wallet to another location @@ -327,8 +331,8 @@ 메시지 확인&... - Bitcoin - 비트코인 + Hypercoin + 라이트코인 Wallet @@ -343,8 +347,8 @@ 받기(&R) - Show information about Bitcoin Core - 비트코인 코어에 관한 정보입니다. + Show information about Hypercoin Core + 라이트코인 코어에 관한 정보입니다. &Show / Hide @@ -359,12 +363,12 @@ 소유 지갑 개인키 암호화 - Sign messages with your Bitcoin addresses to prove you own them - 지갑 주소가 본인 소유인지 증명하기 위해 비트코인 주소에 서명할 수 있습니다. + Sign messages with your Hypercoin addresses to prove you own them + 지갑 주소가 본인 소유인지 증명하기 위해 라이트코인 주소에 서명할 수 있습니다. - Verify messages to ensure they were signed with specified Bitcoin addresses - 비트코인 주소의 전자 서명 확인을 위해 첨부된 메시지가 있을 경우 이를 검증할 수 있습니다. + Verify messages to ensure they were signed with specified Hypercoin addresses + 라이트코인 주소의 전자 서명 확인을 위해 첨부된 메시지가 있을 경우 이를 검증할 수 있습니다. &File @@ -383,16 +387,16 @@ 툴바 색인표 - Bitcoin Core - 비트코인 코어 + Hypercoin Core + 라이트코인 코어 - Request payments (generates QR codes and bitcoin: URIs) - 지불 요청하기 (QR코드와 비트코인이 생성됩니다: URIs) + Request payments (generates QR codes and hypercoin: URIs) + 지불 요청하기 (QR코드와 라이트코인이 생성됩니다: URIs) - &About Bitcoin Core - &비트코인 코어 소개 + &About Hypercoin Core + &라이트코인 코어 소개 Show the list of used sending addresses and labels @@ -403,16 +407,20 @@ 한번 이상 사용된 받는 주소와 주소 제목의 목록을 보여줍니다. - Open a bitcoin: URI or payment request - 비트코인: URI 또는 지불요청 열기 + Open a hypercoin: URI or payment request + 라이트코인: URI 또는 지불요청 열기 &Command-line options 명령어-라인 옵션 - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - 사용할 수 있는 비트코인 명령어 옵션 목록을 가져오기 위해 Bitcoin-Qt 도움말 메시지를 표시합니다. + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + 사용할 수 있는 라이트코인 명령어 옵션 목록을 가져오기 위해 Hypercoin-Qt 도움말 메시지를 표시합니다. + + + %n active connection(s) to Hypercoin network + 비트코인 네트워크와 %n 개의 활성연결 No block source available... @@ -434,6 +442,10 @@ %1 and %2 %1 그리고 %2 + + %n year(s) + %n 년 + %1 behind %1 뒤에 @@ -462,6 +474,10 @@ Up to date 현재까지 + + Processed %n blocks of transaction history. + %n 블록의 거래 기록들이 처리됨. + Catching up... 블록 따라잡기... @@ -504,6 +520,10 @@ Address: %4 CoinControlDialog + + Coin Selection + 코인 선택 + Quantity: 수량: @@ -586,11 +606,11 @@ Address: %4 Lock unspent - 비트코인이 사용되지 않은 주소를 잠금 처리합니다. + 라이트코인이 사용되지 않은 주소를 잠금 처리합니다. Unlock unspent - 비트코인이 사용되지 않은 주소를 잠금 해제합니다. + 라이트코인이 사용되지 않은 주소를 잠금 해제합니다. Copy quantity @@ -728,8 +748,8 @@ Address: %4 입력된 주소는"%1" 이미 주소록에 있습니다. - The entered address "%1" is not a valid Bitcoin address. - 입력한 "%1" 주소는 올바른 비트코인 주소가 아닙니다. + The entered address "%1" is not a valid Hypercoin address. + 입력한 "%1" 주소는 올바른 라이트코인 주소가 아닙니다. Could not unlock wallet. @@ -766,8 +786,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - 비트코인 코어 + Hypercoin Core + 라이트코인 코어 version @@ -778,8 +798,8 @@ Address: %4 (%1-비트) - About Bitcoin Core - 비트코인 코어 소개 + About Hypercoin Core + 라이트코인 코어 소개 Command-line options @@ -825,16 +845,16 @@ Address: %4 환영합니다 - Welcome to Bitcoin Core. - 비트코인 코어에 오신것을 환영합니. + Welcome to Hypercoin Core. + 라이트코인 코어에 오신것을 환영합니. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - 프로그램이 처음으로 실행되고 있습니다. 비트코인 코어가 어디에 데이터를 저장할지 선택할 수 있습니다. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + 프로그램이 처음으로 실행되고 있습니다. 라이트코인 코어가 어디에 데이터를 저장할지 선택할 수 있습니다. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - 비트코인 코어가 블럭체인의 복사본을 다운로드 저장합니다. 적어도 %1GB의 데이터가 이 폴더에 저장되며 시간이 경과할수록 점차 증가합니다. 그리고 지갑 또한 이 폴더에 저장됩니다. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + 라이트코인 코어가 블럭체인의 복사본을 다운로드 저장합니다. 적어도 %1GB의 데이터가 이 폴더에 저장되며 시간이 경과할수록 점차 증가합니다. 그리고 지갑 또한 이 폴더에 저장됩니다. Use the default data directory @@ -845,14 +865,22 @@ Address: %4 커스텀 데이터 폴더 사용: - Bitcoin Core - 비트코인 코어 + Hypercoin Core + 라이트코인 코어 Error 오류 - + + %n GB of free space available + %n GB가 사용가능 + + + (of %n GB needed) + (%n GB가 필요) + + OpenURIDialog @@ -887,12 +915,12 @@ Address: %4 메인(&M) - Automatically start Bitcoin after logging in to the system. - 시스템 로그인후에 비트코인을 자동으로 시작합니다. + Automatically start Hypercoin after logging in to the system. + 시스템 로그인후에 라이트코인을 자동으로 시작합니다. - &Start Bitcoin on system login - 시스템 로그인시 비트코인 시작(&S) + &Start Hypercoin on system login + 시스템 로그인시 라이트코인 시작(&S) Size of &database cache @@ -955,13 +983,21 @@ Address: %4 &확인되지 않은 돈을 쓰다 - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - 라우터의 비트코인 클라이언트 포트를 자동으로 엽니다. 라우터에서 UPnP를 지원하고 활성화 했을 경우에만 동작합니다. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + 라우터의 라이트코인 클라이언트 포트를 자동으로 엽니다. 라우터에서 UPnP를 지원하고 활성화 했을 경우에만 동작합니다. Map port using &UPnP 사용중인 UPnP 포트 매핑(&U) + + Connect to the Hypercoin network through a SOCKS5 proxy. + SOCKS5 프록시를 통해 비트코인 네트워크 연결 + + + &Connect through SOCKS5 proxy (default proxy): + SOCKS5 프록시를 거쳐 연결합니다 (기본값 프록시): + Proxy &IP: 프록시 IP(&I): @@ -1003,8 +1039,8 @@ Address: %4 사용자 인터페이스 언어(&L): - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - 사용자 인터페이스 언어를 여기서 설정할 수 있습니다. 이 설정은 비트코인을 다시 시작할때 적용됩니다. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + 사용자 인터페이스 언어를 여기서 설정할 수 있습니다. 이 설정은 라이트코인을 다시 시작할때 적용됩니다. &Unit to show amounts in: @@ -1062,8 +1098,8 @@ Address: %4 유형 - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - 표시한 정보가 오래된 것 같습니다. 비트코인 네트워크에 연결하고 난 다음에 지갑을 자동으로 동기화 하지만, 아직 과정이 끝나지는 않았습니다. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + 표시한 정보가 오래된 것 같습니다. 라이트코인 네트워크에 연결하고 난 다음에 지갑을 자동으로 동기화 하지만, 아직 과정이 끝나지는 않았습니다. Watch-only: @@ -1129,8 +1165,8 @@ Address: %4 지불 요청 애러 - Cannot start bitcoin: click-to-pay handler - 비트코인을 시작할 수 없습니다: 지급제어기를 클릭하시오 + Cannot start hypercoin: click-to-pay handler + 라이트코인을 시작할 수 없습니다: 지급제어기를 클릭하시오 Payment request fetch URL is invalid: %1 @@ -1174,6 +1210,10 @@ Address: %4 Amount 거래량 + + Enter a Hypercoin address (e.g. %1) + 비트코인 주소를 입력하기 (예. %1) + N/A 없음 @@ -1293,16 +1333,16 @@ Address: %4 로그 파일 디버그 - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - 비트코인 디버그 로그파일을 현재 데이터 폴더에서 여십시요. 용량이 큰 로그 파일들은 몇 초가 걸릴 수 있습니다. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + 라이트코인 디버그 로그파일을 현재 데이터 폴더에서 여십시요. 용량이 큰 로그 파일들은 몇 초가 걸릴 수 있습니다. Clear console 콘솔 초기화 - Welcome to the Bitcoin RPC console. - 비트코인 RPC 콘솔에 오신걸 환영합니다 + Welcome to the Hypercoin RPC console. + 라이트코인 RPC 콘솔에 오신걸 환영합니다 Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1592,10 +1632,6 @@ Address: %4 Copy priority 우선도 복사 - - Total Amount %1 (= %2) - 총 액수 %1(=%2) - or 또는 @@ -1629,8 +1665,8 @@ Address: %4 거래가 거부되었습니다. 몇몇 코인들이 지갑에서 이미 사용된 경우, 예를 들어 코인을 이미 사용한 wallet.dat를 복사해서 사용한 경우 지금 지갑에 기록이 안되있어 이런 일이 생길 수 있습니다. - Warning: Invalid Bitcoin address - 경고: 잘못된 비트코인주소입니다 + Warning: Invalid Hypercoin address + 경고: 잘못된 라이트코인주소입니다 (no label) @@ -1704,8 +1740,8 @@ Address: %4 사용된 주소 목록에 새 주소를 추가하기 위해 제목을 입력합니다. - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - 비트코인에 첨부된 메시지: 참고용으로 거래와 함께 저장될 URI. 메모: 이 메시지는 비트코인 네트워크로 전송되지 않습니다. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + 라이트코인에 첨부된 메시지: 참고용으로 거래와 함께 저장될 URI. 메모: 이 메시지는 라이트코인 네트워크로 전송되지 않습니다. This is an unverified payment request. @@ -1723,8 +1759,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - 비트코인코어가 닫아지고 있습니다 + Hypercoin Core is shutting down... + 라이트코인코어가 닫아지고 있습니다 Do not shut down the computer until this window disappears. @@ -1774,8 +1810,8 @@ Address: %4 현재 서명을 시스템 클립보드에 복사 - Sign the message to prove you own this Bitcoin address - 여러분의 비트코인 주소를 증명하려면 메시지 서명하십시오 + Sign the message to prove you own this Hypercoin address + 여러분의 라이트코인 주소를 증명하려면 메시지 서명하십시오 Sign &Message @@ -1798,8 +1834,8 @@ Address: %4 메시지를 검증하기 위해 아래 칸에 각각 지갑 주소와 메시지, 전자서명을 입력하세요. (메시지 원본의 띄어쓰기, 들여쓰기, 행 나눔 등이 정확하게 입력되어야 하므로 원본을 복사해서 입력하세요) 이 기능은 메시지 검증이 주 목적이며, 네트워크 침입자에 의해 변조되지 않도록 전자서명 해독에 불필요한 시간을 소모하지 마세요. - Verify the message to ensure it was signed with the specified Bitcoin address - 정확한 비트코인주소가 입력됬는지 메시지를 확인하시오 + Verify the message to ensure it was signed with the specified Hypercoin address + 정확한 라이트코인주소가 입력됬는지 메시지를 확인하시오 Verify &Message @@ -1865,12 +1901,12 @@ Address: %4 SplashScreen - Bitcoin Core - 비트코인 코어 + Hypercoin Core + 라이트코인 코어 The Bitcoin Core developers - 비트코인코어 개발자들 + 비트코인 개발자들 [testnet] @@ -1976,7 +2012,7 @@ Address: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - 신규 채굴된 코인이 사용되기 위해서는 %1 개의 블럭이 경과되어야 합니다. 블럭을 생성할 때 블럭체인에 추가되도록 네트워크에 전파되는 과정을 거치는데, 블럭체인에 포함되지 못하고 실패한다면 해당 블럭의 상태는 '미승인'으로 표현되고 비트코인 또한 사용될 수 없습니다. 이 현상은 다른 노드가 비슷한 시간대에 동시에 블럭을 생성할 때 종종 발생할 수 있습니다. + 신규 채굴된 코인이 사용되기 위해서는 %1 개의 블럭이 경과되어야 합니다. 블럭을 생성할 때 블럭체인에 추가되도록 네트워크에 전파되는 과정을 거치는데, 블럭체인에 포함되지 못하고 실패한다면 해당 블럭의 상태는 '미승인'으로 표현되고 라이트코인 또한 사용될 수 없습니다. 이 현상은 다른 노드가 비슷한 시간대에 동시에 블럭을 생성할 때 종종 발생할 수 있습니다. Debug information @@ -2346,16 +2382,6 @@ Address: %4 Bind to given address and always listen on it. Use [host]:port notation for IPv6 선택된 주소로 고정하며 항상 리슨(Listen)합니다. IPv6 프로토콜인 경우 [host]:port 방식의 명령어 표기법을 사용합니다. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - 에러: 거래가 거부되었습니다! 이런 일이 생길 수 있습니다 만약 몇개의 코인들을 지갑에서 이미 사용했다면요, 예를 들어 만약 당신이 wallet.dat를 복사해서 사용했거나 코인들을 사용 후에 복사했다면 여기선 표시가 안되서 사용할 수 없습니다 - --번역은 했으나 약간 이상한점이 있어서 수정해야함- - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - 오류 : 해당 거래는 송금액, 다중 거래, 최근 수령한 금액의 사용 등의 이유로 최소 %s 이상의 송금 수수료가 필요합니다. - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) 지갑 거래가 바뀌면 명령을 실행합니다.(%s 안의 명령어가 TxID로 바뀝니다) @@ -2374,7 +2400,7 @@ Address: %4 Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - 경고: 현재 비트코인 버전이 다른 네트워크 참여자들과 동일하지 않는 것 같습니다. 당신 또는 다른 참여자들이 동일한 비트코인 버전으로 업그레이드 할 필요가 있습니다. + 경고: 현재 라이트코인 버전이 다른 네트워크 참여자들과 동일하지 않는 것 같습니다. 당신 또는 다른 참여자들이 동일한 라이트코인 버전으로 업그레이드 할 필요가 있습니다. Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. @@ -2440,10 +2466,6 @@ Address: %4 Error: Disk space is low! 오류: 디스크 공간이 부족합니다! - - Error: Wallet locked, unable to create transaction! - 오류: 지갑이 잠금상태여서 거래를 생성할 수 없습니다! - Failed to listen on any port. Use -listen=0 if you want this. 어떤 포트도 반응하지 않습니다. 사용자 반응=0 만약 원한다면 @@ -2509,8 +2531,8 @@ Address: %4 외부 blk000??.dat 파일에서 블록을 가져옵니다. - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - 데이터 디렉토리 %s에 락을 걸 수 없었습니다. 비트코인 코어가 이미 실행 중인 것으로 보입니다. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + 데이터 디렉토리 %s에 락을 걸 수 없었습니다. 라이트코인 코어가 이미 실행 중인 것으로 보입니다. Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) @@ -2533,12 +2555,8 @@ Address: %4 최저 거래 수수료가 부족합니다. -mintxfee=<amount>: '%s' - Print block on startup, if found in block index - 블럭 색인을 발견하면 구동 시 블럭을 출력합니다. - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - RPC SSL 옵션: (비트코인 위키의 SSL 설정 설명서 참고) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + RPC SSL 옵션: (라이트코인 위키의 SSL 설정 설명서 참고) RPC server options: @@ -2664,10 +2682,6 @@ Address: %4 Invalid amount for -paytxfee=<amount>: '%s' -paytxfee=<amount>에 대한 양이 잘못되었습니다: '%s' - - Invalid amount - 효력없는 금액 - Insufficient funds 자금 부족 @@ -2700,13 +2714,9 @@ Address: %4 Done loading 로딩 완료 - - To use the %s option - %s 옵션을 사용하려면 - Error 오류 - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ky.ts b/src/qt/locale/bitcoin_ky.ts index ed7542261cb2e..c1994f192c3dc 100644 --- a/src/qt/locale/bitcoin_ky.ts +++ b/src/qt/locale/bitcoin_ky.ts @@ -1,4 +1,4 @@ - + AddressBookPage @@ -35,8 +35,8 @@ Билдирүүнү &текшерүү... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet diff --git a/src/qt/locale/bitcoin_la.ts b/src/qt/locale/bitcoin_la.ts index c399f36159359..df24dca08214b 100644 --- a/src/qt/locale/bitcoin_la.ts +++ b/src/qt/locale/bitcoin_la.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Dupliciter-clicca ut inscriptionem vel titulum mutes - Create a new address Crea novam inscriptionem @@ -34,7 +30,7 @@ &Dele - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. Hae sunt inscriptiones mittendi pensitationes. Semper inspice quantitatem et inscriptionem accipiendi antequam nummos mittis. @@ -116,8 +112,8 @@ Confirma cifrationem cassidilis - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Monitio: Si cassidile tuum cifras et tesseram amittis, tu <b>AMITTES OMNES TUOS NUMMOS BITOS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Monitio: Si cassidile tuum cifras et tesseram amittis, tu <b>AMITTES OMNES TUOS NUMMOS HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -136,8 +132,8 @@ Cassidile cifratum - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin iam desinet ut finiat actionem cifrandi. Memento cassidile cifrare non posse cuncte curare ne tui nummi clepantur ab malis programatibus in tuo computatro. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin iam desinet ut finiat actionem cifrandi. Memento cassidile cifrare non posse cuncte curare ne tui nummi clepantur ab malis programatibus in tuo computatro. Wallet encryption failed @@ -235,12 +231,12 @@ Recreans indicem frustorum in disco... - Send coins to a Bitcoin address - Mitte nummos ad inscriptionem Bitcoin + Send coins to a Hypercoin address + Mitte nummos ad inscriptionem Hypercoin - Modify configuration options for Bitcoin - Muta configurationis optiones pro Bitcoin + Modify configuration options for Hypercoin + Muta configurationis optiones pro Hypercoin Backup wallet to another location @@ -263,8 +259,8 @@ &Verifica nuntium... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -291,12 +287,12 @@ Cifra claves privatas quae cassidili tui sunt - Sign messages with your Bitcoin addresses to prove you own them - Signa nuntios cum tuis inscriptionibus Bitcoin ut demonstres te eas possidere + Sign messages with your Hypercoin addresses to prove you own them + Signa nuntios cum tuis inscriptionibus Hypercoin ut demonstres te eas possidere - Verify messages to ensure they were signed with specified Bitcoin addresses - Verifica nuntios ut certus sis eos signatos esse cum specificatis inscriptionibus Bitcoin + Verify messages to ensure they were signed with specified Hypercoin addresses + Verifica nuntios ut certus sis eos signatos esse cum specificatis inscriptionibus Hypercoin &File @@ -315,12 +311,12 @@ Tabella instrumentorum "Tabs" - Bitcoin Core - Bitcoin Nucleus + Hypercoin Core + Hypercoin Nucleus - %n active connection(s) to Bitcoin network - %n activa conexio ad rete Bitcoin%n activae conexiones ad rete Bitcoin + %n active connection(s) to Hypercoin network + %n activa conexio ad rete Hypercoin%n activae conexiones ad rete Hypercoin No block source available... @@ -480,8 +476,8 @@ Inscriptio: %4 Inserta inscriptio "%1" iam in libro inscriptionum est. - The entered address "%1" is not a valid Bitcoin address. - Inscriptio inserta "%1" non valida inscriptio Bitcoin est. + The entered address "%1" is not a valid Hypercoin address. + Inscriptio inserta "%1" non valida inscriptio Hypercoin est. Could not unlock wallet. @@ -498,8 +494,8 @@ Inscriptio: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Nucleus + Hypercoin Core + Hypercoin Nucleus version @@ -537,8 +533,8 @@ Inscriptio: %4 Intro - Bitcoin Core - Bitcoin Nucleus + Hypercoin Core + Hypercoin Nucleus Error @@ -559,12 +555,12 @@ Inscriptio: %4 &Princeps - Automatically start Bitcoin after logging in to the system. - Pelle Bitcoin per se postquam in systema inire. + Automatically start Hypercoin after logging in to the system. + Pelle Hypercoin per se postquam in systema inire. - &Start Bitcoin on system login - &Pelle Bitcoin cum inire systema + &Start Hypercoin on system login + &Pelle Hypercoin cum inire systema Reset all client options to default. @@ -579,8 +575,8 @@ Inscriptio: %4 &Rete - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Aperi per se portam clientis Bitcoin in itineratore. Hoc tantum effectivum est si itineratrum tuum supportat UPnP et id activum est. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Aperi per se portam clientis Hypercoin in itineratore. Hoc tantum effectivum est si itineratrum tuum supportat UPnP et id activum est. Map port using &UPnP @@ -627,8 +623,8 @@ Inscriptio: %4 &Lingua monstranda utenti: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Lingua monstranda utenti hic constitui potest. Haec configuratio effectiva erit postquam Bitcoin iterum initiatum erit. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Lingua monstranda utenti hic constitui potest. Haec configuratio effectiva erit postquam Hypercoin iterum initiatum erit. &Unit to show amounts in: @@ -666,8 +662,8 @@ Inscriptio: %4 Schema - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Monstrata informatio fortasse non recentissima est. Tuum cassidile per se synchronizat cum rete Bitcoin postquam conexio constabilita est, sed hoc actio nondum perfecta est. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Monstrata informatio fortasse non recentissima est. Tuum cassidile per se synchronizat cum rete Hypercoin postquam conexio constabilita est, sed hoc actio nondum perfecta est. Immature: @@ -689,8 +685,8 @@ Inscriptio: %4 Tractatio URI - Cannot start bitcoin: click-to-pay handler - Bitcoin incipere non potest: cliccare-ad-pensandum handler + Cannot start hypercoin: click-to-pay handler + Hypercoin incipere non potest: cliccare-ad-pensandum handler @@ -777,16 +773,16 @@ Inscriptio: %4 Debug catalogi plica - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Aperi plicam catalogi de Bitcoin debug ex activo indice datorum. Hoc possit pauca secunda pro plicis magnis catalogi. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Aperi plicam catalogi de Hypercoin debug ex activo indice datorum. Hoc possit pauca secunda pro plicis magnis catalogi. Clear console Vacuefac terminale - Welcome to the Bitcoin RPC console. - Bene ventio in terminale RPC de Bitcoin. + Welcome to the Hypercoin RPC console. + Bene ventio in terminale RPC de Hypercoin. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1006,8 +1002,8 @@ Inscriptio: %4 Copia signationem in latibulum systematis - Sign the message to prove you own this Bitcoin address - Signa nuntium ut demonstres hanc inscriptionem Bitcoin a te possessa esse + Sign the message to prove you own this Hypercoin address + Signa nuntium ut demonstres hanc inscriptionem Hypercoin a te possessa esse Sign &Message @@ -1030,8 +1026,8 @@ Inscriptio: %4 Insere inscriptionem signantem, nuntium (cura ut copias intermissiones linearum, spatia, tabs, et cetera exacte) et signationem infra ut nuntium verifices. Cautus esto ne magis legas in signationem quam in nuntio signato ipso est, ut vites falli ab impetu homo-in-medio. - Verify the message to ensure it was signed with the specified Bitcoin address - Verifica nuntium ut cures signatum esse cum specifica inscriptione Bitcoin + Verify the message to ensure it was signed with the specified Hypercoin address + Verifica nuntium ut cures signatum esse cum specifica inscriptione Hypercoin Verify &Message @@ -1097,8 +1093,8 @@ Inscriptio: %4 SplashScreen - Bitcoin Core - Bitcoin Nucleus + Hypercoin Core + Hypercoin Nucleus [testnet] @@ -1514,42 +1510,10 @@ Inscriptio: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Accipe conexiones externas (praedefinitum: 1 nisi -proxy neque -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, necesse est te rpcpassword constituere in plica configurationis: -%s -Hortatur te hanc fortuitam tesseram uti: -rpcuser=bitcoinrpc -rpcpassword=%s -(non est necesse te hanc tesseram meminisse) -Nomen usoris et tessera eadem esse NON POSSUNT. -Si plica non existit, eam crea cum permissionibus ut eius dominus tantum sinitur id legere. -Quoque hortatur alertnotify constituere ut tu notificetur de problematibus; -exempli gratia: alertnotify=echo %%s | mail -s "Bitcoin Notificatio" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Conglutina ad inscriptionem datam et semper in eam ausculta. Utere [moderatrum]:porta notationem pro IPv6 - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Error: Transactio eiecta est! Hoc possit accidere si alii nummorum in cassidili tuo iam soluti sint, ut si usus es exemplar de wallet.dat et nummi soluti sunt in exemplari sed non hic notati ut soluti. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Error: Huic transactioni necesse est merces saltem %s propter eius magnitudinem, complexitatem, vel usum recentum acceptorum nummorum! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Facere mandatum quotiescumque cassidilis transactio mutet (%s in mandato sbstituitur ab TxID) @@ -1614,10 +1578,6 @@ exempli gratia: alertnotify=echo %%s | mail -s "Bitcoin Notificatio" admin@foo.c Error: Disk space is low! Error: Inopia spatii disci! - - Error: Wallet locked, unable to create transaction! - Error: Cassidile seratum, non posse transactionem creare! - Failed to listen on any port. Use -listen=0 if you want this. Non potuisse auscultare in ulla porta. Utere -listen=0 si hoc vis. @@ -1758,10 +1718,6 @@ exempli gratia: alertnotify=echo %%s | mail -s "Bitcoin Notificatio" admin@foo.c Invalid amount for -paytxfee=<amount>: '%s' Quantitas non valida pro -paytxfee=<quantitas>: '%s' - - Invalid amount - Quantitas non valida - Insufficient funds Inopia nummorum @@ -1794,10 +1750,6 @@ exempli gratia: alertnotify=echo %%s | mail -s "Bitcoin Notificatio" admin@foo.c Done loading Completo lengendi - - To use the %s option - Ut utaris optione %s - Error Error diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitcoin_lt.ts index 1f70400df61af..104f122cf4e93 100644 --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitcoin_lt.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Spragtelėkite, kad pakeistumėte adresą arba žymę + Right-click to edit address or label + Spustelėkite dešinįjį klaviša norint keisti adresą arba etiketę Create a new address @@ -29,6 +29,10 @@ &Copy Address &Kopijuoti adresą + + Delete the currently selected address from the list + Ištrinti pasirinktą adresą iš sąrašo + &Export &Eksportuoti @@ -37,6 +41,10 @@ &Delete &Trinti + + Choose the address to send coins to + Pasirinkite adresą kuriam siūsite monetas + C&hoose P&asirinkti @@ -140,8 +148,8 @@ Patvirtinkite piniginės užšifravimą - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Dėmesio: jei užšifruosite savo piniginę ir pamesite slaptafrazę, jūs<b>PRARASITE VISUS SAVO BITCOINUS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Dėmesio: jei užšifruosite savo piniginę ir pamesite slaptafrazę, jūs<b>PRARASITE VISUS SAVO HYPERCOINUS</b>! Are you sure you wish to encrypt your wallet? @@ -156,8 +164,8 @@ Piniginė užšifruota - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin dabar užsidarys šifravimo proceso pabaigai. Atminkite, kad piniginės šifravimas negali pilnai apsaugoti bitcoinų vagysčių kai tinkle esančios kenkėjiškos programos patenka į jūsų kompiuterį. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin dabar užsidarys šifravimo proceso pabaigai. Atminkite, kad piniginės šifravimas negali pilnai apsaugoti hypercoinų vagysčių kai tinkle esančios kenkėjiškos programos patenka į jūsų kompiuterį. Wallet encryption failed @@ -259,8 +267,12 @@ &Gaunami adresai... - Bitcoin Core client - Bitcoin Core klientas + Open &URI... + Atidaryti &URI... + + + Hypercoin Core client + Hypercoin Core klientas Importing blocks from disk... @@ -271,12 +283,12 @@ Blokai iš naujo indeksuojami... - Send coins to a Bitcoin address - Siųsti monetas Bitcoin adresui + Send coins to a Hypercoin address + Siųsti monetas Hypercoin adresui - Modify configuration options for Bitcoin - Keisti bitcoin konfigūracijos galimybes + Modify configuration options for Hypercoin + Keisti hypercoin konfigūracijos galimybes Backup wallet to another location @@ -299,8 +311,8 @@ &Tikrinti žinutę... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -315,8 +327,8 @@ &Gauti - Show information about Bitcoin Core - Rodyti informaciją apie Bitcoin Core + Show information about Hypercoin Core + Rodyti informaciją apie Hypercoin Core &Show / Hide @@ -347,16 +359,16 @@ Kortelių įrankinė - Bitcoin Core - Bitcoin branduolys + Hypercoin Core + Hypercoin branduolys - &About Bitcoin Core - &Apie Bitcoin Core + &About Hypercoin Core + &Apie Hypercoin Core - %n active connection(s) to Bitcoin network - %n Bitcoin tinklo aktyvus ryšys%n Bitcoin tinklo aktyvūs ryšiai%n Bitcoin tinklo aktyvūs ryšiai + %n active connection(s) to Hypercoin network + %n Hypercoin tinklo aktyvus ryšys%n Hypercoin tinklo aktyvūs ryšiai%n Hypercoin tinklo aktyvūs ryšiai %n hour(s) @@ -431,6 +443,10 @@ Adresas: %4 CoinControlDialog + + Coin Selection + Monetų pasirinkimas + Quantity: Kiekis: @@ -611,8 +627,8 @@ Adresas: %4 Įvestas adresas „%1“ jau yra adresų knygelėje. - The entered address "%1" is not a valid Bitcoin address. - Įvestas adresas „%1“ nėra galiojantis Bitcoin adresas. + The entered address "%1" is not a valid Hypercoin address. + Įvestas adresas „%1“ nėra galiojantis Hypercoin adresas. Could not unlock wallet. @@ -633,16 +649,16 @@ Adresas: %4 HelpMessageDialog - Bitcoin Core - Bitcoin branduolys + Hypercoin Core + Hypercoin branduolys version versija - About Bitcoin Core - Apie Bitcoin Core + About Hypercoin Core + Apie Hypercoin Core Command-line options @@ -676,12 +692,12 @@ Adresas: %4 Sveiki - Welcome to Bitcoin Core. - Sveiki atvykę į Bitcoin Core. + Welcome to Hypercoin Core. + Sveiki atvykę į Hypercoin Core. - Bitcoin Core - Bitcoin branduolys + Hypercoin Core + Hypercoin branduolys Error @@ -702,20 +718,20 @@ Adresas: %4 &Pagrindinės - Automatically start Bitcoin after logging in to the system. + Automatically start Hypercoin after logging in to the system. Automatiškai paleisti Bitkoin programą įjungus sistemą. - &Start Bitcoin on system login - &Paleisti Bitcoin programą su window sistemos paleidimu + &Start Hypercoin on system login + &Paleisti Hypercoin programą su window sistemos paleidimu &Network &Tinklas - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Automatiškai atidaryti Bitcoin kliento prievadą maršrutizatoriuje. Tai veikia tik tada, kai jūsų maršrutizatorius palaiko UPnP ir ji įjungta. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automatiškai atidaryti Hypercoin kliento prievadą maršrutizatoriuje. Tai veikia tik tada, kai jūsų maršrutizatorius palaiko UPnP ir ji įjungta. Map port using &UPnP @@ -762,8 +778,8 @@ Adresas: %4 Naudotojo sąsajos &kalba: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Čia gali būti nustatyta naudotojo sąsajos kalba. Šis nustatymas įsigalios iš naujo paleidus Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Čia gali būti nustatyta naudotojo sąsajos kalba. Šis nustatymas įsigalios iš naujo paleidus Hypercoin. &Unit to show amounts in: @@ -789,6 +805,10 @@ Adresas: %4 none niekas + + Confirm options reset + Patvirtinti nustatymų atstatymą + The supplied proxy address is invalid. Nurodytas tarpinio serverio adresas negalioja. @@ -800,6 +820,14 @@ Adresas: %4 Form Forma + + Available: + Galimi: + + + Pending: + Laukiantys: + Immature: Nepribrendę: @@ -823,6 +851,10 @@ Adresas: %4 URI handling URI apdorojimas + + Payment request rejected + Mokėjimo siuntimas atmestas + Network request error Tinklo užklausos klaida @@ -899,6 +931,26 @@ Adresas: %4 Current number of blocks Dabartinis blokų skaičius + + Received + Gauta + + + Direction + Kryptis + + + Version + Versija + + + Bytes Sent + Nusiųsti baitai + + + Bytes Received + Gauti baitai + Last block time Paskutinio bloko laikas @@ -928,8 +980,8 @@ Adresas: %4 Išvalyti konsolę - Welcome to the Bitcoin RPC console. - Sveiki atvykę į Bitcoin RPC konsolę. + Welcome to the Hypercoin RPC console. + Sveiki atvykę į Hypercoin RPC konsolę. %1 B @@ -947,6 +999,10 @@ Adresas: %4 %1 GB %1 GB + + never + Niekada + ReceiveCoinsDialog @@ -954,6 +1010,10 @@ Adresas: %4 &Label: Ž&ymė: + + Clear + Išvalyti + Copy label Kopijuoti žymę @@ -1189,7 +1249,7 @@ Adresas: %4 Įveskite pranešimą, kurį norite pasirašyti čia - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address Registruotis žinute įrodymuii, kad turite šį adresą @@ -1205,8 +1265,8 @@ Adresas: %4 &Patikrinti žinutę - Verify the message to ensure it was signed with the specified Bitcoin address - Patikrinkite žinutę, jog įsitikintumėte, kad ją pasirašė nurodytas Bitcoin adresas + Verify the message to ensure it was signed with the specified Hypercoin address + Patikrinkite žinutę, jog įsitikintumėte, kad ją pasirašė nurodytas Hypercoin adresas Click "Sign Message" to generate signature @@ -1256,8 +1316,8 @@ Adresas: %4 SplashScreen - Bitcoin Core - Bitcoin branduolys + Hypercoin Core + Hypercoin branduolys [testnet] @@ -1733,10 +1793,6 @@ Adresas: %4 Invalid amount for -paytxfee=<amount>: '%s' Neteisinga suma -paytxfee=<amount>: '%s' - - Invalid amount - Neteisinga suma - Insufficient funds Nepakanka lėšų diff --git a/src/qt/locale/bitcoin_lv_LV.ts b/src/qt/locale/bitcoin_lv_LV.ts index ac5a1a1396cd3..41b9186b5b1d7 100644 --- a/src/qt/locale/bitcoin_lv_LV.ts +++ b/src/qt/locale/bitcoin_lv_LV.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Adresi vai nosaukumu rediģē ar dubultklikšķi - Create a new address Izveidot jaunu adresi @@ -47,11 +43,11 @@ Choose the address to send coins to - Izvēlies adresi uz kuru sūtīt bitcoins + Izvēlies adresi uz kuru sūtīt hypercoins Choose the address to receive coins with - Izvēlies adresi ar kuru saņemt bitcoins + Izvēlies adresi ar kuru saņemt hypercoins C&hoose @@ -65,6 +61,14 @@ Receiving addresses Saņemšanas adreses + + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Šīs ir jūsu Hypercoin adreses maksājumu sūtīšanai. Vienmēr pārbaudiet summu un saņēmēja adresi pirms monētu sūtīšanas. + + + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Šīs ir jūsu Hypercoin adreses maksājumu saņemšanai. Ir ieteicams katram darījumam izmantot jaunu saņemšanas adresi. + Copy &Label Kopēt &Nosaukumu @@ -85,7 +89,11 @@ Exporting Failed Eksportēšana Neizdevās - + + There was an error trying to save the address list to %1. Please try again. + Radās kļūda, saglabājot adrešu sarakstu %1. Lūdzu, mēģiniet vēlreiz! + + AddressTableModel @@ -152,13 +160,17 @@ Apstiprināt maciņa šifrēšanu - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Brīdinājums: Ja tu nošifrē savu maciņu un pazaudē paroli, tu <b>PAZAUDĒSI VISAS SAVAS BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Brīdinājums: Ja tu nošifrē savu maciņu un pazaudē paroli, tu <b>PAZAUDĒSI VISAS SAVAS HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? Vai tu tiešām vēlies šifrēt savu maciņu? + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + SVARĪGI: Iepriekšējie maka faila dublējumi ir jāaizvieto ar jauno, šifrēto maka failu. Drošības apsvērumu dēļ iepriekšējie nešifrētā maka dublējumi vairs nebūs derīgi, tiklīdz sāksiet izmantot jauno, šifrēto maku. + Warning: The Caps Lock key is on! Brīdinājums: Caps Lock ir ieslēgts! @@ -168,8 +180,8 @@ Maciņš nošifrēts - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin aizvērsies, lai pabeigtu šifrēšanu. Atcerieties, ka maciņa šifrēšana nevar pilnībā novērst bitkoinu zādzību, ko veic datorā ieviesušās kaitīgas programmas. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin aizvērsies, lai pabeigtu šifrēšanu. Atcerieties, ka maciņa šifrēšana nevar pilnībā novērst hypercoins zādzību, ko veic datorā ieviesušās kaitīgas programmas. Wallet encryption failed @@ -275,8 +287,8 @@ Atvērt &URI... - Bitcoin Core client - Bitcoin Core klients + Hypercoin Core client + Hypercoin Core klients Importing blocks from disk... @@ -287,12 +299,12 @@ Bloku reindeksēšana no diska... - Send coins to a Bitcoin address - Nosūtīt bitkoinus uz Bitcoin adresi + Send coins to a Hypercoin address + Nosūtīt hypercoins uz Hypercoin adresi - Modify configuration options for Bitcoin - Mainīt Bitcoin konfigurācijas uzstādījumus + Modify configuration options for Hypercoin + Mainīt Hypercoin konfigurācijas uzstādījumus Backup wallet to another location @@ -315,8 +327,8 @@ &Pārbaudīt ziņojumu... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -331,8 +343,8 @@ &Saņemt - Show information about Bitcoin Core - Parādīt informāciju par Bitcoin Core + Show information about Hypercoin Core + Parādīt informāciju par Hypercoin Core &Show / Hide @@ -347,12 +359,12 @@ Šifrēt privātās atslēgas kuras pieder tavam maciņam - Sign messages with your Bitcoin addresses to prove you own them - Parakstīt ziņojumus ar savām Bitcoin adresēm lai pierādītu ka tās pieder tev + Sign messages with your Hypercoin addresses to prove you own them + Parakstīt ziņojumus ar savām Hypercoin adresēm lai pierādītu ka tās pieder tev - Verify messages to ensure they were signed with specified Bitcoin addresses - Pārbaudīt ziņojumus lai pārliecinātos, ka tie tika parakstīti ar norādītajām Bitcoin adresēm + Verify messages to ensure they were signed with specified Hypercoin addresses + Pārbaudīt ziņojumus lai pārliecinātos, ka tie tika parakstīti ar norādītajām Hypercoin adresēm &File @@ -371,28 +383,28 @@ Ciļņu rīkjosla - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Pieprasīt maksājumus (izveido QR kodu un bitcoin: URIs) + Request payments (generates QR codes and hypercoin: URIs) + Pieprasīt maksājumus (izveido QR kodu un hypercoin: URIs) - &About Bitcoin Core - Par &Bitcoin Core + &About Hypercoin Core + Par &Hypercoin Core - Open a bitcoin: URI or payment request - Atvērt bitcoin URI vai maksājuma pieprasījumu + Open a hypercoin: URI or payment request + Atvērt hypercoin URI vai maksājuma pieprasījumu &Command-line options &Komandrindas iespējas - %n active connection(s) to Bitcoin network - %n aktīvu savienojumu ar Bitcoin tīklu%n aktīvs savienojums ar Bitcoin tīklu%n aktīvu savienojumu as Bitcoin tīklu + %n active connection(s) to Hypercoin network + %n aktīvu savienojumu ar Hypercoin tīklu%n aktīvs savienojums ar Hypercoin tīklu%n aktīvu savienojumu as Hypercoin tīklu No block source available... @@ -692,8 +704,8 @@ Adrese: %4 Nupat ierakstītā adrese "%1" jau atrodas adrešu grāmatā. - The entered address "%1" is not a valid Bitcoin address. - Ierakstītā adrese "%1" nav derīga Bitcoin adrese. + The entered address "%1" is not a valid Hypercoin address. + Ierakstītā adrese "%1" nav derīga Hypercoin adrese. Could not unlock wallet. @@ -726,8 +738,8 @@ Adrese: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -738,8 +750,8 @@ Adrese: %4 (%1-biti) - About Bitcoin Core - Par Bitcoin Core + About Hypercoin Core + Par Hypercoin Core Usage: @@ -773,8 +785,8 @@ Adrese: %4 Sveiciens - Welcome to Bitcoin Core. - Sveicināts Bitcoin Core + Welcome to Hypercoin Core. + Sveicināts Hypercoin Core Use the default data directory @@ -785,8 +797,8 @@ Adrese: %4 Izmantot pielāgotu datu mapi: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error @@ -827,12 +839,12 @@ Adrese: %4 &Galvenais - Automatically start Bitcoin after logging in to the system. - Automātiski sākt Bitcoin pēc pieteikšanās sistēmā. + Automatically start Hypercoin after logging in to the system. + Automātiski sākt Hypercoin pēc pieteikšanās sistēmā. - &Start Bitcoin on system login - &Sākt Bitcoin reizē ar sistēmu + &Start Hypercoin on system login + &Sākt Hypercoin reizē ar sistēmu Size of &database cache @@ -880,15 +892,15 @@ Adrese: %4 Enable coin &control features - Ieslēgt bitcoin &kontroles funkcijas + Ieslēgt hypercoin &kontroles funkcijas &Spend unconfirmed change &Tērēt neapstiprinātu atlikumu - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Uz rūtera automātiski atvērt Bitcoin klienta portu. Tas strādā tikai tad, ja rūteris atbalsta UPnP un tas ir ieslēgts. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Uz rūtera automātiski atvērt Hypercoin klienta portu. Tas strādā tikai tad, ja rūteris atbalsta UPnP un tas ir ieslēgts. Map port using &UPnP @@ -935,8 +947,8 @@ Adrese: %4 Lietotāja interfeiss un &valoda: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Šeit var iestatīt lietotāja valodu. Iestatījums aktivizēsies pēc Bitcoin pārstartēšanas. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Šeit var iestatīt lietotāja valodu. Iestatījums aktivizēsies pēc Hypercoin pārstartēšanas. &Unit to show amounts in: @@ -944,11 +956,11 @@ Adrese: %4 Choose the default subdivision unit to show in the interface and when sending coins. - Izvēlēties dalījuma vienību pēc noklusēšanas, ko izmantot interfeisā un nosūtot bitkoinus. + Izvēlēties dalījuma vienību pēc noklusēšanas, ko izmantot interfeisā un nosūtot hypercoins. Whether to show coin control features or not. - Vai rādīt Bitcoin kontroles funkcijas vai nē. + Vai rādīt Hypercoin kontroles funkcijas vai nē. &OK @@ -986,8 +998,8 @@ Adrese: %4 Forma - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Attēlotā informācija var būt novecojusi. Jūsu maciņš pēc savienojuma izveides automātiski sinhronizējas ar Bitcoin tīklu, taču šis process vēl nav beidzies. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Attēlotā informācija var būt novecojusi. Jūsu maciņš pēc savienojuma izveides automātiski sinhronizējas ar Hypercoin tīklu, taču šis process vēl nav beidzies. Available: @@ -1037,8 +1049,8 @@ Adrese: %4 Maksājumu pieprasījuma kļūda - Cannot start bitcoin: click-to-pay handler - Nevar palaist Bitcoin: nospied-lai-maksātu apstrādātāju + Cannot start hypercoin: click-to-pay handler + Nevar palaist Hypercoin: nospied-lai-maksātu apstrādātāju Refund from %1 @@ -1193,8 +1205,8 @@ Adrese: %4 Notīrīt konsoli - Welcome to the Bitcoin RPC console. - Laipni lūgti Bitcoin RPC konsolē. + Welcome to the Hypercoin RPC console. + Laipni lūgti Hypercoin RPC konsolē. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1374,11 +1386,11 @@ Adrese: %4 SendCoinsDialog Send Coins - Sūtīt bitkoinus + Sūtīt Hypercoins Coin Control Features - Bitcoin Kontroles Funkcijas + Hypercoin Kontroles Funkcijas Inputs... @@ -1454,7 +1466,7 @@ Adrese: %4 Confirm send coins - Apstiprināt bitkoinu sūtīšanu + Apstiprināt hypercoin sūtīšanu %1 to %2 @@ -1488,10 +1500,6 @@ Adrese: %4 Copy change Kopēt atlikumu - - Total Amount %1 (= %2) - Kopējā Summa %1 (= %2) - or vai @@ -1521,8 +1529,8 @@ Adrese: %4 Transakcijas izveidošana neizdevās! - Warning: Invalid Bitcoin address - Brīdinājums: Nederīga Bitcoin adrese + Warning: Invalid Hypercoin address + Brīdinājums: Nederīga Hypercoin adrese (no label) @@ -1603,8 +1611,8 @@ Adrese: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core tiek izslēgta... + Hypercoin Core is shutting down... + Hypercoin Core tiek izslēgta... Do not shut down the computer until this window disappears. @@ -1650,8 +1658,8 @@ Adrese: %4 Kopēt parakstu uz sistēmas starpliktuvi - Sign the message to prove you own this Bitcoin address - Parakstīt ziņojumu lai pierādītu, ka esi šīs Bitcoin adreses īpašnieks. + Sign the message to prove you own this Hypercoin address + Parakstīt ziņojumu lai pierādītu, ka esi šīs Hypercoin adreses īpašnieks. Sign &Message @@ -1733,8 +1741,8 @@ Adrese: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2130,7 +2138,7 @@ Adrese: %4 WalletModel Send Coins - Sūtīt Bitkoinus + Sūtīt Hypercoins @@ -2234,10 +2242,6 @@ Adrese: %4 Error: Disk space is low! Kļūda: Zema diska vieta! - - Error: Wallet locked, unable to create transaction! - Kļūda: Maciņš ir aizslēgts, nevar izveidot transakciju! - If <category> is not supplied, output all debugging information. Ja <category> nav norādīta, izvadīt visu atkļūdošanas informāciju. @@ -2370,13 +2374,9 @@ Adrese: %4 Invalid amount for -paytxfee=<amount>: '%s' Nederīgs daudzums priekš -paytxfree=<amount>: '%s' - - Invalid amount - Nederīgs daudzums - Insufficient funds - Nepietiek bitkoinu + Nepietiek hypercoins Loading block index... @@ -2406,10 +2406,6 @@ Adrese: %4 Done loading Ielāde pabeigta - - To use the %s option - Izmantot opciju %s - Error Kļūda diff --git a/src/qt/locale/bitcoin_mn.ts b/src/qt/locale/bitcoin_mn.ts index f1b0174111d75..319c5ebe15418 100644 --- a/src/qt/locale/bitcoin_mn.ts +++ b/src/qt/locale/bitcoin_mn.ts @@ -1,26 +1,74 @@ - + AddressBookPage - - Double-click to edit address or label - Хаяг эсвэл шошгыг ѳѳрчлѳхийн тулд хоёр удаа дар - Create a new address Шинэ хаяг нээх + + &New + &Шинэ + Copy the currently selected address to the system clipboard Одоогоор сонгогдсон байгаа хаягуудыг сануулах + + &Copy + &Хуулах + + + C&lose + &Хаах + &Copy Address Хаягийг &Хуулбарлах + + Delete the currently selected address from the list + Одоо сонгогдсон байгаа хаягуудыг жагсаалтаас устгах + + + Export the data in the current tab to a file + Сонгогдсон таб дээрхи дата-г экспортлох + + + &Export + &Экспортдлох + &Delete &Устгах + + Choose the address to send coins to + Зооснуудыг илгээх хаягийг сонгоно уу + + + Choose the address to receive coins with + Зооснуудыг хүлээн авах хаягийг сонгоно уу + + + C&hoose + С&онго + + + Sending addresses + Илгээх хаягууд + + + Receiving addresses + Хүлээн авах хаяг + + + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Эдгээр Hypercoin хаягууд нь илгээх хаягууд. Хүлээн авах хаяг болон тоо хэмжээг илгээхээсээ өмнө сайн нягталж үзэж байна уу + + + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Эдгээр Hypercoin хаягууд нь хүлээн авах хаягууд. Гүйлгээ болгонд шинээр хаяг үүсгэхийг бид санал болгож байна. + Copy &Label &Шошгыг хуулбарлах @@ -29,6 +77,10 @@ &Edit &Ѳѳрчлѳх + + Export Address List + Экспорт хийх хаягуудын жагсаалт + Comma separated file (*.csv) Таслалаар тусгаарлагдсан хүснэгтэн файл (.csv) @@ -100,8 +152,8 @@ Түрүйвч цоожлогдлоо - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Цоожлолтын процесыг дуусгахын тулд Биткойн одоо хаагдана. Ѳѳрийн түрүйвчийг цоожлох нь таны биткойнуудыг компьютерийн вирус хулгайлахаас бүрэн сэргийлж чадахгүй гэдгийг санаарай. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Цоожлолтын процесыг дуусгахын тулд Hypercoin одоо хаагдана. Ѳѳрийн түрүйвчийг цоожлох нь таны hypercoinsуудыг компьютерийн вирус хулгайлахаас бүрэн сэргийлж чадахгүй гэдгийг санаарай. Wallet encryption failed @@ -195,8 +247,8 @@ Оношилгоо ба засварын консолыг онгойлго - Bitcoin - Биткойн + Hypercoin + Hypercoin Wallet @@ -219,8 +271,8 @@ &Тусламж - %n active connection(s) to Bitcoin network - Биткойны сүлжээрүү %n идэвхитэй холболт байна Биткойны сүлжээрүү %n идэвхитэй холболтууд байна + %n active connection(s) to Hypercoin network + Hypercoinы сүлжээрүү %n идэвхитэй холболт байна Hypercoinы сүлжээрүү %n идэвхитэй холболтууд байна %n hour(s) @@ -639,10 +691,6 @@ Address: %4 Copy change Ѳѳрчлѳлтийг санах - - Total Amount %1 (= %2) - Нийт дүн %1 (= %2) - or эсвэл @@ -660,8 +708,8 @@ Address: %4 Гүйлгээний тѳлбѳр %1-ийг тооцхоор нийт дүн нь таны балансаас хэтрээд байна. - Warning: Invalid Bitcoin address - Анхаар:Буруу Биткойны хаяг байна + Warning: Invalid Hypercoin address + Анхаар:Буруу Hypercoinы хаяг байна (no label) @@ -706,8 +754,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - Биткойны цѳм хаагдаж байна... + Hypercoin Core is shutting down... + Hypercoinы цѳм хаагдаж байна... Do not shut down the computer until this window disappears. @@ -1006,6 +1054,14 @@ Address: %4 WalletView + + &Export + &Экспортдлох + + + Export the data in the current tab to a file + Сонгогдсон таб дээрхи дата-г экспортлох + bitcoin-core @@ -1037,10 +1093,6 @@ Address: %4 Invalid -proxy address: '%s' Эдгээр прокси хаягнууд буруу байна: '%s' - - Invalid amount - Буруу хэмжээ - Insufficient funds Таны дансны үлдэгдэл хүрэлцэхгүй байна @@ -1065,10 +1117,6 @@ Address: %4 Done loading Ачааллаж дууслаа - - To use the %s option - %s сонголтыг ашиглахын тулд - Error Алдаа diff --git a/src/qt/locale/bitcoin_ms_MY.ts b/src/qt/locale/bitcoin_ms_MY.ts index d2e8efbb49931..e7a5a64f4630d 100644 --- a/src/qt/locale/bitcoin_ms_MY.ts +++ b/src/qt/locale/bitcoin_ms_MY.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Klik dua kali untuk mengubah alamat atau label - Create a new address Cipta alamat baru diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index bdde3da534760..5a2556bcabbb7 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -1,13 +1,13 @@ - + AddressBookPage - Double-click to edit address or label - Dobbelklikk for å redigere adresse eller merkelapp + Right-click to edit address or label + Høyreklikk for å redigere adressen eller merkelappen Create a new address - Lag en ny adresse + Opprett en ny addresse &New @@ -66,12 +66,12 @@ Mottaksadresser - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Dette er dine Bitcoin-adresser for å sende betalinger. Alltid sjekk beløp og mottakeradresse før sending av mynter. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Dette er dine Hypercoin-adresser for å sende betalinger. Alltid sjekk beløp og mottakeradresse før sending av mynter. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Dette er dine Bitcoin-adresser for å sende betalinger. Det er anbefalt å bruk en ny mottaksadresse for hver transaksjon. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Dette er dine Hypercoin-adresser for å sende betalinger. Det er anbefalt å bruk en ny mottaksadresse for hver transaksjon. Copy &Label @@ -91,7 +91,7 @@ Exporting Failed - Ekport Feilet + Eksportering feilet There was an error trying to save the address list to %1. Please try again. @@ -164,8 +164,8 @@ Bekreft kryptering av lommebok - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Advarsel: Hvis du krypterer lommeboken og mister adgangsfrasen, så vil du <b>MISTE ALLE DINE BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Advarsel: Hvis du krypterer lommeboken og mister adgangsfrasen, så vil du <b>MISTE ALLE DINE HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Oppgi adgangsfrasen til lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>ti eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine bitcoins fra å bli stjålet om skadevare infiserer datamaskinen. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine hypercoins fra å bli stjålet om skadevare infiserer datamaskinen. Wallet encryption failed @@ -295,8 +295,8 @@ Åpne &URI... - Bitcoin Core client - Bitcoin Core-klient + Hypercoin Core client + Hypercoin Core-klient Importing blocks from disk... @@ -307,12 +307,12 @@ Reindekserer blokker på harddisk... - Send coins to a Bitcoin address - Send til en Bitcoin-adresse + Send coins to a Hypercoin address + Send til en Hypercoin-adresse - Modify configuration options for Bitcoin - Endre oppsett for Bitcoin + Modify configuration options for Hypercoin + Endre oppsett for Hypercoin Backup wallet to another location @@ -335,8 +335,8 @@ &Verifiser melding... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Motta - Show information about Bitcoin Core - Vis informasjon om Bitcoin Core + Show information about Hypercoin Core + Vis informasjon om Hypercoin Core &Show / Hide @@ -367,12 +367,12 @@ Krypter de private nøklene som tilhører lommeboken din - Sign messages with your Bitcoin addresses to prove you own them - Signer en melding med Bitcoin-adressene dine for å bevise at du eier dem + Sign messages with your Hypercoin addresses to prove you own them + Signer en melding med Hypercoin-adressene dine for å bevise at du eier dem - Verify messages to ensure they were signed with specified Bitcoin addresses - Bekreft meldinger for å være sikker på at de ble signert av en angitt Bitcoin-adresse + Verify messages to ensure they were signed with specified Hypercoin addresses + Bekreft meldinger for å være sikker på at de ble signert av en angitt Hypercoin-adresse &File @@ -391,16 +391,16 @@ Verktøylinje for faner - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Forespør betalinger (genererer QR-koder og bitcoin: URIer) + Request payments (generates QR codes and hypercoin: URIs) + Forespør betalinger (genererer QR-koder og hypercoin: URIer) - &About Bitcoin Core - &Om Bitcoin Core + &About Hypercoin Core + &Om Hypercoin Core Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Vis listen over bruke mottaksadresser og merkelapper - Open a bitcoin: URI or payment request - Åpne en Bitcoin: URI eller betalingsetterspørring + Open a hypercoin: URI or payment request + Åpne en Hypercoin: URI eller betalingsetterspørring &Command-line options &Kommandolinjevalg - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Vis Bitcoin Core hjelpemeldingen for å få en liste med mulige kommandolinjevalg + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Vis Hypercoin Core hjelpemeldingen for å få en liste med mulige kommandolinjevalg - %n active connection(s) to Bitcoin network - %n aktiv forbindelse til Bitcoin-nettverket%n aktive forbindelser til Bitcoin-nettverket + %n active connection(s) to Hypercoin network + %n aktiv forbindelse til Hypercoin-nettverket%n aktive forbindelser til Hypercoin-nettverket No block source available... @@ -476,7 +476,7 @@ Up to date - Ajour + Oppdatert Processed %n blocks of transaction history. @@ -484,7 +484,7 @@ Catching up... - Kommer ajour... + Laster ned... Sent transaction @@ -508,7 +508,7 @@ Adresse: %4 Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Lommeboken er <b>kryptert</b> og for tiden <b>ulåst</b> + Lommeboken er <b>kryptert</b> og for tiden <b>låst opp</b> Wallet is <b>encrypted</b> and currently <b>locked</b> @@ -554,7 +554,7 @@ Adresse: %4 After Fee: - Etter Gebyr: + Totalt: Change: @@ -562,15 +562,15 @@ Adresse: %4 (un)select all - velg (fjern) alt + velg (fjern) alle Tree mode - Tremodus + Trevisning List mode - Listemodus + Listevisning Amount @@ -634,7 +634,7 @@ Adresse: %4 Copy after fee - Kopier fra gebyr + Kopier totalt Copy bytes @@ -788,8 +788,8 @@ Adresse: %4 Den oppgitte adressen "%1" er allerede i adresseboken. - The entered address "%1" is not a valid Bitcoin address. - Den angitte adressed "%1" er ikke en gyldig Bitcoin-adresse. + The entered address "%1" is not a valid Hypercoin address. + Den angitte adressed "%1" er ikke en gyldig Hypercoin-adresse. Could not unlock wallet. @@ -826,8 +826,8 @@ Adresse: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -838,8 +838,8 @@ Adresse: %4 (%1-bit) - About Bitcoin Core - Om Bitcoin Core + About Hypercoin Core + Om Hypercoin Core Command-line options @@ -885,16 +885,16 @@ Adresse: %4 Velkommen - Welcome to Bitcoin Core. - Velkommen til Bitcoin Core. + Welcome to Hypercoin Core. + Velkommen til Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Siden dette er første gang programmet starter, kan du nå velge hvor Bitcoin Core skal lagre sine data. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Siden dette er første gang programmet starter, kan du nå velge hvor Hypercoin Core skal lagre sine data. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core vil laste ned og lagre en kopi av Bitcoin sin blokkjede. Minst %1GB av data vil bli lagret i denne mappen, og det vil vokse over tid. Lommeboken vil også bli lagret i denne mappen. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core vil laste ned og lagre en kopi av Hypercoin sin blokkjede. Minst %1GB av data vil bli lagret i denne mappen, og det vil vokse over tid. Lommeboken vil også bli lagret i denne mappen. Use the default data directory @@ -905,8 +905,8 @@ Adresse: %4 Bruk en egendefinert datamappe: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. @@ -959,12 +959,12 @@ Adresse: %4 &Hoved - Automatically start Bitcoin after logging in to the system. - Start Bitcoin automatisk etter innlogging. + Automatically start Hypercoin after logging in to the system. + Start Hypercoin automatisk etter innlogging. - &Start Bitcoin on system login - &Start Bitcoin ved systeminnlogging + &Start Hypercoin on system login + &Start Hypercoin ved systeminnlogging Size of &database cache @@ -1039,16 +1039,16 @@ Adresse: %4 &Bruk ubekreftet veksel - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Åpne automatisk Bitcoin klientporten på ruteren. Dette virker kun om din ruter støtter UPnP og dette er påslått. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Åpne automatisk Hypercoin klientporten på ruteren. Dette virker kun om din ruter støtter UPnP og dette er påslått. Map port using &UPnP Sett opp port ved hjelp av &UPnP - Connect to the Bitcoin network through a SOCKS5 proxy. - Koble til Bitcoin-nettverket gjennom en SOCKS5 proxy. + Connect to the Hypercoin network through a SOCKS5 proxy. + Koble til Hypercoin-nettverket gjennom en SOCKS5 proxy. &Connect through SOCKS5 proxy (default proxy): @@ -1095,8 +1095,8 @@ Adresse: %4 &Språk for brukergrensesnitt - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Språket for brukergrensesnittet kan settes her. Innstillingen trer i kraft ved omstart av Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Språket for brukergrensesnittet kan settes her. Innstillingen trer i kraft ved omstart av Hypercoin. &Unit to show amounts in: @@ -1104,7 +1104,7 @@ Adresse: %4 Choose the default subdivision unit to show in the interface and when sending coins. - Velg standard delt enhet for visning i grensesnittet og for sending av bitcoins. + Velg standard delt enhet for visning i grensesnittet og for sending av hypercoins. Whether to show coin control features or not. @@ -1154,8 +1154,8 @@ Adresse: %4 Skjema - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Informasjonen som vises kan være foreldet. Din lommebok synkroniseres automatisk med Bitcoin-nettverket etter at tilkobling er opprettet, men denne prosessen er ikke ferdig enda. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Informasjonen som vises kan være foreldet. Din lommebok synkroniseres automatisk med Hypercoin-nettverket etter at tilkobling er opprettet, men denne prosessen er ikke ferdig enda. Watch-only: @@ -1261,16 +1261,16 @@ Adresse: %4 Betalingsetterspørringsfeil - Cannot start bitcoin: click-to-pay handler - Kan ikke starte Bitcoin: klikk-og-betal håndterer + Cannot start hypercoin: click-to-pay handler + Kan ikke starte Hypercoin: klikk-og-betal håndterer Payment request fetch URL is invalid: %1 Hentelenke for betalingsetterspørring er ugyldig: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - URI kan ikke fortolkes! Dette kan være forårsaket av en ugyldig Bitcoin-adresse eller feilformede URI-parametre. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI kan ikke fortolkes! Dette kan være forårsaket av en ugyldig Hypercoin-adresse eller feilformede URI-parametre. Payment request file handling @@ -1288,6 +1288,14 @@ Adresse: %4 Refund from %1 Refundering fra %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Betalingsforespørsel %1 er for stor (%2 bytes, tillatt %3 bytes). + + + Payment request DoS protection + Betalingsforespørsel DoS-beskyttelse + Error communicating with %1: %2 Feil i kommunikasjonen med %1: %2 @@ -1331,8 +1339,8 @@ Adresse: %4 Beløp - Enter a Bitcoin address (e.g. %1) - Oppgi en Bitcoin-adresse (f.eks. %1) + Enter a Hypercoin address (e.g. %1) + Oppgi en Hypercoin-adresse (f.eks. %1) %1 d @@ -1557,16 +1565,16 @@ Adresse: %4 Loggfil for feilsøk - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Åpne Bitcoin sin loggfil for feilsøk fra den gjeldende datamappen. Dette kan ta noen sekunder for store loggfiler. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Åpne Hypercoin sin loggfil for feilsøk fra den gjeldende datamappen. Dette kan ta noen sekunder for store loggfiler. Clear console Tøm konsoll - Welcome to the Bitcoin RPC console. - Velkommen til Bitcoin sin RPC-konsoll. + Welcome to the Hypercoin RPC console. + Velkommen til Hypercoin sin RPC-konsoll. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1640,8 +1648,8 @@ Adresse: %4 Gj&enbruk en eksisterende mottaksadresse (ikke anbefalt) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - En valgfri melding å tilknytte betalingsetterspørringen, som vil bli vist når forespørselen er åpnet. Meldingen vil ikke bli sendt med betalingen over Bitcoin-nettverket. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + En valgfri melding å tilknytte betalingsetterspørringen, som vil bli vist når forespørselen er åpnet. Meldingen vil ikke bli sendt med betalingen over Hypercoin-nettverket. An optional label to associate with the new receiving address. @@ -1790,7 +1798,7 @@ Adresse: %4 SendCoinsDialog Send Coins - Send Bitcoins + Send Hypercoins Coin Control Features @@ -1877,8 +1885,8 @@ Adresse: %4 minstebeløp - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. - Betaling av bare minimumsavgiften går helt fint så lenge det er mindre transaksjonsvolum enn plass i blokkene. Men vær klar over at dette kan ende opp i en transaksjon som aldri blir bekreftet når det er mer etterspørsel etter Bitcoin-transaksjoner enn nettverket kan behandle. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Betaling av bare minimumsavgiften går helt fint så lenge det er mindre transaksjonsvolum enn plass i blokkene. Men vær klar over at dette kan ende opp i en transaksjon som aldri blir bekreftet når det er mer etterspørsel etter Hypercoin-transaksjoner enn nettverket kan behandle. (read the tooltip) @@ -1950,7 +1958,7 @@ Adresse: %4 Confirm send coins - Bekreft sending av bitcoins + Bekreft sending av hypercoins %1 to %2 @@ -1985,8 +1993,8 @@ Adresse: %4 Kopier veksel - Total Amount %1 (= %2) - Totalt Beløp %1 (= %2) + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + Totalt Beløp %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> or @@ -2033,8 +2041,8 @@ Adresse: %4 Beregner å begynne bekreftelse innen %1 blokk(er). - Warning: Invalid Bitcoin address - Advarsel: Ugyldig Bitcoin-adresse + Warning: Invalid Hypercoin address + Advarsel: Ugyldig Hypercoin-adresse (no label) @@ -2084,8 +2092,8 @@ Adresse: %4 Dette er en normal betaling. - The Bitcoin address to send the payment to - Bitcoin-adressen betalingen skal sendes til + The Hypercoin address to send the payment to + Hypercoin-adressen betalingen skal sendes til Alt+A @@ -2116,8 +2124,8 @@ Adresse: %4 Skriv inn en merkelapp for denne adressen for å legge den til listen av brukte adresser - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - En melding som var tilknyttet bitcoinen: URI vil bli lagret med transaksjonen for din oversikt. Denne meldingen vil ikke bli sendt over Bitcoin-nettverket. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + En melding som var tilknyttet hypercoinen: URI vil bli lagret med transaksjonen for din oversikt. Denne meldingen vil ikke bli sendt over Hypercoin-nettverket. This is an unverified payment request. @@ -2135,8 +2143,8 @@ Adresse: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core lukker... + Hypercoin Core is shutting down... + Hypercoin Core lukker... Do not shut down the computer until this window disappears. @@ -2158,8 +2166,8 @@ Adresse: %4 Du kan signere meldinger med dine adresser for å bevise at du eier dem. Ikke signer vage meldinger da phishing-angrep kan prøve å lure deg til å signere din identitet over til andre. Signer kun fullt detaljerte utsagn som du er enig i. - The Bitcoin address to sign the message with - Bitcoin-adressen meldingen skal signeres med + The Hypercoin address to sign the message with + Hypercoin-adressen meldingen skal signeres med Choose previously used address @@ -2190,8 +2198,8 @@ Adresse: %4 Kopier valgt signatur til utklippstavle - Sign the message to prove you own this Bitcoin address - Signer meldingen for å bevise at du eier denne Bitcoin-adressen + Sign the message to prove you own this Hypercoin address + Signer meldingen for å bevise at du eier denne Hypercoin-adressen Sign &Message @@ -2214,12 +2222,12 @@ Adresse: %4 Angi adresse for signering, melding (vær sikker på at du kopierer linjeskift, mellomrom, tab, etc. helt nøyaktig) og signatur under for å verifisere meldingen. Vær forsiktig med at du ikke gir signaturen mer betydning enn det som faktisk står i meldingen, for å unngå å bli lurt av såkalte "man-in-the-middle" angrep. - The Bitcoin address the message was signed with - Bitcoin-adressen meldingen ble signert med + The Hypercoin address the message was signed with + Hypercoin-adressen meldingen ble signert med - Verify the message to ensure it was signed with the specified Bitcoin address - Verifiser meldingen for å være sikker på at den ble signert av den angitte Bitcoin-adressen + Verify the message to ensure it was signed with the specified Hypercoin address + Verifiser meldingen for å være sikker på at den ble signert av den angitte Hypercoin-adressen Verify &Message @@ -2285,8 +2293,8 @@ Adresse: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2416,7 +2424,7 @@ Adresse: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Genererte bitcoins må modnes %1 blokker før de kan brukes. Da du genererte denne blokken ble den kringkastet på nettverket for å bli lagt til i kjeden av blokker. Hvis den ikke kommer med i kjeden vil den endre seg til "ikke akseptert" og pengene vil ikke kunne brukes. Dette vil noen ganger skje hvis en annen node genererer en blokk noen sekunder i tid fra din egen. + Genererte hypercoins må modnes %1 blokker før de kan brukes. Da du genererte denne blokken ble den kringkastet på nettverket for å bli lagt til i kjeden av blokker. Hvis den ikke kommer med i kjeden vil den endre seg til "ikke akseptert" og pengene vil ikke kunne brukes. Dette vil noen ganger skje hvis en annen node genererer en blokk noen sekunder i tid fra din egen. Debug information @@ -2734,7 +2742,7 @@ Adresse: %4 WalletModel Send Coins - Send Bitcoins + Send Hypercoins @@ -2806,29 +2814,6 @@ Adresse: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Ta imot tilkoblinger fra utsiden (standardverdi: 1 hvis uten -proxy eller -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, du må angi rpcpassord i konfigurasjonsfilen. -%s -Det anbefales at du bruker det følgende tilfeldige passordet: -rpcbruker=bitcoinrpc -rpcpassord=%s -(du behøver ikke å huske passordet) -Brukernavnet og passordet MÅ IKKE være like. -Om filen ikke eksisterer, opprett den nå med eier-kun-les filrettigheter. -Det er også anbefalt at å sette varselsmelding slik du får melding om problemer. -For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.com - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bind til angitt adresse. Bruk [vertsmaskin]:port notasjon for IPv6 @@ -2845,14 +2830,6 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comEnter regression test mode, which uses a special chain in which blocks can be solved instantly. Gå til modus for regresjonstesting, som bruker en spesiell blokkjede der blokker kan bli løst momentant. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Feil: Transaksjonen ble avvist! Dette kan skje hvis noen av myntene i lommeboken allerede er blitt brukt, som om du brukte en kopi av wallet.dat og myntene ble brukt i kopien, men ikke markert som brukt her. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Feil: Denne transaksjonen trenger et gebyr på minst %s på grunn av beløpet, kompleksiteten eller bruk av allerede mottatte penger! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Kjør kommando når en lommeboktransaksjon endres (%s i kommando er erstattet med TxID) @@ -2870,8 +2847,8 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comDette er en forhåndssluppet testversjon - bruk på egen risiko - ikke for bruk til blokkutvinning eller bedriftsapplikasjoner - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Ute av stand til å binde til %s på denne datamaskinen. Bitcoin Core kjører sannsynligvis allerede. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Ute av stand til å binde til %s på denne datamaskinen. Hypercoin Core kjører sannsynligvis allerede. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2957,18 +2934,10 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comError opening block database Feil under åpning av blokkdatabase - - Error: A fatal internal error occured, see debug.log for details - Feil: En fatal intern feil oppstod, se debug.log for detaljer - Error: Disk space is low! Feil: Lite ledig lagringsplass! - - Error: Wallet locked, unable to create transaction! - Feil: Lommebok låst, kan ikke opprette transaksjon! - Failed to listen on any port. Use -listen=0 if you want this. Kunne ikke lytte på noen port. Bruk -listen=0 hvis det er dette du vil. @@ -3062,8 +3031,8 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comBind til gitt adresse for å lytte for JSON-RPC-tilkoblinger. Bruk [host]:port notasjon for IPv6. Dette alternativet kan angis flere ganger (standardverdi: bind til alle grensesnitt) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Ute av stand til å låse datamappen %s. Bitcoin Core kjører sannsynligvis allerede. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Ute av stand til å låse datamappen %s. Hypercoin Core kjører sannsynligvis allerede. Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) @@ -3086,21 +3055,37 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comUtfør kommando når et relevant varsel er mottatt eller vi ser en veldig lang gaffel (%s i kommando er erstattet med melding) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Gebyrer (i BTC/Kb) mindre enn dette anses som null gebyr for videresending (standardverdi: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Gebyrer (i HOT/Kb) mindre enn dette anses som null gebyr for videresending (standardverdi: %s) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Gebyrer (i BTC/Kb) mindre enn dette anses som null gebyr for laging av transaksjoner (standardverdi: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Gebyrer (i HOT/Kb) mindre enn dette anses som null gebyr for laging av transaksjoner (standardverdi: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Hvis paytxfee ikke er angitt, inkluderer da nok i gebyr til at transaksjoner gjennomsnittligt bekreftes innen n blokker (standardverdi: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Ugyldig beløp for -maxtxfee=<amount>: '%s' (må være minst minimum relé gebyr på %s for å hindre fastlåste transaksjoner) Maximum size of data in data carrier transactions we relay and mine (default: %u) Maksimal størrelse på data i databærende transaksjoner vi videresender og ufører graving på (standardverdi: %u) + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Maksimal sum av gebyrer som kan brukes i en enkelt lommebokstransaksjon, settes den for lavt kan store transaksjoner bli avbrutt (standardverdi: %s) + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Søk etter nodeadresser via DNS-oppslag, hvis vi har få adresser å koble til (standard: 1 med mindre -connect) + + Require high priority for relaying free or low-fee transactions (default:%u) + Krev høy prioritet for å videreformidle transaksjoner som er gratis eller har lavt gebyr (standardverdi: %u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Sett maksimum størrelse for transaksjoner med høy prioritet / lavt gebyr, i bytes (standardverdi: %d) @@ -3114,13 +3099,45 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comDette produktet inneholder programvare utviklet av OpenSSL Project for bruk i OpenSSL Toolkit <https://www.openssl.org/> og kryptografisk programvare skrevet av Eric Young og UPnP-programvare skrevet av Thomas Bernard. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Advarsel: Vennligst undersøk at din datamaskin har riktig dato og klokkeslett! Hvis klokken er stilt feil vil ikke Bitcoin Core fungere riktig. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + For å bruke hypercoind, eller -server valget til hypercoin-qt, må du angi et rpcpassord i konfigurasjonsfilen: +%s +Det anbefales at du bruker det følgende tilfeldige passordet: +rpcuser=hypercoinrpc +rpcpassword=%s +(du behøver ikke å huske passordet) +Brukernavnet og passordet MÅ IKKE være like. +Om filen ikke eksisterer, opprett den med eier-kun-les filrettigheter. +Det er også anbefalt at å sette varselsmelding slik du får melding om problemer; +for eksempel: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Advarsel: -paytxfee er satt veldig høyt! Så stort gebyr kan bli betalt ved en enkelt transaksjon. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Advarsel: Vennligst undersøk at din datamaskin har riktig dato og klokkeslett! Hvis klokken er stilt feil vil ikke Hypercoin Core fungere riktig. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Hvitlistede noder kan ikke DoS-blokkeres, og deres transaksjoner videresendes alltid, selv om de allerede er i minnelageret. Nyttig f.eks. for en gateway. + + Accept public REST requests (default: %u) + Godta offentlige REST forespørsler (standardverdi: %u) + Cannot resolve -whitebind address: '%s' Kan ikke løse -whitebind-adresse: '%s' @@ -3138,24 +3155,36 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comKunne ikke tolke -rpcbind-verdi %s som en nettverksadresse - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Bitcoin Core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Feil ved lasting av wallet.dat: Lommeboken krever en nyere versjon av Hypercoin Core + + + Error reading from database, shutting down. + Feil ved lesing fra database, stenger ned. + + + Error: A fatal internal error occurred, see debug.log for details + Feil: En fatal intern feil oppstod, se debug.log for detaljer Error: Unsupported argument -tor found, use -onion. Feil: Argumentet -tor er ikke støttet, bruk -onion. - Fee (in BTC/kB) to add to transactions you send (default: %s) - Gebyr (i BTC/kB) for å legge til i transaksjoner du sender (standardverdi: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Gebyr (i HOT/kB) for å legge til i transaksjoner du sender (standardverdi: %s) Information Informasjon - Initialization sanity check failed. Bitcoin Core is shutting down. - Sunnhetssjekk ved oppstart feilet. Bitcoin Core stenges ned. + Initialization sanity check failed. Hypercoin Core is shutting down. + Sunnhetssjekk ved oppstart feilet. Hypercoin Core stenges ned. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Ugyldig beløp for -maxtxfee=<amount>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -3173,10 +3202,6 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comInvalid netmask specified in -whitelist: '%s' Ugyldig nettmaske spesifisert i -whitelist: '%s' - - Keep at most <n> unconnectable blocks in memory (default: %u) - Behold på det meste <n> blokker i minnet som ikke er mulig å koble (standardverdi: %u) - Keep at most <n> unconnectable transactions in memory (default: %u) Hold på det meste <n> transaksjoner som ikke kobles i minnet (standardverdi: %u) @@ -3190,17 +3215,17 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comNode alternativer for videresending: - Print block on startup, if found in block index - Skriv ut blokken ved oppstart, hvis funnet i blokkindeksen - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - RPC SSL-valg: (se Bitcoin Wiki for oppsettsinstruksjoner for SSL) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + RPC SSL-valg: (se Hypercoin Wiki for oppsettsinstruksjoner for SSL) RPC server options: Innstillinger for RPC-server: + + RPC support for HTTP persistent connections (default: %d) + RPC-støtte for persistente HTTP-forbindelser (standardverdi: %d) + Randomly drop 1 of every <n> network messages Slumpvis dropp 1 av hver <n> nettverksmeldinger @@ -3209,6 +3234,10 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comRandomly fuzz 1 of every <n> network messages Slumpvis bland 1 av hver <n> nettverksmeldinger + + Receive and display P2P network alerts (default: %u) + Motta og vis P2P-nettverksvarsler (standardvalg: %u) + Send trace/debug info to console instead of debug.log file Send spor-/feilsøkingsinformasjon til konsollen istedenfor filen debug.log @@ -3241,6 +3270,10 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comTransaction amounts must be positive Transaksjonsbeløpet må være positivt + + Transaction too large for fee policy + Transaksjon for stor for gebyrpolitikken + Transaction too large Transaksjonen er for stor @@ -3258,8 +3291,8 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comBrukernavn for JSON-RPC forbindelser - Wallet needed to be rewritten: restart Bitcoin Core to complete - Lommeboken måtte skrives på nytt: start Bitcoin Core på nytt for å fullføre + Wallet needed to be rewritten: restart Hypercoin Core to complete + Lommeboken måtte skrives på nytt: start Hypercoin Core på nytt for å fullføre Warning @@ -3337,10 +3370,6 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comHow thorough the block verification of -checkblocks is (0-4, default: %u) Hvor grundig blokkverifiseringen til -checkblocks er (0-4, standardverdi: %u) - - If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u) - Hvis paytxfee ikke er angitt, inkluderer da nok gebyr til at transaksjoner gjennomsnittligt bekreftes innen n blokker (standardverdi: %u) - Log transaction priority and fee per kB when mining blocks (default: %u) Logg transaksjonsprioritet og gebyr per kB under blokkutvinning (standardverdi: %u) @@ -3433,10 +3462,6 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comPrepend debug output with timestamp (default: %u) Sett inn tidsstempel i front av feilsøkingsdata (standardverdi: %u) - - Print block tree on startup (default: %u) - Skriv ut blokktreet ved oppstart (standardverdi: %u) - Relay and mine data carrier transactions (default: %u) Videresend og ufør graving av databærende transaksjoner (standardverdi: %u) @@ -3513,10 +3538,6 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comInvalid amount for -paytxfee=<amount>: '%s' Ugyldig beløp for -paytxfee=<beløp>: '%s' - - Invalid amount - Ugyldig beløp - Insufficient funds Utilstrekkelige midler @@ -3549,13 +3570,9 @@ For eksempel: varselmelding=echo %%s | mail -s "Bitcoin Varsel" admin@foo.comDone loading Ferdig med lasting - - To use the %s option - For å bruke %s opsjonen - Error Feil - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index 258c7f109fd96..18a57589860c4 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -1,13 +1,13 @@ - + AddressBookPage - Double-click to edit address or label - Dubbelklik om het adres of label te wijzigen + Right-click to edit address or label + Klik met de rechtermuisknop om het adres of label te wijzigen Create a new address - Maak een nieuw adres aan + Maak een nieuw adres &New @@ -15,7 +15,7 @@ Copy the currently selected address to the system clipboard - Kopieer het huidig geselecteerde adres naar het klembord + Kopieer het geselecteerde adres naar het klembord &Copy @@ -51,7 +51,7 @@ Choose the address to receive coins with - Kies het adres om munten voor te ontvangen + Kies het adres om munten op te ontvangen C&hoose @@ -59,19 +59,19 @@ Sending addresses - Bezig met het versturen van de adressen + Verstuur adressen Receiving addresses - Adressen ontvangen + Ontvang adressen - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Dit zijn uw Bitcoinadressen om betalingen mee te verzenden. Controleer altijd het bedrag en het ontvangende adres voordat u uw bitcoins verzendt. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Dit zijn uw Hypercoinadressen om betalingen mee te verzenden. Controleer altijd het bedrag en het ontvang adres voordat u uw hypercoins verzendt. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Dit zijn uw Bitcoin-adressen waarmee u kunt betalen. We raden u aan om een nieuw ontvangstadres voor elke transactie te gebruiken. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Dit zijn uw Hypercoin-adressen waarmee u kunt betalen. We raden u aan om een nieuw ontvangstadres voor elke transactie te gebruiken. Copy &Label @@ -117,7 +117,7 @@ AskPassphraseDialog Passphrase Dialog - Wachtwoorddialoogscherm + Wachtwoorddialoog Enter passphrase @@ -164,8 +164,8 @@ Bevestig versleuteling van de portemonnee - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Waarschuwing: Als u uw portemonnee versleutelt en uw wachtwoord vergeet, zult u <b>AL UW BITCOINS VERLIEZEN</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Waarschuwing: Als u uw portemonnee versleutelt en uw wachtwoord vergeet, zult u <b>AL UW HYPERCOINS VERLIEZEN</b>! Are you sure you wish to encrypt your wallet? @@ -185,11 +185,11 @@ Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. - Vul een nieuw + Voer een nieuw wachtwoord in voor uw portomonee.<br/>Gebruik een wachtwoord van <b>tien of meer willekeurige karakters</b>, of <b>acht of meer woorden</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw bitcoins stelen. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin zal nu afsluiten om het versleutelingsproces te voltooien. Onthoudt dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw hypercoins stelen. Wallet encryption failed @@ -240,7 +240,7 @@ Show general overview of wallet - Toon algemeen overzicht van de portemonnee + Toon algemeen overzicht van uw portemonnee &Transactions @@ -284,19 +284,19 @@ &Sending addresses... - &Adressen aan het versturen. + V&erstuur adressen... &Receiving addresses... - &Adressen aan het ontvangen... + O&ntvang adressen... Open &URI... Open &URI... - Bitcoin Core client - Bitcoin kern applicatie + Hypercoin Core client + Hypercoin Kern applicatie Importing blocks from disk... @@ -307,12 +307,12 @@ Bezig met herindexeren van blokken op harde schijf... - Send coins to a Bitcoin address - Verstuur munten naar een Bitcoinadres + Send coins to a Hypercoin address + Verstuur munten naar een Hypercoinadres - Modify configuration options for Bitcoin - Wijzig instellingen van Bitcoin + Modify configuration options for Hypercoin + Wijzig instellingen van Hypercoin Backup wallet to another location @@ -335,8 +335,8 @@ &Verifiëer bericht... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Ontvangen - Show information about Bitcoin Core - Toon informatie over bitcoin kern + Show information about Hypercoin Core + Toon informatie over hypercoin kern &Show / Hide @@ -367,12 +367,12 @@ Versleutel de geheime sleutels die bij uw portemonnee horen - Sign messages with your Bitcoin addresses to prove you own them - Onderteken berichten met uw Bitcoinadressen om te bewijzen dat u deze adressen bezit + Sign messages with your Hypercoin addresses to prove you own them + Onderteken berichten met uw Hypercoinadressen om te bewijzen dat u deze adressen bezit - Verify messages to ensure they were signed with specified Bitcoin addresses - Verifiëer handtekeningen om zeker te zijn dat de berichten zijn ondertekend met de gespecificeerde Bitcoinadressen + Verify messages to ensure they were signed with specified Hypercoin addresses + Verifiëer handtekeningen om zeker te zijn dat de berichten zijn ondertekend met de gespecificeerde Hypercoinadressen &File @@ -391,16 +391,16 @@ Tab-werkbalk - Bitcoin Core - Bitcoin Kern + Hypercoin Core + Hypercoin Kern - Request payments (generates QR codes and bitcoin: URIs) - Vraag betaling aan (genereert QR codes en bitcoin: URIs) + Request payments (generates QR codes and hypercoin: URIs) + Vraag betaling aan (genereert QR codes en hypercoin: URIs) - &About Bitcoin Core - &Over Bitcoin Core + &About Hypercoin Core + &Over Hypercoin Core Show the list of used sending addresses and labels @@ -411,24 +411,24 @@ Toon de lijst met gebruikte ontvangst adressen en labels - Open a bitcoin: URI or payment request - Open een bitcoin: URI of betalingsverzoek + Open a hypercoin: URI or payment request + Open een hypercoin: URI of betalingsverzoek &Command-line options &Commandoregel-opties - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Toon het Bitcoin Core hulpbericht om een lijst te krijgen met mogelijke Bitcoin commandoregelopties + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Toon het Hypercoin Core hulpbericht om een lijst te krijgen met mogelijke Hypercoin commandoregelopties - %n active connection(s) to Bitcoin network - %n actieve connectie naar Bitcoinnetwerk%n actieve connecties naar Bitcoinnetwerk + %n active connection(s) to Hypercoin network + %n actieve connectie naar Hypercoin netwerk%n actieve connecties naar Hypercoin netwerk No block source available... - Geen bron van blokken beschikbaar... + Geen bron voor blokken beschikbaar... %n hour(s) @@ -480,7 +480,7 @@ Processed %n blocks of transaction history. - %n Blok verwerkt van transactie geschiedenis.%n Blokken verwerkt van transactie geschiedenis. + %n Blok transactie geschiedenis verwerkt.%n Blokken transactie geschiedenis verwerkt. Catching up... @@ -618,7 +618,7 @@ Adres: %4 Lock unspent - Blokeer niet gebruikte + Blokeer ongebruikte Unlock unspent @@ -788,8 +788,8 @@ Adres: %4 Het opgegeven adres "%1" bestaat al in uw adresboek. - The entered address "%1" is not a valid Bitcoin address. - Het opgegeven adres "%1" is een ongeldig Bitcoinadres + The entered address "%1" is not a valid Hypercoin address. + Het opgegeven adres "%1" is een ongeldig Hypercoinadres Could not unlock wallet. @@ -826,8 +826,8 @@ Adres: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Kern + Hypercoin Core + Hypercoin Kern version @@ -838,8 +838,8 @@ Adres: %4 (%1-bit) - About Bitcoin Core - Over Bitcoin Core + About Hypercoin Core + Over Hypercoin Core Command-line options @@ -885,16 +885,16 @@ Adres: %4 Welkom - Welcome to Bitcoin Core. - Welkom bij Bitcoin Core + Welcome to Hypercoin Core. + Welkom bij Hypercoin Core - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Omdat dit de eerste keer is dat het programma gestart is, kunt u nu kiezen waar Bitcoin Core de data moet opslaan. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Omdat dit de eerste keer is dat het programma gestart is, kunt u nu kiezen waar Hypercoin Core de data moet opslaan. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core zal een kopie van de Bitcoin blokketen downloaden en opslaan. Tenminste %1 GB aan data wordt opgeslagen in deze map en het zal groeien in de tijd. De portemonnee wordt ook in deze map opgeslagen. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core zal een kopie van de Hypercoin blokketen downloaden en opslaan. Tenminste %1 GB aan data wordt opgeslagen in deze map en het zal groeien in de tijd. De portemonnee wordt ook in deze map opgeslagen. Use the default data directory @@ -905,8 +905,8 @@ Adres: %4 Gebruik een persoonlijke gegevensmap: - Bitcoin Core - Bitcoin Kern + Hypercoin Core + Hypercoin Kern Error: Specified data directory "%1" cannot be created. @@ -959,12 +959,12 @@ Adres: %4 &Algemeen - Automatically start Bitcoin after logging in to the system. - Start Bitcoin automatisch na inloggen in het systeem + Automatically start Hypercoin after logging in to the system. + Start Hypercoin automatisch na inloggen in het systeem - &Start Bitcoin on system login - Start &Bitcoin bij het inloggen in het systeem + &Start Hypercoin on system login + Start &Hypercoin bij het inloggen in het systeem Size of &database cache @@ -1039,16 +1039,16 @@ Adres: %4 &Spendeer onbevestigd wisselgeld - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Open de Bitcoin-poort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt en het aanstaat. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Open de Hypercoin-poort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt en het aanstaat. Map port using &UPnP Portmapping via &UPnP - Connect to the Bitcoin network through a SOCKS5 proxy. - Verbind met het Bitcoin netwerk via een SOCKS5 proxy. + Connect to the Hypercoin network through a SOCKS5 proxy. + Verbind met het Hypercoin netwerk via een SOCKS5 proxy. &Connect through SOCKS5 proxy (default proxy): @@ -1095,8 +1095,8 @@ Adres: %4 Taal &Gebruikersinterface: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - De taal van de gebruikersinterface kan hier ingesteld worden. Deze instelling zal pas van kracht worden nadat Bitcoin herstart wordt. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + De taal van de gebruikersinterface kan hier ingesteld worden. Deze instelling zal pas van kracht worden nadat Hypercoin herstart wordt. &Unit to show amounts in: @@ -1154,8 +1154,8 @@ Adres: %4 Vorm - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - De weergegeven informatie kan verouderd zijn. Uw portemonnee synchroniseert automaticsh met het Bitcoinnetwerk nadat een verbinding is gelegd, maar dit proces is nog niet voltooid. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + De weergegeven informatie kan verouderd zijn. Uw portemonnee synchroniseert automaticsh met het Hypercoinnetwerk nadat een verbinding is gelegd, maar dit proces is nog niet voltooid. Watch-only: @@ -1261,16 +1261,16 @@ Adres: %4 Fout bij betalingsverzoek - Cannot start bitcoin: click-to-pay handler - Kan bitcoin niet starten: click-to-pay handler + Cannot start hypercoin: click-to-pay handler + Kan hypercoin niet starten: click-to-pay handler Payment request fetch URL is invalid: %1 URL om betalingsverzoek te verkrijgen is ongeldig: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - URI kan niet verwerkt worden! Dit kan het gevolg zijn van een ongeldig Bitcoin adres of misvormde URI parameters. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI kan niet verwerkt worden! Dit kan het gevolg zijn van een ongeldig Hypercoin adres of misvormde URI parameters. Payment request file handling @@ -1288,6 +1288,14 @@ Adres: %4 Refund from %1 Restitutie van %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Betalingsverzoek %1 is te groot (%2 bytes, toegestaan ​​%3 bytes). + + + Payment request DoS protection + Betalingsaanvraag DoS bescherming + Error communicating with %1: %2 Fout bij communiceren met %1: %2 @@ -1331,8 +1339,8 @@ Adres: %4 Bedrag - Enter a Bitcoin address (e.g. %1) - Voer een Bitcoin-adres in (bijv. %1) + Enter a Hypercoin address (e.g. %1) + Voer een Hypercoin-adres in (bijv. %1) %1 d @@ -1557,16 +1565,16 @@ Adres: %4 Debug-logbestand - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Open het Bitcoindebug-logbestand van de huidige datamap. Dit kan een aantal seconden duren voor grote logbestanden. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Open het Hypercoindebug-logbestand van de huidige datamap. Dit kan een aantal seconden duren voor grote logbestanden. Clear console Maak console leeg - Welcome to the Bitcoin RPC console. - Welkom bij de Bitcoin RPC-console. + Welcome to the Hypercoin RPC console. + Welkom bij de Hypercoin RPC-console. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1640,8 +1648,8 @@ Adres: %4 H&ergebruik en bestaand ontvangstadres (niet aanbevolen) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Een optioneel bericht om bij te voegen aan het betalingsverzoek, dewelke zal getoond worden wanneer het verzoek is geopend. Opermerking: Het bericht zal niet worden verzonden met de betaling over het Bitcoin netwerk. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Een optioneel bericht om bij te voegen aan het betalingsverzoek, dewelke zal getoond worden wanneer het verzoek is geopend. Opermerking: Het bericht zal niet worden verzonden met de betaling over het Hypercoin netwerk. An optional label to associate with the new receiving address. @@ -1852,18 +1860,38 @@ Adres: %4 Choose... Kies... + + collapse fee-settings + Transactiekosteninstellingen verbergen + Minimize Minimaliseer + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Als de aangepaste toeslag is ingesteld op 1000 satoshis en de transactie is maar 250 bytes, dan wordt bij "per kilobyte" 250 satoshis aan toeslag berekend, terwijl er bij "tenminste" 1000 satoshis worden berekend. Voor transacties die groter zijn dan een kilobyte, wordt in beide gevallen per kilobyte de toeslag berekend. + per kilobyte per kilobyte + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Als de aangepaste toeslag is ingesteld op 1000 satoshis en de transactie is maar 250 bytes, dan wordt bij "per kilobyte" 250 satoshis aan toeslag berekend, terwijl er bij "totaal tenminste" 1000 satoshis worden berekend. Voor transacties die groter zijn dan een kilobyte, wordt in beide gevallen per kilobyte de toeslag berekend. + total at least totaal ten minste + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + De minimale toeslag betalen is prima mits het transactievolume kleiner is dan de ruimte in de blokken. Let wel op dat dit tot gevolg kan hebben dat een transactie nooit wordt bevestigd als er meer vraag is naar hypercointransacties dan het netwerk kan verwerken. + + + (read the tooltip) + (lees de tooltip) + Recommended: Aanbevolen: @@ -1872,6 +1900,10 @@ Adres: %4 Custom: Handmatig: + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Slimme vergoeding is nog niet geïnitialiseerd. Dit duurt meestal een paar blokken...) + Confirmation time: Bevestigings tijd: @@ -1884,6 +1916,10 @@ Adres: %4 fast snel + + Send as zero-fee transaction if possible + Verstuur als transactie zonder verzendkosten indien mogelijk + (confirmation may take longer) (bevestiging kan langer duren) @@ -1956,10 +1992,6 @@ Adres: %4 Copy change Kopieer wijziging - - Total Amount %1 (= %2) - Totaal bedrag %1 (= %2) - or of @@ -2005,8 +2037,8 @@ Adres: %4 Beginnen van bevesting geschat binnen %1 blok(ken). - Warning: Invalid Bitcoin address - Waarschuwing: Ongeldig Bitcoin adres + Warning: Invalid Hypercoin address + Waarschuwing: Ongeldig Hypercoin adres (no label) @@ -2056,8 +2088,8 @@ Adres: %4 Dit is een normale betaling. - The Bitcoin address to send the payment to - Het Bitcoin adres om betaling aan te voldoen + The Hypercoin address to send the payment to + Het Hypercoin adres om betaling aan te voldoen Alt+A @@ -2088,8 +2120,8 @@ Adres: %4 Vul een label voor dit adres in om het aan de lijst met gebruikte adressen toe te voegen - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Een bericht dat werd toegevoegd aan de bitcoin: URI dewelke wordt opgeslagen met de transactie ter referentie. Opmerking: Dit bericht zal niet worden verzonden over het Bitcoin netwerk. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Een bericht dat werd toegevoegd aan de hypercoin: URI dewelke wordt opgeslagen met de transactie ter referentie. Opmerking: Dit bericht zal niet worden verzonden over het Hypercoin netwerk. This is an unverified payment request. @@ -2107,8 +2139,8 @@ Adres: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core is aan het afsluiten... + Hypercoin Core is shutting down... + Hypercoin Core is aan het afsluiten... Do not shut down the computer until this window disappears. @@ -2130,8 +2162,8 @@ Adres: %4 U kunt berichten ondertekenen met een van uw adressen om te bewijzen dat u dit adres bezit. Pas op dat u geen onduidelijke dingen ondertekent, want phishingaanvallen zouden u kunnen misleiden om zo uw identiteit te stelen. Onderteken alleen berichten waarmee u het volledig eens bent. - The Bitcoin address to sign the message with - Het Bitcoin adres om bericht mee te ondertekenen + The Hypercoin address to sign the message with + Het Hypercoin adres om bericht mee te ondertekenen Choose previously used address @@ -2162,8 +2194,8 @@ Adres: %4 Kopieer de huidige handtekening naar het systeemklembord - Sign the message to prove you own this Bitcoin address - Onderteken een bericht om te bewijzen dat u een bepaald Bitcoinadres bezit + Sign the message to prove you own this Hypercoin address + Onderteken een bericht om te bewijzen dat u een bepaald Hypercoinadres bezit Sign &Message @@ -2186,12 +2218,12 @@ Adres: %4 Voer het ondertekenende adres, bericht en handtekening hieronder in (let erop dat u nieuwe regels, spaties en tabs juist overneemt) om de handtekening te verifiëren. Let erop dat u niet meer uit het bericht interpreteert dan er daadwerkelijk staat, om te voorkomen dat u wordt misleid in een man-in-the-middle-aanval. - The Bitcoin address the message was signed with - Het Bitcoin adres waarmee het bericht ondertekend is + The Hypercoin address the message was signed with + Het Hypercoin adres waarmee het bericht ondertekend is - Verify the message to ensure it was signed with the specified Bitcoin address - Controleer een bericht om te verifiëren dat het gespecificeerde Bitcoinadres het bericht heeft ondertekend. + Verify the message to ensure it was signed with the specified Hypercoin address + Controleer een bericht om te verifiëren dat het gespecificeerde Hypercoinadres het bericht heeft ondertekend. Verify &Message @@ -2257,8 +2289,8 @@ Adres: %4 SplashScreen - Bitcoin Core - Bitcoin Kern + Hypercoin Core + Hypercoin Kern The Bitcoin Core developers @@ -2532,6 +2564,10 @@ Adres: %4 Type of transaction. Type transactie. + + Whether or not a watch-only address is involved in this transaction. + Of er een alleen-bekijken adres is betrokken bij deze transactie. + Destination address of transaction. Ontvangend adres van transactie. @@ -2774,43 +2810,21 @@ Adres: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Accepteer verbindingen van buitenaf (standaard: 1 als geen -proxy of -connect is opgegeven) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, u moet een RPC-wachtwoord instellen in het configuratiebestand: %s -U wordt aangeraden het volgende willekeurige wachtwoord te gebruiken: -rpcuser=bitcoinrpc -rpcpassword=%s -(u hoeft dit wachtwoord niet te onthouden) -De gebruikersnaam en wachtwoord mogen niet hetzelfde zijn. -Als het bestand niet bestaat, make hem dan aan met leesrechten voor enkel de eigenaar. -Het is ook aan te bevelen "alertnotify" in te stellen zodat u op de hoogte gesteld wordt van problemen; -bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bind aan opgegeven adres en luister er altijd op. Gebruik [host]:port notatie voor IPv6 - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Schakel regressietest-modus in, die een speciale blokketen gebruikt waarin blokken onmiddellijk opgelost kunnen worden. + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Verwijder alle transacties van de portemonnee en herstel alleen de delen van de blockchain door -rescan tijdens het opstarten - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fout: De transactie was afgewezen! Dit kan gebeuren als sommige munten in uw portemonnee al eerder uitgegeven zijn, zoals wanneer u een kopie van uw wallet.dat heeft gebruikt en in de kopie deze munten zijn uitgegeven, maar in deze portemonnee die munten nog niet als zodanig zijn gemarkeerd. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Uitgegeven onder de MIT software licentie, zie het bijgevoegde bestand COPYING of <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Fout: Deze transactie vereist transactiekosten van tenminste %s, vanwege zijn grootte, complexiteit, of het gebruik van onlangs ontvangen munten! + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Schakel regressietest-modus in, die een speciale blokketen gebruikt waarin blokken onmiddellijk opgelost kunnen worden. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) @@ -2829,8 +2843,8 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comDit is een pre-release testversie - gebruik op eigen risico! Gebruik deze niet voor het delven van munten of handelsdoeleinden - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Niet in staat om %s te verbinden op deze computer. Bitcoin Core draait waarschijnlijk al. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Niet in staat om %s te verbinden op deze computer. Hypercoin Core draait waarschijnlijk al. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2852,6 +2866,10 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comWarning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Waarschuwing: wallet.dat is corrupt, data is veiliggesteld! Originele wallet.dat is opgeslagen als wallet.{tijdstip}.bak in %s; als uw balans of transacties incorrect zijn dient u een backup terug te zetten. + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Goedgekeurde peers die verbinden van het ingegeven netmask of IP adres. Kan meerdere keren gespecificeerd worden. + (default: 1) (standaard: 1) @@ -2916,10 +2934,6 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comError: Disk space is low! Fout: Weinig vrije diskruimte! - - Error: Wallet locked, unable to create transaction! - Fout: Portemonnee vergrendeld, aanmaak transactie niet mogelijk! - Failed to listen on any port. Use -listen=0 if you want this. Mislukt om op welke poort dan ook te luisteren. Gebruik -listen=0 as u dit wilt. @@ -2944,6 +2958,10 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comNot enough file descriptors available. Niet genoeg file descriptors beschikbaar. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Verbind alleen met nodes in netwerk <net> (ipv4, ipv6 of onion) + Rebuild block chain index from current blk000??.dat files Blokketen opnieuw opbouwen met behulp van huidige blk000??.dat-bestanden @@ -2993,25 +3011,174 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comImporteert blokken van extern blk000??.dat bestand - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Kan geen lock verkrijgen op gegevensmap %s. Bitcoin Core draait waarschijnlijk al. + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Sta JSON-RPC verbindingen toe vanuit een gespecificeerde bron. Geldig voor <ip> zijn een enkel IP (bijv. 1.2.3.4), een netwerk/netmask (bijv. 1.2.3.4/255.255.255.0) of een netwerk/CIDR (bijv. 1.2.3.4/24). Deze optie kan meerdere keren gespecificeerd worden. + + + An error occurred while setting up the RPC address %s port %u for listening: %s + Er is een fout opgetreden tijdens het opzetten van het RPC adres %s poort %u voor luisteren: %s + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Bind aan opgegeven adres en keur peers die ermee verbinden goed. Gebruik [host]:poort notatie voor IPv6 + + + Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) + Bind aan gegeven adres om te luisteren voor JSON-RPC verbindingen. Gebruik [host]:poort notatie voor IPv6. Deze optie kan meerdere keren gespecificeerd worden (standaard: bind aan alle interfaces. + + + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Kan geen lock verkrijgen op gegevensmap %s. Hypercoin Core draait waarschijnlijk al. + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) + Doorlopend tarief-limiet op gratis transacties toepassen tot <n>*1000 bytes per minuut (standaard: %u) + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Creër nieuwe bestanden met standaard systeem bestandsrechten in plaats van umask 077 (alleen effectief met uitgeschakelde portemonnee functionaliteit) + + + Error: Listening for incoming connections failed (listen returned error %s) + Fout: luisteren naar binnenkomende verbindingen mislukt (luisteren gaf foutmelding %s) + + + Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + Fout: er is een niet-ondersteund argument -socks aangetroffen. Het instellen van de SOCKS-versie is niet langer mogelijk. Alleen SOCKS5-proxy's worden ondersteund. Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Voer commando uit zodra een waarschuwing is ontvangen of wanneer we een erg lange fork detecteren (%s in commando wordt vervangen door bericht) + + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Toeslagen (in HOT/Kb) kleiner dan dit worden beschouwd als geen vergoeding (voor doorgeven) (standaard: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Toeslagen (in HOT/Kb) kleiner dan dit worden beschouwd als geen vergoeding transactieaanmaak (standaard: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Als paytxfee niet is ingesteld, het pakket voldoende vergoeding zodat transacties beginnen bevestiging gemiddeld binnen in blokken (default: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + ongeldig bedrag voor -maxtxfee=<amount>: '%s' (moet ten minste de minrelay vergoeding van %s het voorkomen geplakt transacties voorkomen) + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Maximale grootte va n de gegevens in gegevensdrager transacties we relais en de mijnen +(default: %u) + + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Maximale totale kosten om te gebruiken in een enkele portemonnee transactie , vaststellen van een te laag kan grote transacties af te breken (default: %s) + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + Query voor peer- adressen via DNS- lookup , als laag op adressen (default: 1 unless -connect) + + + Require high priority for relaying free or low-fee transactions (default:%u) + Vereisen een hoge prioriteit voor het doorgeven van gratis of tegen lage vergoeding transacties (default:%u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Stel maximumgrootte in bytes in voor hoge-prioriteits-/lage-transactiekosten-transacties (standaard: %d) - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Fout bij laden wallet.dat: Portemonnee vereist een nieuwere versie van Bitcoin Core + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Stel het aantal threads in voor het genereren van coins indien ingesteld (-1 = alle kernen, standaard: %d) + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + Dit product bevat software dat ontwikkeld is door het OpenSSL Project voor gebruik in de OpenSSL Toolkit <https://www.openssl.org/> en cryptografische software geschreven door Eric Young en UPnP software geschreven door Thomas Bernard. + + + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Om hypercoind of de -server optie naar hypercoin-gt te gebruiken, dient u een rpcwachtwoord in te stellen in het configuratiebestand: + %s +Wij raden u aan om het volgende wachtwoord willekeurig te gebruiken: +rpcuser=hypercoinrpc +rpcpassword=%s +(u hoeft dit wachtwoord niet te onthouden) +De gebruikersnaam en het wachtwoorden moeten NIET hetzelfde zijn. +Indien het bestand niet bestaat, maak het bestand aan met bestandsrechten: alleen lezen voor eigenaar. +Het is ook aan te raden om een alarmnotificatie in te stellen, zodat u op de hoogte bent van de problemen; +Voorbeeld: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Let op: -maxtxfee is erg hoog ingesteld! Transactiekosten van dergelijke groottes kunnen in een enkele transactie worden betaald. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Waarschuwing: Controleer dat de datum en tijd van uw computer correct zijn ingesteld! Bij een onjuist ingestelde klok zal Hypercoin Core niet goed werken. + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + Goedgekeurde peers kunnen niet ge-DoS-banned worden en hun transacties worden altijd doorgestuurd, zelfs als ze reeds in de mempool aanwezig zijn, nuttig voor bijv. een gateway + + + Accept public REST requests (default: %u) + Accepteer publieke REST-requests (standaard: %u) + + + Cannot resolve -whitebind address: '%s' + Kan -whitebind adres niet herleiden: '%s' + + + Connect through SOCKS5 proxy + Verbind door SOCKS5 proxy + + + Copyright (C) 2009-%i The Bitcoin Core Developers + Auteursrecht (C) 2009-%i De Bitcoin Core Ontwikkelaars + + + Could not parse -rpcbind value %s as network address + Niet mogelijk om -rpcbind waarde %s te verwerken als netwerk adres + + + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Fout bij laden wallet.dat: Portemonnee vereist een nieuwere versie van Hypercoin Core + + + Error reading from database, shutting down. + Fout bij het lezen van de database, afsluiten. + + + Error: Unsupported argument -tor found, use -onion. + Fout: Niet ondersteund argument -tor gevonden, gebruik -onion. + + + Fee (in HOT/kB) to add to transactions you send (default: %s) + Transactiekosten (in HOT/kB) om toe te voegen aan transacties die u verstuurd (standaard: %s) Information Informatie + + Initialization sanity check failed. Hypercoin Core is shutting down. + Initialisatie sanity check mislukt. Hypercoin Core is aan het afsluiten. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Ongeldig bedrag voor -maxtxfee=<amount>: '%s' + Invalid amount for -minrelaytxfee=<amount>: '%s' Ongeldig bedrag voor -minrelaytxfee=<bedrag>: '%s' @@ -3025,25 +3192,33 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comOngeldig bedrag voor -paytxfee=<bedrag>: '%s' (Minimum %s) - Keep at most <n> unconnectable blocks in memory (default: %u) - Houd maximaal <n> onverbonden blokken in geheugen (standaard: %u) + Invalid netmask specified in -whitelist: '%s' + Ongeldig netmask gespecificeerd in -whitelist: '%s' Keep at most <n> unconnectable transactions in memory (default: %u) Houd maximaal <n> onverbonden transacties in geheugen (standaard: %u) - Print block on startup, if found in block index - Toon block bij opstarten, wanneer gevonden in block index + Need to specify a port with -whitebind: '%s' + Verplicht een poort met -whitebind op te geven: '%s' - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - RPC SSL opties: (zie de Bitcoin Wiki voor SSL installatie-instructies) + Node relay options: + Node relay opties: + + + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + RPC SSL opties: (zie de Hypercoin Wiki voor SSL installatie-instructies) RPC server options: RPC server opties: + + RPC support for HTTP persistent connections (default: %d) + RPC ondersteuning voor HTTP persisten verbindingen (default: %d) + Randomly drop 1 of every <n> network messages Laat willekeurig 1 elke <n> netwerkberichten vallen @@ -3056,6 +3231,10 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comSend trace/debug info to console instead of debug.log file Stuur trace/debug-info naar de console in plaats van het debug.log bestand + + Send transactions as zero-fee transactions if possible (default: %u) + Verstuur transacties zonder verzendkosten indien mogelijk (standaard: %u) + Show all debugging options (usage: --help -help-debug) Toon alle foutopsporingsopties (gebruik: --help -help-debug) @@ -3080,10 +3259,18 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comTransaction amounts must be positive Transactiebedragen moeten positief zijn + + Transaction too large for fee policy + De transactie is te groot voor het toeslagenbeleid + Transaction too large Transactie te groot + + Unable to bind to %s on this computer (bind returned error %s) + Niet in staat om aan %s te binden op deze computer (bind gaf error %s) + Use UPnP to map the listening port (default: 1 when listening) Gebruik UPnP om de luisterende poort te mappen (standaard: 1 als er wordt geluisterd) @@ -3092,6 +3279,10 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comUsername for JSON-RPC connections Gebruikersnaam voor JSON-RPC-verbindingen + + Wallet needed to be rewritten: restart Hypercoin Core to complete + Portemonnee moest herschreven worden: Herstart Hypercoin Core om te voltooien + Warning Waarschuwing @@ -3100,6 +3291,14 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comWarning: This version is obsolete, upgrade required! Waarschuwing: Deze versie is verouderd, een upgrade is vereist! + + Warning: Unsupported argument -benchmark ignored, use -debug=bench. + Waarschuwing: Niet ondersteund argument -benchmark genegeerd, gebruik -debug=bench. + + + Warning: Unsupported argument -debugnet ignored, use -debug=net. + Waarschuwing: Niet ondersteund argument -debugnet genegeerd, gebruik -debug=net. + Zapping all transactions from wallet... Bezig met het zappen van alle transacties van de portemonnee... @@ -3148,6 +3347,22 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comError loading wallet.dat: Wallet corrupted Fout bij laden wallet.dat: Portemonnee corrupt + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = behoudt tx meta data bijv. account eigenaar en betalingsverzoek informatie, 2. sla tx meta data niet op) + + + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) + Leeg database-activiteit uit de geheugen pool naar schijf log elke <n> megabytes (standaard: %u) + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Hoe grondig de blokverificatie van -checkblocks is (0-4, standaard: %u) + + + Log transaction priority and fee per kB when mining blocks (default: %u) + Log transactieprioriteit en -kosten per kB bij het mijnen van blokken (standaard: %u) + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Onderhoud een volledige transactieindex, gebruikt door de getrawtransaction rpc call (standaard: %u) @@ -3164,6 +3379,10 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comUse separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Gebruik een aparte SOCKS5 proxy om 'Tor hidden services' te bereiken (standaard: %s) + + Acceptable ciphers (default: %s) + Geaccepteerde versleutelingen (standaard: %s) + Always query for peer addresses via DNS lookup (default: %u) Vind anderen door middel van een DNS-naslag (standaard: %u) @@ -3188,6 +3407,10 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comHow many blocks to check at startup (default: %u, 0 = all) Aantal te checken blokken bij het opstarten (standaard: %u, 0 = allemaal) + + Include IP addresses in debug output (default: %u) + IP-adressen toevoegen in de debuguitvoer (standaard: %u) + Invalid -proxy address: '%s' Ongeldig -proxy adres: '%s' @@ -3225,8 +3448,12 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comPrepend debug output met tijdstempel (standaard: %u) - Print block tree on startup (default: %u) - Toon block structuur bij opstarten (default: %u) + Relay and mine data carrier transactions (default: %u) + Gegevensdrager transacties relay en de mijnen (default: %u) + + + Relay non-P2SH multisig (default: %u) + Relay non-P2SH multisig (default: %u) Run a thread to flush wallet periodically (default: %u) @@ -3272,6 +3499,10 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comSpend unconfirmed change when sending transactions (default: %u) Besteed onbevestigd wisselgeld bij het versturen van transacties (standaard: %u) + + Stop running after importing blocks from disk (default: %u) + Stop uitvoeren na het importeren van blokken van de schijf (standaard: %u) + Threshold for disconnecting misbehaving peers (default: %u) Drempel om verbinding te verbreken naar zich misdragende peers (standaard: %u) @@ -3292,10 +3523,6 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comInvalid amount for -paytxfee=<amount>: '%s' Ongeldig bedrag voor -paytxfee=<bedrag>: '%s' - - Invalid amount - Ongeldig bedrag - Insufficient funds Ontoereikend saldo @@ -3328,13 +3555,9 @@ bijvoorbeeld: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.comDone loading Klaar met laden - - To use the %s option - Om de %s optie te gebruiken - Error Fout - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pam.ts b/src/qt/locale/bitcoin_pam.ts index b0a92a1578f02..b873f8a094bf6 100644 --- a/src/qt/locale/bitcoin_pam.ts +++ b/src/qt/locale/bitcoin_pam.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Pindutan meng makatidduang besis ban ayalilan me ing address o label + Right-click to edit address or label + I-right click ban alilan ing address o libel Create a new address @@ -58,12 +58,12 @@ Address king pamag-Tanggap - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Reni reng kekang Bitcoin address king pamagpadalang kabayaran. Lawan mulang masalese reng alaga ampo ing address na ning tumanggap bayu ka magpadalang barya. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Reni reng kekang Hypercoin address king pamagpadalang kabayaran. Lawan mulang masalese reng alaga ampo ing address na ning tumanggap bayu ka magpadalang barya. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Reni reng kekang Bitcoin addresses keng pamananggap bayad. Rerekomenda mi na gumamit kang bayung address keng balang transaksiyon. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Reni reng kekang Hypercoin addresses keng pamananggap bayad. Rerekomenda mi na gumamit kang bayung address keng balang transaksiyon. Copy &Label @@ -144,8 +144,8 @@ Kumpirman ya ing wallet encryption - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Kapabaluan: Istung in-encrypt me ing kekang wallet at meala ya ing passphrase na, ma-<b>ALA NO NGAN RING KEKANG BITCOINS</b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Kapabaluan: Istung in-encrypt me ing kekang wallet at meala ya ing passphrase na, ma-<b>ALA NO NGAN RING KEKANG HYPERCOINS</b> Are you sure you wish to encrypt your wallet? @@ -164,8 +164,8 @@ Me-encrypt ne ing wallet - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Ing Bitcoin ngeni magsara ya ban ayari ing proseso ning pamag-encrypt. Tandanan yu king pamag-encrypt wallet, ali nala aprotektan king kabuuan reng bitcoins yu kareng malware a kasalunsungan atiu kareng computer yu. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Ing Hypercoin ngeni magsara ya ban ayari ing proseso ning pamag-encrypt. Tandanan yu king pamag-encrypt wallet, ali nala aprotektan king kabuuan reng hypercoins yu kareng malware a kasalunsungan atiu kareng computer yu. Wallet encryption failed @@ -255,12 +255,12 @@ &Alilan ing Passphrase... - Send coins to a Bitcoin address - Magpadalang barya king Bitcoin address + Send coins to a Hypercoin address + Magpadalang barya king Hypercoin address - Modify configuration options for Bitcoin - Alilan ing pipamilian konpigurasion para keng Bitcoin + Modify configuration options for Hypercoin + Alilan ing pipamilian konpigurasion para keng Hypercoin Backup wallet to another location @@ -283,8 +283,8 @@ &Beripikan ing message... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -315,8 +315,8 @@ Gamit para king Tabs - Bitcoin Core - Kapilubluban ning Bitcoin + Hypercoin Core + Kapilubluban ning Hypercoin Last received block was generated %1 ago. @@ -448,8 +448,8 @@ Address: %4 Ing pepalub yung address "%1" ati na yu king aklat dareng address - The entered address "%1" is not a valid Bitcoin address. - Ing pepalub yung address "%1" ali ya katanggap-tanggap a Bitcoin address. + The entered address "%1" is not a valid Hypercoin address. + Ing pepalub yung address "%1" ali ya katanggap-tanggap a Hypercoin address. Could not unlock wallet. @@ -466,8 +466,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - Kapilubluban ning Bitcoin + Hypercoin Core + Kapilubluban ning Hypercoin version @@ -509,8 +509,8 @@ Address: %4 Malaus ka - Bitcoin Core - Kapilubluban ning Bitcoin + Hypercoin Core + Kapilubluban ning Hypercoin Error @@ -531,20 +531,20 @@ Address: %4 &Pun - Automatically start Bitcoin after logging in to the system. - Umpisan yang antimu ing Bitcoin kaibat mekapag-log in king sistema. + Automatically start Hypercoin after logging in to the system. + Umpisan yang antimu ing Hypercoin kaibat mekapag-log in king sistema. - &Start Bitcoin on system login - &Umpisan ya ing Bitcoin king pamag-log-in na ning sistema. + &Start Hypercoin on system login + &Umpisan ya ing Hypercoin king pamag-log-in na ning sistema. &Network &Network - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Ibuklat yang antimanu ing Bitcoin client port king router. Gagana yamu ini istung ing router mu susuporta yang UPnP at magsilbi ya. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Ibuklat yang antimanu ing Hypercoin client port king router. Gagana yamu ini istung ing router mu susuporta yang UPnP at magsilbi ya. Map port using &UPnP @@ -591,8 +591,8 @@ Address: %4 Amanu na ning user interface: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Ing amanu na ning user interface maliari yang i-ayus o ilage keni. Ing ayus a ini magsilbi yamu istung pesibayuan meng pasibayu ing Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Ing amanu na ning user interface maliari yang i-ayus o ilage keni. Ing ayus a ini magsilbi yamu istung pesibayuan meng pasibayu ing Hypercoin. &Unit to show amounts in: @@ -626,8 +626,8 @@ Address: %4 Form - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Ing makaltong impormasion mapalyaring luma ne. Ing kekang wallet otomatiku yang mag-synchronize keng Bitcoin network istung mekakonekta ne king network, oneng ing prosesung ini ali ya pa kumpletu. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Ing makaltong impormasion mapalyaring luma ne. Ing kekang wallet otomatiku yang mag-synchronize keng Hypercoin network istung mekakonekta ne king network, oneng ing prosesung ini ali ya pa kumpletu. Your current spendable balance @@ -745,16 +745,16 @@ Address: %4 Debug log file - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Ibuklat ing Bitcoin debug log file menibat king kasalungsungan data directory. Magluat ya ining pilan segundu para kareng mamaragul a log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Ibuklat ing Hypercoin debug log file menibat king kasalungsungan data directory. Magluat ya ining pilan segundu para kareng mamaragul a log files. Clear console I-Clear ing console - Welcome to the Bitcoin RPC console. - Malaus kayu king Bitcoin RPC console. + Welcome to the Hypercoin RPC console. + Malaus kayu king Hypercoin RPC console. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -958,8 +958,8 @@ Address: %4 Kopyan ing kasalungsungan pirma king system clipboard - Sign the message to prove you own this Bitcoin address - Pirman ing mensayi ban patune na keka ya ining Bitcoin address + Sign the message to prove you own this Hypercoin address + Pirman ing mensayi ban patune na keka ya ining Hypercoin address Sign &Message @@ -978,8 +978,8 @@ Address: %4 &Beripikan ing Mensayi - Verify the message to ensure it was signed with the specified Bitcoin address - Beripikan ing mensayi ban asiguradu a me pirma ya ini gamit ing mepiling Bitcoin address + Verify the message to ensure it was signed with the specified Hypercoin address + Beripikan ing mensayi ban asiguradu a me pirma ya ini gamit ing mepiling Hypercoin address Verify &Message @@ -1045,8 +1045,8 @@ Address: %4 SplashScreen - Bitcoin Core - Kapilubluban ning Bitcoin + Hypercoin Core + Kapilubluban ning Hypercoin [testnet] @@ -1542,10 +1542,6 @@ Address: %4 Invalid amount for -paytxfee=<amount>: '%s' Eya maliari ing alaga keng -paytxfee=<amount>: '%s' - - Invalid amount - Ing alaga e ya katanggap-tanggap - Insufficient funds Kulang a pondo @@ -1578,10 +1574,6 @@ Address: %4 Done loading Yari ne ing pamag-load - - To use the %s option - Para agamit ing %s a pimamilian - Error Mali diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts index c53a9970efeeb..4e91612789734 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Kliknij dwukrotnie, aby edytować adres lub etykietę + Right-click to edit address or label + Kliknij prawym przyciskiem myszy żeby edytować adres lub etykietę Create a new address @@ -47,11 +47,11 @@ Choose the address to send coins to - Wybierz adres żeby wysłać bitcoins + Wybierz adres, na który chcesz wysłać monety Choose the address to receive coins with - Wybierz adres do otrzymania monet. + Wybierz adres, na który chcesz otrzymać monety C&hoose @@ -66,12 +66,12 @@ Adres odbiorczy - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Tutaj znajdują się Twoje adresy Bitcoin do wysyłania płatności. Zawsze sprawdzaj ilość i adres odbiorcy przed wysyłką monet. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Tutaj znajdują się adresy Hypercoin, na które wysyłasz płatności. Zawsze sprawdzaj ilość i adres odbiorcy przed wysyłką monet. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - To twoje adresy bitcoin do odbierania płatności. Zaleca się używanie nowych adresów odbiorczych dla każdej tranzakcji. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + To twoje adresy Hypercoin, na które otrzymujesz płatności. Zaleca się używanie nowych adresów odbiorczych dla każdej transakcji. Copy &Label @@ -95,7 +95,7 @@ There was an error trying to save the address list to %1. Please try again. - Wystąpił błąd podczas próby zapisu listy adresów %1. Proszę spróbować ponownie + Wystąpił błąd podczas próby zapisu listy adresów do %1. Proszę spróbować ponownie. @@ -110,7 +110,7 @@ (no label) - (bez etykiety) + (brak etykiety) @@ -137,7 +137,7 @@ This operation needs your wallet passphrase to unlock the wallet. - Ta operacja wymaga hasła do portfela ażeby odblokować portfel. + Ta operacja wymaga hasła do portfela aby odblokować portfel. Unlock wallet @@ -164,8 +164,8 @@ Potwierdź szyfrowanie portfela - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Uwaga: Jeśli zaszyfrujesz swój portfel i zgubisz hasło to <b>STRACISZ WSZYSTKIE SWOJE BITCOIN'Y</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Uwaga: Jeśli zaszyfrujesz swój portfel i zgubisz hasło to <b>STRACISZ WSZYSTKIE SWOJE HYPERCOIN'Y</b>! Are you sure you wish to encrypt your wallet? @@ -177,15 +177,19 @@ Warning: The Caps Lock key is on! - Uwaga: Klawisz Caps Lock jest włączony + Uwaga: Klawisz Caps Lock jest włączony! Wallet encrypted Portfel zaszyfrowany - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Program Bitcoin zamknie się aby dokończyć proces szyfrowania. Pamiętaj, że szyfrowanie portfela nie zabezpiecza w pełni Twoich bitcoinów przed kradzieżą przez wirusy lub trojany mogące zainfekować Twój komputer. + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + Wprowadź nowe hasło do portfela.<br/>Proszę używać hasła złożonego z <b>10 lub więcej losowych znaków</b> lub <b>ośmiu lub więcej słów.</b> + + + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Program Hypercoin zamknie się aby dokończyć proces szyfrowania. Pamiętaj, że szyfrowanie portfela nie zabezpiecza w pełni Twoich hypercoinów przed kradzieżą przez wirusy mogące zainfekować Twój komputer. Wallet encryption failed @@ -236,7 +240,7 @@ Show general overview of wallet - Pokazuje ogólny zarys portfela + Pokazuje ogólny widok portfela &Transactions @@ -280,19 +284,19 @@ &Sending addresses... - Adres wysyłania + Adresy wysyłania... &Receiving addresses... - Adres odbiorczy + Adresy odbioru... Open &URI... Otwórz URI... - Bitcoin Core client - Rdzeń klienta Bitcoin + Hypercoin Core client + Rdzeń klienta Hypercoin Importing blocks from disk... @@ -303,12 +307,12 @@ Ponowne indeksowanie bloków na dysku... - Send coins to a Bitcoin address - Wyślij monety na adres Bitcoin + Send coins to a Hypercoin address + Wyślij monety na adres Hypercoin - Modify configuration options for Bitcoin - Zmienia opcje konfiguracji bitcoina + Modify configuration options for Hypercoin + Zmienia opcje konfiguracji hypercoina Backup wallet to another location @@ -331,8 +335,8 @@ &Zweryfikuj wiadomość... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -347,8 +351,8 @@ Odbie&rz - Show information about Bitcoin Core - Pokaż informacje o Rdzeniu Bitcoin + Show information about Hypercoin Core + Pokaż informacje o Rdzeniu Hypercoin &Show / Hide @@ -360,15 +364,15 @@ Encrypt the private keys that belong to your wallet - Szyfruj klucze prywatne, które są powiązane z twoim portfelem + Szyfruj klucze prywatne, które są w Twoim portfelu - Sign messages with your Bitcoin addresses to prove you own them + Sign messages with your Hypercoin addresses to prove you own them Podpisz wiadomości swoim adresem aby udowodnić jego posiadanie - Verify messages to ensure they were signed with specified Bitcoin addresses - Zweryfikuj wiadomość, aby upewnić się, że została podpisana odpowiednim adresem Bitcoin. + Verify messages to ensure they were signed with specified Hypercoin addresses + Zweryfikuj wiadomość, aby upewnić się, że została podpisana podanym adresem Hypercoin. &File @@ -387,36 +391,40 @@ Pasek zakładek - Bitcoin Core - Rdzeń BitCoin + Hypercoin Core + Rdzeń Hypercoin - Request payments (generates QR codes and bitcoin: URIs) - Żądaj płatności (generuje kod QR oraz bitcoin URI) + Request payments (generates QR codes and hypercoin: URIs) + Żądaj płatności (generuje kod QR oraz hypercoin URI) - &About Bitcoin Core - &O Bitcoin Core + &About Hypercoin Core + &O Hypercoin Core Show the list of used sending addresses and labels - Pokaż listę użytych adresów wysyłających i etykiety + Pokaż listę adresów i etykiet użytych do wysyłania Show the list of used receiving addresses and labels - Pokaż listę użytych adresów odbiorczych i etykiety + Pokaż listę adresów i etykiet użytych do odbierania + + + Open a hypercoin: URI or payment request + Otwórz URI hypercoin: lub żądanie zapłaty &Command-line options - &Opcje konsoli + &Opcje linii komend - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Pokaż pomoc Rdzenia Bitcoin, aby zobaczyć listę wszystkich opcji linii poleceń + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Pokaż pomoc Rdzenia Hypercoin, aby zobaczyć listę wszystkich opcji linii poleceń - %n active connection(s) to Bitcoin network - %n aktywne połączenie do sieci Bitcoin%n aktywne połączenia do sieci Bitcoin%n aktywnych połączeń do sieci Bitcoin + %n active connection(s) to Hypercoin network + %n aktywne połączenie do sieci Hypercoin%n aktywne połączenia do sieci Hypercoin%n aktywnych połączeń do sieci Hypercoin No block source available... @@ -470,9 +478,13 @@ Up to date Aktualny + + Processed %n blocks of transaction history. + Przetworzono %n blok historii transakcji.Przetworzono %n bloki historii transakcji.Przetworzono %n bloków historii transakcji. + Catching up... - Łapanie bloków... + Synchronizuję się... Sent transaction @@ -496,7 +508,7 @@ Adres: %4 Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Portfel jest <b>zaszyfrowany</b> i obecnie <b>niezablokowany</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>odblokowany</b> Wallet is <b>encrypted</b> and currently <b>locked</b> @@ -507,11 +519,15 @@ Adres: %4 ClientModel Network Alert - Sieć Alert + Komunikat Sieci CoinControlDialog + + Coin Selection + Wybór monet + Quantity: Ilość: @@ -532,6 +548,10 @@ Adres: %4 Fee: Opłata: + + Dust: + Pył: + After Fee: Po opłacie: @@ -556,6 +576,14 @@ Adres: %4 Amount Kwota + + Received with label + Otrzymano z opisem + + + Received with address + Otrzymano z adresem + Date Data @@ -590,11 +618,11 @@ Adres: %4 Lock unspent - Zablokuj + Zablokuj niewydane Unlock unspent - Odblokuj + Odblokuj niewydane Copy quantity @@ -616,6 +644,10 @@ Adres: %4 Copy priority Skopiuj priorytet + + Copy dust + Kopiuj pył + Copy change Skopiuj resztę @@ -664,6 +696,10 @@ Adres: %4 none żaden + + Can vary +/- %1 satoshi(s) per input. + Waha się +/- %1 satoshi na wejście. + yes tak @@ -674,7 +710,7 @@ Adres: %4 This label turns red, if the transaction size is greater than 1000 bytes. - Etykieta staje się czerwona kiedy transakcja jest większa niż 1000 bajtów. + Ta etykieta staje się czerwona, kiedy transakcja jest większa niż 1000 bajtów. This means a fee of at least %1 per kB is required. @@ -686,7 +722,7 @@ Adres: %4 Transactions with higher priority are more likely to get included into a block. - Transakcje o wyższym priorytecie zostają szybciej dołączone do bloku. + Transakcje o wyższym priorytecie zwykle szybciej zostają dołączone do bloku. This label turns red, if the priority is smaller than "medium". @@ -698,7 +734,7 @@ Adres: %4 (no label) - (bez etykiety) + (brak etykiety) change from %1 (%2) @@ -733,7 +769,7 @@ Adres: %4 New receiving address - Nowy adres odbiorczy + Nowy adres otrzymywania New sending address @@ -752,8 +788,8 @@ Adres: %4 Wprowadzony adres "%1" już istnieje w książce adresowej. - The entered address "%1" is not a valid Bitcoin address. - Wprowadzony adres "%1" nie jest poprawnym adresem Bitcoin. + The entered address "%1" is not a valid Hypercoin address. + Wprowadzony adres "%1" nie jest poprawnym adresem Hypercoin. Could not unlock wallet. @@ -768,7 +804,7 @@ Adres: %4 FreespaceChecker A new data directory will be created. - Utworzono nowy folder danych. + Będzie utworzony nowy folder danych. name @@ -780,7 +816,7 @@ Adres: %4 Path already exists, and is not a directory. - Ścieżka już istnieje i nie wskazuje na folder. + Ścieżka już istnieje i nie jest katalogiem. Cannot create data directory here. @@ -790,8 +826,8 @@ Adres: %4 HelpMessageDialog - Bitcoin Core - Rdzeń BitCoin + Hypercoin Core + Rdzeń Hypercoin version @@ -802,8 +838,8 @@ Adres: %4 (%1-bit) - About Bitcoin Core - O Bitcoin Core + About Hypercoin Core + O Hypercoin Core Command-line options @@ -819,7 +855,7 @@ Adres: %4 UI options - UI opcje + Opcje UI Set language, for example "de_DE" (default: system locale) @@ -829,6 +865,10 @@ Adres: %4 Start minimized Uruchom zminimalizowany + + Set SSL root certificates for payment request (default: -system-) + Ustaw certyfikaty główne SSL dla żądań płatności (domyślnie: -system-) + Show splash screen on startup (default: 1) Pokazuj okno powitalne przy starcie (domyślnie: 1) @@ -845,16 +885,16 @@ Adres: %4 Witaj - Welcome to Bitcoin Core. - Witam w Bitcoin Core + Welcome to Hypercoin Core. + Witam w Hypercoin Core - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Ponieważ jest to pierwsze uruchomienie programu, możesz wybrać gdzie będą przechowywane informacje. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Ponieważ jest to pierwsze uruchomienie programu, możesz wybrać gdzie Hypercoin Core będzie przechowywał swoje dane. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Program pobierze i będzie przechowywał kopię łańcucha bloków Bitcoin. W wybranym katalogu musi być przynajmniej %1GB miejsca, a z czasem wielkość danych będzie rosła. Portfel będzie przechowywany w tym samym katalogu. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Program pobierze i będzie przechowywał kopię łańcucha bloków Hypercoin. W wybranym katalogu musi być przynajmniej %1GB miejsca, a z czasem ilość danych będzie rosła. Portfel będzie przechowywany w tym samym katalogu. Use the default data directory @@ -865,8 +905,8 @@ Adres: %4 Użyj wybranego folderu dla danych - Bitcoin Core - Rdzeń BitCoin + Hypercoin Core + Rdzeń Hypercoin Error: Specified data directory "%1" cannot be created. @@ -876,12 +916,20 @@ Adres: %4 Error Błąd - + + %n GB of free space available + %n GB dostępnego wolnego miejsca%n GB dostępnego wolnego miejsca%n GB dostępnego wolnego miejsca + + + (of %n GB needed) + (z %n GB potrzebnego)(z %n GB potrzebnych)(z %n GB potrzebnych) + + OpenURIDialog Open URI - Otwórz URI: + Otwórz URI Open payment request from URI or file @@ -911,12 +959,16 @@ Adres: %4 Główne - Automatically start Bitcoin after logging in to the system. - Automatycznie uruchamia Bitcoin po zalogowaniu do systemu. + Automatically start Hypercoin after logging in to the system. + Automatycznie uruchamia Hypercoin po zalogowaniu do systemu. - &Start Bitcoin on system login - Uruchamiaj Bitcoin wraz z zalogowaniem do &systemu + &Start Hypercoin on system login + Uruchamiaj Hypercoin wraz z zalogowaniem do &systemu + + + Size of &database cache + Wielkość bufora bazy &danych MB @@ -938,13 +990,21 @@ Adres: %4 IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) Adres IP serwera proxy (np. IPv4: 127.0.0.1 / IPv6: ::1) + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Zewnętrzne URL podglądu transakcji (np. eksplorator bloków), które będą wyświetlały się w menu kontekstowym, w zakładce transakcji. %s będzie zamieniany w adresie na hash transakcji. Oddziel wiele adresów pionową kreską |. + + + Third party transaction URLs + Zewnętrzne URL podglądu transakcji + Active command-line options that override above options: Aktywne opcje linii komend, które nadpisują powyższe opcje: Reset all client options to default. - Przywróć domyślne wszystkie ustawienia klienta. + Przywróć wszystkie domyślne ustawienia klienta. &Reset Options @@ -954,6 +1014,10 @@ Adres: %4 &Network &Sieć + + (0 = auto, <0 = leave that many cores free) + (0 = automatycznie, <0 = zostaw tyle wolnych rdzeni) + W&allet Portfel @@ -963,13 +1027,33 @@ Adres: %4 Ekspert - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Automatycznie otwiera port klienta Bitcoin na routerze. Ta opcja dzieła tylko jeśli twój router wspiera UPnP i jest ono włączone. + Enable coin &control features + Włącz funk&cje kontoli monet + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Jeżeli wyłączysz możliwość wydania niezatwierdzonej wydanej reszty, reszta z transakcji nie będzie mogła zostać wykorzystana, dopóki ta transakcja nie będzie miała przynajmniej jednego potwierdzenia. To także ma wpływ na obliczanie Twojego salda. + + + &Spend unconfirmed change + Wydaj niepotwierdzoną re&sztę + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automatycznie otwiera port klienta Hypercoin na routerze. Ta opcja dzieła tylko jeśli twój router wspiera UPnP i jest ono włączone. Map port using &UPnP Mapuj port używając &UPnP + + Connect to the Hypercoin network through a SOCKS5 proxy. + Połącz się z siecią Hypercoin poprzez proxy SOCKS5. + + + &Connect through SOCKS5 proxy (default proxy): + Połącz przez proxy SO&CKS5 (domyślne proxy): + Proxy &IP: Proxy &IP: @@ -1011,8 +1095,8 @@ Adres: %4 Język &Użytkownika: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Można tu ustawić język interfejsu uzytkownika. Żeby ustawienie przyniosło skutek trzeba uruchomić ponownie Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Można tu ustawić język interfejsu uzytkownika. Żeby ustawienie przyniosło skutek trzeba uruchomić ponownie Hypercoin. &Unit to show amounts in: @@ -1022,6 +1106,10 @@ Adres: %4 Choose the default subdivision unit to show in the interface and when sending coins. Wybierz podział jednostki pokazywany w interfejsie oraz podczas wysyłania monet + + Whether to show coin control features or not. + Wybierz pokazywanie lub nie funkcji kontroli monet. + &OK &OK @@ -1066,8 +1154,12 @@ Adres: %4 Formularz - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Wyświetlana informacja może być nieaktualna. Twój portfel synchronizuje się automatycznie z siecią bitcoin, zaraz po tym jak uzyskano połączenie, ale proces ten nie został jeszcze ukończony. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Wyświetlana informacja może być nieaktualna. Twój portfel synchronizuje się automatycznie z siecią hypercoin, zaraz po tym jak uzyskano połączenie, ale proces ten nie został jeszcze ukończony. + + + Watch-only: + Tylko podglądaj: Available: @@ -1091,7 +1183,11 @@ Adres: %4 Mined balance that has not yet matured - Balans wydobycia, który jeszcze nie dojrzał + Balans wydobytych monet, które jeszcze nie dojrzały + + + Balances + Salda Total: @@ -1101,9 +1197,33 @@ Adres: %4 Your current total balance Twoje obecne saldo + + Your current balance in watch-only addresses + Twoje obecne saldo na podglądanym adresie + + + Spendable: + Możliwe do wydania: + + + Recent transactions + Ostatnie transakcje + + + Unconfirmed transactions to watch-only addresses + Niepotwierdzone transakcje na podglądanych adresach + + + Mined balance in watch-only addresses that has not yet matured + Wykopane monety na podglądanych adresach które jeszcze nie dojrzały + + + Current total balance in watch-only addresses + Łączna kwota na podglądanych adresach + out of sync - desynchronizacja + nie zsynchronizowany @@ -1116,6 +1236,22 @@ Adres: %4 Invalid payment address %1 błędny adres płatności %1 + + Payment request rejected + Żądanie płatności odrzucone + + + Payment request network doesn't match client network. + Sieć żądania płatności nie odpowiada sieci klienta. + + + Payment request has expired. + Zażądanie płatności się przedawniło. + + + Payment request is not initialized. + Żądanie płatności nie jest zainicjowane. + Requested payment amount of %1 is too small (considered dust). Żądana kwota %1 jest za niska (uznano za kurz). @@ -1125,17 +1261,49 @@ Adres: %4 Błąd żądania płatności - Cannot start bitcoin: click-to-pay handler - Nie można rozpocząć bitcoin: kliknij-by-zapłacić opiekunowi + Cannot start hypercoin: click-to-pay handler + Nie można uruchomić protokołu hypercoin: kliknij-by-zapłacić + + + Payment request fetch URL is invalid: %1 + URL pobrania żądania zapłaty jest nieprawidłowe: %1 + + + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI nie może zostać przetworzony! Może to być spowodowane nieprawidłowym adresem Hypercoin lub uszkodzonymi parametrami URI. + + + Payment request file handling + Przechwytywanie plików żądania płatności + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Plików żądania płatności nie może zostać odczytany. Mogło to być spowodowane nieprawidłowym plikiem żądania płatności. + + + Unverified payment requests to custom payment scripts are unsupported. + Niezweryfikowane żądania płatności do własnych skryptów płatności są niewspierane. Refund from %1 Zwrot z %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Żądanie płatności %1 jest zbyt duże (%2 bajtów, dozwolone %3 bajtów). + + + Payment request DoS protection + Zabezpieczenie żądania płatności przed atakiem DoS + Error communicating with %1: %2 Błąd komunikacji z %1 : %2 + + Payment request cannot be parsed! + Żądanie płatności nie może zostać przetworzone. + Bad response from server %1 Błędna odpowiedź z serwera %1 @@ -1151,13 +1319,33 @@ Adres: %4 PeerTableModel - + + User Agent + Aplikacja kliencka + + + Address/Hostname + Adres/Nazwa hosta + + + Ping Time + Czas odpowiedzi + + QObject Amount Kwota + + Enter a Hypercoin address (e.g. %1) + Wprowadź adres Hypercoin (np. %1) + + + %1 d + %1 d + %1 h %1 h @@ -1166,11 +1354,31 @@ Adres: %4 %1 m %1 m + + %1 s + %1 s + + + NETWORK + SIEĆ + + + UNKNOWN + NIEZNANY + + + None + Żaden + N/A NIEDOSTĘPNE - + + %1 ms + %1 ms + + QRImageWidget @@ -1220,6 +1428,10 @@ Adres: %4 Using OpenSSL version Używana wersja OpenSSL + + Using BerkeleyDB version + Używana wersja BerkeleyDB + Startup time Czas uruchomienia @@ -1238,12 +1450,80 @@ Adres: %4 Block chain - Ciąg bloków + Łańcuch bloków Current number of blocks Aktualna liczba bloków + + Received + Otrzymane + + + Sent + Wysłane + + + &Peers + &Węzły + + + Select a peer to view detailed information. + Wybierz węzeł żeby zobaczyć szczegóły. + + + Direction + Kierunek + + + Version + Wersja + + + User Agent + Aplikacja kliencka + + + Services + Usługi + + + Starting Height + Początkowa wysokość + + + Sync Height + Zsynchronizowana wysokość + + + Ban Score + Punkty karne + + + Connection Time + Czas połączenia + + + Last Send + Ostatnio wysłano + + + Last Receive + Ostatnio odebrano + + + Bytes Sent + Bajtów wysłano + + + Bytes Received + Bajtów pobrano + + + Ping Time + Czas odpowiedzi + Last block time Czas ostatniego bloku @@ -1258,7 +1538,7 @@ Adres: %4 &Network Traffic - $Ruch sieci + Ruch sieci &Clear @@ -1285,16 +1565,16 @@ Adres: %4 Plik logowania debugowania - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Otwórz plik logowania debugowania Bitcoin z obecnego katalogu z danymi. Może to potrwać kilka sekund przy większych plikach. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Otwórz plik logowania debugowania Hypercoin z obecnego katalogu z danymi. Może to potrwać kilka sekund przy większych plikach. Clear console Wyczyść konsolę - Welcome to the Bitcoin RPC console. - Witam w konsoli Bitcoin RPC + Welcome to the Hypercoin RPC console. + Witam w konsoli Hypercoin RPC. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1320,7 +1600,31 @@ Adres: %4 %1 GB %1 GB - + + via %1 + przez %1 + + + never + nigdy + + + Inbound + Wejściowy + + + Outbound + Wyjściowy + + + Unknown + Nieznany + + + Fetching... + Pobieram... + + ReceiveCoinsDialog @@ -1337,7 +1641,11 @@ Adres: %4 Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Użyj jeden z poprzednio użytych adresów odbiorczych. Podczas ponownego używania adresów występują problemy z bezpieczeństwem i prywatnością. Nie korzystaj z tej opcji, chyba że odtwarzasz żądanie płatności wykonane już wcześniej. + Użyj jednego z poprzednio użytych adresów odbiorczych. Podczas ponownego używania adresów występują problemy z bezpieczeństwem i prywatnością. Nie korzystaj z tej opcji, chyba że odtwarzasz żądanie płatności wykonane już wcześniej. + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Opcjonalna wiadomość do dołączenia do żądania płatności, która będzie wyświetlana, gdy żądanie zostanie otwarte. Uwaga: wiadomość ta nie zostanie wysłana wraz z płatnością w sieci Hypercoin. An optional label to associate with the new receiving address. @@ -1347,9 +1655,13 @@ Adres: %4 Use this form to request payments. All fields are <b>optional</b>. Użyj tego formularza do zażądania płatności. Wszystkie pola są <b>opcjonalne</b>. + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Opcjonalna kwota by zażądać. Zostaw puste lub zero by nie zażądać konkretnej kwoty. + Clear all fields of the form. - Wyczyść pola formularza + Wyczyść pola formularza. Clear @@ -1363,6 +1675,10 @@ Adres: %4 &Request payment &Żądaj płatności + + Show the selected request (does the same as double clicking an entry) + Pokaż wybrane żądanie (robi to samo co dwukrotne kliknięcie pozycji) + Show Pokaż @@ -1408,7 +1724,7 @@ Adres: %4 Request payment to %1 - Żądaj płatności do %1 + Zażądaj płatności do %1 Payment information @@ -1480,6 +1796,10 @@ Adres: %4 Send Coins Wyślij Monety + + Coin Control Features + Funkcje kontroli monet + Inputs... Wejścia... @@ -1490,7 +1810,7 @@ Adres: %4 Insufficient funds! - Niewystarczające środki + Niewystarczające środki! Quantity: @@ -1522,7 +1842,83 @@ Adres: %4 If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Kiedy ta opcja jest wybrana, ale adres reszty jest pusty lub nieprawidłowy to reszta będzie wysyłana na adres nowo-wygenerowany. + Kiedy ta opcja zostanie wybrana, a adres reszty będzie pusty lub nieprawidłowy, to reszta będzie wysłana na nowo wygenerowany adres. + + + Custom change address + Własny adres wydania reszty + + + Transaction Fee: + Opłata transakcyjna: + + + Choose... + Wybierz... + + + collapse fee-settings + zwiń opcje opłaty + + + Minimize + Minimalizuj + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Jeżeli własna opłata zostanie ustawiona na 1000 satoshi, a transakcja będzie miała tylko 250 bajtów, to "za kilobajt" płaci tylko 250 satoshi, podczas gdy, "przynajmniej" płaci 1000 satoshi. Przy transakcjach większych niż kilobajt, w obu przypadkach płaci za każdy kilobajt. + + + per kilobyte + za kilobajt + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Jeżeli własna opłata zostanie ustawiona na 1000 satoshi, a transakcja będzie miała tylko 250 bajtów, to "za kilobajt" płaci tylko 250 satoshi, podczas gdy, "razem przynajmniej" płaci 1000 satoshi. Przy transakcjach większych niż kilobajt, w obu przypadkach płaci za każdy kilobajt. + + + total at least + razem przynajmniej + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Zapłacenie tylko minimalnej opłaty jest nadal wystarczające, dopóki jest mniejszy wolumen transakcji niż miejsca w blokach. Należy jednak mieć świadomość, że może skończyć się to niezatwierdzeniem nigdy transakcji, gdy jest większe zapotrzebowanie na transakcje hypercoina niż sieć może przetworzyć. + + + (read the tooltip) + (przeczytaj podpowiedź) + + + Recommended: + Zalecane: + + + Custom: + Własna: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Sprytne opłaty nie są jeszcze zainicjowane. Trwa to zwykle kilka bloków...) + + + Confirmation time: + Czas potwierdzenia: + + + normal + normalnie + + + fast + szybko + + + Send as zero-fee transaction if possible + Wyślij bez opłaty jeżeli to możliwe + + + (confirmation may take longer) + (potwierdzenie może potrwać dłużej) Send to multiple recipients at once @@ -1530,11 +1926,15 @@ Adres: %4 Add &Recipient - Dodaj Odbio&rce + Dodaj Odbio&rcę Clear all fields of the form. - Wyczyść wszystkie pola formularza + Wyczyść wszystkie pola formularza. + + + Dust: + Pył: Clear &All @@ -1589,8 +1989,8 @@ Adres: %4 Skopiuj resztę - Total Amount %1 (= %2) - Łączna kwota %1 (= %2) + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + Całkowita kwota %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> or @@ -1598,7 +1998,7 @@ Adres: %4 The recipient address is not valid, please recheck. - Adres odbiorcy jest nieprawidłowy, proszę poprawić + Adres odbiorcy jest nieprawidłowy, proszę poprawić. The amount to pay must be larger than 0. @@ -1614,7 +2014,7 @@ Adres: %4 Duplicate address found, can only send to each address once per send operation. - Znaleziono powtórzony adres, można wysłać tylko raz na każdy adres podczas operacji wysyłania. + Znaleziono powtórzony adres, można wysłać tylko raz na każdy adres podczas jednej operacji wysyłania. Transaction creation failed! @@ -1625,8 +2025,16 @@ Adres: %4 Transakcja została odrzucona! Może się to zdarzyć jeśli część monet z portfela została już wydana używając kopii pliku wallet.dat i nie zostało to tutaj uwzględnione. - Warning: Invalid Bitcoin address - Ostrzeżenie: nieprawidłowy adres Bitcoin + A fee higher than %1 is considered an insanely high fee. + Opłata wyższa niż %1 jest uważana za szalenie wysoką. + + + Pay only the minimum fee of %1 + Płac tylko minimalna opłatę %1 + + + Warning: Invalid Hypercoin address + Ostrzeżenie: nieprawidłowy adres Hypercoin (no label) @@ -1634,7 +2042,11 @@ Adres: %4 Warning: Unknown change address - Ostrzeżenie: Nieznany adres + Ostrzeżenie: Nieznany adres reszty + + + Copy dust + Kopiuj kurz Are you sure you want to send? @@ -1671,6 +2083,10 @@ Adres: %4 This is a normal payment. To jest standardowa płatność + + The Hypercoin address to send the payment to + Adres Hypercoin gdzie wysłać płatność + Alt+A Alt+A @@ -1693,12 +2109,16 @@ Adres: %4 This is a verified payment request. - Zweryfikowano żądanie zapłaty. + To żądanie zapłaty jest zweryfikowane. Enter a label for this address to add it to the list of used addresses Wprowadź etykietę dla tego adresu by dodać go do listy użytych adresów + + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Wiadomość, która została dołączona do URI hypercoin:, która będzie przechowywana wraz z transakcją w celach informacyjnych. Uwaga: Ta wiadomość nie będzie rozsyłana w sieci Hypercoin. + This is an unverified payment request. To żądanie zapłaty nie zostało zweryfikowane. @@ -1715,8 +2135,8 @@ Adres: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core się zamyka... + Hypercoin Core is shutting down... + Hypercoin Core się zamyka... Do not shut down the computer until this window disappears. @@ -1737,6 +2157,10 @@ Adres: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Możesz podpisywać wiadomości swoimi adresami aby udowodnić, że jesteś ich właścicielem. Uważaj, aby nie podpisywać niczego co wzbudza Twoje podejrzenia, ponieważ ktoś może stosować phishing próbując nakłonić Cię do ich podpisania. Akceptuj i podpisuj tylko w pełni zrozumiałe komunikaty i wiadomości. + + The Hypercoin address to sign the message with + Adres Hypercoin, za pomocą którego podpisać wiadomość + Choose previously used address Wybierz wcześniej użyty adres @@ -1755,7 +2179,7 @@ Adres: %4 Enter the message you want to sign here - Wprowadź wiadomość, którą chcesz podpisać, tutaj + Tutaj wprowadź wiadomość, którą chcesz podpisać Signature @@ -1766,7 +2190,7 @@ Adres: %4 Kopiuje aktualny podpis do schowka systemowego - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address Podpisz wiadomość aby dowieść, że ten adres jest twój @@ -1790,8 +2214,12 @@ Adres: %4 Wpisz adres podpisu, wiadomość (upewnij się, że dokładnie skopiujesz wszystkie zakończenia linii, spacje, tabulacje itp.) oraz podpis poniżej by sprawdzić wiadomość. Uważaj by nie dodać więcej do podpisu niż do samej podpisywanej wiadomości by uniknąć ataku man-in-the-middle (człowiek pośrodku) - Verify the message to ensure it was signed with the specified Bitcoin address - Zweryfikuj wiadomość, aby upewnić się, że została podpisana odpowiednim adresem Bitcoin. + The Hypercoin address the message was signed with + Adres Hypercoin, którym została podpisana wiadomość + + + Verify the message to ensure it was signed with the specified Hypercoin address + Zweryfikuj wiadomość, aby upewnić się, że została podpisana odpowiednim adresem Hypercoin. Verify &Message @@ -1823,11 +2251,11 @@ Adres: %4 Private key for the entered address is not available. - Klucz prywatny dla podanego adresu nie jest dostępny + Klucz prywatny dla podanego adresu nie jest dostępny. Message signing failed. - Podpisanie wiadomości nie powiodło się + Podpisanie wiadomości nie powiodło się. Message signed. @@ -1843,7 +2271,7 @@ Adres: %4 The signature did not match the message digest. - Podpis nie odpowiadał streszczeniu wiadomości + Podpis nie odpowiada skrótowi wiadomości. Message verification failed. @@ -1857,8 +2285,8 @@ Adres: %4 SplashScreen - Bitcoin Core - Rdzeń BitCoin + Hypercoin Core + Rdzeń Hypercoin The Bitcoin Core developers @@ -1882,6 +2310,10 @@ Adres: %4 Open until %1 Otwórz do %1 + + conflicted + konflikt + %1/offline %1/offline @@ -1900,7 +2332,7 @@ Adres: %4 , broadcast through %n node(s) - , emitowany przez %n węzeł, emitowany przez %n węzły, emitowany przez %n węzłów + , przekazywany przez %n węzeł, przekazywany przez %n węzły, przekazywany przez %n węzłów Date @@ -1926,6 +2358,10 @@ Adres: %4 own address własny adres + + watch-only + tylko-obserwowany + label etykieta @@ -1946,9 +2382,17 @@ Adres: %4 Debit Debet + + Total debit + Razem wychodzących + + + Total credit + Razem przychodzących + Transaction fee - Prowizja transakcji + Opłata transakcyjna Net amount @@ -1972,7 +2416,7 @@ Adres: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Wygenerowane monety muszą dojrzeć przez %1 bloków zanim będzie można je wysłać. Gdy wygenerowałeś ten blok został on ogłoszony w sieci i dodany do łańcucha bloków. Jeżeli nie uda mu się wejść do łańcucha jego status zostanie zmieniony na "nie zaakceptowano" i nie będzie można go wydać. To czasem zdarza się gdy inny węzeł wygeneruje blok w kilka sekund od twojego. + Wygenerowane monety muszą dojrzeć przez %1 bloków zanim będzie można je wydać. Gdy wygenerowałeś ten blok został on ogłoszony w sieci i dodany do łańcucha bloków. Jeżeli nie uda mu się wejść do łańcucha jego status zostanie zmieniony na "nie zaakceptowano" i nie będzie można go wydać. To czasem zdarza się gdy inny węzeł wygeneruje blok w kilka sekund od twojego. Debug information @@ -2000,7 +2444,7 @@ Adres: %4 , has not been successfully broadcast yet - , nie został jeszcze pomyślnie wyemitowany + , nie został jeszcze pomyślnie rozesłany Open for %n more block(s) @@ -2036,6 +2480,10 @@ Adres: %4 Address Adres + + Immature (%1 confirmations, will be available after %2) + Niedojrzała (%1 potwierdzeń, będzie dostępna po %2) + Open until %1 Otwórz do %1 @@ -2064,6 +2512,10 @@ Adres: %4 Confirming (%1 of %2 recommended confirmations) Potwierdzanie (%1 z %2 rekomendowanych potwierdzeń) + + Conflicted + Konflikt + Received with Otrzymane przez @@ -2084,6 +2536,10 @@ Adres: %4 Mined Wydobyto + + watch-only + tylko-obserwowany + (n/a) (brak) @@ -2100,6 +2556,10 @@ Adres: %4 Type of transaction. Rodzaj transakcji. + + Whether or not a watch-only address is involved in this transaction. + Czy adres tylko-obserwowany jest lub nie użyty w tej transakcji. + Destination address of transaction. Adres docelowy transakcji. @@ -2195,6 +2655,10 @@ Adres: %4 Export Transaction History Eksport historii transakcji + + Watch-only + Tylko obserwowany + Exporting Failed Błąd przy próbie eksportu @@ -2250,7 +2714,11 @@ Adres: %4 UnitDisplayStatusBarControl - + + Unit to show amounts in. Click to select another unit. + Jednostka w jakiej pokazywane są kwoty. Kliknij aby wybrać inną. + + WalletFrame @@ -2262,7 +2730,7 @@ Adres: %4 WalletModel Send Coins - Wyślij płatność + Wyślij monety @@ -2335,51 +2803,44 @@ Adres: %4 Akceptuj połączenia z zewnątrz (domyślnie: 1 jeśli nie ustawiono -proxy lub -connect) - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, musisz ustawić rpcpassword w pliku konfiguracyjnym:⏎ -%s⏎ -Zalecane jest użycie losowego hasła:⏎ -rpcuser=bitcoinrpc⏎ -rpcpassword=%s⏎ -(nie musisz pamiętać tego hasła)⏎ -Użytkownik i hasło nie mogą być takie same.⏎ -Jeśli plik nie istnieje, utwórz go z uprawnieniami tylko-do-odczytu dla właściciela.⏎ -Zalecane jest ustawienie alertnotify aby poinformować o problemach:⏎ -na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎ + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Skojarz z podanym adresem i nasłuchuj na nim. Użyj formatu [host]:port dla IPv6 - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Skojarz z podanym adresem. Użyj formatu [host]:port dla IPv6 + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Usuwa wszystkie transakcje w portfelu i tylko odtwarza te części z łańcucha bloków poprzez -rescan przy starcie - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Błąd: transakcja została odrzucona. Może się to zdarzyć, gdy monety z Twojego portfela zostały już wydane, na przykład gdy używałeś kopii wallet.dat i bitcoiny które tam wydałeś nie zostały jeszcze odjęte z portfela z którego teraz korzystasz. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Rozprowadzane na licencji MIT, zobacz dołączony plik COPYING lub <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Transakcja przekracza limit. Możesz wysłać ją płacąc prowizję %s, która zostaje przekazana do węzłów, które ją prześlą i pomoże wspierać sieć Bitcoin. Czy chcesz zapłacić prowizję? + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Wejdź do trybu testów regresyjnych, który korzysta ze specjalnego łańcucha, w którym bloki mogą być rozwiązywane natychmiastowo. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Wykonaj polecenie, kiedy transakcja portfela ulegnie zmianie (%s w poleceniu zostanie zastąpione przez TxID) + + In this mode -genproclimit controls how many blocks are generated immediately. + W tym trybie -genproclimit ustala ilość bloków generowanych natychmiast. + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Ustaw liczbę wątków skryptu weryfikacyjnego (%u do %d, 0 = auto, <0 = zostaw tyle rdzeni wolnych, domyślnie: %d) + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications To jest testowa wersja - używaj na własne ryzyko - nie używaj do wykopywania oraz przy aplikacjach kupieckich + + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Nie można przywiązać z portem %s na tym komputerze. Hypercoin Core prawdopodobnie już działa. + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - Ostrzeżenie: -paytxfee jest bardzo duży. To jest prowizja za transakcje, którą płacisz, gdy wysyłasz monety. + Ostrzeżenie: -paytxfee jest bardzo duże! Jest to prowizja za transakcje, którą płacisz, gdy wysyłasz monety. Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. @@ -2397,10 +2858,18 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Ostrzeżenie: Odtworzono dane z uszkodzonego pliku wallet.dat! Oryginalny wallet.dat został zapisany jako wallet.{timestamp}.bak w %s; jeśli twoje saldo lub transakcje są niepoprawne powinieneś odtworzyć kopię zapasową. + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Dodawaj do białej listy węzły łączące się z podanej maski sieciowej lub adresu IP. Może być określona kilka razy. + (default: 1) (domyślnie: 1) + + <category> can be: + <category> mogą być: + Attempt to recover private keys from a corrupt wallet.dat Próbuj odzyskać klucze prywatne z uszkodzonego wallet.dat @@ -2411,7 +2880,7 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎ Connect only to the specified node(s) - Łącz tylko do wskazanego węzła + Łącz się tylko do wskazanego węzła/węzłów Connection options: @@ -2427,11 +2896,11 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎ Discover own IP address (default: 1 when listening and no -externalip) - Odkryj własny adres IP (domyślnie: 1 kiedy w trybie nasłuchu i brak -externalip ) + Wykryj własny adres IP (domyślnie: 1 kiedy w trybie nasłuchu i brak -externalip ) Do not load the wallet and disable wallet RPC calls - Nie ładuj portfela i wyłącz odwołania RPC + Nie ładuj portfela i wyłącz wywołania RPC portfela Do you want to rebuild the block database now? @@ -2439,7 +2908,7 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎ Error initializing block database - Błąd inicjowania bloku bazy danych + Błąd inicjowania bazy danych bloków Error initializing wallet database environment %s! @@ -2451,19 +2920,19 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎ Error opening block database - Błąd ładowania bazy bloków + Błąd otwierania bazy bloków Error: Disk space is low! Błąd: Mało miejsca na dysku! - Error: Wallet locked, unable to create transaction! - Błąd: Zablokowany portfel, nie można utworzyć transakcji! + Failed to listen on any port. Use -listen=0 if you want this. + Próba nasłuchiwania na jakimkolwiek porcie nie powiodła się. Użyj -listen=0 jeśli tego chcesz. - Failed to listen on any port. Use -listen=0 if you want this. - Próba otwarcia jakiegokolwiek portu nie powiodła się. Użyj -listen=0 jeśli tego chcesz. + If <category> is not supplied, output all debugging information. + Jeżeli <category> nie zostanie określona, wyświetl wszystkie informacje debugowania. Importing... @@ -2481,6 +2950,10 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎Not enough file descriptors available. Brak wystarczającej liczby deskryptorów plików. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Łącz z węzłami tylko w sieci <net> (ipv4, ipv6 lub onion) + Rebuild block chain index from current blk000??.dat files Odbuduj indeks łańcucha bloków z obecnych plików blk000??.dat @@ -2497,6 +2970,14 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎Specify wallet file (within data directory) Określ plik portfela (w obrębie folderu danych) + + This is intended for regression testing tools and app development. + Jest to przeznaczone dla narzędzi testowania regresji i rozwoju aplikacji. + + + Use UPnP to map the listening port (default: %u) + Użyj UPnP do przekazania portu nasłuchu (domyślnie : %u) + Verifying blocks... Weryfikacja bloków... @@ -2522,17 +3003,177 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎Importuj bloki z zewnętrznego pliku blk000??.dat - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Nie można uzyskać blokady na katalogu z danymi %s. Rdzeń Bitcoin najprawdopodobniej jest już uruchomiony. + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Pozwól na połączenia JSON-RPC z podanego źródła. Jako <ip> prawidłowe jest pojedyncze IP (np. 1.2.3.4), podsieć/maska (np. 1.2.3.4/255.255.255.0) lub sieć/CIDR (np. 1.2.3.4/24). Opcja ta może być użyta wiele razy. + + + An error occurred while setting up the RPC address %s port %u for listening: %s + Napotkano błąd podczas ustawiania adres RPC %s port %u dla nasłuchiwania: %s + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Podepnij się do podanego adresu i dodawaj do białej listy węzły łączące się z nim. Użyj notacji [host]:port dla IPv6 + + + Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) + Powiąż się z podanym adresem, aby nasłuchiwać połączenia JSON-RPC. Użyj notacji [host]:port dla IPv6. Ta opcja może być określona kilka razy (domyślnie: powiąż ze wszystkimi interfejsami) + + + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Nie można uzyskać blokady na katalogu z danymi %s. Rdzeń Hypercoin najprawdopodobniej jest już uruchomiony. + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) + Ograniczaj przepustowość dla transakcji bez opłat do <n>*1000 bajtów na minutę (domyślnie: %u) + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Twórz nowe pliki z domyślnymi dla systemu uprawnieniami, zamiast umask 077 (skuteczne tylko przy wyłączonej funkcjonalności portfela) + + + Error: Listening for incoming connections failed (listen returned error %s) + Błąd: Nasłuchiwanie połączeń przychodzących nie powiodło się (nasłuch zwrócił błąd %s) + + + Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + Błąd: Znaleziono niewspierany argument -socks . Ustawienie wersji SOCKS nie jest już możliwe, tylko serwery proxy SOCKS5 są wspierane. Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Uruchom polecenie przy otrzymaniu odpowiedniego powiadomienia lub gdy zobaczymy naprawdę długie rozgałęzienie (%s w poleceniu jest podstawiane za komunikat) + + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Opłaty (w HOT/Kb) mniejsze niż ta będą traktowane jako bez opłaty przy propagowaniu (domyślnie: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Opłaty (w HOT/Kb) mniejsze niż ta będą traktowane jako bez opłaty przy tworzeniu transakcji (domyślnie: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Jeżeli nie ustawiono paytxfee, dołącz wystarczająca opłatę, aby transakcja mogła zostać zatwierdzona w ciągu średniej ilości n bloków (domyślnie: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Niewłaściwa ilość dla -maxtxfee=<ilość>: '%s' (musi wynosić przynajmniej minimalną wielkość %s aby zapobiec utknięciu transakcji) + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Maksymalny rozmiar danych w transakcji przekazującej dane które przekazujemy i wydobywamy (domyślnie: %u) + + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Maksymalne całkowite opłaty użyte dla każdej pojedynczej transakcji portfela, ustawienie za niskiej może przerwać większe transakcje (domyślnie: %s) + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + Wyszukaj adresy węzłów wykorzystując zapytanie DNS, jeżeli masz mało adresów (domyślnie: 1 jeśli nie użyto -connect) + + + Require high priority for relaying free or low-fee transactions (default:%u) + Wymagaj wysokiego priorytetu dla przekazywania transakcji darmowych lub o niskiej opłacie (domyślnie:%u) + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + Ustaw maksymalny rozmiar transakcji o wysokim priorytecie/niskiej prowizji w bajtach (domyślnie: %d) + + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Ustaw liczbę wątków dla generowania monet (-1 = wszystkie rdzenie, domyślnie: %d) + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + Program ten zawiera oprogramowanie stworzone przez OpenSSL Project do użycia w OpensSSL Toolkit <https://www.openssl.org/>, oprogramowanie kryptograficzne napisane przez Eric Young oraz oprogramowanie UPnP napisane przez Thomas Bernard. + + + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Aby korzystać z hypercoind, lub opcji -server w hypercoin-qt, musisz ustawić opcję rpcpassword w pliku konfiguracyjnym: +%s +Zalecane jest użycie poniższego losowego hasła: +rpcuser=hypercoinrpc +rpcpassword=%s +(nie musisz pamiętać tego hasła) +Nazwa użytkownika i hasło NIE MOGĄ być takie same. +Jeżeli ten plik nie istnieje, utwórz go z uprawnieniami tylko-do-odczytu przez właściciela. +Zalecane jest także ustawienie opcji alertnotify, dzięki której będziesz powiadamiany o problemach; +na przykład: alertnotify=echo %%s | mail -s "Alarm Hypercoin" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Ostrzeżenie: -matxfee jest ustawione bardzo wysokie! Tak wysokie opłaty mogą być zapłacone w jednej transakcji. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Ostrzeżenie: Proszę sprawdzić czy data i czas na Twoim komputerze są poprawne! Jeżeli ustawienia zegara będą złe, Hypercoin Core nie będzie działał prawidłowo. + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + Węzły z białej listy nie mogą zostać zbanowane za ataki DoS, a ich transakcje będą zawsze przekazywane, nawet jeżeli będą znajdywać się już w pamięci, przydatne np. dla bramek płatniczych + + + Accept public REST requests (default: %u) + Akceptuj publiczne żądania REST (domyślnie: %u) + + + Cannot resolve -whitebind address: '%s' + Nie można rozwiązać adresu -whitebind: '%s' + + + Connect through SOCKS5 proxy + Połącz przez SOCKS5 proxy + + + Copyright (C) 2009-%i The Bitcoin Core Developers + Copyright (C) 2009-%i The Bitcoin Core Developers + + + Could not parse -rpcbind value %s as network address + Nie można przetworzyć wartości -rpcbind %s jako adresu sieciowego + + + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Błąd ładowania wallet.dat: Portfel wymaga nowszej wersji Hypercoin Core + + + Error reading from database, shutting down. + Błąd odczytu z bazy danych, wyłączam się. + + + Error: A fatal internal error occurred, see debug.log for details + Błąd: Wystąpił fatalny błąd wewnętrzny, sprawdź szczegóły w debug.log + + + Error: Unsupported argument -tor found, use -onion. + Błąd: Znaleziono nieprawidłowy argument -tor, użyj -onion. + + + Fee (in HOT/kB) to add to transactions you send (default: %s) + Prowizja (w HOT za kB) dodawana do wysyłanej transakcji (domyślnie: %s) + Information Informacja + + Initialization sanity check failed. Hypercoin Core is shutting down. + Wstępna kontrola poprawności nie powiodła się. Hypercoin Core wyłącza się. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Nieprawidłowa kwota dla -maxtxfee=<amount>: '%s' + Invalid amount for -minrelaytxfee=<amount>: '%s' Nieprawidłowa kwota dla -minrelaytxfee=<amount>: '%s' @@ -2542,33 +3183,49 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎Nieprawidłowa kwota dla -mintxfee=<amount>: '%s' - Node relay options: - Opcje przekaźnikowe węzła: + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Nieprawidłowa kwota dla -paytxfee=<amount>: '%s' (musi być co najmniej %s) - Print block on startup, if found in block index - Wyświetlaj blok podczas uruchamiania, jeżeli znaleziono indeks bloków + Invalid netmask specified in -whitelist: '%s' + Nieprawidłowa maska sieci określona w -whitelist: '%s' - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opcje RPC SSL: (odwiedź Bitcoin Wiki w celu uzyskania instrukcji) + Keep at most <n> unconnectable transactions in memory (default: %u) + Przechowuj w pamięci maksymalnie <n> transakcji nie możliwych do połączenia (domyślnie: %u) + + + Node relay options: + Opcje przekaźnikowe węzła: + + + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Opcje RPC SSL: (odwiedź Hypercoin Wiki w celu uzyskania instrukcji) RPC server options: Opcje serwera RPC: + + RPC support for HTTP persistent connections (default: %d) + Wsparcie RPC dla ciągłych połączeń HTTP (domyślnie: %d) + Randomly drop 1 of every <n> network messages Losowo ignoruje 1 z każdych <n> wiadomości sieciowych. Randomly fuzz 1 of every <n> network messages - Losowo ignoruje 1 z wszystkich <n> wiadomości sieciowych. + Losowo miesza 1 z wszystkich <n> wiadomości sieciowych. Send trace/debug info to console instead of debug.log file Wyślij informację/raport do konsoli zamiast do pliku debug.log. + + Send transactions as zero-fee transactions if possible (default: %u) + Wyślij bez opłaty jeżeli to możliwe (domyślnie: %u) + Show all debugging options (usage: --help -help-debug) Pokaż wszystkie opcje odpluskwiania (użycie: --help -help-debug) @@ -2583,7 +3240,7 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎ This is experimental software. - To oprogramowanie eksperymentalne. + To oprogramowanie jest eksperymentalne. Transaction amount too small @@ -2593,10 +3250,18 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎Transaction amounts must be positive Kwota transakcji musi być dodatnia + + Transaction too large for fee policy + Transakcja jest zbyt duża dla tej opłaty + Transaction too large Transakcja zbyt duża + + Unable to bind to %s on this computer (bind returned error %s) + Nie można przywiązać do %s na tym komputerze (bind zwrócił błąd %s) + Use UPnP to map the listening port (default: 1 when listening) Używaj UPnP do mapowania portu nasłuchu (domyślnie: 1 gdy nasłuchuje) @@ -2606,8 +3271,8 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎Nazwa użytkownika dla połączeń JSON-RPC - Wallet needed to be rewritten: restart Bitcoin Core to complete - Portfel wymaga przepisania: zresetuj Bitcoina aby ukończyć + Wallet needed to be rewritten: restart Hypercoin Core to complete + Portfel wymaga przepisania: zrestartuj Hypercoina aby ukończyć Warning @@ -2615,7 +3280,19 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎ Warning: This version is obsolete, upgrade required! - Uwaga: Ta wersja jest przestarzała, aktualizacja wymagana! + Uwaga: Ta wersja jest przestarzała, wymagana jest aktualizacja! + + + Warning: Unsupported argument -benchmark ignored, use -debug=bench. + Uwaga: Zignorowano nieprawidłowy argument -benchmark, użyj -debug=bench. + + + Warning: Unsupported argument -debugnet ignored, use -debug=net. + Uwaga: Zignorowano nieprawidłowy argument -debugnet , użyj -debug=net. + + + Zapping all transactions from wallet... + Usuwam wszystkie transakcje z portfela... on startup @@ -2639,7 +3316,7 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎ Rescan the block chain for missing wallet transactions - Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela + Przeskanuj łańcuch bloków w poszukiwaniu zaginionych transakcji portfela Use OpenSSL (https) for JSON-RPC connections @@ -2661,14 +3338,170 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎Error loading wallet.dat: Wallet corrupted Błąd ładowania wallet.dat: Uszkodzony portfel + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = zachowaj wysłane metadane np. właściciel konta i informacje o żądaniach płatności, 2 = porzuć wysłane metadane) + + + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) + Przeładuj aktywność bazy danych z pamięci do logu dyskowego co <n> megabajtów (domyślnie: %u) + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Jak dokładna jest weryfikacja bloków przy -checkblocks (0-4, domyślnie: %u) + + + Log transaction priority and fee per kB when mining blocks (default: %u) + Loguj priorytety transakcji i opłaty na kB podczas kopania bloków (domyślnie: %u) + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Utrzymuj pełny indeks transakcji, używany przy wywołaniu RPC getrawtransaction (domyślnie: %u) + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Czas w sekundach, przez jaki nietrzymające się zasad węzły nie będą mogły ponownie się podłączyć (domyślnie: %u) + + + Output debugging information (default: %u, supplying <category> is optional) + Wypuść informacje debugowania (domyślnie: %u, podanie <category> jest opcjonalne) + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Użyj oddzielnego prozy SOCKS5 aby osiągnąć węzły w ukrytych usługach Tor (domyślnie: %s) + + + (default: %s) + (domyślnie: %s) + + + Acceptable ciphers (default: %s) + Akceptowane szyfry (domyślne: %s) + + + Always query for peer addresses via DNS lookup (default: %u) + Zawsze wypytuj o adresy węzłów poprzez podejrzenie DNS (domyślnie: %u) + + + Disable safemode, override a real safe mode event (default: %u) + Wyłącz tryb bezpieczny, zastąp domyślne zachowanie przełączania w tryb bezpieczny (domyślnie: %u) + Error loading wallet.dat Błąd ładowania wallet.dat + + Force safe mode (default: %u) + Wymuś tryb bezpieczny (domyślnie: %u) + + + Generate coins (default: %u) + Generuj monety (domyślnie: %u) + + + How many blocks to check at startup (default: %u, 0 = all) + Ile bloków sprawdzić przy starcie (domyślnie: %u, 0 = wszystkie) + + + Include IP addresses in debug output (default: %u) + Dołącz adresy IP do logowania (domyślnie: %u) + Invalid -proxy address: '%s' Nieprawidłowy adres -proxy: '%s' + + Limit size of signature cache to <n> entries (default: %u) + Ogranicz rozmiar pamięci podręcznej sygnatur do <n> wpisów (domyślnie: %u) + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + Nasłuchuj połączeń JSON-RPC na <port> (domyślnie: %u lub testnet: %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + Nasłuchuj połączeń na <port> (domyślnie: %u lub testnet: %u) + + + Maintain at most <n> connections to peers (default: %u) + Utrzymuj maksymalnie <n> połączeń z węzłami (domyślnie: %u) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: %u) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + Maksymalny bufor wysyłania na połączenie, <n>*1000 bajtów (domyślnie: %u) + + + Only accept block chain matching built-in checkpoints (default: %u) + Akceptuj tylko łańcuch bloków zgodny z wbudowanymi punktami kontrolnymi (domyślnie: %u) + + + Prepend debug output with timestamp (default: %u) + Dołączaj znacznik czasu do logowania (domyślnie: %u) + + + Relay and mine data carrier transactions (default: %u) + Przekazuj i wydobywaj transakcje zawierające dane (domyślnie: %u) + + + Relay non-P2SH multisig (default: %u) + Przekazuj transakcje multisig inne niż P2SH (domyślnie: %u) + + + Run a thread to flush wallet periodically (default: %u) + Uruchom wątek do okresowego zapisywania portfela (domyślnie: %u) + + + Server certificate file (default: %s) + Plik certyfikatu serwera (domyślnie: %s) + + + Server private key (default: %s) + Klucz prywatny serwera (domyślnie: %s) + + + Set key pool size to <n> (default: %u) + Ustaw rozmiar puli kluczy na <n> (domyślnie: %u) + + + Set minimum block size in bytes (default: %u) + Ustaw minimalny rozmiar bloku w bajtach (domyślnie: %u) + + + Set the number of threads to service RPC calls (default: %d) + Ustaw liczbę wątków do obsługi RPC (domyślnie: %d) + + + Sets the DB_PRIVATE flag in the wallet db environment (default: %u) + Ustaw flagę DB_PRIVATE w środowisku wallet db (domyślnie: %u) + + + Specify configuration file (default: %s) + Wskaż plik konfiguracyjny (domyślnie: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Wskaż czas oczekiwania na połączenie w milisekundach (minimum: 1, domyślnie: %d) + + + Specify pid file (default: %s) + Wskaż plik pid (domyślnie: %s) + + + Spend unconfirmed change when sending transactions (default: %u) + Wydawaj niepotwierdzoną resztę podczas wysyłania transakcji (domyślnie: %u) + + + Stop running after importing blocks from disk (default: %u) + Zatrzymaj po zaimportowaniu bloków z dysku (domyślnie: %u) + + + Threshold for disconnecting misbehaving peers (default: %u) + Próg, po którym nastąpi rozłączenie węzłów nietrzymających się zasad (domyślnie: %u) + Unknown network specified in -onlynet: '%s' Nieznana sieć w -onlynet: '%s' @@ -2685,10 +3518,6 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎Invalid amount for -paytxfee=<amount>: '%s' Nieprawidłowa kwota dla -paytxfee=<amount>: '%s' - - Invalid amount - Nieprawidłowa kwota - Insufficient funds Niewystarczające środki @@ -2699,7 +3528,7 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎ Add a node to connect to and attempt to keep the connection open - Dodaj węzeł do łączenia się and attempt to keep the connection open + Dodaj węzeł do podłączenia się i próbuj utrzymać to połączenie Loading wallet... @@ -2721,13 +3550,9 @@ na przykład: alertnotify=echo %%s | mail -s "Alarm Bitcoin" admin@foo.com⏎Done loading Wczytywanie zakończone - - To use the %s option - Aby użyć opcji %s - Error Błąd - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index 65f07ca59c6fe..1eb7fa6e9d392 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -1,17 +1,17 @@ - + AddressBookPage - Double-click to edit address or label - Duplo-clique para editar o endereço ou o rótulo + Right-click to edit address or label + Clique com o botão direito para editar o endereço ou rótulo Create a new address - Criar um novo endereço + Criar novo endereço &New - &Novo + Novo Copy the currently selected address to the system clipboard @@ -19,15 +19,15 @@ &Copy - &Copiar + Copiar C&lose - &Fechar + Fechar &Copy Address - &Copiar Endereço + Copiar Endereço Delete the currently selected address from the list @@ -39,11 +39,11 @@ &Export - &Exportar + Exportar &Delete - &Excluir + Excluir Choose the address to send coins to @@ -66,12 +66,12 @@ Recebendo endereços - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estes são os seus endereços Bitcoin para receber pagamentos. Você pode querer enviar um endereço diferente para cada remetente, para acompanhar quem está pagando. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Estes são os seus endereços Hypercoin para receber pagamentos. Você pode querer enviar um endereço diferente para cada remetente, para acompanhar quem está pagando. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Estes são os seus endereços Bitcoin para receber pagamentos. Recomenda-se a utilização de um novo endereço de recebimento para cada transação. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Estes são os seus endereços Hypercoin para receber pagamentos. Recomenda-se a utilização de um novo endereço de recebimento para cada transação. Copy &Label @@ -79,7 +79,7 @@ &Edit - &Editar + Editar Export Address List @@ -164,8 +164,8 @@ Confirmar criptografia da carteira - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Atenção: Se você criptografar sua carteira e perder sua senha, você vai <b>perder todos os seus BITCOINS!</b> + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Atenção: Se você criptografar sua carteira e perder sua senha, você vai <b>perder todos os seus HYPERCOINS!</b> Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Digite a nova senha da carteira. <br/>Por favor utilize uma senha com <b>dez ou mais caracteres aleartórios</b>, ou <b>oito ou mais palavras</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - O Bitcoin irá fechar agora para finalizar o processo de encriptação. Lembre-se de que encriptar sua carteira não protege totalmente suas bitcoins de serem roubadas por malwares que tenham infectado o seu computador. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + O Hypercoin irá fechar agora para finalizar o processo de encriptação. Lembre-se de que encriptar sua carteira não protege totalmente suas hypercoins de serem roubadas por malwares que tenham infectado o seu computador. Wallet encryption failed @@ -224,7 +224,7 @@ BitcoinGUI Sign &message... - &Assinar Mensagem... + Assinar Mensagem... Synchronizing with network... @@ -232,7 +232,7 @@ &Overview - &Visão geral + Visão geral Node @@ -244,7 +244,7 @@ &Transactions - &Transações + Transações Browse transaction history @@ -268,19 +268,19 @@ &Options... - &Opções... + Opções... &Encrypt Wallet... - &Criptografar Carteira... + Criptografar Carteira... &Backup Wallet... - &Backup Carteira... + Backup Carteira... &Change Passphrase... - &Mudar frase de segurança... + Mudar frase de segurança... &Sending addresses... @@ -288,15 +288,15 @@ &Receiving addresses... - &Receber endereços... + Receber endereços... Open &URI... - Abrir &URI... + Abrir URI... - Bitcoin Core client - Cliente Bitcoin Core + Hypercoin Core client + Cliente Hypercoin Importing blocks from disk... @@ -307,12 +307,12 @@ Reindexando blocos no disco... - Send coins to a Bitcoin address - Enviar moedas para um endereço bitcoin + Send coins to a Hypercoin address + Enviar moedas para um endereço hypercoin - Modify configuration options for Bitcoin - Modificar opções de configuração para bitcoin + Modify configuration options for Hypercoin + Modificar opções de configuração para hypercoin Backup wallet to another location @@ -332,11 +332,11 @@ &Verify message... - &Verificar mensagem... + Verificar mensagem... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -344,19 +344,19 @@ &Send - &Enviar + Enviar &Receive - &Receber + Receber - Show information about Bitcoin Core - Mostrar informações sobre Bitcoin Core + Show information about Hypercoin Core + Mostrar informações sobre Hypercoin &Show / Hide - &Exibir/Ocultar + Exibir/Ocultar Show or hide the main Window @@ -367,12 +367,12 @@ Criptografar as chaves privadas que pertencem à sua carteira - Sign messages with your Bitcoin addresses to prove you own them - Assine mensagems com seus endereços Bitcoin para provar que você é dono deles + Sign messages with your Hypercoin addresses to prove you own them + Assine mensagens com seus endereços Hypercoin para provar que você é dono delas - Verify messages to ensure they were signed with specified Bitcoin addresses - Verificar mensagens para se assegurar que elas foram assinadas pelo dono de Endereços Bitcoin específicos + Verify messages to ensure they were signed with specified Hypercoin addresses + Verificar mensagens para se assegurar que elas foram assinadas pelo dono de Endereços Hypercoin específicos &File @@ -391,16 +391,16 @@ Barra de ferramentas - Bitcoin Core - Núcleo Bitcoin + Hypercoin Core + Hypercoin - Request payments (generates QR codes and bitcoin: URIs) - Solicitações de pagamentos (gera códigos QR e bitcoin: URIs) + Request payments (generates QR codes and hypercoin: URIs) + Solicitações de pagamentos (gera códigos QR e hypercoin: URIs) - &About Bitcoin Core - &A respeito do Bitcoin Core + &About Hypercoin Core + &Sobre Hypercoin Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Mostrar a lista de endereços de recebimento usados ​​e rótulos - Open a bitcoin: URI or payment request - Abrir um bitcoin: URI ou cobrança + Open a hypercoin: URI or payment request + Abrir um hypercoin: URI ou cobrança &Command-line options Opções de linha de &comando - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Mostra a mensagem de ajuda do Bitcoin Core para pegar a lista com os comandos possíveis + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Mostra a mensagem de ajuda do Hypercoin para pegar a lista com os comandos possíveis - %n active connection(s) to Bitcoin network - %n conexão ativa na rede Bitcoin%n conexões ativas na rede Bitcoin + %n active connection(s) to Hypercoin network + %n conexão ativa na rede Hypercoin%n conexões ativas na rede Hypercoin No block source available... @@ -519,6 +519,10 @@ Endereço: %4 CoinControlDialog + + Coin Selection + Selecionar Moeda + Quantity: Quantidade: @@ -567,6 +571,14 @@ Endereço: %4 Amount Quantidade + + Received with label + Recebido com rótulo + + + Received with address + Recebido com endereço + Date Data @@ -771,8 +783,8 @@ Endereço: %4 O endereço digitado "%1" já se encontra no catálogo de endereços. - The entered address "%1" is not a valid Bitcoin address. - O endereço digitado "%1" não é um endereço Bitcoin válido. + The entered address "%1" is not a valid Hypercoin address. + O endereço digitado "%1" não é um endereço Hypercoin válido. Could not unlock wallet. @@ -809,8 +821,8 @@ Endereço: %4 HelpMessageDialog - Bitcoin Core - Núcleo Bitcoin + Hypercoin Core + Hypercoin version @@ -821,8 +833,8 @@ Endereço: %4 (%1-bit) - About Bitcoin Core - Sobre o Bitcoin Core + About Hypercoin Core + Sobre o Hypercoin Command-line options @@ -868,16 +880,16 @@ Endereço: %4 Bem-vindo - Welcome to Bitcoin Core. - Bem vindo ao Bitcoin Core. + Welcome to Hypercoin Core. + Bem vindo ao Hypercoin. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - A primeira vez que o programa é aberto você pode escolher onde o Bitcoin Core vai guardar os dados. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + A primeira vez que o programa é aberto você pode escolher onde o Hypercoin vai guardar os dados. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core vai fazer download e guardar uma cópia da longa e única cadeia de blocos do Bitcoin: Blockchain. Pelo menos %1 GB de dados serão armazenados nesse diretório e isso aumentará ao longo do tempo. Sua carteira também será armazenada nesse diretório. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + O Hypercoin vai fazer download e salvar uma cópia da cadeia de blocos do Hypercoin: Blockchain. Pelo menos %1 GB de dados serão armazenados nesse diretório e isso aumentará ao longo do tempo. Sua carteira também será armazenada nesse diretório. Use the default data directory @@ -888,8 +900,8 @@ Endereço: %4 Use um diretório de dados personalizado: - Bitcoin Core - Núcleo Bitcoin + Hypercoin Core + Hypercoin Error: Specified data directory "%1" cannot be created. @@ -942,12 +954,12 @@ Endereço: %4 Principal - Automatically start Bitcoin after logging in to the system. - Iniciar Bitcoin automaticamente após se logar no sistema. + Automatically start Hypercoin after logging in to the system. + Iniciar Hypercoin automaticamente após se logar no sistema. - &Start Bitcoin on system login - Iniciar Bitcoin no login do sistema + &Start Hypercoin on system login + Iniciar Hypercoin no login do sistema Size of &database cache @@ -979,7 +991,7 @@ Endereço: %4 Third party transaction URLs - URLs da transação de terceiros + URLs de transação de terceiros: Active command-line options that override above options: @@ -1022,13 +1034,21 @@ Endereço: %4 Ga&star mudança não confirmada - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir as portas do cliente Bitcoin automaticamente no roteador. Isto só funcionará se seu roteador suportar UPnP e esta função estiver habilitada. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir as portas do cliente Hypercoin automaticamente no roteador. Isto só funcionará se seu roteador suportar UPnP e esta função estiver habilitada. Map port using &UPnP Mapear porta usando &UPnP + + Connect to the Hypercoin network through a SOCKS5 proxy. + Conectar na rede Hypercoin através de um proxy SOCKS5. + + + &Connect through SOCKS5 proxy (default proxy): + &Conectar usando proxy SOCKS5 (proxy pradrão): + Proxy &IP: &IP do proxy: @@ -1067,11 +1087,11 @@ Endereço: %4 User Interface &language: - &Língua da interface com usuário: + &Linguagem da interface: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - A língua da interface com usuário pode ser escolhida aqui. Esta configuração só surtirá efeito após reiniciar o Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + A língua da interface com usuário pode ser escolhida aqui. Esta configuração só surtirá efeito após reiniciar o Hypercoin. &Unit to show amounts in: @@ -1079,7 +1099,7 @@ Endereço: %4 Choose the default subdivision unit to show in the interface and when sending coins. - Escolha a unidade padrão de subdivisão para interface mostrar quando enviar bitcoins. + Escolha a unidade padrão de subdivisão para interface mostrar quando enviar hypercoins. Whether to show coin control features or not. @@ -1129,12 +1149,12 @@ Endereço: %4 Formulário - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - A informação mostrada pode estar desatualizada. Sua carteira sincroniza automaticamente com a rede Bitcoin depois que a conexão é estabelecida, mas este processo pode não estar completo ainda. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + A informação mostrada pode estar desatualizada. Sua carteira sincroniza automaticamente com a rede Hypercoin depois que a conexão é estabelecida, mas este processo pode não estar completo ainda. Watch-only: - Apenas visualizar: + Monitorados: Available: @@ -1176,10 +1196,26 @@ Endereço: %4 Your current balance in watch-only addresses Sua balança atual em endereços apenas visualizados + + Spendable: + Disponível: + Recent transactions Transações recentes + + Unconfirmed transactions to watch-only addresses + Transações não confirmadas de um endereço monitorado + + + Mined balance in watch-only addresses that has not yet matured + Saldo minerado de endereço monitorado ainda não foi implementado + + + Current total balance in watch-only addresses + Balanço total em endereços monitorados + out of sync fora de sincronia @@ -1199,10 +1235,18 @@ Endereço: %4 Payment request rejected Solicitação de pagamento rejeitada + + Payment request network doesn't match client network. + Rede de pedido de pagamento não corresponde rede do cliente. + Payment request has expired. Solicitação de pagamento expirou. + + Payment request is not initialized. + Pedido de pagamento não é inicializado. + Requested payment amount of %1 is too small (considered dust). Valor do pagamento solicitado de %1 é muito pequeno (Considerado poeira). @@ -1212,17 +1256,25 @@ Endereço: %4 Erro no pedido de pagamento - Cannot start bitcoin: click-to-pay handler - Não foi possível iniciar bitcoin: manipulador clique-para-pagar + Cannot start hypercoin: click-to-pay handler + Não foi possível iniciar hypercoin: manipulador clique-para-pagar Payment request fetch URL is invalid: %1 URL de cobrança é inválida: %1 + + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI não pode ser analisado ! Isto pode ser causado por um endereço Hypercoin inválido ou parâmetros URI informados incorretamente. + Payment request file handling Manipulação de arquivo de cobrança + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Arquivo de pedido de pagamento não pode ser lido ! Isto pode ser causado por uma requisição de pagamento inválida. + Unverified payment requests to custom payment scripts are unsupported. Cobrança não verificada para scripts de pagamento personalizados não é suportado. @@ -1231,10 +1283,22 @@ Endereço: %4 Refund from %1 Reembolso de %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Pedido de pagamento %1 é muito grande (%2 bytes, permitido %3 bytes). + + + Payment request DoS protection + Pagamento requer proteção DoS + Error communicating with %1: %2 Erro na comunicação com %1: %2 + + Payment request cannot be parsed! + Requisição de pagamento não pode ser analisado! + Bad response from server %1 Resposta incorreta do servidor %1 @@ -1250,9 +1314,17 @@ Endereço: %4 PeerTableModel + + User Agent + User Agent + + + Address/Hostname + Endereço/Hostname + Ping Time - Tempo de Ping + Ping @@ -1262,8 +1334,8 @@ Endereço: %4 Quantidade - Enter a Bitcoin address (e.g. %1) - Informe um endereço Bitcoin (ex: %1) + Enter a Hypercoin address (e.g. %1) + Informe um endereço Hypercoin (ex: %1) %1 d @@ -1349,7 +1421,11 @@ Endereço: %4 Using OpenSSL version - Usando OpenSSL versão + Versão do OpenSSL + + + Using BerkeleyDB version + Versão do BerkeleyDB Startup time @@ -1387,6 +1463,10 @@ Endereço: %4 &Peers &Pares + + Select a peer to view detailed information. + Selecione um cliente para ver informações detalhadas. + Direction Direção @@ -1395,14 +1475,30 @@ Endereço: %4 Version Versão + + User Agent + User Agent + Services Serviços + + Starting Height + Altura inicial + + + Sync Height + Altura sincronizada + Ban Score Banir pontuação + + Connection Time + Tempo de conexão + Last Send Ultimo Envio @@ -1417,11 +1513,11 @@ Endereço: %4 Bytes Received - bytes Recebidos + Bytes recebidos Ping Time - Tempo de Ping + Ping Last block time @@ -1464,16 +1560,16 @@ Endereço: %4 Arquivo de log de Depuração - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Abrir o arquivo de log de depuração do Bitcoin do diretório atual de dados. Isso pode levar alguns segundos para arquivos de log grandes. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Abrir o arquivo de log de depuração do Hypercoin do diretório atual de dados. Isso pode levar alguns segundos para arquivos de log grandes. Clear console Limpar console - Welcome to the Bitcoin RPC console. - Bem-vindo ao console Bitcoin RPC. + Welcome to the Hypercoin RPC console. + Bem-vindo ao console Hypercoin RPC. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1519,7 +1615,11 @@ Endereço: %4 Unknown Desconhecido - + + Fetching... + Buscando... + + ReceiveCoinsDialog @@ -1543,8 +1643,8 @@ Endereço: %4 R&eutilize um endereço de recebimento (não recomendado) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Uma mensagem opcional que será anexada na cobrança e será mostrada quando ela for aberta. Nota: A mensagem não será enviada com o pagamento pela rede Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Uma mensagem opcional que será anexada na cobrança e será mostrada quando ela for aberta. Nota: A mensagem não será enviada com o pagamento pela rede Hypercoin. An optional label to associate with the new receiving address. @@ -1693,11 +1793,11 @@ Endereço: %4 SendCoinsDialog Send Coins - Enviar dinheiro + Enviar moedas Coin Control Features - Opções de Controle da Moeda + Opções de controle de moeda Inputs... @@ -1737,7 +1837,7 @@ Endereço: %4 Change: - trocar + troco If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. @@ -1747,6 +1847,78 @@ Endereço: %4 Custom change address Endereço específico de troco + + Transaction Fee: + Taxa de transação: + + + Choose... + Escolher + + + collapse fee-settings + colapso Taxa de definições + + + Minimize + Minimizar + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Se a taxa personalizada for definida em 1000 satoshis e a transação tiver somente 250 bytes, então "por kilobyte" somente paga 250 satoshis de taxa, enquanto "pelo menos" paga 1000 satoshis. Se a transação for maior que 1 kilobyte, ambos pagam por kilobyte. + + + per kilobyte + por kilobyte + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Se a taxa personalizada for definida em 1000 satoshis e a transação tiver somente 250 bytes, então "por kilobyte" somente paga 250 satoshis de taxa, enquanto "pelo menos" paga 1000 satoshis. Se a transação for maior que 1 kilobyte, ambos pagam por kilobyte. + + + total at least + pelo menos + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Pagando apenas a taxa mínima é bom, desde que haja pouco volume de transações. Mas esteja ciente de que isso pode acabar em uma transação nunca confirmanda uma vez que há mais demanda por transações do que a rede pode processar. + + + (read the tooltip) + (Leia o popup) + + + Recommended: + Recomendado: + + + Custom: + Personalizado: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Smart fee não iniciado. Isso requer alguns blocos...) + + + Confirmation time: + Tempo de confirmação: + + + normal + normal + + + fast + rápido + + + Send as zero-fee transaction if possible + Enviar sem taxa de transação se possível + + + (confirmation may take longer) + (confirmação pode demorar) + Send to multiple recipients at once Enviar para vários destinatários de uma só vez @@ -1781,7 +1953,7 @@ Endereço: %4 Confirm send coins - Confirmar envio de dinheiro + Confirmar envio de moedas %1 to %2 @@ -1815,10 +1987,6 @@ Endereço: %4 Copy change Copia alteração - - Total Amount %1 (= %2) - Quantidade Total %1 (= %2) - or ou @@ -1849,11 +2017,23 @@ Endereço: %4 The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - A transação foi rejeitada! Isso pode acontecer se alguns bitcoins na sua carteira já foram gastos em outro local, por exemplo se você tiver uma cópia do wallet.dat e os bitcoins tiverem sido gastos na cópia mas não marcados como gastos aqui ainda. + A transação foi rejeitada! Isso pode acontecer se alguns hypercoins na sua carteira já foram gastos em outro local, por exemplo se você tiver uma cópia do wallet.dat e os hypercoins tiverem sido gastos na cópia mas não marcados como gastos aqui ainda. + + + A fee higher than %1 is considered an insanely high fee. + Uma taxa acima de %1 é considerada uma taxa insanamente alta. + + + Pay only the minimum fee of %1 + Pagar somente a taxa mínima de %1 + + + Estimated to begin confirmation within %1 block(s). + Confirmação estimada em %1 bloco(s) - Warning: Invalid Bitcoin address - Atenção: endereço de Bitcoin inválido + Warning: Invalid Hypercoin address + Atenção: endereço de Hypercoin inválido (no label) @@ -1903,8 +2083,8 @@ Endereço: %4 Este é um pagamento normal. - The Bitcoin address to send the payment to - O enderesso Bitcoin que enviarár o pagamento + The Hypercoin address to send the payment to + Endereço que enviará o pagamento Alt+A @@ -1935,8 +2115,8 @@ Endereço: %4 Digite um rótulo para este endereço para adicioná-lo no catálogo - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - A mensagem que foi anexada ao bitcoin: URI na qual será gravada na transação para sua referência. Nota: Essa mensagem não será gravada publicamente na rede Bitcoin. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + A mensagem que foi anexada ao hypercoin: URI na qual será gravada na transação para sua referência. Nota: Essa mensagem não será gravada publicamente na rede Hypercoin. This is an unverified payment request. @@ -1954,12 +2134,12 @@ Endereço: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core está desligando... + Hypercoin Core is shutting down... + Hypercoin está desligando... Do not shut down the computer until this window disappears. - Não desligue o computador até esta janela desaparece. + Não desligue o computador até esta janela desapareça. @@ -1974,11 +2154,11 @@ Endereço: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Você pode assinar mensagens com seus endereços para provar que você é o dono deles. Seja cuidadoso para não assinar algo vago, pois ataques de pishing podem tentar te enganar para dar sua assinatura de identidade para eles. Apenas assine afirmações completamente detalhadas com as quais você concorda. + Você pode assinar mensagens com seus endereços para provar que você é o dono delas. Seja cuidadoso para não assinar algo vago, pois ataques de phishing podem tentar te enganar para dar sua assinatura de identidade para eles. Apenas assine afirmações completamente detalhadas com as quais você concorda. - The Bitcoin address to sign the message with - O enderesso Bitcoin que assinará a mensagem + The Hypercoin address to sign the message with + O enderesso Hypercoin que assinará a mensagem Choose previously used address @@ -2009,8 +2189,8 @@ Endereço: %4 Copiar a assinatura para a área de transferência do sistema - Sign the message to prove you own this Bitcoin address - Assinar mensagem para provar que você é dono deste endereço Bitcoin + Sign the message to prove you own this Hypercoin address + Assinar mensagem para provar que você é dono deste endereço Hypercoin Sign &Message @@ -2033,12 +2213,12 @@ Endereço: %4 Forneça o endereço da assinatura, a mensagem (se assegure que você copiou quebras de linha, espaços, tabs, etc. exatamente) e a assinatura abaixo para verificar a mensagem. Cuidado para não ler mais na assinatura do que está escrito na mensagem propriamente, para evitar ser vítima de uma ataque do tipo "man-in-the-middle". - The Bitcoin address the message was signed with - O enderesso Bitcoin que assionou a mesnagem + The Hypercoin address the message was signed with + O enderesso Hypercoin que assionou a mesnagem - Verify the message to ensure it was signed with the specified Bitcoin address - Verificar mensagem para se assegurar que ela foi assinada pelo dono de um endereço Bitcoin específico. + Verify the message to ensure it was signed with the specified Hypercoin address + Verificar mensagem para se assegurar que ela foi assinada pelo dono de um endereço Hypercoin específico. Verify &Message @@ -2104,12 +2284,12 @@ Endereço: %4 SplashScreen - Bitcoin Core - Núcleo Bitcoin + Hypercoin Core + Hypercoin The Bitcoin Core developers - Programadores do Bitcoin Core + Programadores do Bitcoin [testnet] @@ -2179,7 +2359,7 @@ Endereço: %4 watch-only - Vizualização apenas + monitorado label @@ -2235,7 +2415,7 @@ Endereço: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Bitcoins recém minerados precisam aguardar %1 blocos antes de serem gastos. Quando o bloco foi gerado, ele foi disseminado pela rede para ser adicionado à cadeia de blocos: blockchain. Se ele falhar em ser inserido na cadeia, seu estado será modificado para "não aceito" e ele não poderá ser gasto. Isso pode acontecer eventualmente quando blocos são gerados quase que simultaneamente. + Hypercoins recém minerados precisam aguardar %1 blocos antes de serem gastos. Quando o bloco foi gerado, ele foi disseminado pela rede para ser adicionado à blockchain. Se ele falhar em ser inserido na cadeia, seu estado será modificado para "não aceito" e ele não poderá ser gasto. Isso pode acontecer eventualmente quando blocos são gerados quase que simultaneamente. Debug information @@ -2341,15 +2521,15 @@ Endereço: %4 Received with - Recebido por + Recebido Received from - Recebido de + Recebido Sent to - Enviado para + Enviado Payment to yourself @@ -2361,7 +2541,7 @@ Endereço: %4 watch-only - Vizualização apenas + monitorado (n/a) @@ -2379,6 +2559,10 @@ Endereço: %4 Type of transaction. Tipo de transação. + + Whether or not a watch-only address is involved in this transaction. + Mostrar ou não endereços Hypercoin na lista de transações. + Destination address of transaction. Endereço de destino da transação. @@ -2420,11 +2604,11 @@ Endereço: %4 Received with - Recebido por + Recebido Sent to - Enviado para + Enviado To yourself @@ -2476,7 +2660,7 @@ Endereço: %4 Watch-only - Vizualização apenas + Monitorado Exporting Failed @@ -2533,7 +2717,11 @@ Endereço: %4 UnitDisplayStatusBarControl - + + Unit to show amounts in. Click to select another unit. + Unidade para mostrar. Clique para selecionar outra unidade. + + WalletFrame @@ -2617,45 +2805,21 @@ Endereço: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Aceitar conexões externas (padrão: 1 se opções -proxy ou -connect não estiverem presentes) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, você deve especificar uma senha rpcpassword no arquivo de configuração:⏎ -%s⏎ -É recomendado que você use a seguinte senha aleatória:⏎ -rpcuser=bitcoinrpc⏎ -rpcpassword=%s⏎ -(você não precisa lembrar esta senha)⏎ -O nome de usuário e a senha NÃO PODEM ser os mesmos.⏎ -Se o arquivo não existir, crie um com permissão de leitura apenas para o dono.⏎ -É recomendado também definir um alertnotify para que você seja notificado de problemas;⏎ -por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincular ao endereço fornecido e sempre escutar nele. Use a notação [host]:port para IPv6 - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Entra no modo de teste de regressão, que usa uma cadeia especial onde os blocos podem ser resolvidos instantaneamente. + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Apaga todas as transações da carteira e somente recupera essas partes da blockchain usando o comando -rescan na inicialização - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Erro: A transação foi rejeitada. Isso pode acontecer se alguns dos bitcoins de sua carteira já haviam sido gastos, por exemplo se você usou uma cópia do arquivo wallet.dat e alguns bitcoins foram gastos na cópia mas não foram marcados como gastos aqui. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Distribuido sob a licença MIT software license. Veja os termos em <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Erro: Esta transação requer uma taxa de transação de pelo menos %s, por causa sua quantidade, complexidade ou uso de dinheiro recebido recentemente. + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Entra no modo de teste de regressão, que usa uma cadeia especial onde os blocos podem ser resolvidos instantaneamente. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) @@ -2674,8 +2838,8 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Este pode ser um build de teste pré-lançamento - use por sua conta e risco - não use para mineração ou aplicações de comércio. - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Impossível ouvir em %s neste computador. Bitcoin Core já está sendo executado provavelmente. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Impossível ouvir em %s neste computador. Provavelmente o Hypercoin já está sendo executado. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2697,6 +2861,10 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Atenção: wallet.dat corrompido, dados recuperados! Arquivo wallet.dat original salvo como wallet.{timestamp}.bak em %s; se seu saldo ou transações estiverem incorretos, você deve restaurar o backup. + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Lista Branca pares de ligação da máscara de rede dado ou o endereço IP . Pode ser especificado várias vezes. + (default: 1) (padrão: 1) @@ -2757,18 +2925,10 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Error opening block database Erro ao abrir banco de dados de blocos - - Error: A fatal internal error occured, see debug.log for details - Erro: Um erro interno fatal ocorreu, ver o debug.log para detalhes - Error: Disk space is low! Erro: Espaço em disco insuficiente! - - Error: Wallet locked, unable to create transaction! - Erro: Carteira bloqueada, impossível criar transação! - Failed to listen on any port. Use -listen=0 if you want this. Falha ao escutar em qualquer porta. Use -listen=0 se você quiser isso. @@ -2793,6 +2953,10 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Not enough file descriptors available. Decriptadores de arquivos disponíveis insuficientes. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Somente conectar a clientes na rede <net> (ipv4, ipv6 ou onion) + Rebuild block chain index from current blk000??.dat files Reconstruir índice de blockchain a partir dos arquivos atuais blk000??.dat @@ -2813,6 +2977,10 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ This is intended for regression testing tools and app development. Isso é usado para testes de regressão e ferramentas de desenvolvimento. + + Use UPnP to map the listening port (default: %u) + Use UPnP para mapear a porta de entrada (padrão: %u) + Verifying blocks... Verificando blocos... @@ -2827,44 +2995,76 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Wallet options: - Opções da Carteira: + Opções da carteira: You need to rebuild the database using -reindex to change -txindex - Você precisa reconstruir o banco de dados utilizando-reindexar a mudar-txindex + Você precisa reconstruir o banco de dados utilizando -reindex Imports blocks from external blk000??.dat file Importar blocos de um arquivo externo blk000??.dat + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Permitir conexões JSON-RPC de uma fonte específica. Válido para um único ip (ex. 1.2.3.4), até uma rede/máscara (ex. 1.2.3.4/255.255.255.0) ou uma rede/CIDR (ex. 1.2.3.4/24). Esta opção pode ser usada múltiplas vezes + An error occurred while setting up the RPC address %s port %u for listening: %s Um erro ocorreu enquanto configurando o endereço RPC %s porta %u para escuta: %s - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Não foi possível obter proteção exclusiva ao diretório de dados %s. Bitcoin Core já está sendo executado provavelmente. + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Vincular ao endereço fornecido e sempre escutar nele. Use a notação [host]:port para IPv6 + + + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Não foi possível obter acesso exclusivo ao diretório de dados %s. Provavelmente Hypercoin já está sendo executado. Error: Listening for incoming connections failed (listen returned error %s) - Erro: Escutar por conexões de entrada falhou (escutar retornou erro %s) + Erro: Aceitar conexões de entrada falhou (retornou erro %s) Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Executa o comando quando um alerta relevante é recebido ou vemos uma longa segregação (%s em cmd é substituído pela mensagem) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Taxas (em BTC/Kb) menores do que este valor são consideradas inexistentes para divulgação (padrão: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Taxas (em HOT/Kb) menores do que este valor são consideradas inexistentes para divulgação (padrão: %s) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Taxas (em BTC/Kb) menores do que este valor são consideradas inexistentes para a criação da transação (padrão: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Taxas (em HOT/Kb) menores do que este valor são consideradas inexistentes para a criação da transação (padrão: %s) Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Define o tamanho máximo de alta-prioridade por taxa baixa nas transações em bytes (padrão: %d) + + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Para usar o hypercoind, ou a opção -server do hypercoin-qt, você deve definir rpcpassword no arquivo de configuração: +%s +É recomendado que use a seguinte senha randômica: +rpcuser=hypercoinrpc +rpcpassword=%s +(você não precisa lembrar esta senha) +O usuário e senha NÃO DEVEM ser os mesmos. +Se o arquivo não existir, crie com permissão de proprietário criador somente. +É também recomendado definir a opção alertnotify se deseja ser notificado de problemas; +por exemplo: alertnotify=echo %%s | mail -s "Alerta do Hypercoin" admin@foo.com.br + + Cannot resolve -whitebind address: '%s' Impossível resolver endereço -whitebind: '%s' @@ -2882,13 +3082,29 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Impossível interpretar o valor -rpcbind %s como um endereço da rede - Fee (in BTC/kB) to add to transactions you send (default: %s) - Taxa (em BTC/kB) a adicionar nas transações que você envia (padrão: %s) + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Erro ao carregar wallet.dat: A carteira requer a nova versão do Hypercoin + + + Error reading from database, shutting down. + Erro ao ler o banco de dados. Finalizando. + + + Error: Unsupported argument -tor found, use -onion. + Erro: Argumento não suportado -tor, use -onion. + + + Fee (in HOT/kB) to add to transactions you send (default: %s) + Taxa (em HOT/kB) a adicionar nas transações que você envia (padrão: %s) Information Informação + + Invalid amount for -maxtxfee=<amount>: '%s' + Quantidade inválida para -maxtxfee=<quantidade>: '%s' + Invalid amount for -minrelaytxfee=<amount>: '%s' Quantidade inválida para -minrelaytxfee=<amount>: '%s' @@ -2905,21 +3121,17 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Invalid netmask specified in -whitelist: '%s' Máscara de rede especificada em -whitelist: '%s' é inválida - - Keep at most <n> unconnectable blocks in memory (default: %u) - Manter no máximo <n> blocos pendentes em memória (padrão: %u) - Need to specify a port with -whitebind: '%s' Necessário informar uma porta com -whitebind: '%s' - Print block on startup, if found in block index - Imprime bloco ao iniciar, se encontrado no índice de blocos + Node relay options: + Opções de relé nó : - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opções RPC SSL: (veja o Bitcoin Wiki para instruções de configuração SSL) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Opções RPC SSL: (veja o Hypercoin Wiki para instruções de configuração SSL) RPC server options: @@ -2937,6 +3149,10 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Send trace/debug info to console instead of debug.log file Mandar informação de trace/debug para o console em vez de para o arquivo debug.log + + Send transactions as zero-fee transactions if possible (default: %u) + Enviar transação sem taxa, se possível (padrão: %u) + Show all debugging options (usage: --help -help-debug) Exibir todas opções de debug (uso: --help -help-debug) @@ -2961,6 +3177,10 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Transaction amounts must be positive As quantidades das transações devem ser positivas. + + Transaction too large for fee policy + Transação muito grande para enviar sem taxa + Transaction too large Transação muito larga @@ -2978,8 +3198,8 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Nome de usuário para conexões JSON-RPC - Wallet needed to be rewritten: restart Bitcoin Core to complete - Sua carteira precisou ser reescrita: favor reiniciar o Bitcoin para completar + Wallet needed to be rewritten: restart Hypercoin Core to complete + Sua carteira precisou ser reescrita: favor reiniciar o Hypercoin para completar Warning @@ -2987,7 +3207,7 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Warning: This version is obsolete, upgrade required! - Atenção: Esta versão está obsoleta, atualização exigida! + Atenção: Esta versão está obsoleta, atualização necessária! Zapping all transactions from wallet... @@ -3037,14 +3257,82 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Error loading wallet.dat: Wallet corrupted Erro ao carregar wallet.dat: Carteira corrompida + + (default: %s) + (padrão: %s) + + + Acceptable ciphers (default: %s) + Cífras aceitas (padrão: %s) + Error loading wallet.dat Erro ao carregar wallet.dat + + Force safe mode (default: %u) + Forçar modo seguro (default: %u) + + + Generate coins (default: %u) + Gerar moedas (padrão: %u) + + + How many blocks to check at startup (default: %u, 0 = all) + Quantos blocos devem ser checados ao iniciar (padrão: %u, 0 = todos) + + + Include IP addresses in debug output (default: %u) + Incluir endereço IP na saída de debug (padrão: %u) + Invalid -proxy address: '%s' Endereço -proxy inválido: '%s' + + Limit size of signature cache to <n> entries (default: %u) + Tamanho limite do cache de assinaturas de <n> entradas (padrão: %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + Aguardar por conexões na porta <port> (padrão: %u ou testnet: %u) + + + Prepend debug output with timestamp (default: %u) + Adiciona timestamp como prefixo no debug (default: %u) + + + Relay non-P2SH multisig (default: %u) + Retransmitir P2SH não multisig (default: %u) + + + Server certificate file (default: %s) + Arquivo de certificado do servidor (padrão: %s) + + + Server private key (default: %s) + Chave privada do servidor (padrão: %s) + + + Set key pool size to <n> (default: %u) + Defina o tamanho da chave para piscina <n> (default: %u) + + + Set minimum block size in bytes (default: %u) + Definir tamanho mínimo do bloco, em bytes (padrão: %u) + + + Set the number of threads to service RPC calls (default: %d) + Defina o número de threads para chamadas do serviço RPC (padrão: %d) + + + Specify configuration file (default: %s) + Especificar arquivo de configuração (padrão: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Especificar tempo para desistência de conexões, em mili segundos (mínimo: 1, padrão: %d) + Specify pid file (default: %s) Especificar aqrquivo pid (default: %s) @@ -3065,10 +3353,6 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Invalid amount for -paytxfee=<amount>: '%s' Quantidade inválida para -paytxfee=<quantidade>: '%s' - - Invalid amount - Quantidade inválida - Insufficient funds Saldo insuficiente @@ -3101,13 +3385,9 @@ por exemplo: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com⏎ Done loading Carregamento terminado - - To use the %s option - Para usar a opção %s - Error Erro - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_pt_PT.ts b/src/qt/locale/bitcoin_pt_PT.ts index dc016623e4f9d..7c72bc7a6f3aa 100644 --- a/src/qt/locale/bitcoin_pt_PT.ts +++ b/src/qt/locale/bitcoin_pt_PT.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Clique duas vezes para editar o endereço ou o rótulo + Right-click to edit address or label + Clique á direita para editar endereço ou rótulo Create a new address @@ -43,7 +43,7 @@ &Delete - E&liminar\ + &Eliminar\ Choose the address to send coins to @@ -66,12 +66,12 @@ Endereços de depósito - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estes são os seus endereços Bitcoin para enviar pagamentos. Verifique sempre o valor e o endereço de envio antes de enviar moedas. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Estes são os seus endereços Hypercoin para enviar pagamentos. Verifique sempre o valor e o endereço de envio antes de enviar moedas. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Estes são os seus endereços Bitcoin para receber pagamentos. É recomendado que utilize um endereço novo para cada transacção. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Estes são os seus endereços Hypercoin para receber pagamentos. É recomendado que utilize um endereço novo para cada transacção. Copy &Label @@ -93,7 +93,11 @@ Exporting Failed A Exportação Falhou - + + There was an error trying to save the address list to %1. Please try again. + Houve um erro ao tentar a guardar a lista de endereços em %1. Por favor tente novamente. + + AddressTableModel @@ -160,8 +164,8 @@ Confirmar encriptação da carteira - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Atenção: Se encriptar a carteira e perder a sua senha irá <b>PERDER TODOS OS SEUS BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Atenção: Se encriptar a carteira e perder a sua senha irá <b>PERDER TODOS OS SEUS HYPERCOINS</b>! Are you sure you wish to encrypt your wallet? @@ -184,8 +188,8 @@ Escreva a nova frase de seguraça da sua carteira. <br/> Por favor, use uma frase de <b>10 ou mais caracteres aleatórios,</b> ou <b>oito ou mais palavras</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - O cliente Bitcoin irá agora ser fechado para terminar o processo de encriptação. Recorde que a encriptação da sua carteira não protegerá totalmente os seus bitcoins de serem roubados por programas maliciosos que infectem o seu computador. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + O cliente Hypercoin irá agora ser fechado para terminar o processo de encriptação. Recorde que a encriptação da sua carteira não protegerá totalmente os seus hypercoins de serem roubados por programas maliciosos que infectem o seu computador. Wallet encryption failed @@ -290,6 +294,10 @@ Open &URI... Abrir &URI... + + Hypercoin Core client + Cliente Hypercoin Core + Importing blocks from disk... A importar blocos do disco... @@ -299,12 +307,12 @@ A reindexar blocos no disco... - Send coins to a Bitcoin address - Enviar moedas para um endereço bitcoin + Send coins to a Hypercoin address + Enviar moedas para um endereço hypercoin - Modify configuration options for Bitcoin - Modificar opções de configuração para bitcoin + Modify configuration options for Hypercoin + Modificar opções de configuração para hypercoin Backup wallet to another location @@ -327,8 +335,8 @@ &Verificar mensagem... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -342,6 +350,10 @@ &Receive &Receber + + Show information about Hypercoin Core + Mostrar informação sobre Hypercoin Core + &Show / Hide Mo&strar / Ocultar @@ -355,12 +367,12 @@ Encriptar as chaves privadas que pertencem à sua carteira - Sign messages with your Bitcoin addresses to prove you own them - Assine mensagens com os seus endereços Bitcoin para provar que os controla + Sign messages with your Hypercoin addresses to prove you own them + Assine mensagens com os seus endereços Hypercoin para provar que os controla - Verify messages to ensure they were signed with specified Bitcoin addresses - Verifique mensagens para assegurar que foram assinadas com o endereço Bitcoin especificado + Verify messages to ensure they were signed with specified Hypercoin addresses + Verifique mensagens para assegurar que foram assinadas com o endereço Hypercoin especificado &File @@ -368,27 +380,27 @@ &Settings - Con&figurações + &Configurações &Help - A&juda + &Ajuda Tabs toolbar Barra de separadores - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Solicitar pagamentos (gera códigos QR e URIs bitcoin:) + Request payments (generates QR codes and hypercoin: URIs) + Solicitar pagamentos (gera códigos QR e URIs hypercoin:) - &About Bitcoin Core - &Sobre o Bitcoin Core + &About Hypercoin Core + &Sobre o Hypercoin Core Show the list of used sending addresses and labels @@ -399,20 +411,20 @@ Mostrar a lista de rótulos e endereços de receção usados - Open a bitcoin: URI or payment request - Abrir URI bitcoin: ou pedido de pagamento + Open a hypercoin: URI or payment request + Abrir URI hypercoin: ou pedido de pagamento &Command-line options - Opções da linha de &comandos + &Opções da linha de &comandos - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Mostrar a mensagem de ajuda do Bitcoin Core para obter uma lista com possíveis opções de linha de comandos + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Mostrar a mensagem de ajuda do Hypercoin Core para obter uma lista com possíveis opções de linha de comandos - %n active connection(s) to Bitcoin network - %n ligação ativa à rede Bitcoin%n ligações ativas à rede Bitcoin + %n active connection(s) to Hypercoin network + %n ligação ativa à rede Hypercoin%n ligações ativas à rede Hypercoin No block source available... @@ -507,6 +519,10 @@ Endereço: %4 CoinControlDialog + + Coin Selection + Seleção de moeda + Quantity: Quantidade: @@ -527,6 +543,10 @@ Endereço: %4 Fee: Taxa: + + Dust: + Lixo: + After Fee: Depois da Taxa: @@ -551,6 +571,14 @@ Endereço: %4 Amount Quantia + + Received with label + Recebido com rótulo + + + Received with address + Recebido com endereço + Date Data @@ -611,6 +639,10 @@ Endereço: %4 Copy priority Copiar prioridade + + Copy dust + Copiar lixo + Copy change Copiar alteração @@ -659,6 +691,10 @@ Endereço: %4 none nenhum + + Can vary +/- %1 satoshi(s) per input. + Pode variar +/- %1 satoshi(s) por entrada + yes sim @@ -747,8 +783,8 @@ Endereço: %4 O endereço introduzido "%1" já se encontra no livro de endereços. - The entered address "%1" is not a valid Bitcoin address. - O endereço introduzido "%1" não é um endereço bitcoin válido. + The entered address "%1" is not a valid Hypercoin address. + O endereço introduzido "%1" não é um endereço hypercoin válido. Could not unlock wallet. @@ -785,16 +821,20 @@ Endereço: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version versão - About Bitcoin Core - Sobre o Bitcoin Core + (%1-bit) + (%1-bit) + + + About Hypercoin Core + Sobre o Hypercoin Core Command-line options @@ -820,6 +860,10 @@ Endereço: %4 Start minimized Iniciar minimizado + + Set SSL root certificates for payment request (default: -system-) + Configurar certificados SSL root para pedido de pagamento (default: -system-) + Show splash screen on startup (default: 1) Mostrar imagem ao iniciar (por defeito: 1) @@ -836,16 +880,16 @@ Endereço: %4 Bem-vindo - Welcome to Bitcoin Core. - Bem-vindo ao Bitcoin Core. + Welcome to Hypercoin Core. + Bem-vindo ao Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Sendo esta a primeira vez que o programa é iniciado, poderá escolher onde o Bitcoin Core irá guardar os seus dados. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Sendo esta a primeira vez que o programa é iniciado, poderá escolher onde o Hypercoin Core irá guardar os seus dados. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - O Bitcoin Core vai transferir e armazenar uma cópia do "block chain" (cadeia de blocos). Pelo menos %1GB de dados serão armazenados nesta pasta, e vão crescer ao longo do tempo. A sua carteira também irá ser armazenada nesta pasta. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + O Hypercoin Core vai transferir e armazenar uma cópia do "block chain" (cadeia de blocos). Pelo menos %1GB de dados serão armazenados nesta pasta, e vão crescer ao longo do tempo. A sua carteira também irá ser armazenada nesta pasta. Use the default data directory @@ -856,14 +900,26 @@ Endereço: %4 Utilizar uma pasta de dados personalizada: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core + + + Error: Specified data directory "%1" cannot be created. + Erro: Pasta de dados especificada como "%1, não pode ser criada. Error Erro - + + %n GB of free space available + %n GB de espaço livre disponível %n GB de espaço livre disponível + + + (of %n GB needed) + (de %n GB necessários)(de %n GB necessário) + + OpenURIDialog @@ -898,12 +954,12 @@ Endereço: %4 &Principal - Automatically start Bitcoin after logging in to the system. - Começar o Bitcoin automaticamente ao iniciar sessão no sistema. + Automatically start Hypercoin after logging in to the system. + Começar o Hypercoin automaticamente ao iniciar sessão no sistema. - &Start Bitcoin on system login - &Começar o Bitcoin ao iniciar o sistema + &Start Hypercoin on system login + &Começar o Hypercoin ao iniciar o sistema Size of &database cache @@ -917,10 +973,27 @@ Endereço: %4 Number of script &verification threads Número de processos de &verificação de scripts + + Accept connections from outside + Aceitar conceções externas + + + Allow incoming connections + Permitir conexão + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) Endereço IP do proxy (p.ex. IPv4: 127.0.0.1 / IPv6: ::1) + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URLs de outrem (ex. um explorador de blocos) que aparece no separador de transações como itens do menu de contexto. +%s do URL é substituído por hash de transação. Vários URLs são separados por barra vertical |. + + + Third party transaction URLs + URLs de transação de outrem + Active command-line options that override above options: Opções de linha de comandos ativas que se sobrepõem ás opções anteriores: @@ -937,6 +1010,10 @@ Endereço: %4 &Network &Rede + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = Deixar essa quantidade de núcleos livre) + W&allet C&arteira @@ -958,24 +1035,32 @@ Endereço: %4 &Gastar troco não confirmado - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir a porta do cliente bitcoin automaticamente no seu router. Isto apenas funciona se o seu router suportar UPnP e este se encontrar ligado. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir a porta do cliente hypercoin automaticamente no seu router. Isto apenas funciona se o seu router suportar UPnP e este se encontrar ligado. Map port using &UPnP Mapear porta usando &UPnP + + Connect to the Hypercoin network through a SOCKS5 proxy. + Conectar à rede da Hypercoin através dum proxy SOCLS5. + + + &Connect through SOCKS5 proxy (default proxy): + &Ligar através dum proxy SOCKS5 (proxy por defeito): + Proxy &IP: &IP do proxy: &Port: - &Porta: + &Porto: Port of the proxy (e.g. 9050) - Porta do proxy (p.ex. 9050) + Porto do proxy (p.ex. 9050) &Window @@ -999,15 +1084,15 @@ Endereço: %4 &Display - Vis&ualização + &Visualização User Interface &language: &Linguagem da interface de utilizador: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - A linguagem da interface do utilizador pode ser definida aqui. Esta definição entrará em efeito após reiniciar o Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + A linguagem da interface do utilizador pode ser definida aqui. Esta definição entrará em efeito após reiniciar o Hypercoin. &Unit to show amounts in: @@ -1065,8 +1150,12 @@ Endereço: %4 Formulário - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - A informação mostrada poderá estar desatualizada. A sua carteira sincroniza automaticamente com a rede Bitcoin depois de estabelecer ligação, mas este processo ainda não está completo. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + A informação mostrada poderá estar desatualizada. A sua carteira sincroniza automaticamente com a rede Hypercoin depois de estabelecer ligação, mas este processo ainda não está completo. + + + Watch-only: + Modo-verificação: Available: @@ -1092,6 +1181,10 @@ Endereço: %4 Mined balance that has not yet matured O saldo minado ainda não amadureceu + + Balances + Balanços + Total: Total: @@ -1100,6 +1193,30 @@ Endereço: %4 Your current total balance O seu saldo total actual + + Your current balance in watch-only addresses + O seu balanço atual em endereços de apenas observação + + + Spendable: + Dispensável: + + + Recent transactions + transações recentes + + + Unconfirmed transactions to watch-only addresses + Transações não confirmadas para endereços modo-verificação + + + Mined balance in watch-only addresses that has not yet matured + Saldo minado ainda não disponivél de endereços modo-verificação + + + Current total balance in watch-only addresses + Saldo disponivél em enderços modo-verificação + out of sync fora de sincronia @@ -1119,6 +1236,18 @@ Endereço: %4 Payment request rejected Pedido de pagamento rejeitado + + Payment request network doesn't match client network. + Rede de requisição de pagamento não corresponde com a rede do cliente. + + + Payment request has expired. + Pedido de pagamento expirado. + + + Payment request is not initialized. + Requisição de pagamento não iniciou. + Requested payment amount of %1 is too small (considered dust). Quantia solicitada para pagamento de %1 é muito pequena (considerada "pó"). @@ -1128,17 +1257,25 @@ Endereço: %4 Erro de pedido de pagamento - Cannot start bitcoin: click-to-pay handler - Impossível iniciar o controlador de bitcoin: click-to-pay + Cannot start hypercoin: click-to-pay handler + Impossível iniciar o controlador de hypercoin: click-to-pay Payment request fetch URL is invalid: %1 O URL de pedido de pagamento é inválido: %1 + + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI não foi lido correctamente! Isto pode ser causado por um endereço Hypercoin inválido ou por parâmetros URI malformados. + Payment request file handling Controlo de pedidos de pagamento. + + Payment request file cannot be read! This can be caused by an invalid payment request file. + O ficheiro de pedido de pagamento não pôde ser lido! Isto pode ter sido causado por um ficheiro de pedido de pagamento inválido. + Unverified payment requests to custom payment scripts are unsupported. Pedidos de pagamento não-verificados para scripts de pagamento personalizados não são suportados. @@ -1147,10 +1284,22 @@ Endereço: %4 Refund from %1 Reembolsar de %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Pedido de pagamento %1 excede o tamanho (%2 bytes, permitido %3 bytes). + + + Payment request DoS protection + Pedido de pagamento proteção DdS + Error communicating with %1: %2 Erro ao comunicar com %1: %2 + + Payment request cannot be parsed! + O pedido de pagamento não pode ser lido ou processado! + Bad response from server %1 Má resposta do servidor %1 @@ -1166,13 +1315,33 @@ Endereço: %4 PeerTableModel - + + User Agent + Agente Usuário + + + Address/Hostname + Endereço/Nome da Rede + + + Ping Time + Tempo de Latência + + QObject Amount Quantia + + Enter a Hypercoin address (e.g. %1) + Entre um endereço Hypercoin (ex. %1) + + + %1 d + %1 d + %1 h %1 h @@ -1181,11 +1350,31 @@ Endereço: %4 %1 m %1 m + + %1 s + %1 s + + + NETWORK + REDE + + + UNKNOWN + DESCONHECIDO + + + None + Nenhum + N/A N/D - + + %1 ms + %1 ms + + QRImageWidget @@ -1235,6 +1424,10 @@ Endereço: %4 Using OpenSSL version Usando versão OpenSSL + + Using BerkeleyDB version + Versão BerkeleyDB em uso + Startup time Hora de inicialização @@ -1259,6 +1452,74 @@ Endereço: %4 Current number of blocks Número actual de blocos + + Received + Recebido + + + Sent + Enviado + + + &Peers + &Conexção + + + Select a peer to view detailed information. + Selecione uma conexação para ver informação em detalhe. + + + Direction + Direcção + + + Version + Versão + + + User Agent + Agente Usuário + + + Services + Serviços + + + Starting Height + Iniciando Altura + + + Sync Height + Sincronização da Altura + + + Ban Score + Resultado da Suspensão + + + Connection Time + Tempo de Conexção + + + Last Send + Ultimo Envio + + + Last Receive + Ultimo Recebimento + + + Bytes Sent + Bytes Enviados + + + Bytes Received + Bytes Recebidos + + + Ping Time + Tempo de Latência + Last block time Data do último bloco @@ -1300,7 +1561,7 @@ Endereço: %4 Ficheiro de registo de depuração - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. Abrir o ficheiro de registo de depuração da pasta de dados actual. Isto pode demorar alguns segundos para ficheiros de registo maiores. @@ -1308,8 +1569,8 @@ Endereço: %4 Limpar consola - Welcome to the Bitcoin RPC console. - Bem-vindo à consola RPC Bitcoin. + Welcome to the Hypercoin RPC console. + Bem-vindo à consola RPC Hypercoin. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1335,7 +1596,31 @@ Endereço: %4 %1 GB %1 GB - + + via %1 + via %1 + + + never + nunca + + + Inbound + Entrada + + + Outbound + Saída + + + Unknown + Desconhecido + + + Fetching... + Em busca... + + ReceiveCoinsDialog @@ -1344,7 +1629,7 @@ Endereço: %4 &Label: - Rótu&lo: + &Rótulo: &Message: @@ -1359,8 +1644,8 @@ Endereço: %4 Reutilizar um endereço de receção existente (não recomendado) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Uma mensagem opcional para anexar ao pedido de pagamento, que será exibida quando o pedido for aberto. Nota: A mensagem não será enviada com o pagamento através da rede Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Uma mensagem opcional para anexar ao pedido de pagamento, que será exibida quando o pedido for aberto. Nota: A mensagem não será enviada com o pagamento através da rede Hypercoin. An optional label to associate with the new receiving address. @@ -1563,6 +1848,78 @@ Endereço: %4 Custom change address Endereço de troco personalizado + + Transaction Fee: + Custo da Transação: + + + Choose... + Escolha... + + + collapse fee-settings + fechar definições-de custos + + + Minimize + Minimizar + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Se a taxa fixa for 1000 satoshis e a transação for somente 250 bytes, pagará somente 250 satoshis "por kilobyte" em custos se trasacionar "pelo menos" 1000 satoshis. Transações superiores a um kilobyte são cobradas por kilobyte. + + + per kilobyte + por kilobyte + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Se a taxa fixa for 1000 satoshis e a transação for somente 250 bytes, pagará somente 250 satoshis "por kilobyte" em custos se trasacionar "pelo menos" 1000 satoshis. Transações superiores a um kilobyte são cobradas por kilobyte. + + + total at least + total minimo + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Pode pagar somente a taxa minima desde que haja um volume de transações inferior ao espaço nos blocos. No entanto tenha em atenção que esta opção poderá acabar em uma transação nunca confirmada assim que os pedidos de transações excedam a capacidade de processamento da rede. + + + (read the tooltip) + (leia a dica) + + + Recommended: + Recomendado: + + + Custom: + Uso: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Taxa inteligente ainda não foi acionada. Normalmente demora alguns blocos...) + + + Confirmation time: + Tempo de confirmação: + + + normal + normal + + + fast + rapido + + + Send as zero-fee transaction if possible + Enviar como uma transação a custo zero se possivél + + + (confirmation may take longer) + (confirmação poderá demorar mais) + Send to multiple recipients at once Enviar para múltiplos destinatários de uma vez @@ -1575,9 +1932,13 @@ Endereço: %4 Clear all fields of the form. Limpar todos os campos do formulário. + + Dust: + Lixo: + Clear &All - &Limpar Tudo + Limpar &Tudo Balance: @@ -1589,7 +1950,7 @@ Endereço: %4 S&end - &Enviar + E&nviar Confirm send coins @@ -1627,10 +1988,6 @@ Endereço: %4 Copy change Copiar alteração - - Total Amount %1 (= %2) - Quantia Total %1 (= %2) - or ou @@ -1664,8 +2021,20 @@ Endereço: %4 A transação foi rejeitada! Isto poderá acontecer se algumas das moedas na sua carteira já tiverem sido gastas, se por exemplo tiver usado uma cópia do ficheiro wallet.dat e as moedas tiverem sido gastas na cópia mas não tiverem sido marcadas como gastas aqui. - Warning: Invalid Bitcoin address - Aviso: Endereço Bitcoin inválido + A fee higher than %1 is considered an insanely high fee. + Uma taxa superior a %1 é considerada muito alta. + + + Pay only the minimum fee of %1 + Pagar somente a taxa minima de %1 + + + Estimated to begin confirmation within %1 block(s). + Confirmação deverá começar dentro de %1 bloco(s). + + + Warning: Invalid Hypercoin address + Aviso: Endereço Hypercoin inválido (no label) @@ -1675,6 +2044,10 @@ Endereço: %4 Warning: Unknown change address Aviso: Endereço de troco desconhecido + + Copy dust + Copiar lixo + Are you sure you want to send? Tem a certeza que deseja enviar? @@ -1710,6 +2083,10 @@ Endereço: %4 This is a normal payment. Este é um pagamento normal. + + The Hypercoin address to send the payment to + O endereço Hypercoin para enviar o pagamento + Alt+A Alt+A @@ -1739,8 +2116,8 @@ Endereço: %4 Introduza um rótulo para este endereço para o adicionar à sua lista de endereços usados - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Uma mensagem que estava anexada ao URI bitcoin: que será armazenada com a transação para sua referência. Nota: Esta mensagem não será enviada através da rede Bitcoin. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Uma mensagem que estava anexada ao URI hypercoin: que será armazenada com a transação para sua referência. Nota: Esta mensagem não será enviada através da rede Hypercoin. This is an unverified payment request. @@ -1748,7 +2125,7 @@ Endereço: %4 Pay To: - Pagar A: + Pagar a: Memo: @@ -1758,8 +2135,8 @@ Endereço: %4 ShutdownWindow - Bitcoin Core is shutting down... - O Bitcoin Core está a encerrar... + Hypercoin Core is shutting down... + O Hypercoin Core está a encerrar... Do not shut down the computer until this window disappears. @@ -1774,12 +2151,16 @@ Endereço: %4 &Sign Message - A&ssinar Mensagem + &Assinar Mensagem You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Pode assinar mensagens com os seus endereços para provar que são seus. Tenha atenção ao assinar mensagens ambíguas, pois ataques de phishing podem tentar enganá-lo de modo a assinar a sua identidade para os atacantes. Apenas assine declarações detalhadas com as quais concorde. + + The Hypercoin address to sign the message with + O endereço Hypercoin para designar a mensagem + Choose previously used address Escolher endereço usado previamente @@ -1809,8 +2190,8 @@ Endereço: %4 Copiar a assinatura actual para a área de transferência - Sign the message to prove you own this Bitcoin address - Assine uma mensagem para provar que é dono deste endereço Bitcoin + Sign the message to prove you own this Hypercoin address + Assine uma mensagem para provar que é dono deste endereço Hypercoin Sign &Message @@ -1833,8 +2214,12 @@ Endereço: %4 Introduza o endereço de assinatura, mensagem (assegure-se que copia quebras de linha, espaços, tabulações, etc. exactamente) e assinatura abaixo para verificar a mensagem. Tenha atenção para não ler mais na assinatura do que o que estiver na mensagem assinada, para evitar ser enganado por um atacante que se encontre entre si e quem assinou a mensagem. - Verify the message to ensure it was signed with the specified Bitcoin address - Verifique a mensagem para assegurar que foi assinada com o endereço Bitcoin especificado + The Hypercoin address the message was signed with + O endereço Hypercoin com que a mensagem foi designada + + + Verify the message to ensure it was signed with the specified Hypercoin address + Verifique a mensagem para assegurar que foi assinada com o endereço Hypercoin especificado Verify &Message @@ -1900,12 +2285,12 @@ Endereço: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - The Bitcoin Core developers - Os programadores do Bitcoin Core + The Hypercoin Core developers + Os programadores do Hypercoin Core [testnet] @@ -1973,6 +2358,10 @@ Endereço: %4 own address endereço próprio + + watch-only + modo-verificação + label rótulo @@ -1993,6 +2382,14 @@ Endereço: %4 Debit Débito + + Total debit + Total a debitar + + + Total credit + Total a creditar + Transaction fee Taxa de transação @@ -2143,6 +2540,10 @@ Endereço: %4 Mined Minadas + + watch-only + modo-verificação + (n/a) (n/d) @@ -2159,6 +2560,10 @@ Endereço: %4 Type of transaction. Tipo de transação. + + Whether or not a watch-only address is involved in this transaction. + Desde que um endereço de modo-verificação faça parte ou não desta transação + Destination address of transaction. Endereço de destino da transação. @@ -2254,6 +2659,10 @@ Endereço: %4 Export Transaction History Exportar Histórico de Transacções + + Watch-only + Modo-verificação + Exporting Failed A Exportação Falhou @@ -2309,7 +2718,11 @@ Endereço: %4 UnitDisplayStatusBarControl - + + Unit to show amounts in. Click to select another unit. + Unidade de valores recebidos. Clique para selecionar outra unidade. + + WalletFrame @@ -2393,56 +2806,41 @@ Endereço: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Aceitar ligações externas (padrão: 1 sem -proxy ou -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, deverá definir uma rpcpassword no ficheiro de configuração: -%s -É recomendado que use a seguinte palavra-passe aleatória: -rpcuser=bitcoinrpc -rpcpassword=%s -(não é necessário lembrar esta palavra-passe) -O nome de utilizador e palavra-passe NÃO PODEM ser iguais. -Se o ficheiro não existir, crie-o com permissões de leitura apenas para o dono. -Também é recomendado definir um alertnotify para que seja alertado sobre problemas; -por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.com - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Associar a endereço específico e escutar sempre nele. Use a notação [anfitrião]:porta para IPv6 - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Entre no modo de teste de regressão, que usa uma cadeia especial cujos blocos podem ser resolvidos instantaneamente. + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Apague todas as transações da carteira e somente restore aquelas que façam parte do blockchain através de re-scan ao reiniciar o programa - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Erro: A transação foi rejeitada! Isso poderá acontecer se algumas das moedas na sua carteira já tiverem sido gastas, se por exemplo tiver usado uma cópia do ficheiro wallet.dat e as moedas tiverem sido gastas na cópia mas não tiverem sido marcadas como gastas aqui. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Distribuido através da licença de software MIT, verifique o ficheiro anexado COPYING ou <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Erro: Esta transação requer uma taxa de transação mínima de %s devido á sua quantia, complexidade, ou uso de fundos recebidos recentemente! + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Entre no modo de teste de regressão, que usa uma cadeia especial cujos blocos podem ser resolvidos instantaneamente. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executar comando quando uma das transações na carteira mudar (no comando, %s é substituído pelo ID da Transação) + + In this mode -genproclimit controls how many blocks are generated immediately. + O modo -genproclimit controla quantos blocos são generados imediatamente. + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Defina o número de processos de verificação (%u até %d, 0 = automático, <0 = ldisponibiliza esse número de núcleos livres, por defeito: %d) + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Esta é uma versão de testes pré-lançamento - use à sua responsabilidade - não usar para minar ou aplicações comerciais - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Incapaz de vincular à porta %s neste computador. O Bitcoin Core provavelmente já está a correr. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Incapaz de vincular à porta %s neste computador. O Hypercoin Core provavelmente já está a correr. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2464,6 +2862,14 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comWarning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Atenção: wallet.dat corrompido, dados recuperados! wallet.dat original salvo como wallet.{timestamp}.bak em %s; se o seu saldo ou transações estiverem incorrectos deverá recuperar uma cópia de segurança. + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Ligações na lista branca conectam desde a seguinte netmask ou endereço IP. Posse ser especificado varias vezes. + + + (default: 1) + (padrão: 1) + <category> can be: <categoria> pode ser: @@ -2480,10 +2886,18 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comConnect only to the specified node(s) Apenas ligar ao(s) nó(s) especificado(s) + + Connection options: + Opcões de conexção: + Corrupted block database detected Cadeia de blocos corrompida detectada + + Debugging/Testing options: + Depuração/Opções teste: + Discover own IP address (default: 1 when listening and no -externalip) Descobrir endereço IP próprio (padrão: 1 ao escutar sem -externalip) @@ -2516,10 +2930,6 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comError: Disk space is low! Erro: Pouco espaço em disco! - - Error: Wallet locked, unable to create transaction! - Erro: Carteira bloqueada, incapaz de criar transação! - Failed to listen on any port. Use -listen=0 if you want this. Falhou a escutar em qualquer porta. Use -listen=0 se quiser isto. @@ -2528,6 +2938,10 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comIf <category> is not supplied, output all debugging information. Se uma <categoria> não é fornecida, imprimir toda a informação de depuração. + + Importing... + A importar... + Incorrect or no genesis block found. Wrong datadir for network? Bloco génese incorreto ou nenhum bloco génese encontrado. Pasta de dados errada para a rede? @@ -2540,6 +2954,10 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comNot enough file descriptors available. Os descritores de ficheiros disponíveis são insuficientes. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Somente conectar aos nodes na rede <net> (ipv4, ipv6 ou onion) + Rebuild block chain index from current blk000??.dat files Reconstruir a cadeia de blocos a partir dos ficheiros blk000??.dat atuais @@ -2560,6 +2978,10 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comThis is intended for regression testing tools and app development. Isto têm como fim a realização de testes de regressão para pools e desenvolvimento de aplicações. + + Use UPnP to map the listening port (default: %u) + Use UPnP para mapear a porto de escuta (default: %u) + Verifying blocks... A verificar blocos... @@ -2585,8 +3007,24 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comImportar blocos de um ficheiro blk000??.dat externo - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Impossível trancar a pasta de dados %s. Provavelmente o Bitcoin Core já está a ser executado. + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Permitir conexções JSON-RPC de fontes especificas. Valido para <ip> um unico IP (ex. 1.2.3.4), uma rede/netmask (ex. 1.2.3.4/255.255.255.0) ou uma rede/CIDR (ex. 1.2.3.4/24). Esta opção pode ser especificada varias vezes + + + An error occurred while setting up the RPC address %s port %u for listening: %s + Um erro ocorreu durante a definição do endereço RPC %s porto %u para escutar: %s + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Vincualar o endereço dado e listar as ligações conectadas ao mesmo na lista branca. Use a notação [anfitrião]:porta para IPv6 + + + Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) + Vinculado para dar o endereço para atender as ligações JSON-RPC. Use [host]: Notação de porta para IPv6. Esta opção pode ser especificada várias vezes (padrão: ligam-se a todas as interfaces) + + + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Impossível trancar a pasta de dados %s. Provavelmente o Hypercoin Core já está a ser executado. Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) @@ -2596,6 +3034,18 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comSet maximum size of high-priority/low-fee transactions in bytes (default: %d) Definir tamanho máximo de transações com alta-prioridade/baixa-taxa em bytes (por defeito: %d) + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Atenção: Por favor verifique que a data e hora do seu computador estão correctas! Se o seu relógio não estiver certo o Hypercoin Core não irá funcionar correctamente. + + + Copyright (C) 2009-%i The Bitcoin Core Developers + Copyright (C) 2009-%i Os Programadores do Bitcoin Core + + + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Erro ao carregar wallet.dat: A Carteira requer uma versão mais recente do Hypercoin Core + Information Informação @@ -2640,6 +3090,10 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comUsername for JSON-RPC connections Nome de utilizador para ligações JSON-RPC + + Wallet needed to be rewritten: restart Hypercoin Core to complete + A Carteira precisou de ser reescrita: reinicie o Hypercoin Core para completar o processo + Warning Aviso @@ -2700,6 +3154,58 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comInvalid -proxy address: '%s' Endereço -proxy inválido: '%s' + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + Escutar por ligações JSON-RPC na porta <port> (por defeito: %u ou rede de testes: %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + Escute ligações na porta <port> (por defeito: %u ou testnet: %u) + + + Maintain at most <n> connections to peers (default: %u) + Manter no máximo <n> ligações a outros nós da rede (por defeito: %u) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + Maximo armazenamento intermédio de recepção por ligação, <n>*1000 bytes (por defeito: %u) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + Maximo armazenamento intermédio de envio por ligação, <n>*1000 bytes (por defeito: %u) + + + Prepend debug output with timestamp (default: %u) + Adicionar data e hora à informação de depuração (por defeito: %u) + + + Server certificate file (default: %s) + Ficheiro de certificado do servidor (por defeito: %s) + + + Server private key (default: %s) + Chave privada do servidor (por defeito: %s) + + + Set key pool size to <n> (default: %u) + Definir o tamanho da memória de chaves para <n> (por defeito: %u) + + + Set minimum block size in bytes (default: %u) + Definir tamanho minímo de um bloco em bytes (por defeito: %u) + + + Set the number of threads to service RPC calls (default: %d) + Defina o número de processos para servir as chamadas RPC (por defeito: %d) + + + Specify configuration file (default: %s) + Especificar ficheiro de configuração (por defeito: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Especificar tempo de espera da ligação em milissegundos (mínimo 1, por defeito: %d) + Unknown network specified in -onlynet: '%s' Rede desconhecida especificada em -onlynet: '%s' @@ -2716,10 +3222,6 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comInvalid amount for -paytxfee=<amount>: '%s' Quantia inválida para -paytxfee=<amount>: '%s' - - Invalid amount - Quantia inválida - Insufficient funds Fundos insuficientes @@ -2752,13 +3254,9 @@ por exemplo: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.comDone loading Carregamento completo - - To use the %s option - Para usar a opção %s - Error Erro - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts index 81342c5dbc781..93f806f77a3f3 100644 --- a/src/qt/locale/bitcoin_ro_RO.ts +++ b/src/qt/locale/bitcoin_ro_RO.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Dublu-click pentru a edita adresa sau eticheta + Right-click to edit address or label + Click-dreapta pentru a edita adresa sau eticheta Create a new address @@ -19,11 +19,11 @@ &Copy - &Copiere + &Copiază C&lose - &Inchidere + Închide &Copy Address @@ -31,11 +31,11 @@ Delete the currently selected address from the list - Sterge adresele curent selectate din lista + Şterge adresele curent selectate din listă Export the data in the current tab to a file - Exporta datele din tab-ul curent într-un fișier + Exportă datele din tab-ul curent într-un fişier &Export @@ -43,35 +43,35 @@ &Delete - Ște&rge + Şterge Choose the address to send coins to - Alegeti adresa unde vreti sa trimiteti monezile + Alegeţi adresa unde vreţi să trimiteţi monezile Choose the address to receive coins with - Alegeti adresa unde vreti sa primiti monezile + Alegeţi adresa unde vreţi să primiţi monezile C&hoose - &Alege + &Alegeţi Sending addresses - Adresa Destinatarului + Adresa destinatarului Receiving addresses - Adresa pe care primiti + Adresa de primire - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Acestea sunt adresele dumneavoastra Bitcoin care pot fi folosite la trimiterea platilor. Verificati totdeauna cantitatea si adresa de primire inainte de a trimite monezi. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Acestea sînt adresele dumneavoastră Hypercoin pentru efectuarea plăţilor. Verificaţi întotdeauna cantitatea şi adresa de primire înainte de a trimite monezi. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Acestea sunt adresele dumneavoastra Bitcoin folosite pentru a primi plati. Este recomandat sa folositi cate o adresa noua de primire pentru fiecare tranzactie in parte. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Acestea sînt adresele dumneavoastră Hypercoin folosite pentru a primi plati. Este recomandat să folosiţi o adresă nouă de primire pentru fiecare tranzacţie în parte. Copy &Label @@ -79,21 +79,25 @@ &Edit - &Editează + &Editare Export Address List - Exportati Agenda + Exportă listă de adrese Comma separated file (*.csv) - Valori separate prin virgulă (*.csv) + Fişier text cu valori separate prin virgulă (*.csv) Exporting Failed - Exportare esuata + Export nereuşit - + + There was an error trying to save the address list to %1. Please try again. + A apărut o eroare la salvarea listei de adrese la %1. Vă rugăm să încercaţi din nou. + + AddressTableModel @@ -117,7 +121,7 @@ Enter passphrase - Introdu fraza de acces + Introduceţi fraza de acces New passphrase @@ -125,71 +129,75 @@ Repeat new passphrase - Repetă noua frază de acces + Repetaţi noua frază de acces Encrypt wallet - Criptează portofelul + Criptare portofel This operation needs your wallet passphrase to unlock the wallet. - Această acțiune necesită fraza ta de acces pentru deblocarea portofelului. + Această acţiune necesită fraza dvs. de acces pentru deblocarea portofelului. Unlock wallet - Deblochează portofelul + Deblocare portofel This operation needs your wallet passphrase to decrypt the wallet. - Această acțiune necesită fraza ta de acces pentru decriptarea portofelului. + Această acţiune necesită fraza dvs. de acces pentru decriptarea portofelului. Decrypt wallet - Decriptează portofelul. + Decriptare portofel Change passphrase - Schimbă fraza de acces + Schimbare frază de acces Enter the old and new passphrase to the wallet. - Introdu vechea și noua parolă pentru portofel. + Introduceţi vechea şi noua parolă pentru portofel. Confirm wallet encryption - Confirmă criptarea portofelului + Confirmaţi criptarea portofelului - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Atenție: Dacă pierdeţi parola portofelului electronic dupa criptare, <b>VEŢI PIERDE ÎNTREAGA SUMĂ DE BITCOIN ACUMULATĂ</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Atenţie: Dacă pierdeţi parola portofelului electronic după criptare, <b>VEŢI PIERDE ÎNTREAGA SUMĂ DE HYPERCOIN ACUMULATĂ</b>! Are you sure you wish to encrypt your wallet? - Sunteţi sigur că doriţi să criptaţi portofelul electronic? + Sigur doriţi să criptaţi portofelul dvs.? IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - IMPORTANT: Orice copie de siguranta facuta in prealabil portofelului dumneavoastra ar trebui inlocuita cu cea generata cel mai recent fisier criptat al portofelului. Pentru siguranta, copiile de siguranta vechi ale portofelului ne-criptat vor deveni inutile de indata ce veti incepe folosirea noului fisier criptat al portofelului. + IMPORTANT: Orice copie de siguranţă făcută anterior portofelului dumneavoastră ar trebui înlocuită cu cea generată cel mai recent, fişier criptat al portofelului. Pentru siguranţă, copiile de siguranţă vechi ale portofelului ne-criptat vor deveni inutile imediat ce veţi începe folosirea noului fişier criptat al portofelului. Warning: The Caps Lock key is on! - Atentie! Caps Lock este pornit + Atenţie! Caps Lock este pornit! Wallet encrypted Portofel criptat - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se va închide acum pentru a termina procesul de criptare. Ține minte că criptarea portofelului nu te poate proteja în totalitate de furtul monedelor de către programe dăunătoare care îți infectează calculatorul. + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + Introduceţi noua parolă a portofelului electronic.<br/>Vă rugăm să folosiţi o parolă de<b>minimum 10 caractere aleatoare</b>, sau <b>minimum 8 cuvinte</b>. + + + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin se va închide acum pentru a termina procesul de criptare. Ţineţi minte că criptarea portofelului nu vă poate proteja în totalitate de furtul monedelor de către programe dăunătoare care vă infectează calculatorul. Wallet encryption failed - Criptarea portofelului a eșuat + Criptarea portofelului nu a reuşit Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Criptarea portofelului a eșuat din cauza unei erori interne. Portofelul tău nu a fost criptat. + Criptarea portofelului nu a reuşit din cauza unei erori interne. Portofelul dvs. nu a fost criptat. The supplied passphrases do not match. @@ -197,7 +205,7 @@ Wallet unlock failed - Deblocarea portofelului a eșuat + Deblocarea portofelului nu a reuşit The passphrase entered for the wallet decryption was incorrect. @@ -205,7 +213,7 @@ Wallet decryption failed - Decriptarea portofelului a eșuat + Decriptarea portofelului nu a reuşit Wallet passphrase was successfully changed. @@ -220,7 +228,7 @@ Synchronizing with network... - Se sincronizează cu rețeaua... + Se sincronizează cu reţeaua... &Overview @@ -236,19 +244,19 @@ &Transactions - &Tranzacții + &Tranzacţii Browse transaction history - Răsfoiește istoricul tranzacțiilor + Răsfoire istoric tranzacţii E&xit - &Ieșire + Ieşire Quit application - Închide aplicația + Închide aplicaţia About &Qt @@ -256,19 +264,19 @@ Show information about Qt - Arată informații despre Qt + Arată informaţii despre Qt &Options... - &Setări... + &Opţiuni... &Encrypt Wallet... - Criptează portofelul electronic... + Cript&ează portofelul... &Backup Wallet... - &Fă o copie de siguranță a portofelului... + Face o copie de siguranţă a portofelului... &Change Passphrase... @@ -276,35 +284,39 @@ &Sending addresses... - &Trimitere adrese... + Adrese de trimitere... &Receiving addresses... - &Primire adrese... + Adrese de p&rimire... Open &URI... - Vizitaţi &URI... + Deschide &URI... + + + Hypercoin Core client + Clientul Hypercoin Core Importing blocks from disk... - Importare blocks de pe disk... + Import blocuri de pe disk... Reindexing blocks on disk... Se reindexează blocurile pe disc... - Send coins to a Bitcoin address - Trimite monede către o adresă Bitcoin + Send coins to a Hypercoin address + Trimite monede către o adresă Hypercoin - Modify configuration options for Bitcoin - Modifică opțiunile de configurare pentru Bitcoin + Modify configuration options for Hypercoin + Modifică opţiunile de configurare pentru Hypercoin Backup wallet to another location - Creează o copie de rezervă a portofelului într-o locație diferită + Creează o copie de rezervă a portofelului într-o locaţie diferită Change the passphrase used for wallet encryption @@ -312,35 +324,39 @@ &Debug window - Fereastră &debug + Fereastra de &depanare Open debugging and diagnostic console - Deschide consola de debug și diagnosticare + Deschide consola de depanare şi diagnosticare &Verify message... - &Verifică mesajul... + &Verifică mesaj... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet - Portofelul + Portofel &Send - &Trimite + Trimite &Receive - &Primește + P&rimeşte + + + Show information about Hypercoin Core + Arată informaţii despre Hypercoin Core &Show / Hide - Arata/Ascunde + Arată/Ascunde Show or hide the main Window @@ -348,19 +364,19 @@ Encrypt the private keys that belong to your wallet - Criptează cheile private ale portofelului tău + Criptează cheile private ale portofelului dvs. - Sign messages with your Bitcoin addresses to prove you own them - Semnează mesaje cu adresa ta Bitcoin pentru a dovedi că îți aparțin + Sign messages with your Hypercoin addresses to prove you own them + Semnaţi mesaje cu adresa dvs. Hypercoin pentru a dovedi că vă aparţin - Verify messages to ensure they were signed with specified Bitcoin addresses - Verifică mesaje pentru a te asigura că au fost semnate cu adresa Bitcoin specificată + Verify messages to ensure they were signed with specified Hypercoin addresses + Verificaţi mesaje pentru a vă asigura că au fost semnate cu adresa Hypercoin specificată &File - &Fișier + &Fişier &Settings @@ -372,47 +388,47 @@ Tabs toolbar - Bara de file + Bara de unelte - Bitcoin Core - Bitcoin Core + Hypercoin Core + Nucleul Hypercoin - Request payments (generates QR codes and bitcoin: URIs) - Cereti plati (genereaza coduri QR si bitcoin-uri: URls) + Request payments (generates QR codes and hypercoin: URIs) + Cereţi plăţi (generează coduri QR şi hypercoin-uri: URls) - &About Bitcoin Core - &Despre Nucleul Bitcoin + &About Hypercoin Core + &Despre Nucleul Hypercoin Show the list of used sending addresses and labels - Aratati lista de adrese trimise si etichete folosite. + Arată lista de adrese trimise şi etichetele folosite. Show the list of used receiving addresses and labels - Aratati lista de adrese pentru primire si etichete + Arată lista de adrese pentru primire şi etichetele - Open a bitcoin: URI or payment request - Deschideti un bitcoin: o adresa URI sau o cerere de plata + Open a hypercoin: URI or payment request + Deschidere hypercoin: o adresa URI sau o cerere de plată &Command-line options - Command-line setări + Opţiuni linie de &comandă - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Arată mesajul de ajutor Bitcoin Core pentru a obține o listă cu opțiunile posibile de linii de comandă Bitcoin + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Arată mesajul de ajutor Hypercoin Core pentru a obţine o listă cu opţiunile posibile de linii de comandă Hypercoin - %n active connection(s) to Bitcoin network - %n conexiune activă către rețeaua Bitcoin%n conexiuni active către rețeaua Bitcoin%n de conexiuni active către rețeaua Bitcoin + %n active connection(s) to Hypercoin network + %n conexiune activă către reţeaua Hypercoin%n conexiuni active către reţeaua Hypercoin%n de conexiuni active către reţeaua Hypercoin No block source available... - Nici o sursă de bloc disponibil ... + Nici o sursă de bloc disponibilă... %n hour(s) @@ -420,7 +436,7 @@ %n day(s) - %n zi%n zile%n zile + %n zi%n zile%n de zile %n week(s) @@ -428,7 +444,11 @@ %1 and %2 - %1 si %2 + %1 şi %2 + + + %n year(s) + %n an%n ani%n de ani %1 behind @@ -436,11 +456,11 @@ Last received block was generated %1 ago. - Ultimul bloc recepționat a fost generat acum %1. + Ultimul bloc recepţionat a fost generat acum %1. Transactions after this will not yet be visible. - Tranzacții după aceasta nu va fi încă disponibile. + Tranzacţiile după aceasta nu vor fi vizibile încă. Error @@ -448,27 +468,31 @@ Warning - Avertizare + Avertisment Information - Informație + Informaţie Up to date Actualizat + + Processed %n blocks of transaction history. + S-a procesat %n bloc din istoricul tranzacţiilor.S-au procesat %n blocuri din istoricul tranzacţiilor.S-au procesat %n de blocuri din istoricul tranzacţiilor. + Catching up... Se actualizează... Sent transaction - Tranzacție expediată + Tranzacţie expediată Incoming transaction - Tranzacție recepționată + Tranzacţie recepţionată Date: %1 @@ -484,22 +508,26 @@ Adresa: %4 Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Portofelul este <b>criptat</b> iar în momentul de față este <b>deblocat</b> + Portofelul este <b>criptat</b> iar în momentul de faţă este <b>deblocat</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - Portofelul este <b>criptat</b> iar în momentul de față este <b>blocat</b> + Portofelul este <b>criptat</b> iar în momentul de faţă este <b>blocat</b> ClientModel Network Alert - Alertă rețea + Alertă reţea CoinControlDialog + + Coin Selection + Selectarea monezii + Quantity: Cantitate: @@ -518,11 +546,15 @@ Adresa: %4 Fee: - Taxa: + Taxă: + + + Dust: + Praf: After Fee: - După taxe: + După taxă: Change: @@ -530,20 +562,28 @@ Adresa: %4 (un)select all - (de)selectaţi tot + (de)selectare tot Tree mode - Modul arborescent + Mod arbore List mode - Modul lista + Mod listă Amount Sumă + + Received with label + Primite cu eticheta + + + Received with address + Primite cu adresa + Date Data @@ -574,43 +614,47 @@ Adresa: %4 Copy transaction ID - Copiază ID tranzacție + Copiază ID tranzacţie Lock unspent - Blocaţi necheltuite + Blocare necheltuiţi Unlock unspent - Deblocaţi necheltuite + Deblocare necheltuiţi Copy quantity - Copiaţi quantitea + Copiază cantitea Copy fee - Copiaţi taxele + Copiază taxa Copy after fee - Copiaţi după taxe + Copiază după taxă Copy bytes - Copiaţi octeţi + Copiază octeţi Copy priority - Copiaţi prioritatea + Copiază prioritatea + + + Copy dust + Copiază praf Copy change - Copiaţi schimb + Copiază rest highest - cel mai mare + cea mai mare higher @@ -622,32 +666,36 @@ Adresa: %4 medium-high - marime medie + medie-mare medium - mediu + medie low-medium - mediu-scazut + medie-scăzută low - scazut + scazută lower - mai scazut + mai scăzută lowest - cel mai scazut + cea mai scăzută none nimic + + Can vary +/- %1 satoshi(s) per input. + Poate varia +/- %1 satoshi pentru fiecare intrare. + yes da @@ -658,19 +706,19 @@ Adresa: %4 This label turns red, if the transaction size is greater than 1000 bytes. - Această etichetă devine roşie, în cazul în care dimensiunea tranzacţiei este mai mare de 1000 de octeţi. + Această etichetă devine roşie, în cazul în care dimensiunea tranzacţiei este mai mare de 1000 de octeţi. Can vary +/- 1 byte per input. - Poate varia +/- 1 octet pentru fiecare intrare. + Poate varia +/- 1 octet pentru fiecare intrare. Transactions with higher priority are more likely to get included into a block. - Tranzacţiile cu prioritate mai mare sunt mai susceptibile de fi incluse într-un bloc. + Tranzacţiile cu prioritate mai mare sînt mai susceptibile de fi incluse într-un bloc. This label turns red, if the priority is smaller than "medium". - Aceasta eticheta se face rosie daca prioritatea e mai mica decat media + Această etichetă devine roşie dacă prioritatea e mai mică decît "medie". (no label) @@ -682,7 +730,7 @@ Adresa: %4 (change) - (schimb) + (rest) @@ -697,11 +745,11 @@ Adresa: %4 The label associated with this address list entry - Etichetele asociate cu aceasta intrare din lista. + Eticheta asociată cu această intrare din listă. The address associated with this address list entry. This can only be modified for sending addresses. - Adresa asociata cu aceasta adresa din lista. Aceasta poate fi modificata doar pentru Destinatari. + Adresa asociată cu această adresă din listă. Aceasta poate fi modificată doar pentru adresele de trimitere. &Address @@ -728,8 +776,8 @@ Adresa: %4 Adresa introdusă "%1" se află deja în lista de adrese. - The entered address "%1" is not a valid Bitcoin address. - Adresa introdusă "%1" nu este o adresă bitcoin validă. + The entered address "%1" is not a valid Hypercoin address. + Adresa introdusă "%1" nu este o adresă hypercoin validă. Could not unlock wallet. @@ -737,7 +785,7 @@ Adresa: %4 New key generation failed. - Generarea noii chei a eșuat. + Generarea noii chei nu a reuşit. @@ -752,11 +800,11 @@ Adresa: %4 Directory already exists. Add %1 if you intend to create a new directory here. - Dosarul deja există. Adaugă %1 dacă intenționezi să creezi un nou dosar aici. + Dosarul deja există. Adaugă %1 dacă intenţionaţi să creaţi un nou dosar aici. Path already exists, and is not a directory. - Calea deja există și nu este un dosar. + Calea deja există şi nu este un dosar. Cannot create data directory here. @@ -766,8 +814,8 @@ Adresa: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Nucleul Hypercoin version @@ -778,12 +826,12 @@ Adresa: %4 (%1-bit) - About Bitcoin Core - Despre Nucleul Bitcoin + About Hypercoin Core + Despre Nucleul Hypercoin Command-line options - Command-line setări + Opţiuni linie de comandă Usage: @@ -791,23 +839,27 @@ Adresa: %4 command-line options - command-line setări + Opţiuni linie de comandă UI options - UI setări + Opţiuni UI Set language, for example "de_DE" (default: system locale) - Seteaza limba, de exemplu: "de_DE" (initialt: system locale) + Setează limba, de exemplu: "de_DE" (implicit: sistem local) Start minimized - Incepe miniaturizare + Începe minimizat + + + Set SSL root certificates for payment request (default: -system-) + Setare rădăcină certificat SSL pentru cerere de plată (implicit: -sistem- ) Show splash screen on startup (default: 1) - Afișează pe ecran splash la pornire (implicit: 1) + Afişează pe ecran splash la pornire (implicit: 1) Choose data directory on startup (default: 0) @@ -821,35 +873,47 @@ Adresa: %4 Bun venit - Welcome to Bitcoin Core. - Bine Aţi Venit la Nucleul Bitcoin. + Welcome to Hypercoin Core. + Bine aţi venit la Nucleul Hypercoin. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Dacă aceasta este prima dată când programul este lansat, puteţi alege unde Nucleul Bitcoin va stoca datele. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Dacă aceasta este prima dată cînd programul este lansat, puteţi alege unde Nucleul Hypercoin va stoca datele. Use the default data directory - Folosește dosarul de date implicit + Foloseşte dosarul de date implicit Use a custom data directory: - Folosește un dosar de date personalizat: + Foloseşte un dosar de date personalizat: + + + Hypercoin Core + Nucleul Hypercoin - Bitcoin Core - Bitcoin Core + Error: Specified data directory "%1" cannot be created. + Eroare: Directorul datelor specificate "%1" nu poate fi creat. Error Eroare - + + %n GB of free space available + %n GB de spaţiu liber disponibil%n GB de spaţiu liber disponibil%n GB de spaţiu liber disponibil + + + (of %n GB needed) + (din %n GB necesar)(din %n GB necesari)(din %n GB necesari) + + OpenURIDialog Open URI - Deschideti adresa URI + Deschide URI Open payment request from URI or file @@ -857,62 +921,122 @@ Adresa: %4 URI: - adresa URI: + URI: Select payment request file - Selectaţi fişierul de cerere de plată + Selectaţi fişierul cerere de plată Select payment request file to open - Selectaţi fişierul de cerere de plată de deschis + Selectaţi fişierul cerere de plată pentru deschidere OptionsDialog Options - Setări + Opţiuni &Main - &Principal + Principal - Automatically start Bitcoin after logging in to the system. - Porneşte automat programul Bitcoin la pornirea computerului. + Automatically start Hypercoin after logging in to the system. + Porneşte automat Hypercoin după pornirea calculatorului. - &Start Bitcoin on system login - &S Porneşte Bitcoin la pornirea sistemului + &Start Hypercoin on system login + Porneşte Hypercoin la pornirea sistemului + + + Size of &database cache + Mărimea bazei de &date cache MB MB + + Number of script &verification threads + Numărul de thread-uri de &verificare + + + Accept connections from outside + Acceptă conexiuni din exterior + + + Allow incoming connections + Permite conexiuni de intrare + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Adresa IP a serverului proxy (de exemplu: IPv4: 127.0.0.1 / IPv6: ::1) + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL-uri terţe părţi (de exemplu, un explorator de bloc), care apar în tab-ul tranzacţiilor ca elemente de meniu contextual. %s în URL este înlocuit cu hash de tranzacţie. URL-urile multiple sînt separate prin bară verticală |. + + + Third party transaction URLs + URL-uri tranzacţii terţe părţi + + + Active command-line options that override above options: + Opţiuni linie de comandă active care oprimă opţiunile de mai sus: + Reset all client options to default. Resetează toate setările clientului la valorile implicite. &Reset Options - &Resetează opțiunile + &Resetează opţiunile &Network - &Retea + Reţea + + + (0 = auto, <0 = leave that many cores free) + (0 = automat, <0 = lasă atîtea nuclee libere) + + + W&allet + Portofel Expert - expert + Expert + + + Enable coin &control features + Activare caracteristici de control ale monedei + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Dacă dezactivaţi cheltuirea restului neconfirmat, restul dintr-o tranzacţie nu poate fi folosit pînă cînd tranzacţia are cel puţin o confirmare. Aceasta afectează de asemenea calcularea soldului. - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Deschide automat în router portul aferent clientului Bitcoin. Funcţionează doar în cazul în care routerul e compatibil UPnP şi opţiunea e activată. + &Spend unconfirmed change + Cheltuire rest neconfirmat + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Deschide automat în router portul aferent clientului Hypercoin. Funcţionează doar dacă routerul duportă UPnP şi e activat. Map port using &UPnP - Mapeaza portul folosind &UPnP + Mapare port folosind &UPnP + + + Connect to the Hypercoin network through a SOCKS5 proxy. + Conectare la reţeaua Hypercoin printr-un proxy SOCKS. + + + &Connect through SOCKS5 proxy (default proxy): + &Conectare printr-un proxy SOCKS (implicit proxy): Proxy &IP: @@ -924,27 +1048,27 @@ Adresa: %4 Port of the proxy (e.g. 9050) - Portul pe care se concetează proxy serverul (de exemplu: 9050) + Portul proxy (de exemplu: 9050) &Window - &Fereastra + &Fereastră Show only a tray icon after minimizing the window. - Afişează doar un icon in tray la ascunderea ferestrei + Arată doar un icon în tray la ascunderea ferestrei &Minimize to the tray instead of the taskbar - &M Ascunde în tray în loc de taskbar + &Minimizare în tray în loc de taskbar Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Ascunde fereastra în locul părăsirii programului în momentul închiderii ferestrei. Când acestă opţiune e activă, aplicaţia se va opri doar în momentul selectării comenzii Quit din menu. + Ascunde fereastra în locul părăsirii programului în momentul închiderii ferestrei. Cînd acestă opţiune e activă, aplicaţia se va opri doar în momentul selectării comenzii 'Închide aplicaţia' din menu. M&inimize on close - &i Ascunde fereastra în locul închiderii programului + M&inimizare fereastră în locul închiderii programului &Display @@ -952,11 +1076,11 @@ Adresa: %4 User Interface &language: - Interfata & limba userului + &Limbă interfaţă utilizator - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Limba interfeței utilizatorului poate fi setat aici. Această setare va avea efect după repornirea Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Limba interfeţei utilizatorului poate fi setată aici. Această setare va avea efect după repornirea Hypercoin. &Unit to show amounts in: @@ -964,23 +1088,23 @@ Adresa: %4 Choose the default subdivision unit to show in the interface and when sending coins. - Alege subdiviziunea folosită la afişarea interfeţei şi la trimiterea de bitcoin. + Alegeţi subdiviziunea folosită la afişarea interfeţei şi la trimiterea de hypercoin. Whether to show coin control features or not. - Dacă să se afişeze controlul caracteristicilor monedei sau nu. + Arată controlul caracteristicilor monedei sau nu. &OK - & OK + &OK &Cancel - & Renunta + Renunţă default - Initial + iniţial none @@ -988,11 +1112,11 @@ Adresa: %4 Confirm options reset - Confirmă resetarea opțiunilor + Confirmă resetarea opţiunilor Client restart required to activate changes. - Este necesar un restart al clientului pentru a activa schimbările. + Este necesară repornirea clientului pentru a activa schimbările. Client will be shutdown, do you want to proceed? @@ -1000,11 +1124,11 @@ Adresa: %4 This change would require a client restart. - Această schimbare va necesita un restart al clientului. + Această schimbare necesită o repornire a clientului. The supplied proxy address is invalid. - Adresa bitcoin pe care a-ti specificat-o este invalida + Adresa hypercoin pe care aţi specificat-o nu este validă. @@ -1014,8 +1138,12 @@ Adresa: %4 Form - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Informațiile afișate pot neactualizate. Portofelul tău se sincronizează automat cu rețeaua Bitcoin după ce o conexiune este stabilită, dar acest proces nu a fost finalizat încă. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Informaţiile afişate pot fi neactualizate. Portofelul dvs. se sincronizează automat cu reţeaua Hypercoin după ce o conexiune este stabilită, dar acest proces nu a fost finalizat încă. + + + Watch-only: + Doar-supraveghere: Available: @@ -1023,7 +1151,7 @@ Adresa: %4 Your current spendable balance - Balanța ta curentă de cheltuieli + Balanţa dvs. curentă de cheltuieli Pending: @@ -1031,7 +1159,7 @@ Adresa: %4 Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Totalul tranzacțiilor care nu sunt confirmate încă și care nu sunt încă adunate la balanța de cheltuieli + Totalul tranzacţiilor care nu sunt confirmate încă şi care nu sunt încă adunate la balanţa de cheltuieli Immature: @@ -1039,7 +1167,11 @@ Adresa: %4 Mined balance that has not yet matured - Balanta minata care nu s-a maturizat inca + Balanţa minertită care nu s-a maturizat încă + + + Balances + Balanţă Total: @@ -1047,11 +1179,35 @@ Adresa: %4 Your current total balance - Balanța totală curentă + Balanţa totală curentă + + + Your current balance in watch-only addresses + Soldul dvs. curent în adresele doar-supraveghere + + + Spendable: + Cheltuibil: + + + Recent transactions + Tranzacţii recente + + + Unconfirmed transactions to watch-only addresses + Tranzacţii neconfirmate la adresele doar-supraveghere + + + Mined balance in watch-only addresses that has not yet matured + Balanţă minată în adresele doar-supraveghere care nu s-a maturizat încă + + + Current total balance in watch-only addresses + Soldul dvs. total în adresele doar-supraveghere out of sync - Nu este sincronizat + nesincronizat @@ -1064,33 +1220,77 @@ Adresa: %4 Invalid payment address %1 Adresă pentru plată nevalidă %1 + + Payment request rejected + Cerere de plată refuzată + + + Payment request network doesn't match client network. + Cererea de plată din reţea nu se potriveşte cu clientul din reţea + + + Payment request has expired. + Cererea de plată a expirat. + + + Payment request is not initialized. + Cererea de plată nu este iniţializată. + Requested payment amount of %1 is too small (considered dust). - Cereti plata cu suma de %1 este prea mica (considerata praf) + Suma cerută de plată de %1 este prea mică (considerată praf). Payment request error Eroare la cererea de plată - Cannot start bitcoin: click-to-pay handler - Nu poate porni bitcoin: regula clic-pentru-plata + Cannot start hypercoin: click-to-pay handler + Nu poate porni hypercoin: manipulator clic-pentru-plată + + + Payment request fetch URL is invalid: %1 + URL-ul cererii de plată preluat nu este valid: %1 + + + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI nu poate fi analizat! Acest lucru poate fi cauzat de o adresă Hypercoin nevalidă sau parametri URI deformaţi. + + + Payment request file handling + Manipulare fişier cerere de plată + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Fişierul cerere de plată nu poate fi citit! Cauza poate fi un fişier cerere de plată nevalid. Unverified payment requests to custom payment scripts are unsupported. - Cereri de plată neverificate prin script-uri personalizate de plată nu sunt suportate. + Cererile de plată neverificate prin script-uri personalizate de plată nu sînt suportate. Refund from %1 - rambursare de la %1 + Rambursare de la %1 + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Cererea de plată %1 este prea mare (%2 octeţi, permis %3 octeţi). + + + Payment request DoS protection + Protecţie DoS cerere de plată Error communicating with %1: %2 Eroare la comunicarea cu %1: %2 + + Payment request cannot be parsed! + Cererea de plată nu poate fi analizată! + Bad response from server %1 - Răspuns greșit de la server %1 + Răspuns greşit de la server %1 Payment acknowledged @@ -1098,17 +1298,37 @@ Adresa: %4 Network request error - Eroare în cererea de rețea + Eroare în cererea de reţea PeerTableModel - + + User Agent + Agent utilizator + + + Address/Hostname + Adresă/Nume gazdă + + + Ping Time + Timp ping + + QObject Amount - Sumă + Cantitate + + + Enter a Hypercoin address (e.g. %1) + Introduceţi o adresă Hypercoin (de exemplu %1) + + + %1 d + %1 z %1 h @@ -1118,20 +1338,40 @@ Adresa: %4 %1 m %1 m + + %1 s + %1 s + + + NETWORK + REŢEA + + + UNKNOWN + NECUNOSCUT + + + None + Niciuna + N/A N/A - + + %1 ms + %1 ms + + QRImageWidget &Save Image... - Salvarea imaginii ... + &Salvează imagine... &Copy Image - Copierea imaginii + &Copiază imaginea Save QR Code @@ -1150,7 +1390,7 @@ Adresa: %4 N/A - N/A + indisponibil Client version @@ -1158,7 +1398,7 @@ Adresa: %4 &Information - &Informație + &Informaţii Debug window @@ -1170,7 +1410,11 @@ Adresa: %4 Using OpenSSL version - Foloseste versiunea OpenSSL + Foloseşte OpenSSL versiunea + + + Using BerkeleyDB version + Foloseşte BerkeleyDB versiunea Startup time @@ -1178,11 +1422,11 @@ Adresa: %4 Network - Rețea + Reţea Name - Numele + Nume Number of connections @@ -1190,12 +1434,68 @@ Adresa: %4 Block chain - Lanț de blocuri + Lanţ de blocuri Current number of blocks Numărul curent de blocuri + + Received + Recepţionat + + + Sent + Trimis + + + &Peers + &Parteneri + + + Select a peer to view detailed information. + Selectaţi un partener pentru a vedea informaţiile detaliate. + + + Direction + Direcţie + + + Version + Versiune + + + User Agent + Agent utilizator + + + Services + Servicii + + + Connection Time + Timp conexiune + + + Last Send + Ultima trimitere + + + Last Receive + Ultima primire + + + Bytes Sent + Octeţi trimişi + + + Bytes Received + Octeţi primiţi + + + Ping Time + Timp ping + Last block time Data ultimului bloc @@ -1210,11 +1510,11 @@ Adresa: %4 &Network Traffic - Traficul in rețea + Trafic reţea &Clear - &Ştergeţi + &Curăţă Totals @@ -1222,11 +1522,11 @@ Adresa: %4 In: - în: + Intrare: Out: - Ieșire. + Ieşire: Build date @@ -1234,27 +1534,27 @@ Adresa: %4 Debug log file - Loguri debug + Fişier jurnal depanare - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Deschide logurile debug din directorul curent. Aceasta poate dura cateva secunde pentru fisierele mai mari + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Deschide fişierul jurnal depanare din directorul curent. Aceasta poate dura cîteva secunde pentru fişierele mai mari. Clear console - Curăță consola + Curăţă consola - Welcome to the Bitcoin RPC console. - Bun venit la consola bitcoin RPC + Welcome to the Hypercoin RPC console. + Bun venit la consola hypercoin RPC. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Foloseste sagetile sus si jos pentru a naviga in istoric si <b>Ctrl-L</b> pentru a curata. + Folosiţi săgetile sus şi jos pentru a naviga în istoric şi <b>Ctrl-L</b> pentru a curăţa. Type <b>help</b> for an overview of available commands. - Scrie <b>help</b> pentru a vedea comenzile disponibile + Scrieţi <b>help</b> pentru a vedea comenzile disponibile. %1 B @@ -1272,12 +1572,36 @@ Adresa: %4 %1 GB %1 GB - + + via %1 + via %1 + + + never + niciodată + + + Inbound + Intrare + + + Outbound + Ieşire + + + Unknown + Necunoscut + + + Fetching... + Preluare... + + ReceiveCoinsDialog &Amount: - & suma: + Sum&a: &Label: @@ -1285,47 +1609,63 @@ Adresa: %4 &Message: - & mesaj: + &Mesaj: Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Refolositi una din adresele de primire folosite in prealabil. Refolosirea adreselor poate crea probleme de securitate si confidentialitate. Nu folositi aceasta optiune decat daca o cerere de regenerare a platii a fost facuta in prealabil. + Refoloseşte una din adresele de primire folosite anterior. Refolosirea adreselor poate crea probleme de securitate şi confidenţialitate. Nu folosiţi această opţiune decît dacă o cerere de regenerare a plăţii a fost făcută anterior. R&euse an existing receiving address (not recommended) - &Refolosirea unei adrese de primire (nu este recomandat) + R&efoloseşte o adresă de primire (nu este recomandat) + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Un mesaj opţional de ataşat la cererea de plată, care va fi afişat cînd cererea este deschisă. Notă: Acest mesaj nu va fi trimis cu plata către reţeaua Hypercoin. + + + An optional label to associate with the new receiving address. + O etichetă opţională de asociat cu adresa de primire. Use this form to request payments. All fields are <b>optional</b>. - Folosește acest formular pentru a solicita plăți. Toate câmpurile sunt <b>opționale</b>. + Foloseşte acest formular pentru a solicita plăţi. Toate cîmpurile sînt <b>opţionale</b>. + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + O sumă opţională de cerut. Lăsaţi gol sau zero pentru a nu cere o sumă anume. Clear all fields of the form. - Stergeti toate campurile formularului + Curăţă toate cîmpurile formularului. Clear - Stergeti + Curăţă Requested payments history - Istoricul platilor a fost cerut + Istoricul plăţilor cerute &Request payment - &Cereti plata + &Cerere plată Show the selected request (does the same as double clicking an entry) - Arata cererea selectata (acelas lucru ca si dublu-click pe o inregistrare) + Arată cererea selectată (acelaşi lucru ca şi dublu-clic pe o înregistrare) Show Arată + + Remove the selected entries from the list + Înlătură intrările selectate din listă + Remove - Elimină + Înlătură Copy label @@ -1333,7 +1673,7 @@ Adresa: %4 Copy message - Copiaţi mesajul + Copiază mesajul Copy amount @@ -1348,27 +1688,27 @@ Adresa: %4 Copy &URI - Copiati &URl + Copiază &URl Copy &Address - Copiati &Adresa + Copiază &adresa &Save Image... - Salvarea imaginii ... + &Salvează imaginea... Request payment to %1 - Cereti plata pentru %1 + Cere plata pentru %1 Payment information - Informatiile platii + Informaţiile plăţii URI - Identificator uniform de resurse + URI Address @@ -1388,7 +1728,7 @@ Adresa: %4 Resulting URI too long, try to reduce the text for label / message. - URI rezultat este prea lung, încearcă să reduci textul pentru etichetă / mesaj. + URI rezultat este prea lung, încearcaţi să reduceţi textul pentru etichetă / mesaj. Error encoding URI into QR Code. @@ -1423,7 +1763,7 @@ Adresa: %4 (no amount) - (suma nulă) + (sumă nulă) @@ -1432,13 +1772,17 @@ Adresa: %4 Send Coins Trimite monede + + Coin Control Features + Caracteristici de control ale monedei + Inputs... - Intrări + Intrări... automatically selected - Selectie automatică + selecţie automată Insufficient funds! @@ -1462,43 +1806,103 @@ Adresa: %4 Fee: - Taxa: + Taxă: After Fee: - După taxe: + După taxă: Change: - Schimbaţi: + Rest: + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Dacă este activat, dar adresa de rest este goală sau nevalidă, restul va fi trimis la o adresă nou generată. + + + Custom change address + Adresă personalizată de rest + + + Transaction Fee: + Taxă tranzacţie: + + + Choose... + Alegeţi... + + + Minimize + Minimizare + + + per kilobyte + per kilooctet + + + total at least + total cel puţin + + + Recommended: + Recomandat: + + + Custom: + Personalizat: + + + Confirmation time: + Timp confirmare: + + + normal + normal + + + fast + rapid + + + Send as zero-fee transaction if possible + Trimite ca taxă zero dacă este posibil + + + (confirmation may take longer) + (confirmarea poate dura mai mult) Send to multiple recipients at once - Trimite simultan către mai mulți destinatari + Trimite simultan către mai mulţi destinatari Add &Recipient - &Adaugă destinatar + Adaugă destinata&r Clear all fields of the form. - Stergeti toate campurile formularului + Şterge toate cîmpurile formularului. + + + Dust: + Praf: Clear &All - Șterge &tot + Curăţă to&ate Balance: - Balanță: + Balanţă: Confirm the send action - Confirmă operațiunea de trimitere + Confirmă operaţiunea de trimitere S&end - &S Trimite + Trimit&e Confirm send coins @@ -1510,7 +1914,7 @@ Adresa: %4 Copy quantity - Copiaţi quantitea + Copiază cantitea Copy amount @@ -1518,27 +1922,23 @@ Adresa: %4 Copy fee - Copiaţi taxele + Copiază taxa Copy after fee - Copiaţi după taxe + Copiază după taxă Copy bytes - Copiaţi octeţi + Copiază octeţi Copy priority - Copiaţi prioritatea + Copiază prioritatea Copy change - Copiaţi schimb - - - Total Amount %1 (= %2) - Suma totală %1 (= %2) + Copiază rest or @@ -1550,31 +1950,35 @@ Adresa: %4 The amount to pay must be larger than 0. - Suma de plată trebuie să fie mai mare decât 0. + Suma de plată trebuie să fie mai mare decît 0. The amount exceeds your balance. - Suma depășește soldul contului. + Suma depăşeşte soldul contului. The total exceeds your balance when the %1 transaction fee is included. - Totalul depășește soldul contului dacă se include și plata comisionului de %1. + Totalul depăşeşte soldul contului dacă se include şi plata taxei de %1. Duplicate address found, can only send to each address once per send operation. - S-a descoperit o adresă care figurează de două ori. Expedierea se poate realiza către fiecare adresă doar o singură dată pe operațiune. + S-a descoperit o adresă duplicat.Se poate trimite către fiecare adresă doar o singură dată per operaţiune. Transaction creation failed! - Creare de tranzactie nereusita! + Creare tranzacţie nereuşită! The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Tranzactia a fost respinsa! Acest lucru se poate intampla daca o parte din monedele tale din portofel au fost deja cheltuite, la fel ca si cum ai fi folosit o copie a wallet.dat si monedele au fost cheltuite in copie, dar nu au fost marcate si si cheltuite si aici. + Tranzacţia a fost respinsă! Acest lucru se poate întîmpla dacă o parte din monedele tale din portofel au fost deja cheltuite, la fel ca şi cum aţi fi folosit o copie a wallet.dat şi monedele au fost cheltuite în copie, dar nu au fost marcate ca şi cheltuite şi aici. - Warning: Invalid Bitcoin address - Atentie: Adresa Bitcoin invalida! + Pay only the minimum fee of %1 + Plăteşte doar taxa minimă de %1 + + + Warning: Invalid Hypercoin address + Atenţie: Adresa hypercoin nevalidă! (no label) @@ -1582,15 +1986,19 @@ Adresa: %4 Warning: Unknown change address - Atentie: Schimbare de adresa necunoscuta + Atenţie: Adresă de rest necunoscută + + + Copy dust + Copiază praf Are you sure you want to send? - Ești sigur că vrei să trimiți? + Sigur doriţi să trimiteţi? added as transaction fee - adăugat ca taxă de tranzacție + adăugat ca taxă de tranzacţie @@ -1601,11 +2009,11 @@ Adresa: %4 Pay &To: - Plătește că&tre: + Plăteşte că&tre: Enter a label for this address to add it to your address book - Introdu o etichetă pentru această adresă pentru a fi adăugată în lista ta de adrese + Introduceţi o etichetă pentru această adresă pentru a fi adăugată în lista dvs. de adrese &Label: @@ -1613,19 +2021,23 @@ Adresa: %4 Choose previously used address - Alegeti adrese folosite in prealabil. + Alegeţi adrese folosite anterior This is a normal payment. Aceasta este o tranzacţie normală. + + The Hypercoin address to send the payment to + Adresa hypercoin către care se face plata + Alt+A Alt+A Paste address from clipboard - Lipește adresa din clipboard + Lipeşte adresa din clipboard Alt+P @@ -1633,7 +2045,7 @@ Adresa: %4 Remove this entry - Scoate aceasta introducere + Înlătură această intrare Message: @@ -1641,19 +2053,23 @@ Adresa: %4 This is a verified payment request. - Aceasta este o cerere de plata verificata + Aceasta este o cerere de plată verificată. Enter a label for this address to add it to the list of used addresses - Introduceti eticheta pentru ca aceasta adresa sa fie introdusa in lista de adrese folosite + Introduceţi eticheta pentru ca această adresa să fie introdusă în lista de adrese folosite + + + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + un mesaj a fost ataşat la hypercoin: URI care va fi stocat cu tranzacţia pentru referinţa dvs. Notă: Acest mesaj nu va fi trimis către reţeaua hypercoin. This is an unverified payment request. - Aceasta este o cerere de plata neverificata + Aceasta este o cerere de plata neverificată. Pay To: - Plateste catre: + Plăteşte către: Memo: @@ -1663,31 +2079,35 @@ Adresa: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core se închide... + Hypercoin Core is shutting down... + Nucleul Hypercoin se închide... Do not shut down the computer until this window disappears. - Nu închide calculatorul până ce această fereastră nu dispare. + Nu închide calculatorul pînă ce această fereastră nu dispare. SignVerifyMessageDialog Signatures - Sign / Verify a Message - Semnatura- Semneaza/verifica un mesaj + Semnaturi - Semnează/verifică un mesaj &Sign Message - Semneaza Mesajul + &Semnează mesaj You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Puteti semna mesaje cu adresa dumneavoastra pentru a demostra ca sunteti proprietarul lor. Aveti grija sa nu semnati nimic vag, deoarece atacurile de tip phishing va pot pacali sa le transferati identitatea. Semnati numai declaratiile detaliate cu care sunteti deacord. + Puteţi semna mesaje cu adresa dvs. pentru a demostra ca sînteti proprietarul lor. Aveţi grijă să nu semnaţi nimic vag, deoarece atacurile de tip phishing vă pot păcăli să le transferaţi identitatea. Semnaţi numai declaraţiile detaliate cu care sînteti de acord. + + + The Hypercoin address to sign the message with + Adresa cu care semnaţi mesajul Choose previously used address - Alegeti adrese folosite in prealabil + Alegeţi adrese folosite anterior Alt+A @@ -1695,7 +2115,7 @@ Adresa: %4 Paste address from clipboard - Lipiţi adresa copiată in clipboard. + Lipeşte adresa copiată din clipboard Alt+P @@ -1703,7 +2123,7 @@ Adresa: %4 Enter the message you want to sign here - Introduce mesajul pe care vrei sa il semnezi, aici. + Introduceţi mesajul pe care vreţi să-l semnaţi, aici Signature @@ -1711,106 +2131,110 @@ Adresa: %4 Copy the current signature to the system clipboard - Copiaza semnatura curenta in clipboard-ul sistemului + Copiază semnatura curentă în clipboard-ul sistemului - Sign the message to prove you own this Bitcoin address - Semneaza mesajul pentru a dovedi ca detii acesta adresa Bitcoin + Sign the message to prove you own this Hypercoin address + Semnează mesajul pentru a dovedi ca deţineţi acestă adresă Hypercoin Sign &Message - Semnează &Message + Semnează &mesaj Reset all sign message fields - Reseteaza toate spatiile mesajelor semnate. + Resetează toate cîmpurile mesajelor semnate Clear &All - Şterge &tot + Curăţă to&ate &Verify Message - Verifica mesajul + &Verifică mesaj Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - Introduceti adresa de semnatura, mesajul (asigurati-va ca ati copiat spatiile, taburile etc. exact) si semnatura dedesubt pentru a verifica mesajul. Aveti grija sa nu cititi mai mult in semnatura decat mesajul in sine, pentru a evita sa fiti pacaliti de un atac de tip man-in-the-middle. + Introduceţi adresa de semnatură, mesajul (asiguraţi-vă că aţi copiat spaţiile, taburile etc. exact) şi semnatura dedesubt pentru a verifica mesajul. Aveţi grijă să nu citiţi mai mult în semnatură decît mesajul în sine, pentru a evita să fiţi păcăliţi de un atac de tip man-in-the-middle. + + + The Hypercoin address the message was signed with + Introduceţi o adresă Hypercoin - Verify the message to ensure it was signed with the specified Bitcoin address - Verifica mesajul pentru a fi sigur ca a fost semnat cu adresa Bitcoin specifica + Verify the message to ensure it was signed with the specified Hypercoin address + Verificaţi mesajul pentru a vă asigura că a fost semnat cu adresa Hypercoin specificată Verify &Message - Verifică &Message + Verifică &mesaj Reset all verify message fields - Reseteaza toate spatiile mesajelor semnate. + Resetează toate cîmpurile mesajelor semnate Click "Sign Message" to generate signature - Click "Semneaza msajul" pentru a genera semnatura + Faceţi clic pe "Semneaza msaj" pentru a genera semnătura The entered address is invalid. - Adresa introdusa nu este valida + Adresa introdusă nu este validă Please check the address and try again. - Te rugam verifica adresa si introduce-o din nou + Vă rugăm verificaţi adresa şi încercaţi din nou. The entered address does not refer to a key. - Adresa introdusa nu se refera la o cheie. + Adresa introdusă nu se referă la o cheie. Wallet unlock was cancelled. - Blocarea portofelului a fost intrerupta + Blocarea portofelului a fost întreruptă. Private key for the entered address is not available. - Cheia privata pentru adresa introdusa nu este valida. + Cheia privată pentru adresa introdusă nu este validă. Message signing failed. - Semnarea mesajului a esuat + Semnarea mesajului nu a reuşit. Message signed. - Mesaj Semnat! + Mesaj semnat. The signature could not be decoded. - Aceasta semnatura nu a putut fi decodata + Această semnatură nu a putut fi decodată. Please check the signature and try again. - Verifica semnatura si incearca din nou + Vă rugăm verificaţi semnătura şi încercaţi din nou. The signature did not match the message digest. - Semnatura nu seamana! + Semnatura nu se potriveşte cu mesajul. Message verification failed. - Verificarea mesajului a esuat + Verificarea mesajului nu a reuşit. Message verified. - Mesaj verificat + Mesaj verificat. SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Nucleul Hypercoin - The Bitcoin Core developers - Dezvoltatorii Bitcoin Core + The Hypercoin Core developers + Dezvoltatorii Nucleului Hypercoin [testnet] @@ -1828,7 +2252,11 @@ Adresa: %4 TransactionDesc Open until %1 - Deschis până la %1 + Deschis pînă la %1 + + + conflicted + în conflict %1/offline @@ -1872,7 +2300,11 @@ Adresa: %4 own address - Adresa posedata + adresa proprie + + + watch-only + doar-supraveghere label @@ -1888,15 +2320,23 @@ Adresa: %4 not accepted - nu este acceptat + neacceptat Debit Debit + + Total debit + Total debit + + + Total credit + Total credit + Transaction fee - Comisionul tranzacţiei + Taxă tranzacţie Net amount @@ -1908,11 +2348,11 @@ Adresa: %4 Comment - Comentarii + Comentariu Transaction ID - ID-ul tranzactiei + ID-ul tranzacţie Merchant @@ -1920,11 +2360,11 @@ Adresa: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Monezile generate trebuie sa creasca %1 block-uri inainte sa poata fi cheltuite. Cand ati generat acest block, a fost transmis retelei pentru a fi adaugat la lantul de block-uri. Aceasta se poate intampla ocazional daca alt nod genereaza un block la numai cateva secunde de al tau. + Monezile generate trebuie să crească %1 blocuri înainte să poată fi cheltuite. Cînd aţi generat acest bloc, a fost transmis reţelei pentru a fi adaugat la lanţul de blocuri. Aceasta se poate întîmpla ocazional dacă alt nod generează un bloc la numai cîteva secunde de al dvs. Debug information - Informatii pentru debug + Informaţii pentru depanare Transaction @@ -1932,7 +2372,7 @@ Adresa: %4 Inputs - Intrari + Intrări Amount @@ -1940,11 +2380,11 @@ Adresa: %4 true - Adevarat! + adevărat false - Fals! + fals , has not been successfully broadcast yet @@ -1959,11 +2399,11 @@ Adresa: %4 TransactionDescDialog Transaction details - Detaliile tranzacției + Detaliile tranzacţiei This pane shows a detailed description of the transaction - Acest panou afișează o descriere detaliată a tranzacției + Acest panou arată o descriere detaliată a tranzacţiei @@ -1974,11 +2414,15 @@ Adresa: %4 Type - Tipul + Tip Address - Adresa + Adresă + + + Immature (%1 confirmations, will be available after %2) + Imatur (%1 confirmări, va fi disponibil după %2) Open until %1 @@ -1990,7 +2434,7 @@ Adresa: %4 This block was not received by any other nodes and will probably not be accepted! - Acest bloc nu a fost recepționat de niciun alt nod și probabil nu va fi acceptat! + Acest bloc nu a fost recepţionat de nici un alt nod şi probabil nu va fi acceptat! Generated but not accepted @@ -2006,11 +2450,15 @@ Adresa: %4 Confirming (%1 of %2 recommended confirmations) - Confirmare (%1 dintre %2 confirmări recomandate) + Confirmare (%1 din %2 confirmări recomandate) + + + Conflicted + În conflict Received with - Recepționat cu + Recepţionat cu Received from @@ -2022,31 +2470,39 @@ Adresa: %4 Payment to yourself - Plată către tine + Plată către dvs. Mined - Produs + Minerit + + + watch-only + doar-supraveghere (n/a) - (n/a) + indisponibil Transaction status. Hover over this field to show number of confirmations. - Starea tranzacției. Treci cu mausul peste acest câmp pentru afișarea numărului de confirmări. + Starea tranzacţiei. Treceţi cu mouse-ul peste acest cîmp pentru afişarea numărului de confirmări. Date and time that the transaction was received. - Data și ora la care a fost recepționată tranzacția. + Data şi ora la care a fost recepţionată tranzacţia. Type of transaction. - Tipul tranzacției. + Tipul tranzacţiei. + + + Whether or not a watch-only address is involved in this transaction. + Indiferent dacă sau nu o adresă doar-suăpraveghere este implicată în această tranzacţie. Destination address of transaction. - Adresa de destinație a tranzacției. + Adresa de destinaţie a tranzacţiei. Amount removed from or added to balance. @@ -2065,7 +2521,7 @@ Adresa: %4 This week - Săptămâna aceasta + Săptămîna aceasta This month @@ -2081,11 +2537,11 @@ Adresa: %4 Range... - Între... + Interval... Received with - Recepționat cu + Recepţionat cu Sent to @@ -2093,11 +2549,11 @@ Adresa: %4 To yourself - Către tine + Către dvs. Mined - Produs + Minerit Other @@ -2105,11 +2561,11 @@ Adresa: %4 Enter address or label to search - Introdu adresa sau eticheta pentru căutare + Introduceţi adresa sau eticheta pentru căutare Min amount - Cantitatea minimă + Suma minimă Copy address @@ -2125,7 +2581,7 @@ Adresa: %4 Copy transaction ID - Copiază ID tranzacție + Copiază ID tranzacţie Edit label @@ -2133,23 +2589,27 @@ Adresa: %4 Show transaction details - Arată detaliile tranzacției + Arată detaliile tranzacţiei Export Transaction History - Exportare Istoric Tranzacţii + Export istoric tranzacţii + + + Watch-only + Doar-supraveghere Exporting Failed - Exportare Eşuată + Export nereuşit There was an error trying to save the transaction history to %1. - S-a produs o eroare încercând să se salveze istoricul tranzacţiilor la %1. + S-a produs o eroare la salvarea istoricului tranzacţiilor la %1. Exporting Successful - Exportare Reuşită + Export reuşit The transaction history was successfully saved to %1. @@ -2157,7 +2617,7 @@ Adresa: %4 Comma separated file (*.csv) - Fișier text cu valori separate prin virgulă (*.csv) + Fişier text cu valori separate prin virgulă (*.csv) Confirmed @@ -2169,7 +2629,7 @@ Adresa: %4 Type - Tipul + Tip Label @@ -2194,34 +2654,38 @@ Adresa: %4 UnitDisplayStatusBarControl - + + Unit to show amounts in. Click to select another unit. + Unitatea în care sînt arătate sumele. Faceţi clic pentru a selecta o altă unitate. + + WalletFrame No wallet has been loaded. - Nu a fost încărcat niciun portofel. + Nu a fost încărcat nici un portofel. WalletModel Send Coins - Trimite Bitcoin + Trimitere hypercoin WalletView &Export - &Exportă + &Export Export the data in the current tab to a file - Exporta datele din tab-ul curent într-un fișier + Exportă datele din tab-ul curent într-un fişier Backup Wallet - Fă o copie de siguranță a portofelului + Copie de siguranţă portofel Wallet Data (*.dat) @@ -2229,11 +2693,11 @@ Adresa: %4 Backup Failed - Copia de rezerva a esuat + Copierea de siguranţă nu a reuşit There was an error trying to save the wallet data to %1. - S-a produs o eroare încercând să se salveze datele portofelului la %1. + S-a produs o eroare la salvarea datelor portofelului la %1. The wallet data was successfully saved to %1. @@ -2241,107 +2705,98 @@ Adresa: %4 Backup Successful - Copia de siguranță efectuată cu succes + Copie de siguranţă efectuată cu succes bitcoin-core Options: - Setări: + Opţiuni: Specify data directory - Specifică dosarul de date + Specificaţi dosarul de date Connect to a node to retrieve peer addresses, and disconnect - Conectează-te la nod pentru a obține adresele partenerilor, și apoi deconectează-te + Se conectează la un nod pentru a obţine adresele partenerilor, şi apoi se deconectează Specify your own public address - Specifică adresa ta publică + Specificaţi adresa dvs. publică Accept command line and JSON-RPC commands - Se acceptă comenzi din linia de comandă și comenzi JSON-RPC + Acceptă comenzi din linia de comandă şi comenzi JSON-RPC Run in the background as a daemon and accept commands - Rulează în fundal ca un demon și acceptă comenzi + Rulează în fundal ca un demon şi acceptă comenzi Use the test network - Utilizează rețeaua de test + Utilizează reţeaua de test Accept connections from outside (default: 1 if no -proxy or -connect) - Acceptă conexiuni din afară (implicit: 1 dacă nu se folosește -proxy sau -connect) - - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s trebuie sa setezi o parola rpc in fisierul de configurare -%s -Este recomandat sa folosesti aceasta parola aleatorie: -rpcuser=bitcoinrpc -parola rpc=%s -(nu este necesar ca sa iti amintesti aceasta parola) -Numele de utilizator si parola NU trebuie sa fie la fel. -Daca fisierul nu exista, creaza-l cu fisier de citit permis doar proprietarului. -Este de asemenea recomandat sa setezi alerta de notificare ca sa primesti notificari ale problemelor; -spre exemplu: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.com - - + Acceptă conexiuni din afară (implicit: 1 dacă nu se foloseşte -proxy sau -connect) Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Atasati adresei date si ascultati totdeauna pe ea. Folositi [host]:port notatia pentru IPv6 + Ataşaţi adresei date şi ascultaţi totdeauna pe ea. Folosiţi notaţia [host]:port pentru IPv6 - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Eroare: Tranzactia a fost respinsa! Acest lucru se poate intampla daca anumite monezi din portofelul dumneavoastra au fost deja cheltuite, deasemenea daca ati folosit o copie a fisierului wallet.dat si monezile au fost folosite in acea copie dar nu au fost marcate ca fiind folosite acolo. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Distribuit sub licenţa de programe MIT/X11, vezi fişierul însoţitor COPYING sau <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Eroare: Aceasta tranzactie necesita o taxa de cel putin %s din cauza sumei, complexitatii sau folosirii fondurilor recent primite! + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Iniţiază modul de test regresie, care foloseşte un lanţ special în care blocurile pot fi rezolvate instantaneu. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Executati comanda cand o tranzactie a portofelului se schimba (%s in cmd este inlocuit de TxID) + Execută comanda cînd o tranzacţie a portofelului se schimbă (%s în cmd este înlocuit de TxID) + + + In this mode -genproclimit controls how many blocks are generated immediately. + În acest mod -genproclimit controlează cîte blocuri sînt generate imediat. + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Setează numărul de thread-uri de verificare a script-urilor (%u la %d, 0 = auto, <0 = lasă atîtea nuclee libere, implicit: %d) This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - Aceasta este o versiune de test preliminara - va asumati riscul folosind-o - nu folositi pentru minerit sau aplicatiile comerciantilor. + Aceasta este o versiune de test preliminară - vă asumaţi riscul folosind-o - nu folosiţi pentru minerit sau aplicaţiile comercianţilor + + + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Nu se poate lega la %s pe acest calculator. Nucleul Hypercoin probabil deja rulează. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - Atentie: setarea -paytxfee este foarte ridicata! Aceasta este taxa tranzactiei pe care o vei plati daca trimiti o tranzactie. + Atenţie: setarea -paytxfee este foarte mare! Aceasta este taxa tranzacţiei pe care o veţi plăti dacă trimiteţi o tranzacţie. Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - Atentie: Reteaua nu pare sa fie deacord in totalitate! Aparent niste mineri au probleme. + Atenţie: Reţeaua nu pare să fie de acord în totalitate! Aparent nişte mineri au probleme. Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - Atentie: Aparent, nu suntem deacord cu toti membrii nostri! Va trebui sa faci un upgrade, sau alte noduri ar necesita upgrade. + Atenţie: Aparent, nu sîntem de acord cu toţi partenerii noştri! Va trebui să faceţi o actualizare, sau alte noduri necesită actualizare. Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Atentie: eroare la citirea fisierului wallet.dat! Toate cheile sunt citite corect, dar datele tranzactiei sau anumite intrari din agenda sunt incorecte sau lipsesc. + Atenţie: eroare la citirea fişierului wallet.dat! Toate cheile sînt citite corect, dar datele tranzactiei sau anumite intrări din agenda sînt incorecte sau lipsesc. Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - Atentie: fisierul wallet.dat este corupt, date salvate! Fisierul original wallet.dat a fost salvat ca wallet.{timestamp}.bak in %s; daca balansul sau tranzactiile sunt incorecte ar trebui sa restaurati dintr-o copie de siguranta. + Atenţie: fişierul wallet.dat este corupt, date salvate! Fişierul original wallet.dat a fost salvat ca wallet.{timestamp}.bak in %s; dacă balansul sau tranzactiile sînt incorecte ar trebui să restauraţi dintr-o copie de siguranţă. + + + (default: 1) + (iniţial: 1) <category> can be: @@ -2349,35 +2804,47 @@ spre exemplu: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.com Attempt to recover private keys from a corrupt wallet.dat - Încearcă recuperarea cheilor private dintr-un wallet.dat corupt + Încercare de recuperare a cheilor private dintr-un wallet.dat corupt Block creation options: - Optiuni creare block + Opţiuni creare bloc: Connect only to the specified node(s) - Conecteaza-te doar la nod(urile) specifice + Conectare doar la nod(urile) specificate + + + Connection options: + Opţiuni conexiune: Corrupted block database detected - Baza de date 'bloc' defectată a fost detectată + Bloc defect din baza de date detectat + + + Debugging/Testing options: + Opţiuni Depanare/Test: Discover own IP address (default: 1 when listening and no -externalip) - Descopera propria ta adresa IP (intial: 1) + Descoperă propria adresă IP (inţial: 1) + + + Do not load the wallet and disable wallet RPC calls + Nu încarcă portofelul şi dezactivează solicitările portofel RPC Do you want to rebuild the block database now? - Doriți să reconstruiți baza de date 'bloc' acum? + Doriţi să reconstruiţi baza de date blocuri acum? Error initializing block database - Eroare la inițializarea bazei de date de blocuri + Eroare la iniţializarea bazei de date de blocuri Error initializing wallet database environment %s! - Eroare la initializarea mediului de baza de date a portofelului %s! + Eroare la iniţializarea mediului de bază de date a portofelului %s! Error loading block database @@ -2389,43 +2856,59 @@ spre exemplu: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.com Error: Disk space is low! - Eroare: Spațiu pe disc redus! + Eroare: Spaţiu pe disc redus! - Error: Wallet locked, unable to create transaction! - Eroare: Portofel blocat, nu se poate crea o tranzacție! + Failed to listen on any port. Use -listen=0 if you want this. + Nu s-a reuşit ascultarea pe orice port. Folosiţi -listen=0 dacă vreţi asta. - Failed to listen on any port. Use -listen=0 if you want this. - Am esuat ascultarea pe orice port. Folositi -listen=0 daca vreti asta. + If <category> is not supplied, output all debugging information. + Dacă <category> nu este furnizat, produce toate informaţiile de depanare. + + + Importing... + Import... Incorrect or no genesis block found. Wrong datadir for network? - Incorect sau nici un bloc de Geneza găsite. Directorul de retea greşit? + Incorect sau nici un bloc de geneza găsit. Directorul de retea greşit? Invalid -onion address: '%s' - Adresa -onion invalidă: '%s' + Adresa -onion nevalidă: '%s' Not enough file descriptors available. - Nu sunt destule descriptoare disponibile. + Nu sînt destule descriptoare disponibile. + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Se conectează doar la noduri în reţeaua <net> (ipv4, ipv6 sau onion) Rebuild block chain index from current blk000??.dat files - Reconstruirea indexului lantului de block-uri din fisierele actuale blk000???.dat + Reconstruirea indexului lanţului de bloc din fişierele actuale blk000???.dat + + + Set database cache size in megabytes (%d to %d, default: %d) + Setează mărimea bazei de date cache în megaocteţi (%d la %d, implicit: %d) Set maximum block size in bytes (default: %d) - Setaţi dimensiunea maximă a unui block în bytes (implicit: %d) + Setaţi dimensiunea maximă a unui bloc în bytes (implicit: %d) Specify wallet file (within data directory) - Specifică fișierul wallet (în dosarul de date) + Specifică fişierul portofel (în dosarul de date) This is intended for regression testing tools and app development. - Este folosita pentru programe de testare a regresiei in algoritmi si dezvoltare de alte aplicatii. + Este folosită pentru programe de testare a regresiei în algoritmi şi dezvoltare de alte aplicaţii. + + + Use UPnP to map the listening port (default: %u) + Foloseşte mapare UPnP pentru asculatere port (implicit: %u) Verifying blocks... @@ -2441,83 +2924,199 @@ spre exemplu: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.com Wallet options: - Optiuni de portofel + Opţiuni portofel: You need to rebuild the database using -reindex to change -txindex - Trebuie să reconstruiești baza de date folosind -reindex pentru a schimba -txindex + Trebuie să reconstruiţi baza de date folosind -reindex pentru a schimba -txindex Imports blocks from external blk000??.dat file - Importă blocuri dintr-un fișier extern blk000??.dat + Importă blocuri dintr-un fişier extern blk000??.dat + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Permite conexiunile JSON-RPC din sursa specificată. Valid pentru <ip> sînt IP singulare (ex. 1.2.3.4), o reţea/mască-reţea (ex. 1.2.3.4/255.255.255.0) sau o reţea/CIDR (ex. 1.2.3.4/24). Această opţiune poate fi specificată de mai multe ori + + + An error occurred while setting up the RPC address %s port %u for listening: %s + A apărut o eroare la setarea adresei RPC %s portul %u pentru ascultare: %s + + + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Nu se poate obţine blocarea folderului cu date %s. Nucleul Hypercoin probabil deja rulează. Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Executati comanda cand o alerta relevanta este primita sau vedem o bifurcatie foarte lunga (%s in cmd este inlocuti de mesaj) + Execută comanda cînd o alertă relevantă este primită sau vedem o bifurcaţie foarte lungă (%s în cmd este înlocuit de mesaj) + + + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) + Setează mărimea pentru tranzacţiile prioritare/taxe mici în octeţi (implicit: %d) + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + Acest produs include programe dezvoltate de către Proiectul OpenSSL pentru a fi folosite în OpenSSL Toolkit <https://www.openssl.org/> şi programe criptografice scrise de către Eric Young şi programe UPnP scrise de către Thomas Bernard. + + + Accept public REST requests (default: %u) + Acceptă cererile publice REST (implicit: %u) + + + Connect through SOCKS5 proxy + Conectare prin proxy SOCKS5 + + + Copyright (C) 2009-%i The Hypercoin Core Developers + Copyright (C) 2009-%i Dezvoltatorii Hypercoin + + + Error reading from database, shutting down. + Eroare la citirea bazei de date. Oprire. + + + Error: Unsupported argument -tor found, use -onion. + Eroare: Argument nesuportat -tor găsit, folosiţi -onion. + + + Fee (in HOT/kB) to add to transactions you send (default: %s) + Taxa (în HOT/kB) de adăugat la tranzacţiile pe care le trimiteţi(implicit: %s) Information - Informație + Informaţie + + + Initialization sanity check failed. Hypercoin Core is shutting down. + Nu s-a reuşit iniţierea verificării sănătăţii. Nucleul Hypercoin se opreşte. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Sumă nevalidă pentru -maxtxfee=<suma>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' - Suma invalida pentru -minrelaytxfee=<suma>:'%s' + Sumă nevalidă pentru -minrelaytxfee=<suma>:'%s' Invalid amount for -mintxfee=<amount>: '%s' - Suma invalida pentru -mintxfee=<suma>: '%s' + Sumă nevalidă pentru -mintxfee=<suma>: '%s' + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Sumă nevalidă pentru -paytxfee=<suma>: '%s' (trebuie să fie cel puţin %s) + + + Invalid netmask specified in -whitelist: '%s' + Mască reţea nevalidă specificată în -whitelist: '%s' - Print block on startup, if found in block index - Publica bloc la pornire daca exista in index-ul de blocuri. + Need to specify a port with -whitebind: '%s' + Trebuie să specificaţi un port cu -whitebind: '%s' + + + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Opţiuni RPC SSL: (vedeţi Wiki Hypercoin pentru intrucţiunile de setare SSL) + + + RPC server options: + Opţiuni server RPC: + + + RPC support for HTTP persistent connections (default: %d) + RPC suportă pentru HTTP conexiuni persistente (implicit: %d) + + + Randomly drop 1 of every <n> network messages + Aleator sccapă 1 din fiecare <n> mesaje ale reţelei + + + Randomly fuzz 1 of every <n> network messages + Aleator aproximează 1 din fiecare <n> mesaje ale reţelei Send trace/debug info to console instead of debug.log file - Trimite informațiile trace/debug la consolă în locul fișierului debug.log + Trimite informaţiile trace/debug la consolă în locul fişierului debug.log + + + Send transactions as zero-fee transactions if possible (default: %u) + Trimitere tranzacţii ca tranzacţii taxă-zero dacă este posibil (implicit: %u) + + + Show all debugging options (usage: --help -help-debug) + Arată toate opţiunile de depanare (uz: --help -help-debug) Shrink debug.log file on client startup (default: 1 when no -debug) - Micsorati fisierul debug.log la inceperea clientului (implicit: 1 cand nu -debug) + Micşorează fişierul debug.log la pornirea clientului (implicit: 1 cînd nu se foloseşte -debug) Signing transaction failed - Semnarea tranzacției a eșuat + Nu s-a reuşit semnarea tranzacţiei + + + This is experimental software. + Acesta este un program experimental. Transaction amount too small - Suma tranzacționată este prea mică + Suma tranzacţionată este prea mică Transaction amounts must be positive - Sumele tranzacționate trebuie să fie pozitive + Sumele tranzacţionate trebuie să fie pozitive + + + Transaction too large for fee policy + Tranzacţie prea mare pentru politică gratis Transaction too large - Tranzacția este prea mare + Tranzacţie prea mare + + + Unable to bind to %s on this computer (bind returned error %s) + Nu se poate lega la %s pe acest calculator. (Legarea a întors eroarea %s) Use UPnP to map the listening port (default: 1 when listening) - Foloseste UPnP pentru a vedea porturile (initial: 1 cand listezi) + Foloseşte UPnP pentru a vedea porturile (implicit: 1 cînd ascultă) Username for JSON-RPC connections Utilizator pentru conexiunile JSON-RPC + + Wallet needed to be rewritten: restart Hypercoin Core to complete + Portofelul necesită rescrierea: reporniţi Nucleul Hypercoin pentru completare + Warning - Avertizare + Avertisment Warning: This version is obsolete, upgrade required! - Atenție: această versiune este depășită, este necesară actualizarea! + Atenţie: această versiune este depăşită, este necesară actualizarea! + + + Warning: Unsupported argument -benchmark ignored, use -debug=bench. + Avertisment: Argument nesuportat -benchmark ignorat, folosiţi -debug=bench. + + + Warning: Unsupported argument -debugnet ignored, use -debug=net. + Avertisment: Argument nesuportat -debugnet ignorat, folosiţi -debug=net. + + + Zapping all transactions from wallet... + Şterge toate tranzacţiile din portofel... on startup - in timpul pornirii + la pornire wallet.dat corrupt, salvage failed - wallet.dat corupt, recuperare eșuată + wallet.dat corupt, salvare nereuşită Password for JSON-RPC connections @@ -2525,7 +3124,7 @@ spre exemplu: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.com Execute command when the best block changes (%s in cmd is replaced by block hash) - Execută comanda când cel mai bun bloc se modifică (%s în cmd este înlocuit cu hash-ul blocului) + Execută comanda cînd cel mai bun bloc se modifică (%s în cmd este înlocuit cu hash-ul blocului) Upgrade wallet to latest format @@ -2533,11 +3132,11 @@ spre exemplu: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.com Rescan the block chain for missing wallet transactions - Rescanează lanțul de bloc pentru tranzacțiile portofel lipsă + Rescanează lanţul de bloc pentru tranzacţiile portofel lipsă Use OpenSSL (https) for JSON-RPC connections - Folosește OpenSSL (https) pentru conexiunile JSON-RPC + Foloseşte OpenSSL (https) pentru conexiunile JSON-RPC This help message @@ -2545,27 +3144,75 @@ spre exemplu: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.com Allow DNS lookups for -addnode, -seednode and -connect - Permite căutări DNS pentru -addnode, -seednode și -connect + Permite căutări DNS pentru -addnode, -seednode şi -connect Loading addresses... - Încarc adrese... + Încărcare adrese... Error loading wallet.dat: Wallet corrupted Eroare la încărcarea wallet.dat: Portofel corupt + + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) + Goleşte baza de date a activităţii din memoria pool în jurnal pe disc la fiecare <n> megaocteţi (implicit: %u) + + + Output debugging information (default: %u, supplying <category> is optional) + Produce toate informaţiile de depanare (implicit: %u <category> furnizată este opţională) + + + (default: %s) + (implicit: %s) + + + Acceptable ciphers (default: %s) + Cifruri acceptabile (implicit: %s) + Error loading wallet.dat Eroare la încărcarea wallet.dat + + Force safe mode (default: %u) + Forţează mod sigur (implicit: %u) + + + Generate coins (default: %u) + Generează monede (implicit: %u) + + + How many blocks to check at startup (default: %u, 0 = all) + Cîte blocuri verifică la pornire (implicit: %u, 0 = toate) + Invalid -proxy address: '%s' Adresa -proxy nevalidă: '%s' + + Server certificate file (default: %s) + Fişierul certificat al serverului (implicit: %s) + + + Server private key (default: %s) + Cheia privată a serverului (implicit: %s) + + + Set minimum block size in bytes (default: %u) + Setare mărime minimă bloc în octeţi (implicit: %u) + + + Specify configuration file (default: %s) + Specificaţi fişierul configuraţie (implicit: %s) + + + Specify pid file (default: %s) + Specifică fişierul pid (implicit: %s) + Unknown network specified in -onlynet: '%s' - Rețeaua specificată în -onlynet este necunoscută: '%s' + Reţeaua specificată în -onlynet este necunoscută: '%s' Cannot resolve -bind address: '%s' @@ -2579,25 +3226,21 @@ spre exemplu: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Suma nevalidă pentru -paytxfee=<amount>: '%s' - - Invalid amount - Sumă nevalidă - Insufficient funds Fonduri insuficiente Loading block index... - Încarc indice bloc... + Încărcare index bloc... Add a node to connect to and attempt to keep the connection open - Adaugă un nod la care te poți conecta pentru a menține conexiunea deschisă + Adaugă un nod la care te poţi conecta pentru a menţine conexiunea deschisă Loading wallet... - Încarc portofel... + Încărcare portofel... Cannot downgrade wallet @@ -2609,19 +3252,15 @@ spre exemplu: alertnotify=echo %%s | mail -s "Alerta Bitcoin" admin@foo.com Rescanning... - Rescanez... + Rescanare... Done loading Încărcare terminată - - To use the %s option - Pentru a folosi opțiunea %s - Error Eroare - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index 55986d4092443..1d5cfb4010d1b 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Для того, чтобы изменить адрес или метку, дважды кликните по изменяемому объекту + Right-click to edit address or label + Клик правой кнопкой для редактирования адреса или метки Create a new address @@ -11,7 +11,7 @@ &New - &Новый + Новый Copy the currently selected address to the system clipboard @@ -19,15 +19,15 @@ &Copy - &Копировать + Копировать C&lose - &Закрыть + Закрыть &Copy Address - &Копировать адрес + Копировать адрес Delete the currently selected address from the list @@ -35,15 +35,15 @@ Export the data in the current tab to a file - Экспортировать данные из вкладки в файл + Экспортировать данные текущей вкладки в файл &Export - &Экспорт + Экспорт &Delete - &Удалить + Удалить Choose the address to send coins to @@ -55,7 +55,7 @@ C&hoose - &Выбрать + Выбрать Sending addresses @@ -66,20 +66,20 @@ Адреса получения - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Это ваши адреса Bitcoin для отправки платежей. Всегда проверяйте количество и адрес получателя перед отправкой перевода. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Это ваши адреса Hypercoin для отправки платежей. Всегда проверяйте количество и адрес получателя перед отправкой перевода. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Это ваши адреса Bitcoin для приёма платежей. Рекомендуется использовать новый адрес получения для каждой транзакции. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Это ваши адреса Hypercoin для приёма платежей. Рекомендуется использовать новый адрес получения для каждой транзакции. Copy &Label - Копировать &метку + Копировать &Метку &Edit - &Правка + Правка Export Address List @@ -87,7 +87,7 @@ Comma separated file (*.csv) - Текст, разделённый запятыми (*.csv) + Файл, разделённый запятыми (*.csv) Exporting Failed @@ -106,7 +106,7 @@ (no label) - [нет метки] + (нет метки) @@ -133,7 +133,7 @@ This operation needs your wallet passphrase to unlock the wallet. - Для выполнения операции требуется пароль вашего бумажника. + Данная операция требует введения пароля для разблокировки вашего бумажника. Unlock wallet @@ -141,7 +141,7 @@ This operation needs your wallet passphrase to decrypt the wallet. - Для выполнения операции требуется пароль вашего бумажника. + Данная операция требует введения пароля для расшифровки вашего бумажника. Decrypt wallet @@ -160,8 +160,8 @@ Подтвердите шифрование бумажника - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Внимание: если вы зашифруете бумажник и потеряете пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОЙНЫ</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Предупреждение: если вы зашифруете бумажник и потеряете пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ БИТКОЙНЫ</b>! Are you sure you wish to encrypt your wallet? @@ -184,7 +184,7 @@ Введите новый пароль бумажника.<br/>Используйте пароль, состоящий из <b>десяти или более случайных символов</b>, или <b>восьми или более слов</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. Сейчас программа закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши биткойны от кражи с помощью инфицирования вашего компьютера вредоносным ПО. @@ -205,7 +205,7 @@ The passphrase entered for the wallet decryption was incorrect. - Указанный пароль не подходит. + Неверно указан пароль для расшиврования бумажника. Wallet decryption failed @@ -220,7 +220,7 @@ BitcoinGUI Sign &message... - &Подписать сообщение... + Подписать &сообщение Synchronizing with network... @@ -228,7 +228,7 @@ &Overview - &Обзор + Обзор Node @@ -240,15 +240,15 @@ &Transactions - &Транзакции + Транзакции Browse transaction history - Показать историю транзакций + Просмотр истории транзакций E&xit - В&ыход + Выход Quit application @@ -256,7 +256,7 @@ About &Qt - О &Qt + О Qt Show information about Qt @@ -264,35 +264,35 @@ &Options... - &Параметры + Параметры &Encrypt Wallet... - &Зашифровать бумажник... + Зашифровать бумажник... &Backup Wallet... - &Сделать резервную копию бумажника... + Сделать резервную копию бумажника... &Change Passphrase... - &Изменить пароль... + Сменить пароль &Sending addresses... - &Адреса отправки... + Адреса отправки... &Receiving addresses... - Адреса &получения... + Адреса получения... Open &URI... - Открыть &URI... + Открыть URI... - Bitcoin Core client - Bitcoin Core клиент + Hypercoin Core client + Hypercoin Core клиент Importing blocks from disk... @@ -303,12 +303,12 @@ Идёт переиндексация блоков на диске... - Send coins to a Bitcoin address - Отправить монеты на указанный адрес Bitcoin + Send coins to a Hypercoin address + Отправить монеты на адрес Hypercoin - Modify configuration options for Bitcoin - Изменить параметры конфигурации Bitcoin + Modify configuration options for Hypercoin + Изменить параметры конфигурации Hypercoin Backup wallet to another location @@ -320,7 +320,7 @@ &Debug window - &Окно отладки + Окно отладки Open debugging and diagnostic console @@ -328,11 +328,11 @@ &Verify message... - &Проверить сообщение... + Проверить сообщение... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -340,19 +340,19 @@ &Send - &Отправить + Отправить &Receive - &Получить + Получить - Show information about Bitcoin Core - Показать информацию о Bitcoin Core + Show information about Hypercoin Core + Показать информацию о Hypercoin Core &Show / Hide - &Показать / Скрыть + Показать / Скрыть Show or hide the main Window @@ -363,12 +363,12 @@ Зашифровать приватные ключи, принадлежащие вашему бумажнику - Sign messages with your Bitcoin addresses to prove you own them - Подписать сообщения вашим адресом Bitcoin, чтобы доказать, что вы им владеете + Sign messages with your Hypercoin addresses to prove you own them + Подписать сообщения вашим адресом Hypercoin, чтобы доказать, что вы им владеете - Verify messages to ensure they were signed with specified Bitcoin addresses - Проверить сообщения, чтобы удостовериться, что они были подписаны определённым адресом Bitcoin + Verify messages to ensure they were signed with specified Hypercoin addresses + Проверить сообщения, чтобы удостовериться, что они были подписаны определённым адресом Hypercoin &File @@ -387,3160 +387,256 @@ Панель вкладок - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Запросить платежи (создаёт QR-коды и bitcoin: ссылки) + Request payments (generates QR codes and hypercoin: URIs) + Запросить платежи (создаёт QR-коды и hypercoin: ссылки) - &About Bitcoin Core - &О Bitcoin Core + &About Hypercoin Core + &О Hypercoin Core Show the list of used sending addresses and labels - Показать список использованных адресов и меток отправки + Показать список использованных адресов отправки и меток Show the list of used receiving addresses and labels - Показать список использованных адресов и меток получения + Показать список использованных адресов получения и меток - Open a bitcoin: URI or payment request - Открыть bitcoin: URI или запрос платежа + Open a hypercoin: URI or payment request + Открыть hypercoin: URI или запрос платежа &Command-line options - &Пармаетры командной строки + &Параметры командной строки - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Показать помощь по Bitcoin Core и получить список доступных параметров командной строки. - - - %n active connection(s) to Bitcoin network - %n активное соединение с сетью%n активных соединений с сетью%n активных соединений с сетью Bitcoin + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Показать помощь по Hypercoin Core и получить список доступных параметров командной строки. No block source available... - Источник блоков недоступен... + Нет доступного источника блоков... %n hour(s) - %n час%n часа%n часов + %n час%n часа%n часов%n часов %n day(s) - %n день%n дня%n дней - - - %n week(s) - %n неделя%n недели%n недель - - - %1 and %2 - %1 и %2 - - - %n year(s) - %n год%n лет%n года - - - %1 behind - %1 позади - - - Last received block was generated %1 ago. - Последний полученный блок был сгенерирован %1 назад. - - - Transactions after this will not yet be visible. - Транзакции после него пока не будут видны. - - - Error - Ошибка - - - Warning - Внимание - - - Information - Информация - - - Up to date - Синхронизировано - - - Processed %n blocks of transaction history. - Обработан %n блок истории транзакций.Обработано %n блока истории транзакций.Обработано %n блоков истории транзакций. - - - Catching up... - Синхронизируется... - - - Sent transaction - Исходящая транзакция - - - Incoming transaction - Входящая транзакция - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Дата: %1 -Сумма: %2 -Тип: %3 -Адрес: %4 - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> + %n день%n дня%n дней%n дней - + ClientModel - - Network Alert - Сетевая Тревога - - + CoinControlDialog - - Coin Selection - Выбор монет - - - Quantity: - Количество: - - - Bytes: - Байт: - - - Amount: - Сумма: - - - Priority: - Приоритет: - - - Fee: - Комиссия: - - - Dust: - Пыль: - - - After Fee: - После комиссии: - Change: - Сдача: - - - (un)select all - Отменить выбор всего - - - Tree mode - Режим дерева - - - List mode - Режим списка - - - Amount - Сумма - - - Received with label - Получено с пометкой - - - Received with address - Получено с адреса - - - Date - Дата - - - Confirmations - Подтверждений - - - Confirmed - Подтверждено - - - Priority - Приоритет - - - Copy address - Копировать адрес - - - Copy label - Копировать метку - - - Copy amount - Скопировать сумму - - - Copy transaction ID - Скопировать ID транзакции - - - Lock unspent - Заблокировать непотраченное - - - Unlock unspent - Разблокировать непотраченное - - - Copy quantity - Копировать количество - - - Copy fee - Копировать комиссию - - - Copy after fee - Копировать после комиссии - - - Copy bytes - Копировать байты - - - Copy priority - Копировать приоритет - - - Copy dust - Копировать пыль + Размен: Copy change - Копировать сдачу - - - highest - самый высокий - - - higher - выше - - - high - высокий - - - medium-high - выше среднего - - - medium - средний - - - low-medium - ниже среднего - - - low - низкий - - - lower - ниже - - - lowest - самый низкий + Копировать размен - (%1 locked) - (%1 заблокировано) + (no label) + (нет метки) + + + EditAddressDialog + + + FreespaceChecker + + + HelpMessageDialog - none - ничего + Hypercoin Core + Hypercoin Core + + + Intro - Can vary +/- %1 satoshi(s) per input. - Может отличаться на +/- %1 сатоши на вход. + Hypercoin Core + Hypercoin Core + + + OpenURIDialog + + + OptionsDialog + + + OverviewPage + + + PaymentServer + + + PeerTableModel + + + QObject + + + QRImageWidget + + + RPCConsole + + + ReceiveCoinsDialog - yes - да + Clear all fields of the form. + Очистить все поля формы + + + ReceiveRequestDialog - no - нет + Address + Адрес - This label turns red, if the transaction size is greater than 1000 bytes. - Эта пометка становится красной, если размер транзакции больше 1000 байт. + Label + Метка + + + RecentRequestsTableModel - This means a fee of at least %1 per kB is required. - Это значит, что требуется комиссия как минимум %1 на КБ. + Label + Метка - Can vary +/- 1 byte per input. - Может отличаться на +/- 1 байт на вход. + (no label) + (нет метки) + + + SendCoinsDialog - Transactions with higher priority are more likely to get included into a block. - Транзакции с более высоким приоритетом будут вероятнее других включены в блок. + Change: + Размен: - This label turns red, if the priority is smaller than "medium". - Эта пометка становится красной, если приоритет ниже, чем "средний". + Clear all fields of the form. + Очистить все поля формы - This label turns red, if any recipient receives an amount smaller than %1. - Эта пометка становится красной, если какой-либо из адресатов получает сумму менее %1. + Copy change + Копировать размен (no label) - [нет метки] - - - change from %1 (%2) - сдача с %1 (%2) + (нет метки) + + + SendCoinsEntry + + + ShutdownWindow + + + SignVerifyMessageDialog + + + SplashScreen - (change) - (размен) + Hypercoin Core + Hypercoin Core - + - EditAddressDialog + TrafficGraphWidget + + + TransactionDesc + + + TransactionDescDialog + + + TransactionTableModel - Edit Address - Изменить адрес + Address + Адрес - &Label - &Метка + Received with + Получено на - The label associated with this address list entry - Метка, связанная с этой записью списка адресов + Sent to + Отправлено на - The address associated with this address list entry. This can only be modified for sending addresses. - Адрес, связанный с этой записью списка адресов. Он может быть изменён только для адресов отправки. + Mined + Добытые + + + TransactionView - &Address - &Адрес + Received with + Получено на - New receiving address - Новый адрес для получения + Sent to + Отправлено на - New sending address - Новый адрес для отправки + Mined + Добытые - Edit receiving address - Изменение адреса для получения + Exporting Failed + Экспорт не удался - Edit sending address - Изменение адреса для отправки + Comma separated file (*.csv) + Файл, разделённый запятыми (*.csv) - The entered address "%1" is already in the address book. - Введённый адрес «%1» уже находится в адресной книге. + Label + Метка - The entered address "%1" is not a valid Bitcoin address. - Введённый адрес "%1" не является правильным Bitcoin-адресом. + Address + Адрес + + + UnitDisplayStatusBarControl + + + WalletFrame + + + WalletModel + + + WalletView - Could not unlock wallet. - Не удается разблокировать бумажник. + &Export + Экспорт - New key generation failed. - Генерация нового ключа не удалась. - - - - FreespaceChecker - - A new data directory will be created. - Будет создан новый каталог данных. - - - name - имя - - - Directory already exists. Add %1 if you intend to create a new directory here. - Каталог уже существует. Добавьте %1, если вы хотите создать здесь новый каталог. - - - Path already exists, and is not a directory. - Путь уже существует и не является каталогом. - - - Cannot create data directory here. - Не удаётся создать здесь каталог данных. - - - - HelpMessageDialog - - Bitcoin Core - Bitcoin Core - - - version - версия - - - (%1-bit) - (%1-бит) - - - About Bitcoin Core - О Bitcoin Core - - - Command-line options - Параметры командной строки - - - Usage: - Использование: - - - command-line options - параметры командной строки - - - UI options - Настройки интерфейса - - - Set language, for example "de_DE" (default: system locale) - Выберите язык, например "de_DE" (по умолчанию: как в системе) - - - Start minimized - Запускать свёрнутым - - - Set SSL root certificates for payment request (default: -system-) - Указать корневые SSL-сертификаты для запроса платежа (по умолчанию: -system-) - - - Show splash screen on startup (default: 1) - Показывать сплэш при запуске (по умолчанию: 1) - - - Choose data directory on startup (default: 0) - Выбрать каталог данных при запуске (по умолчанию: 0) - - - - Intro - - Welcome - Добро пожаловать - - - Welcome to Bitcoin Core. - Добро пожаловать в Bitcoin Core. - - - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Так как вы впервые запустили программу, вы можете выбрать, где Bitcoin Core будет хранить данные. - - - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core скачает и сохранит копию цепи блоков. Как минимум, %1ГБ данных будет храниться в этом каталоге, и со временем он будет расти. Бумажник будет также сохранён в этом каталоге. - - - Use the default data directory - Использовать каталог данных по умолчанию - - - Use a custom data directory: - Использовать другой каталог данных: - - - Bitcoin Core - Bitcoin Core - - - Error: Specified data directory "%1" cannot be created. - Ошибка: не удалось создать указанный каталог данных "%1". - - - Error - Ошибка - - - %n GB of free space available - %nГБ свободного места доступно%nГБ свободного места доступно%nГБ свободного места доступно - - - (of %n GB needed) - (из необходимых %nГБ)(из необходимых %nГБ)(из необходимых %nГБ) - - - - OpenURIDialog - - Open URI - Открыть URI - - - Open payment request from URI or file - Открыть запрос платежа из URI или файла - - - URI: - URI: - - - Select payment request file - Выбрать файл запроса платежа - - - Select payment request file to open - Выберите файл запроса платежа - - - - OptionsDialog - - Options - Параметры - - - &Main - &Главная - - - Automatically start Bitcoin after logging in to the system. - Автоматически запускать Bitcoin после входа в систему - - - &Start Bitcoin on system login - &Запускать Bitcoin при входе в систему - - - Size of &database cache - Размер кэша &БД - - - MB - МБ - - - Number of script &verification threads - Число потоков проверки &сценария - - - Accept connections from outside - Разрешать соединения извне - - - Allow incoming connections - Разрешить входящие подключения - - - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP-адрес прокси (например IPv4: 127.0.0.1 / IPv6: ::1) - - - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Сторонние URL (например, block explorer), которые отображаются на вкладке транзакций как пункты контекстного меню. %s в URL заменяется хэшем транзакции. URL отделяются друг от друга вертикальной чертой |. - - - Third party transaction URLs - Сторонние URL транзакций. - - - Active command-line options that override above options: - Активные опции командной строки, которые перекрывают вышеуказанные опции: - - - Reset all client options to default. - Сбросить все настройки клиента на значения по умолчанию. - - - &Reset Options - &Сбросить параметры - - - &Network - &Сеть - - - (0 = auto, <0 = leave that many cores free) - (0 = автоматически, <0 = оставить столько незагруженных ядер) - - - W&allet - Б&умажник - - - Expert - Эксперт - - - Enable coin &control features - Включить управление входами - - - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - При отключении траты неподтверждённой сдачи, сдача от транзакции не может быть использована до тех пор пока у этой транзакции не будет хотя бы одно подтверждение. Это также влияет как ваш баланс рассчитывается. - - - &Spend unconfirmed change - &Тратить неподтверждённую сдачу - - - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Автоматически открыть порт для Bitcoin-клиента на роутере. Работает только если Ваш роутер поддерживает UPnP, и данная функция включена. - - - Map port using &UPnP - Пробросить порт через &UPnP - - - Connect to the Bitcoin network through a SOCKS5 proxy. - Подключаться к сети Bitcoin через прокси SOCKS5 - - - &Connect through SOCKS5 proxy (default proxy): - &Подключаться к сети Bitcoin через прокси SOCKS5 (прокси по умолчанию): - - - Proxy &IP: - &IP Прокси: - - - &Port: - По&рт: - - - Port of the proxy (e.g. 9050) - Порт прокси-сервера (например, 9050) - - - &Window - &Окно - - - Show only a tray icon after minimizing the window. - Показывать только иконку в системном лотке после сворачивания окна. - - - &Minimize to the tray instead of the taskbar - &Cворачивать в системный лоток вместо панели задач - - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. - - - M&inimize on close - С&ворачивать при закрытии - - - &Display - О&тображение - - - User Interface &language: - &Язык интерфейса: - - - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Здесь можно выбрать язык интерфейса. Настройки вступят в силу после перезапуска Bitcoin. - - - &Unit to show amounts in: - &Отображать суммы в единицах: - - - Choose the default subdivision unit to show in the interface and when sending coins. - Выберите единицу измерения монет при отображении и отправке. - - - Whether to show coin control features or not. - Показывать ли функции контроля монет или нет. - - - &OK - &OK - - - &Cancel - &Отмена - - - default - по умолчанию - - - none - ничего - - - Confirm options reset - Подтвердите сброс параметров - - - Client restart required to activate changes. - Для применения изменений требуется перезапуск клиента. - - - Client will be shutdown, do you want to proceed? - Клиент будет выключен, желаете продолжить? - - - This change would require a client restart. - Это изменение потребует перезапуска клиента. - - - The supplied proxy address is invalid. - Адрес прокси неверен. - - - - OverviewPage - - Form - Форма - - - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Отображаемая информация может быть устаревшей. Ваш бумажник автоматически синхронизируется с сетью Bitcoin после подключения, но этот процесс пока не завершён. - - - Watch-only: - Только наблюдение: - - - Available: - Доступно: - - - Your current spendable balance - Ваш текущий расходный баланс - - - Pending: - В ожидании: - - - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в расходном балансе - - - Immature: - Незрелые: - - - Mined balance that has not yet matured - Баланс добытых монет, который ещё не созрел - - - Balances - Балансы - - - Total: - Итого: - - - Your current total balance - Ваш текущий общий баланс - - - Your current balance in watch-only addresses - Ваш текущий баланс в адресах наблюдения - - - Spendable: - Доступно: - - - Recent transactions - Последние транзакции - - - Unconfirmed transactions to watch-only addresses - Неподтверждённые транзакции на адреса наблюдения - - - Mined balance in watch-only addresses that has not yet matured - Баланс добытых монет на адресах наблюдения, который ещё не созрел - - - Current total balance in watch-only addresses - Текущий общий баланс на адресах наблюдения - - - out of sync - не синхронизировано + Export the data in the current tab to a file + Экспортировать данные текущей вкладки в файл - + - PaymentServer - - URI handling - Обработка URI - - - Invalid payment address %1 - Неверный адрес платежа %1 - - - Payment request rejected - Запрос платежа отклонён - - - Payment request network doesn't match client network. - Сеть запроса платежа не совпадает с сетью клиента. - - - Payment request has expired. - Запрос платежа просрочен. - - - Payment request is not initialized. - Запрос платежа не инициализирован. - - - Requested payment amount of %1 is too small (considered dust). - Запрошенная сумма платежа %1 слишком мала (считается пылью). - - - Payment request error - Ошибка запроса платежа - - - Cannot start bitcoin: click-to-pay handler - Не удаётся запустить bitcoin: обработчик click-to-pay - - - Payment request fetch URL is invalid: %1 - Неверный URL запроса платежа: %1 - - - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - Не удалось обработать URI! Это может быть связано с неверным адресом Bitcoin или неправильными параметрами URI. - - - Payment request file handling - Обработка файла запроса платежа - - - Payment request file cannot be read! This can be caused by an invalid payment request file. - Файл запроса платежа не может быть прочитан! Обычно это происходит из-за неверного файла запроса платежа. - - - Unverified payment requests to custom payment scripts are unsupported. - Непроверенные запросы платежей с нестандартными платёжными сценариями не поддерживаются. - - - Refund from %1 - Возврат от %1 - - - Error communicating with %1: %2 - Ошибка связи с %1: %2 - - - Payment request cannot be parsed! - Запрос платежа не может быть разобран! - - - Bad response from server %1 - Плохой ответ от сервера %1 - - - Payment acknowledged - Платёж принят - - - Network request error - Ошибка сетевого запроса - - - - PeerTableModel - - User Agent - Юзер-агент - - - Address/Hostname - Адрес/имя хоста - - - Ping Time - Время задержки - - - - QObject - - Amount - Сумма - - - Enter a Bitcoin address (e.g. %1) - Введите адрес Bitcoin (например, %1) - - - %1 d - %1 д - - - %1 h - %1 ч - - - %1 m - %1 мин - - - %1 s - %1 с - - - NETWORK - СЕТЬ - - - UNKNOWN - НЕИЗВЕСТНЫЙ - - - None - Ничего - - - N/A - Н/Д - - - %1 ms - %1 мс - - - - QRImageWidget - - &Save Image... - &Сохранить изображение... - - - &Copy Image - &Копировать изображение - - - Save QR Code - Сохранить QR-код - - - PNG Image (*.png) - Изображение PNG (*.png) - - - - RPCConsole - - Client name - Имя клиента - - - N/A - Н/Д - - - Client version - Версия клиента - - - &Information - &Информация - - - Debug window - Окно отладки - - - General - Общие - - - Using OpenSSL version - Используется версия OpenSSL - - - Using BerkeleyDB version - Используется версия BerkeleyDB - - - Startup time - Время запуска - - - Network - Сеть - - - Name - Имя - - - Number of connections - Число подключений - - - Block chain - Цепь блоков - - - Current number of blocks - Текущее число блоков - - - Received - Получено - - - Sent - посланный - - - &Peers - &Участники - - - Select a peer to view detailed information. - Выберите участника для просмотра подробностей. - - - Direction - Направление - - - Version - Версия - - - User Agent - Юзер-агент - - - Services - Сервисы - - - Starting Height - Начальная высота - - - Sync Height - Высота синхронизации - - - Ban Score - Очков бана - - - Connection Time - Время соединения - - - Last Send - Последняя отправка - - - Last Receive - Последний раз получено - - - Bytes Sent - Байт передано - - - Bytes Received - Байт получено - - - Ping Time - Время задержки - - - Last block time - Время последнего блока - - - &Open - &Открыть - - - &Console - Консоль - - - &Network Traffic - Сетевой &трафик - - - &Clear - &Очистить - - - Totals - Всего - - - In: - Вход: - - - Out: - Выход: - - - Build date - Дата сборки - - - Debug log file - Отладочный лог-файл - - - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Открыть отладочный лог-файл Bitcoin из текущего каталога данных. Это может занять несколько секунд для больших лог-файлов. - - - Clear console - Очистить консоль - - - Welcome to the Bitcoin RPC console. - Добро пожаловать в RPC-консоль Bitcoin. - - - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Используйте стрелки вверх и вниз для просмотра истории и <b>Ctrl-L</b> для очистки экрана. - - - Type <b>help</b> for an overview of available commands. - Напишите <b>help</b> для просмотра доступных команд. - - - %1 B - %1 Б - - - %1 KB - %1 КБ - - - %1 MB - %1 МБ - - - %1 GB - %1 ГБ - - - via %1 - через %1 - - - never - никогда - - - Inbound - Входящие - - - Outbound - Исходящие - - - Unknown - Неизвестно - - - Fetching... - Получение... - - - - ReceiveCoinsDialog - - &Amount: - &Сумма: - - - &Label: - &Метка: - - - &Message: - &Сообщение - - - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Повторно использовать один из ранее использованных адресов. Повторное использование адресов несёт риски безопасности и приватности. Не используйте эту опцию, если вы не создаёте повторно ранее сделанный запрос платежа. - - - R&euse an existing receiving address (not recommended) - &Повторно использовать существующий адрес получения (не рекомендуется) - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Необязательное сообщение для запроса платежа, которое будет показано при открытии запроса. Заметьте: сообщение не будет отправлено вместе с платежом через сеть Bitcoin. - - - An optional label to associate with the new receiving address. - Необязательная метка для нового адреса получения. - - - Use this form to request payments. All fields are <b>optional</b>. - Заполните форму для запроса платежей. Все поля <b>необязательны</b>. - - - An optional amount to request. Leave this empty or zero to not request a specific amount. - Необязательная сумма для запроса. Оставьте пустым или укажите ноль, чтобы запросить неопределённую сумму. - - - Clear all fields of the form. - Очистить все поля формы. - - - Clear - Очистить - - - Requested payments history - История запрошенных платежей - - - &Request payment - &Запросить платёж - - - Show the selected request (does the same as double clicking an entry) - Показать выбранный запрос (то же самое, что и двойной клик по записи) - - - Show - Показать - - - Remove the selected entries from the list - Удалить выбранные записи из списка - - - Remove - Удалить - - - Copy label - Копировать метку - - - Copy message - Копировать сообщение - - - Copy amount - Скопировать сумму - - - - ReceiveRequestDialog - - QR Code - QR код - - - Copy &URI - Копировать &URI - - - Copy &Address - Копировать &адрес - - - &Save Image... - &Сохранить изображение... - - - Request payment to %1 - Запросить платёж на %1 - - - Payment information - Информация платежа - - - URI - URI - - - Address - Адрес - - - Amount - Сумма - - - Label - Метка - - - Message - Сообщение - - - Resulting URI too long, try to reduce the text for label / message. - Получившийся URI слишком длинный, попробуйте сократить текст метки / сообщения. - - - Error encoding URI into QR Code. - Ошибка кодирования URI в QR-код - - - - RecentRequestsTableModel - - Date - Дата - - - Label - Метка - - - Message - Сообщение - - - Amount - Сумма - - - (no label) - [нет метки] - - - (no message) - (нет сообщения) - - - (no amount) - (нет суммы) - - - - SendCoinsDialog - - Send Coins - Отправка - - - Coin Control Features - Функции Контроля Монет - - - Inputs... - Входы... - - - automatically selected - автоматически выбрано - - - Insufficient funds! - Недостаточно средств! - - - Quantity: - Количество: - - - Bytes: - Байт: - - - Amount: - Сумма: - - - Priority: - Приоритет: - - - Fee: - Комиссия: - - - After Fee: - После комиссии: - - - Change: - Размен: - - - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Если это выбрано, но адрес сдачи пустой или неверный, сдача будет отправлена на новый сгенерированный адрес. - - - Custom change address - Свой адрес для сдачи - - - Transaction Fee: - Комиссия - - - Choose... - Выберите... - - - collapse fee-settings - Свернуть настройки комиссии - - - Minimize - Сворачивать - - - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Если комиссия установлена в 1000 сатоши, а транзакция составляет лишь 250 байт, тогда комиссия "на килобайт" составит 250 сатоши, а "как минимум" — 1000 сатоши. Для транзакций крупнее килобайта в обоих случаях будет использоваться платёж "на килобайт". - - - per kilobyte - за килобайт - - - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Если комиссия установлена в 1000 сатоши, а транзакция составляет лишь 250 байт, тогда комиссия "на килобайт" составит 250 сатоши, а "всего как минимум" — 1000 сатоши. Для транзакций крупнее килобайта в обоих случаях будет использоваться платёж "на килобайт". - - - total at least - Итого как минимум - - - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. - Уплата минимальной комиссии — не проблема, пока объём транзакций меньше, чем свободное место в блоках. Учтите, однако, что такая транзакция может никогда не подтвердиться, если спрос на транзакции превышает возможности сети по их обработке. - - - (read the tooltip) - (прочтите подсказку) - - - Recommended: - Рекомендовано: - - - Custom: - Выборочно: - - - (Smart fee not initialized yet. This usually takes a few blocks...) - (Умная комиссия пока не инициализирована. Обычно для этого требуется несколько блоков...) - - - Confirmation time: - Время подтверждения: - - - normal - обычный - - - fast - ускоренный - - - Send as zero-fee transaction if possible - Осуществить транзакцию бесплатно, если возможно - - - (confirmation may take longer) - (подтверждение может занять больше времени) - - - Send to multiple recipients at once - Отправить нескольким получателям одновременно - - - Add &Recipient - &Добавить получателя - - - Clear all fields of the form. - Очистить все поля формы - - - Dust: - Пыль: - - - Clear &All - Очистить &всё - - - Balance: - Баланс: - - - Confirm the send action - Подтвердить отправку - - - S&end - &Отправить - - - Confirm send coins - Подтвердите отправку монет - - - %1 to %2 - С %1 на %2 - - - Copy quantity - Копировать количество - - - Copy amount - Скопировать сумму - - - Copy fee - Копировать комиссию - - - Copy after fee - Копировать после комиссии - - - Copy bytes - Копировать байты - - - Copy priority - Копировать приоритет - - - Copy change - Копировать размен - - - Total Amount %1 (= %2) - Общая сумма %1 (= %2) - - - or - или - - - The recipient address is not valid, please recheck. - Адрес получателя неверный, пожалуйста, перепроверьте. - - - The amount to pay must be larger than 0. - Сумма для отправки должно быть больше 0. - - - The amount exceeds your balance. - Сумма превышает Ваш баланс - - - The total exceeds your balance when the %1 transaction fee is included. - Сумма превысит Ваш баланс, если комиссия в размере %1 будет добавлена к транзакции - - - Duplicate address found, can only send to each address once per send operation. - Обнаружен дублирующийся адрес. Отправка на один и тот же адрес возможна только один раз за одну операцию отправки - - - Transaction creation failed! - Не удалось создать транзакцию! - - - The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Транзакция была отклонена! Такое может произойти, если некоторые монеты уже были потрачены, например, если Вы используете одну копию бумажника (wallet.dat), а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. - - - A fee higher than %1 is considered an insanely high fee. - Комиссия больше, чем %1, считается невероятно большой. - - - Estimated to begin confirmation within %1 block(s). - Начало подтверждения ожидается через %1 блок(ов). - - - Warning: Invalid Bitcoin address - Внимание: неверный адрес Bitcoin - - - (no label) - [нет метки] - - - Warning: Unknown change address - Внимание: неизвестный адрес для сдачи - - - Copy dust - Копировать пыль - - - Are you sure you want to send? - Вы уверены, что хотите отправить? - - - added as transaction fee - добавлено как комиссия - - - - SendCoinsEntry - - A&mount: - Ко&личество: - - - Pay &To: - Полу&чатель: - - - Enter a label for this address to add it to your address book - Введите метку для данного адреса (для добавления в адресную книгу) - - - &Label: - &Метка: - - - Choose previously used address - Выберите ранее использованный адрес - - - This is a normal payment. - Это нормальный платёж. - - - The Bitcoin address to send the payment to - Адрес Bitcoin, на который отправить платёж - - - Alt+A - Alt+A - - - Paste address from clipboard - Вставить адрес из буфера обмена - - - Alt+P - Alt+P - - - Remove this entry - Удалить эту запись - - - Message: - Сообщение: - - - This is a verified payment request. - Это проверенный запрос платежа. - - - Enter a label for this address to add it to the list of used addresses - Введите метку для этого адреса, чтобы добавить его в список использованных - - - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - К bitcoin: URI было прикреплено сообщение, которое будет сохранено вместе с транзакцией для вашего сведения. Заметьте: сообщение не будет отправлено через сеть Bitcoin. - - - This is an unverified payment request. - Это непроверенный запрос платежа. - - - Pay To: - Получатель: - - - Memo: - Примечание: - - - - ShutdownWindow - - Bitcoin Core is shutting down... - Bitcoin Core выключается... - - - Do not shut down the computer until this window disappears. - Не выключайте компьютер, пока это окно не исчезнет. - - - - SignVerifyMessageDialog - - Signatures - Sign / Verify a Message - Подписи - подписать/проверить сообщение - - - &Sign Message - &Подписать сообщение - - - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Вы можете подписывать сообщения своими адресами, чтобы доказать владение ими. Будьте осторожны, не подписывайте что-то неопределённое, так как фишинговые атаки могут обманным путём заставить вас подписать нежелательные сообщения. Подписывайте только те сообщения, с которыми вы согласны вплоть до мелочей. - - - The Bitcoin address to sign the message with - Адрес Bitcoin, которым подписать сообщение - - - Choose previously used address - Выберите ранее использованный адрес - - - Alt+A - Alt+A - - - Paste address from clipboard - Вставить адрес из буфера обмена - - - Alt+P - Alt+P - - - Enter the message you want to sign here - Введите сообщение для подписи - - - Signature - Подпись - - - Copy the current signature to the system clipboard - Скопировать текущую подпись в системный буфер обмена - - - Sign the message to prove you own this Bitcoin address - Подписать сообщение, чтобы доказать владение адресом Bitcoin - - - Sign &Message - Подписать &Сообщение - - - Reset all sign message fields - Сбросить значения всех полей подписывания сообщений - - - Clear &All - Очистить &всё - - - &Verify Message - &Проверить сообщение - - - Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. - Введите ниже адрес для подписи, сообщение (убедитесь, что переводы строк, пробелы, табы и т.п. в точности скопированы) и подпись, чтобы проверить сообщение. Убедитесь, что не скопировали лишнего в подпись, по сравнению с самим подписываемым сообщением, чтобы не стать жертвой атаки "man-in-the-middle". - - - The Bitcoin address the message was signed with - Адрес Bitcoin, которым было подписано сообщение - - - Verify the message to ensure it was signed with the specified Bitcoin address - Проверить сообщение, чтобы убедиться, что оно было подписано указанным адресом Bitcoin - - - Verify &Message - Проверить &Сообщение - - - Reset all verify message fields - Сбросить все поля проверки сообщения - - - Click "Sign Message" to generate signature - Нажмите "Подписать сообщение" для создания подписи - - - The entered address is invalid. - Введённый адрес неверен - - - Please check the address and try again. - Пожалуйста, проверьте адрес и попробуйте ещё раз. - - - The entered address does not refer to a key. - Введённый адрес не связан с ключом - - - Wallet unlock was cancelled. - Разблокировка бумажника была отменена. - - - Private key for the entered address is not available. - Для введённого адреса недоступен закрытый ключ - - - Message signing failed. - Не удалось подписать сообщение - - - Message signed. - Сообщение подписано - - - The signature could not be decoded. - Подпись не может быть раскодирована. - - - Please check the signature and try again. - Пожалуйста, проверьте подпись и попробуйте ещё раз. - - - The signature did not match the message digest. - Подпись не соответствует отпечатку сообщения. - - - Message verification failed. - Проверка сообщения не удалась. - - - Message verified. - Сообщение проверено. - - - - SplashScreen - - Bitcoin Core - Bitcoin Core - - - The Bitcoin Core developers - Разработчики Bitcoin Core - - - [testnet] - [тестовая сеть] - - - - TrafficGraphWidget - - KB/s - КБ/сек - - - - TransactionDesc - - Open until %1 - Открыто до %1 - - - conflicted - в противоречии - - - %1/offline - %1/отключен - - - %1/unconfirmed - %1/не подтверждено - - - %1 confirmations - %1 подтверждений - - - Status - Статус - - - , broadcast through %n node(s) - , разослано через %n узел, разослано через %n узла, разослано через %n узлов - - - Date - Дата - - - Source - Источник - - - Generated - Сгенерированно - - - From - От - - - To - Для - - - own address - свой адрес - - - watch-only - только наблюдение - - - label - метка - - - Credit - Кредит - - - matures in %n more block(s) - будет доступно через %n блокбудет доступно через %n блокабудет доступно через %n блоков - - - not accepted - не принято - - - Debit - Дебет - - - Total debit - Всего дебет - - - Total credit - Всего кредит - - - Transaction fee - Комиссия - - - Net amount - Чистая сумма - - - Message - Сообщение - - - Comment - Комментарий: - - - Transaction ID - ID транзакции - - - Merchant - Продавец - - - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Сгенерированные монеты должны подождать %1 блоков, прежде чем они могут быть потрачены. Когда Вы сгенерировали этот блок, он был отправлен в сеть для добавления в цепочку блоков. Если он не попадёт в цепь, его статус изменится на "не принят", и монеты будут недействительны. Это иногда происходит в случае, если другой узел сгенерирует блок на несколько секунд раньше вас. - - - Debug information - Отладочная информация - - - Transaction - Транзакция - - - Inputs - Входы - - - Amount - Сумма - - - true - истина - - - false - ложь - - - , has not been successfully broadcast yet - , ещё не было успешно разослано - - - Open for %n more block(s) - Открыто для ещё %n блокаОткрыто для ещё %n блоковОткрыто для ещё %n блоков - - - unknown - неизвестно - - - - TransactionDescDialog - - Transaction details - Детали транзакции - - - This pane shows a detailed description of the transaction - Эта панель отображает детальное описание транзакции. - - - - TransactionTableModel - - Date - Дата - - - Type - Тип - - - Address - Адрес - - - Immature (%1 confirmations, will be available after %2) - Незрелый (%1 подтверждений, будет доступен после %2) - - - Open for %n more block(s) - Открыто для ещё %n блокаОткрыто для ещё %n блоковОткрыто для ещё %n блоков - - - Open until %1 - Открыто до %1 - - - Confirmed (%1 confirmations) - Подтверждено (%1 подтверждений) - - - This block was not received by any other nodes and will probably not be accepted! - Этот блок не был получен другими узлами и, возможно, не будет принят! - - - Generated but not accepted - Сгенерированно, но не подтверждено - - - Offline - Нет активных соединений с сетью - - - Unconfirmed - Неподтверждено - - - Conflicted - В противоречии - - - Received with - Получено - - - Received from - Получено от - - - Sent to - Отправлено - - - Payment to yourself - Отправлено себе - - - Mined - Добыто - - - watch-only - только наблюдение - - - (n/a) - [не доступно] - - - Transaction status. Hover over this field to show number of confirmations. - Статус транзакции. Подведите курсор к нужному полю для того, чтобы увидеть количество подтверждений. - - - Date and time that the transaction was received. - Дата и время, когда транзакция была получена. - - - Type of transaction. - Тип транзакции. - - - Whether or not a watch-only address is involved in this transaction. - Использовался ли в транзакции адрес для наблюдения. - - - Destination address of transaction. - Адрес назначения транзакции. - - - Amount removed from or added to balance. - Сумма, добавленная, или снятая с баланса. - - - - TransactionView - - All - Все - - - Today - Сегодня - - - This week - На этой неделе - - - This month - В этом месяце - - - Last month - В прошлом месяце - - - This year - В этом году - - - Range... - Промежуток... - - - Received with - Получено на - - - Sent to - Отправлено на - - - To yourself - Отправленные себе - - - Mined - Добытые - - - Other - Другое - - - Enter address or label to search - Введите адрес или метку для поиска - - - Min amount - Мин. сумма - - - Copy address - Копировать адрес - - - Copy label - Копировать метку - - - Copy amount - Скопировать сумму - - - Copy transaction ID - Скопировать ID транзакции - - - Edit label - Изменить метку - - - Show transaction details - Показать подробности транзакции - - - Export Transaction History - Экспортировать историю транзакций - - - Watch-only - Для наблюдения - - - Exporting Failed - Экспорт не удался - - - There was an error trying to save the transaction history to %1. - Произошла ошибка при сохранении истории транзакций в %1. - - - Exporting Successful - Экспорт успешно завершён - - - The transaction history was successfully saved to %1. - История транзакций была успешно сохранена в %1. - - - Comma separated file (*.csv) - Текст, разделённый запятыми (*.csv) - - - Confirmed - Подтверждено - - - Date - Дата - - - Type - Тип - - - Label - Метка - - - Address - Адрес - - - ID - ID - - - Range: - Промежуток от: - - - to - до - - - - UnitDisplayStatusBarControl - - Unit to show amounts in. Click to select another unit. - Единица измерения количества монет. Щёлкните для выбора другой единицы. - - - - WalletFrame - - No wallet has been loaded. - Не был загружен ни один бумажник. - - - - WalletModel - - Send Coins - Отправка - - - - WalletView - - &Export - &Экспорт - - - Export the data in the current tab to a file - Экспортировать данные из вкладки в файл - - - Backup Wallet - Сделать резервную копию бумажника - - - Wallet Data (*.dat) - Данные бумажника (*.dat) - - - Backup Failed - Резервное копирование не удалось - - - There was an error trying to save the wallet data to %1. - Произошла ошибка при сохранении данных бумажника в %1. - - - The wallet data was successfully saved to %1. - Данные бумажника были успешно сохранены в %1. - - - Backup Successful - Резервное копирование успешно завершено - - - - bitcoin-core - - Options: - Параметры: - - - Specify data directory - Задать каталог данных - - - Connect to a node to retrieve peer addresses, and disconnect - Подключиться к участнику, чтобы получить список адресов других участников и отключиться - - - Specify your own public address - Укажите ваш собственный публичный адрес - - - Accept command line and JSON-RPC commands - Принимать командную строку и команды JSON-RPC - - - Run in the background as a daemon and accept commands - Запускаться в фоне как демон и принимать команды - - - Use the test network - Использовать тестовую сеть - - - Accept connections from outside (default: 1 if no -proxy or -connect) - Принимать подключения извне (по умолчанию: 1, если не используется -proxy или -connect) - - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, вы должны установить опцию rpcpassword в конфигурационном файле: - %s -Рекомендуется использовать следующий случайный пароль: -rpcuser=bitcoinrpc -rpcpassword=%s -(вам не нужно запоминать этот пароль) -Имя и пароль ДОЛЖНЫ различаться. -Если файл не существует, создайте его и установите права доступа только для владельца, только для чтения. -Также рекомендуется включить alertnotify для оповещения о проблемах; -Например: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Привязаться к указанному адресу и всегда прослушивать только его. Используйте [хост]:порт для IPv6 - - - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Удалить все транзакции бумажника с возможностью восстановить эти части цепи блоков с помощью -rescan при запуске - - - Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. - Распространяется под лицензией MIT, см. приложенный файл COPYING или <http://www.opensource.org/licenses/mit-license.php>. - - - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Войти в режим тестирования на регрессии, в котором используется специальная цепь, где блоки находятся мгновенно. - - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Ошибка: транзакция была отклонена! Это могло произойти в случае, если некоторые монеты в вашем бумажнике уже были потрачены, например, если вы используете копию wallet.dat, и монеты были использованы в копии, но не отмечены как потраченные здесь. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Ошибка: эта транзакция требует комиссию как минимум %s из-за суммы, сложности или использования недавно полученных средств! - - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Выполнить команду, когда меняется транзакция в бумажнике (%s в команде заменяется на TxID) - - - In this mode -genproclimit controls how many blocks are generated immediately. - В этом режиме -genproclimit определяет, сколько блоков генерируется немедленно. - - - Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - Задать число потоков проверки скрипта (от %u до %d, 0=авто, <0 = оставить столько ядер свободными, по умолчанию: %d) - - - This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - Это пре-релизная тестовая сборка - используйте на свой страх и риск - не используйте для добычи или торговых приложений - - - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Не удалось забиндиться на %s на этом компьютере. Возможно, Bitcoin Core уже запущен. - - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - Внимание: установлено очень большое значение -paytxfee. Это комиссия, которую вы заплатите при проведении транзакции. - - - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - Внимание: похоже, в сети нет полного согласия! Некоторый майнеры, возможно, испытывают проблемы. - - - Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - Внимание: мы не полностью согласны с подключенными участниками! Вам или другим участникам, возможно, следует обновиться. - - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Внимание: ошибка чтения wallet.dat! Все ключи прочитаны верно, но данные транзакций или записи адресной книги могут отсутствовать или быть неправильными. - - - Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - Внимание: wallet.dat повреждён, данные спасены! Оригинальный wallet.dat сохранён как wallet.{timestamp}.bak в %s; если ваш баланс или транзакции некорректны, вы должны восстановить файл из резервной копии. - - - Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. - Вносить в белый список участников, подключающихся с указанной маски сети или IP. Можно использовать многократно. - - - (default: 1) - (по умолчанию: 1) - - - <category> can be: - <category> может быть: - - - Attempt to recover private keys from a corrupt wallet.dat - Попытаться восстановить приватные ключи из повреждённого wallet.dat - - - Block creation options: - Параметры создания блоков: - - - Connect only to the specified node(s) - Подключаться только к указанному узлу(ам) - - - Connection options: - Параметры подключения: - - - Corrupted block database detected - БД блоков повреждена - - - Debugging/Testing options: - Параметры отладки/тестирования: - - - Discover own IP address (default: 1 when listening and no -externalip) - Определить свой IP (по умолчанию: 1 при прослушивании и если не используется -externalip) - - - Do not load the wallet and disable wallet RPC calls - Не загружать бумажник и запретить обращения к нему через RPC - - - Do you want to rebuild the block database now? - Пересобрать БД блоков прямо сейчас? - - - Error initializing block database - Ошибка инициализации БД блоков - - - Error initializing wallet database environment %s! - Ошибка инициализации окружения БД бумажника %s! - - - Error loading block database - Ошибка чтения базы данных блоков - - - Error opening block database - Не удалось открыть БД блоков - - - Error: A fatal internal error occured, see debug.log for details - Ошибка: произошла неустранимая ошибка, детали в debug.log - - - Error: Disk space is low! - Ошибка: мало места на диске! - - - Error: Wallet locked, unable to create transaction! - Ошибка: бумажник заблокирован, невозможно создать транзакцию! - - - Failed to listen on any port. Use -listen=0 if you want this. - Не удалось начать прослушивание на порту. Используйте -listen=0 если вас это устраивает. - - - If <category> is not supplied, output all debugging information. - Если <category> не предоставлена, выводить всю отладочную информацию. - - - Importing... - Импорт ... - - - Incorrect or no genesis block found. Wrong datadir for network? - Неверный или отсутствующий начальный блок. Неправильный каталог данных для сети? - - - Invalid -onion address: '%s' - Неверный -onion адрес: '%s' - - - Not enough file descriptors available. - Недостаточно файловых дескрипторов. - - - Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Соединяться только по сети <net> (ipv4, ipv6 или onion) - - - Rebuild block chain index from current blk000??.dat files - Перестроить индекс цепи блоков из текущих файлов blk000??.dat - - - Set database cache size in megabytes (%d to %d, default: %d) - Установить размер кэша БД в мегабайтах(от %d до %d, по умолчанию: %d) - - - Set maximum block size in bytes (default: %d) - Задать максимальный размер блока в байтах (по умолчанию: %d) - - - Specify wallet file (within data directory) - Укажите файл бумажника (внутри каталога данных) - - - This is intended for regression testing tools and app development. - Это рассчитано на инструменты регрессионного тестирования и разработку приложений. - - - Use UPnP to map the listening port (default: %u) - Использовать UPnP для проброса порта (по умолчанию: %u) - - - Verifying blocks... - Проверка блоков... - - - Verifying wallet... - Проверка бумажника... - - - Wallet %s resides outside data directory %s - Бумажник %s располагается вне каталога данных %s - - - Wallet options: - Настройки бумажника: - - - You need to rebuild the database using -reindex to change -txindex - Вам необходимо пересобрать базы данных с помощью -reindex, чтобы изменить -txindex - - - Imports blocks from external blk000??.dat file - Импортировать блоки из внешнего файла blk000??.dat - - - Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - Разрешить подключения JSON-RPC с указанного источника. Разрешённые значения для <ip> — отдельный IP (например, 1.2.3.4), сеть/маска сети (например, 1.2.3.4/255.255.255.0) или сеть/CIDR (например, 1.2.3.4/24). Эту опцию можно использовать многократно - - - An error occurred while setting up the RPC address %s port %u for listening: %s - Произошла ошибка в процессе открытия RPC адреса %s порта %u для прослушивания: %s - - - Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - Привязаться к указанному адресу и внести в белый список подключающихся к нему участников. Используйте [хост]:порт для IPv6 - - - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Привязаться к указанному адресу для прослушивания JSON-RPC подключений. Используйте запись [хост]:порт для IPv6. Эту опцию можно использовать многократно (по умолчанию: привязываться ко всем интерфейсам) - - - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Не удалось установить блокировку на каталог данных %s. Возможно, Bitcoin Core уже запущен. - - - Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) - Ограничить скорость передачи бесплатных транзакций до <n>*1000 байт в минуту (по умолчанию: %u) - - - Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) - Создавать новые файлы с системными правами по умолчанию вместо umask 077 (эффективно только при отключенном бумажнике) - - - Error: Listening for incoming connections failed (listen returned error %s) - Ошибка: не удалось начать прослушивание входящих подключений (прослушивание вернуло ошибку %s) - - - Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. - Ошибка: обнаружен неподдерживаемый аргумент -socks. Выбор версии SOCKS более невозможен, поддерживаются только прокси SOCKS5. - - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Выполнить команду, когда приходит соответствующее сообщение о тревоге или наблюдается очень длинное расщепление цепи (%s в команде заменяется на сообщение) - - - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Комиссии (в BTC/Кб) меньшие этого значения считаются нулевыми для трансляции (по умолчанию: %s) - - - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Комиссии (в BTC/Кб) меньшие этого значения считаются нулевыми для создания транзакции (по умолчанию: %s) - - - Maximum size of data in data carrier transactions we relay and mine (default: %u) - Наибольший размер данных в носителе данных транзакций, которые мы передаем и генерируем (по умолчанию: %u) - - - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) - Запрашивать адреса участников с помощью DNS, если адресов мало (по умолчанию: 1, если не указан -connect) - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Задать максимальный размер высокоприоритетных/низкокомиссионных транзакций в байтах (по умолчанию: %d) - - - Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) - Задать число потоков генерации монет, если она включена (-1 = все ядра процессора, по умолчанию: %d) - - - This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. - Этот продукт включает ПО, разработанное OpenSSL Project для использования в OpenSSL Toolkit <https://www.openssl.org/> и криптографическое ПО, написанное Eric Young и ПО для работы с UPnP, написанное Thomas Bernard. - - - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Внимание: убедитесь, что дата и время на Вашем компьютере выставлены верно. Если Ваши часы идут неправильно, Bitcoin Core будет работать некорректно. - - - Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway - Участники из белого списка не могуть быть забанены за DoS, и их транзакции всегда транслируются, даже если они уже содержатся в памяти. Полезно, например, для шлюза. - - - Cannot resolve -whitebind address: '%s' - Не удаётся разрешить адрес в параметре -whitebind: '%s' - - - Connect through SOCKS5 proxy - Подключаться через SOCKS5 прокси - - - Copyright (C) 2009-%i The Bitcoin Core Developers - Все права защищены © 2009-%i Разработчики Bitcoin Core - - - Could not parse -rpcbind value %s as network address - Не удалось разобрать значение %s параметра -rpcbind как сетевой адрес - - - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Ошибка загрузки wallet.dat: бумажник требует более новую версию Bitcoin Core - - - Error: Unsupported argument -tor found, use -onion. - Ошибка: обнаружен неподдерживаемый параметр -tor, используйте -onion. - - - Fee (in BTC/kB) to add to transactions you send (default: %s) - Комиссия (в BTC/Кб) для добавления к вашим транзакциям (по умолчанию: %s) - - - Information - Информация - - - Initialization sanity check failed. Bitcoin Core is shutting down. - Не удалось проверить чистоту. Bitcoin Core выключается. - - - Invalid amount for -minrelaytxfee=<amount>: '%s' - Неверная сумма в параметре -minrelaytxfee=<кол-во>: '%s' - - - Invalid amount for -mintxfee=<amount>: '%s' - Неверная сумма в параметре -mintxfee=<кол-во>: '%s' - - - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Неверное количество в параметре -paytxfee=<кол-во>: '%s' (должно быть как минимум %s) - - - Invalid netmask specified in -whitelist: '%s' - Указана неверная сетевая маска в -whitelist: '%s' - - - Keep at most <n> unconnectable blocks in memory (default: %u) - Хранить максимум <n> несоединённых блоков в памяти (по умолчанию: %u) - - - Keep at most <n> unconnectable transactions in memory (default: %u) - Держать в памяти до <n> несвязных транзакций (по умолчанию: %u) - - - Need to specify a port with -whitebind: '%s' - Необходимо указать порт с помощью -whitebind: '%s' - - - Node relay options: - Параметры трансляции узла: - - - Print block on startup, if found in block index - Печатать блок при запуске, если он найден в индексе блоков - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Параметры RPC SSL: (см. Bitcoin вики для инструкций по настройке SSL) - - - RPC server options: - Параметры сервера RPC: - - - Randomly drop 1 of every <n> network messages - Случайно отбрасывать 1 из каждых <n> сетевых сообщений - - - Randomly fuzz 1 of every <n> network messages - Случайно разбрасывать 1 из каждых <n> сетевых сообщений - - - Send trace/debug info to console instead of debug.log file - Выводить информацию трассировки/отладки на консоль вместо файла debug.log - - - Send transactions as zero-fee transactions if possible (default: %u) - Осуществить транзакцию бесплатно, если возможно (по умолчанию: %u) - - - Show all debugging options (usage: --help -help-debug) - Показать все отладочные параметры (использование: --help -help-debug) - - - Shrink debug.log file on client startup (default: 1 when no -debug) - Сжимать файл debug.log при запуске клиента (по умолчанию: 1, если нет -debug) - - - Signing transaction failed - Не удалось подписать транзакцию - - - This is experimental software. - Это экспериментальное ПО. - - - Transaction amount too small - Сумма транзакции слишком мала - - - Transaction amounts must be positive - Сумма транзакции должна быть положительна - - - Transaction too large - Транзакция слишком большая - - - Unable to bind to %s on this computer (bind returned error %s) - Невозможно привязаться к %s на этом компьютере (bind вернул ошибку %s) - - - Use UPnP to map the listening port (default: 1 when listening) - Использовать UPnP для проброса порта (по умолчанию: 1, если используется прослушивание) - - - Username for JSON-RPC connections - Имя для подключений JSON-RPC - - - Wallet needed to be rewritten: restart Bitcoin Core to complete - Необходимо перезаписать бумажник, перезапустите Bitcoin Core для завершения операции. - - - Warning - Внимание - - - Warning: This version is obsolete, upgrade required! - Внимание: эта версия устарела, требуется обновление! - - - Warning: Unsupported argument -benchmark ignored, use -debug=bench. - Внимание: неподдерживаемый аргумент -benchmark проигнорирован, используйте -debug=bench. - - - Warning: Unsupported argument -debugnet ignored, use -debug=net. - Внимание: неподдерживаемый аргумент -debugnet проигнорирован, используйте -debug=net. - - - Zapping all transactions from wallet... - Стираем все транзакции из кошелька... - - - on startup - при запуске - - - wallet.dat corrupt, salvage failed - wallet.dat повреждён, спасение данных не удалось - - - Password for JSON-RPC connections - Пароль для подключений JSON-RPC - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - Выполнить команду, когда появляется новый блок (%s в команде заменяется на хэш блока) - - - Upgrade wallet to latest format - Обновить бумажник до последнего формата - - - Rescan the block chain for missing wallet transactions - Перепроверить цепь блоков на предмет отсутствующих в бумажнике транзакций - - - Use OpenSSL (https) for JSON-RPC connections - Использовать OpenSSL (https) для подключений JSON-RPC - - - This help message - Эта справка - - - Allow DNS lookups for -addnode, -seednode and -connect - Разрешить поиск в DNS для -addnode, -seednode и -connect - - - Loading addresses... - Загрузка адресов... - - - Error loading wallet.dat: Wallet corrupted - Ошибка загрузки wallet.dat: Бумажник поврежден - - - (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) - (1 = сохранять метаданные транзакции: например, владельца аккаунта и информацию запроса платежа; 2 = отбросить метаданные) - - - Flush database activity from memory pool to disk log every <n> megabytes (default: %u) - Сбрасывать активность базы данных из памяти на диск каждые <n> мегабайт (по умолчанию: %u) - - - How thorough the block verification of -checkblocks is (0-4, default: %u) - Насколько тщательна проверка контрольных блоков -checkblocks (0-4, по умолчанию: %u) - - - If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u) - Если paytxfee не задан, включить достаточную комиссию для подтверждения транзакции в среднем за n блоков (по умолчанию: %u) - - - Log transaction priority and fee per kB when mining blocks (default: %u) - Записывать в лог приоритет транзакции и комиссию на килобайт во время добычи блоков (по умолчанию: %u) - - - Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) - Держать полный индекс транзакций, используемый RPC-запросом getrawtransaction (по умолчанию: %u) - - - Number of seconds to keep misbehaving peers from reconnecting (default: %u) - Число секунд блокирования неправильно ведущих себя узлов (по умолчанию: %u) - - - Output debugging information (default: %u, supplying <category> is optional) - Выводить отладочную информацию (по умолчанию: %u, указание <category> необязательно) - - - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - Использовать отдельный прокси SOCKS5 для соединения с участниками через скрытые сервисы Tor (по умолчанию: %s) - - - (default: %s) - (по умолчанию: %s) - - - Acceptable ciphers (default: %s) - Допустимые шифры (по умолчанию: %s) - - - Always query for peer addresses via DNS lookup (default: %u) - Всегда запрашивать адреса участников с помощью DNS (по умолчанию: %u) - - - Disable safemode, override a real safe mode event (default: %u) - Отключить безопасный режим, перекрыть реальное событие безопасного режима (по умолчанию: %u) - - - Error loading wallet.dat - Ошибка при загрузке wallet.dat - - - Force safe mode (default: %u) - Принудительный безопасный режим (по умолчанию: %u) - - - Generate coins (default: %u) - Включить добычу монет (по умолчанию: %u) - - - How many blocks to check at startup (default: %u, 0 = all) - Сколько блоков проверять при запуске (по умолчанию: %u, 0 = все) - - - Include IP addresses in debug output (default: %u) - Включить IP-адреса в отладочный вывод (по умолчанию: %u) - - - Invalid -proxy address: '%s' - Неверный адрес -proxy: '%s' - - - Limit size of signature cache to <n> entries (default: %u) - Ограничить размер кэша подписей <n> записями (по умолчанию: %u) - - - Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) - Прослушивать подключения JSON-RPC на <порту> (по умолчанию: %u или %u в тестовой сети) - - - Listen for connections on <port> (default: %u or testnet: %u) - Принимать входящие подключения на <port> (по умолчанию: %u или %u в тестовой сети) - - - Maintain at most <n> connections to peers (default: %u) - Поддерживать не более <n> подключений к узлам (по умолчанию: %u) - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) - Максимальный размер буфера приёма на соединение, <n>*1000 байт (по умолчанию: %u) - - - Maximum per-connection send buffer, <n>*1000 bytes (default: %u) - Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: %u) - - - Only accept block chain matching built-in checkpoints (default: %u) - Принимать цепь блоков, лишь если она соответствует встроенным контрольным точкам (по умолчанию: %u) - - - Prepend debug output with timestamp (default: %u) - Дописывать отметки времени к отладочному выводу (по умолчанию: %u) - - - Print block tree on startup (default: %u) - Печатать дерево блоков при запуске (по умолчанию: %u) - - - Relay and mine data carrier transactions (default: %u) - Транслировать и генерировать транзакции носителей данных (по умолчанию: %u) - - - Relay non-P2SH multisig (default: %u) - Транслировать не-P2SH мультиподпись (по умолчанию: %u) - - - Run a thread to flush wallet periodically (default: %u) - Запустить поток для периодического сохранения бумажника (по умолчанию: %u) - - - Server certificate file (default: %s) - Файл сертификата сервера (по умолчанию: %s) - - - Server private key (default: %s) - Закрытый ключ сервера (по умолчанию: %s) - - - Set key pool size to <n> (default: %u) - Установить размер пула ключей в <n> (по умолчанию: %u) - - - Set the number of threads to service RPC calls (default: %d) - Задать число потоков выполнения запросов RPC (по умолчанию: %d) - - - Sets the DB_PRIVATE flag in the wallet db environment (default: %u) - Установить флаг DB_PRIVATE в окружении базы данных бумажника (по умолчанию: %u) - - - Specify configuration file (default: %s) - Указать конфигурационный файл (по умолчанию: %s) - - - Specify connection timeout in milliseconds (minimum: 1, default: %d) - Указать тайм-аут соединения в миллисекундах (минимум: 1, по умолчанию: %d) - - - Specify pid file (default: %s) - Указать pid-файл (по умолчанию: %s) - - - Spend unconfirmed change when sending transactions (default: %u) - Тратить неподтвержденную сдачу при отправке транзакций (по умолчанию: %u) - - - Stop running after importing blocks from disk (default: %u) - Остановиться после импорта блоков с диска (по умолчанию: %u) - - - Threshold for disconnecting misbehaving peers (default: %u) - Порог для отключения неправильно ведущих себя узлов (по умолчанию: %u) - - - Unknown network specified in -onlynet: '%s' - В параметре -onlynet указана неизвестная сеть: '%s' - - - Cannot resolve -bind address: '%s' - Не удаётся разрешить адрес в параметре -bind: '%s' - - - Cannot resolve -externalip address: '%s' - Не удаётся разрешить адрес в параметре -externalip: '%s' - - - Invalid amount for -paytxfee=<amount>: '%s' - Неверная сумма в параметре -paytxfee=<кол-во>: '%s' - - - Invalid amount - Неверная сумма - - - Insufficient funds - Недостаточно монет - - - Loading block index... - Загрузка индекса блоков... - - - Add a node to connect to and attempt to keep the connection open - Добавить узел для подключения и пытаться поддерживать соединение открытым - - - Loading wallet... - Загрузка бумажника... - - - Cannot downgrade wallet - Не удаётся понизить версию бумажника - - - Cannot write default address - Не удаётся записать адрес по умолчанию - - - Rescanning... - Сканирование... - - - Done loading - Загрузка завершена - - - To use the %s option - Чтобы использовать опцию %s - - - Error - Ошибка - - - \ No newline at end of file + bitcoin-core + + diff --git a/src/qt/locale/bitcoin_sah.ts b/src/qt/locale/bitcoin_sah.ts index 84b973bf924d3..6cc17f480afd4 100644 --- a/src/qt/locale/bitcoin_sah.ts +++ b/src/qt/locale/bitcoin_sah.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Аадырыскын уларытаргар иккитэ баттаа - AddressTableModel diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitcoin_sk.ts index fe7c62cd60437..25abadfc99066 100644 --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitcoin_sk.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Dvojklikom editovať adresu alebo popis + Right-click to edit address or label + Kliknutím pravým tlačidlom upravte adresu alebo popis Create a new address @@ -66,12 +66,12 @@ Adresa prijatia - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Toto sú Vaše Bitcoin adresy pre posielanie platieb. Vždy skontrolujte množstvo a prijímaciu adresu pred poslaním coins. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Toto sú Vaše Hypercoin adresy pre posielanie platieb. Vždy skontrolujte množstvo a prijímaciu adresu pred poslaním coins. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Toto sú vaše Bitcoin adresy pre prijímanie platieb. Odporúča sa použiť novú prijímaciu adresu pre každú transakciu. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Toto sú vaše Hypercoin adresy pre prijímanie platieb. Odporúča sa použiť novú prijímaciu adresu pre každú transakciu. Copy &Label @@ -164,8 +164,8 @@ Potvrďte šifrovanie peňaženky - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Varovanie: Ak zašifrujete peňaženku a stratíte heslo, <b>STRATÍTE VŠETKY VAŠE BITCOINY</b>!⏎ + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Varovanie: Ak zašifrujete peňaženku a stratíte heslo, <b>STRATÍTE VŠETKY VAŠE HYPERCOINY</b>!⏎ Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Zadajte nové heslo k peňaženke.<br/>Prosím použite heslo s dĺžkou aspoň <b>10 alebo viac náhodných znakov</b>, alebo <b>8 alebo viac slov</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin sa teraz ukončí pre dokončenie procesu šifrovania. Pamätaj že šifrovanie peňaženky Ťa nemôže úplne ochrániť pred kráďežou bitcoinov pomocou škodlivého software. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin sa teraz ukončí pre dokončenie procesu šifrovania. Pamätaj že šifrovanie peňaženky Ťa nemôže úplne ochrániť pred kráďežou hypercoinov pomocou škodlivého software. Wallet encryption failed @@ -284,19 +284,19 @@ &Sending addresses... - Posielajúca adresa ... + &Odosielajúce adresy ... &Receiving addresses... - Prijímajúca adresa... + &Prijímajúce adresy... Open &URI... Otvoriť &URI... - Bitcoin Core client - Bitcoin Core klient + Hypercoin Core client + Hypercoin Core klient Importing blocks from disk... @@ -307,12 +307,12 @@ Preindexúvam bloky na disku... - Send coins to a Bitcoin address - Poslať bitcoins na adresu + Send coins to a Hypercoin address + Poslať hypercoins na adresu - Modify configuration options for Bitcoin - Upraviť možnosti nastavenia pre bitcoin + Modify configuration options for Hypercoin + Upraviť možnosti nastavenia pre hypercoin Backup wallet to another location @@ -335,8 +335,8 @@ Overiť správu - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Prijať - Show information about Bitcoin Core - Zobraziť informácie o Bitcoin Core + Show information about Hypercoin Core + Zobraziť informácie o Hypercoin Core &Show / Hide @@ -367,12 +367,12 @@ Zašifruj súkromné kľúče ktoré patria do vašej peňaženky - Sign messages with your Bitcoin addresses to prove you own them - Podpísať správu s vašou adresou Bitcoin aby ste preukázali že ju vlastníte + Sign messages with your Hypercoin addresses to prove you own them + Podpísať správu s vašou adresou Hypercoin aby ste preukázali že ju vlastníte - Verify messages to ensure they were signed with specified Bitcoin addresses - Overiť či správa bola podpísaná uvedenou Bitcoin adresou + Verify messages to ensure they were signed with specified Hypercoin addresses + Overiť či správa bola podpísaná uvedenou Hypercoin adresou &File @@ -391,16 +391,16 @@ Lišta záložiek - Bitcoin Core - Jadro Bitcoin + Hypercoin Core + Jadro Hypercoin - Request payments (generates QR codes and bitcoin: URIs) - Vyžiadať platbu (vygeneruje QR kód a bitcoin: URI) + Request payments (generates QR codes and hypercoin: URIs) + Vyžiadať platbu (vygeneruje QR kód a hypercoin: URI) - &About Bitcoin Core - O jadre Bitcoin + &About Hypercoin Core + O jadre Hypercoin Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Zobraziť zoznam použitých prijímacích adries a ich popisov - Open a bitcoin: URI or payment request - Otvoriť bitcoin URI alebo výzvu k platbe + Open a hypercoin: URI or payment request + Otvoriť hypercoin URI alebo výzvu k platbe &Command-line options Možnosti príkazového riadku - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Zobraziť pomocnú správu od Bitcoin Jadra pre získanie zoznamu dostupných možností príkazového riadku + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Zobraziť pomocnú správu od Hypercoin Jadra pre získanie zoznamu dostupných možností príkazového riadku - %n active connection(s) to Bitcoin network - %n aktívne pripojenie do siete Bitcoin%n aktívne pripojenia do siete Bitcoin%n aktívnych pripojení do siete Bitcoin + %n active connection(s) to Hypercoin network + %n aktívne pripojenie do siete Hypercoin%n aktívne pripojenia do siete Hypercoin%n aktívnych pripojení do siete Hypercoin No block source available... @@ -440,7 +440,7 @@ %n week(s) - %n týždeň%n týždne%n týždňov + %n týždňom%n týždňami%n týždňami %1 and %2 @@ -460,7 +460,7 @@ Transactions after this will not yet be visible. - Transakcie potom nebudú ešte viditeľné. + Transakcie po tomto čase ešte nebudú viditeľné. Error @@ -478,6 +478,10 @@ Up to date Aktualizovaný + + Processed %n blocks of transaction history. + Spracovaný %n blok transakčnej histórie.Spracované %n bloky transakčnej histórie.Spracovaných %n blokov transakčnej histórie. + Catching up... Sťahujem... @@ -519,6 +523,10 @@ Adresa: %4 CoinControlDialog + + Coin Selection + Výber mince + Quantity: Množstvo: @@ -539,6 +547,10 @@ Adresa: %4 Fee: Poplatok: + + Dust: + Prach: + After Fee: Po poplatku: @@ -563,6 +575,14 @@ Adresa: %4 Amount Suma + + Received with label + Prijaté s označením + + + Received with address + Prijaté s adresou + Date Dátum @@ -623,6 +643,10 @@ Adresa: %4 Copy priority Kopírovať prioritu + + Copy dust + Kopírovať prach + Copy change Kopírovať zmenu @@ -671,6 +695,10 @@ Adresa: %4 none žiadne + + Can vary +/- %1 satoshi(s) per input. + Môže sa líšiť o +/- %1 satoshi pre každý vstup + yes áno @@ -759,8 +787,8 @@ Adresa: %4 Vložená adresa "%1" sa už nachádza v adresári. - The entered address "%1" is not a valid Bitcoin address. - Vložená adresa "%1" nieje platnou adresou bitcoin. + The entered address "%1" is not a valid Hypercoin address. + Vložená adresa "%1" nieje platnou adresou hypercoin. Could not unlock wallet. @@ -797,8 +825,8 @@ Adresa: %4 HelpMessageDialog - Bitcoin Core - Jadro Bitcoin + Hypercoin Core + Jadro Hypercoin version @@ -809,8 +837,8 @@ Adresa: %4 (%1-bit) - About Bitcoin Core - O jadre Bitcoin + About Hypercoin Core + O jadre Hypercoin Command-line options @@ -856,16 +884,16 @@ Adresa: %4 Vitajte - Welcome to Bitcoin Core. - Vitajte v jadre Bitcoin. + Welcome to Hypercoin Core. + Vitajte v jadre Hypercoin. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Keďže spúštate program prvý krát, môžte si vybrať kde bude Bitcoin Jadro ukladať svoje dáta. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Keďže spúštate program prvý krát, môžte si vybrať kde bude Hypercoin Jadro ukladať svoje dáta. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Jadro Bitcoin stiahne zo siete a uloží kópiu Bitcoin blockchain. Aspoň %1GB dát bude uložených v tomto priečinku a časom porastie. Peňaženka bude tiež uložená v tomto priečinku. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Jadro Hypercoin stiahne zo siete a uloží kópiu Hypercoin blockchain. Aspoň %1GB dát bude uložených v tomto priečinku a časom porastie. Peňaženka bude tiež uložená v tomto priečinku. Use the default data directory @@ -876,14 +904,26 @@ Adresa: %4 Použiť vlastný dátový adresár: - Bitcoin Core - Jadro Bitcoin + Hypercoin Core + Jadro Hypercoin + + + Error: Specified data directory "%1" cannot be created. + Chyba: Zadaný priečinok pre dáta "%1" nemôže byť vytvorený. Error Chyba - + + %n GB of free space available + %n GB voľného miesta%n GB voľného miesta%n GB voľného miesta + + + (of %n GB needed) + (z %n GB potrebného)(z %n GB potrebných)(z %n GB potrebných) + + OpenURIDialog @@ -918,16 +958,16 @@ Adresa: %4 &Hlavné - Automatically start Bitcoin after logging in to the system. - Automaticky spustiť Bitcoin po zapnutí počítača + Automatically start Hypercoin after logging in to the system. + Automaticky spustiť Hypercoin po zapnutí počítača - &Start Bitcoin on system login - &Spustiť Bitcoin pri spustení systému správy okien + &Start Hypercoin on system login + &Spustiť Hypercoin pri spustení systému správy okien Size of &database cache - Veľkosť vyrovnávacej pamäti databázy + Veľkosť vyrovnávacej pamäti &databázy MB @@ -935,7 +975,15 @@ Adresa: %4 Number of script &verification threads - Počet skript overujucich vlákien + Počet &vlákien overujúcich skript + + + Accept connections from outside + Prijať spojenia zvonku + + + Allow incoming connections + Povoliť prichádzajúce spojenia IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) @@ -979,7 +1027,7 @@ Adresa: %4 Enable coin &control features - Povoliť možnosti coin control + Povoliť možnosti "&coin control" If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. @@ -990,13 +1038,21 @@ Adresa: %4 Minúť nepotvrdený výdavok - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Automaticky otvorit port pre Bitcoin na routeri. Toto funguje len ak router podporuje UPnP a je táto podpora aktivovaná. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automaticky otvorit port pre Hypercoin na routeri. Toto funguje len ak router podporuje UPnP a je táto podpora aktivovaná. Map port using &UPnP Mapovať port pomocou &UPnP + + Connect to the Hypercoin network through a SOCKS5 proxy. + Pripojiť do siete Hypercoin cez proxy server SOCKS5. + + + &Connect through SOCKS5 proxy (default proxy): + &Pripojiť cez proxy server SOCKS5 (predvolený proxy). + Proxy &IP: Proxy &IP: @@ -1038,8 +1094,8 @@ Adresa: %4 Jazyk užívateľského rozhrania: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Tu sa dá nastaviť jazyk užívateľského rozhrania. Toto nastavenie bude účinné po reštartovaní Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Tu sa dá nastaviť jazyk užívateľského rozhrania. Toto nastavenie bude účinné po reštartovaní Hypercoin. &Unit to show amounts in: @@ -1047,7 +1103,7 @@ Adresa: %4 Choose the default subdivision unit to show in the interface and when sending coins. - Zvoľte ako deliť bitcoin pri zobrazovaní pri platbách a užívateľskom rozhraní. + Zvoľte ako deliť hypercoin pri zobrazovaní pri platbách a užívateľskom rozhraní. Whether to show coin control features or not. @@ -1097,8 +1153,12 @@ Adresa: %4 Forma - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Zobrazené informácie môžu byť neaktuápne. Vaša peňaženka sa automaticky synchronizuje so sieťou Bitcoin po nadviazaní spojenia ale tento proces ešte nieje ukončený. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Zobrazené informácie môžu byť neaktuálne. Vaša peňaženka sa automaticky synchronizuje so sieťou Hypercoin po nadviazaní spojenia, ale tento proces ešte nie je ukončený. + + + Watch-only: + Iba sledované: Available: @@ -1110,7 +1170,7 @@ Adresa: %4 Pending: - Čakajúce potvrdenie + Čakajúce potvrdenie: Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance @@ -1124,6 +1184,10 @@ Adresa: %4 Mined balance that has not yet matured Vytvorený zostatok ktorý ešte nedosiahol zrelosť + + Balances + Stav účtu + Total: Celkovo: @@ -1132,6 +1196,30 @@ Adresa: %4 Your current total balance Váš súčasný celkový zostatok + + Your current balance in watch-only addresses + Váš celkový zostatok pre adresy ktoré sa iba sledujú + + + Spendable: + Použiteľné: + + + Recent transactions + Nedávne transakcie + + + Unconfirmed transactions to watch-only addresses + Nepotvrdené transakcie pre adresy ktoré sa iba sledujú + + + Mined balance in watch-only addresses that has not yet matured + Vyťažená suma pre adresy ktoré sa iba sledujú ale ešte nie je dozretá + + + Current total balance in watch-only addresses + Aktuálny celkový zostatok pre adries ktoré sa iba sledujú + out of sync nesynchronizované @@ -1147,6 +1235,18 @@ Adresa: %4 Invalid payment address %1 Neplatná adresa platby %1 + + Payment request rejected + Požiadavka na platbu zamietnutá + + + Payment request network doesn't match client network. + Sieť požiadavky na platbu nie je zhodná so sieťou klienta. + + + Payment request is not initialized. + Požiadavka na platbu nie je inicializovaná + Requested payment amount of %1 is too small (considered dust). Požadovaná platba sumy %1 je príliš malá (považovaná za prach). @@ -1156,17 +1256,25 @@ Adresa: %4 Chyba pri vyžiadaní platby - Cannot start bitcoin: click-to-pay handler - Nedá sa spustiť obslužný program bitcoin: click-to-pay zaplatiť kliknutím + Cannot start hypercoin: click-to-pay handler + Nedá sa spustiť obslužný program hypercoin: click-to-pay zaplatiť kliknutím Payment request fetch URL is invalid: %1 URL pre stiahnutie výzvy na zaplatenie je neplatné: %1 + + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI sa nedá analyzovať! To môže byť spôsobené neplatnou Hypercoin adresou alebo zle upravenými vlastnosťami URI. + Payment request file handling Obsluha súboru s požiadavkou na platbu + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Súbor s výzvou na zaplatenie sa nedá čítať alebo spracovať! To môže byť spôsobené aj neplatným súborom s výzvou. + Unverified payment requests to custom payment scripts are unsupported. Program nepodporuje neoverené platobné výzvy na vlastná skripty. @@ -1175,10 +1283,22 @@ Adresa: %4 Refund from %1 Vrátenie z %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Požiadavka na platbu %1 je príliš veľká (%2 bajtov, povolené je %3 bajtov). + + + Payment request DoS protection + Ochrana pred zahltením požiadavkami na platbu + Error communicating with %1: %2 Chyba komunikácie s %1: %2 + + Payment request cannot be parsed! + Požiadavka na platbu nemôže byť analyzovaná! + Bad response from server %1 Zlá odpoveď zo servera %1 @@ -1194,13 +1314,33 @@ Adresa: %4 PeerTableModel - + + User Agent + Aplikácia + + + Address/Hostname + Adresa/Názov počítača + + + Ping Time + Čas odozvy + + QObject Amount Suma + + Enter a Hypercoin address (e.g. %1) + Zadajte hypercoin adresu (napr. %1) + + + %1 d + %1 d + %1 h %1 h @@ -1209,11 +1349,23 @@ Adresa: %4 %1 m %1 m + + %1 s + %1 s + + + None + Žiadne + N/A nie je k dispozícii - + + %1 ms + %1 ms + + QRImageWidget @@ -1263,6 +1415,10 @@ Adresa: %4 Using OpenSSL version Používa OpenSSL verziu + + Using BerkeleyDB version + Používa BerkeleyDB verziu + Startup time Čas spustenia @@ -1287,6 +1443,74 @@ Adresa: %4 Current number of blocks Aktuálny počet blokov + + Received + Prijaté + + + Sent + Odoslané + + + &Peers + &Partneri + + + Select a peer to view detailed information. + Vyberte počítač pre zobrazenie podrobností. + + + Direction + Smer + + + Version + Verzia + + + User Agent + Aplikácia + + + Services + Služby + + + Starting Height + Počiatočná výška + + + Sync Height + Synchronizovaná výška + + + Ban Score + Skóre zákazu + + + Connection Time + Dĺžka spojenia + + + Last Send + Posledné odoslanie + + + Last Receive + Posledné prijatie + + + Bytes Sent + Odoslaných bajtov + + + Bytes Received + Prijatých bajtov + + + Ping Time + Čas odozvy + Last block time Čas posledného bloku @@ -1301,7 +1525,7 @@ Adresa: %4 &Network Traffic - Sieťová prevádzka + &Sieťová prevádzka &Clear @@ -1328,20 +1552,20 @@ Adresa: %4 Súbor záznamu ladenia - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Otvoriť Bitcoin log súbor pre ladenie z aktuálneho dátového adresára. Toto môže trvať niekoľko sekúnd pre veľké súbory. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Otvoriť Hypercoin log súbor pre ladenie z aktuálneho dátového adresára. Toto môže trvať niekoľko sekúnd pre veľké súbory. Clear console Vymazať konzolu - Welcome to the Bitcoin RPC console. - Vitajte v Bitcoin RPC konzole. Baník, pyčo! + Welcome to the Hypercoin RPC console. + Vitajte v Hypercoin RPC konzole. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Použi šipky hore a dolu pre navigáciu históriou a <b>Ctrl-L</b> pre vyčistenie obrazovky. + Použi šípky hore a dolu pre navigáciu históriou a <b>Ctrl-L</b> pre vyčistenie obrazovky. Type <b>help</b> for an overview of available commands. @@ -1363,7 +1587,31 @@ Adresa: %4 %1 GB %1 GB - + + via %1 + cez %1 + + + never + nikdy + + + Inbound + Prichádzajúce + + + Outbound + Odchádzajúce + + + Unknown + neznámy + + + Fetching... + Získava sa... + + ReceiveCoinsDialog @@ -1387,8 +1635,8 @@ Adresa: %4 Znovu použiť jestvujúcu prijímaciu adresu (neodporúča sa) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Pridať voliteľnú správu k výzve na zaplatenie, ktorá sa zobrazí keď bude výzva otvorená. Poznámka: Správa nebude poslaná s platbou cez sieť Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Pridať voliteľnú správu k výzve na zaplatenie, ktorá sa zobrazí keď bude výzva otvorená. Poznámka: Správa nebude poslaná s platbou cez sieť Hypercoin. An optional label to associate with the new receiving address. @@ -1537,7 +1785,7 @@ Adresa: %4 SendCoinsDialog Send Coins - Poslať Bitcoins + Poslať Hypercoins Coin Control Features @@ -1591,6 +1839,78 @@ Adresa: %4 Custom change address Vlastná adresa zmeny + + Transaction Fee: + Poplatok za transakciu: + + + Choose... + Zvoliť... + + + collapse fee-settings + zbaliť nastavenia poplatkov + + + Minimize + Minimalizovať + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Ak je poplatok nastavený na 1000 satoshi a transakcia je veľká len 250 bajtov, potom "za kilobajt" zaplatí poplatok 250 satoshi, ale "aspoň" zaplatí 1000 satoshi. Pre transakcie väčšie ako kilobajt platia oba spôsoby za každý kilobajt. + + + per kilobyte + za kilobajt + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Ak je poplatok nastavený na 1000 satoshi a transakcia je veľká len 250 bajtov, potom "za kilobajt" zaplatí poplatok 250 satoshi, ale "spolu aspoň" zaplatí 1000 satoshi. Pre transakcie väčšie ako kilobajt platia oba spôsoby za každý kilobajt. + + + total at least + spolu aspoň + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Zaplatenie len minimálneho poplatku je v poriadku, pokiaľ existuje menej transakcií ako miesta v blokoch. Uvedomte si však, že ak bude vyšší dopyt po transakciách ako dokáže sieť spracovať, môže byť vaša transakcia odsúvaná a nepotvrdená donekonečna. + + + (read the tooltip) + (prečítajte si nápovedu pod kurzorom) + + + Recommended: + Odporúčaný: + + + Custom: + Vlastný: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Automatický poplatok ešte nebol aktivovaný. Toto zvyčajne trvá niekoľko blokov...) + + + Confirmation time: + Čas potvrdenia: + + + normal + normálne + + + fast + rýchle + + + Send as zero-fee transaction if possible + Poslať ako transakciu bez poplatku, ak je to možné + + + (confirmation may take longer) + (potvrdenie môže trvať dlhšie) + Send to multiple recipients at once Poslať viacerým príjemcom naraz @@ -1603,6 +1923,10 @@ Adresa: %4 Clear all fields of the form. Vyčistiť všetky polia formulára. + + Dust: + Prach: + Clear &All Zmazať &všetko @@ -1621,7 +1945,7 @@ Adresa: %4 Confirm send coins - Potvrdiť odoslanie bitcoins + Potvrdiť odoslanie hypercoins %1 to %2 @@ -1655,10 +1979,6 @@ Adresa: %4 Copy change Kopírovať zmenu - - Total Amount %1 (= %2) - Celková suma %1 (= %2) - or alebo @@ -1692,8 +2012,16 @@ Adresa: %4 Transakcia bola zamietnutá! Toto sa môže stať ak niektoré coins vo vašej peňaženke už boli minuté, ako keď použijete kópiu wallet.dat a coins boli minuté z kópie ale neoznačené ako minuté tu. - Warning: Invalid Bitcoin address - Varovanie: Nesprávna Bitcoin adresa + A fee higher than %1 is considered an insanely high fee. + Poplatok vyšší ako %1 je považovaný za šialene vysoký. + + + Pay only the minimum fee of %1 + Zaplatiť minimálny poplatok %1 + + + Warning: Invalid Hypercoin address + Varovanie: Nesprávna Hypercoin adresa (no label) @@ -1703,6 +2031,10 @@ Adresa: %4 Warning: Unknown change address Varovanie: Neznáma adresa pre výdavok + + Copy dust + Kopírovať prach + Are you sure you want to send? Určite to chcete odoslať? @@ -1738,6 +2070,10 @@ Adresa: %4 This is a normal payment. Toto je normálna platba. + + The Hypercoin address to send the payment to + Zvoľte adresu kam poslať platbu + Alt+A Alt+A @@ -1767,8 +2103,8 @@ Adresa: %4 Vložte popis pre túto adresu aby sa uložila do zoznamu použitých adries - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Správa ktorá bola pripojená k bitcoin: URI a ktorá bude uložená s transakcou pre Vaše potreby. Poznámka: Táto správa nebude poslaná cez sieť Bitcoin. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Správa ktorá bola pripojená k hypercoin: URI a ktorá bude uložená s transakcou pre Vaše potreby. Poznámka: Táto správa nebude poslaná cez sieť Hypercoin. This is an unverified payment request. @@ -1786,8 +2122,8 @@ Adresa: %4 ShutdownWindow - Bitcoin Core is shutting down... - Jadro Bitcoin sa ukončuje... + Hypercoin Core is shutting down... + Jadro Hypercoin sa ukončuje... Do not shut down the computer until this window disappears. @@ -1837,7 +2173,7 @@ Adresa: %4 Kopírovať práve zvolenú adresu do systémového klipbordu - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address Podpíšte správu aby ste dokázali že vlastníte túto adresu @@ -1861,8 +2197,12 @@ Adresa: %4 Vložte podpisovaciu adresu, správu (uistite sa, že kopírujete ukončenia riadkov, medzery, odrážky, atď. presne) a podpis pod to na overenie adresy. Buďte opatrní a nečítajte ako podpísané viac než je v samotnej podpísanej správe a môžete sa tak vyhnúť podvodu mitm útokom. - Verify the message to ensure it was signed with the specified Bitcoin address - Overím správy sa uistiť že bola podpísaná označenou Bitcoin adresou + The Hypercoin address the message was signed with + Adresa Hypercoin, ktorou bola podpísaná správa + + + Verify the message to ensure it was signed with the specified Hypercoin address + Overím správy sa uistiť že bola podpísaná označenou Hypercoin adresou Verify &Message @@ -1928,8 +2268,8 @@ Adresa: %4 SplashScreen - Bitcoin Core - Jadro Bitcoin + Hypercoin Core + Jadro Hypercoin The Bitcoin Core developers @@ -1997,6 +2337,10 @@ Adresa: %4 own address vlastná adresa + + watch-only + Iba sledovanie + label popis @@ -2013,6 +2357,14 @@ Adresa: %4 Debit Debet + + Total debit + Debit spolu + + + Total credit + Kredit spolu + Transaction fee Transakčný poplatok @@ -2155,6 +2507,10 @@ Adresa: %4 Mined Vyfárané + + watch-only + Iba sledovanie + (n/a) (n/a) @@ -2171,6 +2527,10 @@ Adresa: %4 Type of transaction. Typ transakcie. + + Whether or not a watch-only address is involved in this transaction. + Či sú ale nie sú, adresy iba na sledovanie zahrnuté v tejto transakcii. + Destination address of transaction. Cieľová adresa transakcie. @@ -2266,6 +2626,10 @@ Adresa: %4 Export Transaction History Exportovať históriu transakcií + + Watch-only + Iba sledovanie + Exporting Failed Export zlyhal @@ -2321,7 +2685,11 @@ Adresa: %4 UnitDisplayStatusBarControl - + + Unit to show amounts in. Click to select another unit. + Jednotka pre zobrazovanie súm. Kliknite pre zvolenie inej jednotky. + + WalletFrame @@ -2333,7 +2701,7 @@ Adresa: %4 WalletModel Send Coins - Poslať Bitcoins + Poslať Hypercoins @@ -2383,7 +2751,7 @@ Adresa: %4 Connect to a node to retrieve peer addresses, and disconnect - Pripojiť sa k nóde, získať adresy ďaľších počítačov v sieti a odpojit sa. + Pripojiť sa k uzlu, získať adresy ďalších počítačov v sieti a odpojiť sa Specify your own public address @@ -2405,45 +2773,21 @@ Adresa: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Prijať spojenia zvonku (predvolené: 1 ak žiadne -proxy alebo -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, musíte nastaviť rpcpassword heslo v súbore nastavení: -%s -Odporúča sa používať nasledujúce náhodné heslo: -rpcuser=bitcoinrpc -rpcpassword=%s -(nemusíte si pamätať toto heslo) -Užívateľské meno a heslo NESMÚ byť rovnaké. -Ak súbor neexistuje, vytvorte ho s prístupovým právom owner-readable-only čitateľné len pre majiteľa. -Tiež sa odporúča nastaviť alertnotify aby ste boli upozorňovaní na problémy; -napríklad: alertnotify=echo %%s | mail -s "Bitcoin Výstraha" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Spojiť s danou adresou a vždy na nej počúvať. Použite zápis [host]:port pre IPv6 - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - Vojsť do režimu regresného testovania, ktorý používa špeciálnu reťaz v ktorej môžu byť bloky v okamihu vyriešené. + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Vymazať všetky transakcie z peňaženky a pri spustení znova získať z reťazca blokov iba tie získané pomocou -rescan - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Transakcia bola zamietnutá! Toto sa môže stať ak niektoré coins vo vašej peňaženke už boli minuté, ako keď použijete kópiu wallet.dat a coins boli minuté z kópie ale neoznačené ako minuté tu. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Distribuované pod softvérovou licenciou MIT, viď sprievodný súbor COPYING alebo <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Chyba: Táto transakcia vyžaduje transakčný poplatok aspoň %s kvôli svojej sume, komplexite alebo použitiu nedávno prijatých prostriedkov. + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + Vojsť do režimu regresného testovania, ktorý používa špeciálnu reťaz v ktorej môžu byť bloky v okamihu vyriešené. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) @@ -2459,11 +2803,11 @@ napríklad: alertnotify=echo %%s | mail -s "Bitcoin Výstraha" admin@foo.com This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - Toto je pred-testovacia verzia - použitie je na vlastné riziko - nepoužívajte na tvorbu bitcoin ani obchodovanie. + Toto je pred-testovacia verzia - použitie je na vlastné riziko - nepoužívajte na tvorbu hypercoin ani obchodovanie. - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Nepodarilo sa pripojiť na %s na tomto počítači. Bitcoin Jadro je už pravdepodobne spustené. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Nepodarilo sa pripojiť na %s na tomto počítači. Hypercoin Jadro je už pravdepodobne spustené. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2477,7 +2821,7 @@ The network does not appear to fully agree! Some miners appear to be experiencin Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - Varovanie: Zjavne sa úplne nezhodujeme s našimi peer-mi! Možno potrebujete prejsť na novšiu verziu alebo ostatné nódy potrebujú vyššiu verziu. + Varovanie: Zjavne sa úplne nezhodujeme s našimi peer-mi! Možno potrebujete prejsť na novšiu verziu alebo ostatné uzly potrebujú vyššiu verziu. Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. @@ -2487,6 +2831,10 @@ The network does not appear to fully agree! Some miners appear to be experiencin Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. Varovanie: wallet.dat je poškodený, údaje úspešne získané! Pôvodný wallet.dat uložený ako wallet.{timestamp}.bak v %s; ak váš zostatok alebo transakcie niesu správne, mali by ste súbor obnoviť zo zálohy. + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Uzle na zoznam povolených, ktoré sa pripájajú z danej netmask alebo IP adresy. Môže byť zadané viac krát. + (default: 1) (predvolené: 1) @@ -2551,10 +2899,6 @@ The network does not appear to fully agree! Some miners appear to be experiencin Error: Disk space is low! Chyba: Málo miesta na disku! - - Error: Wallet locked, unable to create transaction! - Chyba: Peňaženka je zamknutá, nemôžem vytvoriť transakciu! - Failed to listen on any port. Use -listen=0 if you want this. Chyba počúvania na ktoromkoľvek porte. Použi -listen=0 ak toto chcete. @@ -2579,13 +2923,17 @@ The network does not appear to fully agree! Some miners appear to be experiencin Not enough file descriptors available. Nedostatok kľúčových slov súboru. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Pripojiť iba k uzlom v sieti <net> (ipv4, ipv6, alebo onion) + Rebuild block chain index from current blk000??.dat files Znovu vytvoriť zoznam blokov zo súčasných blk000??.dat súborov Set database cache size in megabytes (%d to %d, default: %d) - Nastaviť veľkosť pomocnej pamäti databázy v megabajtoch (%d na %d, prednatavené: %d) + Nastaviť veľkosť pomocnej pamäti databázy v megabajtoch (%d do %d, prednastavené: %d) Set maximum block size in bytes (default: %d) @@ -2599,6 +2947,10 @@ The network does not appear to fully agree! Some miners appear to be experiencin This is intended for regression testing tools and app development. Toto je mienené nástrojom pre regresné testovania a vývoj programu. + + Use UPnP to map the listening port (default: %u) + Použiť UPnP pre mapovanie počúvajúceho portu (predvolené: %u) + Verifying blocks... Overujem bloky... @@ -2624,21 +2976,137 @@ The network does not appear to fully agree! Some miners appear to be experiencin Importuje bloky z externého súboru blk000??.dat - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Neviem uzamknúť data adresár %s. Jadro Bitcoin je pravdepodobne už spustené. + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Povoliť JSON-RPC pripojenia zo zadaného zdroja. Pre <ip> sú platné jednoduché IP (napr. 1.2.3.4), sieť/netmask (napr. 1.2.3.4/255.255.255.0) alebo sieť/CIDR (napr. 1.2.3.4/24). Táto možnosť môže byť zadaná niekoľko krát + + + An error occurred while setting up the RPC address %s port %u for listening: %s + Pri nastavovaní RPC adresy %s na porte %u pre počúvanie došlo k chybe: %s + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Spojiť s danou adresou a povolenými partnerskými zariadeniami ktoré sa tam pripájajú. Použite zápis [host]:port pre IPv6 + + + Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) + Spojiť s danou adresou pre počúvanie JSON-RPC spojení. Použite zápis [host]:port pre IPv6. Táto možnosť môže byt zadaná niekoľko krát (predvolené: spojiť so všetkými rozhraniami) + + + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Neviem uzamknúť data adresár %s. Jadro Hypercoin je pravdepodobne už spustené. + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Vytvoriť nové súbory z predvolenými systémovými právami, namiesto umask 077 (funguje iba z vypnutou funkcionalitou peňaženky) + + + Error: Listening for incoming connections failed (listen returned error %s) + Chyba: Počúvanie prichádzajúcich spojení zlyhalo (vrátená chyba je %s) + + + Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + Chyba: Nájdený nepodporovaný argument -socks. Nastavenie SOCKS verzie nie je už možné, podporované sú už iba proxy SOCKS5. Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Vykonať príkaz keď po prijatí patričné varovanie alebo vidíme veľmi dlhé rozdvojenie siete (%s v cmd je nahradené správou) + Vykonať príkaz po prijatí patričného varovania alebo uvidíme veľmi dlhé rozdvojenie siete (%s v cmd je nahradené správou) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Poplatky (v HOT/Kb) nižšie ako toľkoto sa považujú za nulové pri postupovaní transakcií (predvolené: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Poplatky (v HOT/Kb) nižšie ako toľkoto sa považujú za nulové pri vytváraní transakcií (predvolené: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Ak nie je nastavené paytxfee, pridať dostatočný poplatok aby sa transakcia začala potvrdzovať priemerne v rámci bloku (predvolené: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Neplatná suma pre -maxtxfee=<amount>: '%s' (aby sa transakcia nezasekla, minimálny prenosový poplatok musí byť aspoň %s) + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Maximálna veľkosť dát v transakciách nosných dát, ktoré prenášame a ťažíme (predvolené: %u) + + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) + Dotaz na partnerské adresy pomocou vyhľadávania DNS v prípade nedostatku adries (predvolené: 1, pokiaľ -connect) + + + Require high priority for relaying free or low-fee transactions (default:%u) + Vyžadovať vysokú prioritu pre postúpenie transakcií s nízkymi poplatkami (predvolené:%u) Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Nastaviť najväčšiu veľkosť vysoká-dôležitosť/nízke-poplatky transakcií v bajtoch (prednastavené: %d) + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + Nastaviť počet vlákien pre generáciu mincí (-1 = všetky jadrá, predvolené: %d) + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + Tento produkt obsahuje softvér vyvinutý projektom OpenSSL pre použitie sady nástrojov OpenSSL <https://www.openssl.org/> a kryptografického softvéru napísaného Eric Young a UPnP softvér napísaný Thomas Bernard. + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Upozornenie: -maxtxfee je nastavené príliš vysoko! Takto vysoké poplatky by mali byť zaplatené za jednu transakciu. + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + Uzle na zoznam povolených nemôžu byť DoS zakázané a ich transakcie vždy postúpené ďalej, aj v prípade, ak sú už pamäťovej fronte. Užitočné napr. pre brány + + + Accept public REST requests (default: %u) + Akceptovať verejné REST žiadosti (predvolené: %u) + + + Cannot resolve -whitebind address: '%s' + Nedá sa vyriešiť -whitebind adresa: '%s' + + + Connect through SOCKS5 proxy + Pripojiť cez proxy server SOCKS5 + + + Copyright (C) 2009-%i The Bitcoin Core Developers + Copyright (C) 2009-%i Vývojári jadra Bitcoin + + + Could not parse -rpcbind value %s as network address + Nedá sa analyzovať -rpcbind hodnota %s ako sieťová adresa + + + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Chyba pri čítaní wallet.dat: Peňaženka vyžaduje vyššiu verziu Jadra Hypercoin + + + Error reading from database, shutting down. + Chyba pri načítaní z databázy, ukončuje sa. + + + Error: Unsupported argument -tor found, use -onion. + Chyba: nájdený nepodporovaný argument -tor, použite -onion. + + + Fee (in HOT/kB) to add to transactions you send (default: %s) + Poplatok (v HOT/kB), ktorý sa pridá k transakciám, ktoré odosielate (predvolený: %s) + Information Informácia + + Invalid amount for -maxtxfee=<amount>: '%s' + Neplatná suma pre -maxtxfee=<amount>: '%s' + Invalid amount for -minrelaytxfee=<amount>: '%s' Neplatná suma pre -minrelaytxfee=<amount>: '%s' @@ -2648,17 +3116,37 @@ The network does not appear to fully agree! Some miners appear to be experiencin Neplatná suma pre -mintxfee=<amount>: '%s' - Print block on startup, if found in block index - Vytlač blok pri spustení, ak nájdený v zozname blokov + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Neplatná suma pre -paytxfee=<amount>: '%s' (musí byť aspoň %s) + + + Invalid netmask specified in -whitelist: '%s' + Nadaná neplatná netmask vo -whitelist: '%s' + + + Keep at most <n> unconnectable transactions in memory (default: %u) + V pamäti udržiavať najviac <n> nepotvrdených transakcií (predvolené: %u) - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Možnosti RPC SSL: (Pozri v Bitcoin Wiki pokyny pre SSL nastavenie) + Need to specify a port with -whitebind: '%s' + Je potrebné zadať port s -whitebind: '%s' + + + Node relay options: + Prenosové možnosti uzla: + + + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Možnosti RPC SSL: (Pozri v Hypercoin Wiki pokyny pre SSL nastavenie) RPC server options: Možnosti servra RPC: + + RPC support for HTTP persistent connections (default: %d) + Podpora RPC pre trvalé HTTP spojenia (predvolené: %d) + Randomly drop 1 of every <n> network messages Náhodne zahadzuj 1 z každých <n> sieťových správ @@ -2671,6 +3159,10 @@ The network does not appear to fully agree! Some miners appear to be experiencin Send trace/debug info to console instead of debug.log file Odoslať trace/debug informácie na konzolu namiesto debug.info žurnálu + + Send transactions as zero-fee transactions if possible (default: %u) + Poslať ako transakcie bez poplatku, ak je to možné (predvolené: %u) + Show all debugging options (usage: --help -help-debug) Zobraziť všetky možnosti ladenia (použitie: --help --help-debug) @@ -2683,6 +3175,10 @@ The network does not appear to fully agree! Some miners appear to be experiencin Signing transaction failed Podpísanie správy zlyhalo + + This is experimental software. + Toto je experimentálny softvér. + Transaction amount too small Suma transakcie príliš malá @@ -2691,10 +3187,18 @@ The network does not appear to fully agree! Some miners appear to be experiencin Transaction amounts must be positive Hodnoty transakcie musia byť väčšie ako nula (pozitívne) + + Transaction too large for fee policy + Transakcia je príliš veľká pre aktuálne podmienky poplatkov + Transaction too large Transakcia príliš veľká + + Unable to bind to %s on this computer (bind returned error %s) + Na tomto počítači sa nedá vytvoriť väzba %s (vytvorenie väzby vrátilo chybu %s) + Use UPnP to map the listening port (default: 1 when listening) Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (default: 1 when listening) @@ -2711,6 +3215,14 @@ The network does not appear to fully agree! Some miners appear to be experiencin Warning: This version is obsolete, upgrade required! Upozornenie: Táto verzia je zastaraná, vyžaduje sa aktualizácia! + + Warning: Unsupported argument -benchmark ignored, use -debug=bench. + Upozornenie: Nepodporovaný argument -benchmark bol ignorovaný, použite -debug=bench. + + + Warning: Unsupported argument -debugnet ignored, use -debug=net. + Upozornenie: Nepodporovaný argument -debugnet bol ignorovaný, použite -debug=net. + Zapping all transactions from wallet... Zmazať všetky transakcie z peňaženky... @@ -2759,14 +3271,134 @@ The network does not appear to fully agree! Some miners appear to be experiencin Error loading wallet.dat: Wallet corrupted Chyba načítania wallet.dat: Peňaženka je poškodená + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = zachovať metaúdaje tx napr. vlastníka účtu a informácie o platobných príkazoch, 2 = zahodiť metaúdaje tx) + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Ako dôkladné je -checkblocks overenie blokov (0-4, predvolené: %u) + + + Log transaction priority and fee per kB when mining blocks (default: %u) + Zaznamenať prioritu transakcie a poplatok za kB pri ťažení blokov (predvolené: %u) + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Udržiavať kompletný transakčný index, využíva getrawtransaction rpc volanie (predvolené: %u) + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Počet sekúnd, počas ktorých nepripájať zle správajúce sa uzle (predvolené: %u) + + + Output debugging information (default: %u, supplying <category> is optional) + Výstupné ladiace informácie (predvolené: %u, dodanie <category> je voliteľné) + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Použiť samostatný SOCKS5 proxy server na dosiahnutie počítačov cez skryté služby Tor (predvolené: %s) + + + (default: %s) + (predvolené: %s) + + + Acceptable ciphers (default: %s) + Prijateľné šifry (predvolené: %s) + + + Always query for peer addresses via DNS lookup (default: %u) + Vždy sa dotazovať adresy partnerských uzlov cez vyhľadávanie DNS (predvolené: %u) + Error loading wallet.dat Chyba načítania wallet.dat + + How many blocks to check at startup (default: %u, 0 = all) + Koľko blokov overiť pri spustení (predvolené: %u, 0 = všetky) + + + Include IP addresses in debug output (default: %u) + Zahrnúť IP adresy v ladiacom výstupe (predvolené: %u) + Invalid -proxy address: '%s' Neplatná adresa proxy: '%s' + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + Počúvať JSON-RPC pripojenia na <port> (predvolené: %u alebo testovacia sieť: %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + Počúvať pripojenia na <port> (predvolené: %u alebo testovacia sieť: %u) + + + Maintain at most <n> connections to peers (default: %u) + Udržiavať najviac <n> spojení s inými počítačmi (predvolené: %u) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + Maximálna prijímajúca medzipamäť pre pripojenie, <n>*1000 bajtov (predvolené: %u) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + Maximálna odosielajúca medzipamäť pre pripojenie, <n>*1000 bajtov (predvolené: %u) + + + Prepend debug output with timestamp (default: %u) + Na začiatok pripojiť časovú známku k ladiacemu výstupu (predvolené: %u) + + + Relay and mine data carrier transactions (default: %u) + Prenášať a ťažiť transakcie nosných dát (predvolené: %u) + + + Relay non-P2SH multisig (default: %u) + Prenášať non-P2SH multi-podpis (predvolené: %u) + + + Server certificate file (default: %s) + Certifikačný súbor servera (predvolené: %s) + + + Server private key (default: %s) + Privátny kľúč servera (predvolené: %s) + + + Set key pool size to <n> (default: %u) + Nastaviť veľkosť kľúča fronty na <n> (predvolené: %u) + + + Set minimum block size in bytes (default: %u) + Nastaviť minimálnu veľkosť bloku v bajtoch (predvolené: %u) + + + Set the number of threads to service RPC calls (default: %d) + Nastaviť počet vlákien na obsluhu RPC volaní (predvolené: %d) + + + Specify configuration file (default: %s) + Zadať konfiguračný súbor (predvolené: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Zadajte časový limit pripojenia v milisekundách (minimum: 1, predvolené: %d) + + + Specify pid file (default: %s) + Zadať pid súbor (predvolené: %s) + + + Spend unconfirmed change when sending transactions (default: %u) + Minúť nepotvrdené zmenu pri posielaní transakcií (predvolené: %u) + + + Threshold for disconnecting misbehaving peers (default: %u) + Hranica pre odpájanie zle sa správajúcim partnerským uzlom (predvolené: %u) + Unknown network specified in -onlynet: '%s' Neznáma sieť upresnená v -onlynet: '%s' @@ -2783,10 +3415,6 @@ The network does not appear to fully agree! Some miners appear to be experiencin Invalid amount for -paytxfee=<amount>: '%s' Neplatná suma pre -paytxfee=<amount>: '%s' - - Invalid amount - Neplatná suma - Insufficient funds Nedostatok prostriedkov @@ -2819,13 +3447,9 @@ The network does not appear to fully agree! Some miners appear to be experiencin Done loading Dokončené načítavanie - - To use the %s option - Použiť %s možnosť. - Error Chyba - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_sl_SI.ts b/src/qt/locale/bitcoin_sl_SI.ts index 60fc4a93e5c2b..a02ff1b54b128 100644 --- a/src/qt/locale/bitcoin_sl_SI.ts +++ b/src/qt/locale/bitcoin_sl_SI.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Dvakrat klikni za urejanje naslovov ali oznak + Right-click to edit address or label + Desni klik za urejanje naslovov ali oznak Create a new address @@ -23,7 +23,7 @@ C&lose - &Zapri (close) + &Zapri &Copy Address @@ -35,7 +35,7 @@ Export the data in the current tab to a file - Izvozi podatke v trenutni zavih v datoteko + Izvozi podatke v trenutnem zavihku v datoteko &Export @@ -47,11 +47,11 @@ Choose the address to send coins to - Izberi naslov prejemnika kovancev + Izberite naslov, na katerega pošiljate plačilo Choose the address to receive coins with - Izberi naslov pošiljatelja kovancev + Izberite naslov za prejem plačila C&hoose @@ -59,19 +59,19 @@ Sending addresses - Naslovi za pošiljanje + Seznam naslovov pošiljanja ... Receiving addresses - Naslovi za prejemanje + Prejemni naslovi - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - To so tvoji Bitcoin naslovi za pošiljanje plačil. Vedno preveri znesek in prejemnikov naslov pred pošiljanjem kovancev. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Tukaj so vaši Hypercoin naslovi za pošiljanje plačil. Vedno preverite znesek in prejemnikov naslov pred pošiljanjem kovancev. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - To so tvoji Bitcoin naslovi za prejemanje plačil. Priporočljivo je uporabljati nov prejemni naslov za vsako izmed transakcij. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Tukaj so vaši Hypercoin naslovi za prejemanje plačil. Priporočljivo je uporabiti nov naslov za vsako novo plačilo. Copy &Label @@ -91,7 +91,7 @@ Exporting Failed - Neuspešen izvoz + Izvoz neuspešen @@ -113,7 +113,7 @@ AskPassphraseDialog Passphrase Dialog - Poziv gesla + Vnos gesla Enter passphrase @@ -149,7 +149,7 @@ Change passphrase - Zamenjaj geslo + Spremeni geslo Enter the old and new passphrase to the wallet. @@ -157,43 +157,51 @@ Confirm wallet encryption - Potrdi šifriranje denarnice + Potrditev šifriranja denarnice - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Opozorilo: V primeru izgube gesla kriptirane denarnice, boš <b>IZGUBIL VSE SVOJE BITCOINE</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Opozorilo: V primeru izgube gesla šifrirane denarnice, boste <b>IZGUBILI VSE SVOJE HYPERCOINE</b>! Are you sure you wish to encrypt your wallet? Ali ste prepričani, da želite šifrirati vašo denarnico? + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + POMEMBNO: Vse starejše varnostne kopije denarnice je potrebno zamenjati z novoizdelano, šifrirano, varnostno kopijo. Zaradi varnosti bodo stare varnostne kopije postale neuporabne takoj, ko začnete uporabljati novo, šifrirano denarnico. + Warning: The Caps Lock key is on! - Opozorilo: imate prižgan Cap Lock + Opozorilo: imate vklopljene velike črke (Caps Lock)! Wallet encrypted - Denarnica šifrirana + Denarnica je šifrirana + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + Vnesite novo geslo. Prosimo, da uporabite geslo sestavljeno iz <b>deset ali več</b> naključnih znakov, ali <b>osem ali več</b> besed. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin se bo zaprl, da bi dokončal proces šifriranja. Zapomnite si, da šifriranje vaše denarnice ne more popolnoma zaščititi pred krajami zlonamernih programov, ki bi lahko bili nameščeni na vašem računalniku. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Program se bo zaprl, da dokonča proces šifriranja. Zapomnite si, da šifriranje ne more popolnoma zaščititi vašo denarnico pred krajami in zlonamernimi programi, ki bi lahko bili nameščeni na vašem računalniku. Wallet encryption failed - Šifriranje denarnice spodletelo + Šifriranje denarnice je spodletelo Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Šifriranje denarnice spodletelo zaradi notranje napake. Vaša denarnica ni šifrirana. + Šifriranje denarnice je spodletelo zaradi notranje napake. Vaša denarnica ni bila šifrirana. The supplied passphrases do not match. - Vnešeno geslo se ne ujema + Vnešeno geslo se ne ujema. Wallet unlock failed - Odklep denarnice spodletel + Odklepanje denarnice je spodletelo The passphrase entered for the wallet decryption was incorrect. @@ -201,9 +209,13 @@ Wallet decryption failed - Dešifriranje denarnice spodletelo + Dešifriranje denarnice je spodletelo - + + Wallet passphrase was successfully changed. + Geslo za dostop do denarnice je bilo uspešno zamenjano. + + BitcoinGUI @@ -228,11 +240,11 @@ &Transactions - &Transakcije + &Plačila Browse transaction history - Brskaj po zgodovini transakcij + Brskaj po zgodovini plačil E&xit @@ -240,7 +252,7 @@ Quit application - Izhod iz aplikacije + Izhod iz programa About &Qt @@ -260,7 +272,7 @@ &Backup Wallet... - &Napravi varnostno kopijo denarnice ... + Shrani &varnostno kopijo denarnice ... &Change Passphrase... @@ -268,43 +280,43 @@ &Sending addresses... - &Pošiljanje naslovov... + Naslovi za po&šiljanje ... &Receiving addresses... - &Prejemanje naslovov... + Naslovi za &prejemanje... Open &URI... - Odpri &URI... + Odpri &URI ... - Bitcoin Core client - Odjemalec Bitcoin Core + Hypercoin Core client + Odjemalec Hypercoin Core Importing blocks from disk... - Uvažam bloke z diska... + Uvažanje blokov z diska ... Reindexing blocks on disk... - Poustvarjam kazalo blokov na disku... + Poustvarjam kazalo blokov na disku ... - Send coins to a Bitcoin address - Pošlji kovance na Bitcoin naslov + Send coins to a Hypercoin address + Pošlji kovance na Hypercoin naslov - Modify configuration options for Bitcoin - Spremeni konfiguracijo nastavitev za Bitcoin + Modify configuration options for Hypercoin + Urejanje nastavitev programa Backup wallet to another location - Napravi varnostno kopijo denarnice na drugo lokacijo + Shrani kopijo denarnice na drugo lokacijo Change the passphrase used for wallet encryption - Spremeni šifrirno geslo denarnice + Spremeni geslo za šifriranje denarnice &Debug window @@ -315,8 +327,8 @@ Odpri razhroščevalno in diagnostično konzolo - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -331,8 +343,8 @@ &Sprejmi - Show information about Bitcoin Core - Pokaži informacije o Bitcoin Core + Show information about Hypercoin Core + Pokaži informacije o programu &Show / Hide @@ -344,11 +356,15 @@ Encrypt the private keys that belong to your wallet - Šifiraj zasebne ključe v moji denarnici + Šifiraj zasebne ključe v denarnici + + + Sign messages with your Hypercoin addresses to prove you own them + Podpišite sporočilo za dokaz, da ste lastnik naslova - Sign messages with your Bitcoin addresses to prove you own them - Za dokaz, da ste lastniki sporočil, se podpišite z Bitcoin naslovom + Verify messages to ensure they were signed with specified Hypercoin addresses + Preverite, da je sporočilo bilo podpisano z danim naslovom &File @@ -367,12 +383,16 @@ Orodna vrstica zavihkov - Bitcoin Core - Jedro Bitcoina + Hypercoin Core + Hypercoin Core - &About Bitcoin Core - &O jedru Bitcoina + Request payments (generates QR codes and hypercoin: URIs) + Ustvarjanje zahtevka za plačilo (izdelava QR kode in hypercoin: URI naslova) + + + &About Hypercoin Core + &O programu Show the list of used sending addresses and labels @@ -383,16 +403,28 @@ Prikaži seznam uporabljenih sprejemnih naslovov in oznak - Open a bitcoin: URI or payment request - Odpri Bitcoin: URI ali zahteva o plačilu + Open a hypercoin: URI or payment request + Odpri Hypercoin: URI ali zahteva o plačilu + + + &Command-line options + Opcije &ukazne vrstice + + + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Prikaže seznam vseh opcij pri zagonu programa in kratek opis - %n active connection(s) to Bitcoin network - %n aktivna povezava v bitcoin omrežje%n aktivni povezavi v bitcoin omrežje%n aktivnih povezav v bitcoin omrežje%n aktivnih povezav v bitcoin omrežje + %n active connection(s) to Hypercoin network + %n aktivna povezava v hypercoin omrežje%n aktivni povezavi v hypercoin omrežje%n aktivnih povezav v hypercoin omrežje%n aktivnih povezav v hypercoin omrežje + + + No block source available... + Ni virov za prenos blokov ... %n hour(s) - %n ura%n uri%n ure%n ura + %n ura%n uri%n ure%n ur %n day(s) @@ -416,7 +448,7 @@ Transactions after this will not yet be visible. - Transkacija za tem ne bo bila še na voljo. + Transkacije za tem ne bodo še na voljo. Error @@ -436,7 +468,7 @@ Catching up... - Pridobivanje ... + Pridobivanje... Sent transaction @@ -453,7 +485,7 @@ Type: %3 Address: %4 Datum: %1 -Količina: %2 +Znesek: %2 Vrsta: %3 Naslov: %4 @@ -471,22 +503,26 @@ Naslov: %4 ClientModel Network Alert - Omrežno Opozorilo + Omrežno opozorilo CoinControlDialog + + Coin Selection + Izbira vhodnih kovancev + Quantity: Količina: Bytes: - Biti: + Bajtov: Amount: - Količina: + Znesek: Priority: @@ -500,17 +536,21 @@ Naslov: %4 Dust: Prah: + + After Fee: + Po proviziji: + Change: - Sprememba: + Vračilo: (un)select all - (ne)izberi vse + izberi vse/nič Tree mode - Drevo + Drevesni prikaz List mode @@ -518,7 +558,15 @@ Naslov: %4 Amount - Količina + Znesek + + + Received with label + Oznaka priliva + + + Received with address + Naslov priliva Date @@ -568,9 +616,13 @@ Naslov: %4 Copy fee Kopiraj provizijo + + Copy after fee + Kopiraj Po proviziji + Copy bytes - Kopiraj bite + Kopiraj bajte Copy priority @@ -582,7 +634,7 @@ Naslov: %4 Copy change - Kopiraj drobiž + Kopiraj vračilo highest @@ -602,7 +654,7 @@ Naslov: %4 medium - srednje + srednja low-medium @@ -626,7 +678,7 @@ Naslov: %4 none - Nič + nič Can vary +/- %1 satoshi(s) per input. @@ -642,11 +694,11 @@ Naslov: %4 This label turns red, if the transaction size is greater than 1000 bytes. - V primeru, da je velikost transakcije večja od 1000 bitov, se ta oznaka se obarva rdeče. + Oznaka postane rdeča, če je transakcije večja od 1000 bajtov. Can vary +/- 1 byte per input. - Se lahko razlikuje +/- 1 byte na vnos. + Se lahko razlikuje +/-1 bajt na vnos. Transactions with higher priority are more likely to get included into a block. @@ -654,7 +706,11 @@ Naslov: %4 This label turns red, if the priority is smaller than "medium". - Oznaka se obarva rdeče, kadar je prioriteta manjša od "srednje". + Oznaka postane rdeča, če je prioriteta transakcije manjša od "srednje". + + + This label turns red, if any recipient receives an amount smaller than %1. + Oznaka postane rdeča, če je znesek manjši od %1. (no label) @@ -662,11 +718,11 @@ Naslov: %4 change from %1 (%2) - drobiž od %1 (%2) + vračilo od %1 (%2) (change) - (drobiž) + (vračilo) @@ -681,7 +737,7 @@ Naslov: %4 The label associated with this address list entry - Oznaka je povezana s tem vnosom seznama naslovov + Oznaka povezana s tem vnosom seznama naslovov The address associated with this address list entry. This can only be modified for sending addresses. @@ -708,12 +764,16 @@ Naslov: %4 Uredi naslov za odlive - The entered address "%1" is not a valid Bitcoin address. - Vnešeni naslov "%1" ni veljaven Bitcoin naslov. + The entered address "%1" is already in the address book. + Vnešeni naslov "%1" je že v imeniku. + + + The entered address "%1" is not a valid Hypercoin address. + Vnešeni naslov "%1" ni veljaven Hypercoin naslov. Could not unlock wallet. - Ni bilo moč odkleniti denarnice. + Denarnice ni bilo mogoče odkleniti. New key generation failed. @@ -732,7 +792,7 @@ Naslov: %4 Directory already exists. Add %1 if you intend to create a new directory here. - Mapa že obstaja. Dodaj %1, če tu želiš ustvariti novo mapo. + Mapa že obstaja. Dodajte %1, če tu želite ustvariti novo mapo. Path already exists, and is not a directory. @@ -740,14 +800,14 @@ Naslov: %4 Cannot create data directory here. - Na tem mestu ne moreš ustvariti nove mape. + Na tem mestu ni mogoče ustvariti nove mape. HelpMessageDialog - Bitcoin Core - Jedro Bitcoina + Hypercoin Core + Hypercoin Core version @@ -758,8 +818,8 @@ Naslov: %4 (%1-bit) - About Bitcoin Core - O jedru Bitcoina + About Hypercoin Core + O programu Hypercoin Core Command-line options @@ -779,7 +839,7 @@ Naslov: %4 Set language, for example "de_DE" (default: system locale) - Nastavi jezik, npr. "sl_SI" (privzeto: jezikovna oznaka sistema) + Nastavi jezik, npr. "sl_SI" (privzeto: sistemsko nastavljeno) Start minimized @@ -805,16 +865,16 @@ Naslov: %4 Dobrodošli - Welcome to Bitcoin Core. - Dobrodošli v jedru Bitcoina + Welcome to Hypercoin Core. + Dobrodošli v Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Program poganjaš prvič. Izberi kje bo Bitcoin Core shranjeval svoje podatke. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + To je prvi zagonom programa, zato izberite kje bo program Hypercoin Core shranjeval podatke. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core bo prenesel in shranil kopijo Bitcoin verige blokov. V izbrano mapo bo shranjenih vsaj %1 GB podatkov, ta količina pa bo sčasoma še naraščala. Denarnica bo prav tako shranjena v to mapo. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Program bo prenesel in shranil kopijo hypercoin verige blokov. V izbrano mapo bo shranjenih vsaj %1 GB podatkov, ta količina bo sčasoma še naraščala. Denarnica bo prav tako shranjena v to mapo. Use the default data directory @@ -825,17 +885,21 @@ Naslov: %4 Uporabi to mapo za shranjevanje podatkov: - Bitcoin Core - Jedro Bitcoina + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. - Napaka: Ne morem ustvariti mape "%1". + Napaka: Ni mogoče ustvariti mape "%1". Error Napaka + + %n GB of free space available + %n GB prostega prostora na voljo%n GB prostega prostora na voljo%n GB prostega prostora na voljo%n GB prostega prostora na voljo + OpenURIDialog @@ -845,7 +909,7 @@ Naslov: %4 Open payment request from URI or file - Odpri zahtevo o plačilo od ORI ali datoteke + Odpiranje zahteve o plačilu iz URI naslova ali datoteke URI: @@ -853,11 +917,11 @@ Naslov: %4 Select payment request file - Izberi datoteko plačilnega zahtevka + Izbiranje datoteke plačilnega zahtevka Select payment request file to open - Izberi datoteko plačilnega zahtevka + Izbiranje datoteke plačilnega zahtevka @@ -871,20 +935,24 @@ Naslov: %4 &Glavno - Automatically start Bitcoin after logging in to the system. - Po prijavi v sistem samodejno zaženite Bitcoin. + Automatically start Hypercoin after logging in to the system. + Samodejen zagon programa po prijavi v sistem. - &Start Bitcoin on system login - &Zaženi Bitcoin ob prijavi v sistem + &Start Hypercoin on system login + &Zaženi program ob prijavi v sistem Size of &database cache - Velikost lokalne zbirke &podatkovne baze + Velikost &predpomnilnika podatkovne zbirke MB - megabite + MB + + + Number of script &verification threads + Število programskih &niti za preverjanje Accept connections from outside @@ -898,14 +966,34 @@ Naslov: %4 IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) IP naslov proxy strežnika (npr. IPv4: 127.0.0.1 ali IPv6: ::1) + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Naslovi URL tretjih oseb (npr. raziskovalec blokov), ki so navedeni v kontekstnem meniju seznama transakcij. Niz %s iz naslova URL je nadomeščen s hash vrednostjo transakcije. Več zaporednih naslovov URL je med seboj ločenih z znakom |. + + + Third party transaction URLs + URL nakazila tretjih oseb + + + Active command-line options that override above options: + Aktivne opcije iz ukazne vrstice, ki preglasijo zgornje opcije: + + + Reset all client options to default. + Ponastavi vse nastavitve programa na privzete vrednosti. + &Reset Options - &Opcije resetiranja + &Ponastavi nastavitve &Network &Omrežje + + (0 = auto, <0 = leave that many cores free) + (0 = samodejno, <0 = toliko CPU jeder naj ostane prosto) + W&allet &Denarnica @@ -916,19 +1004,35 @@ Naslov: %4 Enable coin &control features - Omogoči Coin & Control funkcijo + Omogoči 'Coin &Control' možnost + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Če onemogočite trošenje nepotrjenega vračila, potem vračilo, to je denar, ki se po plačilu vrne v vašo denarnico, ne morete uporabljati dokler to plačilo ni potrjeno najmanj enkrat. Ta opcija vpliva tudi na to, kako bo izračunano dobroimetje. - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Avtomatično odpri vrata Bitcoin odjemalca na usmerjevalniku. To deluje samo, če vaš usmerjevalnik podpira UPnP in je omogočen. + &Spend unconfirmed change + &Trošenje nepotrjenega vračila + + + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Program samodejno odpre ustrezna vrata na usmerjevalniku. To deluje samo, če vaš usmerjevalnik podpira in ima omogočen UPnP. Map port using &UPnP Naslavljanje vrat z uporabo &UPnP + + Connect to the Hypercoin network through a SOCKS5 proxy. + Povezava v omrežje s pomočjo SOCKS5 posrednika. + + + &Connect through SOCKS5 proxy (default proxy): + Povezava v omrežje s pomočjo SOCKS5 posrednika: + Proxy &IP: - IP posredniškega strežnika: + &IP posredniškega strežnika: &Port: @@ -936,7 +1040,7 @@ Naslov: %4 Port of the proxy (e.g. 9050) - Vrata strežnika (npr.: 9050) + Vrata posredniškega strežnika (npr.: 9050) &Window @@ -952,11 +1056,11 @@ Naslov: %4 Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Minimiziraj namesto izhoda iz programa, ko je okno zaprto. Ko je ta opcija omogočena se bo aplikacija zaprla z izbiro opcije Zapri iz menija. + Minimiziraj namesto izhoda iz programa, ko je okno zaprto. Ko je ta opcija omogočena se bo aplikacija zaprla z izbiro ukaza Izhod iz menija. M&inimize on close - &Minimiziraj na ukaz zapri + M&inimiziraj na ukaz zapri &Display @@ -964,15 +1068,23 @@ Naslov: %4 User Interface &language: - Vmesnik uporabnika &jezik: + &Jezik uporabniškega vmesnika: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Tukaj je mogoče nastaviti uporabniški vmesnik za jezike. Ta nastavitev bo prikazana šele, ko boste znova zagnali Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Tukaj je mogoče nastaviti jezik uporabniškega vmesnika. Ta nastavitev bo prikazana šele, ko boste znova zagnali program. &Unit to show amounts in: - & + &Enota za prikaz zneskov: + + + Choose the default subdivision unit to show in the interface and when sending coins. + Izberite privzeto mersko enoto za prikaz v uporabniškem vmesniku in pri pošiljanju novcev. + + + Whether to show coin control features or not. + Omogoči 'Coin &Control' možnost &OK @@ -980,7 +1092,7 @@ Naslov: %4 &Cancel - &Prekini + &Prekliči default @@ -990,7 +1102,23 @@ Naslov: %4 none Nič - + + Confirm options reset + Potrditev ponastavitve + + + Client restart required to activate changes. + Za uveljavitev sprememb je potreben ponoven zagon programa. + + + This change would require a client restart. + Ta sprememba zahteva ponoven zagon programa. + + + The supplied proxy address is invalid. + Vnešeni naslov posredniškega strežnika ni veljaven. + + OverviewPage @@ -998,24 +1126,40 @@ Naslov: %4 Oblika - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Prikazanim podatkom je lahko potekel rok. Vaša denarnica bo po vzpostavitvi povezave samodejno sinhronizirana z Bitcoin omrežjem, ampak ta proces še ni bil zaključen. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Prikazani podatki so lahko zastareli. Vaša denarnica se po vzpostavitvi povezave z omrežjem samodejno sinhronizira, ampak ta proces še ni zaključen. Watch-only: - Samo gledanje + Samo za gledanje: Available: - Razpoložljivost: + Razpoložljivo: Your current spendable balance Vaše trenutno razpoložljivo stanje + + Pending: + Nepotrjeno: + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Skupno število potrjenih transakcij, ki sicer niso bile prištete k razpoložljivem stanju + Skupni znesek še nepotrjenih transakcij. Ta znesek ni prištet k razpoložljivem stanju + + + Immature: + Nedozorelo: + + + Mined balance that has not yet matured + Narudarjeni znesek še ni dozorel. + + + Balances + Skupno stanje Total: @@ -1025,9 +1169,33 @@ Naslov: %4 Your current total balance Vaše trenutno skupno stanje + + Your current balance in watch-only addresses + Skupni znesek opazovanih naslovov + + + Spendable: + Razpoložljivo: + + + Recent transactions + Nedavna plačila + + + Unconfirmed transactions to watch-only addresses + Nepotrjene transakcije na naslovih za vpogled + + + Mined balance in watch-only addresses that has not yet matured + Narudarjeni znesek iz opazovanega naslova še ni dozorel. + + + Current total balance in watch-only addresses + Skupni znesek naslovov za vpogled + out of sync - iz sinhronizacije + ni sinhronizirano @@ -1038,19 +1206,71 @@ Naslov: %4 Invalid payment address %1 - Neveljaven naslov plačila %1 + Neveljaven naslov za plačilo %1 + + + Payment request rejected + Zahtevek za plačilo je bil zavrnjen. + + + Payment request network doesn't match client network. + Zahtevek za plačilo in vaš odjemalec se nahajata na različnih omrežjih. + + + Payment request is not initialized. + Zahtevek za plačilo ni inicializiran. Payment request error Napaka pri zahtevi plačila + + Cannot start hypercoin: click-to-pay handler + Ni mogoče zagnati upravitelja plačil na klik tipa hypercoin:. + + + Payment request fetch URL is invalid: %1 + Naslov URL za pridobitev zahtevka za plačilo ni veljaven: %1 + + + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + Naslov URL je neprepoznaven! Razlog je lahko neveljaven naslov Hypercoin ali napačni parametri v URI. + + + Payment request file handling + Upravljanje z datoteko z zahtevkom za plačilo + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Datoteke z zahtevkom za plačilo ni mogoče prebrati! Možno je, da datoteka ni veljavna. + + + Unverified payment requests to custom payment scripts are unsupported. + Nepreverjeni zahtevki za plačilo, namenjeni plačilni skripti po meri, niso podprti. + + + Refund from %1 + Povračilo od %1 + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Zahtevek za plačilo %1 je prevelik (%2 bytov, dovoljenih je %3 bytov.) + + + Payment request DoS protection + Zaščita pred DoS zahtevka za plačilo + Error communicating with %1: %2 Napaka pri povezavi z %1: %2 + + Payment request cannot be parsed! + Zahtevek za plačilo je neprepoznaven! + Bad response from server %1 - Slab odziv strežnika %1 + Napačen odziv strežnika %1 Payment acknowledged @@ -1063,6 +1283,10 @@ Naslov: %4 PeerTableModel + + User Agent + Ime agenta + Ping Time Odzivni čas @@ -1074,6 +1298,14 @@ Naslov: %4 Amount Količina + + Enter a Hypercoin address (e.g. %1) + Vnesite naslov Hypercoin (npr. %1): + + + %1 d + %1 d + %1 h %1 ur @@ -1082,11 +1314,23 @@ Naslov: %4 %1 m %1 minut + + %1 s + %1 s + + + None + Nič + N/A Neznano - + + %1 ms + %1 ms + + QRImageWidget @@ -1124,6 +1368,14 @@ Naslov: %4 &Information &Informacije + + Debug window + Razhroščevalno okno + + + General + Splošno + Using OpenSSL version OpenSSL različica v rabi @@ -1140,6 +1392,10 @@ Naslov: %4 Network Omrežje + + Name + Ime + Number of connections Število povezav @@ -1160,14 +1416,62 @@ Naslov: %4 Sent Poslano + + &Peers + &Vrstniki + + + Select a peer to view detailed information. + Izberite vrstnika, katerega podrobnejše informacije si želite ogledati. + + + Direction + Smer + Version Različica + + User Agent + Ime agenta + Services Storitve + + Starting Height + Začetna višina + + + Sync Height + Višina sinhronizacije + + + Ban Score + Kazenske točke + + + Connection Time + Trajanje povezave + + + Last Send + Poslano pred + + + Last Receive + Prejeto pred + + + Bytes Sent + Bajtov poslano + + + Bytes Received + Bajtov prejeto + Ping Time Odzivni čas @@ -1190,12 +1494,20 @@ Naslov: %4 &Clear - &Pošisti + &Počisti Totals Vsote + + In: + Not: + + + Out: + Ven: + Build date Datum izgradnje @@ -1209,8 +1521,8 @@ Naslov: %4 Počisti konzolo - Welcome to the Bitcoin RPC console. - Dobrodošli na Bitcoin RPC konzoli. + Welcome to the Hypercoin RPC console. + Dobrodošli na Hypercoin RPC konzoli. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1222,24 +1534,36 @@ Naslov: %4 %1 B - %1 bitov + %1 B %1 KB - %1 kilobitov + %1 KB %1 MB - %1 megabitov + %1 MB %1 GB - %1 gigabitov + %1 GB + + + via %1 + preko %1 never nikoli + + Inbound + Prihajajoča + + + Outbound + Odhajajoča + Unknown Neznano @@ -1263,18 +1587,50 @@ Naslov: %4 &Message: &Sporočilo: + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Ponovno uporabite enega od že uporabljenih naslovov za prejemanje. Večkratna uporaba istih naslovov za prejemanje negativno vpliva na varnost in zasebnost. To opcijo uporabite samo v primeru, da ponovno ustvarjate zahtevek za plačilo. + + + R&euse an existing receiving address (not recommended) + P&onovno uporabite obstoječ naslov za prejemanje. (Ni priporočeno.) + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Neobvezno sporočilo kot priponka zahtevku za plačilo, ki bo prikazano, ko bo zahtevek odprt. Opomba: Opravljeno plačilo.prek omrežja Hypercoin tega sporočila ne bo vsebovalo. + An optional label to associate with the new receiving address. - Pomožna oznaka je povezana z novim sprejemnim naslovom. + Oznaka novega sprejemnega naslova. + + + Use this form to request payments. All fields are <b>optional</b>. + S tem obrazcem ustvarite nov zahtevek za plačilo. Vsa polja so <b>neobvezna</b>. + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Zahtevani znesek. Pustite prazno ali nastavite na 0, če ne zahtevate določenega zneska. + + + Clear all fields of the form. + Počisti vsa polja. Clear Počisti + + Requested payments history + Zgodovina zahtevkov za plačilo + &Request payment &Zahtevaj plačilo + + Show the selected request (does the same as double clicking an entry) + Prikaz izbranega zahtevka. (Ista funkcija kot dvojni klik na zapis.) + Show Pokaži @@ -1304,7 +1660,7 @@ Naslov: %4 ReceiveRequestDialog QR Code - QR Koda + QR koda Copy &URI @@ -1312,12 +1668,16 @@ Naslov: %4 Copy &Address - Kopiraj &Naslov + Kopiraj &naslov &Save Image... &Shrani sliko.. + + Request payment to %1 + Zahtevek za plačilo z oznako: %1 + Payment information Informacija o plačilu @@ -1344,11 +1704,11 @@ Naslov: %4 Resulting URI too long, try to reduce the text for label / message. - URI predolg, skušajte zmanjšati besedilo oznake/sporočila. + URI je predolg, skušajte zmanjšati besedilo oznake/sporočila. Error encoding URI into QR Code. - Napaka pri kodiranju URIja v QR kodo. + Napaka pri kodiranju URI naslova v QR kodo. @@ -1386,7 +1746,11 @@ Naslov: %4 SendCoinsDialog Send Coins - Pošlji kovance + Pošlji plačilo + + + Coin Control Features + Coin Control možnosti Inputs... @@ -1406,7 +1770,7 @@ Naslov: %4 Bytes: - Biti: + Bajti: Amount: @@ -1420,9 +1784,85 @@ Naslov: %4 Fee: Provizija: + + After Fee: + Po proviziji: + Change: - Sprememba: + Drobiž: + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Če to vključite, nato pa vnesete neveljaven naslov, ali pa pustite polje prazno, bo vrnjen drobiž poslan na novo ustvarjen naslov. + + + Custom change address + Naslov za vračilo drobiža po meri + + + Transaction Fee: + Provizija: + + + Choose... + Izberi... + + + collapse fee-settings + Skrije nastavitve provizije + + + per kilobyte + za KB + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Če je nastavitev zneska provizije po meri enaka 1000 satoshijev, transakcija pa je velika samo 250 bajtov, je obračunani znesek provizije pri nastavitvi "za KB" samo 250 satoshijev, medtem ko je pri nastavitvi "skupno vsaj" znesek 1000 satoshijev. Za transakcije, večje od kilobajta se končni znesek pri obeh nastavitvah obračuna na kilobajt. + + + total at least + skupno vsaj + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Dokler bo v blokih še dovolj prostora za vse nastajajoče transakcije, je dovolj tudi plačilo samo minimalne provizije. Ko pa se bo količina vseh transakcij povečala do meja zmogljivosti omrežja, se lahko zgodi, da vaša transakcija brez večje provizije nikoli ne bo potrjena. + + + (read the tooltip) + (oglejte si namig) + + + Recommended: + Priporočena: + + + Custom: + Po meri: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Samodejni obračun provizije še ni pripravljen. Po navadi izračun traja nekaj blokov...) + + + Confirmation time: + Čas do potrditve: + + + normal + navadno + + + fast + hitro + + + Send as zero-fee transaction if possible + Pošlji brez provizije, če je mogoče + + + (confirmation may take longer) + (čas do potrditve je lahko daljši) Send to multiple recipients at once @@ -1432,6 +1872,10 @@ Naslov: %4 Add &Recipient Dodaj &prejemnika + + Clear all fields of the form. + Počisti vsa polja. + Dust: Prah: @@ -1456,6 +1900,10 @@ Naslov: %4 Confirm send coins Potrdi odliv kovancev + + %1 to %2 + %1 do %2 + Copy quantity Kopiraj količino @@ -1468,9 +1916,13 @@ Naslov: %4 Copy fee Kopiraj provizijo + + Copy after fee + Kopiraj Po proviziji + Copy bytes - Kopiraj bite + Kopiraj bajte Copy priority @@ -1486,24 +1938,40 @@ Naslov: %4 The amount to pay must be larger than 0. - Količina za plačilo mora biti večja od 0. + Znesek za plačilo mora biti večji od 0. The amount exceeds your balance. - Količina presega vaše dobroimetje + Znesek presega vaše dobroimetje. Duplicate address found, can only send to each address once per send operation. - Najdena kopija naslova, možnost pošiljanja na vsakega izmed naslov le enkrat ob pošiljanju. + Najdena kopija naslova. V posamezni transakciji se naslovi ne morejo ponoviti. + + + Transaction creation failed! + Ustvarjanje plačila je spodletelo! + + + The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Transakcija je bila zavrnjena! To se lahko zgodi, če so bili kateri od kovancev iz denarnice že porabljeni, kot v primeru, da ste kje uporabili kopijo datoteke wallet.dat in kovance tam že porabili, lokalno pa ti še niso bili označeni kot porabljeni. + + + Pay only the minimum fee of %1 + Plačilo samo minimalne provizije v znesku %1 - Warning: Invalid Bitcoin address - Opozorilo: Neveljaven Bitcoin naslov + Warning: Invalid Hypercoin address + Opozorilo: Neveljaven Hypercoin naslov (no label) (ni oznake) + + Warning: Unknown change address + Opozorilo: Neznan naslov za vračilo drobiža + Copy dust Kopiraj prah @@ -1529,7 +1997,7 @@ Naslov: %4 Enter a label for this address to add it to your address book - Vnesite oznako za ta naslov, ki bo shranjena v imenik + Vnesite oznako za naslov &Label: @@ -1537,7 +2005,15 @@ Naslov: %4 Choose previously used address - Izberi zadnje uporabljen naslov + Izberi že uporabljen naslov + + + This is a normal payment. + Plačilo je navadne vrste. + + + The Hypercoin address to send the payment to + Naslov Hypercoin, na katerega bo plačilo poslano Alt+A @@ -1551,6 +2027,10 @@ Naslov: %4 Alt+P Alt+P + + Remove this entry + Izbriše izbrani zapis + Message: Sporočilo: @@ -1559,9 +2039,25 @@ Naslov: %4 Enter a label for this address to add it to the list of used addresses Vnesite oznako za ta naslov, ki bo shranjena v seznam uporabljenih naslovov - + + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Sporočilo, ki ste ga pripeli na URI hypercoin: in bo shranjeno skupaj s podatki o transakciji. Opomba: Sporočilo ne bo poslano preko omrežja Hypercoin. + + + Pay To: + Prejemnik: + + + Memo: + Opomba: + + ShutdownWindow + + Hypercoin Core is shutting down... + Hypercoin Core se ustavlja... + Do not shut down the computer until this window disappears. Ne zaustavite računalnika dokler to okno ne izgine. @@ -1571,15 +2067,19 @@ Naslov: %4 SignVerifyMessageDialog Signatures - Sign / Verify a Message - Podpisi - Podpiši/preveri sporočilo + Podpisi - podpiši / preveri sporočilo &Sign Message &Podpiši sporočilo + + The Hypercoin address to sign the message with + Naslov Hypercoin, s katerim podpisujete sporočilo + Choose previously used address - Izberi zadnje uporabljen naslov + Izberi že uporabljen naslov Alt+A @@ -1593,14 +2093,30 @@ Naslov: %4 Alt+P Alt+P + + Enter the message you want to sign here + Vnesite sporočilo, ki ga želite podpisati + Signature Podpis + + Copy the current signature to the system clipboard + Kopiranje trenutnega podpisa na sistemsko odložišče. + + + Sign the message to prove you own this Hypercoin address + Podpišite sporočilo, da dokažete lastništvo nad zgornjim naslovom. + Sign &Message Podpiši &sporočilo + + Reset all sign message fields + Ponastavitev vseh polj za vnos + Clear &All Počisti &vse @@ -1609,13 +2125,25 @@ Naslov: %4 &Verify Message &Preveri sporočilo + + The Hypercoin address the message was signed with + Naslov Hypercoin, s katerim je bilo sporočilo podpisano + + + Verify the message to ensure it was signed with the specified Hypercoin address + Preverite, ali je bilo sporočilo v resnici podpisano z navedenim naslovom Hypercoin. + Verify &Message Preveri &Sporočilo + + Reset all verify message fields + Ponastavitev vseh polj za vnos + Click "Sign Message" to generate signature - Kliknite "Podpiši sporočilo" za ustvaritev podpisa + Kliknite "Podpiši sporočilo" da ustvarite podpis The entered address is invalid. @@ -1623,11 +2151,15 @@ Naslov: %4 Please check the address and try again. - Prosimo preverite naslov in poizkusite znova. + Prosim preverite naslov in poizkusite znova. + + + The entered address does not refer to a key. + Vnešeni naslov se ne nanaša na noben ključ. Wallet unlock was cancelled. - Odklepanje denarnice je bilo prekinjeno. + Odklepanje denarnice je bilo preklicano. Private key for the entered address is not available. @@ -1649,6 +2181,10 @@ Naslov: %4 Please check the signature and try again. Prosimo preverite podpis in poizkusite znova. + + The signature did not match the message digest. + Podpis ne ustreza rezultatu (digest) preverjanja. + Message verification failed. Pregledovanje sporočila spodletelo. @@ -1661,8 +2197,12 @@ Naslov: %4 SplashScreen - Bitcoin Core - Jedro Bitcoina + Hypercoin Core + Hypercoin Core + + + The Bitcoin Core developers + Bitcoin Core razvijalci [testnet] @@ -1671,12 +2211,24 @@ Naslov: %4 TrafficGraphWidget - + + KB/s + KB/s + + TransactionDesc Open until %1 - Odpri enoto %1 + Odprto do %1 + + + conflicted + v konfliktu + + + %1/offline + %1/brez povezave %1/unconfirmed @@ -1714,17 +2266,33 @@ Naslov: %4 own address lasten naslov + + watch-only + opazovano + label oznaka + + Credit + V dobro + not accepted ni bilo sprejeto Debit - Dolg + Debit + + + Total debit + Skupaj v breme + + + Total credit + Skupaj v dobro Transaction fee @@ -1732,7 +2300,7 @@ Naslov: %4 Net amount - Neto količina + Neto znesek Message @@ -1750,6 +2318,10 @@ Naslov: %4 Merchant Trgovec + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Ustvarjeni kovanci morajo zoreti %1 blokov, preden jih lahko porabite. Ko ste ta blok zgenerirali, je bil posredovan v omrežje, da bo dodan v verigo. Če se bloku ni uspelo uvrstiti v verigo, se bo njegovo stanje spremenilo v "ni bilo sprejeto" in kovancev ne bo mogoče porabiti. To se včasih zgodi, če kak drug rudar v roku nekaj sekund hkrati z vami odkrije drug blok. + Debug information Razhroščevalna informacija @@ -1764,7 +2336,7 @@ Naslov: %4 Amount - Količina + Znesek true @@ -1776,7 +2348,7 @@ Naslov: %4 , has not been successfully broadcast yet - , še ni bila uspešno raznešena + , še ni bila uspešno rasposlana unknown @@ -1808,9 +2380,13 @@ Naslov: %4 Address Naslov + + Immature (%1 confirmations, will be available after %2) + Nedozorelo (št. potrditev: %1, na voljo šele po: %2) + Open until %1 - Odpri enoto %1 + Odprto do %1 Confirmed (%1 confirmations) @@ -1824,10 +2400,22 @@ Naslov: %4 Generated but not accepted Generirano, toda ne sprejeto + + Offline + Brez povezave + Unconfirmed Nepotrjeno + + Confirming (%1 of %2 recommended confirmations) + V potrjevanju (št. potrditev: %1 od priporočenih %2) + + + Conflicted + V konfliktu + Received with Prejeto z @@ -1842,11 +2430,15 @@ Naslov: %4 Payment to yourself - Izplačilo sebi + Plačilo sebi Mined - Minirano + Narudarjeno + + + watch-only + opazovano (n/a) @@ -1864,13 +2456,17 @@ Naslov: %4 Type of transaction. Vrsta transakcije. + + Whether or not a watch-only address is involved in this transaction. + Ali je v transakciji udeležen kateri od opazovanih naslovov. + Destination address of transaction. Naslov prejemnika transakcije. Amount removed from or added to balance. - Količina odlita ali prilita dobroimetju. + Znesek odlit ali prilit dobroimetju. @@ -1901,7 +2497,7 @@ Naslov: %4 Range... - Območje ... + Območje... Received with @@ -1917,7 +2513,7 @@ Naslov: %4 Mined - Minirano + Narudarjeno Other @@ -1941,7 +2537,7 @@ Naslov: %4 Copy amount - Kopiraj količino + Kopiraj znesek Copy transaction ID @@ -1955,10 +2551,22 @@ Naslov: %4 Show transaction details Prikaži podrobnosti transakcije + + Export Transaction History + Izvoz zgodovine transakcij + + + Watch-only + Opazovano + Exporting Failed Neuspešen izvoz + + There was an error trying to save the transaction history to %1. + Prišlo je do napake med shranjevanjem zgodovine transakcij v datoteko %1. + Exporting Successful Uspešen izvoz @@ -2006,15 +2614,23 @@ Naslov: %4 UnitDisplayStatusBarControl - + + Unit to show amounts in. Click to select another unit. + Merska enota za prikaz zneskov. Kliknite za izbiro druge enote. + + WalletFrame - + + No wallet has been loaded. + Denarnica ni bila naložena. + + WalletModel Send Coins - Pošlji kovance + Pošlji @@ -2025,7 +2641,7 @@ Naslov: %4 Export the data in the current tab to a file - Izvozi podatke v trenutni zavih v datoteko + Izvozi podatke v trenutnem zavihku v datoteko Backup Wallet @@ -2033,7 +2649,7 @@ Naslov: %4 Wallet Data (*.dat) - Podatki denarnice (*.dat) + Denarnica (*.dat) Backup Failed @@ -2041,11 +2657,11 @@ Naslov: %4 There was an error trying to save the wallet data to %1. - Prišlo je do napake pri shranjevanju podatkov denarnice na %1. + Prišlo je do napake pri shranjevanju denarnice na %1. The wallet data was successfully saved to %1. - Podatki denarnice so bili uspešno shranjena na %1. + Denarnica uspešno shranjena na %1. Backup Successful @@ -2083,24 +2699,56 @@ Naslov: %4 Uporabi testno omrežje - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Napaka: Transakcija ni bila sprejeta! To se je morebiti zgodilo, ker so nekateri kovanci v vaši denarnici bili že porabljeni, na primer če ste uporabili kopijo wallet.dat in so tako kovanci bili porabljeni v kopiji, ostali pa označeni kot neporabljeni. + Accept connections from outside (default: 1 if no -proxy or -connect) + Sprejemaj zunanje povezave (privzeto: 1, razen v primeru opcij -proxy ali -connect) - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Napaka: Ta transakcija potrebuje povizijo, ki je najmanj %s zaradi svoje količine, kompliciranosti, ali zaradi uporabe prejetih sredstev. + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Poveži se in poslušaj na danem naslovu. Pri protokolu IPv6 uporabite zapis [gostitelj]:vrata. + + + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Distribuirano v okviru programske licence MIT. Podrobnosti so navedene v priloženi datoteki COPYING ali na naslovu <http://www.opensource.org/licenses/mit-license.php>. Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Izvedi ukaz, ko bo transakcija denarnice se spremenila (V cmd je bil TxID zamenjan za %s) + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Nastavi število niti za preverjanje skript (%u do %d, 0 = samodejno, <0 pusti toliko procesorskih jeder prostih, privzeto: %d) + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - To je pred izdana poizkusna verzija - uporaba na lastno odgovornost - ne uporabljajte je za rudarstvo ali trgovske aplikacije + To je preizkusna verzija - uporaba na lastno odgovornost - ne uporabljajte je za rudarjenje hypercoinov ali za trgovske aplikacije + + + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Na tem računalniku se ni bilo mogoče povezati na %s. Odjemalec Hypercoin Core je verjetno že zagnan. + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Opozorilo: Vrednost opcije -paytxfee je zelo visoka. To je provizija, ki jo boste plačali, če izvedete plačilo. + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + Opozorilo: Trenutno na omrežju ni videti konsenza! Videti je, kot da bi imeli nekateri rudarji težave. + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + Opozorilo: Trenutno se s soležniki ne strinjam v popolnosti! Mogoče bi morali vi ali drugi udeleženci posodobiti odjemalce. Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Opozorilo: napaka pri branju wallet.dat! Vsi ključi so bili pravilno prebrani, podatki o transakciji ali imenik vnešenih naslovov so morda izgubljeni ali nepravilni. + Opozorilo: napaka pri branju datoteke wallet.dat! Vsi ključi so bili pravilno prebrani, ampak podatki o transakcijah ali imenik vnešenih naslovov so morda izgubljeni ali nepravilni. + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + Opozorilo: Datoteka wallet.dat je bila okvarjena, podatki pa so bili kljub temu rešeni! Originalna datoteka je bila shranjena kot wallet.[čas.oznaka].bak v mapo %s. Če sta skupno stanje ali seznam transakcij napačna, morate datoteko restavrirati iz varnostne kopije. + + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + Sprejemaj povezave samo iz naslovov, ki ustrezajo navedeni omrežni maski ali naslovu. Opcijo lahko navedete večkrat. (default: 1) @@ -2110,46 +2758,222 @@ Naslov: %4 <category> can be: <category> je lahko: + + Attempt to recover private keys from a corrupt wallet.dat + Skušaj obnoviti zasebne ključe iz okvarjene datoteke wallet.dat + Block creation options: Možnosti ustvarjanja blokov: + + Connect only to the specified node(s) + Poveži se samo z enim ali več navedenimi vozlišči + + + Connection options: + Izbire povezave: + + + Corrupted block database detected + Podatkovna baza blokov je okvarjena + + + Debugging/Testing options: + Možnosti razhroščevanja in testiranja: + + + Do not load the wallet and disable wallet RPC calls + Ne naloži denarnice in onemogoči s tem povezane klice RPC + + + Do you want to rebuild the block database now? + Želite zdaj obnoviti podatkovno bazo blokov? + + + Error initializing block database + Napaka pri inicializaciji podatkovne baze blokov + + + Error initializing wallet database environment %s! + Napaka pri inicializaciji okolja podatkovne baze denarnice %s! + + + Error loading block database + Napaka pri nalaganju podatkovne baze blokov + + + Error opening block database + Napaka pri odpiranju podatkovne baze blokov + Error: Disk space is low! Opozorilo: Premalo prostora na disku! - Error: Wallet locked, unable to create transaction! - Opozorilo: Denarnica je zaklenjena, ni mogoče opraviti transkacijo! + Failed to listen on any port. Use -listen=0 if you want this. + Ni mogoče poslušati na nobenih vratih. Če to zares želite, uporabite opcijo -listen=0. + + + If <category> is not supplied, output all debugging information. + Če element <category> ni naveden, izpisuje vse informacije za razhroščevanje. Importing... Uvažam... + + Incorrect or no genesis block found. Wrong datadir for network? + Izvornega bloka ni mogoče najti ali pa je neveljaven. Preverite, če ste izbrali pravo podatkovno mapo za izbrano omrežje. + + + Invalid -onion address: '%s' + Neveljaven naslov tipa -onion: '%s' + + + Not enough file descriptors available. + Na voljo ni dovolj deskriptorjev datotek. + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Povezuj se samo z vozlišči na omrežju tipa <net> (IPv4, IPv6 ali onion) + + + Set database cache size in megabytes (%d to %d, default: %d) + Nastavitev velikosti predpomnilnik podatkovne baze v MiB (%d do %d, privzeto: %d) + + + Set maximum block size in bytes (default: %d) + Nastavitev maksimalne velikosti bloka v bajtih (privzeto: %d) + + + Specify wallet file (within data directory) + Ime datoteke z denarnico (znotraj podatkovne mape) + + + Verifying blocks... + Preverjam bloke... + + + Verifying wallet... + Preverjam denarnico... + + + Wallet %s resides outside data directory %s + Datoteka %s z denarnico se nahaja izven podatkovne mape %s + + + Wallet options: + Izbire denarnice: + + + You need to rebuild the database using -reindex to change -txindex + Ob spremembi vrednosti opcije -txindex boste morali obnoviti bazo podatkov z uporabo opcije -reindex + + + Imports blocks from external blk000??.dat file + Uvozi bloke iz zunanje datoteke blk000??.dat + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Dovoli povezave na JSON-RPC iz navedenih virov. Veljavne oblike vrednosti parametra <ip> so: enojen naslov IP (npr.: 1.2.3.4), kombinacija omrežje/netmask (npr.: 1.2.3.4/255.255.255.0), ali pa kombinacija omrežje/CIDR (1.2.3.4/24). To opcijo lahko navedete večkrat. + + + An error occurred while setting up the RPC address %s port %u for listening: %s + Prišlo je do napake med zagonom poslušalca RPC na naslovu %s in vratih %u: %s + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Veži dani naslov in sprejemaj povezave samo od navedenih soležnikov. Za protokol IPv6 uporabite zapis {gostitelj];vrata. + + + Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) + Veži dani naslov in sprejemaj povezave na JSON-RPC. Za naslove protokola IPv6 uporabite zapis [gostitelj]:vrata. To opcijo lahko navedete večkrat. (privzeto: veži vse omrežne vmesnike) + + + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Ne morem zakleniti podatkovne mape %s. Hypercoin Core je verjetno že zagnan. + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Ustvarjaj nove datoteke s privzetimi sistemskimi dovoljenji, namesto z umask 077. (To pride v poštev samo, kadar imate izklopljeno funkcijo denarnice.) + + + Error: Listening for incoming connections failed (listen returned error %s) + Napaka: Ni mogoče sprejemati dohodnih povezav (vrnjena napaka: %s) + + + Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + Napaka: Navedli ste nepodprto vrednost opcije -socks. Različice protokola SOCKS ni več mogoče navesti, podprti so samo posredniški strežniki tipa SOCKS5. + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Ko bo prejeto ustrezno opozorilo, ali ko bo opažena zelo dolga razvejitev, izvedi navedeni ukazni niz. (Niz %s bo nadomeščen z vsebino sporočila.) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Provizije (v HOT/KiB), ki so manjše od te vrednosti, se pri posredovanju smatrajo za nične (privzeto: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Če opcija -paytxfee ni nastavljena, nastavi znesek provizije tako visoko, da bodo transakcije potrjene v povprečno n blokih. (privzeto: %u) + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Opozorilo: Preverite, če sta datum in ura na vašem računalniku točna! Hypercoin Core ne bo dobro deloval, če je nastavljeni čas nepravilen. + + + Cannot resolve -whitebind address: '%s' + Naslova "%s", podanega pri opciji -whitebind ni mogoče razrešiti. + + + Connect through SOCKS5 proxy + Poveži se preko posredniškega strežnika SOCKS5 + + + Copyright (C) 2009-%i The Bitcoin Core Developers + Copyright (C) 2009-%i The Bitcoin Core Developers + Information Informacije + + Need to specify a port with -whitebind: '%s' + Pri opciji -whitebind morate navesti vrata: '%s' + Send trace/debug info to console instead of debug.log file - Pošlji sledilne/razhroščevalne informacije v konzolo namesto jih shraniti v debug.log datoteko + Pošlji sledilne/razhroščevalne informacije v konzolo namesto shranjevanja v debug.log datoteko + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Ob zagonu odjemalca skrajšaj datoteko debug.log (privzeto: 1, če ni vklopljena opcija -debug) Signing transaction failed Podpisovanje transakcije spodletelo + + This is experimental software. + Program je eksperimentalne narave. + Transaction amount too small - Količina transakcije je pramajhna + Znesek je premajhen Transaction amounts must be positive - Količina transkacije mora biti pozitivna + Znesek mora biti pozitiven Transaction too large Transkacija je prevelika + + Unable to bind to %s on this computer (bind returned error %s) + Na tem računalniku se ni bilo mogoče povezati na %s (vrnjena napaka: %s) + Username for JSON-RPC connections Uporabniško ime za JSON-RPC povezave @@ -2162,6 +2986,14 @@ Naslov: %4 Warning: This version is obsolete, upgrade required! Opozorilo: ta različica je zastarela, potrebna je nadgradnja! + + Zapping all transactions from wallet... + Brišem vse transakcije iz denarnice ... + + + on startup + ob zagonu + wallet.dat corrupt, salvage failed wallet.dat poškodovana, neuspešna obnova @@ -2196,12 +3028,24 @@ Naslov: %4 Loading addresses... - Nalaganje naslovov ... + Nalaganje naslovov... Error loading wallet.dat: Wallet corrupted Napaka pri nalaganju wallet.dat: denarnica pokvarjena + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Za dostop do soležnikov preko skritih storitev Tor uporabi drug posredniški strežnik SOCKS5 (privzeto: %s) + + + (default: %s) + (privzeto: %s) + + + Acceptable ciphers (default: %s) + Sprejemljivi tipi šifriranja (privzeto: %s) + Error loading wallet.dat Napaka pri nalaganju wallet.dat @@ -2210,6 +3054,30 @@ Naslov: %4 Invalid -proxy address: '%s' Neveljaven -proxy naslov: '%s' + + Relay non-P2SH multisig (default: %u) + Posreduj transakcije tipa multisig, ki niso hkrati tipa P2SH. (privzeto: %u) + + + Specify configuration file (default: %s) + Za shranjevanje konfiguracije uporabi navedeno datoteko. (privzeto: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Vzpostavljanje nove povezave poteče po navedenem št. pretečenih milisekund. (najmanj: 1, privzeto: %d) + + + Specify pid file (default: %s) + Za shranjevanje PID uporabi navedeno datoteko. (privzeto: %s) + + + Spend unconfirmed change when sending transactions (default: %u) + Pri odlivnih transakcijah omogoči trošenje drobiža iz še nepotrjenih plačil (privzeto: %u) + + + Threshold for disconnecting misbehaving peers (default: %u) + Prekini povezavo s soležnikom, ko št. njegovih kazenskih točk preseže navedeni prag. (privzeto: %u) + Unknown network specified in -onlynet: '%s' Neznano omrežje določeno v -onlynet: '%s'. @@ -2226,10 +3094,6 @@ Naslov: %4 Invalid amount for -paytxfee=<amount>: '%s' Neveljavna količina za -paytxfee=<amount>: '%s' - - Invalid amount - Neveljavna količina - Insufficient funds Premalo sredstev @@ -2262,10 +3126,6 @@ Naslov: %4 Done loading Nalaganje končano - - To use the %s option - Za uporabo %s opcije - Error Napaka diff --git a/src/qt/locale/bitcoin_sq.ts b/src/qt/locale/bitcoin_sq.ts index 7e63f239cafd4..f080d4582a4f9 100644 --- a/src/qt/locale/bitcoin_sq.ts +++ b/src/qt/locale/bitcoin_sq.ts @@ -1,27 +1,83 @@ - + AddressBookPage - Double-click to edit address or label - Klikoni 2 herë për të ndryshuar adressën ose etiketën + Right-click to edit address or label + Kliko me të djathtën për të ndryshuar adresën ose etiketen. Create a new address Krijo një adresë të re + + &New + &E re + Copy the currently selected address to the system clipboard Kopjo adresën e zgjedhur në memorjen e sistemit + + &Copy + &Kopjo + + + &Copy Address + &Kopjo adresen + + + Delete the currently selected address from the list + Fshi adresen e selektuar nga lista + &Delete &Fshi + + Choose the address to send coins to + Zgjidh adresen ku do te dergoni monedhat + + + Sending addresses + Duke derguar adresen + + + Receiving addresses + Duke marr adresen + + + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Këto janë Hypercoin adresat e juaja për të dërguar pagesa. Gjithmon kontrolloni shumën dhe adresën pranuese para se të dërgoni monedha. + + + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Këto janë Hypercoin adresat e juaja për të pranuar pagesa. Rekomandohet që gjithmon të përdorni një adresë të re për çdo transaksion. + + + Copy &Label + Kopjo &Etiketë + + + &Edit + &Ndrysho + + + Export Address List + Eksporto listën e adresave + Comma separated file (*.csv) Skedar i ndarë me pikëpresje(*.csv) - + + Exporting Failed + Eksportimi dështoj + + + There was an error trying to save the address list to %1. Please try again. + Gabim gjatë ruajtjes së listës së adresave në %1. Ju lutem provoni prapë. + + AddressTableModel @@ -53,7 +109,7 @@ Encrypt wallet - Enkripto portofolin + Kripto portofolin This operation needs your wallet passphrase to unlock the wallet. @@ -83,6 +139,10 @@ Confirm wallet encryption Konfirmoni enkriptimin e portofolit + + Are you sure you wish to encrypt your wallet? + Jeni te sigurt te enkriptoni portofolin tuaj? + Wallet encrypted Portofoli u enkriptua @@ -146,6 +206,26 @@ Change the passphrase used for wallet encryption Ndrysho frazkalimin e përdorur per enkriptimin e portofolit + + Hypercoin + Hypercoin + + + Wallet + Portofol + + + &Send + &Dergo + + + &Receive + &Merr + + + &Show / Hide + &Shfaq / Fsheh + &File &Skedar @@ -162,6 +242,46 @@ Tabs toolbar Shiriti i mjeteve + + Hypercoin Core + Berthama Hypercoin + + + &About Hypercoin Core + Rreth Berthames Bitkoin + + + %n hour(s) + %n ore%n ore + + + %n day(s) + %n dite%n dite + + + %n week(s) + %n jave%n jave + + + %1 and %2 + %1 dhe %2 + + + %n year(s) + %n vit%n vite + + + %1 behind + %1 Pas + + + Error + Problem + + + Information + Informacion + Up to date I azhornuar @@ -192,6 +312,14 @@ CoinControlDialog + + Coin Selection + Zgjedhja e monedhes + + + Amount: + Shuma: + Amount Sasia @@ -200,6 +328,18 @@ Date Data + + Copy address + Kopjo adresën + + + yes + po + + + no + jo + (no label) (pa etiketë) @@ -250,12 +390,44 @@ FreespaceChecker + + name + emri + HelpMessageDialog + + Hypercoin Core + Berthama Hypercoin + + + version + versioni + + + About Hypercoin Core + Rreth Berthames Bitkoin + Intro + + Welcome + Miresevini + + + Welcome to Hypercoin Core. + Miresevini ne Berthamen Hypercoin + + + Hypercoin Core + Berthama Hypercoin + + + Error + Problem + OpenURIDialog @@ -292,6 +464,22 @@ RPCConsole + + &Open + &Hap + + + &Clear + &Pastro + + + never + asnjehere + + + Unknown + i/e panjohur + ReceiveCoinsDialog @@ -340,6 +528,10 @@ Send Coins Dërgo Monedha + + Amount: + Shuma: + Send to multiple recipients at once Dërgo marrësve të ndryshëm njëkohësisht @@ -416,6 +608,10 @@ SplashScreen + + Hypercoin Core + Berthama Hypercoin + [testnet] [testo rrjetin] @@ -531,6 +727,14 @@ Mined Minuar + + Copy address + Kopjo adresën + + + Exporting Failed + Eksportimi dështoj + Comma separated file (*.csv) Skedar i ndarë me pikëpresje(*.csv) @@ -570,5 +774,21 @@ bitcoin-core - + + Information + Informacion + + + Insufficient funds + Fonde te pamjaftueshme + + + Rescanning... + Rikerkim + + + Error + Problem + + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_sr.ts b/src/qt/locale/bitcoin_sr.ts index b005ce23ad0a6..3f2457ce24a2a 100644 --- a/src/qt/locale/bitcoin_sr.ts +++ b/src/qt/locale/bitcoin_sr.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - Kliknite dva puta da izmenite adresu ili etiketu - Create a new address Napravite novu adresu @@ -100,8 +96,8 @@ Одобрите шифровање новчаника - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Упозорење: Ако се ваш новчаник шифрује а потом изгубите лозинкзу, ви ћете <b>ИЗГУБИТИ СВЕ BITCOIN-Е</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Упозорење: Ако се ваш новчаник шифрује а потом изгубите лозинкзу, ви ћете <b>ИЗГУБИТИ СВЕ HYPERCOIN-Е</b>! Are you sure you wish to encrypt your wallet? @@ -112,8 +108,8 @@ Новчаник је шифрован - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin će se sad zatvoriti da bi završio proces enkripcije. Zapamti da enkripcija tvog novčanika ne može u potpunosti da zaštiti tvoje bitcoine da ne budu ukradeni od malawarea koji bi inficirao tvoj kompjuter. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin će se sad zatvoriti da bi završio proces enkripcije. Zapamti da enkripcija tvog novčanika ne može u potpunosti da zaštiti tvoje hypercoine da ne budu ukradeni od malawarea koji bi inficirao tvoj kompjuter. Wallet encryption failed @@ -199,12 +195,12 @@ Промени &лозинку... - Send coins to a Bitcoin address - Пошаљите новац на bitcoin адресу + Send coins to a Hypercoin address + Пошаљите новац на hypercoin адресу - Modify configuration options for Bitcoin - Изаберите могућности bitcoin-а + Modify configuration options for Hypercoin + Изаберите могућности hypercoin-а Change the passphrase used for wallet encryption @@ -338,8 +334,8 @@ Address: %4 верзија - About Bitcoin Core - O Bitcoin Coru + About Hypercoin Core + O Hypercoin Coru Usage: diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts index 551f6976cf43b..d29db35b828ed 100644 --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Dubbelklicka för att ändra adressen eller etiketten + Right-click to edit address or label + Högerklicka för att ändra adressen eller etiketten. Create a new address @@ -66,12 +66,12 @@ Mottagaradresser - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Detta är dina Bitcoin adresser för att skicka betalningar. Kolla alltid summan och den mottagande adressen innan du skickar Bitcoins. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Detta är dina Hypercoin adresser för att skicka betalningar. Kolla alltid summan och den mottagande adressen innan du skickar Hypercoins. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Detta är dina Bitcoin adresser för att ta emot betalningar. Det rekommenderas att använda en ny mottagningsadress för varje transaktion. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Detta är dina Hypercoin adresser för att ta emot betalningar. Det rekommenderas att använda en ny mottagningsadress för varje transaktion. Copy &Label @@ -165,7 +165,7 @@ Var vänlig och försök igen. Bekräfta kryptering av plånbok - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! VARNING: Om du krypterar din plånbok och glömmer ditt lösenord, kommer du att <b>FÖRLORA ALLA DINA TILLGÅNGAR</b>! @@ -189,7 +189,7 @@ Var vänlig och försök igen. Ange plånbokens nya lösenord. <br/> Använd ett lösenord på <b>tio eller fler slumpmässiga tecken,</b> eller <b>åtta eller fler ord.</b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. Programmet kommer nu att stänga ner för att färdigställa krypteringen. Tänk på att en krypterad plånbok inte skyddar mot stöld om din dator är infekterad med en keylogger. @@ -296,8 +296,8 @@ Var vänlig och försök igen. Öppna &URI... - Bitcoin Core client - Bitcoin Core klient + Hypercoin Core client + Hypercoin Core klient Importing blocks from disk... @@ -308,12 +308,12 @@ Var vänlig och försök igen. Återindexerar block på disken... - Send coins to a Bitcoin address - Skicka bitcoins till en Bitcoin-adress + Send coins to a Hypercoin address + Skicka hypercoins till en Hypercoin-adress - Modify configuration options for Bitcoin - Ändra konfigurationsalternativ för Bitcoin + Modify configuration options for Hypercoin + Ändra konfigurationsalternativ för Hypercoin Backup wallet to another location @@ -336,8 +336,8 @@ Var vänlig och försök igen. &Verifiera meddelande... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -352,8 +352,8 @@ Var vänlig och försök igen. &Ta emot - Show information about Bitcoin Core - Visa information om Bitcoin Core + Show information about Hypercoin Core + Visa information om Hypercoin Core &Show / Hide @@ -368,12 +368,12 @@ Var vänlig och försök igen. Kryptera de privata nycklar som tillhör din plånbok - Sign messages with your Bitcoin addresses to prove you own them - Signera meddelanden med din Bitcoin-adress för att bevisa att du äger dem + Sign messages with your Hypercoin addresses to prove you own them + Signera meddelanden med din Hypercoin-adress för att bevisa att du äger dem - Verify messages to ensure they were signed with specified Bitcoin addresses - Verifiera meddelanden för att vara säker på att de var signerade med specificerade Bitcoin-adresser + Verify messages to ensure they were signed with specified Hypercoin addresses + Verifiera meddelanden för att vara säker på att de var signerade med specificerade Hypercoin-adresser &File @@ -392,16 +392,16 @@ Var vänlig och försök igen. Verktygsfält för Tabbar - Bitcoin Core - Bitcoin Kärna + Hypercoin Core + Hypercoin Kärna - Request payments (generates QR codes and bitcoin: URIs) - Begär betalning (genererar QR-koder och bitcoin-URI) + Request payments (generates QR codes and hypercoin: URIs) + Begär betalning (genererar QR-koder och hypercoin-URI) - &About Bitcoin Core - &Om Bitcoin Core + &About Hypercoin Core + &Om Hypercoin Core Show the list of used sending addresses and labels @@ -412,20 +412,20 @@ Var vänlig och försök igen. Visa listan av använda mottagningsadresser och etiketter - Open a bitcoin: URI or payment request - Öppna en bitcoin: URI eller betalningsbegäran + Open a hypercoin: URI or payment request + Öppna en hypercoin: URI eller betalningsbegäran &Command-line options &Kommandoradsalternativ - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Visa Bitcoin Core hjälpmeddelande för att få en lista med möjliga Bitcoin kommandoradsalternativ. + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Visa Hypercoin Core hjälpmeddelande för att få en lista med möjliga Hypercoin kommandoradsalternativ. - %n active connection(s) to Bitcoin network - %n aktiva anslutningar till Bitcoin-nätverket.%n aktiva anslutningar till Bitcoin-nätverket. + %n active connection(s) to Hypercoin network + %n aktiva anslutningar till Hypercoin-nätverket.%n aktiva anslutningar till Hypercoin-nätverket. No block source available... @@ -785,8 +785,8 @@ Adress: %4 Den angivna adressen "%1" finns redan i adressboken. - The entered address "%1" is not a valid Bitcoin address. - Den angivna adressen "%1" är inte en giltig Bitcoin-adress. + The entered address "%1" is not a valid Hypercoin address. + Den angivna adressen "%1" är inte en giltig Hypercoin-adress. Could not unlock wallet. @@ -823,8 +823,8 @@ Adress: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Kärna + Hypercoin Core + Hypercoin Kärna version @@ -835,8 +835,8 @@ Adress: %4 (%1-bit) - About Bitcoin Core - Om Bitcoin Core + About Hypercoin Core + Om Hypercoin Core Command-line options @@ -882,16 +882,16 @@ Adress: %4 Välkommen - Welcome to Bitcoin Core. - Välkommen till Bitcoin Core. + Welcome to Hypercoin Core. + Välkommen till Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Eftersom detta är första gången programmet startas får du välja var Bitcoin Core skall lagra sitt data. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Eftersom detta är första gången programmet startas får du välja var Hypercoin Core skall lagra sitt data. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core kommer att ladda ner och spara en kopia av Bitcoin blockkedjan. Åtminstone %1GB av data kommer att sparas i denna katalog, och den kommer att växa över tiden. Plånboken kommer också att sparas i denna katalog. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core kommer att ladda ner och spara en kopia av Hypercoin blockkedjan. Åtminstone %1GB av data kommer att sparas i denna katalog, och den kommer att växa över tiden. Plånboken kommer också att sparas i denna katalog. Use the default data directory @@ -902,8 +902,8 @@ Adress: %4 Använd en anpassad datakatalog: - Bitcoin Core - Bitcoin Kärna + Hypercoin Core + Hypercoin Kärna Error: Specified data directory "%1" cannot be created. @@ -956,12 +956,12 @@ Adress: %4 &Allmänt - Automatically start Bitcoin after logging in to the system. - Starta Bitcoin automatiskt efter inloggning. + Automatically start Hypercoin after logging in to the system. + Starta Hypercoin automatiskt efter inloggning. - &Start Bitcoin on system login - &Starta Bitcoin vid systemstart + &Start Hypercoin on system login + &Starta Hypercoin vid systemstart Size of &database cache @@ -1036,16 +1036,16 @@ Adress: %4 &Spendera okonfirmerad växel - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Öppna automatiskt Bitcoin-klientens port på routern. Detta fungerar endast om din router har UPnP aktiverat. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Öppna automatiskt Hypercoin-klientens port på routern. Detta fungerar endast om din router har UPnP aktiverat. Map port using &UPnP Tilldela port med hjälp av &UPnP - Connect to the Bitcoin network through a SOCKS5 proxy. - Anslut till Bitcoin-nätverket genom en SOCKS5-proxy. + Connect to the Hypercoin network through a SOCKS5 proxy. + Anslut till Hypercoin-nätverket genom en SOCKS5-proxy. &Connect through SOCKS5 proxy (default proxy): @@ -1092,8 +1092,8 @@ Adress: %4 Användargränssnittets &språk: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Användargränssnittets språk kan ställas in här. Denna inställning träder i kraft efter en omstart av Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Användargränssnittets språk kan ställas in här. Denna inställning träder i kraft efter en omstart av Hypercoin. &Unit to show amounts in: @@ -1151,8 +1151,8 @@ Adress: %4 Formulär - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Den visade informationen kan vara inaktuell. Plånboken synkroniseras automatiskt med Bitcoin-nätverket efter att anslutningen är upprättad, men denna process har inte slutförts ännu. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Den visade informationen kan vara inaktuell. Plånboken synkroniseras automatiskt med Hypercoin-nätverket efter att anslutningen är upprättad, men denna process har inte slutförts ännu. Watch-only: @@ -1258,16 +1258,16 @@ Adress: %4 Fel vid betalningsbegäran - Cannot start bitcoin: click-to-pay handler - Kan inte starta bitcoin: klicka-och-betala handhavare + Cannot start hypercoin: click-to-pay handler + Kan inte starta hypercoin: klicka-och-betala handhavare Payment request fetch URL is invalid: %1 Betalningsbegärans hämta URL är felaktig: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - URI går inte att tolkas! Detta kan orsakas av en ogiltig Bitcoin-adress eller felaktiga URI parametrar. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI går inte att tolkas! Detta kan orsakas av en ogiltig Hypercoin-adress eller felaktiga URI parametrar. Payment request file handling @@ -1285,6 +1285,14 @@ Adress: %4 Refund from %1 Återbetalning från %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Betalningsbegäran %1 är för stor (%2 bytes, tillåten %3 bytes) + + + Payment request DoS protection + Betalningsbegäran begär DoS-skydd + Error communicating with %1: %2 Kommunikationsfel med %1: %2 @@ -1328,8 +1336,8 @@ Adress: %4 Mängd - Enter a Bitcoin address (e.g. %1) - Ange en Bitcoin-adress (t.ex. %1) + Enter a Hypercoin address (e.g. %1) + Ange en Hypercoin-adress (t.ex. %1) %1 d @@ -1554,16 +1562,16 @@ Adress: %4 Debugloggfil - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Öppna Bitcoin debug-loggfilen som finns i datakatalogen. Detta kan ta några sekunder för stora loggfiler. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Öppna Hypercoin debug-loggfilen som finns i datakatalogen. Detta kan ta några sekunder för stora loggfiler. Clear console Rensa konsollen - Welcome to the Bitcoin RPC console. - Välkommen till Bitcoin RPC-konsollen. + Welcome to the Hypercoin RPC console. + Välkommen till Hypercoin RPC-konsollen. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1633,8 +1641,8 @@ Adress: %4 Åt&eranvänd en existerande mottagningsadress (rekommenderas inte) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Ett frivilligt meddelande att bifoga betalningsbegäran, vilket visas när begäran öppnas. NB: Meddelandet kommer inte att sändas med betalningen över Bitcoinnätverket. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Ett frivilligt meddelande att bifoga betalningsbegäran, vilket visas när begäran öppnas. NB: Meddelandet kommer inte att sändas med betalningen över Hypercoinnätverket. An optional label to associate with the new receiving address. @@ -1870,8 +1878,8 @@ Adress: %4 totalt minst - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. - Att betala endast den minsta avgiften är bara bra så länge det är mindre transaktionsvolym än utrymme i blocken. Men tänk på att det kan hamna i en aldrig bekräftar transaktion när det finns mer efterfrågan på bitcoin transaktioner än nätverket kan bearbeta. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Att betala endast den minsta avgiften är bara bra så länge det är mindre transaktionsvolym än utrymme i blocken. Men tänk på att det kan hamna i en aldrig bekräftar transaktion när det finns mer efterfrågan på hypercoin transaktioner än nätverket kan bearbeta. (read the tooltip) @@ -1978,8 +1986,8 @@ Adress: %4 Kopiera växel - Total Amount %1 (= %2) - Totalt %1 (= %2) + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + Total summa %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> or @@ -2026,8 +2034,8 @@ Adress: %4 Bekräftelsen beräknas börja inom %1 block. - Warning: Invalid Bitcoin address - Varning: Felaktig Bitcoinadress + Warning: Invalid Hypercoin address + Varning: Felaktig Hypercoinadress (no label) @@ -2077,8 +2085,8 @@ Adress: %4 Detta är en normal betalning. - The Bitcoin address to send the payment to - Bitcoinadress att sända betalning till + The Hypercoin address to send the payment to + Hypercoinadress att sända betalning till Alt+A @@ -2109,8 +2117,8 @@ Adress: %4 Ange en etikett för denna adress att adderas till listan över använda adresser - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Ett meddelande som bifogades bitcoin-URI, vilket lagras med transaktionen som referens. NB: Meddelandet kommer inte att sändas över Bitcoinnätverket. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Ett meddelande som bifogades hypercoin-URI, vilket lagras med transaktionen som referens. NB: Meddelandet kommer inte att sändas över Hypercoinnätverket. This is an unverified payment request. @@ -2128,8 +2136,8 @@ Adress: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core stängs av... + Hypercoin Core is shutting down... + Hypercoin Core stängs av... Do not shut down the computer until this window disappears. @@ -2151,8 +2159,8 @@ Adress: %4 Du kan signera meddelanden med dina adresser för att bevisa att du äger dem. Var försiktig med vad du signerar eftersom phising-attacker kan försöka få dig att skriva över din identitet till någon annan. Signera bara väldetaljerade påståenden du kan gå i god för. - The Bitcoin address to sign the message with - Bitcoinadress att signera meddelandet med + The Hypercoin address to sign the message with + Hypercoinadress att signera meddelandet med Choose previously used address @@ -2183,7 +2191,7 @@ Adress: %4 Kopiera signaturen till systemets Urklipp - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address Signera meddelandet för att bevisa att du äger denna adress @@ -2207,12 +2215,12 @@ Adress: %4 Skriv in din adress, meddelande (se till att du kopierar radbrytningar, mellanslag, tabbar, osv. exakt) och signatur nedan för att verifiera meddelandet. Var noga med att inte läsa in mer i signaturen än vad som finns i det signerade meddelandet, för att undvika att luras av en man-in-the-middle attack. - The Bitcoin address the message was signed with - Bitcoinadressen som meddelandet signerades med + The Hypercoin address the message was signed with + Hypercoinadressen som meddelandet signerades med - Verify the message to ensure it was signed with the specified Bitcoin address - Verifiera meddelandet för att vara säker på att den var signerad med den angivna Bitcoin-adressen + Verify the message to ensure it was signed with the specified Hypercoin address + Verifiera meddelandet för att vara säker på att den var signerad med den angivna Hypercoin-adressen Verify &Message @@ -2278,8 +2286,8 @@ Adress: %4 SplashScreen - Bitcoin Core - Bitcoin Kärna + Hypercoin Core + Hypercoin Kärna The Bitcoin Core developers @@ -2799,30 +2807,6 @@ Adress: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Acceptera anslutningar utifrån (förvalt: 1 om ingen -proxy eller -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, du behöver sätta ett rpclösensord i konfigurationsfilen: -%s -Det är rekommenderat att använda följande slumpade lösenord: -rpcuser=bitcoinrpc -rpcpassword=%s -(du behöver inte komma ihåg lösenordet) -Användarnamnet och lösenordet FÅR INTE bara detsamma. -Om filen inte existerar, skapa den med enbart ägarläsbara filrättigheter. -Det är också rekommenderat att sätta alertnotify så du meddelas om problem; -till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bind till given adress och lyssna alltid på den. Använd [värd]:port notation för IPv6 @@ -2839,14 +2823,6 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Ange regressiontestläge, som använder en speciell kedja i vilka block kan lösas omedelbart. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fel: Transaktionen avslogs! Detta kan hända om några av mynten i plånboken redan spenderats, t.ex om du använt en kopia av wallet.dat och mynt spenderades i kopian men inte markerats som spenderas här. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Fel: Denna transaktion kräver en transaktionsavgift på minst %s på grund av dess storlek, komplexitet, eller användning av senast mottagna bitcoins! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Exekvera kommando när en plånbokstransaktion ändras (%s i cmd är ersatt av TxID) @@ -2864,8 +2840,8 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Detta är ett förhands testbygge - använd på egen risk - använd inte för mining eller handels applikationer - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Det går inte att binda till %s på den här datorn. Bitcoin Core är förmodligen redan igång. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Det går inte att binda till %s på den här datorn. Hypercoin Core är förmodligen redan igång. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2951,18 +2927,10 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error opening block database Fel vid öppning av blockdatabasen - - Error: A fatal internal error occured, see debug.log for details - Fel: Ett fatalt internt fel inträffade. Se debug.log för detaljer - Error: Disk space is low! Fel: Hårddiskutrymme är lågt! - - Error: Wallet locked, unable to create transaction! - Fel: Plånboken är låst, det går ej att skapa en transaktion! - Failed to listen on any port. Use -listen=0 if you want this. Misslyckades att lyssna på någon port. Använd -listen=0 om du vill detta. @@ -3056,8 +3024,8 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Bind till angiven adress för att lyssna på JSON-RPC anslutningar. Använd [värd]:port notation for IPv6. Denna option kan specificeras flera gånger (förvalt: bind till alla gränssnitt) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Kan inte låsa data-mappen %s. Bitcoin Core körs förmodligen redan. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Kan inte låsa data-mappen %s. Hypercoin Core körs förmodligen redan. Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) @@ -3080,21 +3048,38 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Exekvera kommando när ett relevant meddelande är mottagen eller när vi ser en väldigt lång förgrening (%s i cmd är utbytt med ett meddelande) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Avgifter (i BTC/Kb) mindre än detta betraktas som nollavgift för vidarebefodran (förvalt: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Avgifter (i HOT/Kb) mindre än detta betraktas som nollavgift för vidarebefodran (förvalt: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Avgifter (i HOT/Kb) mindre än detta betraktas som nollavgift för transaktionsskapande (förvalt: %s) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Avgifter (i BTC/Kb) mindre än detta betraktas som nollavgift för transaktionsskapande (förvalt: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Om paytxfee inte är satt, inkludera tillräcklig avgift så att transaktionen börjar att konfirmeras inom n blocks (förvalt: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Otillåtet belopp för -maxtxfee=<belopp>: '%s' (måste åtminstånde vara minrelay avgift %s för att förhindra stoppade transkationer) Maximum size of data in data carrier transactions we relay and mine (default: %u) Maximal storlek på data i databärartransaktioner som vi reläar och bryter (förvalt: %u) + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Maximum total avgift att använda i en plånbok transaktion, sätts den för lågt kan stora transaktioner avbrytas (förvalt: %s) + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Sök efter klientadresser med DNS sökningen, om det finns otillräckligt med adresser (förvalt: 1 om inte -connect) + + Require high priority for relaying free or low-fee transactions (default:%u) + Begär hög-prioritet för relätrafik eller lågavgifts transaktioner +(förvalt: %u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Sätt den maximala storleken av hög-prioriterade/låg-avgifts transaktioner i byte (förvalt: %d) @@ -3104,13 +3089,45 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användning i OpenSSL Toolkit <https://www.openssl.org/> och kryptografisk mjukvara utvecklad av Eric Young samt UPnP-mjukvara skriven av Thomas Bernard. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Varning: Vänligen kolla så att din dators datum och tid är korrekt! Om din klocka går fel kommer Bitcoin Core inte att fungera korrekt. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + För att använda bitconid,eller -server optionen till hypercoin-qt så mäste du sätta ett rpclösensord i konfigurationsfilen: +%s +Det är rekommenderat att använda följande slumpade lösenord: +rpcuser=hypercoinrpc +rpcpassword=%s +(du behöver inte komma ihåg lösenordet) +Användarnamnet och lösenordet FÅR INTE vara detsamma. +Om filen inte existerar, skapa den med enbart ägarläsbara filrättigheter. +Det är också rekommenderat att sätta alertnotify så du meddelas om problem; +till exempel: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Varning: -maxtxfee är satt väldigt hög! Så höga avgifter kan betalas för en enstaka transaktion. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Varning: Vänligen kolla så att din dators datum och tid är korrekt! Om din klocka går fel kommer Hypercoin Core inte att fungera korrekt. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Vitlistade klienter kan inte bli DoS bannade och deras transaktioner reläas alltid, även om dom redan är i mempoolen, användbart för t.ex en gateway + + Accept public REST requests (default: %u) + Acceptera publika REST förfrågningar (förvalt: %u) + Cannot resolve -whitebind address: '%s' Kan inte matcha -whitebind adress: '%s' @@ -3128,24 +3145,36 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Kunde inte tolka -rpcbind värdet %s som en nätverksadress - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Fel vid inläsningen av wallet.dat: Kontofilen kräver en senare version av Bitcoin Core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Fel vid inläsningen av wallet.dat: Kontofilen kräver en senare version av Hypercoin Core + + + Error reading from database, shutting down. + Fel vid läsning från databas, avslutar. + + + Error: A fatal internal error occurred, see debug.log for details + Fel: Ett kritiskt internt fel uppstod, se debug.log för detaljer Error: Unsupported argument -tor found, use -onion. Fel: Argumentet -tor stöds inte, använd -onion. - Fee (in BTC/kB) to add to transactions you send (default: %s) - Avgift (i BTC/Kb) att lägga till på transaktioner du skickar (förvalt: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Avgift (i HOT/Kb) att lägga till på transaktioner du skickar (förvalt: %s) Information Information - Initialization sanity check failed. Bitcoin Core is shutting down. - Initieringschecken fallerade. Bitcoin Core stängs av... + Initialization sanity check failed. Hypercoin Core is shutting down. + Initieringschecken fallerade. Hypercoin Core stängs av... + + + Invalid amount for -maxtxfee=<amount>: '%s' + Otillåtet belopp för -maxtxfee=<belopp>: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -3163,10 +3192,6 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid netmask specified in -whitelist: '%s' Ogiltig nätmask angiven i -whitelist: '%s' - - Keep at most <n> unconnectable blocks in memory (default: %u) - Håll som mest <n> oanslutningsbara block i minnet (förvalt: %u) - Keep at most <n> unconnectable transactions in memory (default: %u) Håll som mest <n> oanslutningsbara transaktioner i minnet (förvalt: %u) @@ -3180,17 +3205,17 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Nodreläoptioner: - Print block on startup, if found in block index - Skriv ut block vid uppstart, om det hittas i blockindexet - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - RPC SSL optioner: (se Bitcoin Wiki för SSL inställningsinstruktioner) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + RPC SSL optioner: (se Hypercoin Wiki för SSL inställningsinstruktioner) RPC server options: RPC serveroptioner: + + RPC support for HTTP persistent connections (default: %d) + RPC support för HTTP permanent anslutning (förvalt: %d) + Randomly drop 1 of every <n> network messages Slumpmässigt tappa 1 av varje <n> nåtverksmeddelande @@ -3199,6 +3224,10 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Randomly fuzz 1 of every <n> network messages Slupmässigt brus 1 gång varje <n> nätverksmeddelande + + Receive and display P2P network alerts (default: %u) + Ta emot och visa varningar för P2P-nätverk (standard: %u) + Send trace/debug info to console instead of debug.log file Skicka trace-/debuginformation till terminalen istället för till debug.log @@ -3231,6 +3260,10 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Transaction amounts must be positive Transaktionens belopp måste vara positiva + + Transaction too large for fee policy + Transaktionen är för stor för avgiftspolicyn + Transaction too large Transaktionen är för stor @@ -3248,8 +3281,8 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Användarnamn för JSON-RPC-anslutningar - Wallet needed to be rewritten: restart Bitcoin Core to complete - Kontot behöver sparas om: Starta om Bitcoin Core för att fullfölja + Wallet needed to be rewritten: restart Hypercoin Core to complete + Kontot behöver sparas om: Starta om Hypercoin Core för att fullfölja Warning @@ -3327,10 +3360,6 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com How thorough the block verification of -checkblocks is (0-4, default: %u) Hur grundlig blockverifikationen vid -checkblocks är (0-4, förvalt: %u) - - If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u) - Om paytxfee inte är satt, inkludera tillräcklig avgift så att transaktionen konfirmeras inom n blocks (förvalt: %u) - Log transaction priority and fee per kB when mining blocks (default: %u) Logga transaktionsprioritet och avgift per kB vid blockbrytning (förvalt: %u) @@ -3423,10 +3452,6 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Prepend debug output with timestamp (default: %u) Skriv ut tidsstämpel i avlusningsinformationen (förvalt: %u) - - Print block tree on startup (default: %u) - Skriv ut blockträdet vid uppstart (förvalt: %u) - Relay and mine data carrier transactions (default: %u) Reläa och bearbeta databärartransaktioner (förvalt: %u) @@ -3503,13 +3528,9 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' Ogiltigt belopp för -paytxfee=<belopp>:'%s' - - Invalid amount - Ogiltig mängd - Insufficient funds - Otillräckligt med bitcoins + Otillräckligt med hypercoins Loading block index... @@ -3539,13 +3560,9 @@ till exempel: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Klar med laddning - - To use the %s option - Att använda %s alternativet - Error Fel - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_th_TH.ts b/src/qt/locale/bitcoin_th_TH.ts index 174816aaef00d..6aa6cc5ba12ac 100644 --- a/src/qt/locale/bitcoin_th_TH.ts +++ b/src/qt/locale/bitcoin_th_TH.ts @@ -1,10 +1,6 @@ - + AddressBookPage - - Double-click to edit address or label - ดับเบิ้ลคลิก เพื่อแก้ไขที่อยู่ หรือชื่อ - Create a new address สร้างที่อยู่ใหม่ @@ -163,8 +159,8 @@ แถบเครื่องมือ - %n active connection(s) to Bitcoin network - %n ที่ใช้งานการเชื่อมต่อกับเครือข่าย Bitcoin + %n active connection(s) to Hypercoin network + %n ที่ใช้งานการเชื่อมต่อกับเครือข่าย Hypercoin Up to date diff --git a/src/qt/locale/bitcoin_tr.ts b/src/qt/locale/bitcoin_tr.ts index ab02cc92a60fc..632c6418cb0e2 100644 --- a/src/qt/locale/bitcoin_tr.ts +++ b/src/qt/locale/bitcoin_tr.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Adresi ya da etiketi düzenlemek için çift tıklayınız + Right-click to edit address or label + Adresi ya da etiketi düzenlemek için sağ düğme ile tıklayınız. Create a new address @@ -27,7 +27,7 @@ &Copy Address - Adresi &kopyala + &Adresi Kopyala Delete the currently selected address from the list @@ -47,11 +47,11 @@ Choose the address to send coins to - Bitcoin yollanacak adresi seç + Hypercoin yollanacak adresi seç Choose the address to receive coins with - Bitcoin alınacak adresi seç + Hypercoin alınacak adresi seç C&hoose @@ -59,19 +59,19 @@ Sending addresses - Yollama adresleri + &Gönderme adresleri... Receiving addresses Alım adresleri - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Bunlar ödeme yapmak için kullanacağınız Bitcoin adreslerinizdir. Bitcoin yollamadan önce meblağı ve alıcı adresini daima kontrol ediniz. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Bunlar ödeme yapmak için kullanacağınız Hypercoin adreslerinizdir. Hypercoin yollamadan önce meblağı ve alıcı adresini daima kontrol ediniz. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Bunlar ödeme almak için kullanacağınız Bitcoin adreslerinizdir. Her muamele için yeni bir alım adresi kullanmanız tavsiye edilir. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Bunlar ödeme almak için kullanacağınız Hypercoin adreslerinizdir. Her muamele için yeni bir alım adresi kullanmanız tavsiye edilir. Copy &Label @@ -164,7 +164,7 @@ Cüzdan şifrelenmesini teyit eder - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! Uyarı: Eğer cüzdanınızı şifrelerseniz ve parolanızı kaybederseniz, <b>TÜM BİTCOİNLERİNİZİ KAYBEDERSİNİZ</b>! @@ -188,8 +188,8 @@ Cüzdan için yeni parolayı giriniz.<br/>Lütfen <b>on ya da daha fazla rastgele karakter</b> veya <b>sekiz ya da daha fazla kelime</b> içeren bir parola kullanınız. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Şifreleme işlemini tamamlamak için Bitcoin şimdi kapanacaktır. Cüzdanınızı şifrelemenin, Bitcoinlerinizin bilgisayara bulaşan kötücül bir yazılım tarafından çalınmaya karşı tamamen koruyamayacağını unutmayınız. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Şifreleme işlemini tamamlamak için Hypercoin şimdi kapanacaktır. Cüzdanınızı şifrelemenin, Hypercoinlerinizin bilgisayara bulaşan kötücül bir yazılım tarafından çalınmaya karşı tamamen koruyamayacağını unutmayınız. Wallet encryption failed @@ -295,8 +295,8 @@ &URI aç... - Bitcoin Core client - Bitcoin Çekirdeği istemcisi + Hypercoin Core client + Hypercoin Çekirdeği istemcisi Importing blocks from disk... @@ -307,12 +307,12 @@ Diskteki bloklar yeniden endeksleniyor... - Send coins to a Bitcoin address - Bir Bitcoin adresine Bitcoin yolla + Send coins to a Hypercoin address + Bir Hypercoin adresine Hypercoin yolla - Modify configuration options for Bitcoin - Bitcoin seçeneklerinin yapılandırmasını değiştir + Modify configuration options for Hypercoin + Hypercoin seçeneklerinin yapılandırmasını değiştir Backup wallet to another location @@ -335,8 +335,8 @@ Mesaj &kontrol et... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Al - Show information about Bitcoin Core - Bitcoin Çekirdeği hakkında bilgi göster + Show information about Hypercoin Core + Hypercoin Çekirdeği hakkında bilgi göster &Show / Hide @@ -367,12 +367,12 @@ Cüzdanınızın özel anahtarlarını şifrele - Sign messages with your Bitcoin addresses to prove you own them - Mesajları adreslerin size ait olduğunu ispatlamak için Bitcoin adresleri ile imzala + Sign messages with your Hypercoin addresses to prove you own them + Mesajları adreslerin size ait olduğunu ispatlamak için Hypercoin adresleri ile imzala - Verify messages to ensure they were signed with specified Bitcoin addresses - Belirtilen Bitcoin adresleri ile imzalandıklarından emin olmak için mesajları kontrol et + Verify messages to ensure they were signed with specified Hypercoin addresses + Belirtilen Hypercoin adresleri ile imzalandıklarından emin olmak için mesajları kontrol et &File @@ -391,16 +391,16 @@ Sekme araç çubuğu - Bitcoin Core - Bitcoin Çekirdeği + Hypercoin Core + Hypercoin Çekirdeği - Request payments (generates QR codes and bitcoin: URIs) - Ödeme talep et (QR kodu ve bitcoin URI'si oluşturur) + Request payments (generates QR codes and hypercoin: URIs) + Ödeme talep et (QR kodu ve hypercoin URI'si oluşturur) - &About Bitcoin Core - Bitcoin Çekirdeği &hakkında + &About Hypercoin Core + Hypercoin Çekirdeği &hakkında Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Kullanılmış alım adresleri ve etiketlerin listesini göster - Open a bitcoin: URI or payment request - Bir bitcoin: bağlantısı ya da ödeme talebi aç + Open a hypercoin: URI or payment request + Bir hypercoin: bağlantısı ya da ödeme talebi aç &Command-line options &Komut satırı seçenekleri - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Bitcoin komut satırı seçeneklerinin listesini elde etmek için Bitcoin Çekirdeği yardım mesajını göster + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Hypercoin komut satırı seçeneklerinin listesini elde etmek için Hypercoin Çekirdeği yardım mesajını göster - %n active connection(s) to Bitcoin network - Bitcoin şebekesine %n faal bağlantıBitcoin şebekesine %n faal bağlantı + %n active connection(s) to Hypercoin network + Hypercoin şebekesine %n faal bağlantıHypercoin şebekesine %n faal bağlantı No block source available... @@ -526,7 +526,7 @@ Adres: %4 CoinControlDialog Coin Selection - Bitcoin Seçimi + Hypercoin Seçimi Quantity: @@ -788,8 +788,8 @@ Adres: %4 Girilen "%1" adresi hâlihazırda adres defterinde mevcuttur. - The entered address "%1" is not a valid Bitcoin address. - Girilen "%1" adresi geçerli bir Bitcoin adresi değildir. + The entered address "%1" is not a valid Hypercoin address. + Girilen "%1" adresi geçerli bir Hypercoin adresi değildir. Could not unlock wallet. @@ -826,8 +826,8 @@ Adres: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Çekirdeği + Hypercoin Core + Hypercoin Çekirdeği version @@ -838,8 +838,8 @@ Adres: %4 (%1-bit) - About Bitcoin Core - Bitcoin Çekirdeği hakkında + About Hypercoin Core + Hypercoin Çekirdeği hakkında Command-line options @@ -885,16 +885,16 @@ Adres: %4 Hoş geldiniz - Welcome to Bitcoin Core. - Bitcoin Çekirdeğine hoş geldiniz. + Welcome to Hypercoin Core. + Hypercoin Çekirdeğine hoş geldiniz. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Bu programı ilk kez başlattığınızdan dolayı Bitcoin Çekirdeğinin verilerini nereye saklayacağını seçebilirsiniz. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Bu programı ilk kez başlattığınızdan dolayı Hypercoin Çekirdeğinin verilerini nereye saklayacağını seçebilirsiniz. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin çekirdeği Bitcoin blok zincirinin bir kopyasını indirip saklayacaktır. Asgari %1GB bouyutunda veri bu klasörde saklanacak ve zamanla bu boyut artacaktır. Cüzdan da bu klasörde saklanacaktır. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin çekirdeği Hypercoin blok zincirinin bir kopyasını indirip saklayacaktır. Asgari %1GB bouyutunda veri bu klasörde saklanacak ve zamanla bu boyut artacaktır. Cüzdan da bu klasörde saklanacaktır. Use the default data directory @@ -905,8 +905,8 @@ Adres: %4 Özel bir veri klasörü kullan: - Bitcoin Core - Bitcoin Çekirdeği + Hypercoin Core + Hypercoin Çekirdeği Error: Specified data directory "%1" cannot be created. @@ -959,12 +959,12 @@ Adres: %4 &Esas ayarlar - Automatically start Bitcoin after logging in to the system. - Sistemde oturum açıldığında Bitcoin'i otomatik olarak başlat. + Automatically start Hypercoin after logging in to the system. + Sistemde oturum açıldığında Hypercoin'i otomatik olarak başlat. - &Start Bitcoin on system login - Bitcoin'i sistem oturumuyla &başlat + &Start Hypercoin on system login + Hypercoin'i sistem oturumuyla &başlat Size of &database cache @@ -1039,16 +1039,16 @@ Adres: %4 Teyit edilmemiş para üstünü &harca - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - Yönlendiricide Bitcoin istemci portlarını otomatik olarak açar. Bu, sadece yönlendiricinizin UPnP desteği bulunuyorsa ve etkinse çalışabilir. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + Yönlendiricide Hypercoin istemci portlarını otomatik olarak açar. Bu, sadece yönlendiricinizin UPnP desteği bulunuyorsa ve etkinse çalışabilir. Map port using &UPnP Portları &UPnP kullanarak haritala - Connect to the Bitcoin network through a SOCKS5 proxy. - Bitcoin şebekesine SOCKS5 vekil sunucusu vasıtasıyla bağlan. + Connect to the Hypercoin network through a SOCKS5 proxy. + Hypercoin şebekesine SOCKS5 vekil sunucusu vasıtasıyla bağlan. &Connect through SOCKS5 proxy (default proxy): @@ -1095,8 +1095,8 @@ Adres: %4 Kullanıcı arayüzü &lisanı: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Kullanıcı arayüzünün dili burada belirtilebilir. Bu ayar Bitcoin tekrar başlatıldığında etkinleşecektir. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Kullanıcı arayüzünün dili burada belirtilebilir. Bu ayar Hypercoin tekrar başlatıldığında etkinleşecektir. &Unit to show amounts in: @@ -1104,7 +1104,7 @@ Adres: %4 Choose the default subdivision unit to show in the interface and when sending coins. - Bitcoin gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz. + Hypercoin gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz. Whether to show coin control features or not. @@ -1154,7 +1154,7 @@ Adres: %4 Form - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. Görüntülenen veriler zaman aşımına uğramış olabilir. Bağlantı kurulduğunda cüzdanınız otomatik olarak şebeke ile eşleşir ancak bu işlem henüz tamamlanmamıştır. @@ -1261,16 +1261,16 @@ Adres: %4 Ödeme talebi hatası - Cannot start bitcoin: click-to-pay handler - Bitcoin başlatılamadı: tıkla-ve-öde yöneticisi + Cannot start hypercoin: click-to-pay handler + Hypercoin başlatılamadı: tıkla-ve-öde yöneticisi Payment request fetch URL is invalid: %1 Ödeme talebini alma URL'i geçersiz: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - URI okunamadı! Sebebi geçersiz bir Bitcoin adresi veya hatalı URI parametreleri olabilir. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI okunamadı! Sebebi geçersiz bir Hypercoin adresi veya hatalı URI parametreleri olabilir. Payment request file handling @@ -1288,6 +1288,14 @@ Adres: %4 Refund from %1 %1 öğesinden iade + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + %1 ödeme talebi çok büyük (%2 bayt, müsaade edilen %3 bayt). + + + Payment request DoS protection + Ödeme talebi DoS koruması + Error communicating with %1: %2 %1 ile iletişimde hata: %2 @@ -1321,7 +1329,7 @@ Adres: %4 Ping Time - Ping Zamanı + Ping Süresi @@ -1331,8 +1339,8 @@ Adres: %4 Meblağ - Enter a Bitcoin address (e.g. %1) - Bir Bitcoin adresi giriniz (mesela %1) + Enter a Hypercoin address (e.g. %1) + Bir Hypercoin adresi giriniz (mesela %1) %1 d @@ -1494,7 +1502,7 @@ Adres: %4 Connection Time - Bağlantı Zamanı + Bağlantı Süresi Last Send @@ -1514,7 +1522,7 @@ Adres: %4 Ping Time - Ping Zamanı + Ping Süresi Last block time @@ -1557,16 +1565,16 @@ Adres: %4 Hata ayıklama kütük dosyası - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Güncel veri klasöründen Bitcoin hata ayıklama kütük dosyasını açar. Büyük kütük dosyaları için bu birkaç saniye alabilir. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Güncel veri klasöründen Hypercoin hata ayıklama kütük dosyasını açar. Büyük kütük dosyaları için bu birkaç saniye alabilir. Clear console Konsolu temizle - Welcome to the Bitcoin RPC console. - Bitcoin RPC konsoluna hoş geldiniz. + Welcome to the Hypercoin RPC console. + Hypercoin RPC konsoluna hoş geldiniz. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1640,8 +1648,8 @@ Adres: %4 &Hâlihazırda bulunan bir alım adresini kullan (önerilmez) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Talep açıldığında gösterilecek, isteğinize dayalı, ödeme talebi ile ilişkilendirilecek bir mesaj. Not: Bu mesaj ödeme ile birlikte Bitcoin şebekesi üzerinden gönderilmeyecektir. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Talep açıldığında gösterilecek, isteğinize dayalı, ödeme talebi ile ilişkilendirilecek bir mesaj. Not: Bu mesaj ödeme ile birlikte Hypercoin şebekesi üzerinden gönderilmeyecektir. An optional label to associate with the new receiving address. @@ -1790,7 +1798,7 @@ Adres: %4 SendCoinsDialog Send Coins - Bitcoin yolla + Hypercoin yolla Coin Control Features @@ -1877,8 +1885,8 @@ Adres: %4 toplam asgari - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. - Asgari ücreti ödemek, bloklarda boşluktan daha az muamele hacmi olduğu sürece bir sorun çıkarmaz. Fakat şebekenin işleyecebileceğinden daha çok bitcoin muameleleri talebi olduğunda bunun asla teyit edilmeyen bir muamele olabileceğinin farkında olmalısınız. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Asgari ücreti ödemek, bloklarda boşluktan daha az muamele hacmi olduğu sürece bir sorun çıkarmaz. Fakat şebekenin işleyecebileceğinden daha çok hypercoin muameleleri talebi olduğunda bunun asla teyit edilmeyen bir muamele olabileceğinin farkında olmalısınız. (read the tooltip) @@ -1984,10 +1992,6 @@ Adres: %4 Copy change Para üstünü kopyala - - Total Amount %1 (= %2) - Toplam meblağ %1 (= %2) - or veya @@ -2033,8 +2037,8 @@ Adres: %4 Tahmini olarak %1 blok içinde teyide başlanacaktır. - Warning: Invalid Bitcoin address - Uyarı: geçersiz Bitcoin adresi + Warning: Invalid Hypercoin address + Uyarı: geçersiz Hypercoin adresi (no label) @@ -2084,8 +2088,8 @@ Adres: %4 Bu, normal bir ödemedir. - The Bitcoin address to send the payment to - Ödemenin yollanacağı Bitcoin adresi + The Hypercoin address to send the payment to + Ödemenin yollanacağı Hypercoin adresi Alt+A @@ -2116,8 +2120,8 @@ Adres: %4 Kullanılmış adres listesine eklemek için bu adrese bir etiket girin - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Bitcoin: URI'siyle ilişkili ve bilginiz için muameleyle saklanacak bir mesaj. Not: Bu mesaj Bitcoin şebekesi üzerinden gönderilmeyecektir. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Hypercoin: URI'siyle ilişkili ve bilginiz için muameleyle saklanacak bir mesaj. Not: Bu mesaj Hypercoin şebekesi üzerinden gönderilmeyecektir. This is an unverified payment request. @@ -2135,8 +2139,8 @@ Adres: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Çekirdeği kapanıyor... + Hypercoin Core is shutting down... + Hypercoin Çekirdeği kapanıyor... Do not shut down the computer until this window disappears. @@ -2158,8 +2162,8 @@ Adres: %4 Bir adresin sizin olduğunu ispatlamak için adresinizle mesaj imzalayabilirsiniz. Oltalama saldırılarının kimliğinizi imzanızla elde etmeyi deneyebilecekleri için belirsiz hiçbir şey imzalamamaya dikkat ediniz. Sadece ayrıntılı açıklaması olan ve tümüne katıldığınız ifadeleri imzalayınız. - The Bitcoin address to sign the message with - Mesajın imzalanmasında kullanılacak Bitcoin adresi + The Hypercoin address to sign the message with + Mesajın imzalanmasında kullanılacak Hypercoin adresi Choose previously used address @@ -2190,8 +2194,8 @@ Adres: %4 Güncel imzayı sistem panosuna kopyala - Sign the message to prove you own this Bitcoin address - Bu Bitcoin adresinin sizin olduğunu ispatlamak için mesajı imzalayın + Sign the message to prove you own this Hypercoin address + Bu Hypercoin adresinin sizin olduğunu ispatlamak için mesajı imzalayın Sign &Message @@ -2214,12 +2218,12 @@ Adres: %4 İmza için kullanılan adresi, mesajı (satır sonları, boşluklar, sekmeler vs. karakterleri tam olarak kopyaladığınızdan emin olunuz) ve imzayı aşağıda giriniz. Bir ortadaki adam saldırısı tarafından kandırılmaya mâni olmak için imzadan, imzalı mesajın içeriğini aşan bir anlam çıkarmamaya dikkat ediniz. - The Bitcoin address the message was signed with - Mesajın imzalanmasında kullanılan Bitcoin adresi + The Hypercoin address the message was signed with + Mesajın imzalanmasında kullanılan Hypercoin adresi - Verify the message to ensure it was signed with the specified Bitcoin address - Belirtilen Bitcoin adresi ile imzalandığını doğrulamak için mesajı kontrol et + Verify the message to ensure it was signed with the specified Hypercoin address + Belirtilen Hypercoin adresi ile imzalandığını doğrulamak için mesajı kontrol et Verify &Message @@ -2285,8 +2289,8 @@ Adres: %4 SplashScreen - Bitcoin Core - Bitcoin Çekirdeği + Hypercoin Core + Hypercoin Çekirdeği The Bitcoin Core developers @@ -2416,7 +2420,7 @@ Adres: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Oluşturulan bitcoin'lerin harcanabilmelerinden önce %1 blok beklemeleri gerekmektedir. Bu blok, oluşturduğunuzda, blok zincirine eklenmesi için ağda yayınlandı. Zincire eklenmesi başarısız olursa, durumu "kabul edilmedi" olarak değiştirilecek ve harcanamayacaktır. Bu, bazen başka bir düğüm sizden birkaç saniye önce ya da sonra blok oluşturursa meydana gelebilir. + Oluşturulan hypercoin'lerin harcanabilmelerinden önce %1 blok beklemeleri gerekmektedir. Bu blok, oluşturduğunuzda, blok zincirine eklenmesi için ağda yayınlandı. Zincire eklenmesi başarısız olursa, durumu "kabul edilmedi" olarak değiştirilecek ve harcanamayacaktır. Bu, bazen başka bir düğüm sizden birkaç saniye önce ya da sonra blok oluşturursa meydana gelebilir. Debug information @@ -2734,7 +2738,7 @@ Adres: %4 WalletModel Send Coins - Bitcoin yolla + Hypercoin yolla @@ -2806,30 +2810,6 @@ Adres: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Dışarıdan gelen bağlantıları kabul et (varsayılan: -proxy veya -connect yoksa 1) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, şu yapılandırma dosyasında rpc parolası belirtmeniz gerekir: -%s -Aşağıdaki rastgele oluşturulan parolayı kullanmanız tavsiye edilir: -rpcuser=bitcoinrpc -rpcpassword=%s -(bu parolayı hatırlamanız gerekli değildir) -Kullanıcı ismi ile parolanın FARKLI olmaları gerekir. -Dosya mevcut değilse, sadece sahibi için okumayla sınırlı izin ile oluşturunuz. -Sorunlar hakkında bildiri almak için alertnotify unsurunu ayarlamanız tavsiye edilir; -mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Belirtilen adrese bağlan ve daima ondan dinle. IPv6 için [makine]:port yazımını kullanınız @@ -2846,14 +2826,6 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Blokların anında çözülebileceği özel bir zincir kullanan regresyon deneme kipine gir. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Hata: Muamele reddedildi! Cüzdanınızdaki madenî paraların bazıları zaten harcanmış olduğunda bu meydana gelebilir. Örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve kopyada para harcandığında ancak burada harcandığı işaretlenmediğinde. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Hata: Muamelenin meblağı, karmaşıklığı ya da yakın geçmişte alınan fonların kullanılması nedeniyle bu muamele en az %s tutarında ücret gerektirmektedir! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Bir cüzdan muamelesi değiştiğinde komutu çalıştır (komuttaki %s muamele kimliği ile değiştirilecektir) @@ -2868,11 +2840,11 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - Bu yayın öncesi bir deneme sürümüdür - tüm riski siz üstlenmiş olursunuz - bitcoin oluşturmak ya da ticari uygulamalar için kullanmayınız + Bu yayın öncesi bir deneme sürümüdür - tüm riski siz üstlenmiş olursunuz - hypercoin oluşturmak ya da ticari uygulamalar için kullanmayınız - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Bu bilgisayarda %s unsuruna bağlanılamadı. Bitcoin Çekirdeği muhtemelen hâlihazırda çalışmaktadır. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Bu bilgisayarda %s unsuruna bağlanılamadı. Hypercoin Çekirdeği muhtemelen hâlihazırda çalışmaktadır. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2958,18 +2930,10 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error opening block database Blok veritabanının açılışı sırasında hata - - Error: A fatal internal error occured, see debug.log for details - Hata: Ölümcül dahili bir hata meydana geldi, ayrıntılar için debug.log dosyasına bakınız - Error: Disk space is low! Hata: Disk alanı düşük! - - Error: Wallet locked, unable to create transaction! - Hata: Cüzdan kilitli, muamele oluşturulamadı! - Failed to listen on any port. Use -listen=0 if you want this. Herhangi bir portun dinlenmesi başarısız oldu. Bunu istiyorsanız -listen=0 seçeneğini kullanınız. @@ -3063,8 +3027,8 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Belirtilen adrese bağlan ve JSON RPC bağlantıları için dinlemeye geç. IPv6 için [makine]:port imlasını kullanınız. Bu seçenek birden çok kez belirtilebilir (varsayılan: tüm arayüzlere bağlan) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - %s veri dizininde kilit elde edilemedi. Bitcoin Çekirdeği muhtemelen hâlihazırda çalışmaktadır. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + %s veri dizininde kilit elde edilemedi. Hypercoin Çekirdeği muhtemelen hâlihazırda çalışmaktadır. Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) @@ -3087,41 +3051,89 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com İlgili bir uyarı alındığında ya da gerçekten uzun bir çatallama gördüğümüzde komutu çalıştır (komuttaki %s mesaj ile değiştirilir) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Kb başına BTC olarak bundan düşük ücretler aktarım için sıfır değerinde ücret olarak kabul edilir (varsayılan: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Kb başına HOT olarak bundan düşük ücretler aktarım için sıfır değerinde ücret olarak kabul edilir (varsayılan: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Kb başına HOT olarak bundan düşük ücretler muamele oluşturulması için sıfır değerinde ücret olarak kabul edilir (varsayılan: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Eğer paytxfee ayarlanmadıysa kafi derecede ücret ekleyin ki muameleler teyite vasati n blok içinde başlasın (varsayılan: %u) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Kb başına BTC olarak bundan düşük ücretler muamele oluşturulması için sıfır değerinde ücret olarak kabul edilir (varsayılan: %s) + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + -maxtxfee=<tutar> için geçersiz tutar: '%s' (Sıkışmış muameleleri önlemek için en az %s değerinde asgari aktarım ücretine eşit olmalıdır) Maximum size of data in data carrier transactions we relay and mine (default: %u) Aktardığımız ve oluşturduğumuz veri taşıyıcı muamelelerindeki azami veri boyutu (varsayılan: %u) + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Tek cüzdan muamelesinde kullanılacak azami toplam ücret, çok düşük ayarlamak büyük muameleleri iptal edebilir (varsayılan: %s) + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Adres sayısı azaldıysa DNS sorgulamasıyla eş adresleri ara (varsayılan: 1 -connect kullanılmadıysa) + + Require high priority for relaying free or low-fee transactions (default:%u) + Ücretsiz ya da düşük ücretli muamelelerin geçişi için yüksek öncelik iste (varsayılan: %u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Yüksek öncelikli/düşük ücretli muamelelerin azami boyutunu bayt olarak ayarla (varsayılan: %d) Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) - Etkinse bitcoin oluşuturulmasına atanan iş parçacığı sayısını ayarla (-1 = tüm çekirdekler, varsayılan: %d) + Etkinse hypercoin oluşuturulmasına atanan iş parçacığı sayısını ayarla (-1 = tüm çekirdekler, varsayılan: %d) This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Bu ürün OpenSSL projesi tarafından OpenSSL araç takımı (http://www.openssl.org/) için geliştirilen yazılımlar, Eric Young (eay@cryptsoft.com) tarafından hazırlanmış şifreleme yazılımları ve Thomas Bernard tarafından programlanmış UPnP yazılımı içerir. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Uyarı: Lütfen bilgisayarınızın saat ve tarihinin doğru olduğunu kontol ediniz! Saatinizde gecikme varsa Bitcoin Çekirdeği doğru şekilde çalışamaz. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + hypercoind ya da hypercoin-qt ile -server seçeneğini kullanmak için yapılandırma dosyasında bir rpc parolası belirtmeniz gerekir: +%s +Aşağıdaki rastgele oluşturulan parolayı kullanmanız tavsiye edilir: +rpcuser=hypercoinrpc +rpcpassword=%s +(bu parolayı hatırlamanız gerekli değildir) +Kullanıcı ismi ile parolanın FARKLI olmaları gerekir. +Dosya mevcut değilse, sadece sahibi için okumayla sınırlı izin ile oluşturunuz. +Sorunlar hakkında bildiri almak için alertnotify unsurunu ayarlamanız tavsiye edilir; +mesela: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + İkaz: -maxtxfee çok yüksek bir değere ayarlanmış! Bu denli yüksek ücretler tek bir muamelede ödenebilir. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Uyarı: Lütfen bilgisayarınızın saat ve tarihinin doğru olduğunu kontol ediniz! Saatinizde gecikme varsa Hypercoin Çekirdeği doğru şekilde çalışamaz. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Beyaz listeye alınan eşler DoS yasaklamasına uğramazlar ve muameleleri zaten mempool'da olsalar da daima aktarılır, bu mesela bir geçit için kullanışlıdır + + Accept public REST requests (default: %u) + Herkese açık REST taleplerini kabul et (varsayılan: %u) + Cannot resolve -whitebind address: '%s' -whitebind adresi çözümlenemedi: '%s' @@ -3139,24 +3151,32 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com -rpcbind değeri %s şebeke adresi olarak ayrıştırılamadı - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - wallet.dat dosyasının yüklenmesinde hata: Cüzdan Bitcoin Çekirdeğinin daha yeni bir sürümünü gerektirmektedir + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + wallet.dat dosyasının yüklenmesinde hata: Cüzdan Hypercoin Çekirdeğinin daha yeni bir sürümünü gerektirmektedir + + + Error reading from database, shutting down. + Veritabanından okumada hata, kapatılıyor. Error: Unsupported argument -tor found, use -onion. Hata: Deskteklenmeyen -tor argümanı bulundu, -onion kullanınız. - Fee (in BTC/kB) to add to transactions you send (default: %s) - Yolladığınız muamelelere kB başına BTC olarak eklenecek ücret (varsayılan: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Yolladığınız muamelelere kB başına HOT olarak eklenecek ücret (varsayılan: %s) Information Bilgi - Initialization sanity check failed. Bitcoin Core is shutting down. - Başlatma sınaması başarısız oldu. Bitcoin Çekirdeği kapatılıyor. + Initialization sanity check failed. Hypercoin Core is shutting down. + Başlatma sınaması başarısız oldu. Hypercoin Çekirdeği kapatılıyor. + + + Invalid amount for -maxtxfee=<amount>: '%s' + -maxtxfee=<tutar> için geçersiz tutar: '%s' Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -3174,10 +3194,6 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid netmask specified in -whitelist: '%s' -whitelist: '%s' unsurunda geçersiz bir ağ maskesi belirtildi - - Keep at most <n> unconnectable blocks in memory (default: %u) - Hafızada en çok <n> bağlanılamaz blok tut (varsaylan: %u) - Keep at most <n> unconnectable transactions in memory (default: %u) Hafızada en çok <n> bağlanılamaz muamele tut (varsayılan: %u) @@ -3191,17 +3207,17 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Düğüm röle seçenekleri: - Print block on startup, if found in block index - Başlangıçta bloğu göster, blok indeksinde bulunduysa - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - RPC SSL seçenekleri: (SSL kurulumu yönergeleri için Bitcoin vikisine bakınız) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + RPC SSL seçenekleri: (SSL kurulumu yönergeleri için Hypercoin vikisine bakınız) RPC server options: RPC sunucu seçenekleri: + + RPC support for HTTP persistent connections (default: %d) + Kalıcı HTTP bağlantıları için RPC desteği (varsayılan: %d) + Randomly drop 1 of every <n> network messages Her <n> şebeke mesajından rastgele 1 mesajı görmezden gel @@ -3242,6 +3258,10 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Transaction amounts must be positive Muamele tutarının pozitif olması lazımdır + + Transaction too large for fee policy + Ücret politikası için çok büyük muamele + Transaction too large Muamele çok büyük @@ -3259,8 +3279,8 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com JSON-RPC bağlantıları için kullanıcı ismi - Wallet needed to be rewritten: restart Bitcoin Core to complete - Cüzdanın tekrar yazılması gerekmektedir: tamamlamak için Bitcoin Çekirdeğini yeniden başlatın + Wallet needed to be rewritten: restart Hypercoin Core to complete + Cüzdanın tekrar yazılması gerekmektedir: tamamlamak için Hypercoin Çekirdeğini yeniden başlatın Warning @@ -3338,10 +3358,6 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com How thorough the block verification of -checkblocks is (0-4, default: %u) -checkblocks'un blok kontrolünün ne kadar kapsamlı olacağı (0 ilâ 4, varsayılan: %u) - - If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u) - Eğer paytxfee ayarlanmadıysa, kafi derecede ücret ekleyin ki muameleler vasati n blok içinde teyit edilsin (varsayılan: %u) - Log transaction priority and fee per kB when mining blocks (default: %u) Blok oluşturulduğunda muamele önceliğini ve kB başı ücreti kütüğe al (varsayılan: %u) @@ -3388,7 +3404,7 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Generate coins (default: %u) - Bitcoin oluştur (varsayılan: %u) + Hypercoin oluştur (varsayılan: %u) How many blocks to check at startup (default: %u, 0 = all) @@ -3434,10 +3450,6 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Prepend debug output with timestamp (default: %u) Hata ayıklama verilerinin önüne zaman damgası ekle (varsayılan: %u) - - Print block tree on startup (default: %u) - Başlangıçta blok ağacını göster (varsayılan: %u) - Relay and mine data carrier transactions (default: %u) Veri taşıyıcı muameleleri oluştur ve aktar (varsayılan: %u) @@ -3514,10 +3526,6 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' -paytxfee=<meblağ> için geçersiz meblağ: '%s' - - Invalid amount - Geçersiz meblağ - Insufficient funds Yetersiz bakiye @@ -3550,13 +3558,9 @@ mesela: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading Yükleme tamamlandı - - To use the %s option - %s seçeneğini kullanmak için - Error Hata - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index 9b5f4c9f4e78e..43f6701369bd6 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - Двічі клікніть на адресу чи назву для їх зміни + Right-click to edit address or label + Клікніть правою кнопкою для редагування адреси або мітки Create a new address @@ -66,12 +66,12 @@ Адреси для отримання - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Це ваші Bitcoin-адреси для відправлення платежів. Перед відправленням монет завжди перевіряйте суму та адресу прийому. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Це ваші Hypercoin-адреси для відправлення платежів. Перед відправленням монет завжди перевіряйте суму та адресу прийому. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Це ваша нова Bitcoin адреса для отримування платежів. Рекомендовано використовувати нову адресу для кожної транзакції. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Це ваша нова Hypercoin адреса для отримання платежів. Рекомендовано використовувати нову адресу для кожної транзакції. Copy &Label @@ -164,7 +164,7 @@ Підтвердити шифрування гаманця - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! УВАГА: Якщо ви зашифруєте гаманець і забудете пароль, ви <b>ВТРАТИТЕ ВСІ СВОЇ БІТКОІНИ</b>! @@ -173,7 +173,7 @@ IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - ВАЖЛИВО: Всі попередні резервні копії, які ви зробили з вашого файлу гаманця повинні бути замінені новоствореним, зашифрованим файлом гаманця. З міркувань безпеки, попередні резервні копії незашифрованого файла гаманця стануть марними одразу ж, як тільки ви почнете використовувати новий, зашифрований гаманець. + ВАЖЛИВО: Всі попередні резервні копії, які ви зробили з вашого файлу гаманця повинні бути замінені новоствореним, зашифрованим файлом гаманця. З міркувань безпеки, попередні резервні копії незашифрованого файла гаманця стануть непридатними одразу ж, як тільки ви почнете використовувати новий, зашифрований гаманець. Warning: The Caps Lock key is on! @@ -185,10 +185,10 @@ Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. - Введіть нову кодову фразу для гаманця.<br/>Будь ласка, використовуйте кодові фрази що містять <b> як мінімум десять випадкових символів </b> або <b> як мінімум вісім слів </b>. + Введіть нову кодову фразу для гаманця.<br/>Будь ласка, використовуйте кодові фрази що містять <b> щонайменше десять випадкових символів </b> або <b> щонайменше вісім слів </b>. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. Біткоін-клієнт буде закрито для завершення процесу шифрування. Пам'ятайте, що шифрування гаманця не може повністю захистити ваші біткоіни від крадіжки, у випадку якщо ваш комп'ютер буде інфіковано шкідливими програмами. @@ -240,11 +240,11 @@ Show general overview of wallet - Показати загальний огляд гаманця + Показати стан гаманця &Transactions - Транзакції + &Транзакції Browse transaction history @@ -295,8 +295,8 @@ Відкрити &URI - Bitcoin Core client - Клієнт «Bitcoin Core» + Hypercoin Core client + Клієнт «Hypercoin Core» Importing blocks from disk... @@ -307,11 +307,11 @@ Переіндексація блоків на диску ... - Send coins to a Bitcoin address + Send coins to a Hypercoin address Відправити монети на вказану адресу - Modify configuration options for Bitcoin + Modify configuration options for Hypercoin Редагувати параметри @@ -324,7 +324,7 @@ &Debug window - Вікно зневадження + В&ікно зневадження Open debugging and diagnostic console @@ -335,8 +335,8 @@ П&еревірити повідомлення... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,12 +351,12 @@ &Отримати - Show information about Bitcoin Core - Показати інформацію про Bitcoin Core + Show information about Hypercoin Core + Показати інформацію про Hypercoin Core &Show / Hide - Показати / Приховати + Показа&ти / Приховати Show or hide the main Window @@ -364,15 +364,15 @@ Encrypt the private keys that belong to your wallet - Шифрування закритих ключів, які належать вашому гаманці + Зашифрувати закриті ключі, що знаходяться у вашому гаманці - Sign messages with your Bitcoin addresses to prove you own them - Підтвердіть, що Ви є власником повідомлення підписавши його Вашою Bitcoin-адресою + Sign messages with your Hypercoin addresses to prove you own them + Підтвердіть, що Ви є власником повідомлення підписавши його Вашою Hypercoin-адресою - Verify messages to ensure they were signed with specified Bitcoin addresses - Перевірте повідомлення для впевненості, що воно підписано вказаною Bitcoin-адресою + Verify messages to ensure they were signed with specified Hypercoin addresses + Перевірте повідомлення для впевненості, що воно підписано вказаною Hypercoin-адресою &File @@ -391,16 +391,16 @@ Панель вкладок - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Створити запит платежу (генерує QR-код та bitcoin: URI) + Request payments (generates QR codes and hypercoin: URIs) + Створити запит платежу (генерує QR-код та hypercoin: URI) - &About Bitcoin Core - &Про Bitcoin Core + &About Hypercoin Core + П&ро Hypercoin Core Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Показати список адрес і міток, що були використані для отримання - Open a bitcoin: URI or payment request - Відкрити bitcoin: URI чи запит платежу + Open a hypercoin: URI or payment request + Відкрити hypercoin: URI чи запит платежу &Command-line options - Параметри командного рядка + П&араметри командного рядка - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Показати довідку Bitcoin Core для отримання переліку можливих параметрів командного рядка. + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Показати довідку Hypercoin Core для отримання переліку можливих параметрів командного рядка. - %n active connection(s) to Bitcoin network - %n активне з'єднання з мережею%n активні з'єднання з мережею%n активних з'єднань з мережею Bitcoin + %n active connection(s) to Hypercoin network + %n активне з'єднання з мережею Hypercoin%n активні з'єднання з мережею Hypercoin%n активних з'єднань з мережею Hypercoin No block source available... @@ -452,7 +452,7 @@ %1 behind - %1 позаду + %1 тому Last received block was generated %1 ago. @@ -538,7 +538,7 @@ Address: %4 Amount: - Кількість: + Сума: Priority: @@ -610,11 +610,11 @@ Address: %4 Copy amount - Копіювати кількість + Скопіювати суму Copy transaction ID - Копіювати ID транзакції + Скопіювати ID транзакції Lock unspent @@ -626,31 +626,31 @@ Address: %4 Copy quantity - Копіювати кількість + Скопіювати кількість Copy fee - Копіювати комісію + Скопіювати комісію Copy after fee - Копіювати після комісії + Скопіювати після комісії Copy bytes - Копіювати байти + Скопіювати байти Copy priority - Копіювати пріорітет + Скопіювати пріорітет Copy dust - Копіювати пил + Скопіювати пил Copy change - Копіювати решту + Скопіювати решту highest @@ -710,7 +710,7 @@ Address: %4 This label turns red, if the transaction size is greater than 1000 bytes. - Ця позначка буде червоною, якщо розмір транзакції вищий за 1000 байт. + Ця позначка буде червоною, якщо розмір транзакції вищий за 1000 байтів. This means a fee of at least %1 per kB is required. @@ -788,8 +788,8 @@ Address: %4 Введена адреса «%1» вже присутня в адресній книзі. - The entered address "%1" is not a valid Bitcoin address. - Введена адреса «%1» не є коректною адресою в мережі Bitcoin. + The entered address "%1" is not a valid Hypercoin address. + Введена адреса «%1» не є коректною адресою в мережі Hypercoin. Could not unlock wallet. @@ -804,7 +804,7 @@ Address: %4 FreespaceChecker A new data directory will be created. - Буде створена новий каталог даних. + Буде створено новий каталог даних. name @@ -826,8 +826,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -838,8 +838,8 @@ Address: %4 (%1-бітний) - About Bitcoin Core - Про Bitcoin Core + About Hypercoin Core + Про Hypercoin Core Command-line options @@ -885,16 +885,16 @@ Address: %4 Вітання - Welcome to Bitcoin Core. - Ласкаво просимо в Bitcoin Core. + Welcome to Hypercoin Core. + Ласкаво просимо в Hypercoin Core. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Оскільки це перший запуск програми, ви можете обрати де Bitcoin Core буде зберігати дані. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Оскільки це перший запуск програми, ви можете обрати де Hypercoin Core буде зберігати дані. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core завантажить та збереже копію ланцюжка блоків Bitcoin. Щонайменше %1ГБ даних буде збережено в цьому каталозі. Гаманець теж буде збережено в цьому каталозі. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core завантажить та збереже копію ланцюжка блоків Hypercoin. Щонайменше %1ГБ даних буде збережено в цьому каталозі. Гаманець теж буде збережено в цьому каталозі. Use the default data directory @@ -905,8 +905,8 @@ Address: %4 Використовувати свій каталог даних: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. @@ -959,11 +959,11 @@ Address: %4 &Головні - Automatically start Bitcoin after logging in to the system. + Automatically start Hypercoin after logging in to the system. Автоматично запускати гаманець при вході до системи. - &Start Bitcoin on system login + &Start Hypercoin on system login &Запускати гаманець при вході в систему @@ -976,7 +976,7 @@ Address: %4 Number of script &verification threads - Кількість потоків сценарію перевірки + Кількість потоків &сценарію перевірки Accept connections from outside @@ -1008,7 +1008,7 @@ Address: %4 &Reset Options - Скинути параметри + С&кинути параметри &Network @@ -1039,7 +1039,7 @@ Address: %4 &Витрачати непідтверджену решту - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. Автоматично відкривати порт для клієнту біткоін на роутері. Працює лише якщо ваш роутер підтримує UPnP і ця функція увімкнена. @@ -1047,8 +1047,8 @@ Address: %4 Відображення порту через &UPnP - Connect to the Bitcoin network through a SOCKS5 proxy. - Підключення до мережі Bitcoin через SOCKS5 проксі. + Connect to the Hypercoin network through a SOCKS5 proxy. + Підключення до мережі Hypercoin через SOCKS5 проксі. &Connect through SOCKS5 proxy (default proxy): @@ -1095,8 +1095,8 @@ Address: %4 Мов&а інтерфейсу користувача: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Встановлює мову інтерфейсу. Зміни набудуть чинності після перезапуску Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Встановлює мову інтерфейсу. Зміни набудуть чинності після перезапуску Hypercoin. &Unit to show amounts in: @@ -1154,8 +1154,8 @@ Address: %4 Форма - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Показана інформація вже може бути застарілою. Ваш гаманець буде автоматично синхронізовано з мережею Bitcoin після встановлення підключення, але цей процес ще не завершено. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Показана інформація вже може бути застарілою. Ваш гаманець буде автоматично синхронізовано з мережею Hypercoin після встановлення підключення, але цей процес ще не завершено. Watch-only: @@ -1261,16 +1261,16 @@ Address: %4 Помилка запиту платежу - Cannot start bitcoin: click-to-pay handler - Неможливо запустити bitcoin: обробник click-to-pay + Cannot start hypercoin: click-to-pay handler + Неможливо запустити hypercoin: обробник click-to-pay Payment request fetch URL is invalid: %1 URL запиту платежу є некоректним: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - Неможливо обробити URI! Причиною цього може бути некоректна Bitcoin-адреса або неправильні параметри URI. + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + Неможливо обробити URI! Причиною цього може бути некоректна Hypercoin-адреса або неправильні параметри URI. Payment request file handling @@ -1288,6 +1288,14 @@ Address: %4 Refund from %1 Відшкодування з %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Запит платежу %1 занадто великий (%2 байт, дозволено %3 байт). + + + Payment request DoS protection + Оплата потребує захисту DoS + Error communicating with %1: %2 Помилка зв'язку з %1: %2 @@ -1331,8 +1339,8 @@ Address: %4 Кількість - Enter a Bitcoin address (e.g. %1) - Введіть адресу Bitcoin (наприклад %1) + Enter a Hypercoin address (e.g. %1) + Введіть адресу Hypercoin (наприклад %1) %1 d @@ -1522,11 +1530,11 @@ Address: %4 &Open - Відкрити + &Відкрити &Console - Консоль + &Консоль &Network Traffic @@ -1557,16 +1565,16 @@ Address: %4 Файл звіту зневадження - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Відкрийте файл журналу налагодження Bitcoin з поточного каталогу даних. Це може зайняти кілька секунд для великих файлів журналів. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Відкрийте файл журналу налагодження Hypercoin з поточного каталогу даних. Це може зайняти кілька секунд для великих файлів журналів. Clear console Очистити консоль - Welcome to the Bitcoin RPC console. - Вітаємо у консолі Bitcoin RPC. + Welcome to the Hypercoin RPC console. + Вітаємо у консолі Hypercoin RPC. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1640,8 +1648,8 @@ Address: %4 По&вторно використати адресу для отримання (не рекомендується) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - Необов'язкове повідомлення на додаток до запиту платежу, котре буде показане під час відкриття запиту. Примітка: Це повідомлення не буде відправлено з платежем через мережу Bitcoin. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + Необов'язкове повідомлення на додаток до запиту платежу, котре буде показане під час відкриття запиту. Примітка: Це повідомлення не буде відправлено з платежем через мережу Hypercoin. An optional label to associate with the new receiving address. @@ -1708,11 +1716,11 @@ Address: %4 Copy &URI - Скопіювати URI + &Скопіювати URI Copy &Address - Скопіювати адресу + Скопіювати &адресу &Save Image... @@ -1830,7 +1838,7 @@ Address: %4 After Fee: - Після комісії + Після комісії: Change: @@ -1862,7 +1870,7 @@ Address: %4 If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Якщо оплата користувача встановлюється в 1000 Satoshi і розмір передачі всього 250 байт, то "за кілобайт" платить тільки 250 Satoshi, в той час як "щонайменше" платить 1000 satoshis. Для передач більших, ніж кілобайт обоє платять за кілобайт. + Якщо комісія встановлюється в 1000 сатоші і розмір транзакції лише 250 байтів, то опція "за кілобайт" встановлює комісію в 250 сатоші, в той час, як "щонайменше" - в 1000 сатоші. Для транзакцій більших за кілобайт в обох випадках буде знято комісію за кілобайт. per kilobyte @@ -1870,15 +1878,15 @@ Address: %4 If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Якщо оплата користувача встановлюється в 1000 Satoshi і розмір передачі всього 250 байт, то "за кілобайт" платить тільки 250 Satoshi, в той час як "всього щонайменше" платить 1000 satoshis. Для передач більших, ніж кілобайт обоє платять за кілобайт. + Якщо комісія встановлюється в 1000 сатоші і розмір транзакції лише 250 байтів, то опція "за кілобайт" встановлює комісію в 250 сатоші, в той час, як "всього щонайменше" - в 1000 сатоші. Для транзакцій більших за кілобайт в обох випадках буде знято комісію за кілобайт. total at least всього щонайменше - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for bitcoin transactions than the network can process. - Оплата тільки мінімальних зборів є прийнятною до тих пір, як обсяг транзакцій там є меншим аніж простору в блоках. Але майте на увазі, що це може анулювати транзакцію, якщо попит на Bitcoin транзакції стане значно більшим, ніж мережа зможе обробити. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + Оплата тільки мінімальної комісії є прийнятною, допоки обсяг транзакцій є меншим простору в блоках. Але майте на увазі, що це може анулювати транзакцію, якщо попит на Hypercoin транзакції стане більшим, ніж мережа зможе обробити. (read the tooltip) @@ -1894,7 +1902,7 @@ Address: %4 (Smart fee not initialized yet. This usually takes a few blocks...) - (Розумна оплата ще не ініціалізована. Це звичайно займає кілька блоків...) + (Розумну оплату ще не ініціалізовано. Це, зазвичай, триває кілька блоків...) Confirmation time: @@ -1910,7 +1918,7 @@ Address: %4 Send as zero-fee transaction if possible - Надіслати як нульовий плата за передачу, якщо це можливо + Надіслати транзакцію без сплати комісії, якщо це можливо (confirmation may take longer) @@ -1962,7 +1970,7 @@ Address: %4 Copy amount - Копіювати кількість + Копіювати суму Copy fee @@ -1985,8 +1993,8 @@ Address: %4 Копіювати решту - Total Amount %1 (= %2) - Всього %1 (= %2) + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + Всього %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> or @@ -1994,7 +2002,7 @@ Address: %4 The recipient address is not valid, please recheck. - Адреса отримувача невірна, будь ласка перепровірте. + Адреса отримувача неправильна; будь ласка, перевірте її. The amount to pay must be larger than 0. @@ -2026,15 +2034,15 @@ Address: %4 Pay only the minimum fee of %1 - Платити тільки мінімальний збір у розмірі %1 + Платити тільки мінімальну комісію у розмірі %1 Estimated to begin confirmation within %1 block(s). Розрахунковий початок підтвердження протягом %1 блоку(ів). - Warning: Invalid Bitcoin address - Увага: Неправильна Bitcoin-адреса + Warning: Invalid Hypercoin address + Увага: Неправильна Hypercoin-адреса (no label) @@ -2084,8 +2092,8 @@ Address: %4 Це звичайний платіж. - The Bitcoin address to send the payment to - Адреса Bitcoin для відправлення платежу + The Hypercoin address to send the payment to + Адреса Hypercoin для відправлення платежу Alt+A @@ -2116,8 +2124,8 @@ Address: %4 Введіть мітку для цієї адреси для додавання її в список використаних адрес - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - Повідомлення, що було додане до bitcoin:URI та буде збережено разом з транзакцією для довідки. Примітка: Це повідомлення не буде відправлено в мережу Bitcoin. + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + Повідомлення, що було додане до hypercoin:URI та буде збережено разом з транзакцією для довідки. Примітка: Це повідомлення не буде відправлено в мережу Hypercoin. This is an unverified payment request. @@ -2135,8 +2143,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - Bitcoin Core вимикається... + Hypercoin Core is shutting down... + Hypercoin Core вимикається... Do not shut down the computer until this window disappears. @@ -2158,8 +2166,8 @@ Address: %4 Ви можете підписувати повідомлення зі своїми адресами, щоб довести, що ви є їх власником. Остерігайтеся підписувати будь-що незрозуміле, так як за допомогою фішинг-атаки вас можуть спробувати обдурити для отримання вашого підпису під чужими словами. Підписуйте тільки ті повідомлення, з якими ви повністю згодні. - The Bitcoin address to sign the message with - Адреса Bitcoin для підпису цього повідомлення + The Hypercoin address to sign the message with + Адреса Hypercoin для підпису цього повідомлення Choose previously used address @@ -2190,7 +2198,7 @@ Address: %4 Копіювати поточну сигнатуру до системного буферу обміну - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address Підпишіть повідомлення щоб довести, що ви є власником цієї адреси @@ -2207,23 +2215,23 @@ Address: %4 &Verify Message - Перевірити повідомлення + П&еревірити повідомлення Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Введіть нижче адресу підпису, повідомлення (впевніться, що ви точно скопіювали символи завершення рядку, табуляцію, пробіли тощо) та підпис для перевірки повідомлення. Впевніться, що в підпис не було додано зайвих символів: це допоможе уникнути атак типу «людина посередині». - The Bitcoin address the message was signed with - Адреса Bitcoin, якою було підписано це повідомлення + The Hypercoin address the message was signed with + Адреса Hypercoin, якою було підписано це повідомлення - Verify the message to ensure it was signed with the specified Bitcoin address - Перевірте повідомлення для впевненості, що воно підписано вказаною Bitcoin-адресою + Verify the message to ensure it was signed with the specified Hypercoin address + Перевірте повідомлення для впевненості, що воно підписано вказаною Hypercoin-адресою Verify &Message - Перевірити повідомлення + Пере&вірити повідомлення Reset all verify message fields @@ -2285,8 +2293,8 @@ Address: %4 SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -2428,7 +2436,7 @@ Address: %4 Inputs - витрати + Входи Amount @@ -2641,11 +2649,11 @@ Address: %4 Copy amount - Копіювати кількість + Скопіювати суму Copy transaction ID - Копіювати ID транзакції + Скопіювати ID транзакції Edit label @@ -2806,30 +2814,6 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) Приймати підключення ззовні (типово: 1 за відсутності -proxy чи -connect) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, ви повинні встановити rpcpassword в файлі конфігурації: -%s -Рекомендується використати такий випадковий пароль: -rpcuser=bitcoinrpc -rpcpassword=%s -(ви не повинні пам'ятати цей пароль) -Ім’я користувача та пароль ПОВИННІ бути різними. -Якщо файлу не існує, створіть його, обмеживши доступ правом читання для власника. -Також рекомендується використовувати alertnotify для того, щоб отримувати сповіщення про проблеми; -наприклад: alertnotify=echo %%s | mail -s "Сповіщення Bitcoin" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 Прив'язатися до даної адреси та прослуховувати її. Використовуйте запис виду [хост]:порт для IPv6 @@ -2846,14 +2830,6 @@ rpcpassword=%s Enter regression test mode, which uses a special chain in which blocks can be solved instantly. Ввійти в режим регресивного тестування, що використовує спеціальний ланцюг з миттєвим знаходженням блоків. - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Помилка: транзакцію було відхилено. Це може статись, якщо декілька монет з вашого гаманця вже використані, наприклад, якщо ви використовуєте одну копію гаманця (wallet.dat), а монети були використані з іншої копії, але не позначені як використані в цій. - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - Помилка: Ця транзакція потребує додавання комісії щонайменше в %s через її розмір, складність, або внаслідок використання недавно отриманих коштів! - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Виконати команду, коли транзакція гаманця зміниться (замість %s в команді буде підставлено ідентифікатор транзакції) @@ -2871,8 +2847,8 @@ rpcpassword=%s Це тестова збірка пре-релізної версії - використовуйте на свій страх і ризик - не застосовувати для добування монет або торгівлі - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - Неможливо прив'язатися до %s на цьому комп'ютері. Можливо, Bitcoin Core вже запущено. + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + Неможливо прив'язатися до %s на цьому комп'ютері. Можливо, Hypercoin Core вже запущено. Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2916,7 +2892,7 @@ rpcpassword=%s Connect only to the specified node(s) - Підключитись лише до вказаного вузла + Підключитись лише до вказаного вузла/вузлів Connection options: @@ -2958,18 +2934,10 @@ rpcpassword=%s Error opening block database Помилка відкриття блоку бази даних - - Error: A fatal internal error occured, see debug.log for details - Помилка: Сталася фатальна помилка (детальніший опис наведено в debug.log) - Error: Disk space is low! Помилка: Мало вільного місця на диску! - - Error: Wallet locked, unable to create transaction! - Помилка: Гаманець заблокований, неможливо створити транзакцію! - Failed to listen on any port. Use -listen=0 if you want this. Не вдалося слухати на жодному порту. Використовуйте -listen=0, якщо ви хочете цього. @@ -2996,7 +2964,7 @@ rpcpassword=%s Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Підключити тільки до вузлів в мережі <net> (ipv4, ipv6 або onion) + Підключатися тільки до вузлів в мережі <net> (ipv4, ipv6 або onion) Rebuild block chain index from current blk000??.dat files @@ -3063,8 +3031,8 @@ rpcpassword=%s Прив'язатися до даної адреси для прослуховування JSON-RPC підключень. Використовуйте запис виду [хост]:порт для IPv6. Цей параметр можна вказувати декілька разів (типово: прив'язуватися до всіх інтерфейсів) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - Не вдалося встановити блокування на каталог даних %s. Bitcoin Core, ймовірно, вже запущений. + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + Не вдалося встановити блокування на каталог даних %s. Hypercoin Core, ймовірно, вже запущений. Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) @@ -3087,21 +3055,37 @@ rpcpassword=%s Виконати команду при надходженні важливого сповіщення або при спостереженні тривалого розгалуження ланцюжка (замість %s буде підставлено повідомлення) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) - Комісії (в BTC/КБ), що менші за вказану, вважатимуться нульовими (для ретрансляції) (типово: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + Комісії (в HOT/КБ), що менші за вказану, вважатимуться нульовими (для ретрансляції) (типово: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Комісії (в HOT/КБ), що менші за вказану, вважатимуться нульовими (для створення транзакції) (типово: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Якщо параметр paytxfee не встановлено, включити комісію для отримання перших підтверджень транзакцій протягом n блоків (типово: %u) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) - Комісії (в BTC/КБ), що менші за вказану, вважатимуться нульовими (для створення транзакції) (типово: %s) + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Неприпустима сума для -maxtxfee = <amount>: «%s» ( плата повинна бути, принаймні %s, щоб запобігти зависанню транзакцій) Maximum size of data in data carrier transactions we relay and mine (default: %u) - Максимальний розмір даних в транзакціях носіїв даних, що ми передаємо і добуваємо (за замовчуванням: %u) + Максимальний розмір даних в транзакціях носіїв даних, що ми передаємо і добуваємо (типово: %u) + + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + Максимальна загальна комісія для використання в одній транзакції, установка занадто низької може скасувати великі транзакції (типово: %s) Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) Дізнаватися адреси учасників через DNS при замалій кількості відомих адрес (типово: 1 за відсутності -connect) + + Require high priority for relaying free or low-fee transactions (default:%u) + Вимагати високий пріоритет для ретрансляції транзакцій з низькою або нульовою комісією (типово: %u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) Встановити максимальний розмір транзакцій з високим пріоритетом та низькою комісією (в байтах) (типово: %d) @@ -3115,13 +3099,45 @@ rpcpassword=%s Цей продукт включає в себе програмне забезпечення, розроблене в рамках проекту OpenSSL <https://www.openssl.org/>, криптографічне програмне забезпечення, написане Еріком Янгом, та функції для роботи з UPnP, написані Томасом Бернардом. - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - Увага: будь ласка, перевірте дату і час на своєму комп'ютері! Якщо ваш годинник йде неправильно, Bitcoin Core може працювати некоректно. + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + Для використання hypercoind, або hypercoin-qt з параметром -server, ви повинні встановити rpcpassword в файлі конфігурації: +%s +Рекомендується використати такий випадковий пароль: +rpcuser=hypercoinrpc +rpcpassword=%s +(вам не треба запам'ятовувати цей пароль) +Ім'я користувача та пароль ПОВИННІ бути різними. +Якщо файлу не існує, створіть його, обмеживши доступ правом читання для власника. +Також рекомендується використовувати alertnotify для того, щоб отримувати сповіщення про проблеми; +наприклад: alertnotify=echo %%s | mail -s "Сповіщення Hypercoin" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + Увага: установлено дуже велике значення -maxtxfee! Такі великі комісії можуть бути сплачені в окремій транзакції. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + Увага: будь ласка, перевірте дату і час на своєму комп'ютері! Якщо ваш годинник йде неправильно, Hypercoin Core може працювати некоректно. Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Учасники, що знаходяться в білому списку, не можуть бути заблоковані за DoS та їхні транзакції завжди ретранслюватимуться (навіть якщо вони є в пам'яті), що може бути корисним, наприклад, для шлюзу + + Accept public REST requests (default: %u) + Приймати публічні REST-запити (типово: %u) + Cannot resolve -whitebind address: '%s' Не вдалося розпізнати адресу для -whitebind: «%s» @@ -3139,24 +3155,36 @@ rpcpassword=%s Неможливо розпізнати мережеву адресу для параметру -rpcbind (%s) - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Bitcoin Core + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + Помилка при завантаженні wallet.dat: Гаманець потребує новішої версії Hypercoin Core + + + Error reading from database, shutting down. + Помилка читання бази даних, припиняю роботу. + + + Error: A fatal internal error occurred, see debug.log for details + Помилка: Сталася фатальна помилка (детальніший опис наведено в debug.log) Error: Unsupported argument -tor found, use -onion. Помилка: Параметр -tor не підтримується, використовуйте -onion - Fee (in BTC/kB) to add to transactions you send (default: %s) - Комісія (в BTC/КБ), що додаватиметься до вихідних транзакцій (типово: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) + Комісія (в HOT/КБ), що додаватиметься до вихідних транзакцій (типово: %s) Information Інформація - Initialization sanity check failed. Bitcoin Core is shutting down. - Не вдалося пройти базові перевірки під час ініціалізації. Bitcoin Core буде вимкнено. + Initialization sanity check failed. Hypercoin Core is shutting down. + Не вдалося пройти базові перевірки під час ініціалізації. Hypercoin Core буде вимкнено. + + + Invalid amount for -maxtxfee=<amount>: '%s' + Неприпустима сума для -maxtxfee = <amount>: «%s» Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -3174,10 +3202,6 @@ rpcpassword=%s Invalid netmask specified in -whitelist: '%s' Вказано неправильну маску підмережі для -whitelist: «%s» - - Keep at most <n> unconnectable blocks in memory (default: %u) - Утримувати в пам'яті щонайбільше <n> блоків, не під'єднаних до основного ланцюжка (типово: %u) - Keep at most <n> unconnectable transactions in memory (default: %u) Утримувати в пам'яті щонайбільше <n> транзакцій, що споживають невідомі входи (типово: %u) @@ -3191,17 +3215,17 @@ rpcpassword=%s Параметри вузла ретрансляції: - Print block on startup, if found in block index - Роздрукувати блок під час запуску (якщо він буде знайдений в індексі) - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Параметри RPC SSL: (див. Bitcoin Wiki для налаштування SSL) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + Параметри RPC SSL: (див. Hypercoin Wiki для налаштування SSL) RPC server options: Параметри сервера RPC: + + RPC support for HTTP persistent connections (default: %d) + Підтримка RPC для постійних HTTP-з'єднань (типово: %d) + Randomly drop 1 of every <n> network messages Випадковим чином відкидати 1 з <n> мережевих повідомлень @@ -3210,13 +3234,17 @@ rpcpassword=%s Randomly fuzz 1 of every <n> network messages Випадковим чином пошкоджувати 1 з <n> мережевих повідомлень + + Receive and display P2P network alerts (default: %u) + Отримувати та відображати попередження з мережі (типово: %u) + Send trace/debug info to console instead of debug.log file Відсилати налагоджувальну інформацію на консоль, а не у файл debug.log Send transactions as zero-fee transactions if possible (default: %u) - Встановити операцію надсилання, як неоплатну операцію, якщо це можливо (за замовчуванням: %u) + Не сплачувати комісію за надсилання транзакцій, якщо це можливо (типово: %u) Show all debugging options (usage: --help -help-debug) @@ -3242,6 +3270,10 @@ rpcpassword=%s Transaction amounts must be positive Суми монет у транзакції мають бути позитивними + + Transaction too large for fee policy + Транзакція занадто велика для правил комісії + Transaction too large Транзакція занадто велика @@ -3259,8 +3291,8 @@ rpcpassword=%s Ім'я користувача для JSON-RPC-з'єднань - Wallet needed to be rewritten: restart Bitcoin Core to complete - Потрібно перезаписати гаманець: перезапустіть Bitcoin Core для завершення + Wallet needed to be rewritten: restart Hypercoin Core to complete + Потрібно перезаписати гаманець: перезапустіть Hypercoin Core для завершення Warning @@ -3338,10 +3370,6 @@ rpcpassword=%s How thorough the block verification of -checkblocks is (0-4, default: %u) Рівень ретельності перевірки блоків (0-4, типово: %u) - - If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u) - Якщо параметр paytxfee не встановлено, включити комісію, достатню для підтвердження транзакцій протягом n блоків (типово: %u) - Log transaction priority and fee per kB when mining blocks (default: %u) Записувати в лог-файл пріоритет транзакції та комісію за кБ під час добування блоків (типово: %u) @@ -3434,10 +3462,6 @@ rpcpassword=%s Prepend debug output with timestamp (default: %u) Доповнювати налагоджувальний вивід відміткою часу (типово: %u) - - Print block tree on startup (default: %u) - Роздрукувати дерево блоків під час запуску (типово: %u) - Relay and mine data carrier transactions (default: %u) Ретранслювати та створювати транзакції носіїв даних (типово: %u) @@ -3514,10 +3538,6 @@ rpcpassword=%s Invalid amount for -paytxfee=<amount>: '%s' Помилка у величині комісії -paytxfee=<amount>: «%s» - - Invalid amount - Некоректна кількість - Insufficient funds Недостатньо коштів @@ -3550,13 +3570,9 @@ rpcpassword=%s Done loading Завантаження завершене - - To use the %s option - Щоб використати опцію %s - Error Помилка - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ur_PK.ts b/src/qt/locale/bitcoin_ur_PK.ts index 86f3226269a38..4d1b6d1028805 100644 --- a/src/qt/locale/bitcoin_ur_PK.ts +++ b/src/qt/locale/bitcoin_ur_PK.ts @@ -1,18 +1,22 @@ - + AddressBookPage - Double-click to edit address or label - ایڈریس یا لیبل میں ترمیم کرنے پر ڈبل کلک کریں + Right-click to edit address or label + پتہ تبدیل کرے کے لیے دائیاں کلک کریں Create a new address - نیا ایڈریس بنائیں + نیا پتہ بنائیں &New نیا + + Copy the currently selected address to the system clipboard + سلیکٹڈ پتے کو کمپوٹر کی عارضی جگہ رکھیں + &Copy نقل @@ -25,18 +29,38 @@ &Copy Address کاپی پتہ + + Delete the currently selected address from the list + سلیکٹڈ پتے کو مٹائیں + + + Export the data in the current tab to a file + موجودہ ڈیٹا کو فائیل میں محفوظ کریں + &Export برآمد &Delete - مٹا + مٹائیں + + + Choose the address to send coins to + کوئین وصول کرنے والے کا پتہ + + + Choose the address to receive coins with + کوئین بھیجنے والے کا پتہ C&hoose چننا + + Sending addresses + جس پتے پر بھیجنے ہیں + AddressTableModel @@ -319,6 +343,10 @@ &Export برآمد + + Export the data in the current tab to a file + موجودہ ڈیٹا کو فائیل میں محفوظ کریں + bitcoin-core @@ -326,10 +354,6 @@ This help message یہ مدد کا پیغام - - Invalid amount - غلط رقم - Insufficient funds ناکافی فنڈز diff --git a/src/qt/locale/bitcoin_uz@Cyrl.ts b/src/qt/locale/bitcoin_uz@Cyrl.ts index 54e649aedef06..938838294f773 100644 --- a/src/qt/locale/bitcoin_uz@Cyrl.ts +++ b/src/qt/locale/bitcoin_uz@Cyrl.ts @@ -1,8 +1,8 @@ - + AddressBookPage - Double-click to edit address or label + Right-click to edit address or label Манзил ёки ёрлиқни таҳрирлаш учун икки марта босинг @@ -66,12 +66,12 @@ Қабул қилинадиган манзиллар - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - Улар тўловларни жўнатиш учун сизнинг Bitcoin манзилларингиз. Доимо тангаларни жўнатишдан олдин сумма ва қабул қилувчи манзилни текшириб кўринг. + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + Улар тўловларни жўнатиш учун сизнинг Hypercoin манзилларингиз. Доимо тангаларни жўнатишдан олдин сумма ва қабул қилувчи манзилни текшириб кўринг. - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Улар тўловларни қабул қилиш учун сизнинг Bitcoin манзилларингиз. Ҳар бир ўтказма учун янги қабул қилувчи манзилдан фойдаланиш тавсия қилинади. + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Улар тўловларни қабул қилиш учун сизнинг Hypercoin манзилларингиз. Ҳар бир ўтказма учун янги қабул қилувчи манзилдан фойдаланиш тавсия қилинади. Copy &Label @@ -164,8 +164,8 @@ Ҳамённи кодлашни тасдиқлаш - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - Диққат: Агар сиз ҳамёнингизни кодласангиз ва махфий сўзингизни унутсангиз, сиз <b>БАРЧА BITCOIN ПУЛЛАРИНГИЗНИ ЙЎҚОТАСИЗ</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + Диққат: Агар сиз ҳамёнингизни кодласангиз ва махфий сўзингизни унутсангиз, сиз <b>БАРЧА HYPERCOIN ПУЛЛАРИНГИЗНИ ЙЎҚОТАСИЗ</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ Ҳамёнга янги махфий сўз киритинг.<br/>Илтимос, <b>ўнта ёки тасодифий белгили</b> махфий сўздан фойдаланинг ёки <b>саккизта ёки кўпроқ сўзлар</b>дан фойдаланинг. - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - Bitcoin кодлаш жараёнини тугатиш учун ёпилади. Ёдда сақланг: ҳамёнингизни кодлаш компьютерингизни зарарлаган зарарли дастурлар томонидан bitcoin тангаларингизни ўғирланишидан тўлиқ ҳимоя қила олмайди. + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + Hypercoin кодлаш жараёнини тугатиш учун ёпилади. Ёдда сақланг: ҳамёнингизни кодлаш компьютерингизни зарарлаган зарарли дастурлар томонидан hypercoin тангаларингизни ўғирланишидан тўлиқ ҳимоя қила олмайди. Wallet encryption failed @@ -295,8 +295,8 @@ Интернет манзилни очиш - Bitcoin Core client - Bitcoin асос мижози + Hypercoin Core client + Hypercoin асос мижози Importing blocks from disk... @@ -307,12 +307,12 @@ Дискдаги блоклар қайта индексланмоқда... - Send coins to a Bitcoin address - Тангаларни Bitcoin манзилига жўнатиш + Send coins to a Hypercoin address + Тангаларни Hypercoin манзилига жўнатиш - Modify configuration options for Bitcoin - Bitcoin учун мослаш танловларини ўзгартириш + Modify configuration options for Hypercoin + Hypercoin учун мослаш танловларини ўзгартириш Backup wallet to another location @@ -335,8 +335,8 @@ Хабарни &тасдиқлаш... - Bitcoin - Bitcoin + Hypercoin + Hypercoin Wallet @@ -351,8 +351,8 @@ &Қабул қилиш - Show information about Bitcoin Core - Bitcoin Core ҳақидаги маълумотларни кўрсатиш + Show information about Hypercoin Core + Hypercoin Core ҳақидаги маълумотларни кўрсатиш &Show / Hide @@ -367,12 +367,12 @@ Ҳамёнингизга тегишли махфий калитларни кодлаш - Sign messages with your Bitcoin addresses to prove you own them - Bitcoin манзилидан унинг эгаси эканлигингизни исботлаш учун хабарлар ёзинг + Sign messages with your Hypercoin addresses to prove you own them + Hypercoin манзилидан унинг эгаси эканлигингизни исботлаш учун хабарлар ёзинг - Verify messages to ensure they were signed with specified Bitcoin addresses - Хабарларни махсус Bitcoin манзилларингиз билан ёзилганлигига ишонч ҳосил қилиш учун уларни тасдиқланг + Verify messages to ensure they were signed with specified Hypercoin addresses + Хабарларни махсус Hypercoin манзилларингиз билан ёзилганлигига ишонч ҳосил қилиш учун уларни тасдиқланг &File @@ -391,16 +391,16 @@ Ички ойналар асбоблар панели - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core - Request payments (generates QR codes and bitcoin: URIs) - Тўловлар (QR кодлари ва bitcoin ёрдамида яратишлар: URI’лар) сўраш + Request payments (generates QR codes and hypercoin: URIs) + Тўловлар (QR кодлари ва hypercoin ёрдамида яратишлар: URI’лар) сўраш - &About Bitcoin Core - Bitcoin Core &ҳақида + &About Hypercoin Core + Hypercoin Core &ҳақида Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ Фойдаланилган қабул қилинган манзиллар ва ёрлиқлар рўйхатини кўрсатиш - Open a bitcoin: URI or payment request - Bitcoin’ни очиш: URI ёки тўлов сўрови + Open a hypercoin: URI or payment request + Hypercoin’ни очиш: URI ёки тўлов сўрови &Command-line options &Буйруқлар сатри мосламалари - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - Мавжуд Bitcoin буйруқлар матни мосламалари билан Bitcoin Core ёрдам хабарларини олиш рўйхатини кўрсатиш + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + Мавжуд Hypercoin буйруқлар матни мосламалари билан Hypercoin Core ёрдам хабарларини олиш рўйхатини кўрсатиш - %n active connection(s) to Bitcoin network - %n та Bitcoin тармоғига фаол уланиш мавжуд + %n active connection(s) to Hypercoin network + %n та Hypercoin тармоғига фаол уланиш мавжуд No block source available... @@ -772,8 +772,8 @@ Address: %4 Киритилган "%1" манзили аллақачон манзил китобида. - The entered address "%1" is not a valid Bitcoin address. - Киритилган "%1" манзили тўғри Bitcoin манзили эмас. + The entered address "%1" is not a valid Hypercoin address. + Киритилган "%1" манзили тўғри Hypercoin манзили эмас. Could not unlock wallet. @@ -810,8 +810,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core version @@ -822,8 +822,8 @@ Address: %4 (%1-bit) - About Bitcoin Core - Bitcoin Core ҳақида + About Hypercoin Core + Hypercoin Core ҳақида Usage: @@ -857,16 +857,16 @@ Address: %4 Хуш келибсиз - Welcome to Bitcoin Core. - "Bitcoin Core"га хуш келибсиз. + Welcome to Hypercoin Core. + "Hypercoin Core"га хуш келибсиз. - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - Биринчи марта дастур ишга тушгани каби сиз Bitcoin Core маълумотларини жойлаштирадиган жойни танлашингиз мумкин. + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + Биринчи марта дастур ишга тушгани каби сиз Hypercoin Core маълумотларини жойлаштирадиган жойни танлашингиз мумкин. - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - Bitcoin Core юклаб олинади ва Bitcoin блок занжири нусхаси жойлаштирилади. Камида %1GB маълумот ушбу директорияга жойлаштирилади ва вақт давомида ўсиб боради. Ҳамён ҳам ушбу директорияда жойлашади. + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + Hypercoin Core юклаб олинади ва Hypercoin блок занжири нусхаси жойлаштирилади. Камида %1GB маълумот ушбу директорияга жойлаштирилади ва вақт давомида ўсиб боради. Ҳамён ҳам ушбу директорияда жойлашади. Use the default data directory @@ -877,8 +877,8 @@ Address: %4 Бошқа маълумотлар директориясида фойдаланинг: - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core Error: Specified data directory "%1" cannot be created. @@ -923,12 +923,12 @@ Address: %4 &Асосий - Automatically start Bitcoin after logging in to the system. - Тизимга киргандан сўнг Bitcoin дастури автоматик ишга туширилсин. + Automatically start Hypercoin after logging in to the system. + Тизимга киргандан сўнг Hypercoin дастури автоматик ишга туширилсин. - &Start Bitcoin on system login - Тизимга кирганда Bitcoin &ишга туширилсин + &Start Hypercoin on system login + Тизимга кирганда Hypercoin &ишга туширилсин Size of &database cache @@ -958,6 +958,10 @@ Address: %4 Third party transaction URLs Бегона тараф ўтказмалари URL манзиллари + + &Network + Тармоқ + Proxy &IP: Прокси &IP рақами: @@ -995,8 +999,8 @@ Address: %4 Фойдаланувчи интерфейси &тили: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - Фойдаланувчи тили интерфесини шу ерда ўрнатиш мумкин. TУшбу созлама Bitcoin қайта ишга туширилганда кучга киради. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + Фойдаланувчи тили интерфесини шу ерда ўрнатиш мумкин. TУшбу созлама Hypercoin қайта ишга туширилганда кучга киради. &Unit to show amounts in: @@ -1046,8 +1050,8 @@ Address: %4 Шакл - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - Кўрсатилган маълумот эскирган бўлиши мумкин. Ҳамёнингиз алоқа ўрнатилгандан сўнг Bitcoin тармоқ билан автоматик тарзда синхронланади, аммо жараён ҳалигача тугалланмади. + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + Кўрсатилган маълумот эскирган бўлиши мумкин. Ҳамёнингиз алоқа ўрнатилгандан сўнг Hypercoin тармоқ билан автоматик тарзда синхронланади, аммо жараён ҳалигача тугалланмади. Watch-only: @@ -1101,12 +1105,52 @@ Address: %4 Recent transactions Сўнгги пул ўтказмалари - + + Unconfirmed transactions to watch-only addresses + Тасдиқланмаган ўтказмалар-фақат кўринадиган манзилларда + + + Current total balance in watch-only addresses + Жорий умумий баланс фақат кўринадиган манзилларда + + + out of sync + Синхронлашдан ташқари + + PaymentServer + + URI handling + URI осилиб қолмоқда + + + Invalid payment address %1 + Нотўғри тўлов манзили %1 + + + Payment request rejected + Тўлов сўрови инкор этилди + + + Payment request network doesn't match client network. + Тўлов сўрови тармоғи мижоз тармоғига мос келмайди. + + + Payment request has expired. + Тўлов сўрови тугади. + + + Payment request error + Тўлов сўрови хато + PeerTableModel + + User Agent + Фойдаланувчи вакил + Ping Time Ping вақти @@ -1118,6 +1162,10 @@ Address: %4 Amount Миқдори + + Enter a Hypercoin address (e.g. %1) + Hypercoin манзилини киритинг (масалан. %1) + %1 m %1 д @@ -1220,6 +1268,22 @@ Address: %4 Select a peer to view detailed information. Батафсил маълумотларни кўриш учун уламни танланг. + + Direction + Йўналиш + + + Version + Версия + + + User Agent + Фойдаланувчи вакил + + + Services + Хизматлар + Starting Height Узунликнинг бошланиши @@ -1297,16 +1361,16 @@ Address: %4 Тузатиш журнали файли - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - Жорий махлумотлар директориясидан Bitcoin тузатиш журнали файлини очинг. Бу катта журнал файллари учун бир неча сонияни олиши мумкин. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + Жорий махлумотлар директориясидан Hypercoin тузатиш журнали файлини очинг. Бу катта журнал файллари учун бир неча сонияни олиши мумкин. Clear console Терминални тозалаш - Welcome to the Bitcoin RPC console. - Bitcoin RPC терминлга хуш келибсиз. + Welcome to the Hypercoin RPC console. + Hypercoin RPC терминлга хуш келибсиз. Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1340,6 +1404,14 @@ Address: %4 never ҳеч қачон + + Inbound + Ички йўналиш + + + Outbound + Ташқи йўналиш + Unknown Номаълум @@ -1391,6 +1463,26 @@ Address: %4 Requested payments history Сўралган тўлов тарихи + + &Request payment + Тўловни &сўраш + + + Show the selected request (does the same as double clicking an entry) + Танланган сўровни кўрсатиш (икки марта босилганда ҳам бир хил амал бажарилсин) + + + Show + Кўрсатиш + + + Remove the selected entries from the list + Танланганларни рўйхатдан ўчириш + + + Remove + Ўчириш + Copy label Ёрликни нусхала @@ -1406,10 +1498,30 @@ Address: %4 ReceiveRequestDialog + + QR Code + QR Коди + + + Copy &Address + Нусҳалаш & Манзил + &Save Image... Расмни &сақлаш + + Request payment to %1 + %1 дан Тўловни сўраш + + + Payment information + Тўлов маълумоти + + + URI + URI + Address Манзил @@ -1422,6 +1534,10 @@ Address: %4 Label Ёрлик + + Message + Хабар + RecentRequestsTableModel @@ -1433,6 +1549,10 @@ Address: %4 Label Ёрлик + + Message + Хабар + Amount Миқдори @@ -1441,13 +1561,33 @@ Address: %4 (no label) (Ёрлик мавжуд эмас) - + + (no message) + (Хабар йўқ) + + + (no amount) + (Миқдор мавжуд эмас) + + SendCoinsDialog Send Coins Тангаларни жунат + + Coin Control Features + Танга бошқаруви ҳусусиятлари + + + automatically selected + автоматик тарзда танланган + + + Insufficient funds! + Етарли бўлмаган миқдор + Quantity: Сони: @@ -1484,6 +1624,38 @@ Address: %4 Custom change address Бошқа ўзгартирилган манзил + + Transaction Fee: + Ўтказма тўлови + + + Choose... + Танлов + + + Minimize + Камайтириш + + + per kilobyte + Хар килобайтига + + + Recommended: + Тавсия этилган + + + Confirmation time: + Тасдиқ вақти + + + normal + Нормал + + + fast + Тезкор + Send to multiple recipients at once Бирданига бир нечта қабул қилувчиларга жўнатиш @@ -1496,6 +1668,10 @@ Address: %4 Dust: Ахлат қутиси: + + Clear &All + Барчасини &Тозалаш + Balance: Баланс @@ -1504,10 +1680,18 @@ Address: %4 Confirm the send action Жўнатиш амалини тасдиқлаш + + S&end + Жў&натиш + Confirm send coins Тангалар жўнаишни тасдиқлаш + + %1 to %2 + %1 дан %2 + Copy quantity Нусха сони @@ -1536,13 +1720,17 @@ Address: %4 Copy change Нусха қайтими + + or + ёки + The amount to pay must be larger than 0. Тўлов миқдори 0. дан катта бўлиши керак. - Warning: Invalid Bitcoin address - Диққат: Нотўғр Bitcoin манзили + Warning: Invalid Hypercoin address + Диққат: Нотўғр Hypercoin манзили (no label) @@ -1583,6 +1771,14 @@ Address: %4 &Label: &Ёрлиқ: + + Choose previously used address + Олдин фойдаланилган манзилни танла + + + This is a normal payment. + Бу нормал тўлов. + Alt+A Alt+A @@ -1595,12 +1791,24 @@ Address: %4 Alt+P Alt+P + + Message: + Хабар: + + + This is a verified payment request. + Бу тасдиқланган тўлов талаби. + ShutdownWindow SignVerifyMessageDialog + + Choose previously used address + Олдин фойдаланилган манзилни танла + Alt+A Alt+A @@ -1617,12 +1825,20 @@ Address: %4 Signature Имзо - + + Clear &All + Барчасини & Тозалаш + + + Message verified. + Хабар тасдиқланди. + + SplashScreen - Bitcoin Core - Bitcoin Core + Hypercoin Core + Hypercoin Core The Bitcoin Core developers @@ -1654,14 +1870,78 @@ Address: %4 Date Сана + + Source + Манба + + + Generated + Яратилган + + + From + Дан + + + To + Га + + + own address + ўз манзили + + + label + ёрлиқ + + + Credit + Кредит + + + not accepted + қабул қилинмади + + + Transaction fee + Ўтказма тўлови + + + Net amount + Умумий миқдор + + + Message + Хабар + + + Comment + Шарҳ + Transaction ID - ID + Ўтказма ID си + + + Merchant + Савдо + + + Transaction + Ўтказма Amount Миқдори + + true + рост + + + false + ёлғон + , has not been successfully broadcast yet , ҳалигача трансляция қилингани йўқ @@ -1712,10 +1992,22 @@ Address: %4 Generated but not accepted Яратилди, аммо қабул қилинмади + + Offline + Оффлайн + + + Unconfirmed + Тасдиқланмаган + Received with Ёрдамида қабул қилиш + + Received from + Дан қабул қилиш + Sent to Жўнатиш @@ -1831,10 +2123,22 @@ Address: %4 Edit label Ёрликни тахрирлаш + + Show transaction details + Ўтказма тафсилотларини кўрсатиш + + + Export Transaction History + Ўтказмалар тарихини экспорт қилиш + Exporting Failed Экспорт қилиб бўлмади + + The transaction history was successfully saved to %1. + Ўтказмалар тарихи %1 га муваффаққиятли сақланди. + Comma separated file (*.csv) Вергул билан ажратилган файл (*.csv) @@ -1877,7 +2181,11 @@ Address: %4 WalletFrame - + + No wallet has been loaded. + Хали бирорта хамён юкланмади. + + WalletModel @@ -1918,6 +2226,10 @@ Address: %4 Use the test network Синов тармоғидан фойдаланинг + + Connection options: + Уланиш кўрсаткичлари: + Information Маълумот diff --git a/src/qt/locale/bitcoin_vi.ts b/src/qt/locale/bitcoin_vi.ts index 3ca5605883054..2afda0d8fbfd8 100644 --- a/src/qt/locale/bitcoin_vi.ts +++ b/src/qt/locale/bitcoin_vi.ts @@ -1,18 +1,26 @@ - + AddressBookPage - - Double-click to edit address or label - Click đúp chuột để chỉnh sửa địa chỉ hoặc nhãn dữ liệu - Create a new address Tạo một địa chỉ mới + + &New + Tạo mới + Copy the currently selected address to the system clipboard Sao chép các địa chỉ đã được chọn vào bộ nhớ tạm thời của hệ thống + + &Copy + Sao chép + + + &Copy Address + Sao chép địa chỉ + &Delete &Xóa diff --git a/src/qt/locale/bitcoin_vi_VN.ts b/src/qt/locale/bitcoin_vi_VN.ts index bf76c8638aa00..52caf22f1433b 100644 --- a/src/qt/locale/bitcoin_vi_VN.ts +++ b/src/qt/locale/bitcoin_vi_VN.ts @@ -1,73 +1,585 @@ - + AddressBookPage + + Right-click to edit address or label + Nhấn chuột phải để sửa địa chỉ hoặc nhãn + Create a new address Tạo một địa chỉ mới + + &New + &Mới + + + Copy the currently selected address to the system clipboard + Copy địa chỉ được chọn vào clipboard + + + &Copy + &Copy + + + C&lose + Đó&ng + + + &Copy Address + &Copy Địa Chỉ + + + Delete the currently selected address from the list + Xóa địa chỉ hiện tại từ danh sách + + + Export the data in the current tab to a file + Xuất dữ liệu trong mục hiện tại ra file + + + &Export + X&uất + + + &Delete + &Xó&a + + + Choose the address to send coins to + Chọn địa chỉ để gửi coin tới + + + Choose the address to receive coins with + Chọn địa chỉ để nhận coin + + + C&hoose + C&họn + + + Sending addresses + Địa chỉ gửi + + + Receiving addresses + Địa chỉ nhận + + + Copy &Label + Copy &Nhãn + + + &Edit + &Sửa + + + Export Address List + Xuất Danh Sách Địa Chỉ + + + Comma separated file (*.csv) + Comma separated file (*.csv) + + + Exporting Failed + Xuất Đã Thất Bại + AddressTableModel - + + Label + Nhãn + + + Address + Địa chỉ + + + (no label) + (không nhãn) + + AskPassphraseDialog + + Passphrase Dialog + Hội thoại Passphrase + + + Enter passphrase + Điền passphrase + + + New passphrase + Passphrase mới + + + Repeat new passphrase + Điền lại passphrase + + + Encrypt wallet + Mã hóa ví + + + Unlock wallet + Mở khóa ví + + + Decrypt wallet + Giải mã ví + + + Wallet encrypted + Ví đã được mã hóa + BitcoinGUI + + &Overview + &Tổng quan + + + Node + Node + + + E&xit + T&hoát + + + Quit application + Thoát chương trình + + + About &Qt + Về &Qt + + + Show information about Qt + Xem thông tin về Qt + + + Open &URI... + Mở &URI... + + + Hypercoin Core client + Hypercoin Core client + + + Hypercoin + Hypercoin + + + Wallet + + + + &Send + &Gửi + + + &Receive + &Nhận + + + &Show / Hide + Ẩn / H&iện + + + Show or hide the main Window + Hiện hoặc ẩn cửa sổ chính + + + &File + &File + + + &Settings + &Thiết lập + + + &Help + Trợ &giúp + + + Hypercoin Core + Hypercoin Core + + + &About Hypercoin Core + &Về Hypercoin Core + + + %n hour(s) + %n giờ + + + %n day(s) + %n ngày + + + %n week(s) + %n tuần + + + %1 and %2 + %1 và %2 + + + %n year(s) + %n năm + + + Error + Lỗi + + + Warning + Chú ý + + + Information + Thông tin + + + Up to date + Đã cập nhật + + + Sent transaction + Giao dịch đã gửi + + + Incoming transaction + Giao dịch đang tới + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Ngày: %1 +Lượng: %2 +Loại: %3 +Địa chỉ: %4 + + ClientModel - + + Network Alert + Network Alert + + CoinControlDialog + + Quantity: + Lượng: + + + Bytes: + Bytes: + + + Amount: + Lượng: + + + Priority: + Tầm quan trọng: + + + Fee: + Phí: + + + Change: + Thay đổi: + + + Amount + Lượng + + + Date + Ngày tháng + + + Confirmations + Lần xác nhận + + + Confirmed + Đã xác nhận + + + Priority + Tầm quan trọng + + + Copy address + Copy địa chỉ + + + Copy label + Copy nhãn + + + Copy amount + Lượng copy + + + low + thấp + + + lower + thấp hơn + + + lowest + thấp nhất + + + yes + + + + no + không + + + (no label) + (không nhãn) + EditAddressDialog FreespaceChecker + + name + tên + HelpMessageDialog + + Hypercoin Core + Hypercoin Core + + + version + version + + + About Hypercoin Core + Về Hypercoin Core + Intro + + Welcome + Chào mừng + + + Hypercoin Core + Hypercoin Core + + + Error + Lỗi + OpenURIDialog + + Open URI + Mở URI + + + URI: + URI: + OptionsDialog + + Options + Lựa chọn + + + &Main + &Chính + + + MB + MB + + + &Display + &Hiển thị + + + &OK + &OK + + + &Cancel + &Từ chối + + + default + mặc định + OverviewPage + + Form + Form + + + Total: + Tổng: + PaymentServer PeerTableModel + + User Agent + User Agent + QObject + + Amount + Lượng + + + NETWORK + NETWORK + QRImageWidget RPCConsole + + General + Nhìn Chung + + + Name + Tên + + + Block chain + Block chain + + + Sent + Đã gửi + + + User Agent + User Agent + ReceiveCoinsDialog - + + Copy label + Copy nhãn + + + Copy amount + Lượng copy + + ReceiveRequestDialog + + Address + Địa chỉ + + + Amount + Lượng + + + Label + Nhãn + RecentRequestsTableModel + + Date + Ngày tháng + + + Label + Nhãn + + + Amount + Lượng + + + (no label) + (không nhãn) + SendCoinsDialog + + Quantity: + Lượng: + + + Bytes: + Bytes: + + + Amount: + Lượng: + + + Priority: + Tầm quan trọng: + + + Fee: + Phí: + + + Change: + Thay đổi: + + + Copy amount + Lượng copy + + + (no label) + (không nhãn) + SendCoinsEntry @@ -80,21 +592,77 @@ SplashScreen + + Hypercoin Core + Hypercoin Core + TrafficGraphWidget TransactionDesc + + Date + Ngày tháng + + + Amount + Lượng + TransactionDescDialog TransactionTableModel + + Date + Ngày tháng + + + Address + Địa chỉ + TransactionView + + Copy address + Copy địa chỉ + + + Copy label + Copy nhãn + + + Copy amount + Lượng copy + + + Exporting Failed + Xuất Đã Thất Bại + + + Comma separated file (*.csv) + Comma separated file (*.csv) + + + Confirmed + Đã xác nhận + + + Date + Ngày tháng + + + Label + Nhãn + + + Address + Địa chỉ + UnitDisplayStatusBarControl @@ -107,8 +675,76 @@ WalletView + + &Export + X&uất + + + Export the data in the current tab to a file + Xuất dữ liệu trong mục hiện tại ra file + bitcoin-core - + + Information + Thông tin + + + Transaction too large + Giao dịch quá lớn + + + Warning + Chú ý + + + on startup + khi khởi động + + + This help message + Thông điệp trợ giúp này + + + Loading addresses... + Đang đọc các địa chỉ... + + + (default: %s) + (mặc định: %s) + + + Insufficient funds + Không đủ tiền + + + Loading block index... + Đang đọc block index... + + + Loading wallet... + Đang đọc ví... + + + Cannot downgrade wallet + Không downgrade được ví + + + Cannot write default address + Không ghi được địa chỉ mặc định + + + Rescanning... + Đang quét lại... + + + Done loading + Đã nạp xong + + + Error + Lỗi + + \ No newline at end of file diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index 94d0675bfdac1..5559425c8e870 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - 双击编辑地址或标签 + Right-click to edit address or label + 鼠标右击编辑地址或标签 Create a new address @@ -66,12 +66,12 @@ 正在接收地址 - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - 这是您用来付款的比特币地址。在付款前,请总是核实付款金额和收款地址。 + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + 这是您用来付款的莱特币地址。在付款前,请总是核实付款金额和收款地址。 - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - 这些都是您的比特币地址,可用于收款。建议对每笔交易都使用一个新的地址。 + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + 这些都是您的莱特币地址,可用于收款。建议对每笔交易都使用一个新的地址。 Copy &Label @@ -164,8 +164,8 @@ 确认加密钱包 - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - 警告:如果您加密了您的钱包,但是忘记了密码,你将会<b>丢失所有的比特币</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + 警告:如果您加密了您的钱包,但是忘记了密码,你将会<b>丢失所有的莱特币</b>! Are you sure you wish to encrypt your wallet? @@ -184,8 +184,12 @@ 钱包已加密 - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 比特币客户端将关闭软件以完成加密过程。请您谨记:钱包加密并不是万能的,电脑中毒等原因仍可能导致您的比特币意外丢失。 + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + 请输入新的钱包密码. <br/>密码须包含<b>10个以上字符</b>,或<b>8个以上单词</b>. + + + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + 莱特币客户端将关闭软件以完成加密过程。请您谨记:钱包加密并不是万能的,电脑中毒等原因仍可能导致您的莱特币意外丢失。 Wallet encryption failed @@ -280,19 +284,19 @@ &Sending addresses... - &付款地址 + 正在发送地址(&S)... &Receiving addresses... - &收款地址 + 正在接收地址(&R)... Open &URI... 打开 &URI... - Bitcoin Core client - 比特币核心钱包 + Hypercoin Core client + 莱特币核心钱包 Importing blocks from disk... @@ -303,11 +307,11 @@ 正在为数据块建立索引... - Send coins to a Bitcoin address - 向一个比特币地址发送比特币 + Send coins to a Hypercoin address + 向一个莱特币地址发送莱特币 - Modify configuration options for Bitcoin + Modify configuration options for Hypercoin 设置选项 @@ -331,8 +335,8 @@ 验证消息(&V)... - Bitcoin - 比特币 + Hypercoin + 莱特币 Wallet @@ -347,8 +351,8 @@ 接收(&R) - Show information about Bitcoin Core - 显示有关比特币核心钱包信息 + Show information about Hypercoin Core + 显示有关莱特币核心钱包信息 &Show / Hide @@ -363,12 +367,12 @@ 对钱包中的私钥加密 - Sign messages with your Bitcoin addresses to prove you own them - 用比特币地址关联的私钥为消息签名,以证明您拥有这个比特币地址 + Sign messages with your Hypercoin addresses to prove you own them + 用莱特币地址关联的私钥为消息签名,以证明您拥有这个莱特币地址 - Verify messages to ensure they were signed with specified Bitcoin addresses - 校验消息,确保该消息是由指定的比特币地址所有者签名的 + Verify messages to ensure they were signed with specified Hypercoin addresses + 校验消息,确保该消息是由指定的莱特币地址所有者签名的 &File @@ -387,16 +391,16 @@ 分页工具栏 - Bitcoin Core - 比特币核心 + Hypercoin Core + 莱特币核心 - Request payments (generates QR codes and bitcoin: URIs) - 请求支付(生成二维码和 bitcoin: URI) + Request payments (generates QR codes and hypercoin: URIs) + 请求支付(生成二维码和 hypercoin: URI) - &About Bitcoin Core - 关于比特币核心(&A) + &About Hypercoin Core + 关于莱特币核心(&A) Show the list of used sending addresses and labels @@ -407,20 +411,20 @@ 显示用过的接收地址和标签的列表 - Open a bitcoin: URI or payment request - 打开一个比特币:URI 或支付请求 + Open a hypercoin: URI or payment request + 打开一个莱特币:URI 或支付请求 &Command-line options - &命令行 选项 + 命令行选项(&C) - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - 显示比特币核心 程序帮助信息,获取可用的命令行选项 + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + 显示莱特币核心 程序帮助信息,获取可用的命令行选项 - %n active connection(s) to Bitcoin network - %n 个到比特币网络的活动连接 + %n active connection(s) to Hypercoin network + %n 个到莱特币网络的活动连接 No block source available... @@ -474,6 +478,10 @@ Up to date 已是最新 + + Processed %n blocks of transaction history. + 已处理 %n 个交易历史数据块。 + Catching up... 更新中... @@ -516,6 +524,10 @@ Address: %4 CoinControlDialog + + Coin Selection + 币源选择(Coin Selection) + Quantity: 总量: @@ -564,6 +576,14 @@ Address: %4 Amount 金额 + + Received with label + 按标签收款 + + + Received with address + 按地址收款 + Date 日期 @@ -676,6 +696,10 @@ Address: %4 none + + Can vary +/- %1 satoshi(s) per input. + 可能会有 正负 %1 聪(satoshi)的偏差 + yes @@ -706,7 +730,7 @@ Address: %4 This label turns red, if any recipient receives an amount smaller than %1. - 如果收款地址收到小于%1的比特币,标签将变成红色。 + 如果收款地址收到小于%1的莱特币,标签将变成红色。 (no label) @@ -764,8 +788,8 @@ Address: %4 输入的地址“%1”已经存在于地址簿中。 - The entered address "%1" is not a valid Bitcoin address. - 您输入的“%1”不是有效的比特币地址。 + The entered address "%1" is not a valid Hypercoin address. + 您输入的“%1”不是有效的莱特币地址。 Could not unlock wallet. @@ -802,8 +826,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - 比特币核心 + Hypercoin Core + 莱特币核心 version @@ -814,8 +838,8 @@ Address: %4 (%1 位) - About Bitcoin Core - 关于比特币核心 + About Hypercoin Core + 关于莱特币核心 Command-line options @@ -862,16 +886,16 @@ Address: %4 欢迎 - Welcome to Bitcoin Core. - 欢迎使用 比特币核心 程序。 + Welcome to Hypercoin Core. + 欢迎使用 莱特币核心 程序。 - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - 由于这是第一次运行 比特币核心 程序,您可以选择数据存储目录。 + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + 由于这是第一次运行 莱特币核心 程序,您可以选择数据存储目录。 - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - 比特币核心 程序会下载储存一份数据块链(blockchain)。至少需要 %1 GB的存储空间,随着时间推移会需要更多的存储空间。钱包文件也储存在该目录。 + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + 莱特币核心 程序会下载储存一份数据块链(blockchain)。至少需要 %1 GB的存储空间,随着时间推移会需要更多的存储空间。钱包文件也储存在该目录。 Use the default data directory @@ -882,14 +906,26 @@ Address: %4 使用自定义的数据目录: - Bitcoin Core - 比特币核心 + Hypercoin Core + 莱特币核心 + + + Error: Specified data directory "%1" cannot be created. + 错误:无法创建 指定的数据目录 "%1" Error 错误 - + + %n GB of free space available + 有 %n GB 空闲空间 + + + (of %n GB needed) + (需要%n GB空间) + + OpenURIDialog @@ -924,11 +960,11 @@ Address: %4 主要(&M) - Automatically start Bitcoin after logging in to the system. - 登录系统后自动开启比特币客户端 + Automatically start Hypercoin after logging in to the system. + 登录系统后自动开启莱特币客户端 - &Start Bitcoin on system login + &Start Hypercoin on system login 系统启动时运行(&S) @@ -941,7 +977,7 @@ Address: %4 Number of script &verification threads - 脚本&验证 进程数 + 脚本验证线程数(&V) Accept connections from outside @@ -985,7 +1021,7 @@ Address: %4 W&allet - &钱包 + 钱包(&A) Expert @@ -993,7 +1029,7 @@ Address: %4 Enable coin &control features - 启动货币 &控制功能 + 启动货币控制功能(&C) If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. @@ -1001,16 +1037,24 @@ Address: %4 &Spend unconfirmed change - &选择未经确认的花费 + 使用未经确认的零钱(&S) - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - 自动在路由器中打开比特币端口。只有当您的路由器开启了 UPnP 选项时此功能才有效。 + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + 自动在路由器中打开莱特币端口。只有当您的路由器开启了 UPnP 选项时此功能才有效。 Map port using &UPnP 使用 &UPnP 映射端口 + + Connect to the Hypercoin network through a SOCKS5 proxy. + 通过 SOCKS5 代理连接莱特币网络。 + + + &Connect through SOCKS5 proxy (default proxy): + 通过 SO&CKS5 代理连接(默认代理): + Proxy &IP: 代理服务器 &IP: @@ -1052,16 +1096,16 @@ Address: %4 用户界面语言(&L): - The user interface language can be set here. This setting will take effect after restarting Bitcoin. + The user interface language can be set here. This setting will take effect after restarting Hypercoin. 在这里设置用户界面的语言。设置将在客户端重启后生效。 &Unit to show amounts in: - 比特币金额单位(&U): + 莱特币金额单位(&U): Choose the default subdivision unit to show in the interface and when sending coins. - 选择比特币单位。 + 选择莱特币单位。 Whether to show coin control features or not. @@ -1111,8 +1155,8 @@ Address: %4 表单 - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - 现在显示的消息可能是过期的. 在连接上比特币网络节点后,您的钱包将自动与网络同步,但是这个过程还没有完成。 + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + 现在显示的消息可能是过期的. 在连接上莱特币网络节点后,您的钱包将自动与网络同步,但是这个过程还没有完成。 Watch-only: @@ -1142,6 +1186,10 @@ Address: %4 Mined balance that has not yet matured 尚未成熟的挖矿收入余额 + + Balances + 余额 + Total: 总额: @@ -1150,6 +1198,30 @@ Address: %4 Your current total balance 您当前的总余额 + + Your current balance in watch-only addresses + 您当前 观察地址(watch-only address)的余额 + + + Spendable: + 可使用: + + + Recent transactions + 最近交易记录 + + + Unconfirmed transactions to watch-only addresses + 观察地址(watch-only address)的未确认交易记录 + + + Mined balance in watch-only addresses that has not yet matured + 观察地址(watch-only address)中尚未成熟(matured)的挖矿收入余额: + + + Current total balance in watch-only addresses + 观察地址(watch-only address)中的当前总余额 + out of sync 数据同步中 @@ -1169,6 +1241,10 @@ Address: %4 Payment request rejected 支付请求被拒绝 + + Payment request network doesn't match client network. + 付款请求所在的网络与当前客户端所在的网络不匹配。 + Payment request has expired. 支付请求已超时 @@ -1186,17 +1262,25 @@ Address: %4 支付请求出错 - Cannot start bitcoin: click-to-pay handler - 暂时无法启动比特币:点击支付功能 + Cannot start hypercoin: click-to-pay handler + 暂时无法启动莱特币:点击支付功能 Payment request fetch URL is invalid: %1 付款请求URI链接非法: %1 + + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + URI无法解析!原因可能是莱特币地址不正确,或者URI参数错误。 + Payment request file handling 付款请求文件处理 + + Payment request file cannot be read! This can be caused by an invalid payment request file. + 付款请求文件无法读取!可能是付款请求文件不合格。 + Unverified payment requests to custom payment scripts are unsupported. 不支持到自定义付款脚本的未验证付款请求。 @@ -1205,10 +1289,22 @@ Address: %4 Refund from %1 退款来自 %1 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + 支付请求 %1 太大 (%2 字节。只允许 %3 字节)。 + + + Payment request DoS protection + 支付请求防滥用保护 + Error communicating with %1: %2 %1: %2 通讯出错 + + Payment request cannot be parsed! + 无法解析 付款请求! + Bad response from server %1 来自 %1 服务器的错误响应 @@ -1244,8 +1340,8 @@ Address: %4 金额 - Enter a Bitcoin address (e.g. %1) - 请输入一个比特币地址 (例如 %1) + Enter a Hypercoin address (e.g. %1) + 请输入一个莱特币地址 (例如 %1) %1 d @@ -1371,7 +1467,11 @@ Address: %4 &Peers - &同类 + 同伴(&P) + + + Select a peer to view detailed information. + 选择节点查看详细信息。 Direction @@ -1466,7 +1566,7 @@ Address: %4 调试日志文件 - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. 打开当前目录中的调试日志文件。日志文件大的话可能要等上几秒钟。 @@ -1474,7 +1574,7 @@ Address: %4 清空控制台 - Welcome to the Bitcoin RPC console. + Welcome to the Hypercoin RPC console. 欢迎来到 RPC 控制台。 @@ -1549,8 +1649,8 @@ Address: %4 重用现有的接收地址(不推荐) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - 可在付款请求上备注一条信息,在打开付款请求时可以看到。注意:该消息不是通过比特币网络传送。 + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + 可在付款请求上备注一条信息,在打开付款请求时可以看到。注意:该消息不是通过莱特币网络传送。 An optional label to associate with the new receiving address. @@ -1699,7 +1799,7 @@ Address: %4 SendCoinsDialog Send Coins - 发送比特币 + 发送莱特币 Coin Control Features @@ -1753,6 +1853,78 @@ Address: %4 Custom change address 自定义零钱地址 + + Transaction Fee: + 交易费用: + + + Choose... + 选择... + + + collapse fee-settings + 收起 费用设置 + + + Minimize + 最小化 + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + 如果自定义交易费设置为 1000聪而交易大小只有250字节,则“每千字节" 模式只支付250聪交易费, 而"最少"模式则支付1000聪。 大于1000字节的交易按每千字节付费。 + + + per kilobyte + 每kb + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + 如果自定义交易费设置为 1000聪而交易大小只有250字节,则“每千字节" 模式只支付250聪交易费, 而"最少"模式则支付1000聪。 大于1000字节的交易按每千字节付费。 + + + total at least + 最小额 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + 交易量小时只支付最小交易费是可以的。但是请注意,当交易量大时您的交易可能永远无法确认。 + + + (read the tooltip) + (请注意提示信息) + + + Recommended: + 推荐: + + + Custom: + 自定义: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (智能交易费用 尚未初始化。 需要再下载一些数据块...) + + + Confirmation time: + 确认时间: + + + normal + 一般 + + + fast + 快速 + + + Send as zero-fee transaction if possible + 发送时尽可能 不支付交易费用 + + + (confirmation may take longer) + (确认时间更长) + Send to multiple recipients at once 一次发送给多个接收者 @@ -1822,8 +1994,8 @@ Address: %4 复制零钱 - Total Amount %1 (= %2) - 总额 %1 (= %2) + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + 总金额 %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> or @@ -1855,11 +2027,23 @@ Address: %4 The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - 错误:该交易被拒绝!发生这种错误的原因可能是:钱包中的比特币已经被用掉,有可能您复制了wallet.dat钱包文件,然后用复制的钱包文件支付了比特币,但是这个钱包文件中没有记录。 + 错误:该交易被拒绝!发生这种错误的原因可能是:钱包中的莱特币已经被用掉,有可能您复制了wallet.dat钱包文件,然后用复制的钱包文件支付了莱特币,但是这个钱包文件中没有记录。 - Warning: Invalid Bitcoin address - 警告:无效的比特币地址 + A fee higher than %1 is considered an insanely high fee. + 高于 %1的交易费 将视为 过高的交易费。 + + + Pay only the minimum fee of %1 + 只支付最小费用 %1 + + + Estimated to begin confirmation within %1 block(s). + 预计%1 个数据块后确认。 + + + Warning: Invalid Hypercoin address + 警告:无效的莱特币地址 (no label) @@ -1908,6 +2092,10 @@ Address: %4 This is a normal payment. 这是笔正常的支付。 + + The Hypercoin address to send the payment to + 付款目的地址 + Alt+A Alt+A @@ -1937,8 +2125,8 @@ Address: %4 请为此地址输入一个标签以将它加入用过的地址列表 - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - bitcoin:URI 附带的备注信息,将会和交易一起存储,备查。 注意:该消息不会通过比特币网络传输。 + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + hypercoin:URI 附带的备注信息,将会和交易一起存储,备查。 注意:该消息不会通过莱特币网络传输。 This is an unverified payment request. @@ -1956,8 +2144,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - 比特币核心正在关机... + Hypercoin Core is shutting down... + 莱特币核心正在关机... Do not shut down the computer until this window disappears. @@ -1978,6 +2166,10 @@ Address: %4 You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. 您可以用你的地址对消息进行签名,以证明您是该地址的所有人。注意不要对模棱两可的消息签名,以免遭受钓鱼式攻击。请确保消息内容准确的表达了您的真实意愿。 + + The Hypercoin address to sign the message with + 用来对消息签名的地址 + Choose previously used address 选择以前用过的地址 @@ -2007,7 +2199,7 @@ Address: %4 复制当前签名至剪切板 - Sign the message to prove you own this Bitcoin address + Sign the message to prove you own this Hypercoin address 签名消息,证明这个地址属于您。 @@ -2031,8 +2223,12 @@ Address: %4 在下面输入签名地址,消息(请确保换行符、空格符、制表符等等一个不漏)和签名以验证消息。请确保签名信息准确,提防中间人攻击。 - Verify the message to ensure it was signed with the specified Bitcoin address - 验证消息,确保消息是由指定的比特币地址签名过的。 + The Hypercoin address the message was signed with + 消息使用的签名地址 + + + Verify the message to ensure it was signed with the specified Hypercoin address + 验证消息,确保消息是由指定的莱特币地址签名过的。 Verify &Message @@ -2098,8 +2294,8 @@ Address: %4 SplashScreen - Bitcoin Core - 比特币核心 + Hypercoin Core + 莱特币核心 The Bitcoin Core developers @@ -2143,6 +2339,10 @@ Address: %4 Status 状态 + + , broadcast through %n node(s) + , 通过 %n 个节点广播 + Date 日期 @@ -2167,6 +2367,10 @@ Address: %4 own address 自己的地址 + + watch-only + 观察地址(watch-only) + label 标签 @@ -2175,6 +2379,10 @@ Address: %4 Credit 收入 + + matures in %n more block(s) + %n 个数据块后成熟(mature) + not accepted 未被接受 @@ -2183,6 +2391,14 @@ Address: %4 Debit 支出 + + Total debit + 总收入 + + + Total credit + 总支出 + Transaction fee 交易费 @@ -2209,7 +2425,7 @@ Address: %4 Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - 生成的比特币在可以使用前必须有 %1 个成熟的区块。当您生成了此区块后,它将被广播到网络中以加入区块链。如果它未成功进入区块链,其状态将变更为“不接受”并且不可使用。这可能偶尔会发生,如果另一个节点比你早几秒钟成功生成一个区块。 + 生成的莱特币在可以使用前必须有 %1 个成熟的区块。当您生成了此区块后,它将被广播到网络中以加入区块链。如果它未成功进入区块链,其状态将变更为“不接受”并且不可使用。这可能偶尔会发生,如果另一个节点比你早几秒钟成功生成一个区块。 Debug information @@ -2239,6 +2455,10 @@ Address: %4 , has not been successfully broadcast yet ,未被成功广播 + + Open for %n more block(s) + 再打开 %n 个数据块 + unknown 未知 @@ -2273,6 +2493,10 @@ Address: %4 Immature (%1 confirmations, will be available after %2) 未成熟 (%1 个确认,将在 %2 个后可用) + + Open for %n more block(s) + 再打开 %n 个数据块 + Open until %1 至 %1 个数据块时开启 @@ -2325,6 +2549,10 @@ Address: %4 Mined 挖矿所得 + + watch-only + 观察地址(watch-only) + (n/a) (不可用) @@ -2341,6 +2569,10 @@ Address: %4 Type of transaction. 交易类别。 + + Whether or not a watch-only address is involved in this transaction. + 该交易中是否涉及 观察地址(watch-only address)。 + Destination address of transaction. 交易目的地址。 @@ -2436,6 +2668,10 @@ Address: %4 Export Transaction History 导出交易历史 + + Watch-only + 观察地址(Watch-only) + Exporting Failed 导出失败 @@ -2491,7 +2727,11 @@ Address: %4 UnitDisplayStatusBarControl - + + Unit to show amounts in. Click to select another unit. + 金额单位。单击选择别的单位。 + + WalletFrame @@ -2503,7 +2743,7 @@ Address: %4 WalletModel Send Coins - 发送比特币 + 发送莱特币 @@ -2581,45 +2821,21 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) 接受来自外部的连接 (缺省: 如果不带 -proxy or -connect 参数设置为1) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, 您必须在配置文件设置rpcpassword: - %s -建议您使用下面的随机密码: -rpcuser=bitcoinrpc -rpcpassword=%s -(您无需记住此密码) -用户名和密码 必! 须! 不一样。 -如果配置文件不存在,请自行建立一个只有所有者拥有只读权限的文件。 -推荐您开启提示通知以便收到错误通知, -像这样: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 绑定指定的IP地址开始监听。IPv6地址请使用[host]:port 格式 - Enter regression test mode, which uses a special chain in which blocks can be solved instantly. - 进入回归测试模式,它采用一种特殊的可立即解决的区块链模拟情况。 + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + 删除钱包的所有交易记录,且只有用 -rescan参数启动客户端才能重新取回交易记录 - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - 错误:该交易被拒绝!发生这种错误的原因可能是:钱包中的比特币已经被用掉,有可能您复制了wallet.dat钱包文件,然后用复制的钱包文件支付了比特币,但是这个钱包文件中没有记录。 + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. + Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - 错误:因为该交易的数量、复杂度或者动用了刚收到不久的资金,您需要支付不少于%s的交易费用。 + Enter regression test mode, which uses a special chain in which blocks can be solved instantly. + 进入回归测试模式,它采用一种特殊的可立即解决的区块链模拟情况。 Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) @@ -2638,8 +2854,8 @@ rpcpassword=%s 这是测试用的预发布版本 - 请谨慎使用 - 不要用来挖矿,或者在正式商用环境下使用 - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - 无法 %s的绑定到电脑上,比特币核心钱包可能已经在运行。 + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + 无法 %s的绑定到电脑上,莱特币核心钱包可能已经在运行。 Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2661,6 +2877,10 @@ rpcpassword=%s Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. 警告:钱包文件wallet.dat损坏! 原始的钱包文件已经备份到%s目录下并重命名为{timestamp}.bak 。如果您的账户余额或者交易记录不正确,请使用您的钱包备份文件恢复。 + + Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. + 节点白名单,网络掩码或IP址。可多次指定。 + (default: 1) (默认值: 1) @@ -2725,10 +2945,6 @@ rpcpassword=%s Error: Disk space is low! 错误:磁盘剩余空间低! - - Error: Wallet locked, unable to create transaction! - 错误:钱包被锁定,无法创建交易! - Failed to listen on any port. Use -listen=0 if you want this. 监听端口失败。请使用 -listen=0 参数。 @@ -2753,6 +2969,10 @@ rpcpassword=%s Not enough file descriptors available. 没有足够的文件描述符可用。 + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + 只连接 <net>网络中的节点 (ipv4, ipv6 或 onion) + Rebuild block chain index from current blk000??.dat files 重新为当前的blk000??.dat文件建立索引 @@ -2773,6 +2993,10 @@ rpcpassword=%s This is intended for regression testing tools and app development. 这是用于回归测试和应用开发目的。 + + Use UPnP to map the listening port (default: %u) + 使用UPnp映射监听端口 (默认: %u) + Verifying blocks... 正在验证数据库的完整性... @@ -2798,21 +3022,129 @@ rpcpassword=%s 从blk000??.dat文件导入数据块 - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - 无法获取数据目录的 %s. 比特币核心钱包可能已经在运行. + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + 允许来自指定地址的 JSON-RPC 连接。 <ip>为单一IP (如: 1.2.3.4), 网络/掩码 (如: 1.2.3.4/255.255.255.0), 网络/CIDR (如: 1.2.3.4/24)。该选项可多次指定。 + + + An error occurred while setting up the RPC address %s port %u for listening: %s + 设置RPC监听端口 %s:%u 时发生错误: %s + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + 绑定到指定地址和连接的白名单节点。 IPv6使用 [主机]:端口 格式 + + + Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) + 绑定到指定地址监听 JSON-RPC连接。 IPv6使用[主机]:端口 格式。该选项可多次指定 (默认: 绑定到所有接口) + + + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + 无法获取数据目录的 %s. 莱特币核心钱包可能已经在运行. + + + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) + Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + 创建系统默认权限的文件,而不是 umask 077 (只在关闭钱包功能时有效) + + + Error: Listening for incoming connections failed (listen returned error %s) + 错误:监听外部连接失败 (监听返回错误 %s) + + + Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + 错误:不支持的 -socks 参数。不再支持设置SOCKS版本,现在只支持 SOCKS5代理。 Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) 当收到相关提醒或者我们看到一个长分叉时执行命令(%s 将替换为消息) + + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) + 交易费(HOT/kb)比这更小的交易在转发时将被视为零费交易 (默认: %s) + + + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + 交易费(HOT/kb)比这更小的交易在生成交易时将被视为零费交易 (默认: %s) + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + 如果未设置交易费用,自动添加足够的交易费以确保交易在平均n个数据块内被确认 (默认: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + -maxtxfee=<amount>: '%s' 的金额无效(交易费至少为 %s,以免交易滞留过久) + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + 单笔钱包交易中最多使用的交易费,设置过低可能中止大笔交易 (默认: %s) + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) 通过DNS查询每个地址,如果短地址 (默认值: 1 除非 -连接) + + Require high priority for relaying free or low-fee transactions (default:%u) + 对交易免费或低交易费请求高优先级 (默认:%u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) 设置 高优先级/低交易费 交易的最大字节 (缺省: %d) + + Set the number of threads for coin generation if enabled (-1 = all cores, default: %d) + 设置莱特币生成线程数 ( -1=所有核, 默认: %d) + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + 要使用 hypercoind 或者 hypercoin-qt 中的 -server 选项,您必须在配置文件中设置一个密码: +%s +建议您使用下列随机密码: +rpcuser=hypercoinrpc +rpcpassword=%s +(您不需要记住这个密码) +用户名和密码不能相同。 +如果该文件不存在,创建一个文件并设置权限为仅创建者可读。 +此外,还建议您设置 alertnotify 以便您能注意到问题: +例如 alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + 警告:-maxtxfee 设置的太高了!每进行一笔交易时您都要花费这么多费用。 + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + 警告:请检查电脑的日期时间设置是否正确!时间错误可能会导致莱特币客户端运行异常。 + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + 白名单节点不能被DoS banned ,且转发所有来自他们的交易(即便这些交易已经存在于mempool中),常用于网关 + + + Accept public REST requests (default: %u) + 接受公共 REST 请求 (默认: %u) + Cannot resolve -whitebind address: '%s' 无法解析 -whitebind 地址: '%s' @@ -2830,20 +3162,36 @@ rpcpassword=%s 无法解析 -rpcbind 的值 %s 为网络地址 - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - 加载wallet.dat错误:需要新版的比特币核心钱包 + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + 加载wallet.dat错误:需要新版的莱特币核心钱包 + + + Error reading from database, shutting down. + 读取数据库出错,关闭中。 + + + Error: A fatal internal error occurred, see debug.log for details + 错误:发生了致命的内部错误,详情见 debug.log 文件 Error: Unsupported argument -tor found, use -onion. 错误:发现了不支持的参数 -tor,请使用 -onion。 + + Fee (in HOT/kB) to add to transactions you send (default: %s) + 为付款交易添加交易费 (HOT/kb) (默认: %s) + Information 信息 - Initialization sanity check failed. Bitcoin Core is shutting down. - 初始化完整性检查失败。Bitcoin Core 即将关闭。 + Initialization sanity check failed. Hypercoin Core is shutting down. + 初始化完整性检查失败。Hypercoin Core 即将关闭。 + + + Invalid amount for -maxtxfee=<amount>: '%s' + -maxtxfee=<amount>: '%s' 的金额无效 Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -2870,17 +3218,17 @@ rpcpassword=%s 节点中继选项: - Print block on startup, if found in block index - 如果在搜索区块中找到,请启动打印区块 - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - RPC SSL选项:(见有关比特币设置用于SSL说明的维基百科) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + RPC SSL选项:(见有关莱特币设置用于SSL说明的维基百科) RPC server options: RPC 服务器选项: + + RPC support for HTTP persistent connections (default: %d) + RPC 支持 HTTP 持久连接 (默认: %d) + Randomly drop 1 of every <n> network messages 随机每1个丢失测试<n>网络信息 @@ -2889,10 +3237,18 @@ rpcpassword=%s Randomly fuzz 1 of every <n> network messages 随机每1个模拟测试<n>网络信息 + + Receive and display P2P network alerts (default: %u) + 接收并显示 P2P 网络告警 (默认: %u) + Send trace/debug info to console instead of debug.log file 跟踪/调试信息输出到控制台,不输出到 debug.log 文件 + + Send transactions as zero-fee transactions if possible (default: %u) + 发送时尽可能 不支付交易费用 (默认: %u) + Show all debugging options (usage: --help -help-debug) 显示所有调试选项 (用法: --帮助 -帮助调试) @@ -2917,6 +3273,10 @@ rpcpassword=%s Transaction amounts must be positive 交易金额必须是积极的 + + Transaction too large for fee policy + 费用策略的交易太大 + Transaction too large 交易太大 @@ -2934,7 +3294,7 @@ rpcpassword=%s JSON-RPC 连接用户名 - Wallet needed to be rewritten: restart Bitcoin Core to complete + Wallet needed to be rewritten: restart Hypercoin Core to complete 钱包需要被改写:重新启动核心钱包来完成 @@ -3003,14 +3363,166 @@ rpcpassword=%s Error loading wallet.dat: Wallet corrupted wallet.dat 钱包文件加载出错:钱包损坏 + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = 保留 tx meta data , 如 account owner 和 payment request information, 2 = 不保留 tx meta data) + + + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) + Flush database activity from memory pool to disk log every <n> megabytes (default: %u) + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + 数据块验证 严密级别 -checkblocks (0-4, 默认: %u) + + + Log transaction priority and fee per kB when mining blocks (default: %u) + 挖矿时,记录交易优先级 和 每kb交易费 (默认: %u) + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + 维护一份完整的交易索引, 用于 getrawtransaction RPC调用 (默认: %u) + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + 限制 非礼节点 若干秒内不能连接 (默认: %u) + + + Output debugging information (default: %u, supplying <category> is optional) + 输出调试信息 (默认: %u, 提供 <category> 是可选项) + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + 通过Tor隐藏服务连接节点时 使用不同的SOCKS5代理 (默认: %s) + + + (default: %s) + (默认: %s) + + + Acceptable ciphers (default: %s) + 可接受的密码算法 (默认: %s) + + + Disable safemode, override a real safe mode event (default: %u) + 禁止使用安全模式,重新写入一个真正的安全模式日志(默认: %u) + Error loading wallet.dat wallet.dat 钱包文件加载出错 + + Force safe mode (default: %u) + 强制安全模式 (默认: %u) + + + Generate coins (default: %u) + 生成莱特币 (默认: %u) + + + How many blocks to check at startup (default: %u, 0 = all) + 启动时检测多少个数据块(默认: %u, 0=所有) + + + Include IP addresses in debug output (default: %u) + 在调试输出中包含IP地址 (默认: %u) + Invalid -proxy address: '%s' 无效的代理地址:%s + + Limit size of signature cache to <n> entries (default: %u) + 签名缓冲区大小限制最多 <n> 条 (默认: %u) + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + 使用 <port>端口监听 JSON-RPC 连接 (默认: %u ; testnet: %u) + + + Listen for connections on <port> (default: %u or testnet: %u) + 使用端口 <port> 监听连接 (默认: %u ; testnet: %u) + + + Maintain at most <n> connections to peers (default: %u) + 保留最多 <n> 条节点连接 (默认: %u) + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + 每个连接的最大接收缓存,<n>*1000 字节 (默认: %u) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + 每个连接的最大发送缓存,<n>*1000 字节 (默认: %u) + + + Only accept block chain matching built-in checkpoints (default: %u) + 仅接受符合客户端检查点设置 的数据块链 (默认: %u) + + + Prepend debug output with timestamp (default: %u) + 输出调试信息时,前面加上时间戳 (默认: %u) + + + Relay and mine data carrier transactions (default: %u) + Relay and mine data carrier transactions (default: %u) + + + Relay non-P2SH multisig (default: %u) + 是否转发 非P2SH格式的多签名交易 (默认: %u) + + + Run a thread to flush wallet periodically (default: %u) + 运行一个线程,定时清理钱包 (默认: %u) + + + Server certificate file (default: %s) + 服务器证书文件 (默认: %s) + + + Server private key (default: %s) + 服务器私钥 (默认: %s) + + + Set key pool size to <n> (default: %u) + 设置私钥池大小为 <n> (默认:%u) + + + Set minimum block size in bytes (default: %u) + 设置数据块 最小字节数 (默认: %u) + + + Set the number of threads to service RPC calls (default: %d) + 设置RPC服务线程数 (默认: %d) + + + Sets the DB_PRIVATE flag in the wallet db environment (default: %u) + Sets the DB_PRIVATE flag in the wallet db environment (default: %u) + + + Specify configuration file (default: %s) + 指定配置文件 (默认: %s) + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + 指定连接超时毫秒数 (最小: 1, 默认: %d) + + + Specify pid file (default: %s) + 指定 pid 文件 (默认: %s) + + + Spend unconfirmed change when sending transactions (default: %u) + 付款时允许使用未确认的零钱 (默认: %u) + + + Stop running after importing blocks from disk (default: %u) + 从磁盘导入数据块后退出 (默认: %u) + + + Threshold for disconnecting misbehaving peers (default: %u) + 断开 非礼节点的阀值 (默认: %u) + Unknown network specified in -onlynet: '%s' -onlynet 指定的是未知网络:%s @@ -3027,10 +3539,6 @@ rpcpassword=%s Invalid amount for -paytxfee=<amount>: '%s' 非法金额 -paytxfee=<amount>: '%s' - - Invalid amount - 无效金额 - Insufficient funds 金额不足 @@ -3063,13 +3571,9 @@ rpcpassword=%s Done loading 加载完成 - - To use the %s option - 使用 %s 选项 - Error 错误 - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_zh_HK.ts b/src/qt/locale/bitcoin_zh_HK.ts index 7062377f45e02..dfdbb7d1da052 100644 --- a/src/qt/locale/bitcoin_zh_HK.ts +++ b/src/qt/locale/bitcoin_zh_HK.ts @@ -1,4 +1,4 @@ - + AddressBookPage diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 56d598fc6496d..0b9dd3c87e270 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -1,9 +1,9 @@ - + AddressBookPage - Double-click to edit address or label - 按兩下來編輯位址或標記 + Right-click to edit address or label + 右鍵點一下來修改位址或標記 Create a new address @@ -66,12 +66,12 @@ 收款位址 - These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins. - 這些是你要付款過去的位元幣位址。在付錢之前,務必要檢查金額和收款位址是否正確。 + These are your Hypercoin addresses for sending payments. Always check the amount and the receiving address before sending coins. + 這些是你要付款過去的莱特幣位址。在付錢之前,務必要檢查金額和收款位址是否正確。 - These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - 這些是你用來收款的位元幣位址。建議在每次交易時,都使用一個新的收款位址。 + These are your Hypercoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + 這些是你用來收款的莱特幣位址。建議在每次交易時,都使用一個新的收款位址。 Copy &Label @@ -164,8 +164,8 @@ 確認錢包加密 - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>! - 警告: 如果把錢包加密後又忘記密碼,你就會從此<b>失去其中所有的位元幣了</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR HYPERCOINS</b>! + 警告: 如果把錢包加密後又忘記密碼,你就會從此<b>失去其中所有的莱特幣了</b>! Are you sure you wish to encrypt your wallet? @@ -188,8 +188,8 @@ 輸入錢包的新密碼。<br/>密碼請用<b>10 個以上的字元</b>,或是<b>8 個以上的字詞</b>。 - Bitcoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer. - 位元幣軟體現在要關閉,好完成加密程序。請注意,加密錢包不能完全防止入侵你的電腦的惡意程式偷取位元幣。 + Hypercoin will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your hypercoins from being stolen by malware infecting your computer. + 莱特幣軟體現在要關閉,好完成加密程序。請注意,加密錢包不能完全防止入侵你的電腦的惡意程式偷取莱特幣。 Wallet encryption failed @@ -295,8 +295,8 @@ 開啓 URI... - Bitcoin Core client - 位元幣核心客戶端軟體 + Hypercoin Core client + 莱特幣核心客戶端軟體 Importing blocks from disk... @@ -307,12 +307,12 @@ 正在為磁碟裡的區塊重建索引... - Send coins to a Bitcoin address - 付錢給一個位元幣位址 + Send coins to a Hypercoin address + 付錢給一個莱特幣位址 - Modify configuration options for Bitcoin - 修改位元幣軟體的設定選項 + Modify configuration options for Hypercoin + 修改莱特幣軟體的設定選項 Backup wallet to another location @@ -335,8 +335,8 @@ 驗證訊息... - Bitcoin - 位元幣 + Hypercoin + 莱特幣 Wallet @@ -344,15 +344,15 @@ &Send - 付款 + 已傳送 &Receive - 收款 + 已接收 - Show information about Bitcoin Core - 顯示位元幣核心的相關資訊 + Show information about Hypercoin Core + 顯示莱特幣核心的相關資訊 &Show / Hide @@ -367,12 +367,12 @@ 把錢包中的密鑰加密 - Sign messages with your Bitcoin addresses to prove you own them - 用位元幣位址簽署訊息來證明位址是你的 + Sign messages with your Hypercoin addresses to prove you own them + 用莱特幣位址簽署訊息來證明位址是你的 - Verify messages to ensure they were signed with specified Bitcoin addresses - 驗證訊息是用來確定訊息是用指定的位元幣位址簽署的 + Verify messages to ensure they were signed with specified Hypercoin addresses + 驗證訊息是用來確定訊息是用指定的莱特幣位址簽署的 &File @@ -391,16 +391,16 @@ 分頁工具列 - Bitcoin Core - 位元幣核心 + Hypercoin Core + 莱特幣核心 - Request payments (generates QR codes and bitcoin: URIs) - 要求付款(產生 QR Code 和位元幣付款協議的 URI) + Request payments (generates QR codes and hypercoin: URIs) + 要求付款(產生 QR Code 和莱特幣付款協議的 URI) - &About Bitcoin Core - 關於位元幣核心 + &About Hypercoin Core + 關於莱特幣核心 Show the list of used sending addresses and labels @@ -411,20 +411,20 @@ 顯示已使用過的收款位址和標記的清單 - Open a bitcoin: URI or payment request - 開啓 bitcoin 協議的 URI 或付款要求 + Open a hypercoin: URI or payment request + 開啓 hypercoin 協議的 URI 或付款要求 &Command-line options 命令列選項 - Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options - 顯示位元幣核心的說明訊息,來取得可用命令列選項的列表 + Show the Hypercoin Core help message to get a list with possible Hypercoin command-line options + 顯示莱特幣核心的說明訊息,來取得可用命令列選項的列表 - %n active connection(s) to Bitcoin network - %n 個運作中的位元幣網路連線 + %n active connection(s) to Hypercoin network + %n 個運作中的莱特幣網路連線 No block source available... @@ -576,6 +576,14 @@ Address: %4 Amount 金額 + + Received with label + 收款標記 + + + Received with address + 收款位址 + Date 日期 @@ -780,8 +788,8 @@ Address: %4 輸入的位址 %1 在位址簿中已經有了。 - The entered address "%1" is not a valid Bitcoin address. - 輸入的位址 %1 並不是有效的位元幣位址。 + The entered address "%1" is not a valid Hypercoin address. + 輸入的位址 %1 並不是有效的莱特幣位址。 Could not unlock wallet. @@ -796,7 +804,7 @@ Address: %4 FreespaceChecker A new data directory will be created. - 就要造出新的資料目錄。 + 就要產生新的資料目錄。 name @@ -818,8 +826,8 @@ Address: %4 HelpMessageDialog - Bitcoin Core - 位元幣核心 + Hypercoin Core + 莱特幣核心 version @@ -830,8 +838,8 @@ Address: %4 (%1 位元) - About Bitcoin Core - 關於位元幣核心 + About Hypercoin Core + 關於莱特幣核心 Command-line options @@ -877,16 +885,16 @@ Address: %4 歡迎 - Welcome to Bitcoin Core. - 歡迎使用位元幣核心 + Welcome to Hypercoin Core. + 歡迎使用莱特幣核心 - As this is the first time the program is launched, you can choose where Bitcoin Core will store its data. - 因為這是程式第一次啓動,你可以選擇位元幣核心儲存資料的地方。 + As this is the first time the program is launched, you can choose where Hypercoin Core will store its data. + 因為這是程式第一次啓動,你可以選擇莱特幣核心儲存資料的地方。 - Bitcoin Core will download and store a copy of the Bitcoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - 位元幣核心會下載並儲存一份位元幣區塊鏈的拷貝。至少有 %1GB 的資料會儲存到這個目錄中,並且還會持續增長。另外錢包資料也會儲存在這個目錄。 + Hypercoin Core will download and store a copy of the Hypercoin block chain. At least %1GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + 莱特幣核心會下載並儲存一份莱特幣區塊鏈的拷貝。至少有 %1GB 的資料會儲存到這個目錄中,並且還會持續增長。另外錢包資料也會儲存在這個目錄。 Use the default data directory @@ -897,8 +905,8 @@ Address: %4 使用自定的資料目錄: - Bitcoin Core - 位元幣核心 + Hypercoin Core + 莱特幣核心 Error: Specified data directory "%1" cannot be created. @@ -951,12 +959,12 @@ Address: %4 主要 - Automatically start Bitcoin after logging in to the system. - 在登入系統後自動啓動位元幣軟體。 + Automatically start Hypercoin after logging in to the system. + 在登入系統後自動啓動莱特幣軟體。 - &Start Bitcoin on system login - 系統登入時啟動位元幣 + &Start Hypercoin on system login + 系統登入時啟動莱特幣 Size of &database cache @@ -1031,16 +1039,16 @@ Address: %4 可以花還沒確認的零錢 - Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled. - 自動在路由器上開放位元幣的客戶端通訊埠。只有在你的路由器支援且開啓「通用即插即用」協定(UPnP)時才有作用。 + Automatically open the Hypercoin client port on the router. This only works when your router supports UPnP and it is enabled. + 自動在路由器上開放莱特幣的客戶端通訊埠。只有在你的路由器支援且開啓「通用即插即用」協定(UPnP)時才有作用。 Map port using &UPnP 用 &UPnP 設定通訊埠對應 - Connect to the Bitcoin network through a SOCKS5 proxy. - 透過 SOCKS5 代理伺服器來連線到位元幣網路。 + Connect to the Hypercoin network through a SOCKS5 proxy. + 透過 SOCKS5 代理伺服器來連線到莱特幣網路。 &Connect through SOCKS5 proxy (default proxy): @@ -1087,8 +1095,8 @@ Address: %4 使用界面語言: - The user interface language can be set here. This setting will take effect after restarting Bitcoin. - 可以在這裡設定使用者介面的語言。這個設定在重啓位元幣軟體後才會生效。 + The user interface language can be set here. This setting will take effect after restarting Hypercoin. + 可以在這裡設定使用者介面的語言。這個設定在重啓莱特幣軟體後才會生效。 &Unit to show amounts in: @@ -1146,8 +1154,8 @@ Address: %4 表單 - The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet. - 顯示的資訊可能是過期的。跟位元幣網路的連線建立後,你的錢包會自動和網路同步,但是這個步驟還沒完成。 + The displayed information may be out of date. Your wallet automatically synchronizes with the Hypercoin network after a connection is established, but this process has not completed yet. + 顯示的資訊可能是過期的。跟莱特幣網路的連線建立後,你的錢包會自動和網路同步,但是這個步驟還沒完成。 Watch-only: @@ -1253,16 +1261,16 @@ Address: %4 要求付款時發生錯誤 - Cannot start bitcoin: click-to-pay handler - 沒辦法啟動 bitcoin 協議的按就付處理器 + Cannot start hypercoin: click-to-pay handler + 沒辦法啟動 hypercoin 協議的按就付處理器 Payment request fetch URL is invalid: %1 取得付款要求的 URL 無效: %1 - URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters. - 沒辦法解析 URI 位址!可能是因為位元幣位址無效,或是 URI 參數格式錯誤。 + URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters. + 沒辦法解析 URI 位址!可能是因為莱特幣位址無效,或是 URI 參數格式錯誤。 Payment request file handling @@ -1280,6 +1288,14 @@ Address: %4 Refund from %1 來自 %1 的退款 + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + 付款要求 %1 過大 (%2 位元組, 上限 %3 位元組). + + + Payment request DoS protection + 支付請求的分佈式阻斷服務攻擊DoS保護 + Error communicating with %1: %2 跟 %1 通訊時發生錯誤: %2 @@ -1323,8 +1339,8 @@ Address: %4 金額 - Enter a Bitcoin address (e.g. %1) - 輸入位元幣位址 (比如說 %1) + Enter a Hypercoin address (e.g. %1) + 輸入莱特幣位址 (比如說 %1) %1 d @@ -1549,16 +1565,16 @@ Address: %4 除錯紀錄檔 - Open the Bitcoin debug log file from the current data directory. This can take a few seconds for large log files. - 從目前的資料目錄下開啓位元幣軟體的除錯紀錄檔。當紀錄檔很大時,可能會花好幾秒的時間。 + Open the Hypercoin debug log file from the current data directory. This can take a few seconds for large log files. + 從目前的資料目錄下開啓莱特幣軟體的除錯紀錄檔。當紀錄檔很大時,可能會花好幾秒的時間。 Clear console 清主控台 - Welcome to the Bitcoin RPC console. - 歡迎使用位元幣 RPC 主控台。 + Welcome to the Hypercoin RPC console. + 歡迎使用莱特幣 RPC 主控台。 Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. @@ -1632,8 +1648,8 @@ Address: %4 重複使用現有的收款位址(不建議) - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network. - 附加在付款要求中的訊息,可以不填,打開要求內容時會顯示。注意: 這個訊息不會隨著付款送到位元幣網路上。 + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Hypercoin network. + 附加在付款要求中的訊息,可以不填,打開要求內容時會顯示。注意: 這個訊息不會隨著付款送到莱特幣網路上。 An optional label to associate with the new receiving address. @@ -1842,7 +1858,7 @@ Address: %4 Choose... - 選擇... + 選項... collapse fee-settings @@ -1850,24 +1866,64 @@ Address: %4 Minimize - 最小化 + 縮小 + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + 如果自訂手續費設定為 1000 satoshi, 而交易資料大小只有 250 個位元組的話,那麽選擇「每千位元組」就只會付 250 satoshi 的手續費,換做選「總共至少」就會付 1000 satoshi. 但是如果交易資料大小超過一千個位元組,那麽兩者都是每千位元組的費用。 per kilobyte 每千位元組 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + 如果自訂手續費設定為 1000 satoshi, 而交易資料大小只有 250 個位元組的話,那麽選擇「每千位元組」就只會付 250 satoshi 的手續費,換做選「總共至少」就會付 1000 satoshi. 但是如果交易資料大小超過一千個位元組,那麽兩者都是每千位元組的費用。 + + + total at least + 總共最少 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for hypercoin transactions than the network can process. + 當交易量少於區塊可容納的空間時,只付最低手續費不會有什麽問題。但是當交易量的需求成長到超過整體網路可以處理的量時,可能會造成一筆一直不會被確認的交易。 + (read the tooltip) (請看提示) + + Recommended: + 建議值: + + + Custom: + 自訂: + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (手續費智慧演算法還沒準備好。通常都要等幾個區塊才行...) + Confirmation time: 確認時間: + + normal + 正常 + + + fast + 快速 + Send as zero-fee transaction if possible 盡可能送不用付手續費的交易 + + (confirmation may take longer) + (確認時間可能拉長) + Send to multiple recipients at once 一次付給多個收款人 @@ -1937,8 +1993,8 @@ Address: %4 複製找零金額 - Total Amount %1 (= %2) - 總金額 %1 (= %2) + Total Amount %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> + 總金額 %1<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span> or @@ -1973,8 +2029,20 @@ Address: %4 交易被拒絕了!有時候會發生這種錯誤,是因為你錢包中的一些錢已經被花掉了。比如說你複製了錢包檔 wallet.dat, 然後用複製的錢包花掉了錢,你現在所用的原來的錢包中,卻沒有那筆錢已經花掉的紀錄。 - Warning: Invalid Bitcoin address - 警告: 位元幣位址無效 + A fee higher than %1 is considered an insanely high fee. + 高於 %1 的手續費會被認為是不正常。 + + + Pay only the minimum fee of %1 + 只付最低手續費 %1 + + + Estimated to begin confirmation within %1 block(s). + 預計可在 %1 個區塊內開始確認。 + + + Warning: Invalid Hypercoin address + 警告: 莱特幣位址無效 (no label) @@ -2024,8 +2092,8 @@ Address: %4 這是一筆正常的付款。 - The Bitcoin address to send the payment to - 接收付款的位元幣位址 + The Hypercoin address to send the payment to + 接收付款的莱特幣位址 Alt+A @@ -2056,8 +2124,8 @@ Address: %4 請輸入這個位址的標記,來把它加進去已使用過位址的清單。 - A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network. - 附加在位元幣付款協議 URI 中的訊息,會和交易內容一起存起來,給你自己做參考。注意: 這個訊息不會送到位元幣網路上。 + A message that was attached to the hypercoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Hypercoin network. + 附加在莱特幣付款協議 URI 中的訊息,會和交易內容一起存起來,給你自己做參考。注意: 這個訊息不會送到莱特幣網路上。 This is an unverified payment request. @@ -2075,8 +2143,8 @@ Address: %4 ShutdownWindow - Bitcoin Core is shutting down... - 位元幣核心正在關閉中... + Hypercoin Core is shutting down... + 莱特幣核心正在關閉中... Do not shut down the computer until this window disappears. @@ -2098,8 +2166,8 @@ Address: %4 你可以用自己的位址簽署訊息,來證明你對位址的所有權。但是請小心,不要簽署語意含糊不清的內容,因為釣魚式詐騙可能會用騙你簽署的手法來冒充是你。只有在語句中的細節你都同意時才簽署。 - The Bitcoin address to sign the message with - 用來簽署訊息的位元幣位址 + The Hypercoin address to sign the message with + 用來簽署訊息的莱特幣位址 Choose previously used address @@ -2130,8 +2198,8 @@ Address: %4 複製目前的簽章到系統剪貼簿 - Sign the message to prove you own this Bitcoin address - 簽署這個訊息來證明這個位元幣位址是你的 + Sign the message to prove you own this Hypercoin address + 簽署這個訊息來證明這個莱特幣位址是你的 Sign &Message @@ -2154,12 +2222,12 @@ Address: %4 請在下面輸入簽署的位址,訊息(請確定完整複製了所包含的換行,空格,跳位符號等等),以及簽章,來驗證這個訊息。請小心,除了訊息內容以外,不要對簽章本身過度解讀,以避免被用「中間人攻擊法」詐騙。 - The Bitcoin address the message was signed with - 簽署這個訊息的位元幣位址 + The Hypercoin address the message was signed with + 簽署這個訊息的莱特幣位址 - Verify the message to ensure it was signed with the specified Bitcoin address - 驗證這個訊息來確定是用指定的位元幣位址簽署的 + Verify the message to ensure it was signed with the specified Hypercoin address + 驗證這個訊息來確定是用指定的莱特幣位址簽署的 Verify &Message @@ -2225,8 +2293,8 @@ Address: %4 SplashScreen - Bitcoin Core - 位元幣核心 + Hypercoin Core + 莱特幣核心 The Bitcoin Core developers @@ -2747,30 +2815,6 @@ Address: %4 Accept connections from outside (default: 1 if no -proxy or -connect) 是否接受外來連線(預設值: 當沒有 -proxy 或 -connect 時為 1) - - %s, you must set a rpcpassword in the configuration file: -%s -It is recommended you use the following random password: -rpcuser=bitcoinrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - - %s, 你必須要在以下設定檔中設定 RPC 密碼(rpcpassword): -%s -建議你使用以下隨機產生的密碼: -rpcuser=bitcoinrpc -rpcpassword=%s -(你不用記住這個密碼) -使用者名稱(rpcuser)和密碼(rpcpassword)不可以相同! -如果還沒有這個設定檔,請在造出來的時候,設定檔案權限成「只有主人才能讀取」。 -也建議你設定警示通知,發生問題時你才會被通知到; -比如說設定成: -alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com - Bind to given address and always listen on it. Use [host]:port notation for IPv6 和指定的位址繫結,並且一直在指定位址聽候連線。IPv6 請用 [主機]:通訊埠 這種格式 @@ -2787,14 +2831,6 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Enter regression test mode, which uses a special chain in which blocks can be solved instantly. 進入回歸測試模式,使用可以立即解出區塊的特殊區塊鏈。 - - Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - 錯誤: 交易被拒絕了!有時候會發生這種錯誤,是因為你錢包中的一些錢已經被花掉了。比如說你複製了錢包檔 wallet.dat, 然後用複製的錢包花掉了錢,你現在所用的原來的錢包中,卻沒有那筆錢已經花掉的紀錄。 - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds! - 錯誤: 這筆交易需要至少 %s 的手續費!因為它的金額太大,或複雜度太高,或是使用了最近才剛收到的款項。 - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) 當錢包有交易改變時要執行的指令(指令中的 %s 會被取代成交易識別碼) @@ -2812,8 +2848,8 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com 這是個還沒發表的測試版本 - 使用請自負風險 - 請不要用來開採或商業應用 - Unable to bind to %s on this computer. Bitcoin Core is probably already running. - 沒辦法繫結在這台電腦上的 %s 。位元幣核心可能已經在執行了。 + Unable to bind to %s on this computer. Hypercoin Core is probably already running. + 沒辦法繫結在這台電腦上的 %s 。莱特幣核心可能已經在執行了。 Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. @@ -2821,7 +2857,7 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - 警告: 位元幣網路對於區塊鏈結的決定目前有分歧!看來有些礦工會有問題。 + 警告: 莱特幣網路對於區塊鏈結的決定目前有分歧!看來有些礦工會有問題。 Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. @@ -2899,18 +2935,10 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Error opening block database 打開區塊資料庫時發生錯誤 - - Error: A fatal internal error occured, see debug.log for details - 錯誤:一個致命的內部錯誤,到debug.log看更多細節 - Error: Disk space is low! 錯誤: 磁碟空間很少! - - Error: Wallet locked, unable to create transaction! - 錯誤: 錢包被上鎖了,沒辦法製造新的交易! - Failed to listen on any port. Use -listen=0 if you want this. 在任意的通訊埠聽候失敗。如果你希望這樣的話,可以設定 -listen=0. @@ -3000,8 +3028,8 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com 和指定的位址繫結以聽候 JSON-RPC 連線。IPv6 請用 [主機]:通訊埠 這種格式。這個選項可以設定多次。(預設值: 跟所有網路界面上的位址繫結) - Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running. - 沒辦法鎖定資料目錄 %s。位元幣核心可能已經在執行了。 + Cannot obtain a lock on data directory %s. Hypercoin Core is probably already running. + 沒辦法鎖定資料目錄 %s。莱特幣核心可能已經在執行了。 Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:%u) @@ -3024,21 +3052,37 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com 當收到相關警示,或發現相當長的分支時,所要執行的指令(指令中的 %s 會被取代成警示訊息) - Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for relaying (default: %s) 當處理轉發的交易時,如果每千位元組(Kb)的手續費比這個值低,就視為沒付手續費 (預設值: %s) - Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s) + Fees (in HOT/Kb) smaller than this are considered zero fee for transaction creation (default: %s) 當製造交易時,如果每千位元組(Kb)的手續費比這個值低,就視為沒付手續費 (預設值: %s) + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + 當沒有設定 paytxfee 時,自動包含可以讓交易能在平均 n 個區塊內開始確認的手續費(預設值: %u) + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + -maxtxfee=<amount>: '%s' 的金額無效 (必須大於最低轉發手續費 %s 以避免交易無法確認) + Maximum size of data in data carrier transactions we relay and mine (default: %u) 轉發和開採時,對只帶資料的交易的大小上限(預設值: %u) + + Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s) + 一次錢包交易允許付出最高的總手續費,設定太低的話,可能會無法進行資料量大的交易(預設值: %s) + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) 是否允許在節點位址數目不足時,使用域名查詢來搜尋節點 (預設值: 當沒用 -connect 時為 1) + + Require high priority for relaying free or low-fee transactions (default:%u) + 沒有手續費或手續費比較低的交易是否必須要是高優先權才會轉發(預設值: %u) + Set maximum size of high-priority/low-fee transactions in bytes (default: %d) 設定高優先度或低手續費的交易資料大小上限成多少位元組(預設值: %d) @@ -3052,13 +3096,45 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com 此產品也包含了由 OpenSSL Project 所開發的 OpenSSL Toolkit 軟體 <https://www.openssl.org/>, 和由 Eric Young 撰寫的加解密軟體,以及由 Thomas Bernard 所撰寫的 UPnP 軟體。 - Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly. - 警告: 請檢查電腦日期和時間是否正確!位元幣核心沒辦法在時鐘不準的情況下正常運作。 + To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file: +%s +It is recommended you use the following random password: +rpcuser=hypercoinrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + 要使用 hypercoind, 或是對 hypercoin-qt 指定 -server 選項,你必須要在以下設定檔中設定 RPC 密碼(選項: rpcpassword): +%s +建議你使用以下隨機產生的密碼: +rpcuser=hypercoinrpc +rpcpassword=%s +(你不用記住這個密碼) +注意使用者名稱(rpcuser)和密碼(rpcpassword)不可以相同! +如果設定檔還不存在,請在新增時,設定檔案權限為"只有主人才能讀取"。 +也建議你設定警示通知,這樣發生問題時你才會被通知到; +比如說設定: alertnotify=echo %%s | mail -s "Hypercoin Alert" admin@foo.com + + + + Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction. + 警告: -maxtxfee 設定了很高的金額!這可是一次交易就有可能付出的最高手續費。 + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly. + 警告: 請檢查電腦日期和時間是否正確!莱特幣核心沒辦法在時鐘不準的情況下正常運作。 Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway 在白名單中的節點不會因為偵測到阻斷服務攻擊而被停用。來自這些節點的交易也一定會被轉發,即使說交易本來就在記憶池裡了也一樣。適用於像是閘道伺服器。 + + Accept public REST requests (default: %u) + 接受公開的REST請求 (預設值: %u) + Cannot resolve -whitebind address: '%s' 沒辦法解析 -whitebind 指定的位址: '%s' @@ -3076,15 +3152,23 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com 沒辦法解析 -rpcbind 參數值 %s 為網路位址 - Error loading wallet.dat: Wallet requires newer version of Bitcoin Core - 載入 wallet.dat 檔案時發生錯誤: 這個錢包需要新版的位元幣核心 + Error loading wallet.dat: Wallet requires newer version of Hypercoin Core + 載入 wallet.dat 檔案時發生錯誤: 這個錢包需要新版的莱特幣核心 + + + Error reading from database, shutting down. + 讀取資料庫時發生錯誤,要關閉了。 + + + Error: A fatal internal error occurred, see debug.log for details + 錯誤:發生了致命的內部錯誤,細節請看 debug.log Error: Unsupported argument -tor found, use -onion. 錯誤: 找到不再支援的 -tor 參數,請改用 -onion 參數。 - Fee (in BTC/kB) to add to transactions you send (default: %s) + Fee (in HOT/kB) to add to transactions you send (default: %s) 交易付款時每千位元組(kB)的交易手續費 (預設值: %s) @@ -3092,8 +3176,12 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com 資訊 - Initialization sanity check failed. Bitcoin Core is shutting down. - 初始化時的基本檢查失敗了。位元幣核心將會關閉。 + Initialization sanity check failed. Hypercoin Core is shutting down. + 初始化時的基本檢查失敗了。莱特幣核心就要關閉了。 + + + Invalid amount for -maxtxfee=<amount>: '%s' + -maxtxfee=<amount>: '%s' 的金額無效 Invalid amount for -minrelaytxfee=<amount>: '%s' @@ -3111,10 +3199,6 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid netmask specified in -whitelist: '%s' 指定在 -whitelist 的網段無效: '%s' - - Keep at most <n> unconnectable blocks in memory (default: %u) - 在記憶體中保存最多 <n> 個不和其他區塊相連結的區塊(預設值 : %u) - Keep at most <n> unconnectable transactions in memory (default: %u) 保持最多 <n> 無法連結的交易在記憶體 (預設: %u) @@ -3128,17 +3212,17 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com 節點轉發選項: - Print block on startup, if found in block index - 啟動時輸出指定的區塊內容,如果有在區塊索引中找到的話 - - - RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions) - RPC SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) + RPC SSL options: (see the Hypercoin Wiki for SSL setup instructions) + RPC SSL 選項: (SSL 設定程序請見 Hypercoin Wiki) RPC server options: RPC 伺服器選項: + + RPC support for HTTP persistent connections (default: %d) + RPC 是否支援 HTTP 持久連線(預設值: %d) + Randomly drop 1 of every <n> network messages 隨機丟掉 <n> 分之一的網路訊息 @@ -3147,6 +3231,10 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Randomly fuzz 1 of every <n> network messages 隨機亂動 <n> 分之一的網路訊息裡的資料 + + Receive and display P2P network alerts (default: %u) + 接收並顯示 P2P 網路警示 (預設值: %u) + Send trace/debug info to console instead of debug.log file 在終端機顯示追蹤或除錯資訊,而不是寫到檔案 debug.log 中 @@ -3179,6 +3267,10 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Transaction amounts must be positive 交易金額必須是正的 + + Transaction too large for fee policy + 根據交易手續費準則,本交易的位元量過大 + Transaction too large 交易位元量太大 @@ -3196,8 +3288,8 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com JSON-RPC 連線使用者名稱 - Wallet needed to be rewritten: restart Bitcoin Core to complete - 錢包需要重寫: 請重新啓動位元幣核心來完成 + Wallet needed to be rewritten: restart Hypercoin Core to complete + 錢包需要重寫: 請重新啓動莱特幣核心來完成 Warning @@ -3275,10 +3367,6 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com How thorough the block verification of -checkblocks is (0-4, default: %u) 使用 -checkblocks 檢查區塊的仔細程度(0 到 4,預設值: %u) - - If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u) - 當沒有設定 paytxfee 時,自動包含可以讓交易能在平均 n 個區塊內確認的手續費(預設值: %u) - Log transaction priority and fee per kB when mining blocks (default: %u) 開採區塊的時候,紀錄交易的優先度以及每千位元組(kB)的手續費(預設值: %u) @@ -3325,7 +3413,7 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Generate coins (default: %u) - 生產位元幣(預設值: %u) + 生產莱特幣(預設值: %u) How many blocks to check at startup (default: %u, 0 = all) @@ -3371,10 +3459,6 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Prepend debug output with timestamp (default: %u) 在除錯輸出內容前附加時間(預設值: %u) - - Print block tree on startup (default: %u) - 啟動時輸出區塊樹(預設值: %u) - Relay and mine data carrier transactions (default: %u) 允許轉發和開採只帶資料的交易(預設值: %u) @@ -3451,10 +3535,6 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Invalid amount for -paytxfee=<amount>: '%s' 設定 -paytxfee=<金額> 的金額無效: '%s' - - Invalid amount - 無效的金額 - Insufficient funds 累積金額不足 @@ -3487,13 +3567,9 @@ alertnotify=echo %%s | mail -s "Bitcoin Alert" admin@foo.com Done loading 載入完成 - - To use the %s option - 為了要使用 %s 選項 - Error 錯誤 - \ No newline at end of file + diff --git a/src/qt/macdockiconhandler.h b/src/qt/macdockiconhandler.h index 1ffab75c9a114..7c60908876e73 100644 --- a/src/qt/macdockiconhandler.h +++ b/src/qt/macdockiconhandler.h @@ -14,12 +14,6 @@ class QMenu; class QWidget; QT_END_NAMESPACE -#ifdef __OBJC__ -@class DockIconClickEventHandler; -#else -class DockIconClickEventHandler; -#endif - /** Macintosh-specific dock icon handler. */ class MacDockIconHandler : public QObject @@ -33,7 +27,7 @@ class MacDockIconHandler : public QObject void setIcon(const QIcon &icon); void setMainWindow(QMainWindow *window); static MacDockIconHandler *instance(); - + static void cleanup(); void handleDockIconClickEvent(); signals: @@ -42,7 +36,6 @@ class MacDockIconHandler : public QObject private: MacDockIconHandler(); - DockIconClickEventHandler *m_dockIconClickEventHandler; QWidget *m_dummyWidget; QMenu *m_dockMenu; QMainWindow *mainWindow; diff --git a/src/qt/macdockiconhandler.mm b/src/qt/macdockiconhandler.mm index a2ff148d9dad1..e66154f144f83 100644 --- a/src/qt/macdockiconhandler.mm +++ b/src/qt/macdockiconhandler.mm @@ -11,52 +11,46 @@ #undef slots #include +#include +#include #if QT_VERSION < 0x050000 extern void qt_mac_set_dock_menu(QMenu *); #endif -@interface DockIconClickEventHandler : NSObject -{ - MacDockIconHandler* dockIconHandler; -} - -@end +static MacDockIconHandler *s_instance = NULL; -@implementation DockIconClickEventHandler - -- (id)initWithDockIconHandler:(MacDockIconHandler *)aDockIconHandler -{ - self = [super init]; - if (self) { - dockIconHandler = aDockIconHandler; - - [[NSAppleEventManager sharedAppleEventManager] - setEventHandler:self - andSelector:@selector(handleDockClickEvent:withReplyEvent:) - forEventClass:kCoreEventClass - andEventID:kAEReopenApplication]; - } - return self; +bool dockClickHandler(id self,SEL _cmd,...) { + Q_UNUSED(self) + Q_UNUSED(_cmd) + + s_instance->handleDockIconClickEvent(); + + // Return NO (false) to suppress the default OS X actions + return false; } -- (void)handleDockClickEvent:(NSAppleEventDescriptor*)event withReplyEvent:(NSAppleEventDescriptor*)replyEvent -{ - Q_UNUSED(event) - Q_UNUSED(replyEvent) - - if (dockIconHandler) { - dockIconHandler->handleDockIconClickEvent(); +void setupDockClickHandler() { + Class cls = objc_getClass("NSApplication"); + id appInst = objc_msgSend((id)cls, sel_registerName("sharedApplication")); + + if (appInst != NULL) { + id delegate = objc_msgSend(appInst, sel_registerName("delegate")); + Class delClass = (Class)objc_msgSend(delegate, sel_registerName("class")); + SEL shouldHandle = sel_registerName("applicationShouldHandleReopen:hasVisibleWindows:"); + if (class_getInstanceMethod(delClass, shouldHandle)) + class_replaceMethod(delClass, shouldHandle, (IMP)dockClickHandler, "B@:"); + else + class_addMethod(delClass, shouldHandle, (IMP)dockClickHandler,"B@:"); } } -@end MacDockIconHandler::MacDockIconHandler() : QObject() { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - this->m_dockIconClickEventHandler = [[DockIconClickEventHandler alloc] initWithDockIconHandler:this]; + setupDockClickHandler(); this->m_dummyWidget = new QWidget(); this->m_dockMenu = new QMenu(this->m_dummyWidget); this->setMainWindow(NULL); @@ -74,7 +68,6 @@ - (void)handleDockClickEvent:(NSAppleEventDescriptor*)event withReplyEvent:(NSAp MacDockIconHandler::~MacDockIconHandler() { - [this->m_dockIconClickEventHandler release]; delete this->m_dummyWidget; this->setMainWindow(NULL); } @@ -119,12 +112,16 @@ - (void)handleDockClickEvent:(NSAppleEventDescriptor*)event withReplyEvent:(NSAp MacDockIconHandler *MacDockIconHandler::instance() { - static MacDockIconHandler *s_instance = NULL; if (!s_instance) s_instance = new MacDockIconHandler(); return s_instance; } +void MacDockIconHandler::cleanup() +{ + delete s_instance; +} + void MacDockIconHandler::handleDockIconClickEvent() { if (this->mainWindow) diff --git a/src/qt/macnotificationhandler.mm b/src/qt/macnotificationhandler.mm index aa50a0d9fbb0c..b99f59fb23ff8 100644 --- a/src/qt/macnotificationhandler.mm +++ b/src/qt/macnotificationhandler.mm @@ -13,7 +13,7 @@ @implementation NSBundle(returnCorrectIdentifier) - (NSString *)__bundleIdentifier { if (self == [NSBundle mainBundle]) { - return @"org.bitcoinfoundation.Bitcoin-Qt"; + return @"org.hypercoin.Hypercoin-Qt"; } else { return [self __bundleIdentifier]; } diff --git a/src/qt/openuridialog.cpp b/src/qt/openuridialog.cpp index 06189aeaf3ea3..5c8075f8bc25d 100644 --- a/src/qt/openuridialog.cpp +++ b/src/qt/openuridialog.cpp @@ -16,7 +16,7 @@ OpenURIDialog::OpenURIDialog(QWidget *parent) : { ui->setupUi(this); #if QT_VERSION >= 0x040700 - ui->uriEdit->setPlaceholderText("bitcoin:"); + ui->uriEdit->setPlaceholderText("hypercoin:"); #endif } @@ -48,5 +48,5 @@ void OpenURIDialog::on_selectFileButton_clicked() if(filename.isEmpty()) return; QUrl fileUri = QUrl::fromLocalFile(filename); - ui->uriEdit->setText("bitcoin:?r=" + QUrl::toPercentEncoding(fileUri.toString())); + ui->uriEdit->setText("hypercoin:?r=" + QUrl::toPercentEncoding(fileUri.toString())); } diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index bd3dab41a8f2d..67805211ba578 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -50,14 +50,14 @@ using namespace boost; using namespace std; const int BITCOIN_IPC_CONNECT_TIMEOUT = 1000; // milliseconds -const QString BITCOIN_IPC_PREFIX("bitcoin:"); +const QString BITCOIN_IPC_PREFIX("hypercoin:"); // BIP70 payment protocol messages const char* BIP70_MESSAGE_PAYMENTACK = "PaymentACK"; const char* BIP70_MESSAGE_PAYMENTREQUEST = "PaymentRequest"; // BIP71 payment protocol media types -const char* BIP71_MIMETYPE_PAYMENT = "application/bitcoin-payment"; -const char* BIP71_MIMETYPE_PAYMENTACK = "application/bitcoin-paymentack"; -const char* BIP71_MIMETYPE_PAYMENTREQUEST = "application/bitcoin-paymentrequest"; +const char* BIP71_MIMETYPE_PAYMENT = "application/hypercoin-payment"; +const char* BIP71_MIMETYPE_PAYMENTACK = "application/hypercoin-paymentack"; +const char* BIP71_MIMETYPE_PAYMENTREQUEST = "application/hypercoin-paymentrequest"; // BIP70 max payment request size in bytes (DoS protection) const qint64 BIP70_MAX_PAYMENTREQUEST_SIZE = 50000; @@ -78,7 +78,7 @@ void PaymentServer::freeCertStore() // static QString ipcServerName() { - QString name("BitcoinQt"); + QString name("HypercoinQt"); // Append a simple hash of the datadir // Note that GetDataDir(true) returns a different path @@ -315,7 +315,7 @@ PaymentServer::PaymentServer(QObject* parent, bool startLocalServer) : if (!uriServer->listen(name)) { // constructor is called early in init, so don't use "emit message()" here QMessageBox::critical(0, tr("Payment request error"), - tr("Cannot start bitcoin: click-to-pay handler")); + tr("Cannot start hypercoin: click-to-pay handler")); } else { connect(uriServer, SIGNAL(newConnection()), this, SLOT(handleURIConnection())); @@ -441,7 +441,7 @@ void PaymentServer::handleURIOrFile(const QString& s) } else emit message(tr("URI handling"), - tr("URI cannot be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters."), + tr("URI cannot be parsed! This can be caused by an invalid Hypercoin address or malformed URI parameters."), CClientUIInterface::ICON_WARNING); return; @@ -573,7 +573,7 @@ bool PaymentServer::processPaymentRequest(PaymentRequestPlus& request, SendCoins // Extract and check amounts CTxOut txOut(sendingTo.second, sendingTo.first); - if (txOut.IsDust(::minRelayTxFee)) { + if (txOut.nValue < DUST_THRESHOLD) { emit message(tr("Payment request error"), tr("Requested payment amount of %1 is too small (considered dust).") .arg(BitcoinUnits::formatWithUnit(optionsModel->getDisplayUnit(), sendingTo.second)), CClientUIInterface::MSG_ERROR); @@ -667,8 +667,7 @@ void PaymentServer::netRequestFinished(QNetworkReply* reply) // BIP70 DoS protection if (reply->size() > BIP70_MAX_PAYMENTREQUEST_SIZE) { - QString msg = tr("Payment request %2 is too large (%3 bytes, allowed %4 bytes).") - .arg(__func__) + QString msg = tr("Payment request %1 is too large (%2 bytes, allowed %3 bytes).") .arg(reply->request().url().toString()) .arg(reply->size()) .arg(BIP70_MAX_PAYMENTREQUEST_SIZE); @@ -744,6 +743,6 @@ void PaymentServer::setOptionsModel(OptionsModel *optionsModel) void PaymentServer::handlePaymentACK(const QString& paymentACKMsg) { - // currently we don't futher process or store the paymentACK message + // currently we don't further process or store the paymentACK message emit message(tr("Payment acknowledged"), paymentACKMsg, CClientUIInterface::ICON_INFORMATION | CClientUIInterface::MODAL); } diff --git a/src/qt/res/bitcoin-qt-res.rc b/src/qt/res/bitcoin-qt-res.rc index 809235be5f9c5..62a9164fe86c3 100644 --- a/src/qt/res/bitcoin-qt-res.rc +++ b/src/qt/res/bitcoin-qt-res.rc @@ -19,14 +19,14 @@ BEGIN BEGIN BLOCK "040904E4" // U.S. English - multilingual (hex) BEGIN - VALUE "CompanyName", "Bitcoin" - VALUE "FileDescription", "Bitcoin Core (OSS GUI client for Bitcoin)" + VALUE "CompanyName", "Hypercoin" + VALUE "FileDescription", "Hypercoin Core (OSS GUI client for Hypercoin)" VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "InternalName", "bitcoin-qt" + VALUE "InternalName", "hypercoin-qt" VALUE "LegalCopyright", COPYRIGHT_STR VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." - VALUE "OriginalFilename", "bitcoin-qt.exe" - VALUE "ProductName", "Bitcoin Core" + VALUE "OriginalFilename", "hypercoin-qt.exe" + VALUE "ProductName", "Hypercoin Core" VALUE "ProductVersion", VER_PRODUCTVERSION_STR END END diff --git a/src/qt/res/icons/bitcoin.ico b/src/qt/res/icons/bitcoin.ico old mode 100755 new mode 100644 diff --git a/src/qt/res/icons/bitcoin_testnet.ico b/src/qt/res/icons/bitcoin_testnet.ico old mode 100755 new mode 100644 diff --git a/src/qt/res/src/bitcoin.svg b/src/qt/res/src/bitcoin.svg index 14cf0c5e115f2..21df98bc099a8 100644 --- a/src/qt/res/src/bitcoin.svg +++ b/src/qt/res/src/bitcoin.svg @@ -1,58 +1,153 @@ - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +image/svg+xml \ No newline at end of file diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 2d2d448b49f46..b3c4d493d467c 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -361,7 +361,7 @@ void RPCConsole::clear() "b { color: #006060; } " ); - message(CMD_REPLY, (tr("Welcome to the Bitcoin RPC console.") + "
" + + message(CMD_REPLY, (tr("Welcome to the Hypercoin RPC console.") + "
" + tr("Use up and down arrows to navigate history, and Ctrl-L to clear screen.") + "
" + tr("Type help for an overview of available commands.")), true); } @@ -556,7 +556,7 @@ void RPCConsole::peerLayoutChanged() if (detailNodeRow < 0) { - // detail node dissapeared from table (node disconnected) + // detail node disappeared from table (node disconnected) fUnselect = true; cachedNodeid = -1; ui->detailWidget->hide(); diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 46eb58ca43940..5e9d66b808204 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -305,9 +305,9 @@ void SendCoinsDialog::on_sendButton_clicked() if(u != model->getOptionsModel()->getDisplayUnit()) alternativeUnits.append(BitcoinUnits::formatHtmlWithUnit(u, totalAmount)); } - questionString.append(tr("Total Amount %1 (= %2)") + questionString.append(tr("Total Amount %1
(=%2)
") .arg(BitcoinUnits::formatHtmlWithUnit(model->getOptionsModel()->getDisplayUnit(), totalAmount)) - .arg(alternativeUnits.join(" " + tr("or") + " "))); + .arg(alternativeUnits.join(" " + tr("or") + "
"))); QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm send coins"), questionString.arg(formatted.join("
")), @@ -738,7 +738,7 @@ void SendCoinsDialog::coinControlChangeEdited(const QString& text) } else if (!addr.IsValid()) // Invalid address { - ui->labelCoinControlChangeLabel->setText(tr("Warning: Invalid Bitcoin address")); + ui->labelCoinControlChangeLabel->setText(tr("Warning: Invalid Hypercoin address")); } else // Valid address { diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index b4b81440ca810..1354bf5b6c3f3 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -24,55 +24,37 @@ SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle *networkStyle) QWidget(0, f), curAlignment(0) { // set reference point, paddings - int paddingRight = 50; - int paddingTop = 50; - int titleVersionVSpace = 17; - int titleCopyrightVSpace = 40; + int paddingRight = 190; + int paddingRightCopyright = 220; + int paddingTop = 170; + int paddingCopyrightTop = 70; + int titleCopyrightVSpace = 14; float fontFactor = 1.0; // define text to place - QString titleText = tr("Bitcoin Core"); QString versionText = QString("Version %1").arg(QString::fromStdString(FormatFullVersion())); - QString copyrightText = QChar(0xA9)+QString(" 2009-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Bitcoin Core developers")); + QString copyrightText1 = QChar(0xA9)+QString(" 2009-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Bitcoin Core developers")); + QString copyrightText2 = QChar(0xA9)+QString(" 2017-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Hypercoin Core developers")); QString titleAddText = networkStyle->getTitleAddText(); - - QString font = "Arial"; + QString font = QApplication::font().toString(); // load the bitmap for writing some text over it pixmap = networkStyle->getSplashImage(); QPainter pixPaint(&pixmap); pixPaint.setPen(QColor(100,100,100)); + pixPaint.setFont(QFont(font, 8*fontFactor)); - // check font size and drawing with - pixPaint.setFont(QFont(font, 33*fontFactor)); QFontMetrics fm = pixPaint.fontMetrics(); - int titleTextWidth = fm.width(titleText); - if(titleTextWidth > 160) { - // strange font rendering, Arial probably not found - fontFactor = 0.75; - } - - pixPaint.setFont(QFont(font, 33*fontFactor)); - fm = pixPaint.fontMetrics(); - titleTextWidth = fm.width(titleText); - pixPaint.drawText(pixmap.width()-titleTextWidth-paddingRight,paddingTop,titleText); - pixPaint.setFont(QFont(font, 15*fontFactor)); - - // if the version string is to long, reduce size - fm = pixPaint.fontMetrics(); - int versionTextWidth = fm.width(versionText); - if(versionTextWidth > titleTextWidth+paddingRight-10) { - pixPaint.setFont(QFont(font, 10*fontFactor)); - titleVersionVSpace -= 5; - } - pixPaint.drawText(pixmap.width()-titleTextWidth-paddingRight+2,paddingTop+titleVersionVSpace,versionText); + // draw version + pixPaint.drawText(pixmap.width()-paddingRight+2,paddingTop,versionText); // draw copyright stuff - pixPaint.setFont(QFont(font, 10*fontFactor)); - pixPaint.drawText(pixmap.width()-titleTextWidth-paddingRight,paddingTop+titleCopyrightVSpace,copyrightText); + pixPaint.setFont(QFont(font, 8*fontFactor)); + pixPaint.drawText(pixmap.width()-paddingRightCopyright,paddingTop+paddingCopyrightTop,copyrightText1); + pixPaint.drawText(pixmap.width()-paddingRightCopyright,paddingTop+paddingCopyrightTop+titleCopyrightVSpace,copyrightText2); // draw additional text if special network if(!titleAddText.isEmpty()) { @@ -87,7 +69,7 @@ SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle *networkStyle) pixPaint.end(); // Set window title - setWindowTitle(titleText + " " + titleAddText); + //setWindowTitle(titleText + " " + titleAddText); // Resize window and move to center of desktop, disallow resizing QRect r(QPoint(), pixmap.size()); diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp index f2161c2f7931a..23fc09038bed3 100644 --- a/src/qt/test/test_main.cpp +++ b/src/qt/test/test_main.cpp @@ -6,6 +6,7 @@ #include "config/bitcoin-config.h" #endif +#include "util.h" #include "uritests.h" #ifdef ENABLE_WALLET @@ -27,12 +28,13 @@ Q_IMPORT_PLUGIN(qkrcodecs) // This is all you need to run all the tests int main(int argc, char *argv[]) { + SetupEnvironment(); bool fInvalid = false; // Don't remove this, it's needed to access // QCoreApplication:: in the tests QCoreApplication app(argc, argv); - app.setApplicationName("Bitcoin-Qt-test"); + app.setApplicationName("Hypercoin-Qt-test"); URITests test1; if (QTest::qExec(&test1) != 0) diff --git a/src/qt/test/uritests.cpp b/src/qt/test/uritests.cpp index 78a7b1b9b47ca..de8fabe15a4af 100644 --- a/src/qt/test/uritests.cpp +++ b/src/qt/test/uritests.cpp @@ -13,54 +13,54 @@ void URITests::uriTests() { SendCoinsRecipient rv; QUrl uri; - uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?req-dontexist=")); + uri.setUrl(QString("litecoin:HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?req-dontexist=")); QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); - uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?dontexist=")); + uri.setUrl(QString("litecoin:HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?dontexist=")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.address == QString("HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm")); QVERIFY(rv.label == QString()); QVERIFY(rv.amount == 0); - uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?label=Wikipedia Example Address")); + uri.setUrl(QString("litecoin:HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?label=Wikipedia Example Address")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.address == QString("HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm")); QVERIFY(rv.label == QString("Wikipedia Example Address")); QVERIFY(rv.amount == 0); - uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=0.001")); + uri.setUrl(QString("litecoin:HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?amount=0.001")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.address == QString("HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm")); QVERIFY(rv.label == QString()); QVERIFY(rv.amount == 100000); - uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=1.001")); + uri.setUrl(QString("litecoin:HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?amount=1.001")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.address == QString("HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm")); QVERIFY(rv.label == QString()); QVERIFY(rv.amount == 100100000); - uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=100&label=Wikipedia Example")); + uri.setUrl(QString("litecoin:HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?amount=100&label=Wikipedia Example")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.address == QString("HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm")); QVERIFY(rv.amount == 10000000000LL); QVERIFY(rv.label == QString("Wikipedia Example")); - uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?message=Wikipedia Example Address")); + uri.setUrl(QString("litecoin:HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?message=Wikipedia Example Address")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(rv.address == QString("HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm")); QVERIFY(rv.label == QString()); - QVERIFY(GUIUtil::parseBitcoinURI("bitcoin://175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?message=Wikipedia Example Address", &rv)); - QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); + QVERIFY(GUIUtil::parseBitcoinURI("litecoin://HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?message=Wikipedia Example Address", &rv)); + QVERIFY(rv.address == QString("HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm")); QVERIFY(rv.label == QString()); - uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?req-message=Wikipedia Example Address")); + uri.setUrl(QString("litecoin:HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?req-message=Wikipedia Example Address")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); - uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=1,000&label=Wikipedia Example")); + uri.setUrl(QString("litecoin:HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?amount=1,000&label=Wikipedia Example")); QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); - uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=1,000.0&label=Wikipedia Example")); + uri.setUrl(QString("litecoin:HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm?amount=1,000.0&label=Wikipedia Example")); QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv)); } diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index 58bf0406248b9..a04d92d649e19 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -28,7 +28,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) : ui->setupUi(this); GUIUtil::restoreWindowGeometry("nHelpMessageDialogWindow", this->size(), this); - QString version = tr("Bitcoin Core") + " " + tr("version") + " " + QString::fromStdString(FormatFullVersion()); + QString version = tr("Hypercoin Core") + " " + tr("version") + " " + QString::fromStdString(FormatFullVersion()); /* On x86 add a bit specifier to the version so that users can distinguish between * 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious. */ @@ -40,7 +40,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) : if (about) { - setWindowTitle(tr("About Bitcoin Core")); + setWindowTitle(tr("About Hypercoin Core")); /// HTML-format the license message from the core QString licenseInfo = QString::fromStdString(LicenseInfo()); @@ -60,7 +60,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) : } else { setWindowTitle(tr("Command-line options")); QString header = tr("Usage:") + "\n" + - " bitcoin-qt [" + tr("command-line options") + "] " + "\n"; + " hypercoin-qt [" + tr("command-line options") + "] " + "\n"; QString coreOptions = QString::fromStdString(HelpMessage(HMM_BITCOIN_QT)); @@ -112,7 +112,7 @@ ShutdownWindow::ShutdownWindow(QWidget *parent, Qt::WindowFlags f): { QVBoxLayout *layout = new QVBoxLayout(); layout->addWidget(new QLabel( - tr("Bitcoin Core is shutting down...") + "

" + + tr("Hypercoin Core is shutting down...") + "

" + tr("Do not shut down the computer until this window disappears."))); setLayout(layout); } diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index 66e86ebace401..2bb4ef2def6d2 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -158,7 +158,7 @@ Value getrawmempool(const Array& params, bool fHelp) "{ (json object)\n" " \"transactionid\" : { (json object)\n" " \"size\" : n, (numeric) transaction size in bytes\n" - " \"fee\" : n, (numeric) transaction fee in bitcoins\n" + " \"fee\" : n, (numeric) transaction fee in hypercoins\n" " \"time\" : n, (numeric) local time transaction entered pool in seconds since 1 Jan 1970 GMT\n" " \"height\" : n, (numeric) block height when transaction entered pool\n" " \"startingpriority\" : n, (numeric) priority when transaction entered pool\n" @@ -273,8 +273,8 @@ Value getblock(const Array& params, bool fHelp) "\nResult (for verbose=false):\n" "\"data\" (string) A string that is serialized, hex-encoded data for block 'hash'.\n" "\nExamples:\n" - + HelpExampleCli("getblock", "\"00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09\"") - + HelpExampleRpc("getblock", "\"00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09\"") + + HelpExampleCli("getblock", "\"511cd6ae9f30c808f2e03bc01685366869d33d49bbdaab3a576c96fbf36b147f\"") + + HelpExampleRpc("getblock", "\"511cd6ae9f30c808f2e03bc01685366869d33d49bbdaab3a576c96fbf36b147f\"") ); std::string strHash = params[0].get_str(); @@ -356,14 +356,14 @@ Value gettxout(const Array& params, bool fHelp) "{\n" " \"bestblock\" : \"hash\", (string) the block hash\n" " \"confirmations\" : n, (numeric) The number of confirmations\n" - " \"value\" : x.xxx, (numeric) The transaction value in btc\n" + " \"value\" : x.xxx, (numeric) The transaction value in ltc\n" " \"scriptPubKey\" : { (json object)\n" " \"asm\" : \"code\", (string) \n" " \"hex\" : \"hex\", (string) \n" " \"reqSigs\" : n, (numeric) Number of required signatures\n" " \"type\" : \"pubkeyhash\", (string) The type, eg pubkeyhash\n" - " \"addresses\" : [ (array of string) array of bitcoin addresses\n" - " \"bitcoinaddress\" (string) bitcoin address\n" + " \"addresses\" : [ (array of string) array of hypercoin addresses\n" + " \"hypercoinaddress\" (string) hypercoin address\n" " ,...\n" " ]\n" " },\n" diff --git a/src/rpcdump.cpp b/src/rpcdump.cpp index 8b95373cffe8d..cada2739163ec 100644 --- a/src/rpcdump.cpp +++ b/src/rpcdump.cpp @@ -73,10 +73,10 @@ Value importprivkey(const Array& params, bool fHelp) { if (fHelp || params.size() < 1 || params.size() > 3) throw runtime_error( - "importprivkey \"bitcoinprivkey\" ( \"label\" rescan )\n" + "importprivkey \"hypercoinprivkey\" ( \"label\" rescan )\n" "\nAdds a private key (as returned by dumpprivkey) to your wallet.\n" "\nArguments:\n" - "1. \"bitcoinprivkey\" (string, required) The private key (see dumpprivkey)\n" + "1. \"hypercoinprivkey\" (string, required) The private key (see dumpprivkey)\n" "2. \"label\" (string, optional, default=\"\") An optional label\n" "3. rescan (boolean, optional, default=true) Rescan the wallet for transactions\n" "\nNote: This call can take minutes to complete if rescan is true.\n" @@ -167,7 +167,7 @@ Value importaddress(const Array& params, bool fHelp) std::vector data(ParseHex(params[0].get_str())); script = CScript(data.begin(), data.end()); } else { - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Bitcoin address or script"); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Hypercoin address or script"); } string strLabel = ""; @@ -309,11 +309,11 @@ Value dumpprivkey(const Array& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( - "dumpprivkey \"bitcoinaddress\"\n" - "\nReveals the private key corresponding to 'bitcoinaddress'.\n" + "dumpprivkey \"hypercoinaddress\"\n" + "\nReveals the private key corresponding to 'hypercoinaddress'.\n" "Then the importprivkey can be used with this output\n" "\nArguments:\n" - "1. \"bitcoinaddress\" (string, required) The bitcoin address for the private key\n" + "1. \"hypercoinaddress\" (string, required) The hypercoin address for the private key\n" "\nResult:\n" "\"key\" (string) The private key\n" "\nExamples:\n" @@ -327,7 +327,7 @@ Value dumpprivkey(const Array& params, bool fHelp) string strAddress = params[0].get_str(); CBitcoinAddress address; if (!address.SetString(strAddress)) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Bitcoin address"); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Hypercoin address"); CKeyID keyID; if (!address.GetKeyID(keyID)) throw JSONRPCError(RPC_TYPE_ERROR, "Address does not refer to a key"); @@ -372,7 +372,7 @@ Value dumpwallet(const Array& params, bool fHelp) std::sort(vKeyBirth.begin(), vKeyBirth.end()); // produce output - file << strprintf("# Wallet dump created by Bitcoin %s (%s)\n", CLIENT_BUILD, CLIENT_DATE); + file << strprintf("# Wallet dump created by Hypercoin %s (%s)\n", CLIENT_BUILD, CLIENT_DATE); file << strprintf("# * Created on %s\n", EncodeDumpTime(GetTime())); file << strprintf("# * Best block at time of backup was %i (%s),\n", chainActive.Height(), chainActive.Tip()->GetBlockHash().ToString()); file << strprintf("# mined on %s\n", EncodeDumpTime(chainActive.Tip()->GetBlockTime())); diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index 45899d3db5330..63dd176aff17e 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -98,7 +98,7 @@ Value getgenerate(const Array& params, bool fHelp) throw runtime_error( "getgenerate\n" "\nReturn if the server is set to generate coins or not. The default is false.\n" - "It is set with the command line argument -gen (or bitcoin.conf setting gen)\n" + "It is set with the command line argument -gen (or hypercoin.conf setting gen)\n" "It can also be set with the setgenerate call.\n" "\nResult\n" "true|false (boolean) If the server is set to generate coins or not\n" @@ -178,7 +178,7 @@ Value setgenerate(const Array& params, bool fHelp) LOCK(cs_main); IncrementExtraNonce(pblock, chainActive.Tip(), nExtraNonce); } - while (!CheckProofOfWork(pblock->GetHash(), pblock->nBits)) { + while (!CheckProofOfWork(pblock->GetPoWHash(), pblock->nBits)) { // Yes, there is a chance every nonce could fail to satisfy the -regtest // target -- 1 in 2^(2^32). That ain't gonna happen. ++pblock->nNonce; @@ -288,8 +288,7 @@ Value prioritisetransaction(const Array& params, bool fHelp) + HelpExampleRpc("prioritisetransaction", "\"txid\", 0.0, 10000") ); - uint256 hash; - hash.SetHex(params[0].get_str()); + uint256 hash = ParseHashStr(params[0].get_str(), "txid"); CAmount nAmount = params[2].get_int64(); @@ -430,10 +429,10 @@ Value getblocktemplate(const Array& params, bool fHelp) throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid mode"); if (vNodes.empty()) - throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Bitcoin is not connected!"); + throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Hypercoin is not connected!"); if (IsInitialBlockDownload()) - throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Bitcoin is downloading blocks..."); + throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Hypercoin is downloading blocks..."); static unsigned int nTransactionsUpdatedLast; @@ -638,14 +637,19 @@ Value submitblock(const Array& params, bool fHelp) throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "Block decode failed"); uint256 hash = block.GetHash(); - BlockMap::iterator mi = mapBlockIndex.find(hash); - if (mi != mapBlockIndex.end()) { - CBlockIndex *pindex = mi->second; - if (pindex->IsValid(BLOCK_VALID_SCRIPTS)) - return "duplicate"; - if (pindex->nStatus & BLOCK_FAILED_MASK) - return "duplicate-invalid"; - // Otherwise, we might only have the header - process the block before returning + bool fBlockPresent = false; + { + LOCK(cs_main); + BlockMap::iterator mi = mapBlockIndex.find(hash); + if (mi != mapBlockIndex.end()) { + CBlockIndex *pindex = mi->second; + if (pindex->IsValid(BLOCK_VALID_SCRIPTS)) + return "duplicate"; + if (pindex->nStatus & BLOCK_FAILED_MASK) + return "duplicate-invalid"; + // Otherwise, we might only have the header - process the block before returning + fBlockPresent = true; + } } CValidationState state; @@ -653,7 +657,7 @@ Value submitblock(const Array& params, bool fHelp) RegisterValidationInterface(&sc); bool fAccepted = ProcessNewBlock(state, NULL, &block); UnregisterValidationInterface(&sc); - if (mi != mapBlockIndex.end()) + if (fBlockPresent) { if (fAccepted && !sc.found) return "duplicate-inconclusive"; @@ -674,7 +678,7 @@ Value estimatefee(const Array& params, bool fHelp) throw runtime_error( "estimatefee nblocks\n" "\nEstimates the approximate fee per kilobyte\n" - "needed for a transaction to get confirmed\n" + "needed for a transaction to begin confirmation\n" "within nblocks blocks.\n" "\nArguments:\n" "1. nblocks (numeric)\n" @@ -706,7 +710,7 @@ Value estimatepriority(const Array& params, bool fHelp) throw runtime_error( "estimatepriority nblocks\n" "\nEstimates the approximate priority\n" - "a zero-fee transaction needs to get confirmed\n" + "a zero-fee transaction needs to begin confirmation\n" "within nblocks blocks.\n" "\nArguments:\n" "1. nblocks (numeric)\n" diff --git a/src/rpcmisc.cpp b/src/rpcmisc.cpp index 90b9c99caa0ba..414bdc6da7b83 100644 --- a/src/rpcmisc.cpp +++ b/src/rpcmisc.cpp @@ -52,7 +52,7 @@ Value getinfo(const Array& params, bool fHelp) " \"version\": xxxxx, (numeric) the server version\n" " \"protocolversion\": xxxxx, (numeric) the protocol version\n" " \"walletversion\": xxxxx, (numeric) the wallet version\n" - " \"balance\": xxxxxxx, (numeric) the total bitcoin balance of the wallet\n" + " \"balance\": xxxxxxx, (numeric) the total hypercoin balance of the wallet\n" " \"blocks\": xxxxxx, (numeric) the current number of blocks processed in the server\n" " \"timeoffset\": xxxxx, (numeric) the time offset\n" " \"connections\": xxxxx, (numeric) the number of connections\n" @@ -62,8 +62,8 @@ Value getinfo(const Array& params, bool fHelp) " \"keypoololdest\": xxxxxx, (numeric) the timestamp (seconds since GMT epoch) of the oldest pre-generated key in the key pool\n" " \"keypoolsize\": xxxx, (numeric) how many new keys are pre-generated\n" " \"unlocked_until\": ttt, (numeric) the timestamp in seconds since epoch (midnight Jan 1 1970 GMT) that the wallet is unlocked for transfers, or 0 if the wallet is locked\n" - " \"paytxfee\": x.xxxx, (numeric) the transaction fee set in btc/kb\n" - " \"relayfee\": x.xxxx, (numeric) minimum relay fee for non-free transactions in btc/kb\n" + " \"paytxfee\": x.xxxx, (numeric) the transaction fee set in ltc/kb\n" + " \"relayfee\": x.xxxx, (numeric) minimum relay fee for non-free transactions in ltc/kb\n" " \"errors\": \"...\" (string) any error messages\n" "}\n" "\nExamples:\n" @@ -154,14 +154,14 @@ Value validateaddress(const Array& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( - "validateaddress \"bitcoinaddress\"\n" - "\nReturn information about the given bitcoin address.\n" + "validateaddress \"hypercoinaddress\"\n" + "\nReturn information about the given hypercoin address.\n" "\nArguments:\n" - "1. \"bitcoinaddress\" (string, required) The bitcoin address to validate\n" + "1. \"hypercoinaddress\" (string, required) The hypercoin address to validate\n" "\nResult:\n" "{\n" " \"isvalid\" : true|false, (boolean) If the address is valid or not. If not, this is the only property returned.\n" - " \"address\" : \"bitcoinaddress\", (string) The bitcoin address validated\n" + " \"address\" : \"hypercoinaddress\", (string) The hypercoin address validated\n" " \"ismine\" : true|false, (boolean) If the address is yours or not\n" " \"isscript\" : true|false, (boolean) If the key is a script\n" " \"pubkey\" : \"publickeyhex\", (string) The hex value of the raw public key\n" @@ -169,8 +169,8 @@ Value validateaddress(const Array& params, bool fHelp) " \"account\" : \"account\" (string) The account associated with the address, \"\" is the default account\n" "}\n" "\nExamples:\n" - + HelpExampleCli("validateaddress", "\"1PSSGeFHDnKNxiEyFrD1wcEaHr9hrQDDWc\"") - + HelpExampleRpc("validateaddress", "\"1PSSGeFHDnKNxiEyFrD1wcEaHr9hrQDDWc\"") + + HelpExampleCli("validateaddress", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\"") + + HelpExampleRpc("validateaddress", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\"") ); CBitcoinAddress address(params[0].get_str()); @@ -213,6 +213,8 @@ CScript _createmultisig_redeemScript(const Array& params) throw runtime_error( strprintf("not enough keys supplied " "(got %u keys, but need at least %d to redeem)", keys.size(), nRequired)); + if (keys.size() > 16) + throw runtime_error("Number of addresses involved in the multisignature address creation > 16\nReduce the number"); std::vector pubkeys; pubkeys.resize(keys.size()); for (unsigned int i = 0; i < keys.size(); i++) @@ -270,9 +272,9 @@ Value createmultisig(const Array& params, bool fHelp) "\nArguments:\n" "1. nrequired (numeric, required) The number of required signatures out of the n keys or addresses.\n" - "2. \"keys\" (string, required) A json array of keys which are bitcoin addresses or hex-encoded public keys\n" + "2. \"keys\" (string, required) A json array of keys which are hypercoin addresses or hex-encoded public keys\n" " [\n" - " \"key\" (string) bitcoin address or hex-encoded public key\n" + " \"key\" (string) hypercoin address or hex-encoded public key\n" " ,...\n" " ]\n" @@ -284,9 +286,9 @@ Value createmultisig(const Array& params, bool fHelp) "\nExamples:\n" "\nCreate a multisig address from 2 addresses\n" - + HelpExampleCli("createmultisig", "2 \"[\\\"16sSauSf5pF2UkUwvKGq4qjNRzBZYqgEL5\\\",\\\"171sgjn4YtPu27adkKGrdDwzRTxnRkBfKV\\\"]\"") + + + HelpExampleCli("createmultisig", "2 \"[\\\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\\\",\\\"HNAWWinbaP4RornDJAmVKDFSBVEFZ5pnmq\\\"]\"") + "\nAs a json rpc call\n" - + HelpExampleRpc("createmultisig", "2, \"[\\\"16sSauSf5pF2UkUwvKGq4qjNRzBZYqgEL5\\\",\\\"171sgjn4YtPu27adkKGrdDwzRTxnRkBfKV\\\"]\"") + + HelpExampleRpc("createmultisig", "2, \"[\\\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\\\",\\\"HNAWWinbaP4RornDJAmVKDFSBVEFZ5pnmq\\\"]\"") ; throw runtime_error(msg); } @@ -307,10 +309,10 @@ Value verifymessage(const Array& params, bool fHelp) { if (fHelp || params.size() != 3) throw runtime_error( - "verifymessage \"bitcoinaddress\" \"signature\" \"message\"\n" + "verifymessage \"hypercoinaddress\" \"signature\" \"message\"\n" "\nVerify a signed message\n" "\nArguments:\n" - "1. \"bitcoinaddress\" (string, required) The bitcoin address to use for the signature.\n" + "1. \"hypercoinaddress\" (string, required) The hypercoin address to use for the signature.\n" "2. \"signature\" (string, required) The signature provided by the signer in base 64 encoding (see signmessage).\n" "3. \"message\" (string, required) The message that was signed.\n" "\nResult:\n" @@ -319,11 +321,11 @@ Value verifymessage(const Array& params, bool fHelp) "\nUnlock the wallet for 30 seconds\n" + HelpExampleCli("walletpassphrase", "\"mypassphrase\" 30") + "\nCreate the signature\n" - + HelpExampleCli("signmessage", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\" \"my message\"") + + + HelpExampleCli("signmessage", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" \"my message\"") + "\nVerify the signature\n" - + HelpExampleCli("verifymessage", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\" \"signature\" \"my message\"") + + + HelpExampleCli("verifymessage", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" \"signature\" \"my message\"") + "\nAs json rpc\n" - + HelpExampleRpc("verifymessage", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\", \"signature\", \"my message\"") + + HelpExampleRpc("verifymessage", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\", \"signature\", \"my message\"") ); string strAddress = params[0].get_str(); diff --git a/src/rpcnet.cpp b/src/rpcnet.cpp index 6ddbd62fca8a3..6b916d7aacbb4 100644 --- a/src/rpcnet.cpp +++ b/src/rpcnet.cpp @@ -174,8 +174,8 @@ Value addnode(const Array& params, bool fHelp) "1. \"node\" (string, required) The node (see getpeerinfo for nodes)\n" "2. \"command\" (string, required) 'add' to add a node to the list, 'remove' to remove a node from the list, 'onetry' to try a connection to the node once\n" "\nExamples:\n" - + HelpExampleCli("addnode", "\"192.168.0.6:8333\" \"onetry\"") - + HelpExampleRpc("addnode", "\"192.168.0.6:8333\", \"onetry\"") + + HelpExampleCli("addnode", "\"192.168.0.6:36307\" \"onetry\"") + + HelpExampleRpc("addnode", "\"192.168.0.6:36307\", \"onetry\"") ); string strNode = params[0].get_str(); @@ -228,7 +228,7 @@ Value getaddednodeinfo(const Array& params, bool fHelp) " \"connected\" : true|false, (boolean) If connected\n" " \"addresses\" : [\n" " {\n" - " \"address\" : \"192.168.0.201:8333\", (string) The bitcoin server host and port\n" + " \"address\" : \"192.168.0.201:36307\", (string) The hypercoin server host and port\n" " \"connected\" : \"outbound\" (string) connection, inbound or outbound\n" " }\n" " ,...\n" @@ -394,7 +394,7 @@ Value getnetworkinfo(const Array& params, bool fHelp) " }\n" " ,...\n" " ],\n" - " \"relayfee\": x.xxxxxxxx, (numeric) minimum relay fee for non-free transactions in btc/kb\n" + " \"relayfee\": x.xxxxxxxx, (numeric) minimum relay fee for non-free transactions in hot/kb\n" " \"localaddresses\": [ (array) list of local addresses\n" " {\n" " \"address\": \"xxxx\", (string) network address\n" diff --git a/src/rpcprotocol.cpp b/src/rpcprotocol.cpp index 2f7c491f3d414..74f31355ebd25 100644 --- a/src/rpcprotocol.cpp +++ b/src/rpcprotocol.cpp @@ -44,7 +44,7 @@ string HTTPPost(const string& strMsg, const map& mapRequestHeader { ostringstream s; s << "POST / HTTP/1.1\r\n" - << "User-Agent: bitcoin-json-rpc/" << FormatFullVersion() << "\r\n" + << "User-Agent: hypercoin-json-rpc/" << FormatFullVersion() << "\r\n" << "Host: 127.0.0.1\r\n" << "Content-Type: application/json\r\n" << "Content-Length: " << strMsg.size() << "\r\n" @@ -79,7 +79,7 @@ string HTTPError(int nStatus, bool keepalive, bool headersOnly) if (nStatus == HTTP_UNAUTHORIZED) return strprintf("HTTP/1.0 401 Authorization Required\r\n" "Date: %s\r\n" - "Server: bitcoin-json-rpc/%s\r\n" + "Server: hypercoin-json-rpc/%s\r\n" "WWW-Authenticate: Basic realm=\"jsonrpc\"\r\n" "Content-Type: text/html\r\n" "Content-Length: 296\r\n" @@ -106,7 +106,7 @@ string HTTPReplyHeader(int nStatus, bool keepalive, size_t contentLength, const "Connection: %s\r\n" "Content-Length: %u\r\n" "Content-Type: %s\r\n" - "Server: bitcoin-json-rpc/%s\r\n" + "Server: hypercoin-json-rpc/%s\r\n" "\r\n", nStatus, httpStatusDescription(nStatus), diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index 8de15ff9e2f7e..d325169cdf2a4 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -144,7 +144,7 @@ Value getrawtransaction(const Array& params, bool fHelp) " ],\n" " \"vout\" : [ (array of json objects)\n" " {\n" - " \"value\" : x.xxx, (numeric) The value in btc\n" + " \"value\" : x.xxx, (numeric) The value in hot\n" " \"n\" : n, (numeric) index\n" " \"scriptPubKey\" : { (json object)\n" " \"asm\" : \"asm\", (string) the asm\n" @@ -152,7 +152,7 @@ Value getrawtransaction(const Array& params, bool fHelp) " \"reqSigs\" : n, (numeric) The required sigs\n" " \"type\" : \"pubkeyhash\", (string) The type, eg 'pubkeyhash'\n" " \"addresses\" : [ (json array of string)\n" - " \"bitcoinaddress\" (string) bitcoin address\n" + " \"hypercoinaddress\" (string) hypercoin address\n" " ,...\n" " ]\n" " }\n" @@ -207,9 +207,9 @@ Value listunspent(const Array& params, bool fHelp) "\nArguments:\n" "1. minconf (numeric, optional, default=1) The minimum confirmations to filter\n" "2. maxconf (numeric, optional, default=9999999) The maximum confirmations to filter\n" - "3. \"addresses\" (string) A json array of bitcoin addresses to filter\n" + "3. \"addresses\" (string) A json array of hypercoin addresses to filter\n" " [\n" - " \"address\" (string) bitcoin address\n" + " \"address\" (string) hypercoin address\n" " ,...\n" " ]\n" "\nResult\n" @@ -217,10 +217,10 @@ Value listunspent(const Array& params, bool fHelp) " {\n" " \"txid\" : \"txid\", (string) the transaction id \n" " \"vout\" : n, (numeric) the vout value\n" - " \"address\" : \"address\", (string) the bitcoin address\n" + " \"address\" : \"address\", (string) the hypercoin address\n" " \"account\" : \"account\", (string) The associated account, or \"\" for the default account\n" " \"scriptPubKey\" : \"key\", (string) the script key\n" - " \"amount\" : x.xxx, (numeric) the transaction amount in btc\n" + " \"amount\" : x.xxx, (numeric) the transaction amount in hot\n" " \"confirmations\" : n (numeric) The number of confirmations\n" " }\n" " ,...\n" @@ -228,8 +228,8 @@ Value listunspent(const Array& params, bool fHelp) "\nExamples\n" + HelpExampleCli("listunspent", "") - + HelpExampleCli("listunspent", "6 9999999 \"[\\\"1PGFqEzfmQch1gKD3ra4k18PNj3tTUUSqg\\\",\\\"1LtvqCaApEdUGFkpKMM4MstjcaL4dKg8SP\\\"]\"") - + HelpExampleRpc("listunspent", "6, 9999999 \"[\\\"1PGFqEzfmQch1gKD3ra4k18PNj3tTUUSqg\\\",\\\"1LtvqCaApEdUGFkpKMM4MstjcaL4dKg8SP\\\"]\"") + + HelpExampleCli("listunspent", "6 9999999 \"[\\\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\\\",\\\"HNAWWinbaP4RornDJAmVKDFSBVEFZ5pnmq\\\"]\"") + + HelpExampleRpc("listunspent", "6, 9999999 \"[\\\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\\\",\\\"HNAWWinbaP4RornDJAmVKDFSBVEFZ5pnmq\\\"]\"") ); RPCTypeCheck(params, list_of(int_type)(int_type)(array_type)); @@ -248,7 +248,7 @@ Value listunspent(const Array& params, bool fHelp) BOOST_FOREACH(Value& input, inputs) { CBitcoinAddress address(input.get_str()); if (!address.IsValid()) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid Bitcoin address: ")+input.get_str()); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid Hypercoin address: ")+input.get_str()); if (setAddress.count(address)) throw JSONRPCError(RPC_INVALID_PARAMETER, string("Invalid parameter, duplicated address: ")+input.get_str()); setAddress.insert(address); @@ -287,7 +287,7 @@ Value listunspent(const Array& params, bool fHelp) if (pk.IsPayToScriptHash()) { CTxDestination address; if (ExtractDestination(pk, address)) { - const CScriptID& hash = boost::get(address); + const CScriptID& hash = boost::get(address); CScript redeemScript; if (pwalletMain->GetCScript(hash, redeemScript)) entry.push_back(Pair("redeemScript", HexStr(redeemScript.begin(), redeemScript.end()))); @@ -324,7 +324,7 @@ Value createrawtransaction(const Array& params, bool fHelp) " ]\n" "2. \"addresses\" (string, required) a json object with addresses as keys and amounts as values\n" " {\n" - " \"address\": x.xxx (numeric, required) The key is the bitcoin address, the value is the btc amount\n" + " \"address\": x.xxx (numeric, required) The key is the hypercoin address, the value is the hot amount\n" " ,...\n" " }\n" @@ -363,7 +363,7 @@ Value createrawtransaction(const Array& params, bool fHelp) BOOST_FOREACH(const Pair& s, sendTo) { CBitcoinAddress address(s.name_); if (!address.IsValid()) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid Bitcoin address: ")+s.name_); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid Hypercoin address: ")+s.name_); if (setAddress.count(address)) throw JSONRPCError(RPC_INVALID_PARAMETER, string("Invalid parameter, duplicated address: ")+s.name_); @@ -408,7 +408,7 @@ Value decoderawtransaction(const Array& params, bool fHelp) " ],\n" " \"vout\" : [ (array of json objects)\n" " {\n" - " \"value\" : x.xxx, (numeric) The value in btc\n" + " \"value\" : x.xxx, (numeric) The value in hot\n" " \"n\" : n, (numeric) index\n" " \"scriptPubKey\" : { (json object)\n" " \"asm\" : \"asm\", (string) the asm\n" @@ -416,7 +416,7 @@ Value decoderawtransaction(const Array& params, bool fHelp) " \"reqSigs\" : n, (numeric) The required sigs\n" " \"type\" : \"pubkeyhash\", (string) The type, eg 'pubkeyhash'\n" " \"addresses\" : [ (json array of string)\n" - " \"12tvKAXCxZjSmdNbao16dKXC8tRWfcF5oc\" (string) bitcoin address\n" + " \"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" (string) hypercoin address\n" " ,...\n" " ]\n" " }\n" @@ -458,7 +458,7 @@ Value decodescript(const Array& params, bool fHelp) " \"type\":\"type\", (string) The output type\n" " \"reqSigs\": n, (numeric) The required signatures\n" " \"addresses\": [ (json array of string)\n" - " \"address\" (string) bitcoin address\n" + " \"address\" (string) hypercoin address\n" " ,...\n" " ],\n" " \"p2sh\",\"address\" (string) script address\n" @@ -587,6 +587,8 @@ Value signrawtransaction(const Array& params, bool fHelp) if (!fGood) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid private key"); CKey key = vchSecret.GetKey(); + if (!key.IsValid()) + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Private key outside allowed range"); tempKeystore.AddKey(key); } } @@ -688,7 +690,7 @@ Value signrawtransaction(const Array& params, bool fHelp) BOOST_FOREACH(const CMutableTransaction& txv, txVariants) { txin.scriptSig = CombineSignatures(prevPubKey, mergedTx, i, txin.scriptSig, txv.vin[i].scriptSig); } - if (!VerifyScript(txin.scriptSig, prevPubKey, STANDARD_SCRIPT_VERIFY_FLAGS, SignatureChecker(mergedTx, i))) + if (!VerifyScript(txin.scriptSig, prevPubKey, STANDARD_SCRIPT_VERIFY_FLAGS, MutableTransactionSignatureChecker(&mergedTx, i))) fComplete = false; } diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index 252b0866a2f47..a5badcc964c92 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -95,7 +95,7 @@ static inline int64_t roundint64(double d) CAmount AmountFromValue(const Value& value) { double dAmount = value.get_real(); - if (dAmount <= 0.0 || dAmount > 21000000.0) + if (dAmount <= 0.0 || dAmount > 168000000.0) throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount"); CAmount nAmount = roundint64(dAmount * COIN); if (!MoneyRange(nAmount)) @@ -228,10 +228,10 @@ Value stop(const Array& params, bool fHelp) if (fHelp || params.size() > 1) throw runtime_error( "stop\n" - "\nStop Bitcoin server."); + "\nStop Hypercoin server."); // Shutdown will take long enough that the response should get back StartShutdown(); - return "Bitcoin server stopping"; + return "Hypercoin server stopping"; } @@ -572,16 +572,16 @@ void StartRPCThreads() unsigned char rand_pwd[32]; GetRandBytes(rand_pwd, 32); uiInterface.ThreadSafeMessageBox(strprintf( - _("To use bitcoind, or the -server option to bitcoin-qt, you must set an rpcpassword in the configuration file:\n" + _("To use hypercoind, or the -server option to hypercoin-qt, you must set an rpcpassword in the configuration file:\n" "%s\n" "It is recommended you use the following random password:\n" - "rpcuser=bitcoinrpc\n" + "rpcuser=hypercoinrpc\n" "rpcpassword=%s\n" "(you do not need to remember this password)\n" "The username and password MUST NOT be the same.\n" "If the file does not exist, create it with owner-readable-only file permissions.\n" "It is also recommended to set alertnotify so you are notified of problems;\n" - "for example: alertnotify=echo %%s | mail -s \"Bitcoin Alert\" admin@foo.com\n"), + "for example: alertnotify=echo %%s | mail -s \"Hypercoin Alert\" admin@foo.com\n"), GetConfigFile().string(), EncodeBase58(&rand_pwd[0],&rand_pwd[0]+32)), "", CClientUIInterface::MSG_ERROR | CClientUIInterface::SECURE); @@ -644,20 +644,22 @@ void StartRPCThreads() vEndpoints.push_back(ip::tcp::endpoint(asio::ip::address_v6::any(), defaultPort)); vEndpoints.push_back(ip::tcp::endpoint(asio::ip::address_v4::any(), defaultPort)); // Prefer making the socket dual IPv6/IPv4 instead of binding - // to both addresses seperately. + // to both addresses separately. bBindAny = true; } bool fListening = false; std::string strerr; + std::string straddress; BOOST_FOREACH(const ip::tcp::endpoint &endpoint, vEndpoints) { - asio::ip::address bindAddress = endpoint.address(); - LogPrintf("Binding RPC on address %s port %i (IPv4+IPv6 bind any: %i)\n", bindAddress.to_string(), endpoint.port(), bBindAny); - boost::system::error_code v6_only_error; - boost::shared_ptr acceptor(new ip::tcp::acceptor(*rpc_io_service)); - try { + asio::ip::address bindAddress = endpoint.address(); + straddress = bindAddress.to_string(); + LogPrintf("Binding RPC on address %s port %i (IPv4+IPv6 bind any: %i)\n", straddress, endpoint.port(), bBindAny); + boost::system::error_code v6_only_error; + boost::shared_ptr acceptor(new ip::tcp::acceptor(*rpc_io_service)); + acceptor->open(endpoint.protocol()); acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true)); @@ -678,8 +680,8 @@ void StartRPCThreads() } catch(boost::system::system_error &e) { - LogPrintf("ERROR: Binding RPC on address %s port %i failed: %s\n", bindAddress.to_string(), endpoint.port(), e.what()); - strerr = strprintf(_("An error occurred while setting up the RPC address %s port %u for listening: %s"), bindAddress.to_string(), endpoint.port(), e.what()); + LogPrintf("ERROR: Binding RPC on address %s port %i failed: %s\n", straddress, endpoint.port(), e.what()); + strerr = strprintf(_("An error occurred while setting up the RPC address %s port %u for listening: %s"), straddress, endpoint.port(), e.what()); } } @@ -818,7 +820,7 @@ void JSONRequest::parse(const Value& valRequest) throw JSONRPCError(RPC_INVALID_REQUEST, "Method must be a string"); strMethod = valMethod.get_str(); if (strMethod != "getblocktemplate") - LogPrint("rpc", "ThreadRPCServer method=%s\n", strMethod); + LogPrint("rpc", "ThreadRPCServer method=%s\n", SanitizeString(strMethod)); // Parse params Value valParams = find_value(request, "params"); @@ -952,7 +954,7 @@ void ServiceConnection(AcceptedConnection *conn) ReadHTTPMessage(conn->stream(), mapHeaders, strRequest, nProto, MAX_SIZE); // HTTP Keep-Alive is false; close connection immediately - if (mapHeaders["connection"] == "close") + if ((mapHeaders["connection"] == "close") || (!GetBoolArg("-rpckeepalive", true))) fRun = false; // Process via JSON-RPC API @@ -1020,12 +1022,12 @@ json_spirit::Value CRPCTable::execute(const std::string &strMethod, const json_s } std::string HelpExampleCli(string methodname, string args){ - return "> bitcoin-cli " + methodname + " " + args + "\n"; + return "> hypercoin-cli " + methodname + " " + args + "\n"; } std::string HelpExampleRpc(string methodname, string args){ return "> curl --user myusername --data-binary '{\"jsonrpc\": \"1.0\", \"id\":\"curltest\", " - "\"method\": \"" + methodname + "\", \"params\": [" + args + "] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/\n"; + "\"method\": \"" + methodname + "\", \"params\": [" + args + "] }' -H 'content-type: text/plain;' http://127.0.0.1:36308/\n"; } const CRPCTable tableRPC; diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index e43eee1551a04..b5844d8b0b906 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -80,13 +80,13 @@ Value getnewaddress(const Array& params, bool fHelp) if (fHelp || params.size() > 1) throw runtime_error( "getnewaddress ( \"account\" )\n" - "\nReturns a new Bitcoin address for receiving payments.\n" + "\nReturns a new Hypercoin address for receiving payments.\n" "If 'account' is specified (recommended), it is added to the address book \n" "so payments received with the address will be credited to 'account'.\n" "\nArguments:\n" "1. \"account\" (string, optional) The account name for the address to be linked to. if not provided, the default account \"\" is used. It can also be set to the empty string \"\" to represent the default account. The account does not need to exist, it will be created if there is no account by the given name.\n" "\nResult:\n" - "\"bitcoinaddress\" (string) The new bitcoin address\n" + "\"hypercoinaddress\" (string) The new hypercoin address\n" "\nExamples:\n" + HelpExampleCli("getnewaddress", "") + HelpExampleCli("getnewaddress", "\"\"") @@ -156,11 +156,11 @@ Value getaccountaddress(const Array& params, bool fHelp) if (fHelp || params.size() != 1) throw runtime_error( "getaccountaddress \"account\"\n" - "\nReturns the current Bitcoin address for receiving payments to this account.\n" + "\nReturns the current Hypercoin address for receiving payments to this account.\n" "\nArguments:\n" "1. \"account\" (string, required) The account name for the address. It can also be set to the empty string \"\" to represent the default account. The account does not need to exist, it will be created and a new address created if there is no account by the given name.\n" "\nResult:\n" - "\"bitcoinaddress\" (string) The account bitcoin address\n" + "\"hypercoinaddress\" (string) The Hypercoin account address\n" "\nExamples:\n" + HelpExampleCli("getaccountaddress", "") + HelpExampleCli("getaccountaddress", "\"\"") @@ -184,7 +184,7 @@ Value getrawchangeaddress(const Array& params, bool fHelp) if (fHelp || params.size() > 1) throw runtime_error( "getrawchangeaddress\n" - "\nReturns a new Bitcoin address, for receiving change.\n" + "\nReturns a new Hypercoin address, for receiving change.\n" "This is for use with raw transactions, NOT normal use.\n" "\nResult:\n" "\"address\" (string) The address\n" @@ -213,19 +213,19 @@ Value setaccount(const Array& params, bool fHelp) { if (fHelp || params.size() < 1 || params.size() > 2) throw runtime_error( - "setaccount \"bitcoinaddress\" \"account\"\n" + "setaccount \"hypercoinaddress\" \"account\"\n" "\nSets the account associated with the given address.\n" "\nArguments:\n" - "1. \"bitcoinaddress\" (string, required) The bitcoin address to be associated with an account.\n" + "1. \"hypercoinaddress\" (string, required) The hypercoin address to be associated with an account.\n" "2. \"account\" (string, required) The account to assign the address to.\n" "\nExamples:\n" - + HelpExampleCli("setaccount", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\" \"tabby\"") - + HelpExampleRpc("setaccount", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\", \"tabby\"") + + HelpExampleCli("setaccount", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" \"tabby\"") + + HelpExampleRpc("setaccount", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\", \"tabby\"") ); CBitcoinAddress address(params[0].get_str()); if (!address.IsValid()) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Bitcoin address"); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Hypercoin address"); string strAccount; @@ -255,20 +255,20 @@ Value getaccount(const Array& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( - "getaccount \"bitcoinaddress\"\n" + "getaccount \"hypercoinaddress\"\n" "\nReturns the account associated with the given address.\n" "\nArguments:\n" - "1. \"bitcoinaddress\" (string, required) The bitcoin address for account lookup.\n" + "1. \"hypercoinaddress\" (string, required) The hypercoin address for account lookup.\n" "\nResult:\n" "\"accountname\" (string) the account address\n" "\nExamples:\n" - + HelpExampleCli("getaccount", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\"") - + HelpExampleRpc("getaccount", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\"") + + HelpExampleCli("getaccount", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\"") + + HelpExampleRpc("getaccount", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\"") ); CBitcoinAddress address(params[0].get_str()); if (!address.IsValid()) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Bitcoin address"); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Hypercoin address"); string strAccount; map::iterator mi = pwalletMain->mapAddressBook.find(address.Get()); @@ -288,7 +288,7 @@ Value getaddressesbyaccount(const Array& params, bool fHelp) "1. \"account\" (string, required) The account name.\n" "\nResult:\n" "[ (json array of string)\n" - " \"bitcoinaddress\" (string) a bitcoin address associated with the given account\n" + " \"hypercoinaddress\" (string) a hypercoin address associated with the given account\n" " ,...\n" "]\n" "\nExamples:\n" @@ -348,12 +348,12 @@ Value sendtoaddress(const Array& params, bool fHelp) { if (fHelp || params.size() < 2 || params.size() > 4) throw runtime_error( - "sendtoaddress \"bitcoinaddress\" amount ( \"comment\" \"comment-to\" )\n" + "sendtoaddress \"hypercoinaddress\" amount ( \"comment\" \"comment-to\" )\n" "\nSend an amount to a given address. The amount is a real and is rounded to the nearest 0.00000001\n" + HelpRequiringPassphrase() + "\nArguments:\n" - "1. \"bitcoinaddress\" (string, required) The bitcoin address to send to.\n" - "2. \"amount\" (numeric, required) The amount in btc to send. eg 0.1\n" + "1. \"hypercoinaddress\" (string, required) The hypercoin address to send to.\n" + "2. \"amount\" (numeric, required) The amount in hot to send. eg 0.1\n" "3. \"comment\" (string, optional) A comment used to store what the transaction is for. \n" " This is not part of the transaction, just kept in your wallet.\n" "4. \"comment-to\" (string, optional) A comment to store the name of the person or organization \n" @@ -362,14 +362,14 @@ Value sendtoaddress(const Array& params, bool fHelp) "\nResult:\n" "\"transactionid\" (string) The transaction id.\n" "\nExamples:\n" - + HelpExampleCli("sendtoaddress", "\"1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd\" 0.1") - + HelpExampleCli("sendtoaddress", "\"1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd\" 0.1 \"donation\" \"seans outpost\"") - + HelpExampleRpc("sendtoaddress", "\"1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd\", 0.1, \"donation\", \"seans outpost\"") + + HelpExampleCli("sendtoaddress", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" 0.1") + + HelpExampleCli("sendtoaddress", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" 0.1 \"donation\" \"seans outpost\"") + + HelpExampleRpc("sendtoaddress", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\", 0.1, \"donation\", \"seans outpost\"") ); CBitcoinAddress address(params[0].get_str()); if (!address.IsValid()) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Bitcoin address"); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Hypercoin address"); // Amount CAmount nAmount = AmountFromValue(params[1]); @@ -400,8 +400,8 @@ Value listaddressgroupings(const Array& params, bool fHelp) "[\n" " [\n" " [\n" - " \"bitcoinaddress\", (string) The bitcoin address\n" - " amount, (numeric) The amount in btc\n" + " \"hypercoinaddress\", (string) The hypercoin address\n" + " amount, (numeric) The amount in hot\n" " \"account\" (string, optional) The account\n" " ]\n" " ,...\n" @@ -439,11 +439,11 @@ Value signmessage(const Array& params, bool fHelp) { if (fHelp || params.size() != 2) throw runtime_error( - "signmessage \"bitcoinaddress\" \"message\"\n" + "signmessage \"hypercoinaddress\" \"message\"\n" "\nSign a message with the private key of an address" + HelpRequiringPassphrase() + "\n" "\nArguments:\n" - "1. \"bitcoinaddress\" (string, required) The bitcoin address to use for the private key.\n" + "1. \"hypercoinaddress\" (string, required) The hypercoin address to use for the private key.\n" "2. \"message\" (string, required) The message to create a signature of.\n" "\nResult:\n" "\"signature\" (string) The signature of the message encoded in base 64\n" @@ -451,11 +451,11 @@ Value signmessage(const Array& params, bool fHelp) "\nUnlock the wallet for 30 seconds\n" + HelpExampleCli("walletpassphrase", "\"mypassphrase\" 30") + "\nCreate the signature\n" - + HelpExampleCli("signmessage", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\" \"my message\"") + + + HelpExampleCli("signmessage", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" \"my message\"") + "\nVerify the signature\n" - + HelpExampleCli("verifymessage", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\" \"signature\" \"my message\"") + + + HelpExampleCli("verifymessage", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" \"signature\" \"my message\"") + "\nAs json rpc\n" - + HelpExampleRpc("signmessage", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\", \"my message\"") + + HelpExampleRpc("signmessage", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\", \"my message\"") ); EnsureWalletIsUnlocked(); @@ -490,28 +490,28 @@ Value getreceivedbyaddress(const Array& params, bool fHelp) { if (fHelp || params.size() < 1 || params.size() > 2) throw runtime_error( - "getreceivedbyaddress \"bitcoinaddress\" ( minconf )\n" - "\nReturns the total amount received by the given bitcoinaddress in transactions with at least minconf confirmations.\n" + "getreceivedbyaddress \"hypercoinaddress\" ( minconf )\n" + "\nReturns the total amount received by the given hypercoinaddress in transactions with at least minconf confirmations.\n" "\nArguments:\n" - "1. \"bitcoinaddress\" (string, required) The bitcoin address for transactions.\n" + "1. \"hypercoinaddress\" (string, required) The hypercoin address for transactions.\n" "2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n" "\nResult:\n" - "amount (numeric) The total amount in btc received at this address.\n" + "amount (numeric) The total amount in hot received at this address.\n" "\nExamples:\n" "\nThe amount from transactions with at least 1 confirmation\n" - + HelpExampleCli("getreceivedbyaddress", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\"") + + + HelpExampleCli("getreceivedbyaddress", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\"") + "\nThe amount including unconfirmed transactions, zero confirmations\n" - + HelpExampleCli("getreceivedbyaddress", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\" 0") + + + HelpExampleCli("getreceivedbyaddress", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" 0") + "\nThe amount with at least 6 confirmation, very safe\n" - + HelpExampleCli("getreceivedbyaddress", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\" 6") + + + HelpExampleCli("getreceivedbyaddress", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" 6") + "\nAs a json rpc call\n" - + HelpExampleRpc("getreceivedbyaddress", "\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\", 6") + + HelpExampleRpc("getreceivedbyaddress", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\", 6") ); // Bitcoin address CBitcoinAddress address = CBitcoinAddress(params[0].get_str()); if (!address.IsValid()) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Bitcoin address"); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Hypercoin address"); CScript scriptPubKey = GetScriptForDestination(address.Get()); if (!IsMine(*pwalletMain,scriptPubKey)) return (double)0.0; @@ -549,7 +549,7 @@ Value getreceivedbyaccount(const Array& params, bool fHelp) "1. \"account\" (string, required) The selected account, may be the default account using \"\".\n" "2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n" "\nResult:\n" - "amount (numeric) The total amount in btc received for this account.\n" + "amount (numeric) The total amount in hot received for this account.\n" "\nExamples:\n" "\nAmount received by the default account with at least 1 confirmation\n" + HelpExampleCli("getreceivedbyaccount", "\"\"") + @@ -637,7 +637,7 @@ Value getbalance(const Array& params, bool fHelp) "2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n" "3. includeWatchonly (bool, optional, default=false) Also include balance in watchonly addresses (see 'importaddress')\n" "\nResult:\n" - "amount (numeric) The total amount in btc received for this account.\n" + "amount (numeric) The total amount in hot received for this account.\n" "\nExamples:\n" "\nThe total amount in the server across all accounts\n" + HelpExampleCli("getbalance", "") + @@ -665,12 +665,12 @@ Value getbalance(const Array& params, bool fHelp) if (params[0].get_str() == "*") { // Calculate total balance a different way from GetBalance() // (GetBalance() sums up all unspent TxOuts) - // getbalance and getbalance '*' 0 should return the same number + // getbalance and "getbalance * 1 true" should return the same number CAmount nBalance = 0; for (map::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) { const CWalletTx& wtx = (*it).second; - if (!wtx.IsTrusted() || wtx.GetBlocksToMaturity() > 0) + if (!IsFinalTx(wtx) || wtx.GetBlocksToMaturity() > 0 || wtx.GetDepthInMainChain() < 0) continue; CAmount allFee; @@ -719,11 +719,11 @@ Value movecmd(const Array& params, bool fHelp) "3. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n" "4. \"comment\" (string, optional) An optional comment, stored in the wallet only.\n" "\nResult:\n" - "true|false (boolean) true if successfull.\n" + "true|false (boolean) true if successful.\n" "\nExamples:\n" - "\nMove 0.01 btc from the default account to the account named tabby\n" + "\nMove 0.01 hot from the default account to the account named tabby\n" + HelpExampleCli("move", "\"\" \"tabby\" 0.01") + - "\nMove 0.01 btc timotei to akiko with a comment and funds have 6 confirmations\n" + "\nMove 0.01 hot timotei to akiko with a comment and funds have 6 confirmations\n" + HelpExampleCli("move", "\"timotei\" \"akiko\" 0.01 6 \"happy birthday!\"") + "\nAs a json rpc call\n" + HelpExampleRpc("move", "\"timotei\", \"akiko\", 0.01, 6, \"happy birthday!\"") @@ -776,14 +776,14 @@ Value sendfrom(const Array& params, bool fHelp) { if (fHelp || params.size() < 3 || params.size() > 6) throw runtime_error( - "sendfrom \"fromaccount\" \"tobitcoinaddress\" amount ( minconf \"comment\" \"comment-to\" )\n" - "\nSent an amount from an account to a bitcoin address.\n" + "sendfrom \"fromaccount\" \"tohypercoinaddress\" amount ( minconf \"comment\" \"comment-to\" )\n" + "\nSent an amount from an account to a hypercoin address.\n" "The amount is a real and is rounded to the nearest 0.00000001." + HelpRequiringPassphrase() + "\n" "\nArguments:\n" "1. \"fromaccount\" (string, required) The name of the account to send funds from. May be the default account using \"\".\n" - "2. \"tobitcoinaddress\" (string, required) The bitcoin address to send funds to.\n" - "3. amount (numeric, required) The amount in btc. (transaction fee is added on top).\n" + "2. \"tohypercoinaddress\" (string, required) The hypercoin address to send funds to.\n" + "3. amount (numeric, required) The amount in hot. (transaction fee is added on top).\n" "4. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n" "5. \"comment\" (string, optional) A comment used to store what the transaction is for. \n" " This is not part of the transaction, just kept in your wallet.\n" @@ -793,18 +793,18 @@ Value sendfrom(const Array& params, bool fHelp) "\nResult:\n" "\"transactionid\" (string) The transaction id.\n" "\nExamples:\n" - "\nSend 0.01 btc from the default account to the address, must have at least 1 confirmation\n" - + HelpExampleCli("sendfrom", "\"\" \"1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd\" 0.01") + + "\nSend 0.01 hot from the default account to the address, must have at least 1 confirmation\n" + + HelpExampleCli("sendfrom", "\"\" \"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" 0.01") + "\nSend 0.01 from the tabby account to the given address, funds must have at least 6 confirmations\n" - + HelpExampleCli("sendfrom", "\"tabby\" \"1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd\" 0.01 6 \"donation\" \"seans outpost\"") + + + HelpExampleCli("sendfrom", "\"tabby\" \"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" 0.01 6 \"donation\" \"seans outpost\"") + "\nAs a json rpc call\n" - + HelpExampleRpc("sendfrom", "\"tabby\", \"1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd\", 0.01, 6, \"donation\", \"seans outpost\"") + + HelpExampleRpc("sendfrom", "\"tabby\", \"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\", 0.01, 6, \"donation\", \"seans outpost\"") ); string strAccount = AccountFromValue(params[0]); CBitcoinAddress address(params[1].get_str()); if (!address.IsValid()) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Bitcoin address"); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Hypercoin address"); CAmount nAmount = AmountFromValue(params[2]); int nMinDepth = 1; if (params.size() > 3) @@ -841,7 +841,7 @@ Value sendmany(const Array& params, bool fHelp) "1. \"fromaccount\" (string, required) The account to send the funds from, can be \"\" for the default account\n" "2. \"amounts\" (string, required) A json object with addresses and amounts\n" " {\n" - " \"address\":amount (numeric) The bitcoin address is the key, the numeric amount in btc is the value\n" + " \"address\":amount (numeric) The hypercoin address is the key, the numeric amount in hot is the value\n" " ,...\n" " }\n" "3. minconf (numeric, optional, default=1) Only use the balance confirmed at least this many times.\n" @@ -851,11 +851,11 @@ Value sendmany(const Array& params, bool fHelp) " the number of addresses.\n" "\nExamples:\n" "\nSend two amounts to two different addresses:\n" - + HelpExampleCli("sendmany", "\"tabby\" \"{\\\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\\\":0.01,\\\"1353tsE8YMTA4EuV7dgUXGjNFf9KpVvKHz\\\":0.02}\"") + + + HelpExampleCli("sendmany", "\"tabby\" \"{\\\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\\\":0.01,\\\"HNAWWinbaP4RornDJAmVKDFSBVEFZ5pnmq\\\":0.02}\"") + "\nSend two amounts to two different addresses setting the confirmation and comment:\n" - + HelpExampleCli("sendmany", "\"tabby\" \"{\\\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\\\":0.01,\\\"1353tsE8YMTA4EuV7dgUXGjNFf9KpVvKHz\\\":0.02}\" 6 \"testing\"") + + + HelpExampleCli("sendmany", "\"tabby\" \"{\\\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\\\":0.01,\\\"HNAWWinbaP4RornDJAmVKDFSBVEFZ5pnmq\\\":0.02}\" 6 \"testing\"") + "\nAs a json rpc call\n" - + HelpExampleRpc("sendmany", "\"tabby\", \"{\\\"1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ\\\":0.01,\\\"1353tsE8YMTA4EuV7dgUXGjNFf9KpVvKHz\\\":0.02}\", 6, \"testing\"") + + HelpExampleRpc("sendmany", "\"tabby\", \"{\\\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\\\":0.01,\\\"HNAWWinbaP4RornDJAmVKDFSBVEFZ5pnmq\\\":0.02}\", 6, \"testing\"") ); string strAccount = AccountFromValue(params[0]); @@ -877,7 +877,7 @@ Value sendmany(const Array& params, bool fHelp) { CBitcoinAddress address(s.name_); if (!address.IsValid()) - throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid Bitcoin address: ")+s.name_); + throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid Hypercoin address: ")+s.name_); if (setAddress.count(address)) throw JSONRPCError(RPC_INVALID_PARAMETER, string("Invalid parameter, duplicated address: ")+s.name_); @@ -919,26 +919,26 @@ Value addmultisigaddress(const Array& params, bool fHelp) { string msg = "addmultisigaddress nrequired [\"key\",...] ( \"account\" )\n" "\nAdd a nrequired-to-sign multisignature address to the wallet.\n" - "Each key is a Bitcoin address or hex-encoded public key.\n" + "Each key is a Hypercoin address or hex-encoded public key.\n" "If 'account' is specified, assign address to that account.\n" "\nArguments:\n" "1. nrequired (numeric, required) The number of required signatures out of the n keys or addresses.\n" - "2. \"keysobject\" (string, required) A json array of bitcoin addresses or hex-encoded public keys\n" + "2. \"keysobject\" (string, required) A json array of hypercoin addresses or hex-encoded public keys\n" " [\n" - " \"address\" (string) bitcoin address or hex-encoded public key\n" + " \"address\" (string) hypercoin address or hex-encoded public key\n" " ...,\n" " ]\n" "3. \"account\" (string, optional) An account to assign the addresses to.\n" "\nResult:\n" - "\"bitcoinaddress\" (string) A bitcoin address associated with the keys.\n" + "\"hypercoinaddress\" (string) A hypercoin address associated with the keys.\n" "\nExamples:\n" "\nAdd a multisig address from 2 addresses\n" - + HelpExampleCli("addmultisigaddress", "2 \"[\\\"16sSauSf5pF2UkUwvKGq4qjNRzBZYqgEL5\\\",\\\"171sgjn4YtPu27adkKGrdDwzRTxnRkBfKV\\\"]\"") + + + HelpExampleCli("addmultisigaddress", "2 \"[\\\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\\\",\\\"HNAWWinbaP4RornDJAmVKDFSBVEFZ5pnmq\\\"]\"") + "\nAs json rpc call\n" - + HelpExampleRpc("addmultisigaddress", "2, \"[\\\"16sSauSf5pF2UkUwvKGq4qjNRzBZYqgEL5\\\",\\\"171sgjn4YtPu27adkKGrdDwzRTxnRkBfKV\\\"]\"") + + HelpExampleRpc("addmultisigaddress", "2, \"[\\\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\\\",\\\"HNAWWinbaP4RornDJAmVKDFSBVEFZ5pnmq\\\"]\"") ; throw runtime_error(msg); } @@ -1106,7 +1106,7 @@ Value listreceivedbyaddress(const Array& params, bool fHelp) " \"involvesWatchonly\" : \"true\", (bool) Only returned if imported addresses were involved in transaction\n" " \"address\" : \"receivingaddress\", (string) The receiving address\n" " \"account\" : \"accountname\", (string) The account of the receiving address. The default account is \"\".\n" - " \"amount\" : x.xxx, (numeric) The total amount in btc received by the address\n" + " \"amount\" : x.xxx, (numeric) The total amount in hot received by the address\n" " \"confirmations\" : n (numeric) The number of confirmations of the most recent transaction included\n" " }\n" " ,...\n" @@ -1263,17 +1263,17 @@ Value listtransactions(const Array& params, bool fHelp) " {\n" " \"account\":\"accountname\", (string) The account name associated with the transaction. \n" " It will be \"\" for the default account.\n" - " \"address\":\"bitcoinaddress\", (string) The bitcoin address of the transaction. Not present for \n" + " \"address\":\"hypercoinaddress\", (string) The hypercoin address of the transaction. Not present for \n" " move transactions (category = move).\n" " \"category\":\"send|receive|move\", (string) The transaction category. 'move' is a local (off blockchain)\n" " transaction between accounts, and not associated with an address,\n" " transaction id or block. 'send' and 'receive' transactions are \n" " associated with an address, transaction id and block details\n" - " \"amount\": x.xxx, (numeric) The amount in btc. This is negative for the 'send' category, and for the\n" + " \"amount\": x.xxx, (numeric) The amount in hot. This is negative for the 'send' category, and for the\n" " 'move' category for moves outbound. It is positive for the 'receive' category,\n" " and for the 'move' category for inbound funds.\n" " \"vout\" : n, (numeric) the vout value\n" - " \"fee\": x.xxx, (numeric) The amount of the fee in btc. This is negative and only available for the \n" + " \"fee\": x.xxx, (numeric) The amount of the fee in hot. This is negative and only available for the \n" " 'send' category of transactions.\n" " \"confirmations\": n, (numeric) The number of confirmations for the transaction. Available for 'send' and \n" " 'receive' category of transactions.\n" @@ -1447,12 +1447,12 @@ Value listsinceblock(const Array& params, bool fHelp) "{\n" " \"transactions\": [\n" " \"account\":\"accountname\", (string) The account name associated with the transaction. Will be \"\" for the default account.\n" - " \"address\":\"bitcoinaddress\", (string) The bitcoin address of the transaction. Not present for move transactions (category = move).\n" + " \"address\":\"hypercoinaddress\", (string) The hypercoin address of the transaction. Not present for move transactions (category = move).\n" " \"category\":\"send|receive\", (string) The transaction category. 'send' has negative amounts, 'receive' has positive amounts.\n" - " \"amount\": x.xxx, (numeric) The amount in btc. This is negative for the 'send' category, and for the 'move' category for moves \n" + " \"amount\": x.xxx, (numeric) The amount in hot. This is negative for the 'send' category, and for the 'move' category for moves \n" " outbound. It is positive for the 'receive' category, and for the 'move' category for inbound funds.\n" " \"vout\" : n, (numeric) the vout value\n" - " \"fee\": x.xxx, (numeric) The amount of the fee in btc. This is negative and only available for the 'send' category of transactions.\n" + " \"fee\": x.xxx, (numeric) The amount of the fee in hot. This is negative and only available for the 'send' category of transactions.\n" " \"confirmations\": n, (numeric) The number of confirmations for the transaction. Available for 'send' and 'receive' category of transactions.\n" " \"blockhash\": \"hashvalue\", (string) The block hash containing the transaction. Available for 'send' and 'receive' category of transactions.\n" " \"blockindex\": n, (numeric) The block index containing the transaction. Available for 'send' and 'receive' category of transactions.\n" @@ -1467,8 +1467,8 @@ Value listsinceblock(const Array& params, bool fHelp) "}\n" "\nExamples:\n" + HelpExampleCli("listsinceblock", "") - + HelpExampleCli("listsinceblock", "\"000000000000000bacf66f7497b7dc45ef753ee9a7d38571037cdb1a57f663ad\" 6") - + HelpExampleRpc("listsinceblock", "\"000000000000000bacf66f7497b7dc45ef753ee9a7d38571037cdb1a57f663ad\", 6") + + HelpExampleCli("listsinceblock", "\"a31a9a03d44c3214699942510414b3b61ff01afdd6ee4e78a559d76194ff5f8f\" 6") + + HelpExampleRpc("listsinceblock", "\"a31a9a03d44c3214699942510414b3b61ff01afdd6ee4e78a559d76194ff5f8f\", 6") ); CBlockIndex *pindex = NULL; @@ -1530,7 +1530,7 @@ Value gettransaction(const Array& params, bool fHelp) "2. \"includeWatchonly\" (bool, optional, default=false) Whether to include watchonly addresses in balance calculation and details[]\n" "\nResult:\n" "{\n" - " \"amount\" : x.xxx, (numeric) The transaction amount in btc\n" + " \"amount\" : x.xxx, (numeric) The transaction amount in hot\n" " \"confirmations\" : n, (numeric) The number of confirmations\n" " \"blockhash\" : \"hash\", (string) The block hash\n" " \"blockindex\" : xx, (numeric) The block index\n" @@ -1541,9 +1541,9 @@ Value gettransaction(const Array& params, bool fHelp) " \"details\" : [\n" " {\n" " \"account\" : \"accountname\", (string) The account name involved in the transaction, can be \"\" for the default account.\n" - " \"address\" : \"bitcoinaddress\", (string) The bitcoin address involved in the transaction\n" + " \"address\" : \"hypercoinaddress\", (string) The hypercoin address involved in the transaction\n" " \"category\" : \"send|receive\", (string) The category, either 'send' or 'receive'\n" - " \"amount\" : x.xxx (numeric) The amount in btc\n" + " \"amount\" : x.xxx (numeric) The amount in hot\n" " \"vout\" : n, (numeric) the vout value\n" " }\n" " ,...\n" @@ -1552,9 +1552,9 @@ Value gettransaction(const Array& params, bool fHelp) "}\n" "\nExamples:\n" - + HelpExampleCli("gettransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\"") - + HelpExampleCli("gettransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\" true") - + HelpExampleRpc("gettransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\"") + + HelpExampleCli("gettransaction", "\"7841777d7f52596403ff2a9b7b58e6b78d77ae0df9a85ba128deb1edc047607d\"") + + HelpExampleCli("gettransaction", "\"7841777d7f52596403ff2a9b7b58e6b78d77ae0df9a85ba128deb1edc047607d\" true") + + HelpExampleRpc("gettransaction", "\"7841777d7f52596403ff2a9b7b58e6b78d77ae0df9a85ba128deb1edc047607d\"") ); uint256 hash; @@ -1658,7 +1658,7 @@ Value walletpassphrase(const Array& params, bool fHelp) throw runtime_error( "walletpassphrase \"passphrase\" timeout\n" "\nStores the wallet decryption key in memory for 'timeout' seconds.\n" - "This is needed prior to performing transactions related to private keys such as sending bitcoins\n" + "This is needed prior to performing transactions related to private keys such as sending hypercoins\n" "\nArguments:\n" "1. \"passphrase\" (string, required) The wallet passphrase\n" "2. timeout (numeric, required) The time to keep the decryption key in seconds.\n" @@ -1760,7 +1760,7 @@ Value walletlock(const Array& params, bool fHelp) "\nSet the passphrase for 2 minutes to perform a transaction\n" + HelpExampleCli("walletpassphrase", "\"my pass phrase\" 120") + "\nPerform a send (requires passphrase set)\n" - + HelpExampleCli("sendtoaddress", "\"1M72Sfpbz1BPpXFHz9m3CdqATR44Jvaydd\" 1.0") + + + HelpExampleCli("sendtoaddress", "\"HJD4YANVjJFC2bXQraFwPHodBa8zSeduAm\" 1.0") + "\nClear the passphrase since we are done before 2 minutes is up\n" + HelpExampleCli("walletlock", "") + "\nAs json rpc call\n" @@ -1798,10 +1798,10 @@ Value encryptwallet(const Array& params, bool fHelp) "\nExamples:\n" "\nEncrypt you wallet\n" + HelpExampleCli("encryptwallet", "\"my pass phrase\"") + - "\nNow set the passphrase to use the wallet, such as for signing or sending bitcoin\n" + "\nNow set the passphrase to use the wallet, such as for signing or sending hypercoin\n" + HelpExampleCli("walletpassphrase", "\"my pass phrase\"") + "\nNow we can so something like sign\n" - + HelpExampleCli("signmessage", "\"bitcoinaddress\" \"test message\"") + + + HelpExampleCli("signmessage", "\"hypercoinaddress\" \"test message\"") + "\nNow lock the wallet again by removing the passphrase\n" + HelpExampleCli("walletlock", "") + "\nAs a json rpc call\n" @@ -1831,7 +1831,7 @@ Value encryptwallet(const Array& params, bool fHelp) // slack space in .dat files; that is bad if the old data is // unencrypted private keys. So: StartShutdown(); - return "wallet encrypted; Bitcoin server stopping, restart to run with encrypted wallet. The keypool has been flushed, you need to make a new backup."; + return "wallet encrypted; Hypercoin server stopping, restart to run with encrypted wallet. The keypool has been flushed, you need to make a new backup."; } Value lockunspent(const Array& params, bool fHelp) @@ -1841,7 +1841,7 @@ Value lockunspent(const Array& params, bool fHelp) "lockunspent unlock [{\"txid\":\"txid\",\"vout\":n},...]\n" "\nUpdates list of temporarily unspendable outputs.\n" "Temporarily lock (unlock=false) or unlock (unlock=true) specified transaction outputs.\n" - "A locked transaction output will not be chosen by automatic coin selection, when spending bitcoins.\n" + "A locked transaction output will not be chosen by automatic coin selection, when spending hypercoins.\n" "Locks are stored in memory only. Nodes start with zero locked outputs, and the locked output list\n" "is always cleared (by virtue of process exit) when a node stops or fails.\n" "Also see the listunspent call\n" @@ -1863,13 +1863,13 @@ Value lockunspent(const Array& params, bool fHelp) "\nList the unspent transactions\n" + HelpExampleCli("listunspent", "") + "\nLock an unspent transaction\n" - + HelpExampleCli("lockunspent", "false \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") + + + HelpExampleCli("lockunspent", "false \"[{\\\"txid\\\":\\\"cdf21f8cfaee3544ada266ff2da8554e8374fcd7efc6a0444f7ac75d7948884e\\\",\\\"vout\\\":1}]\"") + "\nList the locked transactions\n" + HelpExampleCli("listlockunspent", "") + "\nUnlock the transaction again\n" - + HelpExampleCli("lockunspent", "true \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") + + + HelpExampleCli("lockunspent", "true \"[{\\\"txid\\\":\\\"cdf21f8cfaee3544ada266ff2da8554e8374fcd7efc6a0444f7ac75d7948884e\\\",\\\"vout\\\":1}]\"") + "\nAs a json rpc call\n" - + HelpExampleRpc("lockunspent", "false, \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") + + HelpExampleRpc("lockunspent", "false, \"[{\\\"txid\\\":\\\"cdf21f8cfaee3544ada266ff2da8554e8374fcd7efc6a0444f7ac75d7948884e\\\",\\\"vout\\\":1}]\"") ); if (params.size() == 1) @@ -1932,11 +1932,11 @@ Value listlockunspent(const Array& params, bool fHelp) "\nList the unspent transactions\n" + HelpExampleCli("listunspent", "") + "\nLock an unspent transaction\n" - + HelpExampleCli("lockunspent", "false \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") + + + HelpExampleCli("lockunspent", "false \"[{\\\"txid\\\":\\\"cdf21f8cfaee3544ada266ff2da8554e8374fcd7efc6a0444f7ac75d7948884e\\\",\\\"vout\\\":1}]\"") + "\nList the locked transactions\n" + HelpExampleCli("listlockunspent", "") + "\nUnlock the transaction again\n" - + HelpExampleCli("lockunspent", "true \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") + + + HelpExampleCli("lockunspent", "true \"[{\\\"txid\\\":\\\"cdf21f8cfaee3544ada266ff2da8554e8374fcd7efc6a0444f7ac75d7948884e\\\",\\\"vout\\\":1}]\"") + "\nAs a json rpc call\n" + HelpExampleRpc("listlockunspent", "") ); @@ -1964,7 +1964,7 @@ Value settxfee(const Array& params, bool fHelp) "settxfee amount\n" "\nSet the transaction fee per kB.\n" "\nArguments:\n" - "1. amount (numeric, required) The transaction fee in BTC/kB rounded to the nearest 0.00000001\n" + "1. amount (numeric, required) The transaction fee in HOT/kB rounded to the nearest 0.00000001\n" "\nResult\n" "true|false (boolean) Returns true if successful\n" "\nExamples:\n" @@ -1990,7 +1990,7 @@ Value getwalletinfo(const Array& params, bool fHelp) "\nResult:\n" "{\n" " \"walletversion\": xxxxx, (numeric) the wallet version\n" - " \"balance\": xxxxxxx, (numeric) the total bitcoin balance of the wallet\n" + " \"balance\": xxxxxxx, (numeric) the total hypercoin balance of the wallet\n" " \"txcount\": xxxxxxx, (numeric) the total number of transactions in the wallet\n" " \"keypoololdest\": xxxxxx, (numeric) the timestamp (seconds since GMT epoch) of the oldest pre-generated key in the key pool\n" " \"keypoolsize\": xxxx, (numeric) how many new keys are pre-generated\n" diff --git a/src/script/bitcoinconsensus.cpp b/src/script/bitcoinconsensus.cpp index d4fd2ad7d9b1c..f0d7e54e77fec 100644 --- a/src/script/bitcoinconsensus.cpp +++ b/src/script/bitcoinconsensus.cpp @@ -78,8 +78,8 @@ int bitcoinconsensus_verify_script(const unsigned char *scriptPubKey, unsigned i // Regardless of the verification result, the tx did not error. set_error(err, bitcoinconsensus_ERR_OK); - return VerifyScript(tx.vin[nIn].scriptSig, CScript(scriptPubKey, scriptPubKey + scriptPubKeyLen), flags, SignatureChecker(tx, nIn), NULL); - } catch (std::exception &e) { + return VerifyScript(tx.vin[nIn].scriptSig, CScript(scriptPubKey, scriptPubKey + scriptPubKeyLen), flags, TransactionSignatureChecker(&tx, nIn), NULL); + } catch (const std::exception&) { return set_error(err, bitcoinconsensus_ERR_TX_DESERIALIZE); // Error deserializing } } diff --git a/src/script/bitcoinconsensus.h b/src/script/bitcoinconsensus.h index 15e3337a8dedc..70daae85aed88 100644 --- a/src/script/bitcoinconsensus.h +++ b/src/script/bitcoinconsensus.h @@ -44,8 +44,10 @@ typedef enum bitcoinconsensus_error_t /** Script verification flags */ enum { - bitcoinconsensus_SCRIPT_FLAGS_VERIFY_NONE = 0, - bitcoinconsensus_SCRIPT_FLAGS_VERIFY_P2SH = (1U << 0), // evaluate P2SH (BIP16) subscripts + bitcoinconsensus_SCRIPT_FLAGS_VERIFY_NONE = 0, + bitcoinconsensus_SCRIPT_FLAGS_VERIFY_P2SH = (1U << 0), // evaluate P2SH (BIP16) subscripts + bitcoinconsensus_SCRIPT_FLAGS_VERIFY_DERSIG = (1U << 2), // enforce strict DER (BIP66) compliance + bitcoinconsensus_SCRIPT_FLAGS_VERIFY_CHECKLOCKTIMEVERIFY = (1U << 9), // enable CHECKLOCKTIMEVERIFY (BIP65) }; /// Returns 1 if the input nIn of the serialized transaction pointed to by diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp index 3231f2e74e53b..b4e94fc2c6721 100644 --- a/src/script/interpreter.cpp +++ b/src/script/interpreter.cpp @@ -93,76 +93,76 @@ bool static IsCompressedOrUncompressedPubKey(const valtype &vchPubKey) { * in which case a single 0 byte is necessary and even required). * * See https://bitcointalk.org/index.php?topic=8392.msg127623#msg127623 + * + * This function is consensus-critical since BIP66. */ -bool static IsDERSignature(const valtype &vchSig) { +bool static IsValidSignatureEncoding(const std::vector &sig) { + // Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S] [sighash] + // * total-length: 1-byte length descriptor of everything that follows, + // excluding the sighash byte. + // * R-length: 1-byte length descriptor of the R value that follows. + // * R: arbitrary-length big-endian encoded R value. It must use the shortest + // possible encoding for a positive integers (which means no null bytes at + // the start, except a single one when the next byte has its highest bit set). + // * S-length: 1-byte length descriptor of the S value that follows. + // * S: arbitrary-length big-endian encoded S value. The same rules apply. + // * sighash: 1-byte value indicating what data is hashed (not part of the DER + // signature) - if (vchSig.size() < 9) { - // Non-canonical signature: too short - return false; - } - if (vchSig.size() > 73) { - // Non-canonical signature: too long - return false; - } - if (vchSig[0] != 0x30) { - // Non-canonical signature: wrong type - return false; - } - if (vchSig[1] != vchSig.size()-3) { - // Non-canonical signature: wrong length marker - return false; - } - unsigned int nLenR = vchSig[3]; - if (5 + nLenR >= vchSig.size()) { - // Non-canonical signature: S length misplaced - return false; - } - unsigned int nLenS = vchSig[5+nLenR]; - if ((unsigned long)(nLenR+nLenS+7) != vchSig.size()) { - // Non-canonical signature: R+S length mismatch - return false; - } + // Minimum and maximum size constraints. + if (sig.size() < 9) return false; + if (sig.size() > 73) return false; - const unsigned char *R = &vchSig[4]; - if (R[-2] != 0x02) { - // Non-canonical signature: R value type mismatch - return false; - } - if (nLenR == 0) { - // Non-canonical signature: R length is zero - return false; - } - if (R[0] & 0x80) { - // Non-canonical signature: R value negative - return false; - } - if (nLenR > 1 && (R[0] == 0x00) && !(R[1] & 0x80)) { - // Non-canonical signature: R value excessively padded - return false; - } + // A signature is of type 0x30 (compound). + if (sig[0] != 0x30) return false; + + // Make sure the length covers the entire signature. + if (sig[1] != sig.size() - 3) return false; + + // Extract the length of the R element. + unsigned int lenR = sig[3]; + + // Make sure the length of the S element is still inside the signature. + if (5 + lenR >= sig.size()) return false; + + // Extract the length of the S element. + unsigned int lenS = sig[5 + lenR]; + + // Verify that the length of the signature matches the sum of the length + // of the elements. + if ((size_t)(lenR + lenS + 7) != sig.size()) return false; + + // Check whether the R element is an integer. + if (sig[2] != 0x02) return false; + + // Zero-length integers are not allowed for R. + if (lenR == 0) return false; + + // Negative numbers are not allowed for R. + if (sig[4] & 0x80) return false; + + // Null bytes at the start of R are not allowed, unless R would + // otherwise be interpreted as a negative number. + if (lenR > 1 && (sig[4] == 0x00) && !(sig[5] & 0x80)) return false; + + // Check whether the S element is an integer. + if (sig[lenR + 4] != 0x02) return false; + + // Zero-length integers are not allowed for S. + if (lenS == 0) return false; + + // Negative numbers are not allowed for S. + if (sig[lenR + 6] & 0x80) return false; + + // Null bytes at the start of S are not allowed, unless S would otherwise be + // interpreted as a negative number. + if (lenS > 1 && (sig[lenR + 6] == 0x00) && !(sig[lenR + 7] & 0x80)) return false; - const unsigned char *S = &vchSig[6+nLenR]; - if (S[-2] != 0x02) { - // Non-canonical signature: S value type mismatch - return false; - } - if (nLenS == 0) { - // Non-canonical signature: S length is zero - return false; - } - if (S[0] & 0x80) { - // Non-canonical signature: S value negative - return false; - } - if (nLenS > 1 && (S[0] == 0x00) && !(S[1] & 0x80)) { - // Non-canonical signature: S value excessively padded - return false; - } return true; } bool static IsLowDERSignature(const valtype &vchSig, ScriptError* serror) { - if (!IsDERSignature(vchSig)) { + if (!IsValidSignatureEncoding(vchSig)) { return set_error(serror, SCRIPT_ERR_SIG_DER); } unsigned int nLenR = vchSig[3]; @@ -189,7 +189,12 @@ bool static IsDefinedHashtypeSignature(const valtype &vchSig) { } bool static CheckSignatureEncoding(const valtype &vchSig, unsigned int flags, ScriptError* serror) { - if ((flags & (SCRIPT_VERIFY_DERSIG | SCRIPT_VERIFY_LOW_S | SCRIPT_VERIFY_STRICTENC)) != 0 && !IsDERSignature(vchSig)) { + // Empty signature. Not strictly DER encoded, but allowed to provide a + // compact way to provide an invalid signature for use with CHECK(MULTI)SIG + if (vchSig.size() == 0) { + return true; + } + if ((flags & (SCRIPT_VERIFY_DERSIG | SCRIPT_VERIFY_LOW_S | SCRIPT_VERIFY_STRICTENC)) != 0 && !IsValidSignatureEncoding(vchSig)) { return set_error(serror, SCRIPT_ERR_SIG_DER); } else if ((flags & SCRIPT_VERIFY_LOW_S) != 0 && !IsLowDERSignature(vchSig, serror)) { // serror is set @@ -330,9 +335,51 @@ bool EvalScript(vector >& stack, const CScript& script, un // Control // case OP_NOP: - break; + break; - case OP_NOP1: case OP_NOP2: case OP_NOP3: case OP_NOP4: case OP_NOP5: + case OP_CHECKLOCKTIMEVERIFY: + { + if (!(flags & SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY)) { + // not enabled; treat as a NOP2 + if (flags & SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS) { + return set_error(serror, SCRIPT_ERR_DISCOURAGE_UPGRADABLE_NOPS); + } + break; + } + + if (stack.size() < 1) + return set_error(serror, SCRIPT_ERR_INVALID_STACK_OPERATION); + + // Note that elsewhere numeric opcodes are limited to + // operands in the range -2**31+1 to 2**31-1, however it is + // legal for opcodes to produce results exceeding that + // range. This limitation is implemented by CScriptNum's + // default 4-byte limit. + // + // If we kept to that limit we'd have a year 2038 problem, + // even though the nLockTime field in transactions + // themselves is uint32 which only becomes meaningless + // after the year 2106. + // + // Thus as a special case we tell CScriptNum to accept up + // to 5-byte bignums, which are good until 2**39-1, well + // beyond the 2**32-1 limit of the nLockTime field itself. + const CScriptNum nLockTime(stacktop(-1), fRequireMinimal, 5); + + // In the rare event that the argument may be < 0 due to + // some arithmetic being done first, you can always use + // 0 MAX CHECKLOCKTIMEVERIFY. + if (nLockTime < 0) + return set_error(serror, SCRIPT_ERR_NEGATIVE_LOCKTIME); + + // Actually compare the specified lock time with the transaction. + if (!checker.CheckLockTime(nLockTime)) + return set_error(serror, SCRIPT_ERR_UNSATISFIED_LOCKTIME); + + break; + } + + case OP_NOP1: case OP_NOP3: case OP_NOP4: case OP_NOP5: case OP_NOP6: case OP_NOP7: case OP_NOP8: case OP_NOP9: case OP_NOP10: { if (flags & SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS) @@ -1052,12 +1099,12 @@ uint256 SignatureHash(const CScript& scriptCode, const CTransaction& txTo, unsig return ss.GetHash(); } -bool SignatureChecker::VerifySignature(const std::vector& vchSig, const CPubKey& pubkey, const uint256& sighash) const +bool TransactionSignatureChecker::VerifySignature(const std::vector& vchSig, const CPubKey& pubkey, const uint256& sighash) const { return pubkey.Verify(sighash, vchSig); } -bool SignatureChecker::CheckSig(const vector& vchSigIn, const vector& vchPubKey, const CScript& scriptCode) const +bool TransactionSignatureChecker::CheckSig(const vector& vchSigIn, const vector& vchPubKey, const CScript& scriptCode) const { CPubKey pubkey(vchPubKey); if (!pubkey.IsValid()) @@ -1070,7 +1117,7 @@ bool SignatureChecker::CheckSig(const vector& vchSigIn, const vec int nHashType = vchSig.back(); vchSig.pop_back(); - uint256 sighash = SignatureHash(scriptCode, txTo, nIn, nHashType); + uint256 sighash = SignatureHash(scriptCode, *txTo, nIn, nHashType); if (!VerifySignature(vchSig, pubkey, sighash)) return false; @@ -1078,6 +1125,43 @@ bool SignatureChecker::CheckSig(const vector& vchSigIn, const vec return true; } +bool TransactionSignatureChecker::CheckLockTime(const CScriptNum& nLockTime) const +{ + // There are two times of nLockTime: lock-by-blockheight + // and lock-by-blocktime, distinguished by whether + // nLockTime < LOCKTIME_THRESHOLD. + // + // We want to compare apples to apples, so fail the script + // unless the type of nLockTime being tested is the same as + // the nLockTime in the transaction. + if (!( + (txTo->nLockTime < LOCKTIME_THRESHOLD && nLockTime < LOCKTIME_THRESHOLD) || + (txTo->nLockTime >= LOCKTIME_THRESHOLD && nLockTime >= LOCKTIME_THRESHOLD) + )) + return false; + + // Now that we know we're comparing apples-to-apples, the + // comparison is a simple numeric one. + if (nLockTime > (int64_t)txTo->nLockTime) + return false; + + // Finally the nLockTime feature can be disabled and thus + // CHECKLOCKTIMEVERIFY bypassed if every txin has been + // finalized by setting nSequence to maxint. The + // transaction would be allowed into the blockchain, making + // the opcode ineffective. + // + // Testing if this vin is not final is sufficient to + // prevent this condition. Alternatively we could test all + // inputs, but testing just this input minimizes the data + // required to prove correct CHECKLOCKTIMEVERIFY execution. + if (txTo->vin[nIn].IsFinal()) + return false; + + return true; +} + + bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, unsigned int flags, const BaseSignatureChecker& checker, ScriptError* serror) { set_error(serror, SCRIPT_ERR_UNKNOWN_ERROR); @@ -1097,7 +1181,6 @@ bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, unsigne return false; if (stack.empty()) return set_error(serror, SCRIPT_ERR_EVAL_FALSE); - if (CastToBool(stack.back()) == false) return set_error(serror, SCRIPT_ERR_EVAL_FALSE); @@ -1108,24 +1191,37 @@ bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, unsigne if (!scriptSig.IsPushOnly()) return set_error(serror, SCRIPT_ERR_SIG_PUSHONLY); - // stackCopy cannot be empty here, because if it was the + // Restore stack. + swap(stack, stackCopy); + + // stack cannot be empty here, because if it was the // P2SH HASH <> EQUAL scriptPubKey would be evaluated with // an empty stack and the EvalScript above would return false. - assert(!stackCopy.empty()); + assert(!stack.empty()); - const valtype& pubKeySerialized = stackCopy.back(); + const valtype& pubKeySerialized = stack.back(); CScript pubKey2(pubKeySerialized.begin(), pubKeySerialized.end()); - popstack(stackCopy); + popstack(stack); - if (!EvalScript(stackCopy, pubKey2, flags, checker, serror)) + if (!EvalScript(stack, pubKey2, flags, checker, serror)) // serror is set return false; - if (stackCopy.empty()) + if (stack.empty()) return set_error(serror, SCRIPT_ERR_EVAL_FALSE); - if (!CastToBool(stackCopy.back())) + if (!CastToBool(stack.back())) return set_error(serror, SCRIPT_ERR_EVAL_FALSE); - else - return set_success(serror); + } + + // The CLEANSTACK check is only performed after potential P2SH evaluation, + // as the non-P2SH evaluation of a P2SH script will obviously not result in + // a clean stack (the P2SH inputs remain). + if ((flags & SCRIPT_VERIFY_CLEANSTACK) != 0) { + // Disallow CLEANSTACK without P2SH, as otherwise a switch CLEANSTACK->P2SH+CLEANSTACK + // would be possible, which is not a softfork (and P2SH should be one). + assert((flags & SCRIPT_VERIFY_P2SH) != 0); + if (stack.size() != 1) { + return set_error(serror, SCRIPT_ERR_CLEANSTACK); + } } return set_success(serror); diff --git a/src/script/interpreter.h b/src/script/interpreter.h index 35b2f6c65a1c3..8934f0549e7ed 100644 --- a/src/script/interpreter.h +++ b/src/script/interpreter.h @@ -7,6 +7,7 @@ #define BITCOIN_SCRIPT_INTERPRETER_H #include "script_error.h" +#include "primitives/transaction.h" #include #include @@ -67,8 +68,19 @@ enum // discouraged NOPs fails the script. This verification flag will never be // a mandatory flag applied to scripts in a block. NOPs that are not // executed, e.g. within an unexecuted IF ENDIF block, are *not* rejected. - SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS = (1U << 7) + SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS = (1U << 7), + // Require that only a single stack element remains after evaluation. This changes the success criterion from + // "At least one stack element must remain, and when interpreted as a boolean, it must be true" to + // "Exactly one stack element must remain, and when interpreted as a boolean, it must be true". + // (softfork safe, BIP62 rule 6) + // Note: CLEANSTACK should never be used without P2SH. + SCRIPT_VERIFY_CLEANSTACK = (1U << 8), + + // Verify CHECKLOCKTIMEVERIFY + // + // See BIP65 for details. + SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY = (1U << 9), }; uint256 SignatureHash(const CScript &scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType); @@ -81,21 +93,36 @@ class BaseSignatureChecker return false; } + virtual bool CheckLockTime(const CScriptNum& nLockTime) const + { + return false; + } + virtual ~BaseSignatureChecker() {} }; -class SignatureChecker : public BaseSignatureChecker +class TransactionSignatureChecker : public BaseSignatureChecker { private: - const CTransaction& txTo; + const CTransaction* txTo; unsigned int nIn; protected: virtual bool VerifySignature(const std::vector& vchSig, const CPubKey& vchPubKey, const uint256& sighash) const; public: - SignatureChecker(const CTransaction& txToIn, unsigned int nInIn) : txTo(txToIn), nIn(nInIn) {} + TransactionSignatureChecker(const CTransaction* txToIn, unsigned int nInIn) : txTo(txToIn), nIn(nInIn) {} bool CheckSig(const std::vector& scriptSig, const std::vector& vchPubKey, const CScript& scriptCode) const; + bool CheckLockTime(const CScriptNum& nLockTime) const; +}; + +class MutableTransactionSignatureChecker : public TransactionSignatureChecker +{ +private: + const CTransaction txTo; + +public: + MutableTransactionSignatureChecker(const CMutableTransaction* txToIn, unsigned int nInIn) : TransactionSignatureChecker(&txTo, nInIn), txTo(*txToIn) {} }; bool EvalScript(std::vector >& stack, const CScript& script, unsigned int flags, const BaseSignatureChecker& checker, ScriptError* error = NULL); diff --git a/src/script/script.h b/src/script/script.h index 9c22cb908cfd1..35049573c452e 100644 --- a/src/script/script.h +++ b/src/script/script.h @@ -17,6 +17,10 @@ static const unsigned int MAX_SCRIPT_ELEMENT_SIZE = 520; // bytes +// Threshold for nLockTime: below this value it is interpreted as block number, +// otherwise as UNIX timestamp. +static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov 5 00:53:20 1985 UTC + template std::vector ToByteVector(const T& in) { @@ -149,6 +153,7 @@ enum opcodetype // expansion OP_NOP1 = 0xb0, OP_NOP2 = 0xb1, + OP_CHECKLOCKTIMEVERIFY = OP_NOP2, OP_NOP3 = 0xb2, OP_NOP4 = 0xb3, OP_NOP5 = 0xb4, @@ -194,7 +199,10 @@ class CScriptNum m_value = n; } - explicit CScriptNum(const std::vector& vch, bool fRequireMinimal) + static const size_t nDefaultMaxNumSize = 4; + + explicit CScriptNum(const std::vector& vch, bool fRequireMinimal, + const size_t nMaxNumSize = nDefaultMaxNumSize) { if (vch.size() > nMaxNumSize) { throw scriptnum_error("script number overflow"); @@ -317,8 +325,6 @@ class CScriptNum return result; } - static const size_t nMaxNumSize = 4; - private: static int64_t set_vch(const std::vector& vch) { @@ -539,17 +545,26 @@ class CScript : public std::vector int nFound = 0; if (b.empty()) return nFound; - iterator pc = begin(); + CScript result; + iterator pc = begin(), pc2 = begin(); opcodetype opcode; do { - while (end() - pc >= (long)b.size() && memcmp(&pc[0], &b[0], b.size()) == 0) + result.insert(result.end(), pc2, pc); + while (static_cast(end() - pc) >= b.size() && std::equal(b.begin(), b.end(), pc)) { - pc = erase(pc, pc + b.size()); + pc = pc + b.size(); ++nFound; } + pc2 = pc; } while (GetOp(pc, opcode)); + + if (nFound > 0) { + result.insert(result.end(), pc2, end()); + *this = result; + } + return nFound; } int Find(opcodetype op) const diff --git a/src/script/script_error.cpp b/src/script/script_error.cpp index 5d24ed98ba82d..788d7ff4689b7 100644 --- a/src/script/script_error.cpp +++ b/src/script/script_error.cpp @@ -47,6 +47,10 @@ const char* ScriptErrorString(const ScriptError serror) return "OP_RETURN was encountered"; case SCRIPT_ERR_UNBALANCED_CONDITIONAL: return "Invalid OP_IF construction"; + case SCRIPT_ERR_NEGATIVE_LOCKTIME: + return "Negative locktime"; + case SCRIPT_ERR_UNSATISFIED_LOCKTIME: + return "Locktime requirement not satisfied"; case SCRIPT_ERR_SIG_HASHTYPE: return "Signature hash type missing or not understood"; case SCRIPT_ERR_SIG_DER: diff --git a/src/script/script_error.h b/src/script/script_error.h index 091524f35cb34..1113712759687 100644 --- a/src/script/script_error.h +++ b/src/script/script_error.h @@ -35,6 +35,10 @@ typedef enum ScriptError_t SCRIPT_ERR_INVALID_ALTSTACK_OPERATION, SCRIPT_ERR_UNBALANCED_CONDITIONAL, + /* OP_CHECKLOCKTIMEVERIFY */ + SCRIPT_ERR_NEGATIVE_LOCKTIME, + SCRIPT_ERR_UNSATISFIED_LOCKTIME, + /* BIP62 */ SCRIPT_ERR_SIG_HASHTYPE, SCRIPT_ERR_SIG_DER, @@ -43,6 +47,7 @@ typedef enum ScriptError_t SCRIPT_ERR_SIG_HIGH_S, SCRIPT_ERR_SIG_NULLDUMMY, SCRIPT_ERR_PUBKEYTYPE, + SCRIPT_ERR_CLEANSTACK, /* softfork safeness */ SCRIPT_ERR_DISCOURAGE_UPGRADABLE_NOPS, diff --git a/src/script/sigcache.cpp b/src/script/sigcache.cpp index 5580a5933e6d7..2c4c14ac26ed0 100644 --- a/src/script/sigcache.cpp +++ b/src/script/sigcache.cpp @@ -74,14 +74,14 @@ class CSignatureCache } -bool CachingSignatureChecker::VerifySignature(const std::vector& vchSig, const CPubKey& pubkey, const uint256& sighash) const +bool CachingTransactionSignatureChecker::VerifySignature(const std::vector& vchSig, const CPubKey& pubkey, const uint256& sighash) const { static CSignatureCache signatureCache; if (signatureCache.Get(sighash, vchSig, pubkey)) return true; - if (!SignatureChecker::VerifySignature(vchSig, pubkey, sighash)) + if (!TransactionSignatureChecker::VerifySignature(vchSig, pubkey, sighash)) return false; if (store) diff --git a/src/script/sigcache.h b/src/script/sigcache.h index df2a2ea13c8c4..38b032b67b57a 100644 --- a/src/script/sigcache.h +++ b/src/script/sigcache.h @@ -12,13 +12,13 @@ class CPubKey; -class CachingSignatureChecker : public SignatureChecker +class CachingTransactionSignatureChecker : public TransactionSignatureChecker { private: bool store; public: - CachingSignatureChecker(const CTransaction& txToIn, unsigned int nInIn, bool storeIn=true) : SignatureChecker(txToIn, nInIn), store(storeIn) {} + CachingTransactionSignatureChecker(const CTransaction* txToIn, unsigned int nInIn, bool storeIn=true) : TransactionSignatureChecker(txToIn, nInIn), store(storeIn) {} bool VerifySignature(const std::vector& vchSig, const CPubKey& vchPubKey, const uint256& sighash) const; }; diff --git a/src/script/sign.cpp b/src/script/sign.cpp index 03c33ad9b5262..b6a441a798d9a 100644 --- a/src/script/sign.cpp +++ b/src/script/sign.cpp @@ -123,7 +123,7 @@ bool SignSignature(const CKeyStore &keystore, const CScript& fromPubKey, CMutabl } // Test solution - return VerifyScript(txin.scriptSig, fromPubKey, STANDARD_SCRIPT_VERIFY_FLAGS, SignatureChecker(txTo, nIn)); + return VerifyScript(txin.scriptSig, fromPubKey, STANDARD_SCRIPT_VERIFY_FLAGS, MutableTransactionSignatureChecker(&txTo, nIn)); } bool SignSignature(const CKeyStore &keystore, const CTransaction& txFrom, CMutableTransaction& txTo, unsigned int nIn, int nHashType) @@ -174,7 +174,7 @@ static CScript CombineMultisig(const CScript& scriptPubKey, const CTransaction& if (sigs.count(pubkey)) continue; // Already got a sig for this pubkey - if (SignatureChecker(txTo, nIn).CheckSig(sig, pubkey, scriptPubKey)) + if (TransactionSignatureChecker(&txTo, nIn).CheckSig(sig, pubkey, scriptPubKey)) { sigs[pubkey] = sig; break; diff --git a/src/script/standard.cpp b/src/script/standard.cpp index ab6e6cde0deb5..6e2c465c865e3 100644 --- a/src/script/standard.cpp +++ b/src/script/standard.cpp @@ -18,7 +18,7 @@ typedef vector valtype; unsigned nMaxDatacarrierBytes = MAX_OP_RETURN_RELAY; -CScriptID::CScriptID(const CScript& in) : uint160(in.size() ? Hash160(in.begin(), in.end()) : 0) {} +CScriptID::CScriptID(const CScript& in) : uint160(Hash160(in.begin(), in.end())) {} const char* GetTxnOutputType(txnouttype t) { diff --git a/src/script/standard.h b/src/script/standard.h index c4b82b4c45ae5..c1a281ddb9246 100644 --- a/src/script/standard.h +++ b/src/script/standard.h @@ -25,7 +25,7 @@ class CScriptID : public uint160 CScriptID(const uint160& in) : uint160(in) {} }; -static const unsigned int MAX_OP_RETURN_RELAY = 40; //! bytes +static const unsigned int MAX_OP_RETURN_RELAY = 80; //! bytes extern unsigned nMaxDatacarrierBytes; /** @@ -45,10 +45,14 @@ static const unsigned int MANDATORY_SCRIPT_VERIFY_FLAGS = SCRIPT_VERIFY_P2SH; * blocks and we must accept those blocks. */ static const unsigned int STANDARD_SCRIPT_VERIFY_FLAGS = MANDATORY_SCRIPT_VERIFY_FLAGS | + SCRIPT_VERIFY_DERSIG | SCRIPT_VERIFY_STRICTENC | SCRIPT_VERIFY_MINIMALDATA | SCRIPT_VERIFY_NULLDUMMY | - SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS; + SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS | + SCRIPT_VERIFY_CLEANSTACK | + SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY | + SCRIPT_VERIFY_LOW_S; /** For convenience, standard but not mandatory verify flags. */ static const unsigned int STANDARD_NOT_MANDATORY_VERIFY_FLAGS = STANDARD_SCRIPT_VERIFY_FLAGS & ~MANDATORY_SCRIPT_VERIFY_FLAGS; diff --git a/src/secp256k1/configure.ac b/src/secp256k1/configure.ac index 6e6fccd7fddca..017fd4e1d471d 100644 --- a/src/secp256k1/configure.ac +++ b/src/secp256k1/configure.ac @@ -118,13 +118,6 @@ if test x"$req_field" = x"auto"; then fi fi - if test x"$set_field" = x; then - SECP_GMP_CHECK - if test x"$has_gmp" = x"yes"; then - set_field=gmp - fi - fi - if test x"$set_field" = x; then set_field=32bit fi @@ -173,11 +166,6 @@ else fi if test x"$req_bignum" = x"auto"; then - SECP_GMP_CHECK - if test x"$has_gmp" = x"yes"; then - set_bignum=gmp - fi - if test x"$set_bignum" = x; then set_bignum=none fi diff --git a/src/sync.h b/src/sync.h index cd0aa7b20e717..93d72f84a4fee 100644 --- a/src/sync.h +++ b/src/sync.h @@ -16,7 +16,7 @@ //////////////////////////////////////////////// // // -// THE SIMPLE DEFINITON, EXCLUDING DEBUG CODE // +// THE SIMPLE DEFINITION, EXCLUDING DEBUG CODE // // // //////////////////////////////////////////////// diff --git a/src/test/README.md b/src/test/README.md index 7efce6f0522f2..eeaceb60c6ae7 100644 --- a/src/test/README.md +++ b/src/test/README.md @@ -16,6 +16,8 @@ their tests in a test suite called "_tests". For an examples of this pattern, examine uint160_tests.cpp and uint256_tests.cpp. +Add the source files to /src/Makefile.test.include to add them to the build. + For further reading, I found the following website to be helpful in explaining how the boost unit test framework works: [http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/](http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/). \ No newline at end of file diff --git a/src/test/alert_tests.cpp b/src/test/alert_tests.cpp index 4869ba52acceb..238d650ae1a79 100644 --- a/src/test/alert_tests.cpp +++ b/src/test/alert_tests.cpp @@ -10,6 +10,7 @@ #include "clientversion.h" #include "data/alertTests.raw.h" +#include "chainparams.h" #include "serialize.h" #include "streams.h" #include "util.h" @@ -83,16 +84,7 @@ struct ReadAlerts ReadAlerts() { std::vector vch(alert_tests::alertTests, alert_tests::alertTests + sizeof(alert_tests::alertTests)); - CDataStream stream(vch, SER_DISK, CLIENT_VERSION); - try { - while (!stream.eof()) - { - CAlert alert; - stream >> alert; - alerts.push_back(alert); - } - } - catch (std::exception) { } + CDataStream(vch, SER_DISK, CLIENT_VERSION) >> allAlerts[CBaseChainParams::MAIN]; } ~ReadAlerts() { } @@ -108,7 +100,7 @@ struct ReadAlerts return result; } - std::vector alerts; + std::map > allAlerts; }; BOOST_FIXTURE_TEST_SUITE(Alert_tests, ReadAlerts) @@ -118,39 +110,46 @@ BOOST_AUTO_TEST_CASE(AlertApplies) { SetMockTime(11); - BOOST_FOREACH(const CAlert& alert, alerts) + BOOST_FOREACH(const PAIRTYPE(CBaseChainParams::Network, std::vector) &net, allAlerts) { - BOOST_CHECK(alert.CheckSignature()); - } + SelectParams(net.first); + const std::vector &alerts = net.second; + + BOOST_FOREACH(const CAlert& alert, alerts) + { + BOOST_CHECK(alert.CheckSignature()); + } - BOOST_CHECK(alerts.size() >= 3); + BOOST_CHECK(alerts.size() >= 3); - // Matches: - BOOST_CHECK(alerts[0].AppliesTo(1, "")); - BOOST_CHECK(alerts[0].AppliesTo(999001, "")); - BOOST_CHECK(alerts[0].AppliesTo(1, "/Satoshi:11.11.11/")); + // Matches: + BOOST_CHECK(alerts[0].AppliesTo(1, "")); + BOOST_CHECK(alerts[0].AppliesTo(999001, "")); + BOOST_CHECK(alerts[0].AppliesTo(1, "/Satoshi:11.11.11/")); - BOOST_CHECK(alerts[1].AppliesTo(1, "/Satoshi:0.1.0/")); - BOOST_CHECK(alerts[1].AppliesTo(999001, "/Satoshi:0.1.0/")); + BOOST_CHECK(alerts[1].AppliesTo(1, "/Satoshi:0.1.0/")); + BOOST_CHECK(alerts[1].AppliesTo(999001, "/Satoshi:0.1.0/")); - BOOST_CHECK(alerts[2].AppliesTo(1, "/Satoshi:0.1.0/")); - BOOST_CHECK(alerts[2].AppliesTo(1, "/Satoshi:0.2.0/")); + BOOST_CHECK(alerts[2].AppliesTo(1, "/Satoshi:0.1.0/")); + BOOST_CHECK(alerts[2].AppliesTo(1, "/Satoshi:0.2.0/")); - // Don't match: - BOOST_CHECK(!alerts[0].AppliesTo(-1, "")); - BOOST_CHECK(!alerts[0].AppliesTo(999002, "")); + // Don't match: + BOOST_CHECK(!alerts[0].AppliesTo(-1, "")); + BOOST_CHECK(!alerts[0].AppliesTo(999002, "")); - BOOST_CHECK(!alerts[1].AppliesTo(1, "")); - BOOST_CHECK(!alerts[1].AppliesTo(1, "Satoshi:0.1.0")); - BOOST_CHECK(!alerts[1].AppliesTo(1, "/Satoshi:0.1.0")); - BOOST_CHECK(!alerts[1].AppliesTo(1, "Satoshi:0.1.0/")); - BOOST_CHECK(!alerts[1].AppliesTo(-1, "/Satoshi:0.1.0/")); - BOOST_CHECK(!alerts[1].AppliesTo(999002, "/Satoshi:0.1.0/")); - BOOST_CHECK(!alerts[1].AppliesTo(1, "/Satoshi:0.2.0/")); + BOOST_CHECK(!alerts[1].AppliesTo(1, "")); + BOOST_CHECK(!alerts[1].AppliesTo(1, "Satoshi:0.1.0")); + BOOST_CHECK(!alerts[1].AppliesTo(1, "/Satoshi:0.1.0")); + BOOST_CHECK(!alerts[1].AppliesTo(1, "Satoshi:0.1.0/")); + BOOST_CHECK(!alerts[1].AppliesTo(-1, "/Satoshi:0.1.0/")); + BOOST_CHECK(!alerts[1].AppliesTo(999002, "/Satoshi:0.1.0/")); + BOOST_CHECK(!alerts[1].AppliesTo(1, "/Satoshi:0.2.0/")); - BOOST_CHECK(!alerts[2].AppliesTo(1, "/Satoshi:0.3.0/")); + BOOST_CHECK(!alerts[2].AppliesTo(1, "/Satoshi:0.3.0/")); + } SetMockTime(0); + SelectParams(CBaseChainParams::MAIN); } @@ -158,9 +157,10 @@ BOOST_AUTO_TEST_CASE(AlertNotify) { SetMockTime(11); - boost::filesystem::path temp = GetTempPath() / "alertnotify.txt"; - boost::filesystem::remove(temp); + const std::vector &alerts = allAlerts.find(CBaseChainParams::MAIN)->second; + boost::filesystem::path temp = GetTempPath() / + boost::filesystem::unique_path("alertnotify-%%%%.txt"); mapArgs["-alertnotify"] = std::string("echo %s >> ") + temp.string(); BOOST_FOREACH(CAlert alert, alerts) diff --git a/src/test/bloom_tests.cpp b/src/test/bloom_tests.cpp index 2de226fdd6535..7c0024df3a098 100644 --- a/src/test/bloom_tests.cpp +++ b/src/test/bloom_tests.cpp @@ -85,7 +85,7 @@ BOOST_AUTO_TEST_CASE(bloom_create_insert_serialize_with_tweak) BOOST_AUTO_TEST_CASE(bloom_create_insert_key) { - string strSecret = string("5Kg1gnAjaLfKiwhhPpGS3QfRg2m6awQvaj98JCZBZQ5SuS2F15C"); + string strSecret = string("6vyk9uiGUm8CCKbYue4PpoSbdWKZnjrxMQYJ1PaDGrQ4bLHTxQJ"); CBitcoinSecret vchSecret; BOOST_CHECK(vchSecret.SetString(strSecret)); diff --git a/src/test/data/README.md b/src/test/data/README.md index f69a021ca0a6b..2463daa42a53b 100644 --- a/src/test/data/README.md +++ b/src/test/data/README.md @@ -6,9 +6,7 @@ This directory contains data-driven tests for various aspects of Bitcoin. License -------- -The data files in this directory are - - Copyright (c) 2012-2014 The Bitcoin Core developers - Distributed under the MIT/X11 software license, see the accompanying - file COPYING or http://www.opensource.org/licenses/mit-license.php. +The data files in this directory are distributed under the MIT software +license, see the accompanying file COPYING or +http://www.opensource.org/licenses/mit-license.php. diff --git a/src/test/data/base58_keys_valid.json b/src/test/data/base58_keys_valid.json index e1e252e22d1dc..55136f590d099 100644 --- a/src/test/data/base58_keys_valid.json +++ b/src/test/data/base58_keys_valid.json @@ -1,6 +1,6 @@ [ [ - "1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62i", + "LUVKqDPPVBQcjUwt1S21Pa5ybgPaDEZhXR", "65a16059864a2fdbc7c99a4723a8395bc6f188eb", { "addrType": "pubkey", @@ -36,7 +36,7 @@ } ], [ - "5Kd3NBUAdUnhyzenEwVLy9pBKxSwXvE9FMPyR4UKZvpe6E3AgLr", + "6vvmqK1hXuFaTNYdkmHJkYbMHS1QjigB22o98FVMHP9Fn5hp3eV", "eddbdc1168f1daeadbd3e44c1e3f8f5a284c2029f78ad26af98583a499de5b19", { "isCompressed": false, @@ -45,7 +45,7 @@ } ], [ - "Kz6UJmQACJmLtaQj5A3JAge4kVTNQ8gbvXuwbmCj7bsaabudb3RD", + "T5vjkWhLbgjwfR3bcnzAP3BShM6gUDhVjjpCTZqGga3k6VVqHkzu", "55c9bccb9ed68446d1b75273bbce89d7fe013a8acd1625514420fb2aca1a21c4", { "isCompressed": true, @@ -72,7 +72,7 @@ } ], [ - "1Ax4gZtb7gAit2TivwejZHYtNNLT18PUXJ", + "LVB1wnCRCLQn8q9t75e2qJceaahjDYoQgA", "6d23156cbbdcc82a5a47eee4c2c7c583c18b6bf4", { "addrType": "pubkey", @@ -108,7 +108,7 @@ } ], [ - "5K494XZwps2bGyeL71pWid4noiSNA2cfCibrvRWqcHSptoFn7rc", + "6vMsXf7UjHVTkMYBcqcUW1qxmBzqMq4gyQ12dcXsKjmSafByBxi", "a326b95ebae30164217d7a7f57d72ab2b54e3be64928a19da0210b9568d4015e", { "isCompressed": false, @@ -117,7 +117,7 @@ } ], [ - "L1RrrnXkcKut5DEMwtDthjwRcTTwED36thyL1DebVrKuwvohjMNi", + "T7G8JXpw1htUr3sEVXAkv6UoZK7FJJ3zhusas2H94pW5TpKfjUFp", "7d998b45c219a1e38e99e7cbd312ef67f77a455a9b50c730c27f02c6f730dfb4", { "isCompressed": true, @@ -144,7 +144,7 @@ } ], [ - "1C5bSj1iEGUgSTbziymG7Cn18ENQuT36vv", + "LWJYhwKYJvijhGJ9u7kZPDqmLSjh6pDPPF", "7987ccaa53d02c8873487ef919677cd3db7a6912", { "addrType": "pubkey", @@ -180,7 +180,7 @@ } ], [ - "5KaBW9vNtWNhc3ZEDyNCiXLPdVPHCikRxSBWwV9NrpLLa4LsXi9", + "6vsuyHTunvqa5RT5joAAVv7ZaxwkQXCTj7agegAQaGexFzjg9sc", "e75d936d56377f432f404aabb406601f892fd49da90eb6ac558a733c93b47252", { "isCompressed": false, @@ -189,7 +189,7 @@ } ], [ - "L1axzbSyynNYA8mCAhzxkipKkfHtAXYF4YQnhSKcLV8YXA874fgT", + "T7RESLkAPAM8vyQ4iLwpy5MhhWwCEcZ8skK3ZEx9uTJi33fbEEMP", "8248bd0375f2f75d7e274ae544fb920f51784480866b102384190b1addfbaa5c", { "isCompressed": true, @@ -216,7 +216,7 @@ } ], [ - "1Gqk4Tv79P91Cc1STQtU3s1W6277M2CVWu", + "Lb4hKgDwE3P4TQhbdYsmKt5GJEUPSMEzdW", "adc1cc2081a27206fae25792f28bbc55b831549d", { "addrType": "pubkey", @@ -252,7 +252,7 @@ } ], [ - "5HtH6GdcwCJA4ggWEL1B3jzBBUB8HPiBi9SBc5h9i4Wk4PSeApR", + "6uC1ZQB9qcm2Y4aMk9o8q8mM8wjbVCADUpqMKGiBRWqMkEURt21", "091035445ef105fa1bb125eccfb1882f3fe69592265956ade751fd095033d8d0", { "isCompressed": false, @@ -261,7 +261,7 @@ } ], [ - "L2xSYmMeVo3Zek3ZTsv9xUrXVAmrWxJ8Ua4cw8pkfbQhcEFhkXT8", + "T8nhzWepuB2ARagS1Ws2AqPuS2RAb3K2HmxsnwTJEZas87ryRK3Y", "ab2b4bcdfc91d34dee0ae2a8c6b6668dadaeb3a88b9859743156f462325187af", { "isCompressed": true, @@ -288,7 +288,7 @@ } ], [ - "1JwMWBVLtiqtscbaRHai4pqHokhFCbtoB4", + "LdAJmPoAyP5x8RHjbRa1Lqu41y4XKpQJUf", "c4c1b72491ede1eedaca00618407ee0b772cad0d", { "addrType": "pubkey", @@ -324,7 +324,7 @@ } ], [ - "5KQmDryMNDcisTzRp3zEq9e4awRmJrEVU1j5vFRTKpRNYPqYrMg", + "6viVgzWtGe5bLqtHKsnCcYREYQzEWegXEh8FdSSV3GjzEFcftkY", "d1fab7ab7385ad26872237f1eb9789aa25cc986bacc695e07ac571d6cdac8bc0", { "isCompressed": false, @@ -333,7 +333,7 @@ } ], [ - "L39Fy7AC2Hhj95gh3Yb2AU5YHh1mQSAHgpNixvm27poizcJyLtUi", + "T8yXQrTNRfgKuvKZbBXtNpcvEYf5UXBBW2GypjPZgnytWVrg41tx", "b0bbede33ef254e8376aceb1510253fc3550efd0fcf84dcd0c9998b288f166b3", { "isCompressed": true, @@ -360,7 +360,7 @@ } ], [ - "19dcawoKcZdQz365WpXWMhX6QCUpR9SY4r", + "LTrZrA79hDsUEqnEgxWodiarcQr6YmPt9o", "5eadaf9bb7121f0f192561a5a62f5e5f54210292", { "addrType": "pubkey", @@ -396,7 +396,7 @@ } ], [ - "5KL6zEaMtPRXZKo1bbMq7JDjjo1bJuQcsgL33je3oY8uSJCR5b4", + "6vdqTN7tnotQ2hgs7R9ntgzuhGa4WhreeMjCkvf5WzTX8AEMj5v", "c7666842503db6dc6ea061f092cfb9c388448629a6fe868d068c42a488b478ae", { "isCompressed": false, @@ -405,7 +405,7 @@ } ], [ - "KwV9KAfwbwt51veZWNscRTeZs9CKpojyu1MsPnaKTF5kz69H1UN2", + "T3KQkuy81KrfnmHS41pUdpBwozqdttksiDG8FbCs2DFvVykdodkZ", "07f0803fc5399e773555ab1e8939907e9badacc17ca129e67a2f5f2ff84351dd", { "isCompressed": true, @@ -432,7 +432,7 @@ } ], [ - "13p1ijLwsnrcuyqcTvJXkq2ASdXqcnEBLE", + "LN2xywemxT6gAnXme4Hq2r5vequ7o8Dxu7", "1ed467017f043e91ed4c44b4e8dd674db211c4e6", { "addrType": "pubkey", diff --git a/src/test/data/bitcoin-util-test.json b/src/test/data/bitcoin-util-test.json index f8424b72a34c0..a279e1b504fcf 100644 --- a/src/test/data/bitcoin-util-test.json +++ b/src/test/data/bitcoin-util-test.json @@ -1,50 +1,60 @@ [ - { "exec": "././bitcoin-tx", + { "exec": "././hypercoin-tx", "args": ["-create"], "output_cmp": "blanktx.hex" }, - { "exec": "./bitcoin-tx", + { "exec": "./hypercoin-tx", "args": ["-"], "input": "blanktx.hex", "output_cmp": "blanktx.hex" }, - { "exec": "./bitcoin-tx", + { "exec": "./hypercoin-tx", "args": ["-", "delin=1"], "input": "tx394b54bb.hex", "output_cmp": "tt-delin1-out.hex" }, - { "exec": "./bitcoin-tx", + { "exec": "./hypercoin-tx", "args": ["-", "delin=31"], "input": "tx394b54bb.hex", "return_code": 1 }, - { "exec": "./bitcoin-tx", + { "exec": "./hypercoin-tx", "args": ["-", "delout=1"], "input": "tx394b54bb.hex", "output_cmp": "tt-delout1-out.hex" }, - { "exec": "./bitcoin-tx", + { "exec": "./hypercoin-tx", "args": ["-", "delout=2"], "input": "tx394b54bb.hex", "return_code": 1 }, - { "exec": "./bitcoin-tx", + { "exec": "./hypercoin-tx", "args": ["-", "locktime=317000"], "input": "tx394b54bb.hex", "output_cmp": "tt-locktime317000-out.hex" }, - { "exec": "./bitcoin-tx", + { "exec": "./hypercoin-tx", "args": ["-create", - "in=5897de6bd6027a475eadd57019d4e6872c396d0716c4875a5f1a6fcfdf385c1f:0", - "in=bf829c6bcf84579331337659d31f89dfd138f7f7785802d5501c92333145ca7c:18", - "in=22a6f904655d53ae2ff70e701a0bbd90aa3975c0f40bfc6cc996a9049e31cdfc:1", - "outaddr=0.18:13tuJJDR2RgArmgfv6JScSdreahzgc4T6o", - "outaddr=4:1P8yWvZW8jVihP1bzHeqfE4aoXNX8AVa46"], + "in=5ee62e3f7757f5fd995b2fa1bdb5b744298146098d5de92959ec4b52dc77191e:1", + "in=3cd215c1c6b7ae33bc6266f268fd212b83860e13902b454502ce6d54448e398a:25", + "in=0f941395005b80a61726baecebb11d7caa184a1a58246daff7dffca793ab07b8:12", + "outaddr=12.52000000:LMgENNXzzuPxp7vfMjDrCU44bsmrEMgqvc", + "outaddr=0.01000487:LV1ByjbJNFTHyFQqwqwdJXKJznYDzXzg4B"], "output_cmp": "txcreate1.hex" }, - { "exec": "./bitcoin-tx", + { "exec": "./hypercoin-tx", "args": ["-create", "outscript=0:"], "output_cmp": "txcreate2.hex" + }, + { "exec": "./hypercoin-tx", + "args": + ["-create", + "in=6c2789243608b46f750f49ff24f6f79a78c3010f7e56951e045e5b7ea5d07bf7:0", + "set=privatekeys:[\"T3NKWWwSf4FUDdNERKpJ8umW2BRqPUezEpduHWJbFUtpXpMKC68M\"]", + "set=prevtxs:[{\"txid\":\"6c2789243608b46f750f49ff24f6f79a78c3010f7e56951e045e5b7ea5d07bf7\",\"vout\":0,\"scriptPubKey\":\"6c2789243608b46f750f49ff24f6f79a78c3010f7e56951e045e5b7ea5d07bf7\"}]", + "sign=ALL", + "outaddr=0.001:LQLz2YnNyhpFYbsVNFKZh1bNggmqz3EsAc"], + "output_cmp": "txcreatesign.hex" } ] diff --git a/src/test/data/script_invalid.json b/src/test/data/script_invalid.json index 86d39b5c2086d..bbb529147ec3f 100644 --- a/src/test/data/script_invalid.json +++ b/src/test/data/script_invalid.json @@ -504,12 +504,22 @@ "2-of-2 CHECKMULTISIG NOT with the first pubkey invalid, and both signatures validly encoded." ], [ - "0 0x47 0x3044022044dc17b0887c161bb67ba9635bf758735bdde503e4b0a0987f587f14a4e1143d022009a215772d49a85dae40d8ca03955af26ad3978a0ff965faa12915e9586249a501 0", + "0 0x47 0x3044022044dc17b0887c161bb67ba9635bf758735bdde503e4b0a0987f587f14a4e1143d022009a215772d49a85dae40d8ca03955af26ad3978a0ff965faa12915e9586249a501 1", "2 0x21 0x02865c40293a680cb9c020e7b1e106d8c1916d3cef99aa431a56d253e69256dac0 0x21 0x02865c40293a680cb9c020e7b1e106d8c1916d3cef99aa431a56d253e69256dac0 2 CHECKMULTISIG NOT", "STRICTENC", "2-of-2 CHECKMULTISIG NOT with both pubkeys valid, but first signature invalid." ], +["Increase DERSIG test coverage"], +["0x4a 0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "0 CHECKSIG NOT", "DERSIG", "Overly long signature is incorrectly encoded for DERSIG"], +["0x25 0x30220220000000000000000000000000000000000000000000000000000000000000000000", "0 CHECKSIG NOT", "DERSIG", "Missing S is incorrectly encoded for DERSIG"], +["0x27 0x3024021077777777777777777777777777777777020a7777777777777777777777777777777701", "0 CHECKSIG NOT", "DERSIG", "S with invalid S length is incorrectly encoded for DERSIG"], +["0x27 0x302403107777777777777777777777777777777702107777777777777777777777777777777701", "0 CHECKSIG NOT", "DERSIG", "Non-integer R is incorrectly encoded for DERSIG"], +["0x27 0x302402107777777777777777777777777777777703107777777777777777777777777777777701", "0 CHECKSIG NOT", "DERSIG", "Non-integer S is incorrectly encoded for DERSIG"], +["0x17 0x3014020002107777777777777777777777777777777701", "0 CHECKSIG NOT", "DERSIG", "Zero-length R is incorrectly encoded for DERSIG"], +["0x17 0x3014021077777777777777777777777777777777020001", "0 CHECKSIG NOT", "DERSIG", "Zero-length S is incorrectly encoded for DERSIG"], +["0x27 0x302402107777777777777777777777777777777702108777777777777777777777777777777701", "0 CHECKSIG NOT", "DERSIG", "Negative S is incorrectly encoded for DERSIG"], + ["Automatically generated test cases"], [ "0x47 0x3044022053205076a7bb12d2db3162a2d97d8197631f829b065948b7019b15482af819a902204328dcc02c994ca086b1226d0d5f1674d23cfae0d846143df812b81cab3391e801", @@ -589,6 +599,102 @@ "DERSIG", "P2PK NOT with too much R padding" ], +[ + "0x47 0x30440220d7a0417c3f6d1a15094d1cf2a3378ca0503eb8a57630953a9e2987e21ddd0a6502207a6266d686c99090920249991d3d42065b6d43eb70187b219c0db82e4f94d1a201", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG", + "DERSIG", + "BIP66 example 1, with DERSIG" +], +[ + "0x47 0x304402208e43c0b91f7c1e5bc58e41c8185f8a6086e111b0090187968a86f2822462d3c902200a58f4076b1133b18ff1dc83ee51676e44c60cc608d9534e0df5ace0424fc0be01", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG NOT", + "", + "BIP66 example 2, without DERSIG" +], +[ + "0x47 0x304402208e43c0b91f7c1e5bc58e41c8185f8a6086e111b0090187968a86f2822462d3c902200a58f4076b1133b18ff1dc83ee51676e44c60cc608d9534e0df5ace0424fc0be01", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG NOT", + "DERSIG", + "BIP66 example 2, with DERSIG" +], +[ + "0", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG", + "", + "BIP66 example 3, without DERSIG" +], +[ + "0", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG", + "DERSIG", + "BIP66 example 3, with DERSIG" +], +[ + "1", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG", + "", + "BIP66 example 5, without DERSIG" +], +[ + "1", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG", + "DERSIG", + "BIP66 example 5, with DERSIG" +], +[ + "1", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG NOT", + "DERSIG", + "BIP66 example 6, with DERSIG" +], +[ + "0 0x47 0x30440220cae00b1444babfbf6071b0ba8707f6bd373da3df494d6e74119b0430c5db810502205d5231b8c5939c8ff0c82242656d6e06edb073d42af336c99fe8837c36ea39d501 0x47 0x304402200b3d0b0375bb15c14620afa4aa10ae90a0d6a046ce217bc20fe0bc1ced68c1b802204b550acab90ae6d3478057c9ad24f9df743815b799b6449dd7e7f6d3bc6e274c01", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG", + "DERSIG", + "BIP66 example 7, with DERSIG" +], +[ + "0 0x47 0x30440220f00a77260d34ec2f0c59621dc710f58169d0ca06df1a88cd4b1f1b97bd46991b02201ee220c7e04f26aed03f94aa97fb09ca5627163bf4ba07e6979972ec737db22601 0x47 0x3044022079ea80afd538d9ada421b5101febeb6bc874e01dde5bca108c1d0479aec339a4022004576db8f66130d1df686ccf00935703689d69cf539438da1edab208b0d63c4801", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG NOT", + "", + "BIP66 example 8, without DERSIG" +], +[ + "0 0x47 0x30440220f00a77260d34ec2f0c59621dc710f58169d0ca06df1a88cd4b1f1b97bd46991b02201ee220c7e04f26aed03f94aa97fb09ca5627163bf4ba07e6979972ec737db22601 0x47 0x3044022079ea80afd538d9ada421b5101febeb6bc874e01dde5bca108c1d0479aec339a4022004576db8f66130d1df686ccf00935703689d69cf539438da1edab208b0d63c4801", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG NOT", + "DERSIG", + "BIP66 example 8, with DERSIG" +], +[ + "0 0 0x47 0x3044022081aa9d436f2154e8b6d600516db03d78de71df685b585a9807ead4210bd883490220534bb6bdf318a419ac0749660b60e78d17d515558ef369bf872eff405b676b2e01", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG", + "", + "BIP66 example 9, without DERSIG" +], +[ + "0 0 0x47 0x3044022081aa9d436f2154e8b6d600516db03d78de71df685b585a9807ead4210bd883490220534bb6bdf318a419ac0749660b60e78d17d515558ef369bf872eff405b676b2e01", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG", + "DERSIG", + "BIP66 example 9, with DERSIG" +], +[ + "0 0 0x47 0x30440220afa76a8f60622f813b05711f051c6c3407e32d1b1b70b0576c1f01b54e4c05c702200d58e9df044fd1845cabfbeef6e624ba0401daf7d7e084736f9ff601c3783bf501", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG NOT", + "DERSIG", + "BIP66 example 10, with DERSIG" +], +[ + "0 0x47 0x30440220cae00b1444babfbf6071b0ba8707f6bd373da3df494d6e74119b0430c5db810502205d5231b8c5939c8ff0c82242656d6e06edb073d42af336c99fe8837c36ea39d501 0", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG", + "", + "BIP66 example 11, without DERSIG" +], +[ + "0 0x47 0x30440220cae00b1444babfbf6071b0ba8707f6bd373da3df494d6e74119b0430c5db810502205d5231b8c5939c8ff0c82242656d6e06edb073d42af336c99fe8837c36ea39d501 0", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG", + "DERSIG", + "BIP66 example 11, with DERSIG" +], [ "0x49 0x304502203e4516da7253cf068effec6b95c41221c0cf3a8e6ccb8cbf1725b562e9afde2c022100ab1e3da73d67e32045a20e0b999e049978ea8d6ee5480d485fcf2ce0d03b2ef05101", "0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 CHECKSIG", @@ -667,6 +773,18 @@ "SIGPUSHONLY", "P2SH(P2PK) with non-push scriptSig" ], +[ + "11 0x47 0x3044022057c4ba463d3b8e6848b3896be14c6953caf0528cd390ad15104a109c94b558ba02206fa3922154e1d0bfca92ce5f9adbe4991be33f3f5b7f6bf501e895b7e37fd72f01", + "0x41 0x0479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8 CHECKSIG", + "CLEANSTACK,P2SH", + "P2PK with unnecessary input" +], +[ + "11 0x47 0x304402203407c26745ea95ee31fbb5074e730ff9be235d5a8d8e0a2c868358bf6a04797402205cc0e594dfd275583472168298d448be59c2530a4ea4d7c37311b82108f9f8bc01 0x43 0x410479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8ac", + "HASH160 0x14 0x31edc23bdafda4639e669f89ad6b2318dd79d032 EQUAL", + "CLEANSTACK,P2SH", + "P2SH with unnecessary input" +], ["The End"] ] diff --git a/src/test/data/script_valid.json b/src/test/data/script_valid.json index d3075de646aad..d1db172599c7d 100644 --- a/src/test/data/script_valid.json +++ b/src/test/data/script_valid.json @@ -662,6 +662,11 @@ ["0 0 0x02 0x0000", "CHECKMULTISIGVERIFY 1", ""], ["0 0x02 0x0000 0", "CHECKMULTISIGVERIFY 1", ""], +["While not really correctly DER encoded, the empty signature is allowed by"], +["STRICTENC to provide a compact way to provide a delibrately invalid signature."], +["0", "0x21 0x02865c40293a680cb9c020e7b1e106d8c1916d3cef99aa431a56d253e69256dac0 CHECKSIG NOT", "STRICTENC"], +["0 0", "1 0x21 0x02865c40293a680cb9c020e7b1e106d8c1916d3cef99aa431a56d253e69256dac0 1 CHECKMULTISIG NOT", "STRICTENC"], + ["CHECKMULTISIG evaluation order tests. CHECKMULTISIG evaluates signatures and"], ["pubkeys in a specific order, and will exit early if the number of signatures"], ["left to check is greater than the number of keys left. As STRICTENC fails the"], @@ -683,6 +688,16 @@ "2-of-2 CHECKMULTISIG NOT with both pubkeys valid, but second signature invalid. Valid pubkey fails, and CHECKMULTISIG exits early, prior to evaluation of second invalid signature." ], +["Increase test coverage for DERSIG"], +["0x4a 0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "0 CHECKSIG NOT", "", "Overly long signature is correctly encoded"], +["0x25 0x30220220000000000000000000000000000000000000000000000000000000000000000000", "0 CHECKSIG NOT", "", "Missing S is correctly encoded"], +["0x27 0x3024021077777777777777777777777777777777020a7777777777777777777777777777777701", "0 CHECKSIG NOT", "", "S with invalid S length is correctly encoded"], +["0x27 0x302403107777777777777777777777777777777702107777777777777777777777777777777701", "0 CHECKSIG NOT", "", "Non-integer R is correctly encoded"], +["0x27 0x302402107777777777777777777777777777777703107777777777777777777777777777777701", "0 CHECKSIG NOT", "", "Non-integer S is correctly encoded"], +["0x17 0x3014020002107777777777777777777777777777777701", "0 CHECKSIG NOT", "", "Zero-length R is correctly encoded"], +["0x17 0x3014021077777777777777777777777777777777020001", "0 CHECKSIG NOT", "", "Zero-length S is correctly encoded for DERSIG"], +["0x27 0x302402107777777777777777777777777777777702108777777777777777777777777777777701", "0 CHECKSIG NOT", "", "Negative S is correctly encoded"], + ["Automatically generated test cases"], [ "0x47 0x3044022053205076a7bb13d2db3162a2d97d8197631f829b065948b7019b15482af819a902204328dcc02c994ca086b1226d0d5f1674d23cfae0d846143df812b81cab3391e801", @@ -750,6 +765,54 @@ "", "P2PK NOT with bad sig with too much R padding but no DERSIG" ], +[ + "0x47 0x30440220d7a0417c3f6d1a15094d1cf2a3378ca0503eb8a57630953a9e2987e21ddd0a6502207a6266d686c99090920249991d3d42065b6d43eb70187b219c0db82e4f94d1a201", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG", + "", + "BIP66 example 1, without DERSIG" +], +[ + "0", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG NOT", + "", + "BIP66 example 4, without DERSIG" +], +[ + "0", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG NOT", + "DERSIG", + "BIP66 example 4, with DERSIG" +], +[ + "1", + "0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 CHECKSIG NOT", + "", + "BIP66 example 6, without DERSIG" +], +[ + "0 0x47 0x30440220cae00b1444babfbf6071b0ba8707f6bd373da3df494d6e74119b0430c5db810502205d5231b8c5939c8ff0c82242656d6e06edb073d42af336c99fe8837c36ea39d501 0x47 0x304402200b3d0b0375bb15c14620afa4aa10ae90a0d6a046ce217bc20fe0bc1ced68c1b802204b550acab90ae6d3478057c9ad24f9df743815b799b6449dd7e7f6d3bc6e274c01", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG", + "", + "BIP66 example 7, without DERSIG" +], +[ + "0 0 0x47 0x30440220afa76a8f60622f813b05711f051c6c3407e32d1b1b70b0576c1f01b54e4c05c702200d58e9df044fd1845cabfbeef6e624ba0401daf7d7e084736f9ff601c3783bf501", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG NOT", + "", + "BIP66 example 10, without DERSIG" +], +[ + "0 0x47 0x30440220f00a77260d34ec2f0c59621dc710f58169d0ca06df1a88cd4b1f1b97bd46991b02201ee220c7e04f26aed03f94aa97fb09ca5627163bf4ba07e6979972ec737db22601 0", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG NOT", + "", + "BIP66 example 12, without DERSIG" +], +[ + "0 0x47 0x30440220f00a77260d34ec2f0c59621dc710f58169d0ca06df1a88cd4b1f1b97bd46991b02201ee220c7e04f26aed03f94aa97fb09ca5627163bf4ba07e6979972ec737db22601 0", + "2 0x21 0x038282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508 0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 2 CHECKMULTISIG NOT", + "DERSIG", + "BIP66 example 12, with DERSIG" +], [ "0x49 0x304502203e4516da7253cf068effec6b95c41221c0cf3a8e6ccb8cbf1725b562e9afde2c022100ab1e3da73d67e32045a20e0b999e049978ea8d6ee5480d485fcf2ce0d03b2ef05101", "0x21 0x03363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640 CHECKSIG", @@ -816,6 +879,24 @@ "SIGPUSHONLY", "2-of-2 with two identical keys and sigs pushed" ], +[ + "11 0x47 0x304402204ba8b04dfe8657608427b996bd7c151ff8cd8579b3316c7314549a6c59f6bfb7022058cf052927fbc5e51e26dd4711c470bbf7f3adc8aaaf7bfa304eff6bb6e6399e01", + "0x41 0x0479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8 CHECKSIG", + "P2SH", + "P2PK with unnecessary input but no CLEANSTACK" +], +[ + "11 0x47 0x304402202beaa2f6a4ec783091643797f9819b5ae39a03dfcf3b934746e96dd6b2ad5f7202200650a618fb2ce08b4edd160351172e016a041c81622d806390420d15cc6cece401 0x43 0x410479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8ac", + "HASH160 0x14 0x31edc23bdafda4639e669f89ad6b2318dd79d032 EQUAL", + "P2SH", + "P2SH with unnecessary input but no CLEANSTACK" +], +[ + "0x47 0x3044022048505fd42afde400932558ea7fa76a52c2fff3130fa820a6a05647f64d5d780e022056a6bc823c95cedf68f6f67ad036533b48b9f3f706355a71f9f6e647e889f79201 0x43 0x410479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8ac", + "HASH160 0x14 0x31edc23bdafda4639e669f89ad6b2318dd79d032 EQUAL", + "CLEANSTACK,P2SH", + "P2SH with CLEANSTACK" +], ["The End"] ] diff --git a/src/test/data/tx_invalid.json b/src/test/data/tx_invalid.json index 638a705f9f3c9..a197e301cb4ce 100644 --- a/src/test/data/tx_invalid.json +++ b/src/test/data/tx_invalid.json @@ -103,5 +103,79 @@ [[["ad503f72c18df5801ee64d76090afe4c607fb2b822e9b7b63c5826c50e22fc3b", 0, "0x21 0x027c3a97665bf283a102a587a62a30a0c102d4d3b141015e2cae6f64e2543113e5 CHECKSIG NOT"]], "01000000013bfc220ec526583cb6b7e922b8b27f604cfe0a09764de61e80f58dc1723f50ad0000000000ffffffff0101000000000000002321027c3a97665bf283a102a587a62a30a0c102d4d3b141015e2cae6f64e2543113e5ac00000000", "P2SH"], + +["CHECKLOCKTIMEVERIFY tests"], + +["By-height locks, with argument just beyond tx nLockTime"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "1 NOP2 1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "499999999 NOP2 1"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000fe64cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], + +["By-time locks, with argument just beyond tx nLockTime (but within numerical boundries)"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "500000001 NOP2 1"]], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000065cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "4294967295 NOP2 1"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000feffffff", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Argument missing"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "NOP2 1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000001b1010000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Argument negative with by-blockheight nLockTime=0"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "-1 NOP2 1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Argument negative with by-blocktime nLockTime=500,000,000"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "-1 NOP2 1"]], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000065cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000004005194b1010000000100000000000000000002000000", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Input locked"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0 NOP2 1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000000ffffffff0100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0"]], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000000251b1ffffffff0100000000000000000002000000", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Another input being unlocked isn't sufficient; the CHECKLOCKTIMEVERIFY-using input must be unlocked"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0 NOP2 1"] , + ["0000000000000000000000000000000000000000000000000000000000000200", 1, "1"]], +"010000000200010000000000000000000000000000000000000000000000000000000000000000000000ffffffff00020000000000000000000000000000000000000000000000000000000000000100000000000000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Argument/tx height/time mismatch, both versions"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0 NOP2 1"]], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000065cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0"]], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000000251b100000000010000000000000000000065cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "499999999 NOP2 1"]], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000065cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "500000000 NOP2 1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "500000000 NOP2 1"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000ff64cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Argument 2^32 with nLockTime=2^32-1"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "4294967296 NOP2 1"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000ffffffff", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Same, but with nLockTime=2^31-1"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "2147483648 NOP2 1"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000ffffff7f", "P2SH,CHECKLOCKTIMEVERIFY"], + +["6 byte non-minimally-encoded arguments are invalid even in their contents are valid"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0x06 0x000000000000 NOP2 1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Failure due to failing CHECKLOCKTIMEVERIFY in scriptSig"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "1"]], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000000251b1000000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Failure due to failing CHECKLOCKTIMEVERIFY in redeemScript"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0xc5b93064159b3b2d6ab506a41b1f50463771b988 EQUAL"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000030251b1000000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], + ["Make diffs cleaner by leaving a comment here without comma at the end"] ] diff --git a/src/test/data/tx_valid.json b/src/test/data/tx_valid.json index aa8e5ca6c35a7..ecbce93601b35 100644 --- a/src/test/data/tx_valid.json +++ b/src/test/data/tx_valid.json @@ -178,5 +178,47 @@ "0100000002dbb33bdf185b17f758af243c5d3c6e164cc873f6bb9f40c0677d6e0f8ee5afce000000006b4830450221009627444320dc5ef8d7f68f35010b4c050a6ed0d96b67a84db99fda9c9de58b1e02203e4b4aaa019e012e65d69b487fdf8719df72f488fa91506a80c49a33929f1fd50121022b78b756e2258af13779c1a1f37ea6800259716ca4b7f0b87610e0bf3ab52a01ffffffffdbb33bdf185b17f758af243c5d3c6e164cc873f6bb9f40c0677d6e0f8ee5afce010000009300483045022015bd0139bcccf990a6af6ec5c1c52ed8222e03a0d51c334df139968525d2fcd20221009f9efe325476eb64c3958e4713e9eefe49bf1d820ed58d2112721b134e2a1a5303483045022015bd0139bcccf990a6af6ec5c1c52ed8222e03a0d51c334df139968525d2fcd20221009f9efe325476eb64c3958e4713e9eefe49bf1d820ed58d2112721b134e2a1a5303ffffffff01a0860100000000001976a9149bc0bbdd3024da4d0c38ed1aecf5c68dd1d3fa1288ac00000000", "P2SH"], +["CHECKLOCKTIMEVERIFY tests"], + +["By-height locks, with argument == 0 and == tx nLockTime"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0 NOP2 1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "499999999 NOP2 1"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000ff64cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0 NOP2 1"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000ff64cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], + +["By-time locks, with argument just beyond tx nLockTime (but within numerical boundries)"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "500000000 NOP2 1"]], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000065cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "4294967295 NOP2 1"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000ffffffff", "P2SH,CHECKLOCKTIMEVERIFY"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "500000000 NOP2 1"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000ffffffff", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Any non-maxint nSequence is fine"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0 NOP2 1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000000feffffff0100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], + +["The argument can be calculated rather than created directly by a PUSHDATA"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "499999999 1ADD NOP2 1"]], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000065cd1d", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Perhaps even by an ADD producing a 5-byte result that is out of bounds for other opcodes"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "2147483647 2147483647 ADD NOP2 1"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000feffffff", "P2SH,CHECKLOCKTIMEVERIFY"], + +["5 byte non-minimally-encoded arguments are valid"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "0x05 0x0000000000 NOP2 1"]], +"010000000100010000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Valid CHECKLOCKTIMEVERIFY in scriptSig"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "1"]], +"01000000010001000000000000000000000000000000000000000000000000000000000000000000000251b1000000000100000000000000000001000000", "P2SH,CHECKLOCKTIMEVERIFY"], + +["Valid CHECKLOCKTIMEVERIFY in redeemScript"], +[[["0000000000000000000000000000000000000000000000000000000000000100", 0, "HASH160 0x14 0xc5b93064159b3b2d6ab506a41b1f50463771b988 EQUAL"]], +"0100000001000100000000000000000000000000000000000000000000000000000000000000000000030251b1000000000100000000000000000001000000", "P2SH,CHECKLOCKTIMEVERIFY"], + ["Make diffs cleaner by leaving a comment here without comma at the end"] ] diff --git a/src/test/data/txcreate1.hex b/src/test/data/txcreate1.hex index e2981a51c987d..5656216a90339 100644 --- a/src/test/data/txcreate1.hex +++ b/src/test/data/txcreate1.hex @@ -1 +1 @@ -01000000031f5c38dfcf6f1a5f5a87c416076d392c87e6d41970d5ad5e477a02d66bde97580000000000ffffffff7cca453133921c50d5025878f7f738d1df891fd359763331935784cf6b9c82bf1200000000fffffffffccd319e04a996c96cfc0bf4c07539aa90bd0b1a700ef72fae535d6504f9a6220100000000ffffffff0280a81201000000001976a9141fc11f39be1729bf973a7ab6a615ca4729d6457488ac0084d717000000001976a914f2d4db28cad6502226ee484ae24505c2885cb12d88ac00000000 +01000000031e1977dc524bec5929e95d8d0946812944b7b5bda12f5b99fdf557773f2ee65e0100000000ffffffff8a398e44546dce0245452b90130e86832b21fd68f26662bc33aeb7c6c115d23c1900000000ffffffffb807ab93a7fcdff7af6d24581a4a18aa7c1db1ebecba2617a6805b009513940f0c00000000ffffffff020001a04a000000001976a9141ae882e788091732da6910595314447c9e38bd8d88ac27440f00000000001976a9146b474cbf0f6004329b630bdd4798f2c23d1751b688ac00000000 diff --git a/src/test/data/txcreatesign.hex b/src/test/data/txcreatesign.hex new file mode 100644 index 0000000000000..48ad835af9ada --- /dev/null +++ b/src/test/data/txcreatesign.hex @@ -0,0 +1 @@ +0100000001f77bd0a57e5b5e041e95567e0f01c3789af7f624ff490f756fb408362489276c0000000000ffffffff01a0860100000000001976a914382d03752bf6ae294a73b2bb0def022e3cc255ce88ac00000000 diff --git a/src/test/key_tests.cpp b/src/test/key_tests.cpp index 43b18ce61e5f0..6af15f5aa1f08 100644 --- a/src/test/key_tests.cpp +++ b/src/test/key_tests.cpp @@ -17,17 +17,17 @@ using namespace std; -static const string strSecret1 ("5HxWvvfubhXpYYpS3tJkw6fq9jE9j18THftkZjHHfmFiWtmAbrj"); -static const string strSecret2 ("5KC4ejrDjv152FGwP386VD1i2NYc5KkfSMyv1nGy1VGDxGHqVY3"); -static const string strSecret1C ("Kwr371tjA9u2rFSMZjTNun2PXXP3WPZu2afRHTcta6KxEUdm1vEw"); -static const string strSecret2C ("L3Hq7a8FEQwJkW1M2GNKDW28546Vp5miewcCzSqUD9kCAXrJdS3g"); -static const CBitcoinAddress addr1 ("1QFqqMUD55ZV3PJEJZtaKCsQmjLT6JkjvJ"); -static const CBitcoinAddress addr2 ("1F5y5E5FMc5YzdJtB9hLaUe43GDxEKXENJ"); -static const CBitcoinAddress addr1C("1NoJrossxPBKfCHuJXT4HadJrXRE9Fxiqs"); -static const CBitcoinAddress addr2C("1CRj2HyM1CXWzHAXLQtiGLyggNT9WQqsDs"); +static const string strSecret1 ("6uGFQ4DSW7zh1viHZi6iiVT17CncvoaV4MHvGvJKPDaLCdymj87"); +static const string strSecret2 ("6vVo7sPkeLTwVdAntrv4Gbnsyr75H8ChD3P5iyHziwaqe8mCYR5"); +static const string strSecret1C ("T3gJYmBuZXsdd65E7NQF88ZmUP2MaUanqnZg9GFS94W7kND4Ebjq"); +static const string strSecret2C ("T986ZKRRdnuuXLeDZuKBRrZW1ujotAncU9WTrFU1n7vMgRW75ZtF"); +static const CBitcoinAddress addr1 ("LiUo6Zn39joYJBzPUhssbDwAywhjFcoHE3"); +static const CBitcoinAddress addr2 ("LZJvLSP5SGKcFS13MHgdrVhpFUbEMB5XVC"); +static const CBitcoinAddress addr1C("Lh2G82Bi33RNuzz4UfSMZbh54jnWHVnmw8"); +static const CBitcoinAddress addr2C("LWegHWHB5rmaF5rgWYt1YN3StapRdnGJfU"); -static const string strAddressBad("1HV9Lc3sNHZxwj4Zk6fB38tEmBryq2cBiF"); +static const string strAddressBad("Lbi6bpMhSwp2CXkivEeUK9wzyQEFzHDfSr"); #ifdef KEY_TESTS_DUMPINFO diff --git a/src/test/main_tests.cpp b/src/test/main_tests.cpp index bf57dd81d9fa5..97dc2c0a3d165 100644 --- a/src/test/main_tests.cpp +++ b/src/test/main_tests.cpp @@ -12,13 +12,13 @@ BOOST_AUTO_TEST_SUITE(main_tests) BOOST_AUTO_TEST_CASE(subsidy_limit_test) { CAmount nSum = 0; - for (int nHeight = 0; nHeight < 14000000; nHeight += 1000) { + for (int nHeight = 0; nHeight < 112000000; nHeight += 1000) { CAmount nSubsidy = GetBlockValue(nHeight, 0); - BOOST_CHECK(nSubsidy <= 50 * COIN); + BOOST_CHECK(nSubsidy <= 400 * COIN); nSum += nSubsidy * 1000; BOOST_CHECK(MoneyRange(nSum)); } - BOOST_CHECK(nSum == 2099999997690000ULL); + BOOST_CHECK(nSum == 16799999990760000ULL); } BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/mempool_tests.cpp b/src/test/mempool_tests.cpp new file mode 100644 index 0000000000000..b85f768ed5532 --- /dev/null +++ b/src/test/mempool_tests.cpp @@ -0,0 +1,102 @@ +// Copyright (c) 2011-2014 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include "main.h" +#include "txmempool.h" +#include "util.h" + +#include +#include + +BOOST_AUTO_TEST_SUITE(mempool_tests) + +BOOST_AUTO_TEST_CASE(MempoolRemoveTest) +{ + // Test CTxMemPool::remove functionality + + // Parent transaction with three children, + // and three grand-children: + CMutableTransaction txParent; + txParent.vin.resize(1); + txParent.vin[0].scriptSig = CScript() << OP_11; + txParent.vout.resize(3); + for (int i = 0; i < 3; i++) + { + txParent.vout[i].scriptPubKey = CScript() << OP_11 << OP_EQUAL; + txParent.vout[i].nValue = 33000LL; + } + CMutableTransaction txChild[3]; + for (int i = 0; i < 3; i++) + { + txChild[i].vin.resize(1); + txChild[i].vin[0].scriptSig = CScript() << OP_11; + txChild[i].vin[0].prevout.hash = txParent.GetHash(); + txChild[i].vin[0].prevout.n = i; + txChild[i].vout.resize(1); + txChild[i].vout[0].scriptPubKey = CScript() << OP_11 << OP_EQUAL; + txChild[i].vout[0].nValue = 11000LL; + } + CMutableTransaction txGrandChild[3]; + for (int i = 0; i < 3; i++) + { + txGrandChild[i].vin.resize(1); + txGrandChild[i].vin[0].scriptSig = CScript() << OP_11; + txGrandChild[i].vin[0].prevout.hash = txChild[i].GetHash(); + txGrandChild[i].vin[0].prevout.n = 0; + txGrandChild[i].vout.resize(1); + txGrandChild[i].vout[0].scriptPubKey = CScript() << OP_11 << OP_EQUAL; + txGrandChild[i].vout[0].nValue = 11000LL; + } + + + CTxMemPool testPool(CFeeRate(0)); + std::list removed; + + // Nothing in pool, remove should do nothing: + testPool.remove(txParent, removed, true); + BOOST_CHECK_EQUAL(removed.size(), 0); + + // Just the parent: + testPool.addUnchecked(txParent.GetHash(), CTxMemPoolEntry(txParent, 0, 0, 0.0, 1)); + testPool.remove(txParent, removed, true); + BOOST_CHECK_EQUAL(removed.size(), 1); + removed.clear(); + + // Parent, children, grandchildren: + testPool.addUnchecked(txParent.GetHash(), CTxMemPoolEntry(txParent, 0, 0, 0.0, 1)); + for (int i = 0; i < 3; i++) + { + testPool.addUnchecked(txChild[i].GetHash(), CTxMemPoolEntry(txChild[i], 0, 0, 0.0, 1)); + testPool.addUnchecked(txGrandChild[i].GetHash(), CTxMemPoolEntry(txGrandChild[i], 0, 0, 0.0, 1)); + } + // Remove Child[0], GrandChild[0] should be removed: + testPool.remove(txChild[0], removed, true); + BOOST_CHECK_EQUAL(removed.size(), 2); + removed.clear(); + // ... make sure grandchild and child are gone: + testPool.remove(txGrandChild[0], removed, true); + BOOST_CHECK_EQUAL(removed.size(), 0); + testPool.remove(txChild[0], removed, true); + BOOST_CHECK_EQUAL(removed.size(), 0); + // Remove parent, all children/grandchildren should go: + testPool.remove(txParent, removed, true); + BOOST_CHECK_EQUAL(removed.size(), 5); + BOOST_CHECK_EQUAL(testPool.size(), 0); + removed.clear(); + + // Add children and grandchildren, but NOT the parent (simulate the parent being in a block) + for (int i = 0; i < 3; i++) + { + testPool.addUnchecked(txChild[i].GetHash(), CTxMemPoolEntry(txChild[i], 0, 0, 0.0, 1)); + testPool.addUnchecked(txGrandChild[i].GetHash(), CTxMemPoolEntry(txGrandChild[i], 0, 0, 0.0, 1)); + } + // Now remove the parent, as might happen if a block-re-org occurs but the parent cannot be + // put into the mempool (maybe because it is non-standard): + testPool.remove(txParent, removed, true); + BOOST_CHECK_EQUAL(removed.size(), 6); + BOOST_CHECK_EQUAL(testPool.size(), 0); + removed.clear(); +} + +BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/miner_tests.cpp b/src/test/miner_tests.cpp index 53c2e7b2619b2..01ad6335a5609 100644 --- a/src/test/miner_tests.cpp +++ b/src/test/miner_tests.cpp @@ -17,34 +17,34 @@ struct { unsigned char extranonce; unsigned int nonce; } blockinfo[] = { - {4, 0xa4a3e223}, {2, 0x15c32f9e}, {1, 0x0375b547}, {1, 0x7004a8a5}, - {2, 0xce440296}, {2, 0x52cfe198}, {1, 0x77a72cd0}, {2, 0xbb5d6f84}, - {2, 0x83f30c2c}, {1, 0x48a73d5b}, {1, 0xef7dcd01}, {2, 0x6809c6c4}, - {2, 0x0883ab3c}, {1, 0x087bbbe2}, {2, 0x2104a814}, {2, 0xdffb6daa}, - {1, 0xee8a0a08}, {2, 0xba4237c1}, {1, 0xa70349dc}, {1, 0x344722bb}, - {3, 0xd6294733}, {2, 0xec9f5c94}, {2, 0xca2fbc28}, {1, 0x6ba4f406}, - {2, 0x015d4532}, {1, 0x6e119b7c}, {2, 0x43e8f314}, {2, 0x27962f38}, - {2, 0xb571b51b}, {2, 0xb36bee23}, {2, 0xd17924a8}, {2, 0x6bc212d9}, - {1, 0x630d4948}, {2, 0x9a4c4ebb}, {2, 0x554be537}, {1, 0xd63ddfc7}, - {2, 0xa10acc11}, {1, 0x759a8363}, {2, 0xfb73090d}, {1, 0xe82c6a34}, - {1, 0xe33e92d7}, {3, 0x658ef5cb}, {2, 0xba32ff22}, {5, 0x0227a10c}, - {1, 0xa9a70155}, {5, 0xd096d809}, {1, 0x37176174}, {1, 0x830b8d0f}, - {1, 0xc6e3910e}, {2, 0x823f3ca8}, {1, 0x99850849}, {1, 0x7521fb81}, - {1, 0xaacaabab}, {1, 0xd645a2eb}, {5, 0x7aea1781}, {5, 0x9d6e4b78}, - {1, 0x4ce90fd8}, {1, 0xabdc832d}, {6, 0x4a34f32a}, {2, 0xf2524c1c}, - {2, 0x1bbeb08a}, {1, 0xad47f480}, {1, 0x9f026aeb}, {1, 0x15a95049}, - {2, 0xd1cb95b2}, {2, 0xf84bbda5}, {1, 0x0fa62cd1}, {1, 0xe05f9169}, - {1, 0x78d194a9}, {5, 0x3e38147b}, {5, 0x737ba0d4}, {1, 0x63378e10}, - {1, 0x6d5f91cf}, {2, 0x88612eb8}, {2, 0xe9639484}, {1, 0xb7fabc9d}, - {2, 0x19b01592}, {1, 0x5a90dd31}, {2, 0x5bd7e028}, {2, 0x94d00323}, - {1, 0xa9b9c01a}, {1, 0x3a40de61}, {1, 0x56e7eec7}, {5, 0x859f7ef6}, - {1, 0xfd8e5630}, {1, 0x2b0c9f7f}, {1, 0xba700e26}, {1, 0x7170a408}, - {1, 0x70de86a8}, {1, 0x74d64cd5}, {1, 0x49e738a1}, {2, 0x6910b602}, - {0, 0x643c565f}, {1, 0x54264b3f}, {2, 0x97ea6396}, {2, 0x55174459}, - {2, 0x03e8779a}, {1, 0x98f34d8f}, {1, 0xc07b2b07}, {1, 0xdfe29668}, - {1, 0x3141c7c1}, {1, 0xb3b595f4}, {1, 0x735abf08}, {5, 0x623bfbce}, - {2, 0xd351e722}, {1, 0xf4ca48c9}, {1, 0x5b19c670}, {1, 0xa164bf0e}, - {2, 0xbbbeb305}, {2, 0xfe1c810a}, + {4, 0xa4ad9f65}, {2, 0x15cf2b27}, {1, 0x037620ac}, {1, 0x700d9c54}, + {2, 0xce79f74f}, {2, 0x52d9c194}, {1, 0x77bc3efc}, {2, 0xbb62c5e8}, + {2, 0x83ff997a}, {1, 0x48b984ee}, {1, 0xef925da0}, {2, 0x680d2979}, + {2, 0x08953af7}, {1, 0x087dd553}, {2, 0x210e2818}, {2, 0xdfffcdef}, + {1, 0xeea1b209}, {2, 0xba4a8943}, {1, 0xa7333e77}, {1, 0x344f3e2a}, + {3, 0xd651f08e}, {2, 0xeca3957f}, {2, 0xca35aa49}, {1, 0x6bb2065d}, + {2, 0x0170ee44}, {1, 0x6e12f4aa}, {2, 0x43f4f4db}, {2, 0x279c1c44}, + {2, 0xb5a50f10}, {2, 0xb3902841}, {2, 0xd198647e}, {2, 0x6bc40d88}, + {1, 0x633a9a1c}, {2, 0x9a722ed8}, {2, 0x55580d10}, {1, 0xd65022a1}, + {2, 0xa12ffcc8}, {1, 0x75a6a9c7}, {2, 0xfb7c80b7}, {1, 0xe8403e6c}, + {1, 0xe34017a0}, {3, 0x659e177b}, {2, 0xba5c40bf}, {5, 0x022f11ef}, + {1, 0xa9ab516a}, {5, 0xd0999ed4}, {1, 0x37277cb3}, {1, 0x830f735f}, + {1, 0xc6e3d947}, {2, 0x824a0c1b}, {1, 0x99962416}, {1, 0x75336f63}, + {1, 0xaacf0fea}, {1, 0xd6531aec}, {5, 0x7afcf541}, {5, 0x9d6fac0d}, + {1, 0x4cf5c4df}, {1, 0xabe0f2a0}, {6, 0x4a3dac18}, {2, 0xf265febe}, + {2, 0x1bc9f23f}, {1, 0xad49ab71}, {1, 0x9f2d8923}, {1, 0x15acb65d}, + {2, 0xd1cecb52}, {2, 0xf856808b}, {1, 0x0fa96e29}, {1, 0xe063ecbc}, + {1, 0x78d926c6}, {5, 0x3e38ad35}, {5, 0x73901915}, {1, 0x63424be0}, + {1, 0x6d6b0a1d}, {2, 0x888ba681}, {2, 0xe96b0714}, {1, 0xb7fcaa55}, + {2, 0x19c106eb}, {1, 0x5aa13484}, {2, 0x5bf4c2f3}, {2, 0x94d401dd}, + {1, 0xa9bc23d9}, {1, 0x3a69c375}, {1, 0x56ed2006}, {5, 0x85ba6dbd}, + {1, 0xfd9b2000}, {1, 0x2b2be19a}, {1, 0xba724468}, {1, 0x717eb6e5}, + {1, 0x70de86d9}, {1, 0x74e23a42}, {1, 0x49e92832}, {2, 0x6926dbb9}, + {0, 0x64452497}, {1, 0x54306d6f}, {2, 0x97ebf052}, {2, 0x55198b70}, + {2, 0x03fe61f0}, {1, 0x98f9e67f}, {1, 0xc0842a09}, {1, 0xdfed39c5}, + {1, 0x3144223e}, {1, 0xb3d12f84}, {1, 0x7366ceb7}, {5, 0x6240691b}, + {2, 0xd3529b57}, {1, 0xf4cae3b1}, {1, 0x5b1df222}, {1, 0xa16a5c70}, + {2, 0xbbccedc6}, {2, 0xfe38d0ef}, }; // NOTE: These tests rely on CreateNewBlock doing its own self-validation! diff --git a/src/test/multisig_tests.cpp b/src/test/multisig_tests.cpp index 8d06caa147c3c..0b5402f2fd27c 100644 --- a/src/test/multisig_tests.cpp +++ b/src/test/multisig_tests.cpp @@ -84,7 +84,7 @@ BOOST_AUTO_TEST_CASE(multisig_verify) keys.clear(); keys += key[0],key[1]; // magic operator+= from boost.assign s = sign_multisig(a_and_b, keys, txTo[0], 0); - BOOST_CHECK(VerifyScript(s, a_and_b, flags, SignatureChecker(txTo[0], 0), &err)); + BOOST_CHECK(VerifyScript(s, a_and_b, flags, MutableTransactionSignatureChecker(&txTo[0], 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_OK, ScriptErrorString(err)); for (int i = 0; i < 4; i++) @@ -92,13 +92,13 @@ BOOST_AUTO_TEST_CASE(multisig_verify) keys.clear(); keys += key[i]; s = sign_multisig(a_and_b, keys, txTo[0], 0); - BOOST_CHECK_MESSAGE(!VerifyScript(s, a_and_b, flags, SignatureChecker(txTo[0], 0), &err), strprintf("a&b 1: %d", i)); + BOOST_CHECK_MESSAGE(!VerifyScript(s, a_and_b, flags, MutableTransactionSignatureChecker(&txTo[0], 0), &err), strprintf("a&b 1: %d", i)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_INVALID_STACK_OPERATION, ScriptErrorString(err)); keys.clear(); keys += key[1],key[i]; s = sign_multisig(a_and_b, keys, txTo[0], 0); - BOOST_CHECK_MESSAGE(!VerifyScript(s, a_and_b, flags, SignatureChecker(txTo[0], 0), &err), strprintf("a&b 2: %d", i)); + BOOST_CHECK_MESSAGE(!VerifyScript(s, a_and_b, flags, MutableTransactionSignatureChecker(&txTo[0], 0), &err), strprintf("a&b 2: %d", i)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_EVAL_FALSE, ScriptErrorString(err)); } @@ -110,22 +110,18 @@ BOOST_AUTO_TEST_CASE(multisig_verify) s = sign_multisig(a_or_b, keys, txTo[1], 0); if (i == 0 || i == 1) { - BOOST_CHECK_MESSAGE(VerifyScript(s, a_or_b, flags, SignatureChecker(txTo[1], 0), &err), strprintf("a|b: %d", i)); + BOOST_CHECK_MESSAGE(VerifyScript(s, a_or_b, flags, MutableTransactionSignatureChecker(&txTo[1], 0), &err), strprintf("a|b: %d", i)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_OK, ScriptErrorString(err)); } else { - BOOST_CHECK_MESSAGE(!VerifyScript(s, a_or_b, flags, SignatureChecker(txTo[1], 0), &err), strprintf("a|b: %d", i)); + BOOST_CHECK_MESSAGE(!VerifyScript(s, a_or_b, flags, MutableTransactionSignatureChecker(&txTo[1], 0), &err), strprintf("a|b: %d", i)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_EVAL_FALSE, ScriptErrorString(err)); } } s.clear(); - s << OP_0 << OP_0; - BOOST_CHECK(!VerifyScript(s, a_or_b, flags, SignatureChecker(txTo[1], 0), &err)); - BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_SIG_DER, ScriptErrorString(err)); - s.clear(); s << OP_0 << OP_1; - BOOST_CHECK(!VerifyScript(s, a_or_b, flags, SignatureChecker(txTo[1], 0), &err)); + BOOST_CHECK(!VerifyScript(s, a_or_b, flags, MutableTransactionSignatureChecker(&txTo[1], 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_SIG_DER, ScriptErrorString(err)); @@ -137,12 +133,12 @@ BOOST_AUTO_TEST_CASE(multisig_verify) s = sign_multisig(escrow, keys, txTo[2], 0); if (i < j && i < 3 && j < 3) { - BOOST_CHECK_MESSAGE(VerifyScript(s, escrow, flags, SignatureChecker(txTo[2], 0), &err), strprintf("escrow 1: %d %d", i, j)); + BOOST_CHECK_MESSAGE(VerifyScript(s, escrow, flags, MutableTransactionSignatureChecker(&txTo[2], 0), &err), strprintf("escrow 1: %d %d", i, j)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_OK, ScriptErrorString(err)); } else { - BOOST_CHECK_MESSAGE(!VerifyScript(s, escrow, flags, SignatureChecker(txTo[2], 0), &err), strprintf("escrow 2: %d %d", i, j)); + BOOST_CHECK_MESSAGE(!VerifyScript(s, escrow, flags, MutableTransactionSignatureChecker(&txTo[2], 0), &err), strprintf("escrow 2: %d %d", i, j)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_EVAL_FALSE, ScriptErrorString(err)); } } diff --git a/src/test/netbase_tests.cpp b/src/test/netbase_tests.cpp index c26e738384238..3a41a3ddfe616 100644 --- a/src/test/netbase_tests.cpp +++ b/src/test/netbase_tests.cpp @@ -6,6 +6,7 @@ #include +#include #include using namespace std; @@ -60,15 +61,15 @@ BOOST_AUTO_TEST_CASE(netbase_splithost) BOOST_CHECK(TestSplitHost("www.bitcoin.org:80", "www.bitcoin.org", 80)); BOOST_CHECK(TestSplitHost("[www.bitcoin.org]:80", "www.bitcoin.org", 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:36307", "127.0.0.1", 36307)); 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]:36307", "127.0.0.1", 36307)); BOOST_CHECK(TestSplitHost("::ffff:127.0.0.1", "::ffff:127.0.0.1", -1)); - BOOST_CHECK(TestSplitHost("[::ffff:127.0.0.1]:8333", "::ffff:127.0.0.1", 8333)); - BOOST_CHECK(TestSplitHost("[::]:8333", "::", 8333)); - BOOST_CHECK(TestSplitHost("::8333", "::8333", -1)); - BOOST_CHECK(TestSplitHost(":8333", "", 8333)); - BOOST_CHECK(TestSplitHost("[]:8333", "", 8333)); + BOOST_CHECK(TestSplitHost("[::ffff:127.0.0.1]:36307", "::ffff:127.0.0.1", 36307)); + BOOST_CHECK(TestSplitHost("[::]:36307", "::", 36307)); + BOOST_CHECK(TestSplitHost("::36307", "::36307", -1)); + BOOST_CHECK(TestSplitHost(":36307", "", 36307)); + BOOST_CHECK(TestSplitHost("[]:36307", "", 36307)); BOOST_CHECK(TestSplitHost("", "", -1)); } @@ -83,10 +84,10 @@ bool static TestParse(string src, string canon) BOOST_AUTO_TEST_CASE(netbase_lookupnumeric) { BOOST_CHECK(TestParse("127.0.0.1", "127.0.0.1:65535")); - BOOST_CHECK(TestParse("127.0.0.1:8333", "127.0.0.1:8333")); + BOOST_CHECK(TestParse("127.0.0.1:36307", "127.0.0.1:36307")); BOOST_CHECK(TestParse("::ffff:127.0.0.1", "127.0.0.1:65535")); BOOST_CHECK(TestParse("::", "[::]:65535")); - BOOST_CHECK(TestParse("[::]:8333", "[::]:8333")); + BOOST_CHECK(TestParse("[::]:36307", "[::]:36307")); BOOST_CHECK(TestParse("[127.0.0.1]", "127.0.0.1:65535")); BOOST_CHECK(TestParse(":::", "")); } @@ -116,6 +117,11 @@ BOOST_AUTO_TEST_CASE(subnet_test) BOOST_CHECK(CSubNet("1:2:3:4:5:6:7:8").Match(CNetAddr("1:2:3:4:5:6:7:8"))); BOOST_CHECK(!CSubNet("1:2:3:4:5:6:7:8").Match(CNetAddr("1:2:3:4:5:6:7:9"))); BOOST_CHECK(CSubNet("1:2:3:4:5:6:7:0/112").Match(CNetAddr("1:2:3:4:5:6:7:1234"))); + BOOST_CHECK(CSubNet("192.168.0.1/24").Match(CNetAddr("192.168.0.2"))); + BOOST_CHECK(CSubNet("192.168.0.20/29").Match(CNetAddr("192.168.0.18"))); + BOOST_CHECK(CSubNet("1.2.2.1/24").Match(CNetAddr("1.2.2.4"))); + BOOST_CHECK(CSubNet("1.2.2.110/31").Match(CNetAddr("1.2.2.111"))); + BOOST_CHECK(CSubNet("1.2.2.20/26").Match(CNetAddr("1.2.2.63"))); // All-Matching IPv6 Matches arbitrary IPv4 and IPv6 BOOST_CHECK(CSubNet("::/0").Match(CNetAddr("1:2:3:4:5:6:7:1234"))); BOOST_CHECK(CSubNet("::/0").Match(CNetAddr("1.2.3.4"))); @@ -139,4 +145,20 @@ BOOST_AUTO_TEST_CASE(subnet_test) BOOST_CHECK(!CSubNet("fuzzy").IsValid()); } +BOOST_AUTO_TEST_CASE(netbase_getgroup) +{ + BOOST_CHECK(CNetAddr("127.0.0.1").GetGroup() == boost::assign::list_of(0)); // Local -> !Routable() + BOOST_CHECK(CNetAddr("257.0.0.1").GetGroup() == boost::assign::list_of(0)); // !Valid -> !Routable() + BOOST_CHECK(CNetAddr("10.0.0.1").GetGroup() == boost::assign::list_of(0)); // RFC1918 -> !Routable() + BOOST_CHECK(CNetAddr("169.254.1.1").GetGroup() == boost::assign::list_of(0)); // RFC3927 -> !Routable() + BOOST_CHECK(CNetAddr("1.2.3.4").GetGroup() == boost::assign::list_of((unsigned char)NET_IPV4)(1)(2)); // IPv4 + BOOST_CHECK(CNetAddr("::FFFF:0:102:304").GetGroup() == boost::assign::list_of((unsigned char)NET_IPV4)(1)(2)); // RFC6145 + BOOST_CHECK(CNetAddr("64:FF9B::102:304").GetGroup() == boost::assign::list_of((unsigned char)NET_IPV4)(1)(2)); // RFC6052 + BOOST_CHECK(CNetAddr("2002:102:304:9999:9999:9999:9999:9999").GetGroup() == boost::assign::list_of((unsigned char)NET_IPV4)(1)(2)); // RFC3964 + BOOST_CHECK(CNetAddr("2001:0:9999:9999:9999:9999:FEFD:FCFB").GetGroup() == boost::assign::list_of((unsigned char)NET_IPV4)(1)(2)); // RFC4380 + BOOST_CHECK(CNetAddr("FD87:D87E:EB43:edb1:8e4:3588:e546:35ca").GetGroup() == boost::assign::list_of((unsigned char)NET_TOR)(239)); // Tor + BOOST_CHECK(CNetAddr("2001:470:abcd:9999:9999:9999:9999:9999").GetGroup() == boost::assign::list_of((unsigned char)NET_IPV6)(32)(1)(4)(112)(175)); //he.net + BOOST_CHECK(CNetAddr("2001:2001:9999:9999:9999:9999:9999:9999").GetGroup() == boost::assign::list_of((unsigned char)NET_IPV6)(32)(1)(32)(1)); //IPv6 +} + BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/rpc_tests.cpp b/src/test/rpc_tests.cpp index d5475a92bfa4c..018e073fddcc5 100644 --- a/src/test/rpc_tests.cpp +++ b/src/test/rpc_tests.cpp @@ -100,8 +100,8 @@ BOOST_AUTO_TEST_CASE(rpc_rawsign) r = CallRPC(string("createrawtransaction ")+prevout+" "+ "{\"3HqAe9LtNBjnsfM4CyYaWTnvCaUYT7v4oZ\":11}"); string notsigned = r.get_str(); - string privkey1 = "\"KzsXybp9jX64P5ekX1KUxRQ79Jht9uzW7LorgwE65i5rWACL6LQe\""; - string privkey2 = "\"Kyhdf5LuKTRx4ge69ybABsiUAWjVRK4XGxAKk2FQLp2HjGMy87Z4\""; + string privkey1 = "\"T6hoRM7L8u4f9vHd4eGMAmwV6AMCE11PvYi7YjrdegG223kw64r1\""; + string privkey2 = "\"T5Xu6pe5iqQYqXGxhcY2QEFr7NNoVQ5R6A4abpswunCTF9w85g8V\""; r = CallRPC(string("signrawtransaction ")+notsigned+" "+prevout+" "+"[]"); BOOST_CHECK(find_value(r.get_obj(), "complete").get_bool() == false); r = CallRPC(string("signrawtransaction ")+notsigned+" "+prevout+" "+"["+privkey1+","+privkey2+"]"); @@ -139,6 +139,24 @@ BOOST_AUTO_TEST_CASE(rpc_parse_monetary_values) BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("20999999.99999999")), 2099999999999999LL); } +BOOST_AUTO_TEST_CASE(json_parse_errors) +{ + Value value; + // Valid + BOOST_CHECK_EQUAL(read_string(std::string("1.0"), value), true); + // Valid, with trailing whitespace + BOOST_CHECK_EQUAL(read_string(std::string("1.0 "), value), true); + // Invalid, initial garbage + BOOST_CHECK_EQUAL(read_string(std::string("[1.0"), value), false); + BOOST_CHECK_EQUAL(read_string(std::string("a1.0"), value), false); + // Invalid, trailing garbage + BOOST_CHECK_EQUAL(read_string(std::string("1.0sds"), value), false); + BOOST_CHECK_EQUAL(read_string(std::string("1.0]"), value), false); + // BTC addresses should fail parsing + BOOST_CHECK_EQUAL(read_string(std::string("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W"), value), false); + BOOST_CHECK_EQUAL(read_string(std::string("3J98t1WpEZ73CNmQviecrnyiWrnqRhWNL"), value), false); +} + BOOST_AUTO_TEST_CASE(rpc_boostasiotocnetaddr) { // Check IPv4 addresses diff --git a/src/test/rpc_wallet_tests.cpp b/src/test/rpc_wallet_tests.cpp index 91da0c4420d50..bdcf5906d190e 100644 --- a/src/test/rpc_wallet_tests.cpp +++ b/src/test/rpc_wallet_tests.cpp @@ -155,15 +155,15 @@ BOOST_AUTO_TEST_CASE(rpc_wallet) BOOST_CHECK_NO_THROW(retValue = CallRPC("signmessage " + demoAddress.ToString() + " mymessage")); BOOST_CHECK_THROW(CallRPC("signmessage"), runtime_error); /* Should throw error because this address is not loaded in the wallet */ - BOOST_CHECK_THROW(CallRPC("signmessage 1QFqqMUD55ZV3PJEJZtaKCsQmjLT6JkjvJ mymessage"), runtime_error); + BOOST_CHECK_THROW(CallRPC("signmessage LQARBfsj74vvDeSgYjqbCFQEoXSoBLztSa mymessage"), runtime_error); /* missing arguments */ BOOST_CHECK_THROW(CallRPC("verifymessage " + demoAddress.ToString()), runtime_error); BOOST_CHECK_THROW(CallRPC("verifymessage " + demoAddress.ToString() + " " + retValue.get_str()), runtime_error); /* Illegal address */ - BOOST_CHECK_THROW(CallRPC("verifymessage 1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4X " + retValue.get_str() + " mymessage"), runtime_error); + BOOST_CHECK_THROW(CallRPC("verifymessage LYKr1oaPsQSHthukMLDhdzsQUjgZvNQia " + retValue.get_str() + " mymessage"), runtime_error); /* wrong address */ - BOOST_CHECK(CallRPC("verifymessage 1D1ZrZNe3JUo7ZycKEYQQiQAWd9y54F4XZ " + retValue.get_str() + " mymessage").get_bool() == false); + BOOST_CHECK(CallRPC("verifymessage LYKr1oaPsQSHthukMLDhdzsQUjgZvNQiaq " + retValue.get_str() + " mymessage").get_bool() == false); /* Correct address and signature but wrong message */ BOOST_CHECK(CallRPC("verifymessage " + demoAddress.ToString() + " " + retValue.get_str() + " wrongmessage").get_bool() == false); /* Correct address, message and signature*/ diff --git a/src/test/sanity_tests.cpp b/src/test/sanity_tests.cpp new file mode 100644 index 0000000000000..464a8fbb8cfb7 --- /dev/null +++ b/src/test/sanity_tests.cpp @@ -0,0 +1,18 @@ +// Copyright (c) 2012-2013 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include "compat/sanity.h" +#include "key.h" + +#include +BOOST_AUTO_TEST_SUITE(sanity_tests) + +BOOST_AUTO_TEST_CASE(basic_sanity) +{ + BOOST_CHECK_MESSAGE(glibc_sanity_test() == true, "libc sanity test"); + BOOST_CHECK_MESSAGE(glibcxx_sanity_test() == true, "stdlib sanity test"); + BOOST_CHECK_MESSAGE(ECC_InitSanityCheck() == true, "openssl ECC test"); +} + +BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/script_P2SH_tests.cpp b/src/test/script_P2SH_tests.cpp index a969eefa05370..bc40fd1b97183 100644 --- a/src/test/script_P2SH_tests.cpp +++ b/src/test/script_P2SH_tests.cpp @@ -43,7 +43,7 @@ Verify(const CScript& scriptSig, const CScript& scriptPubKey, bool fStrict, Scri txTo.vin[0].scriptSig = scriptSig; txTo.vout[0].nValue = 1; - return VerifyScript(scriptSig, scriptPubKey, fStrict ? SCRIPT_VERIFY_P2SH : SCRIPT_VERIFY_NONE, SignatureChecker(txTo, 0), &err); + return VerifyScript(scriptSig, scriptPubKey, fStrict ? SCRIPT_VERIFY_P2SH : SCRIPT_VERIFY_NONE, MutableTransactionSignatureChecker(&txTo, 0), &err); } diff --git a/src/test/script_tests.cpp b/src/test/script_tests.cpp index 4d2a9aff45c0f..4e2edb62b2048 100644 --- a/src/test/script_tests.cpp +++ b/src/test/script_tests.cpp @@ -100,7 +100,7 @@ void DoTest(const CScript& scriptPubKey, const CScript& scriptSig, int flags, bo ScriptError err; CMutableTransaction tx = BuildSpendingTransaction(scriptSig, BuildCreditingTransaction(scriptPubKey)); CMutableTransaction tx2 = tx; - BOOST_CHECK_MESSAGE(VerifyScript(scriptSig, scriptPubKey, flags, SignatureChecker(tx, 0), &err) == expect, message); + BOOST_CHECK_MESSAGE(VerifyScript(scriptSig, scriptPubKey, flags, MutableTransactionSignatureChecker(&tx, 0), &err) == expect, message); BOOST_CHECK_MESSAGE(expect == (err == SCRIPT_ERR_OK), std::string(ScriptErrorString(err)) + ": " + message); #if defined(HAVE_CONSENSUS_LIB) CDataStream stream(SER_NETWORK, PROTOCOL_VERSION); @@ -413,6 +413,79 @@ BOOST_AUTO_TEST_CASE(script_build) "P2PK NOT with too much R padding", SCRIPT_VERIFY_DERSIG ).PushSig(keys.key2, SIGHASH_ALL, 31, 32).EditPush(1, "43021F", "44022000")); + good.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG, + "BIP66 example 1, without DERSIG", 0 + ).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220")); + bad.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG, + "BIP66 example 1, with DERSIG", SCRIPT_VERIFY_DERSIG + ).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220")); + bad.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG << OP_NOT, + "BIP66 example 2, without DERSIG", 0 + ).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220")); + bad.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG << OP_NOT, + "BIP66 example 2, with DERSIG", SCRIPT_VERIFY_DERSIG + ).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220")); + bad.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG, + "BIP66 example 3, without DERSIG", 0 + ).Num(0)); + bad.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG, + "BIP66 example 3, with DERSIG", SCRIPT_VERIFY_DERSIG + ).Num(0)); + good.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG << OP_NOT, + "BIP66 example 4, without DERSIG", 0 + ).Num(0)); + good.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG << OP_NOT, + "BIP66 example 4, with DERSIG", SCRIPT_VERIFY_DERSIG + ).Num(0)); + bad.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG, + "BIP66 example 5, without DERSIG", 0 + ).Num(1)); + bad.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG, + "BIP66 example 5, with DERSIG", SCRIPT_VERIFY_DERSIG + ).Num(1)); + good.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG << OP_NOT, + "BIP66 example 6, without DERSIG", 0 + ).Num(1)); + bad.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey1C) << OP_CHECKSIG << OP_NOT, + "BIP66 example 6, with DERSIG", SCRIPT_VERIFY_DERSIG + ).Num(1)); + good.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG, + "BIP66 example 7, without DERSIG", 0 + ).Num(0).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220").PushSig(keys.key2)); + bad.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG, + "BIP66 example 7, with DERSIG", SCRIPT_VERIFY_DERSIG + ).Num(0).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220").PushSig(keys.key2)); + bad.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG << OP_NOT, + "BIP66 example 8, without DERSIG", 0 + ).Num(0).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220").PushSig(keys.key2)); + bad.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG << OP_NOT, + "BIP66 example 8, with DERSIG", SCRIPT_VERIFY_DERSIG + ).Num(0).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220").PushSig(keys.key2)); + bad.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG, + "BIP66 example 9, without DERSIG", 0 + ).Num(0).Num(0).PushSig(keys.key2, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220")); + bad.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG, + "BIP66 example 9, with DERSIG", SCRIPT_VERIFY_DERSIG + ).Num(0).Num(0).PushSig(keys.key2, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220")); + good.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG << OP_NOT, + "BIP66 example 10, without DERSIG", 0 + ).Num(0).Num(0).PushSig(keys.key2, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220")); + bad.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG << OP_NOT, + "BIP66 example 10, with DERSIG", SCRIPT_VERIFY_DERSIG + ).Num(0).Num(0).PushSig(keys.key2, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220")); + bad.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG, + "BIP66 example 11, without DERSIG", 0 + ).Num(0).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220").Num(0)); + bad.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG, + "BIP66 example 11, with DERSIG", SCRIPT_VERIFY_DERSIG + ).Num(0).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220").Num(0)); + good.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG << OP_NOT, + "BIP66 example 12, without DERSIG", 0 + ).Num(0).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220").Num(0)); + good.push_back(TestBuilder(CScript() << OP_2 << ToByteVector(keys.pubkey1C) << ToByteVector(keys.pubkey2C) << OP_2 << OP_CHECKMULTISIG << OP_NOT, + "BIP66 example 12, with DERSIG", SCRIPT_VERIFY_DERSIG + ).Num(0).PushSig(keys.key1, SIGHASH_ALL, 33, 32).EditPush(1, "45022100", "440220").Num(0)); + good.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey2C) << OP_CHECKSIG, "P2PK with high S but no LOW_S", 0 ).PushSig(keys.key2, SIGHASH_ALL, 32, 33)); @@ -490,6 +563,22 @@ BOOST_AUTO_TEST_CASE(script_build) "2-of-2 with two identical keys and sigs pushed", SCRIPT_VERIFY_SIGPUSHONLY ).Num(0).PushSig(keys.key1).PushSig(keys.key1)); + good.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey0) << OP_CHECKSIG, + "P2PK with unnecessary input but no CLEANSTACK", SCRIPT_VERIFY_P2SH + ).Num(11).PushSig(keys.key0)); + bad.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey0) << OP_CHECKSIG, + "P2PK with unnecessary input", SCRIPT_VERIFY_CLEANSTACK | SCRIPT_VERIFY_P2SH + ).Num(11).PushSig(keys.key0)); + good.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey0) << OP_CHECKSIG, + "P2SH with unnecessary input but no CLEANSTACK", SCRIPT_VERIFY_P2SH, true + ).Num(11).PushSig(keys.key0).PushRedeem()); + bad.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey0) << OP_CHECKSIG, + "P2SH with unnecessary input", SCRIPT_VERIFY_CLEANSTACK | SCRIPT_VERIFY_P2SH, true + ).Num(11).PushSig(keys.key0).PushRedeem()); + good.push_back(TestBuilder(CScript() << ToByteVector(keys.pubkey0) << OP_CHECKSIG, + "P2SH with CLEANSTACK", SCRIPT_VERIFY_CLEANSTACK | SCRIPT_VERIFY_P2SH, true + ).PushSig(keys.key0).PushRedeem()); + std::set tests_good; std::set tests_bad; @@ -673,18 +762,18 @@ BOOST_AUTO_TEST_CASE(script_CHECKMULTISIG12) CMutableTransaction txTo12 = BuildSpendingTransaction(CScript(), txFrom12); CScript goodsig1 = sign_multisig(scriptPubKey12, key1, txTo12); - BOOST_CHECK(VerifyScript(goodsig1, scriptPubKey12, flags, SignatureChecker(txTo12, 0), &err)); + BOOST_CHECK(VerifyScript(goodsig1, scriptPubKey12, flags, MutableTransactionSignatureChecker(&txTo12, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_OK, ScriptErrorString(err)); txTo12.vout[0].nValue = 2; - BOOST_CHECK(!VerifyScript(goodsig1, scriptPubKey12, flags, SignatureChecker(txTo12, 0), &err)); + BOOST_CHECK(!VerifyScript(goodsig1, scriptPubKey12, flags, MutableTransactionSignatureChecker(&txTo12, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_EVAL_FALSE, ScriptErrorString(err)); CScript goodsig2 = sign_multisig(scriptPubKey12, key2, txTo12); - BOOST_CHECK(VerifyScript(goodsig2, scriptPubKey12, flags, SignatureChecker(txTo12, 0), &err)); + BOOST_CHECK(VerifyScript(goodsig2, scriptPubKey12, flags, MutableTransactionSignatureChecker(&txTo12, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_OK, ScriptErrorString(err)); CScript badsig1 = sign_multisig(scriptPubKey12, key3, txTo12); - BOOST_CHECK(!VerifyScript(badsig1, scriptPubKey12, flags, SignatureChecker(txTo12, 0), &err)); + BOOST_CHECK(!VerifyScript(badsig1, scriptPubKey12, flags, MutableTransactionSignatureChecker(&txTo12, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_EVAL_FALSE, ScriptErrorString(err)); } @@ -706,54 +795,54 @@ BOOST_AUTO_TEST_CASE(script_CHECKMULTISIG23) std::vector keys; keys.push_back(key1); keys.push_back(key2); CScript goodsig1 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(VerifyScript(goodsig1, scriptPubKey23, flags, SignatureChecker(txTo23, 0), &err)); + BOOST_CHECK(VerifyScript(goodsig1, scriptPubKey23, flags, MutableTransactionSignatureChecker(&txTo23, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_OK, ScriptErrorString(err)); keys.clear(); keys.push_back(key1); keys.push_back(key3); CScript goodsig2 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(VerifyScript(goodsig2, scriptPubKey23, flags, SignatureChecker(txTo23, 0), &err)); + BOOST_CHECK(VerifyScript(goodsig2, scriptPubKey23, flags, MutableTransactionSignatureChecker(&txTo23, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_OK, ScriptErrorString(err)); keys.clear(); keys.push_back(key2); keys.push_back(key3); CScript goodsig3 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(VerifyScript(goodsig3, scriptPubKey23, flags, SignatureChecker(txTo23, 0), &err)); + BOOST_CHECK(VerifyScript(goodsig3, scriptPubKey23, flags, MutableTransactionSignatureChecker(&txTo23, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_OK, ScriptErrorString(err)); keys.clear(); keys.push_back(key2); keys.push_back(key2); // Can't re-use sig CScript badsig1 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig1, scriptPubKey23, flags, SignatureChecker(txTo23, 0), &err)); + BOOST_CHECK(!VerifyScript(badsig1, scriptPubKey23, flags, MutableTransactionSignatureChecker(&txTo23, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_EVAL_FALSE, ScriptErrorString(err)); keys.clear(); keys.push_back(key2); keys.push_back(key1); // sigs must be in correct order CScript badsig2 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig2, scriptPubKey23, flags, SignatureChecker(txTo23, 0), &err)); + BOOST_CHECK(!VerifyScript(badsig2, scriptPubKey23, flags, MutableTransactionSignatureChecker(&txTo23, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_EVAL_FALSE, ScriptErrorString(err)); keys.clear(); keys.push_back(key3); keys.push_back(key2); // sigs must be in correct order CScript badsig3 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig3, scriptPubKey23, flags, SignatureChecker(txTo23, 0), &err)); + BOOST_CHECK(!VerifyScript(badsig3, scriptPubKey23, flags, MutableTransactionSignatureChecker(&txTo23, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_EVAL_FALSE, ScriptErrorString(err)); keys.clear(); keys.push_back(key4); keys.push_back(key2); // sigs must match pubkeys CScript badsig4 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig4, scriptPubKey23, flags, SignatureChecker(txTo23, 0), &err)); + BOOST_CHECK(!VerifyScript(badsig4, scriptPubKey23, flags, MutableTransactionSignatureChecker(&txTo23, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_EVAL_FALSE, ScriptErrorString(err)); keys.clear(); keys.push_back(key1); keys.push_back(key4); // sigs must match pubkeys CScript badsig5 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig5, scriptPubKey23, flags, SignatureChecker(txTo23, 0), &err)); + BOOST_CHECK(!VerifyScript(badsig5, scriptPubKey23, flags, MutableTransactionSignatureChecker(&txTo23, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_EVAL_FALSE, ScriptErrorString(err)); keys.clear(); // Must have signatures CScript badsig6 = sign_multisig(scriptPubKey23, keys, txTo23); - BOOST_CHECK(!VerifyScript(badsig6, scriptPubKey23, flags, SignatureChecker(txTo23, 0), &err)); + BOOST_CHECK(!VerifyScript(badsig6, scriptPubKey23, flags, MutableTransactionSignatureChecker(&txTo23, 0), &err)); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_INVALID_STACK_OPERATION, ScriptErrorString(err)); } @@ -898,4 +987,121 @@ BOOST_AUTO_TEST_CASE(script_IsPushOnly_on_invalid_scripts) BOOST_CHECK(!CScript(direct, direct+sizeof(direct)).IsPushOnly()); } +static CScript +ScriptFromHex(const char* hex) +{ + std::vector data = ParseHex(hex); + return CScript(data.begin(), data.end()); +} + + +BOOST_AUTO_TEST_CASE(script_FindAndDelete) +{ + // Exercise the FindAndDelete functionality + CScript s; + CScript d; + CScript expect; + + s = CScript() << OP_1 << OP_2; + d = CScript(); // delete nothing should be a no-op + expect = s; + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 0); + BOOST_CHECK(s == expect); + + s = CScript() << OP_1 << OP_2 << OP_3; + d = CScript() << OP_2; + expect = CScript() << OP_1 << OP_3; + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 1); + BOOST_CHECK(s == expect); + + s = CScript() << OP_3 << OP_1 << OP_3 << OP_3 << OP_4 << OP_3; + d = CScript() << OP_3; + expect = CScript() << OP_1 << OP_4; + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 4); + BOOST_CHECK(s == expect); + + s = ScriptFromHex("0302ff03"); // PUSH 0x02ff03 onto stack + d = ScriptFromHex("0302ff03"); + expect = CScript(); + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 1); + BOOST_CHECK(s == expect); + + s = ScriptFromHex("0302ff030302ff03"); // PUSH 0x2ff03 PUSH 0x2ff03 + d = ScriptFromHex("0302ff03"); + expect = CScript(); + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 2); + BOOST_CHECK(s == expect); + + s = ScriptFromHex("0302ff030302ff03"); + d = ScriptFromHex("02"); + expect = s; // FindAndDelete matches entire opcodes + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 0); + BOOST_CHECK(s == expect); + + s = ScriptFromHex("0302ff030302ff03"); + d = ScriptFromHex("ff"); + expect = s; + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 0); + BOOST_CHECK(s == expect); + + // This is an odd edge case: strip of the push-three-bytes + // prefix, leaving 02ff03 which is push-two-bytes: + s = ScriptFromHex("0302ff030302ff03"); + d = ScriptFromHex("03"); + expect = CScript() << ParseHex("ff03") << ParseHex("ff03"); + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 2); + BOOST_CHECK(s == expect); + + // Byte sequence that spans multiple opcodes: + s = ScriptFromHex("02feed5169"); // PUSH(0xfeed) OP_1 OP_VERIFY + d = ScriptFromHex("feed51"); + expect = s; + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 0); // doesn't match 'inside' opcodes + BOOST_CHECK(s == expect); + + s = ScriptFromHex("02feed5169"); // PUSH(0xfeed) OP_1 OP_VERIFY + d = ScriptFromHex("02feed51"); + expect = ScriptFromHex("69"); + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 1); + BOOST_CHECK(s == expect); + + s = ScriptFromHex("516902feed5169"); + d = ScriptFromHex("feed51"); + expect = s; + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 0); + BOOST_CHECK(s == expect); + + s = ScriptFromHex("516902feed5169"); + d = ScriptFromHex("02feed51"); + expect = ScriptFromHex("516969"); + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 1); + BOOST_CHECK(s == expect); + + s = CScript() << OP_0 << OP_0 << OP_1 << OP_1; + d = CScript() << OP_0 << OP_1; + expect = CScript() << OP_0 << OP_1; // FindAndDelete is single-pass + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 1); + BOOST_CHECK(s == expect); + + s = CScript() << OP_0 << OP_0 << OP_1 << OP_0 << OP_1 << OP_1; + d = CScript() << OP_0 << OP_1; + expect = CScript() << OP_0 << OP_1; // FindAndDelete is single-pass + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 2); + BOOST_CHECK(s == expect); + + // Another weird edge case: + // End with invalid push (not enough data)... + s = ScriptFromHex("0003feed"); + d = ScriptFromHex("03feed"); // ... can remove the invalid push + expect = ScriptFromHex("00"); + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 1); + BOOST_CHECK(s == expect); + + s = ScriptFromHex("0003feed"); + d = ScriptFromHex("00"); + expect = ScriptFromHex("03feed"); + BOOST_CHECK_EQUAL(s.FindAndDelete(d), 1); + BOOST_CHECK(s == expect); +} + BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/scriptnum_tests.cpp b/src/test/scriptnum_tests.cpp index 5621e12729334..2f88b0676668d 100644 --- a/src/test/scriptnum_tests.cpp +++ b/src/test/scriptnum_tests.cpp @@ -142,7 +142,7 @@ static void RunCreate(const int64_t& num) { CheckCreateInt(num); CScriptNum scriptnum(num); - if (scriptnum.getvch().size() <= CScriptNum::nMaxNumSize) + if (scriptnum.getvch().size() <= CScriptNum::nDefaultMaxNumSize) CheckCreateVch(num); else { diff --git a/src/test/scrypt_tests.cpp b/src/test/scrypt_tests.cpp new file mode 100644 index 0000000000000..5aa7d4bdf2fd8 --- /dev/null +++ b/src/test/scrypt_tests.cpp @@ -0,0 +1,34 @@ +#include + +#include "uint256.h" +#include "util.h" +#include "crypto/scrypt.h" + +BOOST_AUTO_TEST_SUITE(scrypt_tests) + +BOOST_AUTO_TEST_CASE(scrypt_hashtest) +{ + // Test Scrypt hash with known inputs against expected outputs + #define HASHCOUNT 5 + const char* inputhex[HASHCOUNT] = { "020000004c1271c211717198227392b029a64a7971931d351b387bb80db027f270411e398a07046f7d4a08dd815412a8712f874a7ebf0507e3878bd24e20a3b73fd750a667d2f451eac7471b00de6659", "0200000011503ee6a855e900c00cfdd98f5f55fffeaee9b6bf55bea9b852d9de2ce35828e204eef76acfd36949ae56d1fbe81c1ac9c0209e6331ad56414f9072506a77f8c6faf551eac7471b00389d01", "02000000a72c8a177f523946f42f22c3e86b8023221b4105e8007e59e81f6beb013e29aaf635295cb9ac966213fb56e046dc71df5b3f7f67ceaeab24038e743f883aff1aaafaf551eac7471b0166249b", "010000007824bc3a8a1b4628485eee3024abd8626721f7f870f8ad4d2f33a27155167f6a4009d1285049603888fe85a84b6c803a53305a8d497965a5e896e1a00568359589faf551eac7471b0065434e", "0200000050bfd4e4a307a8cb6ef4aef69abc5c0f2d579648bd80d7733e1ccc3fbc90ed664a7f74006cb11bde87785f229ecd366c2d4e44432832580e0608c579e4cb76f383f7f551eac7471b00c36982" }; + const char* expected[HASHCOUNT] = { "00000000002bef4107f882f6115e0b01f348d21195dacd3582aa2dabd7985806" , "00000000003a0d11bdd5eb634e08b7feddcfbbf228ed35d250daf19f1c88fc94", "00000000000b40f895f288e13244728a6c2d9d59d8aff29c65f8dd5114a8ca81", "00000000003007005891cd4923031e99d8e8d72f6e8e7edc6a86181897e105fe", "000000000018f0b426a4afc7130ccb47fa02af730d345b4fe7c7724d3800ec8c" }; +#if defined(USE_SSE2) + scrypt_detect_sse2(); +#endif + uint256 scrypthash; + std::vector inputbytes; + char scratchpad[SCRYPT_SCRATCHPAD_SIZE]; + for (int i = 0; i < HASHCOUNT; i++) { + inputbytes = ParseHex(inputhex[i]); +#if defined(USE_SSE2) + // Test SSE2 scrypt + scrypt_1024_1_1_256_sp_sse2((const char*)&inputbytes[0], BEGIN(scrypthash), scratchpad); + BOOST_CHECK_EQUAL(scrypthash.ToString().c_str(), expected[i]); +#endif + // Test generic scrypt + scrypt_1024_1_1_256_sp_generic((const char*)&inputbytes[0], BEGIN(scrypthash), scratchpad); + BOOST_CHECK_EQUAL(scrypthash.ToString().c_str(), expected[i]); + } +} + +BOOST_AUTO_TEST_SUITE_END() diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index e50218d8efb5c..30626267ffac2 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -30,7 +30,9 @@ struct TestingSetup { boost::thread_group threadGroup; TestingSetup() { + SetupEnvironment(); fPrintToDebugLog = false; // don't want to write to debug.log file + fCheckBlockIndex = true; SelectParams(CBaseChainParams::UNITTEST); noui_connect(); #ifdef ENABLE_WALLET diff --git a/src/test/transaction_tests.cpp b/src/test/transaction_tests.cpp index e939e89972593..2534b2f99de14 100644 --- a/src/test/transaction_tests.cpp +++ b/src/test/transaction_tests.cpp @@ -38,7 +38,9 @@ static std::map mapFlagNames = boost::assign::map_list_of (string("SIGPUSHONLY"), (unsigned int)SCRIPT_VERIFY_SIGPUSHONLY) (string("MINIMALDATA"), (unsigned int)SCRIPT_VERIFY_MINIMALDATA) (string("NULLDUMMY"), (unsigned int)SCRIPT_VERIFY_NULLDUMMY) - (string("DISCOURAGE_UPGRADABLE_NOPS"), (unsigned int)SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS); + (string("DISCOURAGE_UPGRADABLE_NOPS"), (unsigned int)SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS) + (string("CLEANSTACK"), (unsigned int)SCRIPT_VERIFY_CLEANSTACK) + (string("CHECKLOCKTIMEVERIFY"), (unsigned int)SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY); unsigned int ParseScriptFlags(string strFlags) { @@ -145,7 +147,7 @@ BOOST_AUTO_TEST_CASE(tx_valid) unsigned int verify_flags = ParseScriptFlags(test[2].get_str()); BOOST_CHECK_MESSAGE(VerifyScript(tx.vin[i].scriptSig, mapprevOutScriptPubKeys[tx.vin[i].prevout], - verify_flags, SignatureChecker(tx, i), &err), + verify_flags, TransactionSignatureChecker(&tx, i), &err), strTest); BOOST_CHECK_MESSAGE(err == SCRIPT_ERR_OK, ScriptErrorString(err)); } @@ -220,7 +222,7 @@ BOOST_AUTO_TEST_CASE(tx_invalid) unsigned int verify_flags = ParseScriptFlags(test[2].get_str()); fValid = VerifyScript(tx.vin[i].scriptSig, mapprevOutScriptPubKeys[tx.vin[i].prevout], - verify_flags, SignatureChecker(tx, i), &err); + verify_flags, TransactionSignatureChecker(&tx, i), &err); } BOOST_CHECK_MESSAGE(!fValid, strTest); BOOST_CHECK_MESSAGE(err != SCRIPT_ERR_OK, ScriptErrorString(err)); @@ -338,8 +340,9 @@ BOOST_AUTO_TEST_CASE(test_IsStandard) string reason; BOOST_CHECK(IsStandardTx(t, reason)); - t.vout[0].nValue = 501; // dust - BOOST_CHECK(!IsStandardTx(t, reason)); + // Hypercoin: IsDust() is disabled in favor of the per-dust output fee + //t.vout[0].nValue = 501; // dust + //BOOST_CHECK(!IsStandardTx(t, reason)); t.vout[0].nValue = 601; // not dust BOOST_CHECK(IsStandardTx(t, reason)); @@ -347,12 +350,12 @@ BOOST_AUTO_TEST_CASE(test_IsStandard) t.vout[0].scriptPubKey = CScript() << OP_1; BOOST_CHECK(!IsStandardTx(t, reason)); - // 40-byte TX_NULL_DATA (standard) - t.vout[0].scriptPubKey = CScript() << OP_RETURN << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38"); + // 80-byte TX_NULL_DATA (standard) + t.vout[0].scriptPubKey = CScript() << OP_RETURN << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef3804678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38"); BOOST_CHECK(IsStandardTx(t, reason)); - // 41-byte TX_NULL_DATA (non-standard) - t.vout[0].scriptPubKey = CScript() << OP_RETURN << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef3800"); + // 81-byte TX_NULL_DATA (non-standard) + t.vout[0].scriptPubKey = CScript() << OP_RETURN << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef3804678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef3800"); BOOST_CHECK(!IsStandardTx(t, reason)); // TX_NULL_DATA w/o PUSHDATA diff --git a/src/timedata.cpp b/src/timedata.cpp index 59f7778db1724..6a2f58bb61c22 100644 --- a/src/timedata.cpp +++ b/src/timedata.cpp @@ -40,6 +40,8 @@ static int64_t abs64(int64_t n) return (n >= 0 ? n : -n); } +#define BITCOIN_TIMEDATA_MAX_SAMPLES 200 + void AddTimeData(const CNetAddr& ip, int64_t nTime) { int64_t nOffsetSample = nTime - GetTime(); @@ -47,11 +49,13 @@ void AddTimeData(const CNetAddr& ip, int64_t nTime) LOCK(cs_nTimeOffset); // Ignore duplicates static set setKnown; + if (setKnown.size() == BITCOIN_TIMEDATA_MAX_SAMPLES) + return; if (!setKnown.insert(ip).second) return; // Add data - static CMedianFilter vTimeOffsets(200,0); + static CMedianFilter vTimeOffsets(BITCOIN_TIMEDATA_MAX_SAMPLES, 0); vTimeOffsets.input(nOffsetSample); LogPrintf("Added time data, samples %d, offset %+d (%+d minutes)\n", vTimeOffsets.size(), nOffsetSample, nOffsetSample/60); @@ -77,7 +81,7 @@ void AddTimeData(const CNetAddr& ip, int64_t nTime) int64_t nMedian = vTimeOffsets.median(); std::vector vSorted = vTimeOffsets.sorted(); // Only let other nodes change our time by so much - if (abs64(nMedian) < 70 * 60) + if (abs64(nMedian) < 35 * 60) { nTimeOffset = nMedian; } @@ -97,7 +101,7 @@ void AddTimeData(const CNetAddr& ip, int64_t nTime) if (!fMatch) { fDone = true; - string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly."); + string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong Hypercoin Core will not work properly."); strMiscWarning = strMessage; LogPrintf("*** %s\n", strMessage); uiInterface.ThreadSafeMessageBox(strMessage, "", CClientUIInterface::MSG_WARNING); diff --git a/src/txdb.cpp b/src/txdb.cpp index 0731d843f3eec..e3f38e04a3079 100644 --- a/src/txdb.cpp +++ b/src/txdb.cpp @@ -212,8 +212,14 @@ bool CBlockTreeDB::LoadBlockIndexGuts() pindexNew->nStatus = diskindex.nStatus; pindexNew->nTx = diskindex.nTx; - if (!CheckProofOfWork(pindexNew->GetBlockHash(), pindexNew->nBits)) - return error("LoadBlockIndex() : CheckProofOfWork failed: %s", pindexNew->ToString()); + // Hypercoin: Disable PoW Sanity check while loading block index from disk. + // We use the sha256 hash for the block index for performance reasons, which is recorded for later use. + // CheckProofOfWork() uses the scrypt hash which is discarded after a block is accepted. + // While it is technically feasible to verify the PoW, doing so takes several minutes as it + // requires recomputing every PoW hash during every Hypercoin startup. + // We opt instead to simply trust the data that is on your local disk. + //if (!CheckProofOfWork(pindexNew->GetBlockPoWHash(), pindexNew->nBits)) + // return error("LoadBlockIndex() : CheckProofOfWork failed: %s", pindexNew->ToString()); pcursor->Next(); } else { diff --git a/src/txmempool.cpp b/src/txmempool.cpp index 840eb536baa01..db598a1dfa503 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -91,22 +91,32 @@ class CBlockAverage * Used as belt-and-suspenders check when reading to detect * file corruption */ - bool AreSane(const std::vector& vecFee, const CFeeRate& minRelayFee) + static bool AreSane(const CFeeRate fee, const CFeeRate& minRelayFee) + { + if (fee < CFeeRate(0)) + return false; + if (fee.GetFeePerK() > minRelayFee.GetFeePerK() * 10000) + return false; + return true; + } + static bool AreSane(const std::vector& vecFee, const CFeeRate& minRelayFee) { BOOST_FOREACH(CFeeRate fee, vecFee) { - if (fee < CFeeRate(0)) - return false; - if (fee.GetFeePerK() > minRelayFee.GetFeePerK() * 10000) + if (!AreSane(fee, minRelayFee)) return false; } return true; } - bool AreSane(const std::vector vecPriority) + static bool AreSane(const double priority) + { + return priority >= 0; + } + static bool AreSane(const std::vector vecPriority) { BOOST_FOREACH(double priority, vecPriority) { - if (priority < 0) + if (!AreSane(priority)) return false; } return true; @@ -167,12 +177,12 @@ class CMinerPolicyEstimator bool sufficientFee = (feeRate > minRelayFee); bool sufficientPriority = AllowFree(dPriority); const char* assignedTo = "unassigned"; - if (sufficientFee && !sufficientPriority) + if (sufficientFee && !sufficientPriority && CBlockAverage::AreSane(feeRate, minRelayFee)) { history[nBlocksTruncated].RecordFee(feeRate); assignedTo = "fee"; } - else if (sufficientPriority && !sufficientFee) + else if (sufficientPriority && !sufficientFee && CBlockAverage::AreSane(dPriority)) { history[nBlocksTruncated].RecordPriority(dPriority); assignedTo = "priority"; @@ -434,6 +444,18 @@ void CTxMemPool::remove(const CTransaction &origTx, std::list& rem LOCK(cs); std::deque txToRemove; txToRemove.push_back(origTx.GetHash()); + if (fRecursive && !mapTx.count(origTx.GetHash())) { + // If recursively removing but origTx isn't in the mempool + // be sure to remove any children that are in the pool. This can + // happen during chain re-orgs if origTx isn't re-accepted into + // the mempool for any reason. + for (unsigned int i = 0; i < origTx.vout.size(); i++) { + std::map::iterator it = mapNextTx.find(COutPoint(origTx.GetHash(), i)); + if (it == mapNextTx.end()) + continue; + txToRemove.push_back(it->second.ptx->GetHash()); + } + } while (!txToRemove.empty()) { uint256 hash = txToRemove.front(); diff --git a/src/txmempool.h b/src/txmempool.h index f671352b58552..dc58f35a4690c 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -17,7 +17,7 @@ class CAutoFile; inline double AllowFreeThreshold() { - return COIN * 144 / 250; + return COIN * 576 / 250; } inline bool AllowFree(double dPriority) diff --git a/src/util.cpp b/src/util.cpp index 0cdf4e614d8df..24e625b430a3a 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -78,6 +78,7 @@ #include #include #include +#include // Work around clang compilation problem in Boost 1.46: // /usr/include/boost/program_options/detail/config_file.hpp:163:17: error: call to function 'to_internal' that is neither visible in the template definition nor found by argument-dependent lookup @@ -128,6 +129,13 @@ class CInit ppmutexOpenSSL[i] = new CCriticalSection(); CRYPTO_set_locking_callback(locking_callback); + // OpenSSL can optionally load a config file which lists optional loadable modules and engines. + // We don't use them so we don't require the config. However some of our libs may call functions + // which attempt to load the config file, possibly resulting in an exit() or crash if it is missing + // or corrupt. Explicitly tell OpenSSL not to try to load the file. The result for our libs will be + // that the config appears to have been loaded and there are no modules/engines available. + OPENSSL_no_config(); + #ifdef WIN32 // Seed OpenSSL PRNG with current contents of the screen RAND_screen(); @@ -352,7 +360,7 @@ static std::string FormatException(std::exception* pex, const char* pszThread) char pszModule[MAX_PATH] = ""; GetModuleFileNameA(NULL, pszModule, sizeof(pszModule)); #else - const char* pszModule = "bitcoin"; + const char* pszModule = "hypercoin"; #endif if (pex) return strprintf( @@ -373,13 +381,13 @@ void PrintExceptionContinue(std::exception* pex, const char* pszThread) boost::filesystem::path GetDefaultDataDir() { namespace fs = boost::filesystem; - // Windows < Vista: C:\Documents and Settings\Username\Application Data\Bitcoin - // Windows >= Vista: C:\Users\Username\AppData\Roaming\Bitcoin - // Mac: ~/Library/Application Support/Bitcoin - // Unix: ~/.bitcoin + // Windows < Vista: C:\Documents and Settings\Username\Application Data\Hypercoin + // Windows >= Vista: C:\Users\Username\AppData\Roaming\Hypercoin + // Mac: ~/Library/Application Support/Hypercoin + // Unix: ~/.hypercoin #ifdef WIN32 // Windows - return GetSpecialFolderPath(CSIDL_APPDATA) / "Bitcoin"; + return GetSpecialFolderPath(CSIDL_APPDATA) / "Hypercoin"; #else fs::path pathRet; char* pszHome = getenv("HOME"); @@ -391,10 +399,10 @@ boost::filesystem::path GetDefaultDataDir() // Mac pathRet /= "Library/Application Support"; TryCreateDirectory(pathRet); - return pathRet / "Bitcoin"; + return pathRet / "Hypercoin"; #else // Unix - return pathRet / ".bitcoin"; + return pathRet / ".hypercoin"; #endif #endif } @@ -441,7 +449,7 @@ void ClearDatadirCache() boost::filesystem::path GetConfigFile() { - boost::filesystem::path pathConfigFile(GetArg("-conf", "bitcoin.conf")); + boost::filesystem::path pathConfigFile(GetArg("-conf", "hypercoin.conf")); if (!pathConfigFile.is_complete()) pathConfigFile = GetDataDir(false) / pathConfigFile; @@ -453,14 +461,14 @@ void ReadConfigFile(map& mapSettingsRet, { boost::filesystem::ifstream streamConfig(GetConfigFile()); if (!streamConfig.good()) - return; // No bitcoin.conf file is OK + return; // No hypercoin.conf file is OK set setOptions; setOptions.insert("*"); for (boost::program_options::detail::config_file_iterator it(streamConfig, setOptions), end; it != end; ++it) { - // Don't overwrite existing settings so command line settings override bitcoin.conf + // Don't overwrite existing settings so command line settings override hypercoin.conf string strKey = string("-") + it->string_key; if (mapSettingsRet.count(strKey) == 0) { @@ -477,7 +485,7 @@ void ReadConfigFile(map& mapSettingsRet, #ifndef WIN32 boost::filesystem::path GetPidFile() { - boost::filesystem::path pathPidFile(GetArg("-pid", "bitcoind.pid")); + boost::filesystem::path pathPidFile(GetArg("-pid", "hypercoind.pid")); if (!pathPidFile.is_complete()) pathPidFile = GetDataDir() / pathPidFile; return pathPidFile; } @@ -713,19 +721,21 @@ void RenameThread(const char* name) void SetupEnvironment() { -#ifndef WIN32 - try - { -#if BOOST_FILESYSTEM_VERSION == 3 - boost::filesystem::path::codecvt(); // Raises runtime error if current locale is invalid -#else // boost filesystem v2 - std::locale(); // Raises runtime error if current locale is invalid -#endif - } catch(std::runtime_error &e) - { - setenv("LC_ALL", "C", 1); // Force C locale + // On most POSIX systems (e.g. Linux, but not BSD) the environment's locale + // may be invalid, in which case the "C" locale is used as fallback. +#if !defined(WIN32) && !defined(MAC_OSX) && !defined(__FreeBSD__) && !defined(__OpenBSD__) + try { + std::locale(""); // Raises a runtime error if current locale is invalid + } catch (const std::runtime_error&) { + setenv("LC_ALL", "C", 1); } #endif + // The path locale is lazy initialized and to avoid deinitialization errors + // in multithreading environments, it is set explicitly by the main thread. + // A dummy locale is used to extract the internal default locale, used by + // boost::filesystem::path, which is then used to explicitly imbue the path. + std::locale loc = boost::filesystem::path::imbue(std::locale::classic()); + boost::filesystem::path::imbue(loc); } void SetThreadPriority(int nPriority) diff --git a/src/util.h b/src/util.h index a4aaf29f914ae..a430116ebd57e 100644 --- a/src/util.h +++ b/src/util.h @@ -175,7 +175,7 @@ void RenameThread(const char* name); */ template void LoopForever(const char* name, Callable func, int64_t msecs) { - std::string s = strprintf("bitcoin-%s", name); + std::string s = strprintf("hypercoin-%s", name); RenameThread(s.c_str()); LogPrintf("%s thread start\n", name); try @@ -206,7 +206,7 @@ template void LoopForever(const char* name, Callable func, */ template void TraceThread(const char* name, Callable func) { - std::string s = strprintf("bitcoin-%s", name); + std::string s = strprintf("hypercoin-%s", name); RenameThread(s.c_str()); try { diff --git a/src/version.h b/src/version.h index a5a72c5467b34..6309aa4d44be0 100644 --- a/src/version.h +++ b/src/version.h @@ -9,13 +9,13 @@ * network protocol versioning */ -static const int PROTOCOL_VERSION = 70002; +static const int PROTOCOL_VERSION = 70003; //! initial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209; //! In this version, 'getheaders' was introduced. -static const int GETHEADERS_VERSION = 31800; +static const int GETHEADERS_VERSION = 70002; //! disconnect from peers older than this proto version static const int MIN_PEER_PROTO_VERSION = GETHEADERS_VERSION; diff --git a/src/wallet.cpp b/src/wallet.cpp index 32a64daac0c99..29f3c7002e2b1 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -26,16 +26,19 @@ using namespace std; * Settings */ CFeeRate payTxFee(DEFAULT_TRANSACTION_FEE); -unsigned int nTxConfirmTarget = 1; +CAmount maxTxFee = DEFAULT_TRANSACTION_MAXFEE; +unsigned int nTxConfirmTarget = 2; bool bSpendZeroConfChange = true; bool fSendFreeTransactions = false; bool fPayAtLeastCustomFee = true; +CAmount nMinimumInputThreshold = DEFAULT_MINIMUM_INPUT_THRESHOLD; + /** * Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) * Override with -mintxfee */ -CFeeRate CWallet::minTxFee = CFeeRate(1000); +CFeeRate CWallet::minTxFee = CFeeRate(DEFAULT_TX_FEE); /** @defgroup mapWallet * @@ -1178,7 +1181,7 @@ void CWallet::AvailableCoins(vector& vCoins, bool fOnlyConfirmed, const for (unsigned int i = 0; i < pcoin->vout.size(); i++) { isminetype mine = IsMine(pcoin->vout[i]); if (!(IsSpent(wtxid, i)) && mine != ISMINE_NO && - !IsLockedCoin((*it).first, i) && pcoin->vout[i].nValue > 0 && + !IsLockedCoin((*it).first, i) && pcoin->vout[i].nValue >= nMinimumInputThreshold && (!coinControl || !coinControl->HasSelected() || coinControl->IsSelected((*it).first, i))) vCoins.push_back(COutput(pcoin, i, nDepth, (mine & ISMINE_SPENDABLE) != ISMINE_NO)); } @@ -1394,6 +1397,7 @@ bool CWallet::CreateTransaction(const vector >& vecSend, CAmount nTotalValue = nValue + nFeeRet; double dPriority = 0; + unsigned int nBytesPenalty = 0; // vouts to the payees BOOST_FOREACH (const PAIRTYPE(CScript, CAmount)& s, vecSend) { @@ -1403,6 +1407,10 @@ bool CWallet::CreateTransaction(const vector >& vecSend, strFailReason = _("Transaction amount too small"); return false; } + if (txout.nValue < DUST_THRESHOLD) + { + nBytesPenalty += 1000; + } txNew.vout.push_back(txout); } @@ -1417,10 +1425,14 @@ bool CWallet::CreateTransaction(const vector >& vecSend, BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins) { CAmount nCredit = pcoin.first->vout[pcoin.second].nValue; - //The priority after the next block (depth+1) is used instead of the current, + //The coin age after the next block (depth+1) is used instead of the current, //reflecting an assumption the user would accept a bit more delay for //a chance at a free transaction. - dPriority += (double)nCredit * (pcoin.first->GetDepthInMainChain()+1); + //But mempool inputs might still be in the mempool, so their age stays 0 + int age = pcoin.first->GetDepthInMainChain(); + if (age != 0) + age += 1; + dPriority += (double)nCredit * age; } CAmount nChange = nValueIn - nValue - nFeeRet; @@ -1459,7 +1471,7 @@ bool CWallet::CreateTransaction(const vector >& vecSend, // Never create dust outputs; if we would, just // add the dust to the fee. - if (newTxOut.IsDust(::minRelayTxFee)) + if (newTxOut.nValue < DUST_THRESHOLD) { nFeeRet += nChange; reservekey.ReturnKey(); @@ -1499,27 +1511,32 @@ bool CWallet::CreateTransaction(const vector >& vecSend, } dPriority = wtxNew.ComputePriority(dPriority, nBytes); - CAmount nFeeNeeded = GetMinimumFee(nBytes, nTxConfirmTarget, mempool); + // Can we complete this as a free transaction? + if (!nBytesPenalty && fSendFreeTransactions && nBytes <= MAX_FREE_TRANSACTION_CREATE_SIZE) + { + // Not enough fee: enough priority? + double dPriorityNeeded = mempool.estimatePriority(nTxConfirmTarget); + // Not enough mempool history to estimate: use hard-coded AllowFree. + if (dPriorityNeeded <= 0 && AllowFree(dPriority)) + break; + + // Small enough, and priority high enough, to send for free + if (dPriorityNeeded > 0 && dPriority >= dPriorityNeeded) + break; + } - if (nFeeRet >= nFeeNeeded) - break; // Done, enough fee included. + CAmount nFeeNeeded = GetMinimumFee(nBytes + nBytesPenalty, nTxConfirmTarget, mempool); - // Too big to send for free? Include more fee and try again: - if (!fSendFreeTransactions || nBytes > MAX_FREE_TRANSACTION_CREATE_SIZE) + // If we made it here and we aren't even able to meet the relay fee on the next pass, give up + // because we must be at the maximum allowed fee. + if (nFeeNeeded < ::minRelayTxFee.GetFee(nBytes)) { - nFeeRet = nFeeNeeded; - continue; + strFailReason = _("Transaction too large for fee policy"); + return false; } - // Not enough fee: enough priority? - double dPriorityNeeded = mempool.estimatePriority(nTxConfirmTarget); - // Not enough mempool history to estimate: use hard-coded AllowFree. - if (dPriorityNeeded <= 0 && AllowFree(dPriority)) - break; - - // Small enough, and priority high enough, to send for free - if (dPriorityNeeded > 0 && dPriority >= dPriorityNeeded) - break; + if (nFeeRet >= nFeeNeeded) + break; // Done, enough fee included. // Include more fee and try again. nFeeRet = nFeeNeeded; @@ -1591,9 +1608,6 @@ CAmount CWallet::GetMinimumFee(unsigned int nTxBytes, unsigned int nConfirmTarge { // payTxFee is user-set "I want to pay this much" CAmount nFeeNeeded = payTxFee.GetFee(nTxBytes); - // prevent user from paying a non-sense fee (like 1 satoshi): 0 < fee < minRelayFee - if (nFeeNeeded > 0 && nFeeNeeded < ::minRelayTxFee.GetFee(nTxBytes)) - nFeeNeeded = ::minRelayTxFee.GetFee(nTxBytes); // user selected total at least (default=true) if (fPayAtLeastCustomFee && nFeeNeeded > 0 && nFeeNeeded < payTxFee.GetFeePerK()) nFeeNeeded = payTxFee.GetFeePerK(); @@ -1604,6 +1618,12 @@ CAmount CWallet::GetMinimumFee(unsigned int nTxBytes, unsigned int nConfirmTarge // back to a hard-coded fee if (nFeeNeeded == 0) nFeeNeeded = minTxFee.GetFee(nTxBytes); + // prevent user from paying a non-sense fee (like 1 satoshi): 0 < fee < minRelayFee + if (nFeeNeeded < ::minRelayTxFee.GetFee(nTxBytes)) + nFeeNeeded = ::minRelayTxFee.GetFee(nTxBytes); + // But always obey the maximum + if (nFeeNeeded > maxTxFee) + nFeeNeeded = maxTxFee; return nFeeNeeded; } diff --git a/src/wallet.h b/src/wallet.h index 2dd2146e8cf27..75082a814084f 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -30,17 +30,24 @@ * Settings */ extern CFeeRate payTxFee; +extern CAmount maxTxFee; extern unsigned int nTxConfirmTarget; extern bool bSpendZeroConfChange; extern bool fSendFreeTransactions; extern bool fPayAtLeastCustomFee; +extern CAmount nMinimumInputThreshold; + //! -paytxfee default static const CAmount DEFAULT_TRANSACTION_FEE = 0; //! -paytxfee will warn if called with a higher fee than this amount (in satoshis) per KB static const CAmount nHighTransactionFeeWarning = 0.01 * COIN; +//! -maxtxfee default +static const CAmount DEFAULT_TRANSACTION_MAXFEE = 0.1 * COIN; +//! -maxtxfee will warn if called with a higher fee than this amount (in satoshis) +static const CAmount nHighTransactionMaxFeeWarning = 100 * nHighTransactionFeeWarning; //! Largest (in bytes) free transaction we're willing to create -static const unsigned int MAX_FREE_TRANSACTION_CREATE_SIZE = 1000; +static const unsigned int MAX_FREE_TRANSACTION_CREATE_SIZE = 5000; class CAccountingEntry; class CCoinControl; @@ -328,7 +335,7 @@ class CWallet : public CCryptoKeyStore, public CValidationInterface bool IsMine(const CTransaction& tx) const { BOOST_FOREACH(const CTxOut& txout, tx.vout) - if (IsMine(txout)) + if (IsMine(txout) && txout.nValue >= nMinimumInputThreshold) return true; return false; } diff --git a/src/walletdb.cpp b/src/walletdb.cpp index ffddd8106b31f..d51a9ff0e7197 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -790,7 +790,7 @@ DBErrors CWalletDB::ZapWalletTx(CWallet* pwallet, vector& vWtx) void ThreadFlushWalletDB(const string& strFile) { // Make this thread recognisable as the wallet flushing thread - RenameThread("bitcoin-wallet"); + RenameThread("hypercoin-wallet"); static bool fOneThread; if (fOneThread)