--- Log opened Sat Jul 11 00:00:07 2015 00:00 -!- p15x_ [~p15x@64.145.91.140] has joined #bitcoin-wizards 00:01 -!- p15x [~p15x@64.145.91.34] has quit [Ping timeout: 244 seconds] 00:03 -!- jtimon [~quassel@69.29.134.37.dynamic.jazztel.es] has joined #bitcoin-wizards 00:18 -!- spinza [~spin@197.89.46.198] has quit [Excess Flood] 00:20 -!- spinza [~spin@197.89.46.198] has joined #bitcoin-wizards 00:20 -!- Xh1pher [~Xh1pher@pD9E3A97A.dip0.t-ipconnect.de] has joined #bitcoin-wizards 00:32 < jonasschnelli> is there a way to encrypt 32byte AES key with a bitcoin EC (secp256k) public key and decrypt it with the corresponding private key on a different device? I assume ECDSA is the wrong approach. 00:32 -!- Tenhi [~tenhi@178.18.241.180] has quit [Remote host closed the connection] 00:33 -!- Tenhi [~tenhi@static.100.25.4.46.clients.your-server.de] has joined #bitcoin-wizards 00:36 < gmaxwell> jonasschnelli: what are you trying to accomplish? 00:37 < jonasschnelli> gmaxwell: I have a hardware wallet without display (just one button to allow signing). Not i'd like to have the possibility to display the payment information ("pay x to y") on a smartphone. The smartphone app should be capable of exporting a pubkey (EC not RSA if possible) and send it by email over a PC to my hardware wallet. There i could encrypt the "pay x to z" information and send it encrypted over QR code to the smartphone 00:37 < jonasschnelli> where i can decrypt 00:38 < jonasschnelli> MITM prevention. 00:38 < jonasschnelli> Not/Now 00:40 < gmaxwell> jonasschnelli: why not have the smartphone sign the a message authorizing the transaction instead of encrypting something? 00:42 < jonasschnelli> gmaxwell: Would be a different concept. This would mean, the tx needs to always supports multisig and the smartphone app must be capable to broadcast (or the tx must somehow transfered back to the pc/hardware wallet which is not easy). 00:42 < gmaxwell> no no 00:42 < gmaxwell> Did I say multisig? 00:43 < gmaxwell> I think you're invoking encryption to authenticate/authorize. Which might be ill fit. The hardware wallet wants to see a message telling it to pay according to what the phone approved, right? 00:43 < gmaxwell> The approiate tool to communicate the approval is a signature, generally, not encryption. 00:44 -!- bramc [~bram@99-75-88-206.lightspeed.sntcca.sbcglobal.net] has quit [Quit: This computer has gone to sleep] 00:44 < jonasschnelli> gmaxwell: Right. The hardware wallet want to make sure the information sent to the smartphone can be verified to make sure nobody has tempered with it. 00:45 < jonasschnelli> Okay. I see. This would mean the hardware wallet needs to export the pubkey for verifiying ot the smartphone. 00:46 < gmaxwell> I think that fits well with your QR code goes in one direction model? 00:46 < jonasschnelli> But, wouldn't that mean MITM could read the information? (Which is a different problem) 00:49 < gmaxwell> yes, though MITM could read the information going into the hardware wallet in the first place. 00:50 < jonasschnelli> i kinda tough smartphone -> send pubkey to hw wallet (only once) -> hw wallet encrypt aes key, hw wallet aes encrypts qr code data -> hw wallet send aes encrypted QR containing the EC encrypted aes key at the stream[:32] code to smartphone -> smartphone decrypts the aes key with EC decrypt -> smartphone decrypts the aes stream and displays the information. 00:51 < gmaxwell> jonasschnelli: what I eman is that the hardware wallet didn't come up with the thing you're asking it to sign whole cloth on its own-- the PC asked it to sign it, right? 00:51 < jonasschnelli> right. 00:53 < jonasschnelli> the hw wallet (because it has no screen) likes to ask the smartphone if he should sign the transaction which was created by the PC ("pay x to z" comes originally from the PC) 00:56 -!- NewLiberty [~NewLibert@76-255-129-88.lightspeed.irvnca.sbcglobal.net] has quit [Ping timeout: 256 seconds] 00:58 < gmaxwell> Right, so the data is not secret to the PC already. 00:58 -!- davi [~davi@gnu/davi] has joined #bitcoin-wizards 01:02 < jonasschnelli> gmaxwell: okay. Thats true. But do you think it's not achievable to ensure a secure channel between the hw wallet and the smartphone? 01:03 < gmaxwell> jonasschnelli: It is, you need communication in the other direction to do so. 01:05 -!- AaronvanW [~ewout@x55b283ce.dyn.telefonica.de] has joined #bitcoin-wizards 01:05 -!- AaronvanW [~ewout@x55b283ce.dyn.telefonica.de] has quit [Changing host] 01:05 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-wizards 01:05 < gmaxwell> and it would require the hardware wallet to do ECDH and AES rather than just signing. 01:05 < jonasschnelli> gmaxwell: Right. But i just saw that libsecp256k1 only supports ECDSA. 01:05 < jonasschnelli> gmaxwell: The HW wallet supports ECDH. 01:06 < jonasschnelli> (or could support) 01:07 -!- JackH [~Jack@host-80-43-142-154.as13285.net] has joined #bitcoin-wizards 01:08 * jonasschnelli thanks gmaxwell for the support! 01:09 < gmaxwell> jonasschnelli: No problem; though I think I'm still not sure what you're trying to accomplish. You'd require significantly more complexity (a whole new cryptosystem), and bidirectional communication (to get a key back from the phone to the hw-wallet) where otherwise you just need one way communication, and all you gain is the ability to hide the information from the PC that saw it otherwise. an 01:09 < gmaxwell> d you lose the ability to e.g. check the transaction with multiple devices if you want. 01:10 < gmaxwell> jonasschnelli: libsecp256k1 only supports the things we're using, pretty much. We have not had a reason to have ECDSA in Bitcoin core previously. 01:11 < gmaxwell> And most implementations of it are not very competent (e.g. leak the private key via a cache or timing sidechannel). 01:11 < jonasschnelli> gmaxwell: but what would be wrong if the smartphone would send the EC pubkey over email to the hw wallet? This would allow the HW wallet to send encrpted messaged to the smartphone in one way? doesn't it? 01:12 < jonasschnelli> (gmaxwell: agree, sidechannel attackes for hw wallet are quite easy for most implementations). 01:12 < gmaxwell> jonasschnelli: so what happens when the host intercepts that pubkey, replaces with another, and just reencrypts the messages as they go through? 01:13 < gmaxwell> also means the phone has to have working email, can't just be a serviceless phone that only communicates via QR; though I don't know how much that matters for your application. Though if you're assuming no connectivity, perhaps using internet instead of QR might be better. 01:15 < jonasschnelli> gmaxwell: right. If MITM would replace the pubkey, he could read the information. Indeed. 01:16 < jonasschnelli> the smartphone should not act as secure/cold/space. Just as a 2FA and a way to ensure the user know what he is signing by pushing the hw button. 01:16 < gmaxwell> jonasschnelli: does the hardware wallet have an LED? 01:16 < jonasschnelli> yes. 01:16 -!- Mably [~Mably@unaffiliated/mably] has joined #bitcoin-wizards 01:17 -!- sparetire_ [~sparetire@unaffiliated/sparetire] has quit [Quit: sparetire_] 01:18 < jonasschnelli> Maybe the current way is not so bad (in case of security) but not user friendly. The hw can export a aes key over a micro sd card (attached to the hw wallet). Android phones can directly import the aes key over the sd card. This totally bypassed PC/internet 01:18 < gmaxwell> so if the hardware wallet signs that the hardware wallet could flash in morse-like-code the public key it signed with. and the phone could show this to the user -- or better use the same camera to just observe it for itself, then the PC cannot MITM. 01:19 -!- Xh1pher [~Xh1pher@pD9E3A97A.dip0.t-ipconnect.de] has quit [Read error: Connection reset by peer] 01:19 < gmaxwell> the bandwidth of the blink channel need not be great, as it need only communicate a hundred bits or so. 01:19 < jonasschnelli> gmaxwell: hah. Yes. Why not... i mean the message would be around 60bytes to so... so 480 morses. ? 01:20 < jonasschnelli> Yeah. I need to check/test what morse rate would be possible. I kinda like this idea. 01:21 -!- Xh1pher [~Xh1pher@pD9E3A97A.dip0.t-ipconnect.de] has joined #bitcoin-wizards 01:22 < gmaxwell> well if it only communicates the key (or just parts of the hash of the key) via blinks it wouldn't need to send much, 128 bits would be adequate. If the HW wallet can PWM the led it would probably be possible to send 128 bits in a couple seconds (by coding multiple bits per symbol) 01:24 < gmaxwell> e.g. if you assume the camera can run at 20fps, and the led can produce 4 reliably distinguishable brightness levels, thats 3 seconds, perhaps twice that for error correction and syncronization overhead. 01:25 < jonasschnelli> Indeed. This idea sounds a bit geeky. But i think if nicly encapsulated in a stylish UI, this could be more fun than read a QR code. 01:28 < jonasschnelli> thanks greg. 01:40 -!- ebfull [~ebfull@73.34.119.0] has quit [Ping timeout: 265 seconds] 01:42 -!- ebfull [~ebfull@73.34.119.0] has joined #bitcoin-wizards 01:43 -!- Mably [~Mably@unaffiliated/mably] has quit [Read error: Connection reset by peer] 01:45 -!- Mably [~Mably@unaffiliated/mably] has joined #bitcoin-wizards 01:46 < leakypat> jonasschnelli: Bloomberg do this when setting up a terminal with their bkey login cards 01:46 -!- GAit [~lnahum@2-230-161-158.ip202.fastwebnet.it] has quit [Read error: Connection reset by peer] 01:46 < leakypat> It is very geeky 01:47 < jonasschnelli> leakypat: they do flash in mores? 01:47 < gwillen> there was a watch that would send data from the computer to the watch by modulating the brightness of the computer screen 01:47 -!- ebfull [~ebfull@73.34.119.0] has quit [Ping timeout: 246 seconds] 01:47 < gwillen> before smartwatches existed (or bluetooth) 01:47 -!- GAit [~lnahum@2-230-161-158.ip202.fastwebnet.it] has joined #bitcoin-wizards 01:47 < leakypat> Bunit sorry 01:47 < nsh> oh, that was pretty common data modality when sensors were weak 01:48 < nsh> my dad used to wear one of those watches until a few years ago i think 01:48 < leakypat> http://www.bloomberg.com/professional/content/uploads/sites/4/2015/03/b-unit_2_user_guide.pdf 01:48 < jonasschnelli> The only thing with brightness/morse or sound (even with qr code), if someone creates a video... 01:48 < gwillen> https://en.wikipedia.org/wiki/Timex_Datalink 01:49 < nsh> well, you can do DH if the device can talk back or front some randomness 01:49 < leakypat> jonasschnelli: yeah, when my wallet pairs the chrome app with a mobile, I encrypt the QR code and they have to enter heir password on their phone 01:49 -!- dEBRUYNE [~dEBRUYNE@239-196-ftth.onsbrabantnet.nl] has joined #bitcoin-wizards 01:49 < leakypat> Incase it gets saved to the cloud or something 01:49 < nsh> it shouldn't be possible to recreate the message from a video of the screen without some extra secret 01:50 < nsh> [extra and ephemeral] 01:52 < gmaxwell> jonasschnelli: more realistically... but less fun, the hw wallet can come from the factor with its message auth pubkey printed on it. then you can take the signed auth message, even send it to a friend to have him read back what it would do and the pubkey. 01:53 -!- warptangent [~warptange@unaffiliated/warptangent] has quit [Quit: No Ping reply in 180 seconds.] 01:53 -!- tromp__ [~tromp@rtc35-211.rentec.com] has joined #bitcoin-wizards 01:53 -!- AlexStraunoff [~stqism@freebsd/user/stqism] has quit [Ping timeout: 276 seconds] 01:54 < jonasschnelli> gmaxwell: Yeah. But would be a very static key. But because the priv is only in the hw, this could make sense. But with this printing solutions i always hope nobody could touch the priv keys during that process within the factory. 01:55 -!- AlexStraunoff [~stqism@freebsd/user/stqism] has joined #bitcoin-wizards 01:55 < gmaxwell> well even if they do, they have to get that key onto the PC to do anything evil with it. Also, if they can tamper with the device in the factory, they can make it secretly leak the signing private key in the signatures. 01:56 * nsh wonders about the feasibility of a leak-evidence signature scheme 01:56 < nsh> *leak-evident 01:56 -!- tromp_ [~tromp@rtc35-211.rentec.com] has quit [Remote host closed the connection] 01:56 -!- warptangent [~warptange@unaffiliated/warptangent] has joined #bitcoin-wizards 01:56 -!- wyager [~wyager@99-9-209-71.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-wizards 01:57 < nsh> heh 'Signature Schemes with Bounded Leakage Resilience' -- https://eprint.iacr.org/2009/220.pdf 01:57 < gmaxwell> nsh: it looks like the best you can do with a plain DL signature is make a channel to anything past the PC exponentially expensive. (e.g. has to do 2^n operations in the hw wallet, for n bits of channel per signature) 01:58 < nsh> hmm 01:58 < gmaxwell> nsh: nah that means something else. 01:58 < nsh> aye 01:58 < nsh> how would you encoding in a DL signature exponentially expensive? 01:59 < nsh> hmm, i wonder if you can attest that a nonce as been whitened through a hash function with some number of runs with fixed concatenations 02:00 -!- wallet42 [~wallet42@195.97.12.226] has joined #bitcoin-wizards 02:00 < gmaxwell> require the device to prove that R = H(R')*G + R' 02:00 < nsh> that would reduce encoding to preimage or collision resistance 02:00 < nsh> right 02:00 < gmaxwell> its a big improvement. 02:00 -!- mjerr [~mjerr@p578EB7BE.dip0.t-ipconnect.de] has quit [Ping timeout: 250 seconds] 02:01 < gmaxwell> I mean otherwise a single signature can leak the private key directly. .. but sadly it's not hard to use an erasure code to statelessly promise that once you've signed a couple hundred messages the attacker can recover you private key even if the channel is only 1 bit. 02:02 * nsh nods 02:04 -!- davi [~davi@gnu/davi] has quit [Ping timeout: 246 seconds] 02:04 < nsh> you could maybe factor out entropy generation from less-trustedly manufactured and delivered devices 02:04 < nsh> but that adds complexity which is an invitation for weakness 02:04 < gmaxwell> e.g. attacker pubkey is Q, x is your secret, m is message wallet computes H(xQ||m) and uses the result to get an encryption key and index into an error correcting coded copy of the secret to leak. Encrypts the selected codeword and grinds it into R. 02:05 < nsh> neat 02:09 -!- davi [~davi@gnu/davi] has joined #bitcoin-wizards 02:20 -!- dEBRUYNE [~dEBRUYNE@239-196-ftth.onsbrabantnet.nl] has quit [Ping timeout: 248 seconds] 02:21 -!- wyager [~wyager@99-9-209-71.lightspeed.sntcca.sbcglobal.net] has quit [Quit: wyager] 02:29 -!- p15x [~p15x@124.64.97.46] has joined #bitcoin-wizards 02:30 -!- p15x [~p15x@124.64.97.46] has quit [Client Quit] 02:31 -!- p15x_ [~p15x@64.145.91.140] has quit [Ping timeout: 265 seconds] 02:32 -!- p15x [~p15x@64.145.91.123] has joined #bitcoin-wizards 02:37 -!- orperelman [~orperelma@bzq-109-67-207-175.red.bezeqint.net] has joined #bitcoin-wizards 02:39 -!- spinza [~spin@197.89.46.198] has quit [Excess Flood] 02:39 -!- spinza [~spin@197.89.46.198] has joined #bitcoin-wizards 02:44 -!- priidu [~priidu@unaffiliated/priidu] has quit [Ping timeout: 255 seconds] 02:48 -!- orperelman [~orperelma@bzq-109-67-207-175.red.bezeqint.net] has quit [Ping timeout: 256 seconds] 02:52 -!- wyager [~wyager@99-9-209-71.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-wizards 02:56 -!- NewLiberty [~NewLibert@76-255-129-88.lightspeed.irvnca.sbcglobal.net] has joined #bitcoin-wizards 02:57 -!- davi [~davi@gnu/davi] has quit [Ping timeout: 256 seconds] 03:01 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 03:02 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Ping timeout: 246 seconds] 03:04 -!- c-cex-yuriy [uid76808@gateway/web/irccloud.com/x-zjxfsundjaziephf] has quit [Quit: Connection closed for inactivity] 03:05 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Ping timeout: 244 seconds] 03:06 -!- davi [~davi@gnu/davi] has joined #bitcoin-wizards 03:14 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-wizards 03:26 -!- ttttemp [~ttttemp@nb-10350.ethz.ch] has joined #bitcoin-wizards 03:27 -!- Tiraspol [~Tiraspol3@unaffiliated/tiraspol] has quit [Ping timeout: 246 seconds] 03:27 -!- Tiraspol [~Tiraspol3@unaffiliated/tiraspol] has joined #bitcoin-wizards 03:28 -!- mkarrer [~mkarrer@115.Red-88-20-136.staticIP.rima-tde.net] has quit [] 03:30 -!- Crowley4k [uid81280@gateway/web/irccloud.com/x-lclbaqqunpfyvjml] has joined #bitcoin-wizards 03:31 -!- mkarrer [~mkarrer@115.Red-88-20-136.staticIP.rima-tde.net] has joined #bitcoin-wizards 03:31 -!- wyager [~wyager@99-9-209-71.lightspeed.sntcca.sbcglobal.net] has quit [Quit: wyager] 03:33 -!- mjerr [~mjerr@p578EB7BE.dip0.t-ipconnect.de] has joined #bitcoin-wizards 03:35 -!- dEBRUYNE [~dEBRUYNE@239-196-ftth.onsbrabantnet.nl] has joined #bitcoin-wizards 03:35 -!- p15x_ [~p15x@124.64.97.46] has joined #bitcoin-wizards 03:37 -!- p15x [~p15x@64.145.91.123] has quit [Ping timeout: 248 seconds] 04:00 -!- hashtag [~hashtag@cpe-69-23-213-3.ma.res.rr.com] has joined #bitcoin-wizards 04:02 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 04:06 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Ping timeout: 248 seconds] 04:07 -!- JackH [~Jack@host-80-43-142-154.as13285.net] has quit [Ping timeout: 256 seconds] 04:18 -!- btcdrak [uid52049@gateway/web/irccloud.com/x-ircxsviuwmgoqizi] has joined #bitcoin-wizards 04:19 -!- dEBRUYNE [~dEBRUYNE@239-196-ftth.onsbrabantnet.nl] has quit [Ping timeout: 246 seconds] 04:29 -!- moa [~kiwigb@opentransactions/dev/moa] has quit [Quit: Leaving.] 04:32 -!- alewis_btc [~antonylew@103.252.202.207] has joined #bitcoin-wizards 04:38 -!- Quanttek [~quassel@ip1f10af17.dynamic.kabel-deutschland.de] has joined #bitcoin-wizards 04:39 -!- instagibbs [60ff5d39@gateway/web/freenode/ip.96.255.93.57] has joined #bitcoin-wizards 04:44 -!- davi [~davi@gnu/davi] has quit [Ping timeout: 246 seconds] 04:44 < instagibbs> jcorgan: Tor hidden service connections aren't that hard. I have some code that works, but you need bitcoinj >12.3, so no stable version that actually works. 04:48 < instagibbs> It's mostly a function of people not caring. Therefore: bc.info. I think there are at least a few people who would like to run full nodes, but are also on the go and use SPV. 05:10 < jcorgan> instagibbs: one of my nodes is a Tor-only hidden service running in a trusted environment; that's not an issue. my main wish is to have UTXOs in cold storage on a BIP32 chain (done), but have an SPV watching wallet that can scan the chain with the xpub key. 05:12 < jcorgan> Electrum is close but doesn't use BIP39 and of course requires a stratum server somewhere instead of just talking P2P. 05:14 < instagibbs> i see 05:14 < instagibbs> that's kind of specific actually :P 05:15 < jcorgan> i wouldn't think so. SPV/BIP32/BIP39 are all bitcoin "standards" 05:15 -!- prodatalab [~prodatala@2601:6c4:200:d4e0:3152:ad57:6f8f:64aa] has joined #bitcoin-wizards 05:16 < instagibbs> no i mean your use case 05:16 < instagibbs> probably the reason why 05:16 < jcorgan> "direct deposit to cold storage" 05:17 < instagibbs> not saying it's not useful 05:18 < instagibbs> alright heading out later 05:18 -!- instagibbs [60ff5d39@gateway/web/freenode/ip.96.255.93.57] has quit [Quit: Page closed] 05:18 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 05:19 -!- wallet42 [~wallet42@195.97.12.226] has quit [Quit: Leaving.] 05:19 -!- wallet42 [~wallet42@195.97.12.226] has joined #bitcoin-wizards 05:20 -!- wallet42 [~wallet42@195.97.12.226] has quit [Client Quit] 05:22 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Ping timeout: 255 seconds] 05:29 -!- spinza [~spin@197.89.46.198] has quit [Excess Flood] 05:30 -!- shaul [~shaul@static-108-30-103-59.nycmny.fios.verizon.net] has joined #bitcoin-wizards 05:31 -!- priidu [~priidu@unaffiliated/priidu] has joined #bitcoin-wizards 05:31 -!- alewis_btc [~antonylew@103.252.202.207] has quit [Quit: alewis_btc] 05:33 -!- spinza [~spin@197.89.46.198] has joined #bitcoin-wizards 05:34 -!- spinza [~spin@197.89.46.198] has quit [Excess Flood] 05:34 -!- shaul [~shaul@static-108-30-103-59.nycmny.fios.verizon.net] has quit [Ping timeout: 252 seconds] 05:34 -!- spinza [~spin@197.89.46.198] has joined #bitcoin-wizards 05:35 -!- alewis_btc [~antonylew@103.252.202.207] has joined #bitcoin-wizards 05:35 -!- spinza [~spin@197.89.46.198] has quit [Excess Flood] 05:35 -!- naturalog [~naturalog@bzq-79-178-36-76.red.bezeqint.net] has joined #bitcoin-wizards 05:36 -!- wallet42 [~wallet42@195.97.12.226] has joined #bitcoin-wizards 05:36 -!- Crowley4k [uid81280@gateway/web/irccloud.com/x-lclbaqqunpfyvjml] has quit [Quit: Connection closed for inactivity] 05:38 -!- NewLiberty [~NewLibert@76-255-129-88.lightspeed.irvnca.sbcglobal.net] has quit [Ping timeout: 264 seconds] 05:38 -!- priidu [~priidu@unaffiliated/priidu] has quit [Ping timeout: 264 seconds] 05:38 -!- spinza [~spin@197.89.46.198] has joined #bitcoin-wizards 05:53 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-wizards 05:55 -!- p15x [~p15x@64.145.91.6] has joined #bitcoin-wizards 05:55 -!- p15x_ [~p15x@124.64.97.46] has quit [Ping timeout: 248 seconds] 06:00 -!- drwin [~drwin@88-103-255-166.jes.cz] has quit [] 06:02 -!- drwin [~drwin@88-103-255-166.jes.cz] has joined #bitcoin-wizards 06:06 -!- c0rw|zZz is now known as c0rw1n 06:07 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 250 seconds] 06:10 -!- spinza [~spin@197.89.46.198] has quit [Excess Flood] 06:11 -!- p15x_ [~p15x@64.145.91.30] has joined #bitcoin-wizards 06:12 -!- p15x [~p15x@64.145.91.6] has quit [Ping timeout: 248 seconds] 06:12 -!- spinza [~spin@197.89.46.198] has joined #bitcoin-wizards 06:13 -!- JackH [~Jack@host-80-43-142-154.as13285.net] has joined #bitcoin-wizards 06:15 -!- p15x [~p15x@64.145.91.113] has joined #bitcoin-wizards 06:16 -!- p15x_ [~p15x@64.145.91.30] has quit [Ping timeout: 248 seconds] 06:23 -!- hashtag [~hashtag@cpe-69-23-213-3.ma.res.rr.com] has quit [Ping timeout: 244 seconds] 06:36 -!- spinza [~spin@197.89.46.198] has quit [Excess Flood] 06:42 -!- spinza [~spin@197.89.46.198] has joined #bitcoin-wizards 06:55 -!- damethos [~damethos@unaffiliated/damethos] has joined #bitcoin-wizards 06:57 -!- p15x [~p15x@64.145.91.113] has quit [Ping timeout: 256 seconds] 06:59 -!- p15x [~p15x@64.145.91.39] has joined #bitcoin-wizards 07:02 -!- b_lumenkraft [~b_lumenkr@unaffiliated/b-lumenkraft/x-4457406] has joined #bitcoin-wizards 07:03 -!- p15x_ [~p15x@64.145.91.26] has joined #bitcoin-wizards 07:04 -!- p15x [~p15x@64.145.91.39] has quit [Ping timeout: 248 seconds] 07:06 -!- Starduster_ [~SD@unaffiliated/starduster] has joined #bitcoin-wizards 07:07 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 07:09 -!- Starduster [~SD@unaffiliated/starduster] has quit [Ping timeout: 256 seconds] 07:11 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Ping timeout: 246 seconds] 07:15 -!- onzitam [~pc@168.1.99.213-static.reverse.softlayer.com] has joined #bitcoin-wizards 07:16 -!- alewis_btc [~antonylew@103.252.202.207] has quit [Quit: alewis_btc] 07:17 -!- NewLiberty [~NewLibert@76-255-129-88.lightspeed.irvnca.sbcglobal.net] has joined #bitcoin-wizards 07:18 -!- cryptoreach [~Kevin@94.1.87.58] has quit [Quit: Leaving] 07:20 -!- hashtag [~hashtag@cpe-69-23-213-3.ma.res.rr.com] has joined #bitcoin-wizards 07:21 -!- bramc [~bram@99-75-88-206.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-wizards 07:21 -!- p15x [~p15x@114.248.223.64] has joined #bitcoin-wizards 07:21 -!- Starduster_ is now known as Starduster 07:22 -!- p15x_ [~p15x@64.145.91.26] has quit [Ping timeout: 246 seconds] 07:22 -!- davi_ [~davi@2001:4b98:dc0:51:216:3eff:feae:792] has joined #bitcoin-wizards 07:31 -!- eudoxia [~eudoxia@r167-56-99-149.dialup.adsl.anteldata.net.uy] has joined #bitcoin-wizards 07:34 -!- JackH [~Jack@host-80-43-142-154.as13285.net] has quit [Ping timeout: 246 seconds] 07:34 -!- davi_ [~davi@2001:4b98:dc0:51:216:3eff:feae:792] has quit [Ping timeout: 246 seconds] 07:34 -!- Mably_ [~Mably@unaffiliated/mably] has joined #bitcoin-wizards 07:36 -!- Mably [~Mably@unaffiliated/mably] has quit [Ping timeout: 250 seconds] 07:41 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 07:47 -!- dEBRUYNE [~dEBRUYNE@239-196-ftth.onsbrabantnet.nl] has joined #bitcoin-wizards 07:53 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-wizards 07:53 -!- hashtag [~hashtag@cpe-69-23-213-3.ma.res.rr.com] has quit [Ping timeout: 244 seconds] 07:55 -!- wallet42 [~wallet42@195.97.12.226] has quit [Quit: Leaving.] 07:55 -!- wallet42 [~wallet42@195.97.12.226] has joined #bitcoin-wizards 07:55 -!- wallet42 [~wallet42@195.97.12.226] has quit [Client Quit] 07:56 -!- mjerr [~mjerr@p578EB7BE.dip0.t-ipconnect.de] has quit [Ping timeout: 255 seconds] 07:59 -!- wallet42 [~wallet42@195.97.12.226] has joined #bitcoin-wizards 08:12 -!- damethos [~damethos@unaffiliated/damethos] has quit [Ping timeout: 256 seconds] 08:15 -!- dEBRUYNE [~dEBRUYNE@239-196-ftth.onsbrabantnet.nl] has quit [Ping timeout: 240 seconds] 08:16 -!- onzitam [~pc@168.1.99.213-static.reverse.softlayer.com] has quit [Ping timeout: 264 seconds] 08:20 -!- dEBRUYNE [~dEBRUYNE@239-196-ftth.onsbrabantnet.nl] has joined #bitcoin-wizards 08:22 -!- rustyn [~rustyn@unaffiliated/rustyn] has joined #bitcoin-wizards 08:29 -!- wallet42 [~wallet42@195.97.12.226] has quit [Quit: Leaving.] 08:31 -!- JackH [~Jack@host-80-43-142-154.as13285.net] has joined #bitcoin-wizards 08:32 -!- wallet42 [~wallet42@195.97.12.226] has joined #bitcoin-wizards 08:33 -!- mjerr [~mjerr@p578EB7BE.dip0.t-ipconnect.de] has joined #bitcoin-wizards 08:37 -!- spinza [~spin@197.89.46.198] has quit [Excess Flood] 08:42 -!- damethos [~damethos@unaffiliated/damethos] has joined #bitcoin-wizards 08:44 -!- jae [~jae@c-98-234-63-169.hsd1.ca.comcast.net] has joined #bitcoin-wizards 08:44 -!- spinza [~spin@197.89.46.198] has joined #bitcoin-wizards 08:44 -!- Giszmo [~leo@pc-185-201-214-201.cm.vtr.net] has joined #bitcoin-wizards 08:44 -!- jae is now known as Guest90915 08:54 -!- hashtag [~hashtag@cpe-69-23-213-3.ma.res.rr.com] has joined #bitcoin-wizards 08:55 -!- eudoxia [~eudoxia@r167-56-99-149.dialup.adsl.anteldata.net.uy] has quit [Quit: Leaving] 08:56 -!- mjerr [~mjerr@p578EB7BE.dip0.t-ipconnect.de] has quit [Ping timeout: 256 seconds] 08:56 -!- bramc [~bram@99-75-88-206.lightspeed.sntcca.sbcglobal.net] has quit [Quit: This computer has gone to sleep] 09:11 -!- www [~v3@p200300454B48AE0155E1D6CDE22EA072.dip0.t-ipconnect.de] has joined #bitcoin-wizards 09:13 -!- Guest90915 [~jae@c-98-234-63-169.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 09:16 -!- davi [~davi@gnu/davi] has joined #bitcoin-wizards 09:18 -!- JackH [~Jack@host-80-43-142-154.as13285.net] has quit [Ping timeout: 264 seconds] 09:22 -!- samson_ [~samson_@unaffiliated/samson-/x-7479750] has quit [Ping timeout: 264 seconds] 09:23 -!- samson_ [~samson_@180.183.165.192] has joined #bitcoin-wizards 09:23 -!- jgarzik [~jgarzik@unaffiliated/jgarzik] has quit [Quit: apple apple apple] 09:23 -!- Quanttek [~quassel@ip1f10af17.dynamic.kabel-deutschland.de] has quit [Ping timeout: 240 seconds] 09:25 -!- www [~v3@p200300454B48AE0155E1D6CDE22EA072.dip0.t-ipconnect.de] has quit [Ping timeout: 256 seconds] 09:28 -!- www [~v3@p200300454B48AE0155E1D6CDE22EA072.dip0.t-ipconnect.de] has joined #bitcoin-wizards 09:31 -!- harrow [~harrow@105.ip-167-114-152.net] has quit [Ping timeout: 248 seconds] 09:32 -!- harrow [~harrow@105.ip-167-114-152.net] has joined #bitcoin-wizards 09:34 -!- drwin [~drwin@88-103-255-166.jes.cz] has quit [] 09:39 -!- priidu [~priidu@unaffiliated/priidu] has joined #bitcoin-wizards 09:45 -!- goregrind [~goregrind@unaffiliated/goregrind] has quit [Read error: Connection reset by peer] 09:55 -!- shen_noe [~shen_noe@wired094.math.utah.edu] has joined #bitcoin-wizards 09:56 -!- shen_noe [~shen_noe@wired094.math.utah.edu] has quit [Client Quit] 09:58 -!- davi [~davi@gnu/davi] has quit [Ping timeout: 246 seconds] 09:58 -!- shen_noe [~shen_noe@wired094.math.utah.edu] has joined #bitcoin-wizards 09:59 -!- www [~v3@p200300454B48AE0155E1D6CDE22EA072.dip0.t-ipconnect.de] has quit [Ping timeout: 256 seconds] 10:01 -!- belcher [~user@unaffiliated/belcher] has quit [Ping timeout: 256 seconds] 10:02 -!- belcher [~user@5ec33c2d.skybroadband.com] has joined #bitcoin-wizards 10:02 -!- belcher is now known as Guest17081 10:06 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-wizards 10:06 -!- Guest17081 [~user@5ec33c2d.skybroadband.com] has quit [Quit: Leaving] 10:07 -!- afk11 [~thomas@177.154.139.202] has joined #bitcoin-wizards 10:10 -!- belcher [~user@unaffiliated/belcher] has quit [Read error: Connection reset by peer] 10:13 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-wizards 10:17 -!- goregrind [~goregrind@unaffiliated/goregrind] has joined #bitcoin-wizards 10:17 -!- Starduster_ [~SD@unaffiliated/starduster] has joined #bitcoin-wizards 10:20 -!- Starduster [~SD@unaffiliated/starduster] has quit [Ping timeout: 256 seconds] 10:24 -!- Quanttek [~quassel@ip1f10af17.dynamic.kabel-deutschland.de] has joined #bitcoin-wizards 10:27 -!- b_lumenkraft [~b_lumenkr@unaffiliated/b-lumenkraft/x-4457406] has quit [Quit: b_lumenkraft] 10:39 -!- b_lumenkraft [~b_lumenkr@unaffiliated/b-lumenkraft/x-4457406] has joined #bitcoin-wizards 10:40 -!- jae [~jae@204.14.159.153] has joined #bitcoin-wizards 10:41 -!- jae is now known as Guest35496 10:55 -!- www [~v3@p200300454B48AE0155E1D6CDE22EA072.dip0.t-ipconnect.de] has joined #bitcoin-wizards 10:57 -!- Starduster_ is now known as Starduster 11:03 -!- JackH [~Jack@host-80-43-142-154.as13285.net] has joined #bitcoin-wizards 11:03 -!- www [~v3@p200300454B48AE0155E1D6CDE22EA072.dip0.t-ipconnect.de] has quit [Ping timeout: 256 seconds] 11:13 -!- psztorc [~psztorc@ool-4575fa8d.dyn.optonline.net] has joined #bitcoin-wizards 11:14 -!- wallet42 [~wallet42@195.97.12.226] has quit [Quit: Leaving.] 11:16 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Remote host closed the connection] 11:18 -!- p15x [~p15x@114.248.223.64] has quit [Ping timeout: 252 seconds] 11:18 -!- p15x_ [~p15x@114.248.213.120] has joined #bitcoin-wizards 11:24 -!- sparetire_ [~sparetire@unaffiliated/sparetire] has joined #bitcoin-wizards 11:29 -!- afk11 [~thomas@177.154.139.202] has quit [Ping timeout: 244 seconds] 11:29 -!- Mably_ is now known as Mably 11:36 -!- bramc [~bram@99-75-88-206.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-wizards 11:37 -!- damethos [~damethos@unaffiliated/damethos] has quit [Quit: Bye] 11:39 -!- c0rw1n [~c0rw1n@91.176.95.206] has quit [Remote host closed the connection] 11:39 -!- c0rw1n [~c0rw1n@91.176.95.206] has joined #bitcoin-wizards 11:43 -!- afk11 [~thomas@46.7.4.219] has joined #bitcoin-wizards 11:54 -!- ttttemp [~ttttemp@nb-10350.ethz.ch] has quit [Ping timeout: 246 seconds] 11:54 -!- ttttemp [~ttttemp@nb-10350.ethz.ch] has joined #bitcoin-wizards 12:04 -!- drwin [~drwin@88-103-255-166.jes.cz] has joined #bitcoin-wizards 12:09 -!- alawson [~alawson@87.121.52.74] has quit [Remote host closed the connection] 12:09 -!- psztorc [~psztorc@ool-4575fa8d.dyn.optonline.net] has quit [Ping timeout: 256 seconds] 12:13 -!- wallet42 [~wallet42@ppp046176089135.access.hol.gr] has joined #bitcoin-wizards 12:13 -!- psztorc [~psztorc@ool-4575fa8d.dyn.optonline.net] has joined #bitcoin-wizards 12:17 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 12:21 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Ping timeout: 248 seconds] 12:22 -!- b_lumenkraft [~b_lumenkr@unaffiliated/b-lumenkraft/x-4457406] has quit [Quit: b_lumenkraft] 12:25 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has joined #bitcoin-wizards 12:28 -!- ttttemp [~ttttemp@nb-10350.ethz.ch] has quit [Remote host closed the connection] 12:30 -!- shen_noe [~shen_noe@wired094.math.utah.edu] has quit [Quit: Leaving] 12:31 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 256 seconds] 12:31 -!- GAit [~lnahum@2-230-161-158.ip202.fastwebnet.it] has quit [Ping timeout: 250 seconds] 12:33 -!- wallet42 [~wallet42@ppp046176089135.access.hol.gr] has quit [Quit: Leaving.] 12:34 -!- wallet42 [~wallet42@ppp046176089135.access.hol.gr] has joined #bitcoin-wizards 12:56 -!- adam3us [~Adium@172.56.38.250] has joined #bitcoin-wizards 13:00 -!- wallet42 [~wallet42@ppp046176089135.access.hol.gr] has quit [Quit: Leaving.] 13:13 -!- GAit [~lnahum@2-230-161-158.ip202.fastwebnet.it] has joined #bitcoin-wizards 13:39 -!- alawson [~alawson@87.121.52.74] has joined #bitcoin-wizards 13:44 -!- FoxDay [FoxDay@bzq-79-182-68-220.red.bezeqint.net] has joined #bitcoin-wizards 13:47 -!- damethos [~damethos@unaffiliated/damethos] has joined #bitcoin-wizards 13:48 -!- JackH_ [~Jack@host-80-43-141-52.as13285.net] has joined #bitcoin-wizards 13:50 -!- JackH [~Jack@host-80-43-142-154.as13285.net] has quit [Ping timeout: 256 seconds] 13:56 -!- damethos [~damethos@unaffiliated/damethos] has quit [Ping timeout: 264 seconds] 13:58 -!- alawson [~alawson@87.121.52.74] has quit [Remote host closed the connection] 14:17 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 14:17 -!- afk11 [~thomas@46.7.4.219] has quit [Ping timeout: 264 seconds] 14:17 -!- GAit [~lnahum@2-230-161-158.ip202.fastwebnet.it] has quit [Remote host closed the connection] 14:18 -!- alawson [~alawson@87.121.52.74] has joined #bitcoin-wizards 14:21 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Ping timeout: 256 seconds] 14:24 -!- bblue [~textual@c-71-198-215-145.hsd1.ca.comcast.net] has joined #bitcoin-wizards 14:32 -!- afk11 [~thomas@46.7.4.219] has joined #bitcoin-wizards 14:35 -!- ttttemp [~ttttemp@nb-10350.ethz.ch] has joined #bitcoin-wizards 14:43 -!- wallet42 [~wallet42@athedsl-345502.home.otenet.gr] has joined #bitcoin-wizards 14:46 -!- p15x_ [~p15x@114.248.213.120] has quit [Ping timeout: 244 seconds] 14:50 -!- p15x [~p15x@114.248.213.120] has joined #bitcoin-wizards 14:52 -!- NewLiberty [~NewLibert@76-255-129-88.lightspeed.irvnca.sbcglobal.net] has quit [Ping timeout: 265 seconds] 15:01 -!- bblue [~textual@c-71-198-215-145.hsd1.ca.comcast.net] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 15:01 -!- drwin [~drwin@88-103-255-166.jes.cz] has quit [] 15:14 -!- wallet42 [~wallet42@athedsl-345502.home.otenet.gr] has quit [Quit: Leaving.] 15:17 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 15:22 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Ping timeout: 250 seconds] 15:32 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…] 15:36 -!- psztorc [~psztorc@ool-4575fa8d.dyn.optonline.net] has quit [Ping timeout: 244 seconds] 15:43 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has joined #bitcoin-wizards 15:48 -!- user7779_ [~user77790@193.138.219.233] has quit [] 15:58 -!- maaku [~quassel@50-0-37-37.dsl.static.fusionbroadband.com] has quit [Ping timeout: 248 seconds] 15:58 -!- maaku [~quassel@50-0-37-37.dsl.static.fusionbroadband.com] has joined #bitcoin-wizards 15:59 -!- maaku is now known as Guest34186 16:02 -!- Guest34186 [~quassel@50-0-37-37.dsl.static.fusionbroadband.com] has quit [Client Quit] 16:03 -!- maaku_ [~quassel@50-0-37-37.dsl.static.fusionbroadband.com] has joined #bitcoin-wizards 16:06 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Ping timeout: 246 seconds] 16:06 -!- bblue [~textual@c-71-198-215-145.hsd1.ca.comcast.net] has joined #bitcoin-wizards 16:06 -!- FoxDay [FoxDay@bzq-79-182-68-220.red.bezeqint.net] has quit [] 16:07 -!- maaku_ [~quassel@50-0-37-37.dsl.static.fusionbroadband.com] has quit [Remote host closed the connection] 16:12 -!- c-cex-yuriy [uid76808@gateway/web/irccloud.com/x-vfniztkmsxfgorgh] has joined #bitcoin-wizards 16:14 -!- alawson [~alawson@87.121.52.74] has quit [Ping timeout: 256 seconds] 16:17 -!- alawson [~alawson@87.121.52.74] has joined #bitcoin-wizards 16:27 -!- adam3us [~Adium@172.56.38.250] has quit [Ping timeout: 246 seconds] 16:28 -!- psztorc [~psztorc@ool-4575fa8d.dyn.optonline.net] has joined #bitcoin-wizards 16:28 -!- Burrito [~Burrito@unaffiliated/burrito] has joined #bitcoin-wizards 16:29 -!- samson_ [~samson_@180.183.165.192] has quit [Changing host] 16:29 -!- samson_ [~samson_@unaffiliated/samson-/x-7479750] has joined #bitcoin-wizards 16:32 -!- bblue [~textual@c-71-198-215-145.hsd1.ca.comcast.net] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 16:43 -!- JackH_ [~Jack@host-80-43-141-52.as13285.net] has quit [Ping timeout: 252 seconds] 16:46 -!- Mably [~Mably@unaffiliated/mably] has quit [Ping timeout: 264 seconds] 16:47 -!- Starduster [~SD@unaffiliated/starduster] has quit [] 17:03 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 17:08 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Ping timeout: 256 seconds] 17:08 -!- psztorc [~psztorc@ool-4575fa8d.dyn.optonline.net] has quit [Ping timeout: 264 seconds] 17:11 -!- Starduster [~guest@unaffiliated/starduster] has joined #bitcoin-wizards 17:20 -!- psztorc [~psztorc@ool-4575fa8d.dyn.optonline.net] has joined #bitcoin-wizards 17:22 -!- onzitam [~pc@131.149.70.115.static.exetel.com.au] has joined #bitcoin-wizards 17:25 -!- jtimon [~quassel@69.29.134.37.dynamic.jazztel.es] has quit [Ping timeout: 246 seconds] 17:29 -!- dEBRUYNE [~dEBRUYNE@239-196-ftth.onsbrabantnet.nl] has quit [Ping timeout: 244 seconds] 17:31 -!- adam3us [~Adium@12.23.56.180] has joined #bitcoin-wizards 17:35 -!- adam3us [~Adium@12.23.56.180] has quit [Ping timeout: 265 seconds] 17:36 -!- Xh1pher [~Xh1pher@pD9E3A97A.dip0.t-ipconnect.de] has quit [Read error: Connection reset by peer] 17:36 -!- adam3us [~Adium@12.23.56.180] has joined #bitcoin-wizards 17:38 -!- priidu [~priidu@unaffiliated/priidu] has quit [Ping timeout: 248 seconds] 17:39 -!- bblue [~textual@c-71-198-215-145.hsd1.ca.comcast.net] has joined #bitcoin-wizards 17:40 -!- adam3us [~Adium@12.23.56.180] has quit [Ping timeout: 240 seconds] 17:40 -!- bblue [~textual@c-71-198-215-145.hsd1.ca.comcast.net] has quit [Read error: Connection reset by peer] 17:41 -!- adam3us [~Adium@12.23.56.180] has joined #bitcoin-wizards 17:57 -!- spinza [~spin@197.89.46.198] has quit [Excess Flood] 18:01 -!- spinza [~spin@197.89.46.198] has joined #bitcoin-wizards 18:04 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 18:08 -!- Guest35496 [~jae@204.14.159.153] has quit [Remote host closed the connection] 18:09 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Ping timeout: 256 seconds] 18:09 -!- Quanttek [~quassel@ip1f10af17.dynamic.kabel-deutschland.de] has quit [Ping timeout: 264 seconds] 18:26 -!- psztorc [~psztorc@ool-4575fa8d.dyn.optonline.net] has quit [Ping timeout: 264 seconds] 18:26 -!- merlinco1ey [~merlin@69.42.217.140] has joined #bitcoin-wizards 18:27 -!- merlincorey [merlin@nginx/adept/merlincorey] has quit [Ping timeout: 246 seconds] 18:33 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 18:39 -!- adam3us [~Adium@12.23.56.180] has quit [Ping timeout: 265 seconds] 18:42 -!- frankenmint [~frankenmi@174-25-28-8.ptld.qwest.net] has joined #bitcoin-wizards 18:42 -!- adam3us [~Adium@12.23.56.180] has joined #bitcoin-wizards 18:50 -!- Burrito [~Burrito@unaffiliated/burrito] has quit [Read error: Connection reset by peer] 18:53 -!- nessence [~alexl@67-134-193-84.dia.static.qwest.net] has joined #bitcoin-wizards 18:53 -!- Dr-G [~Dr-G@unaffiliated/dr-g] has joined #bitcoin-wizards 18:54 -!- c-cex-yuriy [uid76808@gateway/web/irccloud.com/x-vfniztkmsxfgorgh] has quit [Quit: Connection closed for inactivity] 18:56 -!- Dr-G2 [~Dr-G@xd9bf7710.dyn.telefonica.de] has quit [Ping timeout: 256 seconds] 19:01 -!- afk11 [~thomas@46.7.4.219] has quit [Ping timeout: 255 seconds] 19:03 -!- belcher [~user@unaffiliated/belcher] has quit [Ping timeout: 250 seconds] 19:08 -!- melvster [~melvster@ip-86-49-18-198.net.upcbroadband.cz] has quit [Remote host closed the connection] 19:09 -!- melvster [~melvster@ip-86-49-18-198.net.upcbroadband.cz] has joined #bitcoin-wizards 19:14 -!- afk11 [~thomas@104.238.169.17] has joined #bitcoin-wizards 19:17 -!- jgarzik [~jgarzik@unaffiliated/jgarzik] has joined #bitcoin-wizards 19:19 -!- hashtag [~hashtag@cpe-69-23-213-3.ma.res.rr.com] has quit [Ping timeout: 240 seconds] 19:21 -!- dc17523be3 [unknown@gateway/vpn/mullvad/x-orinqfmddabvxhqd] has quit [Ping timeout: 264 seconds] 19:22 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Ping timeout: 255 seconds] 19:23 -!- cdecker [~cdecker@2001:67c:10ec:2a49:8000::8] has quit [Quit: ZNC 1.7.x-git-202-9552063 - http://znc.in] 19:23 -!- nessence [~alexl@67-134-193-84.dia.static.qwest.net] has quit [Remote host closed the connection] 19:23 -!- cdecker [~cdecker@pc-10367.ethz.ch] has joined #bitcoin-wizards 19:23 -!- dc17523be3 [unknown@gateway/vpn/mullvad/x-vijazhvdashasiur] has joined #bitcoin-wizards 19:29 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has quit [Ping timeout: 264 seconds] 19:30 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has joined #bitcoin-wizards 19:40 -!- adam3us [~Adium@12.23.56.180] has quit [Ping timeout: 244 seconds] 19:42 -!- adam3us [~Adium@12.23.56.180] has joined #bitcoin-wizards 19:42 -!- afk11 [~thomas@104.238.169.17] has quit [Quit: Leaving.] 19:48 -!- c0rw1n is now known as c0rw|zZz 20:03 -!- Giszmo [~leo@pc-185-201-214-201.cm.vtr.net] has quit [Quit: Leaving.] 20:18 -!- crescendo [~mozart@unaffiliated/crescendo] has quit [Ping timeout: 256 seconds] 20:18 -!- crescendo [~mozart@unaffiliated/crescendo] has joined #bitcoin-wizards 20:18 -!- onzitam [~pc@131.149.70.115.static.exetel.com.au] has quit [Ping timeout: 256 seconds] 20:22 -!- TheSeven [~quassel@rockbox/developer/TheSeven] has quit [Ping timeout: 256 seconds] 20:24 -!- TheSeven [~quassel@rockbox/developer/TheSeven] has joined #bitcoin-wizards 20:27 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…] 20:28 -!- Tebbo [~Jerry`@ip72-211-88-176.no.no.cox.net] has quit [Read error: Connection reset by peer] 20:28 -!- onzitam [~pc@168.1.99.215-static.reverse.softlayer.com] has joined #bitcoin-wizards 20:29 -!- Tebbo [~Jerry`@ip72-211-88-176.no.no.cox.net] has joined #bitcoin-wizards 20:37 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Remote host closed the connection] 20:41 -!- adam3us [~Adium@12.23.56.180] has quit [Ping timeout: 256 seconds] 20:41 -!- adam3us [~Adium@12.23.56.180] has joined #bitcoin-wizards 20:52 -!- dc17523be3 [unknown@gateway/vpn/mullvad/x-vijazhvdashasiur] has quit [Ping timeout: 246 seconds] 20:53 -!- dc17523be3 [unknown@gateway/vpn/mullvad/x-yyjmqdrlwlqocxqe] has joined #bitcoin-wizards 21:20 -!- ekkmad [5d2e1f0c@gateway/web/freenode/ip.93.46.31.12] has joined #bitcoin-wizards 21:20 -!- ekkmad [5d2e1f0c@gateway/web/freenode/ip.93.46.31.12] has quit [Client Quit] 21:28 -!- onzitam [~pc@168.1.99.215-static.reverse.softlayer.com] has quit [Ping timeout: 256 seconds] 21:36 -!- alewis_btc [~antonylew@103.252.202.207] has joined #bitcoin-wizards 21:38 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has joined #bitcoin-wizards 21:38 -!- nessence_ [~alexl@67-134-193-84.dia.static.qwest.net] has joined #bitcoin-wizards 21:39 -!- nessence_ [~alexl@67-134-193-84.dia.static.qwest.net] has quit [Remote host closed the connection] 21:41 -!- adam3us [~Adium@12.23.56.180] has quit [Ping timeout: 264 seconds] 21:41 -!- adam3us [~Adium@12.23.56.180] has joined #bitcoin-wizards 21:43 -!- tromp [~tromp@ool-18be0b4d.dyn.optonline.net] has quit [Ping timeout: 255 seconds] 21:57 -!- nessence [~alexl@67-134-193-84.dia.static.qwest.net] has joined #bitcoin-wizards 22:01 -!- merlinco1ey is now known as merlincorey 22:01 -!- merlincorey [~merlin@69.42.217.140] has quit [Changing host] 22:01 -!- merlincorey [~merlin@nginx/adept/merlincorey] has joined #bitcoin-wizards 22:02 -!- frankenmint [~frankenmi@174-25-28-8.ptld.qwest.net] has quit [] 22:30 -!- priidu [~priidu@unaffiliated/priidu] has joined #bitcoin-wizards 22:32 -!- alewis_btc [~antonylew@103.252.202.207] has left #bitcoin-wizards [] 22:33 -!- nessence [~alexl@67-134-193-84.dia.static.qwest.net] has quit [Remote host closed the connection] 22:36 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-wizards 22:39 -!- mjerr [~mjerr@p578EB7BE.dip0.t-ipconnect.de] has joined #bitcoin-wizards 22:40 -!- adam3us [~Adium@12.23.56.180] has quit [Ping timeout: 256 seconds] 22:41 -!- adam3us [~Adium@12.23.56.180] has joined #bitcoin-wizards 23:02 -!- Starduster_ [~guest@unaffiliated/starduster] has joined #bitcoin-wizards 23:05 -!- Starduster [~guest@unaffiliated/starduster] has quit [Ping timeout: 256 seconds] 23:09 -!- p15x_ [~p15x@114.248.216.26] has joined #bitcoin-wizards 23:10 -!- p15x [~p15x@114.248.213.120] has quit [Ping timeout: 255 seconds] 23:29 -!- jgarzik [~jgarzik@unaffiliated/jgarzik] has quit [Quit: Leaving] 23:30 -!- jgarzik [~jgarzik@unaffiliated/jgarzik] has joined #bitcoin-wizards 23:32 -!- NOS4A2 [~weechat@198.244.103.244] has joined #bitcoin-wizards 23:35 -!- bramc [~bram@99-75-88-206.lightspeed.sntcca.sbcglobal.net] has quit [Quit: This computer has gone to sleep] 23:41 -!- adam3us [~Adium@12.23.56.180] has quit [Ping timeout: 256 seconds] 23:42 -!- adam3us [~Adium@12.23.56.180] has joined #bitcoin-wizards 23:59 -!- orperelman [~orperelma@bzq-109-67-207-175.red.bezeqint.net] has joined #bitcoin-wizards --- Log closed Sun Jul 12 00:00:08 2015