1 watch actual coin news with cryptomarket mood rating.

Segregated Witness, Part 1: How a Clever Hack Could Significantly Increase Bitcoin's Potential

Bitcoin Magazine, 1/1/0001 12:00 AM PST

If one proposal excited attendees at the recent Scaling Bitcoin workshop in Hong Kong, Bitcoin Core and Blockstream, it was developer Dr. Pieter Wuille's Segregated Witness. Praised by many within the technical community, Segregated Witness is expected to improve Bitcoin's performance in a number of ways, while some even hope it might be the scaling solution that helps bring some peace back to the Bitcoin community.

In this first part of Bitcoin Magazine’s three-part series on Segregated Witness: how it works.

What are Bitcoin transactions again?

In order to understand Segregated Witness, it is helpful to understand what Bitcoin transactions are on a more technical level. (Feel free to skip to the last section of this article if this is a familiar subject.)

For starters, it's important to realize that the Bitcoin protocol, at its core, consists of transactions. Nodes on the peer-to-peer network don't send each other bitcoin; they send each other packages that contain transaction data.

These Bitcoin transactions, in a way, are really sets of “locks.” More specifically, each transaction contains two main components. One half effectively unlocks bitcoin that were locked up in previous transactions, using pieces of data called inputs. Inputs include scripts, instructions on how to unlock the input, called scriptSigs . The other half consists of one or several new locks called outputs, which lock the same amount or less bitcoin up again. Outputs include scripts called scriptPubKeys. As such, bitcoin effectively move from inputs to outputs within a single transaction, and jump from transaction to transaction at the same time.

There is one main exception to this rule. A coinbase transaction (not to be confused by the wallet company and exchange with the same name) is the transaction created by a miner when he finds a new block, and contains the block reward: currently 25 bitcoin. Additionally, a miner can increase the coinbase reward by any amount of bitcoin that was unlocked in transactions, but not locked up again: the difference between the inputs and the outputs. These are the transaction fees.

All of this “unlocking” and “locking up” of bitcoin is done by senders of transactions, and subsequently transmitted over the Bitcoin network as packages of information. All nodes on the network, then, check whether this process of unlocking and locking up was done correctly. If everything checks out, they forward the transaction to other nodes. And if a node is also a miner, it might include the transaction in a block. Whether he actually does so is up to the miner, however; that's why it makes sense to include a fee.

It is of vital importance that the rules used by all nodes to verify transactions are compatible with the rules used by (almost) all miners. If some miners would include transactions in blocks that other nodes reject, the whole block would be considered invalid by that node. If that node is also a miner, this could lead to double spends and network forks.

These consensus rules the rules all nodes agree on allow transactions to lock up (and unlock) bitcoin in several different ways at once. But outputs that lock up bitcoin typically, at least, include a scriptPubKey along the lines of: “Prove that you own (or: know) the private key that corresponds to the public key that corresponds to this Bitcoin address.”

(It's easy to reproduce a public key from a private key, but it's basically impossible to reproduce a private key from a public key. Similarly, it's easy to reproduce a Bitcoin address from a public key, but it's impossible to reproduce a public key from a Bitcoin address. As such, it's also easy to reproduce a Bitcoin address from a private key, but impossible to reproduce a private key from a Bitcoin address. It's a “one way street.”)

The Bitcoin address used to lock bitcoin up in the scriptPubKey, of course, is the address provided by the receiving end of the transaction. Since the receiver created that address using a private key only he knows, he is the only one who can create a valid scriptSig, and therefore the only one who can create a new transaction and spend the locked up bitcoin.

Where do signatures come in?

To prove ownership of the private key that corresponds to the public key that corresponds to a Bitcoin address, one could theoretically include the private key in the scriptSig of a transaction. But, of course, that's not safe at all. Most importantly, anyone who sees the transaction could take the private key, and create a new transaction (or change the original transaction) to attribute himself as many bitcoin as are locked up before the original transaction is included in a block. In fact, if a miner did this, it would become a piece of cake to steal bitcoin, since he's the one picking which transactions to confirm.

Instead, therefore, the scriptPubKeys typically require the scriptSig to include one or more signatures in order to unlock bitcoin.

Signatures are a cryptographic trick which uses a private key in combination with any other data to calculate a unique string of numbers. And, using the magic of cryptography, the corresponding public key can be used to verify that the signature was created using that private key. As such, signatures prove both ownership of a private key, as well as approval of a specific piece of data by the owner of that private key, all without actually needing to reveal the private key.

In Bitcoin's case, private keys are typically used to sign the transaction data minus the inputs. (Hence, the scriptPubKeys, the locked amounts, and some additional details.) Subsequently, this signature and the public key from which bitcoin are spent are added to the input field of the transaction. This proves that the owner of the private key really intended to create the transaction and makes sure it cannot be tampered with.

Then, all of this transaction data – including the inputs this time – is hashed together, which creates the transaction ID, identifying the specific transaction. If a transaction is subsequently included in a block, the miner hashes the transaction ID together with another transaction ID to produce a new hash. And this hash is hashed again, this time along with the hash from two other transaction IDs. This process continues until there is only one hash left. This structure of hashes is called a Merkle Tree, and the remaining hash the Merkle Root . This Merkle Root is combined with additional block data to form the block header , which is used to identify the specific block. A hash of this block header, finally, must be included in the next block’s header, chaining blocks together.

Bitcoin is considered immutable because changing any part of any transaction retroactively would alter the transaction ID, in turn altering the block header. But this altered block header would no longer meet the proof of work requirement. And since the block header influences the make-up of subsequent block headers, neither would any of those.

What is a Segregated Witness?

The Segregated Witness proposal as presented by Wuille in Hong Kong is based on a concept used in Blockstream's sidechainElements, and a complementing idea by Bitcoin Core developer Luke Dashjr. It was conceptualized over the past couple of months in cooperation with Bitcoin Core developers Gregory Maxwell and Eric Lombrozo, and might be rolled out over the next year.

As such, from the perspective of Bitcoin nodes that don't use Segregated Witness (lets call them “old nodes”), some newly created outputs might soon use a strange type of scriptPubKeys. Strange, because these scriptPubKeys can hardly be considered a lock at all. Commonly referred to as an “Anyone can spend,” these scriptPubKeys basically proclaim they don't require a signature. Additionally, they will include some meaningless text.

Old nodes will consider these transactions crazy. They will think that anyone can create a new scriptSig, unlocking these outputs, meaning they're highly insecure. But at the same time, old nodes won't mind either. After all, it's not their bitcoin that's being messed around with, and other people are free to do with their bitcoin as they please. The meaningless text will be considered weird, but fine too. So they'll confirm the transactions as valid, and forward it to other nodes.

However, Segregated Witness-enabled nodes (lets call them “new nodes”) will notice something else. They will see the otherwise meaningless text in the scriptPubKey, but not consider it meaningless at all. Instead, new nodes will recognize this piece of text as another – very special – type of output.

Much like typical outputs, this new type of output will require one or several signatures to unlock the bitcoin. But unlike typical outputs, this new type of output will not require the signature to be included in the scriptSig of a subsequent transaction. Instead, it will require the signature to be included in a completely new part of the transaction: the Segregated Witness.

This Segregated Witness is basically an “add-on” that carries signatures and some additional data. Importantly, Segregated Witnesses are completely ignored by old nodes, but recognized by new nodes. Moreover, the data they carry is not hashed along with the other parts of a transaction into the transaction ID.

As such, both old nodes and new nodes will consider transactions containing signatures in the Segregated Witness valid. Old nodes validate them because from their perspective these transactions don't require a signature at all (and they don't see one), and new nodes validate them because the required signature is in the Segregated Witness. And since both old and new nodes hash the transaction data into the same transaction ID, everyone agrees on the makeup of blocks, and, as such, on the structure of the entire blockchain.

(Note that it is important that all miners – or a very large majority – should use Segregated Witness in order to prevent double spends and chain forks, or none of them should. If all miners do use Segregated Witness, old nodes on the network might wonder why some transactions aren't included in blocks, but since it was always up to miners to decide which transactions to include, and since these are not their transactions, they won't mind, either.)

But there is one problem: If signatures have no effect on the makeup of the blockchain, the blockchain no longer serves as proof that the correct signatures were included in transactions.

To make sure that signatures are embedded in the blockchain regardless, a Segregated Witness-enabled miner adds a trick, too. Rather than creating only a Merkle Tree out of all of the transactions, it also creates a Merkle Tree out of all Segregated Witnesses, to mirror the transaction tree. The Segregated Witness Merkle Root, then, is included in the input field of the coinbase transaction. As such the Segregated Witness Merkle Root changes the transaction data of the coinbase transaction, its transaction ID, therefore influences the block header and, ultimately, the makeup of the blockchain.

Wuille’s Segregated Witness proposal allows signatures to be removed from Bitcoin transactions, while maintaining Bitcoin's immutability, and without breaking any of the existing consensus rules.


The second part of this three-part story, to be published tomorrow, will explore why Segregated Witness is actually useful.

Thanks go out to Blockstream co-founders Pieter Wuille and Mark Friedenbach, Ciphrex CEO Eric Lombrozo, and Blocktrail CTO Ruben de Vries for providing information and added feedback.

The post Segregated Witness, Part 1: How a Clever Hack Could Significantly Increase Bitcoin's Potential appeared first on Bitcoin Magazine.

Eating the Bitcoin Cake

CoinDesk, 1/1/0001 12:00 AM PST

Litecoin creator Charlie Lee discusses the trade-offs developers are currently considering as they seek to increase the bitcoin network's capacity.

Eating the Bitcoin Cake

CoinDesk, 1/1/0001 12:00 AM PST

Litecoin creator Charlie Lee discusses the trade-offs developers are currently considering as they seek to increase the bitcoin network's capacity.

MaskNetwork, the Decentralized Marketplace is Launching the Testnet

CryptoCoins News, 1/1/0001 12:00 AM PST

Bitcoin Press Release: MaskNetwork team is excited to announce the alpha release of the open source testnet to the community. This will give people an opportunity to get involved with the project and experiment with MaskNetwork features like multi signatures or integrated escrow system, and gain a better understanding of the technical properties of the MaskNetwork platform. Launching the testnet at this date will give those interested in the fundraiser a chance to better understand what the MaskNetwork project is about before participating. MaskNetwork project was officially announced in July 2015, and received vocal support from the Bitcoin community, who […]

The post MaskNetwork, the Decentralized Marketplace is Launching the Testnet appeared first on CCN: Financial Bitcoin & Cryptocurrency News.

A veteran finance entrepreneur is getting behind the hottest tech around — blockchain

Business Insider, 1/1/0001 12:00 AM PST

A man views the skyscrapers in Canary Wharf on November 26, 2009 in London, England. Former banker Sir David Walker has published his report, commissioned by the Government, into the corporate governance of banks. Amongst his conclusions is the requirement for UK's banks to publicly disclose the number of employees earning over 1 million GDP per year. (Photo by )

SETL, a UK startup building technology for banks based on bitcoin, has lined up a former executive director of the Bank of England to lead its board and is raising between £20 million ($30 million) and £30 million ($45 million).

SETL, which launched in July, says Sir David Walker will join the startup as chairman once it closes its current funding round, which The Financial Times reports will be up to £30 million. SETL founder Peter Randall wouldn't confirm the figure to Business Insider but said it was in the right ballpark.

SETL has appointed Caroline Silver, a managing director at boutique investment bank Moelis & Co. to lead its fundraising efforts.

The appointment of Sir David as chairman is a huge coup for SETL and a big endorsement for blockchain technology, which SETL is working on. Sir David's glittering City CV includes: an executive director of the Bank of England; chairman of Barclays; chairman of Morgan Stanley International; and deputy chairman of Lloyds.

SETL is working on technology that would allow banks to trade cash and assets directly with each other, rather than the current system which requires them to work through an intermediary.

The startup's technology is based around the blockchain, the software that underpins digital currency bitcoin. The blockchain powers bitcoin transactions and records ownership, letting a wide network of users check the accuracy and utilising cryptography to prevent tampering.

Peter Randall, SETL's COO and co-founder, told Business Insider: "We feel that the SETL blockchain will do for payments and finance what containers did for shipping and world trade." In other words, unlock huge amounts of value and cut down on costs.

SETL's private blockchain can handle up to a billion transactions a day, based on simulating transactions at the same rate as the Bank of England gets them.

Sir David say in an emailed statement today:

I am very pleased to accept this position with SETL. Blockchain is an important advance in settlement technology and SETL has a compelling proposition for its deployment. By simplifying the process of payments and settlement SETL should be able to deliver significant operational efficiencies which will benefit all market participants and, most importantly, reduce costs borne by savers and investors.

'We decided this was the next space to bring into the 21st century'

Randall says: "A blockchain in itself is a relatively straight forward thing, it's just a distributed ledger.

"Instead of keeping one ledger in one place and letting people have access to it, you keep a copy of it in lots of different places. Everybody has access to it, but the entries on that ledger are encrypted in a way that means the identity of the person posting on that ledger is protected.

"The resilience of distributed network allows you to, first of all, run a much cheaper system but secondly a much more flexible system."

Santander and Oliver Wyman estimated earlier this year that blockchain technology could save banks $20 billion (£13.2 billion) a year.

Randall has experience overhauling financial technology, helping to found tech savvy stock exchange Chi-X in the 2000s. Chi-X was the first pan-European equities exchange to launch in 2007 and used technology to make trading cheaper and quicker. It was bought by BATS in 2011 and today processes around 25% of all European trading volumes.

We're going to try and do to the post-trade space what Chi-X did do the trading space

Randall says: "We're going to try and do to the post-trade space what Chi-X did do the trading space. What we did with Chi-X is we dropped 21st century technology into an environment that was running COBOL on mainframes.

(COBOL is a computing language used in business and finance. It was first designed in 1959 and is pretty old and slow.)

Randall says: "When we decided what we were going to do with SETL what we did was look around the City and find where all the mainframes are running cobalt. They all happened to be in the post-trade space and we decided this was the next space to bring into the 21st century."

'We don't think this is a technology project, we think this is an engagement project'

Randall is bullish on the potential of the blockchain — but he's not the only one. There are a plenty of startups looking at adapting the technology to traditional finance and banks themselves are looking at it. 30 top investment banks have joined an industry-wide effort to establish uses and standard for the blockchain.

So what makes Randall and SETL think they can succeed in such a crowded field?

"We don't think this is a technology project, we think this is an engagement project," Randall says. "It's a three stage equation. The first step is to get funding. Piece two is regulatory engagement. And piece three is engagement with users."

The connections of Sir David, Randall, and his co-founder Anthony Culligan, a former hedge fund manager, will likely help open doors too.

Randall says: "I certainly think having connections helps, I certainly think having experience helps — and I mean luck helps as well."

But he adds: "I think the more important thing is we've done the very hard thinking about what it is that the financial system actually needs from a blockchain application.

"We see many other people making claims about their services I don't see anyone else actually trying to attack the area we see as the critical piece, which is the ability to make payments and settlement between banks. That's the most critical part of any payment infrastructure — how does one bank pay another bank."

Join the conversation about this story »

NOW WATCH: JIM CRAMER: This is where you should invest your first $10,000

Global Economic Outlook: Investing Post-Liftoff

CryptoCoins News, 1/1/0001 12:00 AM PST

The US Federal Reserve confirmed market expectations by raising interest rates with 25 basis points. Today's Global Economic Outlook considers an investment strategy for the new higher-rates world economy. This post is powered by the Bitcoin Trading Network xbt.social - CCN29 and get 29USD off! Economic Indicators World Indexes and Forex Rates   Commodities In the Calendar This Week Wed 16 December USD FOMC Economic Projections USD FOMC Statement USD Federal Funds Rate (actual: 0.35% expected:<0.50% previous:<0.25%) USD FOMC Press Conference Making The News The Federal Reserve announced on Wednesday that it would raise its funds rate by 25 basis […]

The post Global Economic Outlook: Investing Post-Liftoff appeared first on CCN: Financial Bitcoin & Cryptocurrency News.

Everything you need to know about bitcoin and blockchain in 75 slides

Business Insider, 1/1/0001 12:00 AM PST

Jeremy Millar, Magister Advisors.

Magister Advisors has produced arguably the most comprehensive report to date on what is happening in the world of bitcoin and blockchain startups.

Bitcoin is a digital-only currency not backed by any central bank, while the blockchain is the software underpinning it.

Blockchain uses complex cryptography to ensure transactions can't be tampered with and people sending and receiving money are who they say they are.

Jeremy Millar, a partner at technology bank Magister, told Business Insider blockchain is the fastest growing industry he's ever seen. There are a huge number of startups trying to use both bitcoin and blockchain to do a variety of different things.

Banks in particular are excited about the potential savings and benefits blockchain technology could offer them. Thirty top investment banks have joined an industry-wide group looking at potential uses and plenty of banks are experimenting with the technology themselves behind closed doors.

Magister's report is split into four sections — the bitcoin ecosystem, the blockchain ecosystem, and profiles of companies in each sector.

Magister has given BI permission to reproduce its presentation — check it out below.







See the rest of the story at Business Insider

Bankers had a terrible year — and technology will make 2016 even worse

Business Insider, 1/1/0001 12:00 AM PST

Members of a Taekwondo display team perform during the Olympics 2012 Taekwondo test event at the ExCel centre in east London December 3, 2011.

The "Uber moment" in finance that the former CEO of Barclays warned about recently is already happening — 11 big banks have cut a combined 10% of their staff this year.

Analysis by the Financial Times shows that almost 100,000 banking jobs were cut this year, equivalent to 10% of the combined staff of the 11 big European and US banks that announced cuts.

They include HSBC, Morgan Stanley, Standard Chartered, Royal Bank of Scotland, and Credit Suisse. Barclays and BNP Paribas are expected to add to cuts early in the new year.

The analysis comes just weeks after Antony Jenkins, who until July was CEO of Barclays, warned in a speech that as much as half of banking jobs could be replaced by apps and algorithms over the next 10 years.

Jenkins' argument rests on the rise of fintech — financial technology — startups that do things like payments, lending, and investments in a smarter, cheaper, and often faster way.

Jenkins believes fintech startups will "disrupt" financial services in the same way Uber has disrupted the taxi industry. That will squeeze profit margins, forcing banks to cut staff, and also force them to compete on technology, another change that will reduce headcount.

Jon Peace, a London-based banks analyst at Nomura, acknowledged this pressure on banks, telling the Financial Times:

Digital transformation could also be a driver of further headcount reduction longer term, with retail banks cutting branches in favour of online services and investment banks cutting back offices in favour of online technologies such as blockchain.

Blockchain is the software that underpins bitcoin and uses complex cryptography to allow transactions between strangers to take place without the need for a trusted intermediary such as a bank or clearing house.

Banks are going wild for the possibilities of the technology, with 30 leading investment banks joining an industry-wide project to develop standard applications and regulation of the technology. Goldman Sachs said in a recent note that the blockchain could change "well, everything."

But while technology looks as if it could be a huge driver of layoffs in the future, right now it's actually a relatively minor factor. A bigger contributor to the 100,000 jobs cut this year in the increasingly regulatory burden big banks face around the world and low interest rates hitting client activity.

Join the conversation about this story »

NOW WATCH: JIM CRAMER: This is where you should invest your first $10,000

10/03/2018 10/02/2018 10/01/2018 09/30/2018 09/29/2018 09/28/2018 09/27/2018 09/26/2018 09/25/2018 09/24/2018 09/23/2018 09/22/2018 09/21/2018 09/20/2018 09/19/2018 09/18/2018 09/17/2018 09/16/2018 09/15/2018 09/14/2018 09/13/2018 09/12/2018 09/11/2018 09/10/2018 09/09/2018 09/08/2018 09/07/2018 09/06/2018 09/05/2018 09/04/2018 09/03/2018 09/02/2018 09/01/2018 08/31/2018 08/30/2018 08/29/2018 08/28/2018 08/27/2018 08/26/2018 08/25/2018 08/24/2018 08/23/2018 08/22/2018 08/21/2018 08/20/2018 08/19/2018 08/18/2018 08/17/2018 08/16/2018 08/15/2018 08/14/2018 08/13/2018 08/12/2018 08/11/2018 08/10/2018 08/09/2018 08/08/2018 08/07/2018 08/06/2018 08/05/2018 08/04/2018 08/03/2018 08/02/2018 08/01/2018 07/31/2018 07/30/2018 07/29/2018 07/28/2018 07/27/2018 07/26/2018 07/25/2018 07/24/2018 07/23/2018 07/22/2018 07/21/2018 07/20/2018 07/19/2018 07/18/2018 07/17/2018 07/16/2018 07/15/2018 07/14/2018 07/13/2018 07/12/2018 07/11/2018 07/10/2018 07/09/2018 07/08/2018 07/07/2018 07/06/2018 07/05/2018 07/04/2018 07/03/2018 07/02/2018 07/01/2018 06/30/2018 06/29/2018 06/28/2018 06/27/2018 06/26/2018 06/25/2018 06/24/2018 06/23/2018 06/22/2018 06/21/2018 06/20/2018 06/19/2018 06/18/2018 06/17/2018 06/16/2018 06/15/2018 06/14/2018 06/13/2018 06/12/2018 06/11/2018 06/10/2018 06/09/2018 06/08/2018 06/07/2018 06/06/2018 06/05/2018 06/04/2018 06/03/2018 06/02/2018 06/01/2018 05/31/2018 05/30/2018 05/29/2018 05/28/2018 05/27/2018 05/26/2018 05/25/2018 05/24/2018 05/23/2018 05/22/2018 05/21/2018 05/20/2018 05/19/2018 05/18/2018 05/17/2018 05/16/2018 05/15/2018 05/14/2018 05/13/2018 05/12/2018 05/11/2018 05/10/2018 05/09/2018 05/08/2018 05/07/2018 05/06/2018 05/05/2018 05/04/2018 05/03/2018 05/02/2018 05/01/2018 04/30/2018 04/29/2018 04/28/2018 04/27/2018 04/26/2018 04/25/2018 04/24/2018 04/23/2018 04/22/2018 04/21/2018 04/20/2018 04/19/2018 04/18/2018 04/17/2018 04/16/2018 04/15/2018 04/14/2018 04/13/2018 04/12/2018 04/11/2018 04/10/2018 04/09/2018 04/08/2018 04/07/2018 04/06/2018 04/05/2018 04/04/2018 04/03/2018 04/02/2018 04/01/2018 03/31/2018 03/30/2018 03/29/2018 03/28/2018 03/27/2018 03/26/2018 03/25/2018 03/24/2018 03/23/2018 03/22/2018 03/21/2018 03/20/2018 03/19/2018 03/18/2018 03/17/2018 03/16/2018 03/15/2018 03/14/2018 03/13/2018 03/12/2018 03/11/2018 03/10/2018 03/09/2018 03/08/2018 03/07/2018 03/06/2018 03/05/2018 03/04/2018 03/03/2018 03/02/2018 03/01/2018 02/28/2018 02/27/2018 02/26/2018 02/25/2018 02/24/2018 02/23/2018 02/22/2018 02/21/2018 02/20/2018 02/19/2018 02/18/2018 02/17/2018 02/16/2018 02/15/2018 02/14/2018 02/13/2018 02/12/2018 02/11/2018 02/10/2018 02/09/2018 02/08/2018 02/07/2018 02/06/2018 02/05/2018 02/04/2018 02/03/2018 02/02/2018 02/01/2018 01/31/2018 01/30/2018 01/29/2018 01/28/2018 01/27/2018 01/26/2018 01/25/2018 01/24/2018 01/23/2018 01/22/2018 01/21/2018 01/20/2018 01/19/2018 01/18/2018 01/17/2018 01/16/2018 01/15/2018 01/14/2018 01/13/2018 01/12/2018 01/11/2018 01/10/2018 01/09/2018 01/08/2018 01/07/2018 01/06/2018 01/05/2018 01/04/2018 01/03/2018 01/02/2018 01/01/2018 12/31/2017 12/30/2017 12/29/2017 12/28/2017 12/27/2017 12/26/2017 12/25/2017 12/24/2017 12/23/2017 12/22/2017 12/21/2017 12/20/2017 12/19/2017 12/18/2017 12/17/2017 12/16/2017 12/15/2017 12/14/2017 12/13/2017 12/12/2017 12/11/2017 12/10/2017 12/09/2017 12/08/2017 12/07/2017 12/06/2017 12/05/2017 12/04/2017 12/03/2017 12/02/2017 12/01/2017 11/30/2017 11/29/2017 11/28/2017 11/27/2017 11/26/2017 11/25/2017 11/24/2017 11/23/2017 11/22/2017 11/21/2017 11/20/2017 11/19/2017 11/18/2017 11/17/2017 11/16/2017 11/15/2017 11/14/2017 11/13/2017 11/12/2017 11/11/2017 11/10/2017 11/09/2017 11/08/2017 11/07/2017 11/06/2017 11/05/2017 11/04/2017 11/03/2017 11/02/2017 11/01/2017 10/31/2017 10/30/2017 10/29/2017 10/28/2017 10/27/2017 10/26/2017 10/25/2017 10/24/2017 10/23/2017 10/22/2017 10/21/2017 10/20/2017 10/19/2017 10/18/2017 10/17/2017 10/16/2017 10/15/2017 10/14/2017 10/13/2017 10/12/2017 10/11/2017 10/10/2017 10/09/2017 10/08/2017 10/07/2017 10/06/2017 10/05/2017 10/04/2017 10/03/2017 10/02/2017 10/01/2017 09/30/2017 09/29/2017 09/28/2017 09/27/2017 09/26/2017 09/25/2017 09/24/2017 09/23/2017 09/22/2017 09/21/2017 09/20/2017 09/19/2017 09/18/2017 09/17/2017 09/16/2017 09/15/2017 09/14/2017 09/13/2017 09/12/2017 09/11/2017 09/10/2017 09/09/2017 09/08/2017 09/07/2017 09/06/2017 09/05/2017 09/04/2017 09/01/2017 08/02/2017 07/27/2017 07/26/2017 07/25/2017 07/24/2017 07/23/2017 07/22/2017 07/21/2017 07/20/2017 07/19/2017 07/18/2017 07/17/2017 07/16/2017 07/15/2017 07/14/2017 07/13/2017 07/12/2017 07/11/2017 07/10/2017 07/09/2017 07/08/2017 07/07/2017 07/06/2017 07/05/2017 07/04/2017 07/03/2017 07/02/2017 07/01/2017 06/30/2017 06/29/2017 06/28/2017 06/27/2017 06/26/2017 06/25/2017 06/24/2017 06/23/2017 06/22/2017 06/21/2017 06/20/2017 06/19/2017 06/17/2017 06/16/2017 06/15/2017 06/14/2017 06/13/2017 06/12/2017 06/11/2017 06/10/2017 06/09/2017 06/08/2017 06/07/2017 06/06/2017 06/05/2017 06/04/2017 06/03/2017 06/02/2017 06/01/2017 05/31/2017 05/30/2017 05/29/2017 05/28/2017 05/27/2017 05/26/2017 05/25/2017 05/24/2017 05/23/2017 05/22/2017 05/21/2017 05/20/2017 05/19/2017 05/18/2017 05/17/2017 05/16/2017 05/15/2017 05/14/2017 05/13/2017 05/12/2017 05/11/2017 05/10/2017 05/09/2017 05/08/2017 05/07/2017 05/06/2017 05/05/2017 05/04/2017 05/03/2017 05/02/2017 05/01/2017 04/30/2017 04/29/2017 04/28/2017 04/27/2017 04/26/2017 04/25/2017 04/24/2017 04/23/2017 04/22/2017 04/21/2017 04/20/2017 04/19/2017 04/18/2017 04/17/2017 04/16/2017 04/15/2017 04/14/2017 04/13/2017 04/12/2017 04/11/2017 04/10/2017 04/09/2017 04/08/2017 04/07/2017 04/06/2017 04/05/2017 04/04/2017 04/03/2017 04/02/2017 04/01/2017 03/31/2017 03/30/2017 03/29/2017 03/28/2017 03/27/2017 03/26/2017 03/25/2017 03/24/2017 03/23/2017 03/22/2017 03/21/2017 03/20/2017 03/19/2017 03/18/2017 03/17/2017 03/16/2017 03/15/2017 03/14/2017 03/13/2017 03/12/2017 03/11/2017 03/10/2017 03/09/2017 03/08/2017 03/07/2017 03/06/2017 03/05/2017 03/04/2017 03/03/2017 03/02/2017 03/01/2017 02/28/2017 02/27/2017 02/26/2017 02/25/2017 02/24/2017 02/23/2017 02/22/2017 02/21/2017 02/20/2017 02/19/2017 02/18/2017 02/17/2017 02/16/2017 02/15/2017 02/14/2017 02/13/2017 02/12/2017 02/11/2017 02/10/2017 02/09/2017 02/08/2017 02/07/2017 02/06/2017 02/05/2017 02/04/2017 02/03/2017 02/02/2017 02/01/2017 01/31/2017 01/30/2017 01/29/2017 01/28/2017 01/27/2017 01/26/2017 01/25/2017 01/24/2017 01/23/2017 01/22/2017 01/21/2017 01/20/2017 01/19/2017 01/18/2017 01/17/2017 01/16/2017 01/15/2017 01/14/2017 01/13/2017 01/12/2017 01/11/2017 01/10/2017 01/09/2017 01/08/2017 01/07/2017 01/06/2017 01/05/2017 01/04/2017 01/03/2017 01/02/2017 01/01/2017 12/31/2016 12/30/2016 12/29/2016 12/28/2016 12/27/2016 12/26/2016 12/25/2016 12/24/2016 12/23/2016 12/22/2016 12/21/2016 12/20/2016 12/19/2016 12/18/2016 12/17/2016 12/16/2016 12/15/2016 12/14/2016 12/13/2016 12/12/2016 12/11/2016 12/10/2016 12/09/2016 12/08/2016 12/07/2016 12/06/2016 12/05/2016 12/04/2016 12/03/2016 12/02/2016 12/01/2016 11/30/2016 11/29/2016 11/28/2016 11/27/2016 11/26/2016 11/25/2016 11/24/2016 11/23/2016 11/22/2016 11/21/2016 11/20/2016 11/19/2016 11/18/2016 11/17/2016 11/16/2016 11/15/2016 11/14/2016 11/13/2016 11/12/2016 11/11/2016 11/10/2016 11/09/2016 11/08/2016 11/07/2016 11/06/2016 11/05/2016 11/04/2016 11/03/2016 11/02/2016 11/01/2016 10/31/2016 10/30/2016 10/29/2016 10/28/2016 10/27/2016 10/26/2016 10/25/2016 10/24/2016 10/23/2016 10/22/2016 10/21/2016 10/20/2016 10/19/2016 10/18/2016 10/17/2016 10/16/2016 10/15/2016 10/14/2016 10/13/2016 10/12/2016 10/11/2016 10/10/2016 10/09/2016 10/08/2016 10/07/2016 10/06/2016 10/05/2016 10/04/2016 10/03/2016 10/02/2016 10/01/2016 09/30/2016 09/29/2016 09/28/2016 09/27/2016 09/26/2016 09/25/2016 09/24/2016 09/23/2016 09/22/2016 09/21/2016 09/20/2016 09/19/2016 09/18/2016 09/17/2016 09/16/2016 09/15/2016 09/14/2016 09/13/2016 09/12/2016 09/11/2016 09/10/2016 09/09/2016 09/08/2016 09/07/2016 09/06/2016 09/05/2016 09/04/2016 09/03/2016 09/02/2016 09/01/2016 08/31/2016 08/30/2016 08/29/2016 08/28/2016 08/27/2016 08/26/2016 08/25/2016 08/24/2016 08/23/2016 08/22/2016 08/21/2016 08/20/2016 08/19/2016 08/18/2016 08/17/2016 08/16/2016 08/15/2016 08/14/2016 08/13/2016 08/12/2016 08/11/2016 08/10/2016 08/09/2016 08/08/2016 08/07/2016 08/06/2016 08/05/2016 08/04/2016 08/03/2016 08/02/2016 08/01/2016 07/31/2016 07/30/2016 07/29/2016 07/28/2016 07/27/2016 07/26/2016 07/25/2016 07/24/2016 07/23/2016 07/22/2016 07/21/2016 07/20/2016 07/19/2016 07/18/2016 07/17/2016 07/16/2016 07/15/2016 07/14/2016 07/13/2016 07/12/2016 07/11/2016 07/10/2016 07/09/2016 07/08/2016 07/07/2016 07/06/2016 07/05/2016 07/04/2016 07/03/2016 07/02/2016 07/01/2016 06/30/2016 06/29/2016 06/28/2016 06/27/2016 06/26/2016 06/25/2016 06/24/2016 06/23/2016 06/22/2016 06/21/2016 06/20/2016 06/19/2016 06/18/2016 06/17/2016 06/16/2016 06/15/2016 06/14/2016 06/13/2016 06/12/2016 06/11/2016 06/10/2016 06/09/2016 06/08/2016 06/07/2016 06/06/2016 06/05/2016 06/04/2016 06/03/2016 06/02/2016 06/01/2016 05/31/2016 05/30/2016 05/29/2016 05/28/2016 05/27/2016 05/26/2016 05/25/2016 05/24/2016 05/23/2016 05/22/2016 05/21/2016 05/20/2016 05/19/2016 05/18/2016 05/17/2016 05/16/2016 05/15/2016 05/14/2016 05/13/2016 05/12/2016 05/11/2016 05/10/2016 05/09/2016 05/08/2016 05/07/2016 05/06/2016 05/05/2016 05/04/2016 05/03/2016 05/02/2016 05/01/2016 04/30/2016 04/29/2016 04/28/2016 04/27/2016 04/26/2016 04/25/2016 04/24/2016 04/23/2016 04/22/2016 04/21/2016 04/20/2016 04/19/2016 04/18/2016 04/17/2016 04/16/2016 04/15/2016 04/14/2016 04/13/2016 04/12/2016 04/11/2016 04/10/2016 04/09/2016 04/08/2016 04/07/2016 04/06/2016 04/05/2016 04/04/2016 04/03/2016 04/02/2016 04/01/2016 03/31/2016 03/30/2016 03/29/2016 03/28/2016 03/27/2016 03/26/2016 03/25/2016 03/24/2016 03/23/2016 03/22/2016 03/21/2016 03/20/2016 03/19/2016 03/18/2016 03/17/2016 03/16/2016 03/15/2016 03/14/2016 03/13/2016 03/12/2016 03/11/2016 03/10/2016 03/09/2016 03/08/2016 03/07/2016 03/06/2016 03/05/2016 03/04/2016 03/03/2016 03/02/2016 03/01/2016 02/29/2016 02/28/2016 02/27/2016 02/26/2016 02/25/2016 02/24/2016 02/23/2016 02/22/2016 02/21/2016 02/20/2016 02/19/2016 02/18/2016 02/17/2016 02/16/2016 02/15/2016 02/14/2016 02/13/2016 02/12/2016 02/11/2016 02/10/2016 02/09/2016 02/08/2016 02/07/2016 02/06/2016 02/05/2016 02/04/2016 02/03/2016 02/02/2016 02/01/2016 01/31/2016 01/30/2016 01/29/2016 01/28/2016 01/27/2016 01/26/2016 01/25/2016 01/24/2016 01/23/2016 01/22/2016 01/21/2016 01/20/2016 01/19/2016 01/18/2016 01/17/2016 01/16/2016 01/15/2016 01/14/2016 01/13/2016 01/12/2016 01/11/2016 01/10/2016 01/09/2016 01/08/2016 01/07/2016 01/06/2016 01/05/2016 01/04/2016 01/03/2016 01/02/2016 01/01/2016 12/31/2015 12/30/2015 12/29/2015 12/28/2015 12/27/2015 12/26/2015 12/25/2015 12/24/2015 12/23/2015 12/22/2015 12/21/2015 12/20/2015 12/19/2015 12/18/2015 12/17/2015 12/16/2015 12/15/2015 12/14/2015 12/13/2015 12/12/2015 12/11/2015 12/10/2015 12/09/2015 12/08/2015 12/07/2015 12/06/2015 12/05/2015 12/04/2015 12/03/2015 12/02/2015 12/01/2015 11/30/2015 11/29/2015 11/28/2015 11/27/2015 11/26/2015 11/25/2015 11/24/2015 11/23/2015 11/22/2015 11/21/2015 11/20/2015 11/19/2015 11/18/2015 11/17/2015 11/16/2015 11/15/2015 11/14/2015 11/13/2015 11/12/2015 11/11/2015 11/10/2015 11/09/2015 11/08/2015 11/07/2015 11/06/2015 11/05/2015 11/04/2015 11/03/2015 11/02/2015 11/01/2015 10/31/2015 10/30/2015 10/29/2015 10/28/2015 10/27/2015 10/26/2015 10/25/2015 10/24/2015 10/23/2015 10/22/2015 10/21/2015 10/20/2015 10/19/2015 10/18/2015 10/17/2015 10/16/2015 10/15/2015 10/14/2015 10/13/2015 10/12/2015 10/11/2015 10/10/2015 10/09/2015 10/08/2015 10/07/2015 10/06/2015 10/05/2015 10/04/2015 10/03/2015 10/02/2015 10/01/2015 09/30/2015 09/29/2015 09/28/2015 09/27/2015 09/26/2015 09/25/2015 09/24/2015 09/23/2015 09/22/2015 09/21/2015 09/20/2015 09/19/2015 09/18/2015 09/17/2015 09/16/2015 09/15/2015 09/14/2015 09/13/2015 09/12/2015 09/11/2015 09/10/2015 09/09/2015 09/08/2015 09/07/2015 09/06/2015 09/05/2015 09/04/2015 09/03/2015 09/02/2015 09/01/2015 08/31/2015 08/30/2015 08/29/2015 08/28/2015 08/27/2015 08/26/2015 08/25/2015 08/24/2015 08/23/2015 08/19/2015 08/18/2015 08/17/2015 08/16/2015 08/15/2015 08/14/2015 08/13/2015 08/12/2015 08/11/2015 08/10/2015 08/09/2015 08/08/2015 08/07/2015 08/06/2015 08/05/2015 08/04/2015 08/03/2015 08/02/2015 08/01/2015 07/31/2015 07/30/2015 07/29/2015 07/28/2015 07/27/2015 07/26/2015 07/25/2015 07/24/2015 07/23/2015 07/22/2015 07/21/2015 07/20/2015 07/19/2015 07/18/2015 07/17/2015 07/16/2015 07/15/2015 07/14/2015 07/13/2015 07/12/2015 07/11/2015 07/10/2015 07/09/2015 07/08/2015 07/07/2015 07/06/2015 07/05/2015 07/04/2015 07/03/2015 07/02/2015 07/01/2015 06/30/2015 06/29/2015 06/28/2015 06/27/2015 06/26/2015 06/25/2015 06/24/2015 06/23/2015 06/22/2015 06/21/2015 06/20/2015 06/19/2015 06/18/2015 06/17/2015 06/16/2015 06/15/2015 06/14/2015 06/13/2015 06/12/2015 06/11/2015 06/10/2015 06/09/2015 06/08/2015 06/07/2015 06/06/2015 06/05/2015 06/04/2015 06/03/2015 06/02/2015 06/01/2015 05/31/2015 05/30/2015 05/29/2015 05/28/2015 05/27/2015 05/26/2015 05/25/2015 05/24/2015 05/23/2015 05/22/2015 05/21/2015 05/20/2015 05/19/2015 05/18/2015 05/17/2015 05/16/2015 05/15/2015 05/14/2015 05/13/2015 05/12/2015 05/11/2015 05/10/2015 05/09/2015 05/08/2015 05/07/2015 05/06/2015 05/05/2015 05/04/2015 05/03/2015 05/02/2015 05/01/2015 04/30/2015 04/29/2015 04/28/2015 04/27/2015 04/26/2015 04/25/2015 04/24/2015 04/23/2015 04/22/2015 04/21/2015 04/20/2015 04/19/2015 04/18/2015 04/17/2015 04/16/2015 04/15/2015 04/14/2015 04/13/2015 04/12/2015 04/11/2015 04/10/2015 04/09/2015 04/08/2015 04/07/2015 04/06/2015 04/05/2015 04/04/2015 04/03/2015 04/02/2015 04/01/2015 03/31/2015 03/30/2015 03/29/2015 03/28/2015 03/27/2015 03/26/2015 03/25/2015 03/24/2015 03/23/2015 03/22/2015 03/21/2015 03/20/2015 03/19/2015 03/18/2015 03/17/2015 03/16/2015 03/15/2015 03/14/2015 03/13/2015 03/12/2015 03/11/2015 03/10/2015 03/09/2015 03/08/2015 03/07/2015 03/06/2015 03/05/2015 03/04/2015 03/03/2015 03/02/2015 03/01/2015 02/28/2015 02/27/2015 02/26/2015 02/25/2015 02/24/2015 02/23/2015 02/22/2015 02/21/2015 02/20/2015 02/19/2015 02/18/2015 02/17/2015 02/16/2015 02/15/2015 02/14/2015 02/13/2015 02/12/2015 02/11/2015 02/10/2015 02/09/2015 02/08/2015 02/07/2015 02/06/2015 02/05/2015 02/04/2015 02/03/2015 02/02/2015 02/01/2015 01/31/2015 01/30/2015 01/29/2015 01/28/2015 01/27/2015 01/26/2015 01/25/2015 01/24/2015 01/23/2015 01/22/2015 01/21/2015 01/20/2015 01/19/2015 01/18/2015 01/17/2015 01/16/2015 01/15/2015 01/14/2015 01/13/2015 01/12/2015 01/11/2015 01/10/2015 01/09/2015 01/08/2015 01/07/2015 01/06/2015 01/05/2015 01/04/2015 01/03/2015 01/02/2015 01/01/2015 12/31/2014 12/30/2014 12/29/2014 12/28/2014 12/27/2014 12/26/2014 12/25/2014 12/24/2014 12/23/2014 12/22/2014 12/21/2014 12/20/2014 12/19/2014 12/18/2014 12/17/2014 12/16/2014 12/15/2014 12/14/2014 12/13/2014 12/12/2014 12/11/2014 12/10/2014 12/09/2014 12/08/2014 12/07/2014 12/06/2014 12/05/2014 12/04/2014 12/03/2014 12/02/2014 12/01/2014 11/30/2014 11/29/2014 11/28/2014 11/27/2014 11/26/2014 11/25/2014 11/24/2014 11/23/2014 11/22/2014 11/21/2014 11/20/2014 11/19/2014 11/18/2014 11/17/2014 11/16/2014 11/15/2014 11/14/2014 11/13/2014 11/12/2014 11/11/2014 11/10/2014 11/09/2014 11/08/2014 11/07/2014 11/06/2014 11/05/2014 11/04/2014 11/03/2014 11/02/2014 11/01/2014 10/31/2014 10/30/2014 10/29/2014 10/28/2014 10/27/2014 10/26/2014 10/25/2014 10/24/2014 10/23/2014 10/22/2014 10/21/2014 10/20/2014 10/19/2014 10/18/2014 10/17/2014 10/16/2014 10/15/2014 10/14/2014 10/13/2014 10/12/2014 10/11/2014 10/10/2014 10/09/2014 10/08/2014 10/07/2014 10/06/2014 10/05/2014 10/04/2014 10/03/2014 10/02/2014 10/01/2014 09/30/2014 09/29/2014 09/28/2014 09/27/2014 09/26/2014 09/25/2014 09/24/2014 09/23/2014 09/22/2014 09/21/2014 09/20/2014 09/19/2014 09/18/2014 09/17/2014 09/16/2014 09/15/2014 09/14/2014 09/13/2014 09/12/2014 09/11/2014 09/10/2014 09/09/2014 09/08/2014 09/07/2014 09/06/2014 09/05/2014 09/04/2014 09/03/2014 09/02/2014 09/01/2014 08/31/2014 08/30/2014 08/29/2014 08/28/2014 08/27/2014 08/26/2014 08/25/2014 08/24/2014 08/23/2014 08/22/2014 08/21/2014 08/20/2014 08/19/2014 08/18/2014 08/17/2014 08/16/2014 08/15/2014 08/14/2014 08/13/2014 08/12/2014 08/11/2014 08/10/2014 08/09/2014 08/08/2014 08/07/2014 08/06/2014 08/05/2014 08/04/2014 08/03/2014 08/02/2014 08/01/2014 07/31/2014 07/30/2014 07/29/2014 07/28/2014 07/27/2014 07/26/2014 07/25/2014 07/24/2014 07/23/2014 07/22/2014 07/21/2014 07/20/2014 07/19/2014 07/18/2014 07/17/2014 07/16/2014 07/15/2014 07/14/2014 07/13/2014 07/12/2014 07/11/2014 07/10/2014 07/09/2014 07/08/2014 07/07/2014 07/06/2014 07/05/2014 07/04/2014 07/03/2014 07/02/2014 07/01/2014 06/30/2014 06/29/2014 06/28/2014 06/27/2014 06/26/2014 06/25/2014 06/24/2014 06/23/2014 06/22/2014 06/21/2014 06/20/2014 06/19/2014 06/18/2014 06/17/2014 06/16/2014 06/15/2014 06/14/2014 06/13/2014 06/12/2014 06/11/2014 06/10/2014 06/09/2014 06/08/2014 06/07/2014 06/06/2014 06/05/2014 06/04/2014 06/03/2014 06/02/2014 06/01/2014 05/31/2014 05/30/2014 05/29/2014 05/28/2014 05/27/2014 05/26/2014 05/25/2014 05/24/2014 05/23/2014 05/22/2014 05/21/2014 05/20/2014 05/19/2014 05/18/2014 05/17/2014 05/16/2014 05/15/2014 05/14/2014 05/13/2014 05/12/2014 05/11/2014 05/10/2014 05/09/2014 05/08/2014 05/07/2014 05/06/2014 05/05/2014 05/04/2014 05/03/2014 05/02/2014 05/01/2014 04/30/2014 04/29/2014 04/28/2014 04/27/2014 04/26/2014 04/25/2014 04/24/2014 04/23/2014 04/22/2014 04/21/2014 04/20/2014 04/19/2014 04/18/2014 04/17/2014 04/16/2014 04/15/2014 04/14/2014 04/13/2014 04/12/2014 04/11/2014 04/10/2014 04/09/2014 04/08/2014 04/07/2014 04/06/2014 04/05/2014 04/04/2014 04/03/2014 04/02/2014 04/01/2014 03/31/2014 03/30/2014 03/29/2014 03/28/2014 03/27/2014 03/26/2014 03/25/2014 03/24/2014 03/23/2014 03/22/2014 03/21/2014 03/20/2014 03/19/2014 03/18/2014 03/17/2014 03/16/2014 03/15/2014 03/14/2014 03/13/2014 03/12/2014 03/11/2014 03/05/2014 03/01/2014 02/27/2014 02/26/2014 02/25/2014 02/20/2014 02/19/2014