Block #605,130
0000000000cf9a82973b38d2579b7aafdd2c0ccdbc47dc3242b018398b3e8df3


Summary


Date
11/15, 2015 11:05utc(8y, 10mo, 15d ago)
Total Output
275,485.96XEC
In #/Out #
15/33
UTXO Δ
+18 (+90.9KB))
Min, Max Tx Size
176-65,743 B
Size
93.143 KB
Confirmations
1,023,646

Technical Details


Difficulty
1 x 10
Version
0x00000004 (decimal: 4)
Nonce
1739534825
Bits
1d00ffff
Merkle Root
60a0719b297bcf0860fd4a3110110ec975f238aeb44fd430e79d18e4b9e70a32
Chainwork
123.11 x 1018hashes (6ac7f4b533747694f)

16 Transactions


coinbase
data(utf-8) - �;
show raw
12,500,000XEC

Total Input: 12,500,000XEC
OP_RETURN
data(utf-8) -
show raw
0

OP_RETURN
data(utf-8) - s��a
show raw
0

Total Output: 12,509,700XEC
OP_RETURN
data(utf-8) - 14ddb4ad
show raw
0

Total Output: 0
OP_RETURN
data(utf-8) - # OP_RETURN.py # # Python script to generate and retrieve OP_RETURN bitcoin transactions # # Copyright (c) Coin Sciences Ltd # # 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. import subprocess, json, time, random, os.path, binascii, struct, string, re, hashlib # Python 2-3 compatibility logic try: basestring except NameError: basestring = str # User-defined quasi-constants OP_RETURN_BITCOIN_IP='127.0.0.1' # IP address of your bitcoin node OP_RETURN_BITCOIN_USE_CMD=False # use command-line instead of JSON-RPC? CONF_FILE = '~/testnet.conf' if OP_RETURN_BITCOIN_USE_CMD: OP_RETURN_BITCOIN_PATH='/usr/bin/bitcoin-cli' # path to bitcoin-cli executable on this server else: OP_RETURN_BITCOIN_PORT='' # leave empty to use default port for mainnet/testnet OP_RETURN_BITCOIN_USER='' # leave empty to read from ~/.bitcoin/bitcoin.conf (Unix only) OP_RETURN_BITCOIN_PASSWORD='' # leave empty to read from ~/.bitcoin/bitcoin.conf (Unix only) OP_RETURN_BTC_FEE=0.003 # BTC fee to pay per transaction OP_RETURN_BTC_DUST=0.00001 # omit BTC outputs smaller than this OP_RETURN_MAX_BYTES=65535 # maximum bytes in an OP_RETURN (40 as of Bitcoin 0.10) OP_RETURN_MAX_BLOCKS=10 # maximum number of blocks to try when retrieving data OP_RETURN_NET_TIMEOUT=10 # how long to time out (in seconds) when communicating with bitcoin node # User-facing functions def OP_RETURN_send(send_address, send_amount, metadata, testnet=False): # Validate some parameters if not OP_RETURN_bitcoin_check(testnet): return {'error': 'Please check Bitcoin Core is running and OP_RETURN_BITCOIN_* constants are set correctly'} result=OP_RETURN_bitcoin_cmd('validateaddress', testnet, send_address) if not ('isvalid' in result and result['isvalid']): return {'error': 'Send address could not be validated: '+send_address} if isinstance(metadata, basestring): metadata=metadata.encode('utf-8') # convert to binary string metadata_len=len(metadata) if metadata_len>65536: return {'error': 'This library only supports metadata up to 65536 bytes in size'} if metadata_len>OP_RETURN_MAX_BYTES: return {'error': 'Metadata has '+str(metadata_len)+' bytes but is limited to '+str(OP_RETURN_MAX_BYTES)+' (see OP_RETURN_MAX_BYTES)'} # Calculate amounts and choose inputs output_amount=send_amount+OP_RETURN_BTC_FEE inputs_spend=OP_RETURN_select_inputs(output_amount, testnet) if 'error' in inputs_spend: return {'error': inputs_spend['error']} change_amount=inputs_spend['total']-output_amount # Build the raw transaction change_address=OP_RETURN_bitcoin_cmd('getrawchangeaddress', testnet) outputs={send_address: send_amount} if change_amount>=OP_RETURN_BTC_DUST: outputs[change_address]=change_amount raw_txn=OP_RETURN_create_txn(inputs_spend['inputs'], outputs, metadata, len(outputs), testnet) # Sign and send the transaction, return result return OP_RETURN_sign_send_txn(raw_txn, testnet) def OP_RETURN_store(data, testnet=False): # Data is stored in OP_RETURNs within a series of chained transactions. # If the OP_RETURN is followed by another output, the data continues in the transaction spending that output. # When the OP_RETURN is the last output, this also signifies the end of the data. # Validate parameters and get change address if not OP_RETURN_bitcoin_check(testnet): return {'error': 'Please check Bitcoin Core is running and OP_RETURN_BITCOIN_* constants are set correctly'} if isinstance(data, basestring): data=data.encode('utf-8') # convert to binary string data_len=len(data) if data_len==0: return {'error': 'Some data is required to be stored'} change_address=OP_RETURN_bitcoin_cmd('getrawchangeaddress', testnet) # Calculate amounts and choose first inputs to use output_amount=OP_RETURN_BTC_FEE*int((data_len+OP_RETURN_MAX_BYTES-1)/OP_RETURN_MAX_BYTES) # number of transactions required inputs_spend=OP_RETURN_select_inputs(output_amount, testnet) if 'error' in inputs_spend: return {'error': inputs_spend['error']} inputs=inputs_spend['inputs'] input_amount=inputs_spend['total'] # Find the current blockchain height and mempool txids height=int(OP_RETURN_bitcoin_cmd('getblockcount', testnet)) avoid_txids=OP_RETURN_bitcoin_cmd('getrawmempool', testnet) # Loop to build and send transactions result={'txids':[]} for data_ptr in range(0, data_len, OP_RETURN_MAX_BYTES): # Some preparation for this iteration last_txn=((data_ptr+OP_RETURN_MAX_BYTES)>=data_len) # is this the last tx in the chain? change_amount=input_amount-OP_RETURN_BTC_FEE metadata=data[data_ptr:data_ptr+OP_RETURN_MAX_BYTES] # Build and send this transaction outputs={} if change_amount>=OP_RETURN_BTC_DUST: # might be skipped for last transaction outputs[change_address]=change_amount raw_txn=OP_RETURN_create_txn(inputs, outputs, metadata, len(outputs) if last_txn else 0, testnet) send_result=OP_RETURN_sign_send_txn(raw_txn, testnet) # Check for errors and collect the txid if 'error' in send_result: result['error']=send_result['error'] break result['txids'].append(send_result['txid']) if data_ptr==0: result['ref']=OP_RETURN_calc_ref(height, send_result['txid'], avoid_txids) # Prepare inputs for next iteration inputs=[{ 'txid': send_result['txid'], 'vout': 1, }] input_amount=change_amount # Return the final result return result def OP_RETURN_retrieve(ref, max_results=1, testnet=False): # Validate parameters and get status of Bitcoin Core if not OP_RETURN_bitcoin_check(testnet): return {'error': 'Please check Bitcoin Core is running and OP_RETURN_BITCOIN_* constants are set correctly'} max_height=int(OP_RETURN_bitcoin_cmd('getblockcount', testnet)) heights=OP_RETURN_get_ref_heights(ref, max_height) if not isinstance(heights, list): return {'error': 'Ref is not valid'} # Collect and return the results results=[] for height in heights: if height==0: txids=OP_RETURN_list_mempool_txns(testnet) # if mempool, only get list for now (to save RPC calls) txns=None else: txns=OP_RETURN_get_block_txns(height, testnet) # if block, get all fully unpacked txids=txns.keys() for txid in txids: if OP_RETURN_match_ref_txid(ref, txid): if height==0: txn_unpacked=OP_RETURN_get_mempool_txn(txid, testnet) else: txn_unpacked=txns[txid] found=OP_RETURN_find_txn_data(txn_unpacked) if found: # Collect data from txid which matches ref and contains an OP_RETURN result={ 'txids': [str(txid)], 'data': found['op_return'], } key_heights={height: True} # Work out which other block heights / mempool we should try if height==0: try_heights=[] # nowhere else to look if first still in mempool else: result['ref']=OP_RETURN_calc_ref(height, txid, txns.keys()) try_heights=OP_RETURN_get_try_heights(height+1, max_height, False) # Collect the rest of the data, if appropriate if height==0: this_txns=OP_RETURN_get_mempool_txns(testnet) # now retrieve all to follow chain else: this_txns=txns last_txid=txid this_height=height while found['index'] < (len(txn_unpacked['vout'])-1): # this means more data to come next_txid=OP_RETURN_find_spent_txid(this_txns, last_txid, found['index']+1) # If we found the next txid in the data chain if next_txid: result['txids'].append(str(next_txid)) txn_unpacked=this_txns[next_txid] found=OP_RETURN_find_txn_data(txn_unpacked) if found: result['data']+=found['op_return'] key_heights[this_height]=True else: result['error']='Data incomplete - missing OP_RETURN' break last_txid=next_txid # Otherwise move on to the next height to keep looking else: if len(try_heights): this_height=try_heights.pop(0) if this_height==0: this_txns=OP_RETURN_get_mempool_txns(testnet) else: this_txns=OP_RETURN_get_block_txns(this_height, testnet) else: result['error']='Data incomplete - could not find next transaction' break # Finish up the information about this result result['heights']=list(key_heights.keys()) results.append(result) if len(results)>=max_results: break # stop if we have collected enough return results # Utility functions def OP_RETURN_select_inputs(total_amount, testnet): # List and sort unspent inputs by priority unspent_inputs=OP_RETURN_bitcoin_cmd('listunspent', testnet, 0) if not isinstance(unspent_inputs, list): return {'error': 'Could not retrieve list of unspent inputs'} unspent_inputs.sort(key=lambda unspent_input: unspent_input['amount']*unspent_input['confirmations'], reverse=True) # Identify which inputs should be spent inputs_spend=[] input_amount=0 for unspent_input in unspent_inputs: inputs_spend.append(unspent_input) input_amount+=unspent_input['amount'] if input_amount>=total_amount: break # stop when we have enough if input_amount<total_amount: return {'error': 'Not enough funds are available to cover the amount and fee'} # Return the successful result return { 'inputs': inputs_spend, 'total': input_amount, } def OP_RETURN_create_txn(inputs, outputs, metadata, metadata_pos, testnet): raw_txn=OP_RETURN_bitcoin_cmd('createrawtransaction', testnet, inputs, outputs) txn_unpacked=OP_RETURN_unpack_txn(OP_RETURN_hex_to_bin(raw_txn)) metadata_len=len(metadata) if metadata_len<=75: payload=bytearray((metadata_len,))+metadata # length byte + data (https://en.bitcoin.it/wiki/Script) elif metadata_len<=256: payload="\x4c"+bytearray((metadata_len,))+metadata # OP_PUSHDATA1 format else: payload="\x4d"+bytearray((metadata_len%256,))+bytearray((int(metadata_len/256),))+metadata # OP_PUSHDATA2 format metadata_pos=min(max(0, metadata_pos), len(txn_unpacked['vout'])) # constrain to valid values txn_unpacked['vout'][metadata_pos:metadata_pos]=[{ 'value': 0, 'scriptPubKey': '6a'+OP_RETURN_bin_to_hex(payload) # here's the OP_RETURN }] return OP_RETURN_bin_to_hex(OP_RETURN_pack_txn(txn_unpacked)) def OP_RETURN_sign_send_txn(raw_txn, testnet): signed_txn=OP_RETURN_bitcoin_cmd('signrawtransaction', testnet, raw_txn) if not ('complete' in signed_txn and signed_txn['complete']): return {'error': 'Could not sign the transaction'} send_txid=OP_RETURN_bitcoin_cmd('sendrawtransaction', testnet, signed_txn['hex']) if not (isinstance(send_txid, basestring) and len(send_txid)==64): return {'error': 'Could not send the transaction'} return {'txid': str(send_txid)} def OP_RETURN_list_mempool_txns(testnet): return OP_RETURN_bitcoin_cmd('getrawmempool', testnet) def OP_RETURN_get_mempool_txn(txid, testnet): raw_txn=OP_RETURN_bitcoin_cmd('getrawtransaction', testnet, txid) return OP_RETURN_unpack_txn(OP_RETURN_hex_to_bin(raw_txn)) def OP_RETURN_get_mempool_txns(testnet): txids=OP_RETURN_list_mempool_txns(testnet) txns={} for txid in txids: txns[txid]=OP_RETURN_get_mempool_txn(txid, testnet) return txns def OP_RETURN_get_raw_block(height, testnet): block_hash=OP_RETURN_bitcoin_cmd('getblockhash', testnet, height) if not (isinstance(block_hash, basestring) and len(block_hash)==64): return {'error': 'Block at height '+str(height)+' not found'} return { 'block': OP_RETURN_hex_to_bin(OP_RETURN_bitcoin_cmd('getblock', testnet, block_hash, False)) } def OP_RETURN_get_block_txns(height, testnet): raw_block=OP_RETURN_get_raw_block(height, testnet) if 'error' in raw_block: return {'error': raw_block['error']} block=OP_RETURN_unpack_block(raw_block['block']) return block['txs'] # Talking to bitcoin-cli def OP_RETURN_bitcoin_check(testnet): info=OP_RETURN_bitcoin_cmd('getinfo', testnet) return isinstance(info, dict) and 'balance' in info def OP_RETURN_bitcoin_cmd(command, testnet, *args): # more params are read from here if OP_RETURN_BITCOIN_USE_CMD: sub_args=[OP_RETURN_BITCOIN_PATH] if testnet: sub_args.append('-testnet') sub_args.append(command) for arg in args: sub_args.append(json.dumps(arg) if isinstance(arg, (dict, list, tuple)) else str(arg)) raw_result=subprocess.check_output(sub_args).decode("utf-8").rstrip("\n") try: # decode JSON if possible result=json.loads(raw_result) except ValueError: result=raw_result else: request={ 'id': str(time.time())+'-'+str(random.randint(100000,999999)), 'method': command, 'params': args, } port=OP_RETURN_BITCOIN_PORT user=OP_RETURN_BITCOIN_USER password=OP_RETURN_BITCOIN_PASSWORD if not (len(port) and len(user) and len(password)): #conf_lines=open(os.path.expanduser('~')+'/.bitcoin/bitcoin.conf').readlines() conf_lines=open(os.path.expanduser(CONF_FILE)).readlines() for conf_line in conf_lines: parts=conf_line.strip().split('=', 1) # up to 2 parts if (parts[0]=='rpcport') and not len(port): port=int(parts[1]) if (parts[0]=='rpcuser') and not len(user): user=parts[1] if (parts[0]=='rpcpassword') and not len(password): password=parts[1] if not len(port): port=18332 if testnet else 8332 if not (len(user) and len(password)): return None # no point trying in this case url='http://'+OP_RETURN_BITCOIN_IP+':'+str(port)+'/' try: from urllib2 import HTTPPasswordMgrWithDefaultRealm, HTTPBasicAuthHandler, build_opener, install_opener, urlopen, HTTPError except ImportError: from urllib.request import HTTPPasswordMgrWithDefaultRealm, HTTPBasicAuthHandler, build_opener, install_opener, urlopen passman=HTTPPasswordMgrWithDefaultRealm() passman.add_password(None, url, user, password) auth_handler=HTTPBasicAuthHandler(passman) opener=build_opener(auth_handler) install_opener(opener) try: raw_result=urlopen(url, json.dumps(request).encode('utf-8'), OP_RETURN_NET_TIMEOUT).read() except HTTPError as e: print e.fp.read() raise result_array=json.loads(raw_result.decode('utf-8')) result=result_array['result'] return result # Working with data references # The format of a data reference is: [estimated block height]-[partial txid] - where: # [estimated block height] is the block where the first transaction might appear and following # which all subsequent transactions are expected to appear. In the event of a weird blockchain # reorg, it is possible the first transaction might appear in a slightly earlier block. When # embedding data, we set [estimated block height] to 1+(the current block height). # [partial txid] contains 2 adjacent bytes from the txid, at a specific position in the txid: # 2*([partial txid] div 65536) gives the offset of the 2 adjacent bytes, between 0 and 28. # ([partial txid] mod 256) is the byte of the txid at that offset. # (([partial txid] mod 65536) div 256) is the byte of the txid at that offset plus one. # Note that the txid is ordered according to user presentation, not raw data in the block. def OP_RETURN_calc_ref(next_height, txid, avoid_txids): txid_binary=OP_RETURN_hex_to_bin(txid) for txid_offset in range(15): sub_txid=txid_binary[2*txid_offset:2*txid_offset+2] clashed=False for avoid_txid in avoid_txids: avoid_txid_binary=OP_RETURN_hex_to_bin(avoid_txid) if ( (avoid_txid_binary[2*txid_offset:2*txid_offset+2]==sub_txid) and (txid_binary!=avoid_txid_binary) ): clashed=True break if not clashed: break if clashed: # could not find a good reference return None tx_ref=ord(txid_binary[2*txid_offset:1+2*txid_offset])+256*ord(txid_binary[1+2*txid_offset:2+2*txid_offset])+65536*txid_offset return '%06d-%06d' % (next_height, tx_ref) def OP_RETURN_get_ref_parts(ref): if not re.search('^[0-9]+\-[0-9A-Fa-f]+$', ref): # also support partial txid for second half return None parts=ref.split('-') if re.search('[A-Fa-f]', parts[1]): if len(parts[1])>=4: txid_binary=OP_RETURN_hex_to_bin(parts[1][0:4]) parts[1]=ord(txid_binary[0:1])+256*ord(txid_binary[1:2])+65536*0 else: return None parts=list(map(int, parts)) if parts[1]>983039: # 14*65536+65535 return None return parts def OP_RETURN_get_ref_heights(ref, max_height): parts=OP_RETURN_get_ref_parts(ref) if not parts: return None return OP_RETURN_get_try_heights(parts[0], max_height, True) def OP_RETURN_get_try_heights(est_height, max_height, also_back): forward_height=est_height back_height=min(forward_height-1, max_height) heights=[] mempool=False try_height=0 while True: if also_back and ((try_height%3)==2): # step back every 3 tries heights.append(back_height) back_height-=1 else: if forward_height>max_height: if not mempool: heights.append(0) # indicates to try mempool mempool=True elif not also_back: break # nothing more to do here else: heights.append(forward_height) forward_height+=1 if len(heights)>=OP_RETURN_MAX_BLOCKS: break try_height+=1 return heights def OP_RETURN_match_ref_txid(ref, txid): parts=OP_RETURN_get_ref_parts(ref) if not parts: return None txid_offset=int(parts[1]/65536) txid_binary=OP_RETURN_hex_to_bin(txid) txid_part=txid_binary[2*txid_offset:2*txid_offset+2] txid_match=bytearray([parts[1]%256, int((parts[1]%65536)/256)]) return txid_part==txid_match # exact binary comparison # Unpacking and packing bitcoin blocks and transactions def OP_RETURN_unpack_block(binary): buffer=OP_RETURN_buffer(binary) block={} block['version']=buffer.shift_unpack(4, '<L') block['hashPrevBlock']=OP_RETURN_bin_to_hex(buffer.shift(32)[::-1]) block['hashMerkleRoot']=OP_RETURN_bin_to_hex(buffer.shift(32)[::-1]) block['time']=buffer.shift_unpack(4, '<L') block['bits']=buffer.shift_unpack(4, '<L') block['nonce']=buffer.shift_unpack(4, '<L') block['tx_count']=buffer.shift_varint() block['txs']={} old_ptr=buffer.used() while buffer.remaining(): transaction=OP_RETURN_unpack_txn_buffer(buffer) new_ptr=buffer.used() size=new_ptr-old_ptr raw_txn_binary=binary[old_ptr:old_ptr+size] txid=OP_RETURN_bin_to_hex(hashlib.sha256(hashlib.sha256(raw_txn_binary).digest()).digest()[::-1]) old_ptr=new_ptr transaction['size']=size block['txs'][txid]=transaction return block def OP_RETURN_unpack_txn(binary): return OP_RETURN_unpack_txn_buffer(OP_RETURN_buffer(binary)) def OP_RETURN_unpack_txn_buffer(buffer): # see: https://en.bitcoin.it/wiki/Transactions txn={ 'vin': [], 'vout': [], } txn['version']=buffer.shift_unpack(4, '<L') # small-endian 32-bits inputs=buffer.shift_varint() if inputs>100000: # sanity check return None for _ in range(inputs): input={} input['txid']=OP_RETURN_bin_to_hex(buffer.shift(32)[::-1]) input['vout']=buffer.shift_unpack(4, '<L') length=buffer.shift_varint() input['scriptSig']=OP_RETURN_bin_to_hex(buffer.shift(length)) input['sequence']=buffer.shift_unpack(4, '<L') txn['vin'].append(input) outputs=buffer.shift_varint() if outputs>100000: # sanity check return None for _ in range(outputs): output={} output['value']=float(buffer.shift_uint64())/100000000 length=buffer.shift_varint() output['scriptPubKey']=OP_RETURN_bin_to_hex(buffer.shift(length)) txn['vout'].append(output) txn['locktime']=buffer.shift_unpack(4, '<L') return txn def OP_RETURN_find_spent_txid(txns, spent_txid, spent_vout): for txid, txn_unpacked in txns.items(): for input in txn_unpacked['vin']: if (input['txid']==spent_txid) and (input['vout']==spent_vout): return txid return None def OP_RETURN_find_txn_data(txn_unpacked): for index, output in enumerate(txn_unpacked['vout']): op_return=OP_RETURN_get_script_data(OP_RETURN_hex_to_bin(output['scriptPubKey'])) if op_return: return { 'index': index, 'op_return': op_return, } return None def OP_RETURN_get_script_data(scriptPubKeyBinary): op_return=None if scriptPubKeyBinary[0:1]==b'\x6a': first_ord=ord(scriptPubKeyBinary[1:2]) if first_ord<=75: op_return=scriptPubKeyBinary[2:2+first_ord] elif first_ord==0x4c: op_return=scriptPubKeyBinary[3:3+ord(scriptPubKeyBinary[2:3])] elif first_ord==0x4d: op_return=scriptPubKeyBinary[4:4+ord(scriptPubKeyBinary[2:3])+256*ord(scriptPubKeyBinary[3:4])] return op_return def OP_RETURN_pack_txn(txn): binary=b'' binary+=struct.pack('<L', txn['version']) binary+=OP_RETURN_pack_varint(len(txn['vin'])) for input in txn['vin']: binary+=OP_RETURN_hex_to_bin(input['txid'])[::-1] binary+=struct.pack('<L', input['vout']) binary+=OP_RETURN_pack_varint(int(len(input['scriptSig'])/2)) # divide by 2 because it is currently in hex binary+=OP_RETURN_hex_to_bin(input['scriptSig']) binary+=struct.pack('<L', input['sequence']) binary+=OP_RETURN_pack_varint(len(txn['vout'])) for output in txn['vout']: binary+=OP_RETURN_pack_uint64(int(round(output['value']*100000000))) binary+=OP_RETURN_pack_varint(int(len(output['scriptPubKey'])/2)) # divide by 2 because it is currently in hex binary+=OP_RETURN_hex_to_bin(output['scriptPubKey']) binary+=struct.pack('<L', txn['locktime']) return binary def OP_RETURN_pack_varint(integer): if integer>0xFFFFFFFF: packed="\xFF"+OP_RETURN_pack_uint64(integer) elif integer>0xFFFF: packed="\xFE"+struct.pack('<L', integer) elif integer>0xFC: packed="\xFD"+struct.pack('<H', integer) else: packed=struct.pack('B', integer) return packed def OP_RETURN_pack_uint64(integer): upper=int(integer/4294967296) lower=integer-upper*4294967296 return struct.pack('<L', lower)+struct.pack('<L', upper) # Helper class for unpacking bitcoin binary data class OP_RETURN_buffer(): def __init__(self, data, ptr=0): self.data=data self.len=len(data) self.ptr=ptr def shift(self, chars): prefix=self.data[self.ptr:self.ptr+chars] self.ptr+=chars return prefix def shift_unpack(self, chars, format): unpack=struct.unpack(format, self.shift(chars)) return unpack[0] def shift_varint(self): value=self.shift_unpack(1, 'B') if value==0xFF: value=self.shift_uint64() elif value==0xFE: value=self.shift_unpack(4, '<L') elif value==0xFD: value=self.shift_unpack(2, '<H') return value def shift_uint64(self): return self.shift_unpack(4, '<L')+4294967296*self.shift_unpack(4, '<L') def used(self): return min(self.ptr, self.len) def remaining(self): return max(self.len-self.ptr, 0) # Converting binary <-> hexadecimal def OP_RETURN_hex_to_bin(hex): try: raw=binascii.a2b_hex(hex) except Exception: return None return raw def OP_RETURN_bin_to_hex(string): return binascii.b2a_hex(string).decode('utf-8')
show raw
0

Total Output: 1,886,492.28XEC
OP_RETURN
data(utf-8) - I_RobotK�X�K�X�BOOKMOBI��( �SX"�*�2�:�BSJ� R` Z a� j8 r�z������� ��W���� �"���������p  �!"#$U$,`%3�&;�'C�(K�)St*[]+c,j�-r�.z�/��0�1�%2�m3�b4��5� 6�w7�C8ɠ9��:�%;��<��=�~>��?Q@�A�BC}D%�E-�F5jG<�HC�IKJR�K[�Lc�Ml Nt\O|�P��Q��R��S��T��U�V��W�X� Y��Z��[�p\�5]�-^�B_��`,a �b�cQd"�e)�f1>g9ah@�iH�jPWkW�l_6mgnoFowRp�q��r�s��t�Xu� v� w� x�By�szϦ{��|߮}�Y~���3����/�������'��/��7��?��G��PL�X�`^�h��p��x��������������������Fb�nh�n��n�� ��MOBI��鴃��������������������������������������������P������������������������EXTH� dIsaac AsimoveRandom House, Inc.g�SUMMARY: The three laws of Robotics:1) A robot may not injure a human being or, through inaction, allow a human being to come to harm2) A robot must obey orders givein to it by human beings except where such orders would conflict with the First Law.3) A robot must protect its own existence as long as such protection does not conflict with the First or Second Law.With this, Asimov changed our perception of robots forever when he formulated the laws governing their behavior. In I, Robot, Asimov chronicles the development of the robot through a series of interlinked stories: from its primitive origins in the present to its ultimate perfection in the not-so-distant future--a future in which humanity itself may be rendered obsolete.Here are stories of robots gone mad, of mind-read robots, and robots with a sense of humor. Of robot politicians, and robots who secretly run the world--all told with the dramatic blend of science fact & science fiction that became Asmiov's trademark.h9780553294385i�Fiction; Short stories; Fiction - Science Fiction; American; Science fiction; Science Fiction - General; General; Science Fiction - High Tech; High Tech; Robots; Media Tie-In - General; Media Tie-Inj!1991-04-15 01:00:00-04:00l3calibre (0.6.51) [http://calibre-ebook.com]� � � �I, RobotI, Robot<html><head><guide><reference�ype="toc"�itl�`Table�f�ontents"�ilepos=000�2123 /></�l/��body><div><p�eight="1em"�idth="0pt"�lign="c��er"><f�(�iz��4�xb>I,�obot</b�؀��8p����������Isaac�simov�߁߁߁�left�o�i1"> ���r���W�W�W�WTO�OHN�.�AMPBELL,�R,�ho�odfath�d�HE�OBOTS�/�/�/�/�/The�tory�n��d <i>��bie</i>�as��rst�ublish����(Strange�layfellow��in�uper�ci��S��ies�0opyr�� © 1940�y�ictioneers,�nc.;�G�A68�A��ov.�G�G�G�G�G�Afo�)ing�������`inally��1A�0und���]�l:�������eason�!,��\1���eet�nd�mithЄyca����׈�9��������Liar!���߄߄߄߄߁ׄ߄߄߄߄߄߄߉�unar�Q�߃7942�����ׁ�197����������������Catch�hat�a�����?�?4�?�?�?�>�'�'�'�'�'� Escap���σ�5�σσσσσσσσσ�v��Ѓ߃�946�߃߃߃߃߃߃߃߃ߕ�t�x�o�دl�'�'7�'�'�'�'�'�'�'�'�'i���t�r�Xf���G�G195�r�G�G�G�G�G�B2�G�G�G������mbp:pagebreak������b>CONTEN���9�/������������><a�?�O�O�O�Ia��lepos=000�3020�ntrodu�z��a��ׂׂׂׂ�0012523�ѷ傧������������72309�����������������127908������������������83421����}��������������245016���D���������������H97��O�N��������������810���ㅧ������������4�87���Ƃ�������������52247����w�΢��o�o����7�J�w�}��O�O���������/�/�/�/�.I�OOKED�T�Y�OTES�ND��IDN’T�IKE�HEM.ɀ�d�p���h���ays�t�.�.�{����m�bas�ell�ave��em��home�ȭ����ncyclopediaԁ�ur�@��o�o�o�o    �E�3�usan�alvin�Hd�een�orn�n��year��82,�yy�aid,�hi��made�r�ev��y-fi�Xnow.��eryone�new��at.�ppropriately�nough,��o�kMechan�l�Xn�K��h�/�(also,���鉈�݅�r�f�r.���s�ir���Lawr����ert���*fir��tak�`out��corpor����rs�or��(��ual�xbeca����strange�@indu�pi�`gia���ma�chistory.׎�,�Y�����oo�7�7�7�7�7���6A���ge��tw�9,��燨part�2���aicul�`Psycho-Ma�semi� �I�C�1Alfred��nning��ϗ��demon��t�H��kmob��obot�o ����be�quipped�ith��oice.�t�as��large,�lumsy�nbeautiful�obot,�melling�f�achine-oil�nd�est��d�or�he�roject��m��s�n�ercury.�ut�t�ould�peak�"make�ense.</p><p�eight="1em"��dth="0pt"�lign="left">    �E�3�usan�aid�ot�pg�t���(se��ar;�ook���ar��n��h��ic�iscussi��period��followed.Ӂ`��frosty�irl,�la�H��colorless,�h� rot��herself�g�Xst�w�H�X����lik�(by��mask-���xpr�X�y��a�y��trophy��int��������qwatch�h��liste��H��fel�i��tirr������d�nthusiasm�W�W�W�W�W��W�8obt�h����e��’s��gree��Co��bia�Q2003��beg�8graduat��ork�cyberne�Ps�'�'�'�'�'��&All� ha��en�one��mid-tw��ie��c�H�H��“calcula��g��s”�Oupset��Ro��ts�his�osi� n��br�-paths.ԃ�����relay�@��photoc�Hs��giv�way�H�kpong�Pl�P�ٔh��numiridium�bo���Ziz��Pum���_�_�_�_�_����lea��o�e��aramet��ec��a�H�0fix�o�(ble�aria�Hs���D�x�����X�A�ȚXruct�)�Ҍ2��a�P�uch��I�`�Xs���؊;�Hmuli���ac�x��ly��edi�������ωI��8�K�υ(Ph.D.�Rjo��Uni��St�@s� ot�P���0�ypsych�Hg��,��beco��g�:fir����pra��t��H��new�cien�ALawr�Q�7�򈰘У�id���ɂ�corpo��p;��f��nn�ɗ˄0�qr�����:s��ch������ߊF��fif��y����w�I�թy�ؗ��Pss�hang���eap�hea�ׄ����������No����r��� --��m���ev��B.�t�)���a���s��)else�Zn�ؕ������u�(�{o�+�)off�ц����������W��T��,�s��ti��y�X�w�9I�I.�;�hl�г"�=pub�x��� � �� �xs��A��;�<��h�𖒡а���x��romo���(�8sho�ȁ��f�3�ؙvita���Xfu�@�s�߈߈߈߈߈��޻1�z���(��H��w���O�'�'�'�'�׀W�hneed�mor���(��f�hmy� a�@�Hr�8�Q��I��r���X��P��.͓�1�DŽDŽDŽDŽDŽ��ǔ(� ��so�����������W���`Dr.�alvin�BI�aid,��lush�(�P��,����@�ݓ�c�ou��U.�.���P�"��.�our�#em��w�Ae���(era�--�H�����������dž���x�҅:��-i�Qe���ple?����did��smi�@�xm��I����ik�?�2�����ey���ȁarp,��ough�o�Jry�afel�sg�H��sl�ЁPr�Z�(��o���0occip�X��k����As�n�8mon��trans���a��輸�Q�1ybody���o�����?�߄p���إ)��r��.���/�/�/�/�߀W��H���>���A�z?��n��di�B�ǃǃǃǃǃw�W��No,�p��.σ�����������W� Well,ɉ�ve�hen��@a��self�������y�s�ʛ��m���r�������������W��ey�y,� �I�Qno��X�Ysay���w���������W����g�8up��chai��ٮ�t��*��look��fr�y��o��������1� dow��w���(�����������w�G��K�Ѓfa��i�p�p��ts�ere ����a�mall�ity;�paced�nd�lanned.�t�as�latte���ut�ike�8�erial�hotograph.</p><p�eight="1em"�idth="0pt"�lign="left">    �E�3 “When��irst�ame��re,”�he�aid,�AI�a����ttle�oom���uilding�I�b��t�)��2�`��e-house�s�ow.� S��point���!�torn�own�efo�you��Yb�ЉH��ar��фJwith�pree��s�)��half� desk.ׂ�ht��r��bots�0l�9on��I.�utp�(--��a��e�Now�ook�t�s��/�/�/�/�/���/�Fifty�ears�҅�ckneye�뉠��o�(time�σσσσσ�W��No����’���qb��A�xm�w�p�RY��onder舨�(y�ani�(d�o�uickly�W�W�W�W�W��W��Jwent��to�!���s�8�y.�Bdidn�Xt�e�`expressio�!��f�Ђ�Jsa�some�0���W�W�W�W�����H��ol�`��?��wa�I��k� �w�w�w�w�w�G�w�Thirty-two�ԍ"��������ۊ���rememb�0��or�(�џ��{.ԟ˞0a�b��hum�����univ�H�����ga�rien�P���`h�xcreatu�`��l��im�Htr�����th����self,�� fa��ful�|�8�j��absolutely��vo���.�an�Xd�����Ʌy.�av��e�0��ou��of陙��way�ьO�O�O�O�O��O�I��m�fr���ve���)y��qu�Гu�����������w���"may��o�щx�3���\.ǥ��Jmetal;�lectri�9��osi�!��M�i��i��!Ȑ�-made!�f�xc�Hary,�{-��Ȩ!��i�Ɠ�k�X�̥���Wt�"�Ҕ�y��a�leaner,�ػ0r�����w�r��������W�I��(�jnudg��� �H���ds��We��d�[��ar���y�Yth��s��cou���pl�(;����r�iews��Geɣ�rpl��t��ШI�ach�2e�nt���ol��Syst�qP�P��al�ud�8�p���Kbill�X,�r.�alvi��������䟨������a��?�?�?�?�?��W�8�Qs�������� ��me�蒀��s���0g�n��r�a��r�0�P�O�'�'�'�'��g�Jy��!�2���8from��s�0��W�P���C�orŀ�h-���An --����e�X�)���X,�i��Of����,�]s�;����n�P��k.�f�@war�X�Jbeca���Z�Z��op�Z�Qbega���ab��h�,����n�qal�p�ʘP��compet�C�� job���9various�egm�@��f���0��opi�Y�(�2i�Hup�8���bj�˘�ۍl��i��ridicul�A�Q����l���0��y���������7�����ǀW�i�Qta�x�P����ba�����Hpocket-�Ƞȥtry�y�Bo�x����uckle-mo�B������8��pra�(��a��t,�S�0�y�X�1poin��b�����cc�и����ԁ�little�a�������"� �����������G����a�q��ca��� Robbie,����s�P.�ڟ��!knew��H��dis�؅h�Z�����I��in�̔�any��hop�r��ut-of-d�H.�I����irl��m�8um--���������W��st��e���iI�/s���x�����8��ey��mist�p���m��tr��l�ac�h�ٙ�l�Q� ���co�(�������Y�Xb� ��l�8�����R�Bc�، �xblasp��P�"demon-c�`tor��I��way�9�K�ȏZ���C�Pn-vo���[�J�b��pea���mad��`�j�81996���`�����d����extr��Ac��iz��as�����Z�[�)m�”</p><����p�eight="1em"�idth="0pt"�lign="left">    �E�3 “As��hat?”</p><���������G�W���ursemaid.�ςςς�><font�ize="7�xb��</b></�ɀ8��a/���Robbie�O�7�7�����P����/�/�/�/�?��NINETY-EIGHT --΀��9�yO�8HUNDRED���lori�ithdrew��r�hubby�ittle�orearm�rom�e�y�2eye�0nd�tood�9��moment,�rinkling�Znose�Zb��k��in�he�un�Pht.�hen,�ry��to�atch�9all�irection��t�nce,����a�0cau�(us��eps���1tre��gainst�Pi�ȁ�ha��een�ean��.�������������S��craned��eck�yinvestigat�x�possibi�i�0of�clump�Ybu��s���Qr�i��pn��far��r�9obt���bett��ang���iew�zts�ark�ecesses���uie��as�rofou�(except���i�`ssa�(buzz�Y��@�x��)occas��al��irru�:s�X� rdy�ird,�rav��midday������������w���4poute�P�8I�i�������id��h�����I’v��ol�him��ill�H�im����*�@s�(��air�w���������W�W�׎P�Hn�I�ppr�Ɋ�oge�˂�ly�Ra�eve�Ȗ�wn���r� hea����mov�0de�Hmi�8�tow�8�[wo-��r��uild��ppa�Ȁ�driveway�������χToo엉�j� �rust��s��behi�8�H,�Pllow�����zi��n�Ѝ0�9rhythmic�c-���Ӎ2met�8fee���a�xrl��ab���is�`��ri����g�omp���emerg�2m������mak��� me-����u��speed�����������_�G�Cshriek����� m����Wai�؇k!����n���Ӏ�You��mi��y�hwould�Srun�ntilɆ����bH�����������no�d�؇��������i�Is��d������q�����x�1goal����pac�P��sudden�ҡs�؃X�ت�wls���k�����i�b���bw���,��(d�(�Ȩ�y�����ou���Iwel�he�a��gfi���'�'�'�'�'��'lee��y��tur�i���p�8th���ԇK� ��ba�؆�(ratitud� �x�賑���9hi� a�0fi���ia�����crue����la������)�H����_�_�_�_��_���C�ؓ�,�Y��s�X�x����o�b�ტ-y��-��vo�8�I�I��������8.�P�ǀǖ���h����ords�ɛ;�P�������������O���tdi�dansw�ɕ�o��e --�J��J.�����`m��5�ٮ����"a�ٝ��,��xsel��af�Ȉ+s��dodg�р�nar�����c���ve�@��helpl�0�irc�H,�uarms�ut��etc�I��fa����ي'�'�'�'�'�������Oquea�(��st���ll!� ��A���lau���`���"�������br�h�"jerks�����������O��U���_���Ic���up�`�y��r��0�)�a�ь��3��f�@�ӝcm�x���a�lue��p�Ȇ�ben�顛g�����0�P����u��i��down�����;���8d�����)�9����ra�0����e����7�Mle����l�;�@,���e�������������A��a��l�`� �3����.�"pu�u�p�p�񌳻hev���(��qvag��imit��Ȓ���<mo�pr���pu�؇�twi�����i�sd��s��r� rn�����������_���yslapp�̦𜐌W�U��so��Bad�oy!ɀȌ�s��k��������������o�����   �nd�obbie�owered,�olding�is�ands�ver�zface�o�hat�he�d�o�d��“No,��on’t,��.���pank�ou.�ut�nyway,�t��s�y�urn��hide�ow�ecause��� ve�ot�ong��legs� d���romised��t�ru�Hill��fou�+.”</p><p�eight="1em"�idth="0pt"�lign="left">�;�3�W��nodd���Je�P--��ma��par�8elepip�with�9�hedge��corner�`ttach�؊a�imilar�much�ar�y�����+erv�`as��r��by�ean��f�Qhor�@flexibl��talk�:��obediently�‚�e�re��A�`in,�X���ilm�esce���vglow�Iey�|f��Zin� body�ame�Yt��Xresonan�ick��.�����������W����D�peek�ʇ4d��kip���umb��,�X�a�d�loria,��scurri��for��`������ׅW� unvary��regu��it��seco�1�����!ff�{���h�М�th,�p�P�����lids�[�����`��C��*swep�әpspect.�hey��t��a�om� on�`bi�Hf�H�ful��ham��(tru����be�ȅ���uld��ȏ�dvan��a�ew�9p��nvi��himself����w�p���ho�qu��@�it�����������W��S�Xl��main��al�h��etween��ah��-�٨������i��pl�0�[wh��q��in�@��s��� �0�X�uev������z�H� �8�ƫq�Y��s���Rext��n��r��o����er��lapp�Ʌ!o�(��g�@st���^��ra��.��eme����ulkily�����������w�W��Y�i�0ed!�!��exc�m��Rg��s�xfai�ss.��Bes��sɖ��Pi�$������-��-��k���1a���Dž����������W�����ahur���unju��accusatio�����sea��-care�H�h�rhook�p�He�8s�������Y�A������׆��c�Ȏِ�t�� �9��g��e��ax��im��i��a�0C�X�X��I�id�#�ђaa��<�`�)�i�ذJ���w�w�w�w�w�W�G�d��b�p���"�eas��,�`ough��gaz��tubb���A�[sk�@������mo��emp�hic�(�o�������������xPl����S,�p���8��{әAncircl�z��eck���x�@rm��hug��t�хP�������moo�p�X�U�P��m���0��rIf��H��,��go��o�ry����`f���wi�:��� �P��prepar���������������H�-��r�a�pai�៚�hn�i�At�I��ad��p��ibil�g�fa���t�`�>fo�薹���`��ɣ���rump��d��������ߋܩ/�,��rm�|�8�;�ell��any��st�es��at� ��ll.ΙP�`--�/���������G�W�ga���p���un�Pdi���ɝf���ul�Patum,�d�2�fvigo�\u�xl�*metal�1�hu��.êŸ�rais��X�h��girl���:����Abroa��fl�:���Ȏo�߈߈߈߈��w���th�(�Ȅ���s�ani���Љ�����row�I��de�Pht.�L�r�Cs��,�ep�2��o��t�Xe��u�H�hs�!t�ؕЂ�h�x�p�i��coils�b�yfel�Xi���icom�xtabl��whi�P�beauti�Clou���*��hee�pma�Ȭ��h����prhythm��gai�p� che�P�1��8t��������ךo�You���@��air-��� r����� �ig�`il��`�\��oldﶘ�`�ЫAst���--ٛ�g���i�*�ө����;�ݜ�G�G�G�G���W��8gic�*ir�Y�������were�i����ngs�atching�he�ir�urrents�nd�e�a�X�ilver ‘coaster.</p><p�ight="1em"�idth="0pt"�lign="left">    �E�3�loria�wi��d�robot’s��ad�*lean��o� ��.�e�ank��sharply.�uequipp�|����th�Pmotor��at��@��Br-r-r”�z��n�kweapons�o�iPowie�e��Sh-s�hshsh.��Pirates��re�iv��chas����ip�bl�ځdcom�ain�Ppla��T�hp�|dro��in�yt��y�ain�O�O�O�O�O��N�@Got�o�r�ne��wo�hre,��s�Pcried������?�~��n��F��,�en�2�said�ompously,�Qw���� runn�)out�f�mmunition��S�"m�0o�q�Yshould��undaun�acourag��Robbi�Ubl�-nos��pace�q�o��through�:vo�8��maximum�ccele�p�y�?�?�?�?�?��=C��r��ros�)e�iel��s�P,��p��qtall�ra�pon�ڎ{side,��Xe��t�S��suddenne�"�xevo����h��k�rom�is�lu�8d���,�gtumbl���ӄ�soft,�he�c�et�����������_���ga��pa���{gav��ce��Hermitt��w�p�d�xclam�2�@f��T� ��n��!�P�_�_�_�_�_�/�]��i����il�:h��ca�(t��brea�A�upul�ig��ly��a�ock�Qh��7�߄߄߄߄����You�؈�somet�?�B�ً+,�y�9�p���ppa���rtl����plexity��foo�]hu���Pnursem������ll��l����l�r���'�'�'�'�'��'��Oh,��now.ه���ory���?�?�?�?�?��7�2no�(��apid�`�ׂׂׂׂׂ���Whi��ne�Ⴇ���������w�w�rma���Hemi-circl��1��Ã��xng�w�σσσσ�W�Rl�X�Pgi�Hpro���ʇ@Ag�H?ɯ �to�(y��Cin�pella��ill����s.��H�xt�Jti�əit? --It��f�@ba��s�o�7�7�7�7��W�����e���ǂǂǂǂ��_�cw�X�Ga��B��self,�n�ۍadetail�"�y���:� �`d (tog�ط��wn�labo�3s,��ؓ0��se�al)��began:�����������r��dy?ׇp�h�P�xup��a��i�P�teautiful����wh���a�h�9E������-�Perrib�Pcrue��tep-m��Zwo�ery�g�q���r�o-si�8r� nd--�br/�W�W�W�W�W�7�a�ʈPc�َ� limax�����midn����strik�����iy����chang�iba���]habby�ri��a��lickety-sp����hi�8��l��n��en��y��burn������w�‚�"rup�q��m�������߉�h�3�g���������?�W�ɉۅ�h�8-pitch�(sou�(�p��om��Вs���c�8�����1,�@��� �K;�2����nervou�@�񂰀9����m�@xi���B��in������P�Pmp��e�H�/���������g�/��Mamma�b�]me� �?�8��quit��ppi���Ṉ�Рt��r���0�ׁ��h���۫/�DžDžDžDžw�W�&ob�hd��alacri�讙s�`how�?�Pat��im�ljudg��it��st�2�x�r��W��on����o���mu����sc���hesit�*.�L��a����a��y� �٘sday�excep��ӓay��to�H,�insta�������r����,�A��v��a�eni�P�!�@�p��d�9p�`�ׄҦ�ow� ���our�P��uneasiness�o�obb����ie�nd�here�as�lways���mpulse�o�neak���rom�er�ight.</p><p���q="1em"�idth="0pt"��ign="left">    �E�3�rs.�eston�au�H���f�Im�rminut�hhey�o��abov���asking�ufts��lo�pgras����retired�nsid��hou��wai�/�/�/�/�/��/“I’��s��t�xmyself�Xarse,�loria,”��0aid,�ev��ly.�W�3�)you?�P�τττττ����I��with�obbie�2qua��d�Ԅ�Stell��him�ind�la,�jI�orgot�t�bdinner-time.�����������G�W�Z��,���� �ity�܃�,��o���hen��s�qat�x�`d���1���bo�kpresenc���1whirl�Xup���x�*You��y�o,��.Ӂhdoesn�(t�e��� �ow�/�rutally,�1A�hdo��come�ack�ill� c�8� �����������O�W���turn�Ж���but��sita�y��K�ri���(����� efen�!�ј�,�amm����a��le�h��sta�pI��d��finish�Ga��cI�2�8woul���𒧁c���@m�X�eed�����������o�W�R��!�����������?�W��Hon�X��ru�i�lhe�@���o�ie�X�!w�D�pn둨�ks���He��n����n��chair���jo��r�����ls�8a�pr�@I�e����؁�yth�@�蓱�H��������/�W����ppea�At��nod��Ȭ�si��hea�!�down�8ce�������׌���pf�b���xp���0�����[sha�ee��r�Qhol��ek�������W�����Zeyes� �r��!œH��鐰� fav�����@r�H�ڛ����� --�Q�Plik�� ��much�7�7�7�7�7��W�3�� f���9a�Xsconsol�� e��hok���a��b�cbr/�w�w�w�w�w�W�rGe�eל �`���tabl�XI��a�ab�y��h�b�A�N�ASund�fterno�`.��po�x��r�����l���Q��c��;�ni�"of�dilapid�:co�؂��؀H��sprawl��copy��T���Hsli��1fe��!s��tles�Ѓ`t;�����������lp�򆯆�?�w�����׋�`��3please����re�8��w�P��wif�Yl�Iin���A� n���s�Amar�Zl�X�x�A�I� � unut����y�ol���гao�����ꁪn����i�2�����qlways�l�0���п�--���W�T�u����,w�)sac�Y� �9���Pidea�y�h�p���ʒØ��`�z�2tud��two�8hr��our�(C�e�@nt��fix��� �prm��up�\� �hrep������L��bre-Yo�xda�xpedi��o���(�ꑁ�\tak��ff�rom�unar�Jm���ctual��succeed)��pre��������ʮ7���������o��M��������ati��Fmi��es�rn�m�������:br�H��sile�������/�W���:!����������?�W��Hmpph�ǂ��������7�W��pI��y!טA�p���� pa�艒loo�`t�e�/�/�/�/�/�߀W�Ãr�pl�ÌYf�`����turn����Ўxac��owar���Q��W�������X�W�W�W�W�W��W�zY��kn�Hw�"�9,�d����줣�0�pri�imachine�������/�W�z�R����������W�Now�on’������t�retend�ou�on’t�now�hatɀ�m�alking�bout.�t��s� robot�loria�alls�obbie.�e��es��leave�er�or��oment.”</p><p��ight="1em"�idth="0pt"�lign="left">    �E�3 “Well,��y�hould��?��Rn�supposed�o.���he�ertainly�<a�errible�achin�B�|e�est�arn��money��n�uyႰ��damn�Xsur���e�X��ack�alf�8year��inc�X�6worth�t,��ough --��s���lever�0��n�cmy�ffic�8taff��br/�NJNJNJNJNJ��Žmade����to�i� up�rpap�Pag�,�t�i�ife�as�u�X���snatch��i�way.���������Y��lis���me,�eorg�xI�P��h�ɉ(da�x���ntru���Y�яC�I� �6ca��P����is�񂘒��@,���h�P�ˆ���hmay���Pin���hi��j�𓖋�H�Pguard��b�X��g�І����O���������W�W�זon�row�,��h��di�eci���P��be�wi���<two��)w���1��s�y�a�Xry�ill�A������ǀW���� diff�`n��t�irs�ڀ�a��velty;�Itook��load�Y�B�������fashiona�����d�xB���Y��Q.Ԙ(n�ibors--������ǀW�o�J���q�N����it?�ow,��ok��Ü@infinite��mo�H��֡�a�um�@nursemaid.�䈂cons�xc�y��o�A�1pur�Q�e�xy�1�䪑ompan�(�ы�itt�h������xi�p‘��xty�����Bc�����"�k�r�«h��elp���1fa�Xful�rlov�Z�X�����3�N-��s��T��� �����ys���� s��׎׎׎׎��W�ҒYs���m��g�hro�S��-��i�r�����b�hhaz��Y�ins��s�������)�jigg�w�Y�q�q��!�aw�鄓�"��be��r��nd�2��S���br����se�@�(��let�[��Pobviou��qt�ϊ?�?�?�?���?��N��e�,���deni���ʎ involu�(�0nerv�9��X.������`ridicul�P���Pd�‡0discuss�ќ��ti�Hw���ʙՌ�F���aw�р�otic�����񓁱:�am� si�����<��harm�F�r;�˄�be�xe����’]��l�q�r�f�Ȃ�w�A������o����Q���p�(ical�Vi�ɨ�e����eng� ���mՖ���ots�I��wic�H��)g���Ko��gadge���W�8rhaul��hy,�Qr������c������n�p�*���؈h�������$�R�R��П���I�ud�0�P�ۙ8����a�H��y�ess,�`��c���$,�i���q��tak�@i�(w�����3?���o�o�o�o��W����ano���u���tab�Upa���r���f�qss�0��angri��q�Bxt� om�g�����������g�O�i��George!��w��pl���y�9el�������doz���y��boy���girl��xs��s�X��m��friend��th,�郧��o��n���p�n�1���2� �w�юb�R�d��zr�(up�;wan�A�B�Hnorma��d���@?�G�G��߀�par����ocie���׌ߌߌߌߌ��W�ك��X��jump��s��ow��Grac�Pr�@�0�렬do�pI�h��s��hundre�P��zr��wh�X�jr�)�x�1�Pir��N�xf� �߆߆߆߆߆��W��A���diff� n�Ʈ�m�a�a������horr�2�:�+����ط�ack�ҸBmp�P�6ask�锁� ���o�o�o�o�o��W�G�6?Γ0��k���T,�ȕ �rof����eep��d���skeeping ����the�obot�ntil�loria�s�lder�nd��on’t�ant�subject�rough��p�gain.”���with�Pat�e��lked�ut�f�room�n��uff.</p><br/><p��i��="1em"�8dth="0pt"�lign="left">    �E�3�rs.�eston�e��r�sb�9�`��door�wo�venings�ater. “You�@ll�ave�o�isten�Qthis,�eorge.Ԃ�e�Xs�ad�eel�P���villa�0�`�ʆ��������G�W����Ab��w�x?� as�y�;?Ȍxtepp��in�R��sh�"��drown�any�ossible�hsw�by��pl���w�������煷����waited.Ӄaaid,��Robbi�����������O�W�������,�wel� h��,�ac�(���ngry�rW��are�ou�����a��������焷�o�Oh,�t��e��build�I�)�x��p.Ɂ@�Yri�h��close�y�yes��i��b��Im�Hgo��؏amor�xMos�ޔ�rs�onsi�)���He����Ch� r��h��all��"go�ear��r�l�Q�̚��O�o�o�o�o��W�jW��u��<i>��</i>���h�������������O�W��ll,�eop��reasona�����،P�ꇏ�����������W��У�h�0�&m��������W� Say��Ydoes��sol�9�xp�xl����g����do��shopp��d���y��O�Ime�����yry��y.�����)�or�葼cit����hs�@�it�m�#� ��New�ork�(sꐱpass�2�r��an�hkee����ԗؗ�str���tw��suns�p���Xris�'�O�O�O�O��W����� �y�a�|top�s�r� ���T����h��.�r������ne�I�r�hmpa�X��I�cogniz��t.ƒ���no�H�����@s�h�0no!�x�@���=�s!�M���w�w�w�w�G�u��y�z�ov���qwife --��ٵ���,�kn�����Ӯ�,�f��,��only�m�H��p��у��made�u�؈��Q�,evi��which�@clumsi� ���crupul���ex� l� ����1���fu�薠���0�_�'�'�'�'��&T��i���unsu��Pk���@�)�B��st�x�`���y�zf�0l�逺ea�������eak��ac�pan��b���q��ago��d�roan�/�/�/�/�/��.Ca�X��H�t�as������ap����,dau�p��g�������jgg�x�шybea������visivox�Y�Њ[��������߆Glori��P�)��h��s�0��l����C�H�,go?���׃׃׃׃��W��No,�`ar,�Q��ai���i�����J�xu�����!vo�����"wo��w��ĉ횸���8����ihim���������g�٦q��H��um� �p�x���i�Џ`�xw�!�x��look�9w� ���������1back�t�abubbl�y����enthusiasm,梒�ha���a��Ƞ�pectacl��deed�����������_��S��wai�a�!�yfa�ɻbaneu�jet-ca��n�Џ*unk�gar���W�H�x��I���#,�add�8��woul��a��li�遐�I��y��.ŇIi���`�Fr���@�A�*�ٶ����X-o-o�uiet���� �ظ򅃶ą�Leopard-M���X�run���l����gai�h�І �褸��e��� �o���kMoon�������������W��P�ab�Xnot�����vbs�0l�؁PI�ju�Aunny�ke-beli�0��c� �t���u�long���!�@�q�0�d�Qa��X�dždždž�eft">����        �3�loria�an�cross�he�awn. “Robbie. --�S!”</p><p�eight="1em"�idth="0pt"�lign="left">�_�W��Then�Pstopped�uddenly�t�s���f��eautiful�ollie�hich�egard��her�u�jserious�rown�yes�s�t�agg�Xit�ail�n�2porch.�����������_���`Oh,�؆a�ice�og�y�climb� ��teps,�pproach��c�!�؈nd�att���2I�"for�e,�addy?�O�DžDžDžDžw�Wȉ�mo��r�ad�oin�#m��Ye�8��i�8�C.�sn’��t�C--�of����furry?�t�s�ery�entl�It�ik��lit���irls.�?�?�?�?�?��W�YC���la��ames�����炗�W��Surely.�p�Hn�Їhy�u����f�ricks.�ould�ou�Z�o���pome�o�o�o�o�o��W�jR��awa��I��ntҜꃅhim,�`o.�Ĕ2S�o,�ncer�H���0�����ѓq��ll��t�X�Bjust��aying�8is�oom� ��s���Cm��me�bno�Xak�������visivox.�ou�Khav��ex�����X��B��m����be��x�Ab����know�f��s��it����so��NjNjNjNjw�W��e����p�rew�er�look��ow��� wife�"c����cat�ța�أ��������������tur��precipit�G��d�a��basem�p��sh����� �aw�������C�ЂB���〉��Mamm��rou��m���y���Ȩ,�,�O���������G�W�ɵH��nut������re� �`�P���y�Ol�j�������<�����م ������w�n��sw����George���g�)�сa�nextr���Pin�P�p����imles�Adrif�:cloud.��� o� qu�r�е��h�ࣹear�@�؅���,�������������_�W��r��ks�0���qd�A��da���H�zy�*er��D�¶ee��a�0�U�Th��gon����,��think������煗�W��G��?� �<�����牷�׃׃׃׃׃����No���$,�(rl�H����wal���cW����\�j���������I�r�Qw���ki�`�Ȋ7�g�g�g�g��W�b�����2��n�Pr��Xback�g����H��(������it��orror�߄��������W�����H���e�xon�D��keep�:��D.��`�1whi�ౡ����y����؛�n�ئg��̂8�ق!ȡna���@L�n�*�)� --�������πWŽ��w��lid����o��fl�8���H��wa��)nast��og �@I�ìT�}��@���p�G��y��s�*��too䊙�Yword���ڃhsplut� ��a��ri� wail�w�_�_�_�_����lanc�y���Hhusb�I�elp�c��m���Xshuffl���9����oros�٦i���dra�x�8�(�Ka�from��he�Hn��o��b�!�x��task��consolatio��Wh�1�Kr���?��yo�Y��ac���ؠ�a�ol��ӡ��S���8� all�7�7�7�7�7��W���������!��scre�H��,��erc�=ungr��tic���x�ga�ers�Ȇ�lik�Á����āIm�`rien�(�����.�h��� ��������W��mo�`�(roan�[defe�)�0����H��w���������������L�����8�J���ut,���)�q���@��C�Pdish��ief����l�ing.�n ����a�ew�ays,�he’ll�orget�hat�wful�obot�ver�xisted.”</p><p�eight="1em"�idth="0pt"�lign="left">    �E�3�u�Hime�roved�rs.�eston��i��oo�p� ��ic.�o�e�ure,�loria�eas��crying,₠�h��smil�‚P,�nd�Ѓ�ass���⇐u��h���!mor�ilen���shadowy.�radually,�jattitude�f��ve�nhappiness��A��n�ow����� �kept�bfrom�ield��was�2impo��b�ty�9admi����efe�to��husb��.�����������w��Then,�ne�qn�ڊyfl�0c��in����liv�Qroom��h�,�pld�8�rms��look��bo�b�a�_�_�_�_�_��_H���tretch��is�eck�P�rd� ��see���8���wspaper, “W�qnow��race?��������W��It���y�child�e�.ɀБ�����0ba����dog�������;�Xit� ly�ouldn��Pt��s�A�)hi����aid.Ӟ�s�r���p�a�rvous�reak�鞿���������o�W���l������h���ope��gleam�nter��ey�ȉ�Maybe--̀A��(u������Robbie�r�8t��Hd��,�ou�p���an���htouch�hth--�W�W�W�W�W��W�QNo!�h��replie�griml�ؐ�@�[hea�f�t������n��g��up�+��i��M�@������Q�br�K�pby�P��i���akes��8���@�����������������O�W��pic���@����ga�8� ��dis�Xo�`�8air�rA����t��wi��ha�(�"emat�Зgr�Ѕ����������?�W��You����g�xlp�=,�髍frig��answe���ʜneeds馘��ang��environm�(?�f��rs��a�˺�������How�ځAw����y�r�@�!ro�H��in���$��?�q��ش@��l��s�X�pati��I���r��d��`mag�Ѕ���8��away������J�ˌ�����πW�Well���(�� ��`��$���˒8��t���plan����ττττ�W�̂�g�p���:���`New�ork�O���������7�W���㾀!�n�ugust!�ay,��֐�������li�������A��unb�able������πW�M��on���0����������������y�I���I��l���#�ʯA�Po���Y��i������t�����-,�Cw�慟���������O�W��1���s��w��8�"�ѵ��h��so�X�@���Qm���arr�!��s�H�󐑤��K��f���uffici�!�Ir�@���πɥ�e�1���(�����1������ ma�n�������������W��Oh,�ord�bgroan���zess�!alf��tho��fry�ip�`�*��W�W�W�W�W�'�W�H��DŽ@un�(k�0�p�Ȭ�h�th�(���Hi��pou�i�Ȇ a��mon����y� ttl�pirl� �l��mo�Pimporta���x����n��r��m�0���o�o�o�o��W�k����ڙ.�(nk�I�څ�����be��e��epr��d�^�8p���2�Z�hmut�d�bu���self.��br/����������������dis��y�`immediat�Ig���� ro���to�x�ȍ���p�Zrip�]��.ӹypo�����it,�j�J�q� ,����al��i�pl����؛�p�J.�gain����beg�X��mi�ؑy�he����some��g����m�8ap�@ite������������W��Mr��W�(��hugg����jo�d�ost�o ����opportunity�o�riumph�ver� still�keptical�usband.</p><p�ight="1em"�idth="0pt"�lign="left">    �E�3 “You�ee,�eorg�@she��lps�pth�xpacking�ike�8ttl�Hngel,�8d�hatters�way�s�f�Cadn’t��care�n��world.�t��s�us�sɇ�ld���--��l�e�eed�o�s�ub�`tute�0r�p��ests.”������O��Hmpph,������i�׃`pons� �HI�op��o������W��reliminarie�����one� rough�uickly.�rr��ment�Dmade�or�kreparation�f��ir��hom��d�qoup���engag�0��housekeep�a���`ntr��.�he�+d�P���p��lly�i���X��loria�J�qbut���)self�gain� no톀��Robbi��ss����li��a�8ll�ϋo�o�o�o�/�nIn���od-hum�\fami�took�(taxi-gyr�����air�a (W���Xwou�`hav��ferr�xus�Yh��own��iva��‘�Q,�2it��on�`�8wo-se�(r���`room�bag��)�*���d�ait��ner�����������_����C��a�"��l��Mrs�ȇ�.�����s�ȝ�a����nea�Cwindow���ca�Xatc�ksce��y�����������o�W��-tro��Y���cs�cheer��,�l�n��nos�q���hi��v����p��h���l��gl�X�S�J�0�Z�Ȥ)ntnes�q� increa���udd���0gh����mot�drif��b�ward�����ior.ӏz�ho�z��b�hr����w��g�`�(dr����le���[�yap�`�����r���{��beca��twic���u�w�j�Cno������m���)��e�R��[�hil�o�� ������iny���P�Xk��l����Y��drew�V��fac����9�r��/�/�/�/�����W�1��so�ȇ@�\��,�amma?���a��d,�u�0�Y�Xch�����w�B���J�m����Ymoistu�0�0���ab������m�������xsh��k�low��Pvani��d�W�W�W�W�W��W��n�bo�ia�)�Pour,�H��Ԕh,���ڪˇ�ir�0��anxie�႐Are��q�`��e����?�o�����P����e��x�hpp��������b�d�`�0��peo���Y�y����see?�0��g��visivox�:����e�Yow���wcircu����ea���p--���������W�yYe�`���*��3��s���h�0astic�ej� d�(�ɱ���o���pb����cloud�:� ���k�W�stant��bsorb�����specta��������茀one�J��� ���;�Ksk�����Úq����ߎ��my�8�h��ir��se�0t�n�0edge��ߋߋߋߋ��ߗ����h�ٕ�������������g�W��D���_��s�uzz���Wh���9�Q�߃߃߃߃߃����Y��did��te�а���u��yw�h�!�Q�i��rpri�A�!����F�y�ƮR�lo���admirati�Ȕ�)�Yacu��p�0�Ѐ�ˋ`n�la�����ly�3�nj�N�PY�9so� c��f���o��q��w�--W��det�8ives�?�g�g�g�g��W����te��(��t�eorge���Dmidd��a�H�i�X�xe�(��dis���s��sult�����)���ort�*��ng��gasp�H�eys�ɂ��f�0����hok��co��i�����Y,�H��oo��r��@d-����-�nc�ɴ��,�;annoy��perso��׊׊׊׊��ט��P�A� ���ompo���dw�Y�drep���Dqu���єA��X�����bvoic�8��fo���Žp�H�мɎІ�������left">  ����          “Maybe,”�he�etorted,�artly.�Now�it�nd�e�till,�or�eaven’s�ake.�8</p><br/><p�eight="1em"�idth="0pt"�lign="left">���W��New�ork�ity, 1998�.D.,�as��aradise�Jt��s�iseer�ore��an�v�xin�ts�is�膘Gloria���(en��re��zed��i��Hmad�!e�hst�f�.�↿�������_�W��On�irec��rders�rom��Pfe,�eorge�e�hn�rrang��o�`�Jbusiness� ke��self�ra��nth��o,��b�)�fre��o�pe�@�time�1what���erm�!���sipating�āف��Ѕ@��ruin���i�x��y�0��el���Ldi���:��gone�bout���Affici�X�)orough,���d-l��wa��Be� ��9had�Hss��no���t�oul��d���9����e���������������G��S�8���an��top�рYhalf-mil��all�oos�lt�uild�X��o�az�1w�P��we�p���jag�panorama��oof����)bl�8�far��@��fields�yLo��Isl�y�!��lat��� �QJ�Xe��They�i�x�je�����e���s�؀�@del��ou�)��t�������i��lio�� (ra��r�Psappoin���keep�r��him�a��teaks��Qd�Yhum�pbe���ȋ�����exp��ed)��ask�s����ly���emp�(i����H�`���l����������G�W���(�ar��museums�8�#�ti��h��at�!�8�Yge�2wi�Ȅɥk���qbeache��aqu�@um�_����������_�_�X�ɛ��P�RHuds���|xcurs���"m��fi�(�����rchaism�M���w�Ies.�btr��l�B��s��tosp�z���Yhibi��ip����rk�0urn�d���urp�@��A�Ą���m��y��h�xl��loo�q�a���conc�ybowl.Ĝ�u�0�Kwa��Ҁq��d�o�0���G���l�-w��Hsub-sea����P���C����d��H�Qworl�ȏH�8�ڋ��ڂ -�r�`g�ɑɁ�ig��sudden��ɑ���������xprosaic�q,�r���dt���b��de�(tm�،��ࢅ�A�r�)����yp��fairy�م�������������I��ac� ��+�n���P���J�ͅ`�Y��vinc���/�Reiva�8�B���� ��’�hi�����:�Z�����G� Robbie --����y�3��qu�؎И#y��succee�(�7�7�7�7�7������8��m���������=�Y,�"��play��mos�8bsorb������n�ٟc�@��p��h�pbot��s�Xppe��o��p�8��.�o���r�p��x��@��ac��be�x�er,�@�[no���p��girlish�ye�؅����"a�Ji�kco�躑�ꁨ�Pu�"�himps�me���8m�X�������׌�on�:��T�i�����U� from�r���G�G�G�G�G��FA����fin�(y� ax���episod���{M����Scie��Indu�y.�"�$� ann�К�a��ial��children�⣈gram���whi���bs�Itif�h��0r�pc�����l���K���cs�xn����,����rse,�la��it�p� ��p���H�ylutely.��ߋߋߋߋߋ��^���x�8���|�ad�"o�����}xplo��a�o��ful�l�xro-magne�Q�x�o����be�’мI��������no��ng��i�Qer.�8��pan�hg�A���xm�8cis��� ,�n�A��ai��y�@�`tend���ha��re�!��r�؃�begun�W�����?�~���������[w�p��iml��ly,���.ƣy��g����an�nusu��de�����purpos�r���鮩���i��er�X稐s���Ш���.Ӂ �ڳya�ug���@�x���r�loor,�hich ����had�aid, “This�ay�o�he�alking�obot”�av��spelled�t�ut�qherself�nd�+notic�(that��arents�id���eem��wish�Amove�n��prop��direction,󀰁р�obvious�`�H.��it��for��pportune��m���f��al�stra���almly��engag���gd��llow�2e�ign.</p><br/><p�Pight="1em"�8dth="0pt"�l�X="left">    �E�3ԋ� �as�Pu��e�qce,��horough�0imp�ꅨ�v�,�ossess�9publicity�alu�@nly.�nce��h�Ȃ�n�sc���g��p�tood�e���t��ask�ques�Qs��r�B�Hine���hcharg��c�ful��(��s.�ose��decid��we�`suitabl�Z��’s�irc��s�K��nsmit���߉׌����������'�W��I� ra���Hull.��m�xbe�`��know����qu����f��teen�h��hundr�xn��ty-six,��tem�atu�����\��72�0grees�ah����t���+air-pr����30.02��ch�p�0me��ry�_��omic�8�сsodium�I23,���ydoesn��t�eal�P�p�0���at�a�h��ci�2���b�{n�nwield�o�x��mobi�(mas�"w���@�xcoils�h��d�a��@w�@y-fi�h��yards�'�'�'�'�'��&Few�eop�x���@��re�Xn���co�1elp���girl�A��midd� ����Xquiet�pon�be���h���)ird.ӌ��1�2���ҧ�room�� Gloria��t��ׇׇׇׇׇ��ւ���look�نh�@��W�Q����Pm��be�a�و������Ȟhr�i����sav�+��t�P�� ��l�r�†t����heel��F�R��閸���� ��h���8�s�Blik� y�t�ʶ�e�y�(���������W�Cau�Xus����doubt�x�x��ra���tre��vo��;��Pleas�HM�X�z��i�Q��ou��}�?���|�c���{�(��냢�y�u�kctu��0�Y��w��h�8��d�H��ol��n���G�G�G�G�G��F(���g�b-�K���ba����i�n� �Xc�����q��cr����i�Ppla�xface�$hipp�Xo�i�m�ؖ�eb�beg�(wr�#��rap��p���s.)�g�g�g�g�g�7���n�i�p��r��gear�+��e�(��{imb����0�p�;� �d���lac��ac���J�`on� ,��I-�m-��-�Àaa�1��s.��������硿��st�h�p��ru�Al�V���˸�o���am��r��i�2��me�H�ࣈ��no�����0�@�-id�:C�Й)�y�P�7�7�G�G�G�G�G��W�'���d��gn�;answ�xques�!s���"su�x���s�1coul�����~b�H��Qo�(��I��t�2f�X����t�P��it�z���(���-�n�0���8����O�O�O�O���W���T�pk���o�k.Ȯ��z����bie��׃׃׃׃��W��Who --�8�ׂׂׂׂׂׂ����He����[�φ̫es��tch��tipto�y�ab�Qs���x�7���r��e����h����y���g�a��a�0��know�p����P���˶������ʼn�����ߗ����󕉕b���P�(��A�x�"�����烗�W��Ye�ד^A�tjus�p���excep������󙐛�r�A�Ʌ0�!s�ӏ��iperson���υυυυ�W�ʈn�y�H�8m���������W�ψϏ������������Ǐ�o�hich�����he�alking�obot’s�nly�esponse�as�n�rratic�plutter��d��occasional�ncoherent�ound.ԃradic��generaliz�8o��ff�Xd�t,�.e.�0ts�xistence,�ot���ar��ular�bjec��bu��memb�`of�`� �roup,��too�uch�or�.�oyally�i�ri�to��mpas����co��p��hal��dozen��ils��r�ou�iittl� rn� sig�0s����8zz��.</p><p�eight="1em"�idth="0pt"�l��="left">    �E�3 (�9gir��Pr�id-teens���`h�(poin��S�phad��oug�ہ�Physics-1��p��n “Prac����Asp����f�[�`.”� is����Sus��Calvin�rfirs��f�any���)su�R.)������׈Gloria�pd� it�ȏith�arefu����al���`ti�+�鄁machine��ans��h��s�aear�@��ry�e�H�В���莀�Iis,����recogniz� �فш��o�Xr�Q�������W��H�ou�`�a��,��b�P��?��c��Mrs.�e��n,�pxiety�isso��g���i�p��anger.�9Do��know�Jfr����d�y��amma��dadd��lmo�Ђ death?�h�9�r�un�way���?�?�?�?�?��=�R����g�P�H�!����a�����pt�`���hair���e��d��who���ig��e�jcrow�a�`am�@�`���e� Ca����ybo�re����s��pyel��jYou�h���Bllow��҂���a�hnda�ȉW�W�W�W�W��W�urais����g��v�`voi��ov���و�,�QI��came�ise�8�Ǡk,͏�.ɀࢹt�ym�9���p���`bi��becau���Xy�K�8h�#��A�Ѐ�!�ӂդ�Msudde� b������c��ho����,��𔘖ˁԡ�rm����s����I�ЁHf�����?�쌯���������_�W����str���Qa���said��Oh,��HHeav�.Ç)�Q,�eorg�h���mo���n��c�0st�`�����������W�W���H�ȶ�݆%�ª�s����؊�Y�Ynext��〈appro�`����wif�3��t�g�Klook� suspicious�0lik�mu�P�@lac�������ߪ���v�p�1n�X�`��e�?�'�'�'�'�׀W�"Ab�iw��J����hm�u�0t��st��query?�σσσσσ��σ̠������������o�W���牰g����ugg� � y��back�����O�����������W��No,�yc���"�߂���炗�W��@n���h��A�#��w���X�(n�q�(.Φ��a�,don�Heem�����������G�G�G�G�G���W�ӄh�.�Hre���i�\be�9��!���xhol�p�0b�@��d���J���s�'��a�ers����������Natu� l�X��H�:��ge�@im�Iw�f� ��nag�@�convi�X�*� ���9�ڧ��es�Ҍ el�jcop�غ������J�0et��wi���kelectr��ty��ju�zf��f��h�lo��woul�ˀy� s�ast?�t�:�Qpsyc�xogic�� �h,����my�Ȕߏ��������?�W��H�d���l����xi�׃������W�Si���W�r�lsuppo�HI��n��`�A����uad����ert�1��U.�.���h�BMec� �rM��Inc.�ar�i�ڸy�et��ur�A�apremis�0to�hrow�{thr�@� u��xg���Yby�ti��w�ђ ��g�ؗ���� it�r�p��x���ea�Ø闚liv���_�_�_�_���W�XMr���[��ey�*den�8gradu�y�r�gl�9�9�*���R�yqui���Sud�H�dmiratio�p��Wh���+,�hat’����s��ood�dea.”</p><p�eight="1em"�idth="0pt"�lign="left">    �E�3�nd�eorge�eston’s��X�ut��s�trained. “Only�i��I�ave,�@��aid.��br/��������������Mr.�truthers�a��c�`cientious��neral�anagerᄐnatu���incl���o�e��bit�alkative.ԅ�combi��ion,�Hefore,�esult��in��tour��at�2fu��expl��,�erhaps�ven�ver-abundant�G�A��ry�hep.�ow�y,�Hs.�̃ no���8�hInde��s��topp��him�ч�time����begg�쇀repe�xhi��atem��s�isimpl�Xlangu���o��Gloria퍉���r��n�U�a���fluence�f����appreci�����narr���rs��O�0xp���Xgeni�J��came�����munic�Z,�f�xssible������W����,��self�I��d�)a�ying�mp�(���׃׃׃׃׃��֚Pard��m���ƚ'i��brea���n�p��middl��a�ec�(�hn��photoe��ric�ell,�1�ўQt�ou��s��D��facto�hw���X�Hrob��la���P�Xoyed?�?�ׇׇׇׇ��W��Eh?�h,�es!�e��0�!��H��mil��t��on��A�ic��circ�P��way�h������t�����.�f�Xurs�`w�(�К�m��8�pr�xi��ut�it.ƈ8one�Yng���Ȋ�houl�X�rle���HB�ȃca��ur�8��a�(�few�-us���Or��cl��vel�Xm�`���asor�Z��f�������i.َ�se��t�`�s��e-nez��palm��gu�ᚚ�q��w��фk���ʊ�lize --�*I��y�ԅm�`who� �pl�`s�@� �+y��he���Pth�7�v���!� ����Z�Iad����q���h����volv�9so��dislo�9�q�Qg������ill�xevitably--�O�O�O�O�O���W�����)�Ѣ�����b�9�������8��s�hk�Ȃ؈8m� �H���0?ɒ��z� �ʎ��0s�Y,ɍ@�x�p.������W���h�� �O�I� lac�������Pvul����!g���@�p�h�)ft�gh�a�`��fi��Follow�R��as�7�7�7�7�7�׀W�0�`�Y�ppa�{��qui�h�3�pd�!�athr�h�0�B�o��corrid�p��dow�yf�й���tai�The�p� �Zy�Xd� �)l���H��-li�xoo��ibuzz���met�8�0��X�Ȅ�slu��s�p��h�0��lood��`�(��p� � f���gain�_�/�/�/�/��_������ r�+�$��p��Z�!vo����R�k��!Ƒ"�����p�����y����n�٘)�C��.�n�1yea�h�i�H�h���h�����Rroj�X,�B��(�xacc�P���aoccur������Fs���assemb�r�p�O�Isi�؁��..���w�w�w�w�'�W��YǩtM��ger�����ʔ�di����x�P�o��ur���Gloria�򉑕:�Q�Htrip��m�0� du�8�apo��les�@��er�����9�A�(��y�E�Ps��.Π���remot�Ilike�obbi��i,�Zs�9urvey�qhem���i��tempt�'���������w���ؒN�*�L���ipeo�h�pll���Б؋�����Q�y�Xf�H�p��six�؇s�sb�0��eng�ؑ��񢐗!���lf� �Xro�����(������������ulous�!� ���B��big��S���ld�k����r��J��)��k�0�´`��z� � !�NjNjNjNjNj���1����H�Ahriek�Per����� �{�O�M�Օ���fal���yropp�$tool������.� �H��lmost�ȥ�joy��queez� ����ail��be�@�`�x�ȟȂA�R��o�х��I�M����-�ȑ�w� ��be�8�[r�Iowar�Ȃ��arms�a����ving�nd�air�ly��.</p><p�eight="1em"�idth="0pt"�lign="left">    �E�3���the� ree�orrified�dults,�s��y�tood�rozen�n���Htrack�0saw�hat�Zexcit�little�irl�id�ot�ee, --��ug�Xlumber��Ytor�ea��blindly�own�po��ts�ppoin��ڈ�����߈I��ook�p��-seconds�`We���`o�om� o�is� nse�ى�ose�ׁ�meant�veryth�X,�bGloria�Hul�[be� taken.�l�Xugh��va��9��rai�hg��a���attempt,����obvious�xhopeless.�r.�tru�r���@al����@�`�ل�������p�k�c,�u���?wer�xn�Quma���(�(� ti�+��όόόόό��φ�qRobbi�9�(��Himmediate���1with�recision������τW��metal�egs�at�Au�3space�8twe��himself�+�0��mistr���H�harg�Ж��Xm�㖘s��� ��t��ő����en��t�xce.��on�0��p���rm,�Usnatch���p��8l��en���Jpe��a�Iiot���,�(�quently,�nock�����r�8�����o��X� ����,��qu�������d�ll� ������el�Xr��e��h�H���Nbrus��ast�!��ca�T�udd�be����lt.Ԗ?��t�����[’s���8�p�H�����f�P��ha�Xrol���1�8feet�ur�R�O�Ig���1��o�`drawn-�񚱔w�w�w�w�w�7�v�regai�a�!�k��ubm��������e��f���y�8���i��par��bo�!�H���x���ur�eager�Zward���P��a���H�Y��ce���ڕ�������ep�I�؁���fou�I��f�Xnd������׉B�xMr���S�2ex��"�œ n�!�����(relief�р�dar�xuspic�zS�i���!��husb�Z�*de�X���di�v� �p��0������ara�h,�an����l�ᙃ�Hmidabl�“You�ng�p�Ҋس��X��t�ou?��������������eo����swabb�S�(�P����ث ���dkerch��.Ȁ��Zunst�`���Gp���curv�윘�A��mul�Ёz�A��ng�wea�mile�ׇ'�'�'�'��&��n�ursu�ܻ����p���8����ȑa� �=��x���z�ork�@�y�8���y�s��pm.َ���im�p�;��d� be� �ys�y���w��f����+��w��y.”�/�/�/�/�/���-� Well,ɂ�,���Hid��.��,Ǫ��h���I������reun�����8�hviol��?�����av�Dlife;����0h�ȦRd���b��ca��s���"awa�𨉈/�/�/�/�/�߀W�p��]�9i���/�������ن��;�Ï��b�8�0ed���Aa�om�`.���q��p�h���*o�ȥ�neck������asphyxi�h�)y�1u�0b�q�#meta�X��p��tl��n��� ��-hy��rical��enzy.�|� ch�Pe-�el�rms (cap����Ⱐ���Ctwo���8s�1di�0�ɟ���tzel)������l���girl�(���lov����ey��glow� ��ep�)ep��W�7�7�7�7���7�]�&�n�8t�as��I�u��x�����R��unti�h��usts�����焗�W� �"mbp:p�b��k/��������������Sus��Cal�P� rug���s�l��ЇpOf�)rs�����\.ԕ�@1998.�y 2002,�8� inv�x��mob���hk��j�hich,�� mad�X�p����-��mo�xs�q�qt�p�J�!��em�ӣ���Ж��Iw���P�8��������s���@��ce�Y.�os�2�y�H�gov���sban���#�Q��Ear���j��ppo�ɯA�Q�ci��ific��sea�P�Xtween��3�b�H7.”</p><p�����eight="1em"�idth="0pt"�lign="left">    �E�3 “So�hat�loria�ad�o�ive�p�obbie�ventually?”</p><p�׃׃׃׃��W��I’m�fraid�o.��magine,�ow��r,��it�as�asier�or��r�t��e�ge�f�ifteen��n�ل�.�till,�a�tup�xand�nnecessary��titud�P�e�art��humanity.Ղ`.��ots肀i�@low�oint,�nanci�!;�ust�bou�time��j�Pe��hem�n 2007.�t��rs�I��ou���y�`b��o�茘��udd�e����a텰�@�8months,⃋n�e�imply�@lop���xtra-Terrest��l�(rket.�����������o�W��A���"you�@r�Pe���0course�_�_�_�_�_��W�ZNot�uite.�e�eg��by�rying��dap�models����0�8d.�hose� �peak�Ɂc���Hinst���They����wel�(feet��gh,�e�Pclums���0n��much�oo�`�s�8��o�ercu���Xhelp�il�Smin�a��ti��r��� ��failed�g�g�g�g�g��W���look� ����surpris���9t�id?�hy,��M�Ps隑multi-b�8�Adollar�X��rn��������W�s��s��w�+��e�`���Xm�b��succeed��t�Ca��o���a���菑an����Hdv�Ё�������Grego��P��ll.Ȑ0��Michael�onov�蒩����r�0��diffic��as�����Q��Qw��ies��ha�8�(��eard�rom�ށ�y���,�C��liv�Ar�b�)�QNew�ork�I���Agr�xfa�A�3wh���Ņw���us����c� on��think��i����r���^.ϟm���A�⮂oo�����������_�W�����ee�ir�al���f��ou�����I��ba�0bo�,�r.�al� �Y�)�1̀��$f�Гy���rw�؆ (�S���xact��w� ��a�ٙ�.)�g�g�g�g�g�7�eS��spre���:� �js�Jup��desk���|�m.�y��� two�)ree,�Qs��0���I�T��ttl���φo�o�o�o��W�rSt� with���JI��gg�؝؃W�W�W�W�R<f���ze�P�σ}W�H� ���15����S�[�%Ex��i��y��1����plo�����fin�Q��p���XU.�.�obot�����o�Q�Qral� �ansi��a�ew-type� ,�h�a��erim�xal;�וr�����--����>������������ �/><a/�O�O�O�Kc�er�_�Y7�xb��7</b���Runar��d�bbr�o�o�o������T�AS�NE�F�REGORY�OWELL��S�AVORITE�hitu��c���@g�*��be�a�0��exci�`����o��en��ke�Vca�@leap�!dow�۾Hir�����,�h������d�{��spi����,�&r�8���g�g�g�g�w�W�z�0��wrong?�Ѡ�RB�@�8����nail������烷���Yaaaah���8�q��,�ev��shly�B�9�{�Ab���x���4subl��l�Љ day�R�س(�d��b�h����blur��u�ؤ)peedy�0���htur�!�_�_�_�_�_��W�ԋ2ey�Ђe�!mo��ri�`����op�X���Ws;�a�(�褸��y��resum�ɳ�up�j��p��ȳ�n���hp�un���ach�Y�`h�)���af�Hh�h�Ƀy:�ׇׇׇׇׇ��/�Y�����@����elenium��W�W�W�W��W�Ses���w�w�w�w�'�W�r��h��l����s��‘����?�?�?�?��W�:Fi��hou���0��ςςςς�����     �ilence!�his�as��evil�f�Xsituation.�ere�hey��P,�n�ercury�xactly�welve�ours --�nd�lready�p�o��yebrows�n��worst�ort��trouble.��had�ong�ee��jinx��ld����System,�ut���Ldrawi��it�a�0r�耈��ev�`for��q.</p><p�eight="1em"�idth="0pt"�0ign="left">���W�XPo��l�aid, “Sta��a��e��ginn�x,��let’s�e����a��.”�o�o�o�o�o�?�mT�M�5radio�oom�ow�!with�菐�sub�1antiq��ed�quipment,�ntouch������t�yea�Xpr��ous�i��rrival.ŋI�V,�Xchnological�hspeak��me�Ȑ8�8.�ompa��Spee���j��ype��robo��y���ha�ё`back��2005.�en��dva�P����ic��hese�ay���re�xd�`.�����hti��gleam��meta�xurface瀘erly.��� �(disu�th�1�D��ry���abo���Ù��"� ��t��r��infinite��de��ss�0������?�~Dono���_�elt�����an:��I�i�(�Hloc� �im�y��� ���ino�o.ғ�isn���pny��o�Ȕ��-Sunside�In��pa�8tw�`������wa��a��on�*��eason�Z�i�YExpedi��fa�d.���we�a�;p�8����ul��w���n�weeks��t�����/�/�/�/�߀W��kip�`���P.א�did�ou�a?�W�W�W�W�W��W�S� ��unor� iz��bo�a�(���sh��1.ɍ��I�*n��excep���po���I뀩�8�Ȍ��������k�H����plot�����y�zmap������ǀW����y�8�`d󦸀�� ��ch�b��yh��pock����relic���uc��sful�'�%���9lap���down��desk� vic�B��c�s� ���#fl���=palm�k�����},�rs�la�ؤ�cros�����`�Hwat�B������ra��G����������G�C�"pencil��in��nerv�����)r������:elenium��o��Y��mark�k�r�f��_�_�_�_��W�"Which�b�i��terrup���������"hre��MacDoug�H�m���be�H��e�Pf�����������?�W��s�������ؕ���natur��;�8��te�Щ"� �yw��ff�h���X���zmake�*����s�)�<voic� ���y�z�b�do�x�lrk�D�{���o�o�o�o�o��W�����f��time����artif����a��mb��sh�0n���쀩���pwar���y�W�W�W�W�W�'���A�@�!ser� ?����m��sible�ǃw�w�w�w�'�W�r�㙠is,�ygrow��􆯃?�?�?�?�����ittl� ���r���|�qm�I�Ph�irc��abo�X�#�5�t�7�2�A���X�`�Xw�9��Ab��@usta��,�����\��anxiety������ǧW�c�dded:�ڮs�wI����d�I����e��!�1amn�`�I�@u���s�"seems�kel�B�؁�he�8ll��ep��up�!�xr.���:��l�`�O�Iw�ѐ�n�!�'�'�'�'�'���%����o�)�@�8rtly,��sai��oth�(.�h,�Hs�"���O��hy�in�wo�䯹��������sy��gism.�zp�(oc��bank��a���tood��tw����u�@p�r��Mercur�Kmonst�h�`u�C��m� v�@��r���W�W�W�W�W�'�we�(�Q�q��coul�1v�Bm��䇋����d�e�˚F�ɬK��f��did�A����back,�o�ele����nium.�o�ele�i,�o�hotocell�anks� ��-�� --���,�eath�y�low�roiling�s�ne�f�he�ore�npleasant�ay�f�e�ad�Qin.</p><p�eight="1em"�idth="0pt"�lign="left">    �E�3�onovan�ubbed�@r�@mop��hair�avagely�nd�xpress�Zm�f����ittern��. “We’�ae�zlaugh��s�k�%Syste��Greg.Ȉhc�@everyt�i��ve�aso�ro���Hsoon?Ԃgr�X�eam��Po��"���`se��ou�8o�ercury�Yrepor��n�Radvisab�Hty�Yreop�Ѓ��Bunside�i��Stati�ȇ�mod��� chniques�robot�[we��i����first�ay.��ur��r�8i�hjob,� o.׊4n���i�xi��own.”�����������Ǐ��Z�on�Ht��to,�erhaps,�0�Yli�x�,�uietl�ȁ�I��e�y��d��me�3�8ckly,����an�����qor��n�u�Ppla�(�\�Yi��ё|��ɇ߇߇߇߇߇��W�ڑ@�ʃHstupid!�f�ou�eel�unn��b�)it�K,ɇ�.ɜ�s�rimina���pd�u�h��he�0�Bon��Q�ڏ��؎X��xr�8�Q��h����coul�0�0l�3����Ȝves�����������O�W��N�8����أsunf�0�va�utual�Hcis�Q�A��kn��i���need�ȁ�kilogr�[��a�x�Xhea��i��ctr���lat���ȋ�three臑���im�󈸅@a� pool��q���l��4.�acDougal�H�p��ref�ᔠspo�P�у�f���h��f��8utes�(id��it?׍�� devil!���㚯� i���ynext�njunc��������Ϟ_� w�y���go��o��?����H�8������I��,� �iw�_�Ao�0l�Y�-��ra�yo��n�`a�Go����p�iit!�O�O�O�O�O���W���`��go�f���p�x�(��,��ke�in�8�T�6E�ـ�ne��nsosui��re��o�{�↪tw�`y�%��dir���un��h��B�X�V��o�say�(,���Se���#��catch����Look��,�ay�򹹄njbad�܎six����Ѓ�subl�l�P�����)a�Ȅus�@i��y�@rk�0�wk�׍��������?�W��a�q�:gli��� udd�h�P������ey���9� �e�؇�rom��F�Expedi�B��0��s�?���h���X��ic��c��� T��year�X��lo�Q�ʃ0ar�9��-typ�ɂ�c��ed�*�:�/�/�/�/�/�߀W��Qey�Ç����K�H�Ȧyd�����`��0�ۆ��됼posi��n��br��s:�Qt�P��f�)�`� Ȫlac�‘9p��h��pocke�Є�Le�!s���9��br/�����������ב� w�i�|l���(�U�i��y���hroun�Ib��us�pack��cas�ȁP�Xert� �t�H�c�clarg����reme�@s�@�����9�h�b�|�(a�tt��"�!��floor,�e��strad��d����p�B���0ir��ad���ȣ�s��fe�8�,�ђ������ߋ ���ist�����x��siz����� ����:�h�0s��q��#a�Ҙ�����πW�T�@�"beca���@ppli�h�ݪ�McGuffy�A�fbe����A�Я�s��crummi�����F���ȁ��_�_�_�_�_��W�ZH���)p� r��m��t?�'�'�'�'�'�׀W���B��any�eas����I�X�˲Ik�)r�Ѧxny�����0���߶�aphragm� ���ñ�order�,m�)�al���߆߆߆߆�W�ؤphad��screw���*�1t�E�ନ���P�po���x�`��two-in�(sp�B�J�!�`�i��spark��atom��energy�ĵ�robot’s ����life.�here�as�ifficulty�n�itting�t,�ut�e�anaged,�nd�hen�crewe�j�late�ack�n�ga�(�laborious�ashion���adio�ontrols�f�o�@modern�:��had�ot�e�`heard�It�hy�hs�arlier.���to�bo�(r�ve.</p><p��ight="1em"�idth="0pt"�lign="left">    �E�3�onova�xaid�neasily, “�Xy�8ven’t��ved.”����������������No�r��s��do�o,���ep��d�owell,�uccinctly.Ȏhen���I�|first�i�iline�stru� him����chest.��You!���ou���e?�����������o�W��monster���(e�0b��slowly���ye��ix�mselv���X���Bn,��a�rsh�Hquawk��voice --�xke�at��a�@dieval�h��grap���h�Pt�ه�es,�a� !�����������W�W���(inn�xhu�hless�qt����D���get��?�0os������day�z��tal��robots��Ait�ook�`��i�su�8�ȁ<�@Earth�oul� �����mak����f�Ƀ �2��y��ilt�oo��� lthy��X��mplex�hin�dam��mach��s��NJNJNJNJw�W�It��d��help�b�2mut���������������g������������su�)r�؇ �Ytur��on�h� ���*��G�Hup�O�����������W���H��xpw����}��cra�)��his𠰁�lip�yistl�������������ϘG�B�A:��C���r�@�(up�L�Hface?ɥ�����/�/�/�/�߀W�"����si��at���Ql�#�����r�awor�����G�A���߄߄߄߄��W��G��.��kn��w����is�7�_�_�_�_��W����+�'� ��a�܇�ans�H�������7�7�7�7��W��W�`i��t����u� �3�<�ڄ�indic�P��direc��.ف��"�@ab�Qse��te�P������ome����Z��gen��l��g���Bme���=�r��mall�x�ȁRr��f��un�!t�#�ar�/�����������W���������������W�W���Uf���������!or�x�Xm�Are�!.�f�9do������sh��,��a��b��g��back�y�orce�����������o�W����lutch��t���\e���JW�X�)se��m�A��elenium��?�ׄׄׄׄ��W��Beca� I��nt�peed� �@,�itwi�p��P���A���wro���8h����A�ѱ��@A��r�Y��,��l�1m�7�g�g�g�g��W���rem����o�9�8s�&voi��rumb�خZP�0� �[��I�an�H�3must�`u�fi�x�#�h��ms��rm�����@��ge����a�8w�jbl� ng���H�hlac�x������������� t�������in����Qa���jUh...�h������πW�>��ey�xbulg�ɩb��ve�@�:r�ȑy?�i��a�o�����O�O�O�O���W��I�u���i���i��a�i�x��t�-y,��ough�����see --٦)����told���hy���play��ؓ�-safety�Co��days.�v��ntl�Z��go�шp��0����qof�;�P�y�ow�jhe��mo�`��,�:���Ha�J��@i�8�xl� � � ti��ײdo�0�1�(�ϋϋϋϋϋ�W��T�ƃ)I��b���`nk�(,��mut��ȑ��,�����_�},�ith������obot�r�ithout.�h,怈the�ove�f�ete” --�nd�e�nappe�Xis�ingers�wice.�e�rew�xcited. “Gi�Hme��at�ap�ou’��go��I�aven��t�tudi��it�;wo�ou���qnoth�p.ԃɀa�in���tation.׃�Hs�ro�����s���tunnels?�p</p><p�hight="1em"�pdth="0pt"�lign="left">    �E�3�8e�� �a��black�ircl�n���,��ڃ��ot��hne���wer�6�`retch����b�1��in�pide��eb�ash�ц����������W��Donova���,�Ss�f�ymbo���(����tom�Ɇ�JLook,�Y�!aid,��� small�����8�@ope���o�2surface�3h�P�Jon�yb��re�`il�paway�r���el�Xum�ool����a�umb�X��� �ӆ�ink��y�zwr�h�ar�X�913a����*s�now��i����arou�<--���������W�owe�8sh����ques����rece�@��du�@��Yes,�aster��reply��et��r��sosuit��i����s��s����������I� ��!fir��ti��e�`�)a��or����s��which�8rk�q����mo�qh�����pec����up�댠arrival��be������y�p���limb�vemen� uncom��tab���W�W�W�W�W�'��'��far�ulki�H����ugl�y�"�begul�Ssp�`��;������cons��9�3�Аx�@�+�i�c�����ire��nonmet�Xic�Y��posi��C�j��f��at-res��ant�l�������mic���r�8��cork��y�0��equi��"a�Pcc���Hun�x�`keep��a�hb��-dry,�א�coul�3�I��f��g�X��Mercur�)��un����y�Hnu��.Ƴ���en���څh�@��,��ctu��ki�(��occup�@�������������A�8�h� ���d�2m��(rru��n��d����etr������a�L��pris����gro�� �Pgu�xin�(�S�T��be����ver���'�'�'�'�'���G��radio-harshen��voic��o�9��:�IA��H��ad���Pake���YEx���x������焗�W�����.�����������g�W�oo�h�!���;�m�Z�҈j�atro�p����e�P�o�ht���I����p�#��M������Q��ц�ike��x�྄�������ׇHe�9c��a����jmprov�������swu�ipward.��f�z�k���we�B�ȱ�hum��b�����>,�v��nt��sha�!�r�p�إ�����ll�P����o�@ea�����p�p��th��s�wo�Y���8e���qwh����Xw������bvious�����犧����eiz����̬ �����ai��)tur��� ���`��L�8��cduff�!“h�ѐ�n��feel��`�3����������W��gig�����څ�v���l�0��mec���a� is��!�Xgh�Coorw�����Hr���as�y��c�!��,�)�����*�hdu��hurried�!��a�arr���(rid�Ж��#�Kun����`p����m��t� �эj� �����lock�����������G���h�i��les�8unn��Zs�8t���*a�inpo�H���@�)em⊢�����ce�1�Z�䓪x���ag�ud���Bask�ȝ�pli�8�شFir��Ex�Pi��ĉ�cr����䀸�@rt-from-scra���ss��a�`��ha���ail�,���S����a��e�`� �Ȉ� us���un��Sy�0m��suc��ȍG�G�G�G�G��G��plodd�1n� �Ì���ne�x�a�ʈ���/�ng���P�/�/�/�/�/��g�daid:���� “Notice�hat�(es�Xunnels�re�lazing�ith�ight��nd�~�emperatu�his�arth-normal.�t’s�robably�een�0k�y�hall�$n�ears����pla��has�emained�mpty.”</p><p�e��="1em"�dth="0pt"��ign="left">    �E�3��How����?�����������o�W��Cheap�nergy;�qest�n�bSys��.�unpower,�ou�now,��on�ercury��8side,󁄋)some�(ng.ԅ��Jwhy�tati�(w��buil�΂��a�xr��n��hadow�f��ount����re�@y��huge���onverter��@e���А8�Qinto�lectricity,��,�ec��ical�ork��w��have�Q;��3�L�yuppli���ˇ'��cool���simultaneou��cess��ǎǎǎǎw�W��Look,�x�aid�onova�0��T������y�duc�al,�0t�huld�Rmi�(�)g����bj�P?����happen�_�!�as����Ā���tal�@bo�0�aarr�Y�`b��phot�X��banks���x--�G�ٜ)d���t��me�;m��nt�w�w�w�w�w�'�W�ЖP��gr�X�hvaguel�0�{�p���ro�je�0s�艡silenc��i�0�0�X���C�complet���Li��n,�re��W��devil�ro�=Speed�ryway����n�(t��s����o�o�o�o�o��W�h�<no��as��o��ru�Hh�������isosui�8���$��t�2I�o�S��M�X.٣ �8�{erf���dap� ��a��i�Henvi�x��Ȟ�does��me��Ф��him�‚죣fo� e���@av�0���n���Xd���f�X�����o�ȃ�l������be�����������o�W�Ӓ;�0�)��im�Q�̘�l�ed.�����������_��M�qr�/��obo���w�p�0��/���������G�W��Eh��}sn�����zsemidrows�H�pW�(,�e�`s�-�����x���3rf��?�?�?�?�?��W��y��p��mselve����ny������,�mp��airl�,�ui��.���X�Qp����agg�Hh�@�}���P����0f�pe�9��w�(�0������pock��f��h�����������w��orit��do�z�iose���Ɇpask����������G�W�.���������ڗ��ɟ���t�:Le�C��P�߄��������O�W����wer�iclif�`��black�@asa��c�(ck�z�;sun�걣�[eps���x�Q��K�r��ȣ����P.�e�`��m,�Ӂ��K���ɪPife-ed��abruptn��in�!�pll-��-unbearab���`z��wh�H���Y��gli���from�y��d�ry�p�0al��a��y�}��������������Sp�!�1ga�hd��C��ooks�h��s���y����i�7�7�7�7�7���7�s��ey�Hswep���������� h��zo�Id���p�0��gorgeo��brill�p�0�o�o�o�o�o�?����"must�0�aunusual��a���񮸚��aener� lbe���?�ؓ(��mo����soil�Ṉy�umi���ome�s�r�AMo�Q�y���)autifu��i��it��ׇׇׇׇׇ���H����hank���bf�xer�j��ir�isiplates��l���9a�ʍm�5�h��gh�tra��g�0����hav�1i���id��hal��minut�O�����?��E���a�Ʌ}p�B�Xrm���ٳ���wris�ȏ�Hol��moke����t���0tu�0�P��y�enti�8d�"�DžDžDžDžDž��w�⥨�8���`ow���:��Um-m-��A�ittle�����igh.�tmosphere,�ou�now.”</p><p�e�0t="1em"�idth="0pt"�lign="left">    �E�3 “On�ercury?�re�nuts?������πW���sn’t�eally�irless,�H�xplained�owell,�n�bsentmind��fashion.�e�as�djusting�he�inocular�ttachm��s�o� s�isi��t�and��lo�����ers�f��insosuit��x�lums�@t�t.�IT�1�8�p�exha�������8cl�x��i��surface --�apo�7mo�0vo��le�le�s��compound�(��a�Hheavy�nough�or�|ian�ravity��ret�.ّ:��nium�Xod��,�C,���potass�Zbismuth,��oxides.ԅ�� sweep�0���Ishadow�Ս8ns�8giv��u��a��It����sort�!gigantic�@l�n��ct�Hf��us�:r�l�����ll�robab�؍��A��:�@��ff�cov�hd����sa��hoar-sulphur,�r�aybe�uicksil���ew.���������������It�oe��m��e��th�9.φ�I�@�@st�a�as���ʙx���Hitely���DŽDŽDŽDŽw�W����a�x� ��������A�0�)e�8��s�ye-��lk�{��nail��������������Donov��watch�ْ�����See�Hy��g��������7�W���o���id�o��n� r�m�hi�l����when�9�@�H��oi��Rnxiou�3�tfu������dark��y��oriz��m�1�e���ܝo�� ����r�R��ce.�utɓ@�3� �peed���������W��clamb�zupward��n�y�ctiv��tr�åbe�y��ew���(�ىa�R�1�u��ead�p�ۂ��(��8o��s��ld�.�e�؃0addl��d�`�`���@ng�ЄHaid:� �*k..��[�YYe��i���Ȳр�� ���Pwa�_�_�_�_�_���W��ll����po�h���J���no����b�8�9����ny�8��do��b�xk�g�@s����z��br���h�h�ry���`e��q������ǧ����him���Xy��ed�ZLe��get燰g!�ǃǃǃǃǃw�W��d��pp�ȴ���(��it�po�P�)����� �q���h��sla�j��e�ar��ua�ys�arre��hes�8� G������熧�炡iddy-ap�����]��thum�I� heel��p�隳��G�G�G�G��G���r�)off�y��eg�ʄ@d�ړ;i�o��tep��i��t�airlessn� ,�z��nonme��c�ؕ�c����o�c�-��nsmi�������on�`a�h�@m�vibra�·i���ؘ�or���ac��� ar��������?����Fa��r�����r� ��c��ge�����烧����No�se��cri�ؙ��n�pp���8se�������(a� �g�X�o�x����.���ou�D�y���equi�Bwith�ʰ{flexors�O���������g�W� � �bur�j��gh�k��o�8�c��un���cam���c��wh��-h�p�Hh�zpou�Ili�(d��bo�Km�_���������o����duck�8involun�i�Wow!ɾИ�magin�[��do��f�p��t�7���������?�W��You�ȩ���mo�pr�Hntly���1�9grim�w�Keep� r���)S����ׄׄׄׄw�W��R�zSPD 13�n� �n�3�h��ee�Rd�0il��w�p��gracefu��stream���@ody�9ew�uh� ��x�y�o��easy�s��ros�Cbrok�ȹL��n�Ʌ)��`d�rom� ���`in�`a�Q�c���p�"�H� p��never��Y�?�models ����were�mong�he�astest�obots�urned�ut�y� Unit��Sta�@ҁ9 &amp;�echanical�Xn�orp.</p><p�eight="1em"�idth="0pt"�lign="left">    �E�3 “Hey,�peedy,”�owl�(Donovan,�nd�av��a�rantic耨������DŽ����!��sh�h�HPowell.��Come�re� �����������g��T�@distance�etwe����m�@�a�aer�I�K��s�Hi�(c�Xdown터ntarily --�x�@�$effor��of����a�slow�lodd�i���ifty-year-ol� �qu�poun�3�L��̈G�G�G�G�G��Gey�� clos��nough�to�8�8e��t�<’s�ait�nclud��peculiar�Pll����gger���abl��ide-to-�A�urch���l�s�ԓLhis�჈��s���aximum�u��in�H�Ycompact��adse��adio��d�Q�preparation�or��o��r�����ook��up��a�Hhem�o�o�o�o�o�/�n�hopp���a�lt�Jrem�(�����҅�$�Xth����a�in�`un�8a�xwe�p��t�H��x��sway�I�����8���_�_�_�_��W�My�(ed:�A�xr���U.���,�oy.�߃߃߃߃߃��Wׂ�up�(���$vo��s���ɇ��;���phon���ɛ�r��time���DŽDŽDŽDŽ���It�pi�kH�hdog,�et��play��mes.�ou�at������I�|you;���v���h�Qour�nif�Q�wo.ƆI��m�itt��Buttercup,��e�؀ǀ�.��oops��T����n�eel,��s��off�B��rec�krom�hi���had�a����a�ɠ9�Hfur�Jt�ic�4g��ba��d� ������?�~A���l�x�ords����e����K�D��,�����grew�҉jf���h‘nea��Poak�ree��f��8d�9a��rious�8ta��c� ����"m��h��Ȳ��3�@equival�ɈȠ0ic�1���������������E�Y��kly�����X��e��8���Gilber�+Su�8��?�a�Gre�he...�0�Bdrunk難�th�`���υυυυ�W��!If�� n�h�ظY�H�ѻ��yb�p�8res�s�{�id�ev�ʃhz�ht.̛�g��ba�����8ff.�$ro��G�G�G�G�G�G�'�=�a�Uho�r���S��e��a��ce.�����{�Hc�����(���is�ˌ3���}hum��e����becau�X�ē�8�a�Y�`o�s����.ȅ��0,��r�ӏN�ro�1��hi�����ז�f��en��s�������������W��o��������(t�И ,�mp�0ic�ؖ`�ȇـh�xknow�ӝ8���ks�x���0�i�����Q�݋��Ȓ���a�j�P���c��Hrue�����X�ׇ���燗�W��..�A��hur��� ��3��onl���.ϧ������a�C��������fix���go�h������πW��a����v��rly��/�/�/�/��.�܁Hor�����:�&�erf�؉dap���ȁhmal͹�ri� envi��m�`.�Y�1s�g����(���arm��p��id������de��ite�Qb� .Ԛ޾�clu��N��w����cry��ls�b�?�ُX��f�����@�؃Pcool��li�`d;⏂��wou���������0�Z���#�!�Ɉsy�Kun?�?�����ǀW��Vol�H��act����ugges�/��in��X�ӎۄzbo�ht�yd�����������g���؉P�`��m�0h�f��ck��s����������l��trange�oi�8� emained�ery ����still�or�ive�inutes.</p><p�eight="1em"�idth="0pt"�lign="left">    �E�3�hen,��aid, “List��Mike,�hat�id�ou� y�o�peedy��en��ent�im�fter�qelenium?”�?�?�?�?�?��=Donovan�as�ak��aback.��We��damn�t --��on’t�now.��just��ld�2�get�h.������W�!Yes,�H��,�u�xow?�r��rememb��exact�ords��������W�I�...�h�1��:����s�Pe�P�om�.َc�Ј��uch-and-�I��lace.lj�� t���s��l.בmore�>wa���(�ؑ���7�7�7�7��W�3��(��p�0any�rgency�n�����er,�u�������������W���R�0?Ɏ�Ppu��routine�o�G�G�G�G���W��ow��s�ed�,�ٍ8��be�lp�`�x����we���xi�ء8ne�(x��ȁxad��smount��from�Xs��bot,�8d��sit�Xg����gain�Ɋ�cliff.�>jo��s��y�ink��arms:�n����tanc�X�hburn��n�@h�`e�ȁ�o���t�҅0s��p��m��nex�r����tw��i�a�:s��visibl���r�Ku��r�hof��ir�hoto�0ctric�ye�ȏ���Adow�H�}unb����unwaver�Q��unco�r���������ǐU��!������@�H��pois�us�ercur����la���jinx���h�zm�ɀ�size���������radio�oi��en���h�$�*ear�!�N��look�0e��A�8ith�khre��un�H�xal�ul����R��ics�ہ]r�������hil�9�8deepl��a�ヒpo�ron�xbr�ؘ�Marknes�(�9glov�9� er�(ic��off�����0nt�����������G�����ve:�n�x����Pn�@inj�!a�um��be�o���0ough���io���h�x�_��c���@h�Х/�DžDžDžDžw�W��R��!�����������7�W��Two,���� u���k,�鈾�9ob�p�N�pive��by��ng��xcep� h������would�Qfli�i�-Fir�Law�G�dždždždžw�W�G������/�W�yA�z��g��prot�`�8����ex�ظ���o�i���!�T���(��9�_�_�Y��Se��d��s���?�?�?�?��W��!Ε����!we�o�����ǀW�Ex���8�#��plana��.Զ���betwe��1vari���Pi���ٲX��ff�������X�`tial���S�׼��y���c����wal���Kda�a��k���!�Cautom���/�a�P� 3�(��up���s����.…�sup�(e�ou�ہ��lk�ÂZ��.�k��cas�� 2�a��unter�Gh�������prev����Z����fo��М��risk��v��������W�̡�I�z���p�b�qit�g�_�_�_�_��W�ZL��take�peedy���A.�������p��late�model��extreme��spec�ཐd�� �����8�ia�tt�hip���Ӟ)a�ȯ�b�����d�8royed������/�W�ySo��o�o�o�o��W�l�Uh��b�Q��eng�0�ٿ���w���fic�Py�)��,��way,�adva���ic�`�p��SPD����s�����erg�H�f��unusu�r�Y.���sa��im�(��n�s������af�@�[elenium,�*g�P�*����� ��a����,�mphasi����s,�o�hat�he�ule 2�otential�et-up�as�a�r�eak.�ow,�old�n;�’m�ust�tating�acts.”</p><p�eight="1em"�idth="0pt"�lign="left">    �E�3 “All�,�o�head.Ʌ�ink�@get�t�����������7�W��You��e� w���ork�`don�Xt�ou?Ԉxe�xs�me�(rt�f�ang�@c�er�Y��selenium��ol����ncreases�s���pproache�Pand��a�@rtain�i��nce�rom����3��,�nusually��o����with,�x����bal�as�/���/�Hl���'� ������πW��onovan�ose�his�e�1n�0citem�p.�Y��`��strik�i�quilibr�x�1�H.�edriv�(him�0ck�J����orward--������/�W�9S�(��ol���(�irc��arou�����tay�on��locus� �ȁint�r�g������unless�����"�q��bou�q����p�Q�;���Ĉever�xiv�����1goo����run�ۏ��an,큠�0ou�Hfu�:�چ�a��by�"way,�ȃyma����d����At����um�xalf� positronic𣰈B� br�Qa�(���kil�(�� no��rob�@spec������h�ڑ@m�hbvious.ЁXab�Y�;lo�con��l�񦊇x�p��>volun��y�echanism�a�um���R�x� Ve-e-e�Xpretty�����������7�W��B����ډ���?�f��knew����unn�Ң��?�O�O�O�O�O��O�[uggeste�I��olc��c�ction.Ӕ�w�y�#�v�Q������a�1pag� f�����Ybowel�*Mercury��ulphur��oxide,�arb�H�� --���m����.�o�s���L�؊0empe�@ure�O�������W�Gg�P��audi����C���jpl� i������X���x�†Cyl������W�Ç���,�Iadd�8P�Y�����(�{�X�A���rim�<��@�Jl�x�edu�4W����de��min�H�y�����p�0ble��º�lu�� ������Ѐ`�ȺἻ��l��o�a�(����С{ho�軸becau��hey�_o��m��ہ������fa��en���k�H���crisp�@�۝��tch�peed�����p�Iink�)�h�pl��gam�e�P�`��ixt������o�jf�(�����������7�W����on���go� �ibeg��d,�@��t�(l�����"����cooked�8����Yb�Ñ��������������W�W� �4c����arc�X�rep�$�Xwou�Ȅ(a���ّ0er�p��fic�zexcep�|a�ers���δ�no�di���!�a�r�H��e��������ach�(��o���II���ӏڀ�*�(�B�� n�s� �clif��i���8��.�ig�h�A��!��!w��(hree�|�>�J�Pc���Ɂa�x�>�ra�ЭPt�����r;�"��영tw�p��nut�@���suit�R���son���1hea��rememb��S� �hadi������b�X��ul��iol����below�Ypoi��O�O�O�O�O���W�JUm-m-m�bsaid�����h�&s�xt�ǃǃǃǃǃw�W�+�Yo�H�:��nit�(��q���),�����r�u��3�@����ah��xop�y����{t�����u���an�pprecia���moun�hf�����tmetal-vap�at�@p�z�T����corros��a���s��.Ȳ�be�8� �y�hw��h�Xdo��k������`�join����instance,�`����row����kil����l�i���������ka�ue�8��f�s�ل��r�@g�y��I��!�����������_�WIJ�,�ark�1n�1ism�s�h�!�/�/�/"�lign="����left">    �E�3�onovan�roke�t,�oice�rembling�n�n�ffort�o�eep�Hself�motionless.�e�aid: “As�o��as�e�an’t�Xcrease�ule 2�otential�y�iv�yfurther�rders,�ow�bout�ork����"way?�f��ހ�danger,�ǃ�3����d�rive�im�ackward.”</p><p�eight="1em"�idth="0pt"�lign="�NJ���Powell��s�isiplat�Had�urne�8o�q�ڋ �il���ues��.�'�'�'�'�'���%�@You�ee,���0m��cau� us�x��na��,�qall��ne� �o�2�&�)of�Xs�X�8���ς�onc�8r���acarb�Pm�0xid�y��vicinity.׉0,����� St��e� a��mple��plytic�l���Hory�����������7�W��Na��8y��ass�p�h�s.�It��M��p�|�'�'�'�'�'�׀W�"A�0r�.Ԉ!�ust�e��unds��ox�`c�cid�or�8lcium�recipi��s�����������W�W��Holy�pace!��ke,�ou�H��a�eniu�w�w�w�w�w��W�sSo-so�dmit��D,�Xd�l�،oj� �0�9��إ�er�k���d�e���de��oses���X�ldi�b�����0�Igoo��ld����.�olleg��hem���now�o�o�o�o�o��W�=�P����fee�`���iat�`c��рp���on�b���hs�P�obots�a��si���!edi��p��%machin�th�(�����������W���he���)h��ed��0�throw?������/�W��Ma�񂏂��������?�W�+ev�pmin�r�%dam�ʆ��J��mol�)s-sl�@brain�Kcrabbl��up��jagg�`brick-siz�ck�Ta����s��� �s�)i��patch�bluish�rystal��cros�)�8ro�H��issur����������ǀW��]�u�Е!�Ql����oo�a��Greg.ɪ�lmo�phalf��m����f�_���������o�W��Quiet�Brepli�Ϣg�?�ercuri�Pgrav�p���Xteel�3�Yarm�8���i�H� �_���������W�W���o�y�Pw�����؝Ldi�`�Ȃ�th����ac�� ��reoscop��H�h���ؐ� itse����iw���ޑ8�A��dre��P������rkness,������`��un����bu�Z��q�8udde�Aump�Qs�Ộ��if�ّɄ��;s���l�у�ck�l��l�؇��Z� un��?��no�i�Pes���h��Hdow�@n���ȞP�8urn��as�` --�*wh������gr�Ҁr���������������؊��������O���������_�W��y�(�appi�i���w�Le�cgo��ወ���w�P�i�τττττ�W���� y�lun���vru���ub�ж+��way��Ltun�𓠣E���(imly:��Speedy��b�Јng�Jb���������<�enium�ol,��si���ɠ��ȉhi�hD���I�����o�����������W� Yes�o�w�w�w�w�'�W�rI�u��wan�Њpl�xgam�Hב������҆x��!�=br/�g�g�g�g�g�G�=y�ˎJ�0r�$������e-li�ja���w� �emical�p��lo��fac�Y�Iphotoc��bank�Tde��io�8�mo��rapid��t�Ȑ袱em�l�Xl��atw���@r������s������towar��wai�Z�3��� �a��q�a��rpose.�g�����׋�dgallop�)��ly�oward ����them. “Here�e�8again.�hee!�’ve�ad���ittle�8st,�he�iano�rgan��;�ll�eop�(who�at�xppermint�nd�uff�t�n�our�ace.”</p><p�eight="1em"�idth="0pt"��ign="left">    �E�3�IWe���)�9something�w�p,�p�utt��d�onova���2��s��mp��,�reg�����焗�W��I�otic��that�:came�Jlow,�orri��response��T��m�(xid��get�im�e�0if��don����urry�����������O�W��hey�萙pproac�Zcautiously�x��almost�idl��to�fr� �rom�ett��o���Qthorough�irra�`nal�obot.�owe�was�@o�xr��o��,�h�@se,�ut�ven�ready�`��ld�a��s�hn��crack-b����Spee�h��Պ`self�or� spr��.������ߏ��L�aer�o���xgasped��Cou��thr�QOne-�wo-�������W�wo�teel��ms�rew�P�2sn���p��war��imultane�ˁ�X�lass�ars�xirl����t�h�a�ar�ȃRcs,��ea��g�Hk��ia��ds�����ossib�su��A�`��a�0i�q��undle�Ȟ)�����𡠁�g�聐be�h�v��0she���؎Њ�e�x�Xc�ci��ly��ust��7�7�7�7���6I��fu��h�y�Mercury�b�,��kn��8��fizz�vsoda���������������g����tur����st���Bn���away���s����--�ʘр�ga���)�����hfif��n�c��,���������prect����9���Phuman�"an�n�ȝ�can�����������_�W��%d�H�0�"�C�:�h�j���2�a�!�񍰘 �^� �em�d,�*over�B�8f�Х����@�=��H�ɇ(�����������G�W�����i��B��i��liff,͒.�`��o�����r�X�qh��b�pak�Jrde���莐��m�i�K�������W��jogg��^shadow��9��t� u�����Xm���1���р�il��ad�� �{fel��udd�cooln�a�i��of��ab�Y�@m��D�v��loo��)��Greg!�����������O�W���R��h����.��s��v���T�h��s�`�g�ˇiwro������*dr�x�8;�V�in�(his�1;�<��pic�"up���P���ad�I��lo��ɀ��Ѐ`cha��,��binocul��7�'�'�'�'��&�Es��t��wildly�*A��r�a������)�Job����it�S,� ��c� �Ym��o�o�o�o�o�?���You��n�0t�tc��im���it��no�se�ًyfid���hon�߲k��l���clench�fi�H�����"t��Є(Wh�x�`dev��doɘp�x�x�1���v�讫�Z����?��,����h�x�)��������������G�W�je�Șr����,��dec�X��D,��oli��J������ntra�I�)��h���`���o�o�o�o�o��W�jSev� ���f�*� ��a�(b�a����w���؁+����:p���I��it,��i�˧(��ith����xid�xhew�ڕȱ;�؂�y�؏9w��i�X�?�������������W��`�~a��fla�؜bNo�/�7�7�7�7��W����x� est�is�Znew�quilibriums.׼��c�Pt�Q��Z���ї�Ru�h3�9tial,���es���i�غs��bala���ga�p�u�����8�R������or������������܉����������_�W�U��voi��s�Xd�Qhor�aly�retc����hed. “It’s�he�ame�ld�unaroun�We�an�ush�t�ule 2�nd��ll��3��w�j��t�et��ywhere --���nly�hange��positio��f�alance���ve�ot�o�Zoutside�oth��les.”����8n�X�ed�is�o�@�loser�Donov��s�o������y�����ting�ace-to-�A,�im�hadows�n�jdarkness,�j��w�hp�d,�QMike!��</p><p�ight="1em"�idth="0pt"�lign="left">    �E�3�ʃ��:�inish?���Pd��y���up��H�i�ck�y��Sta��,�a�0fo�@��bank�`o��l���ke�p��t�acyan�@��������(ntlemen��He�aug��short�����������������*,�repeat�Powe�Pear���P�bw��Speedy���_�_�_�_�_�/�_��know�����������?�W���o�8�or�D�he�P��be���hon��u���zT�a�"always��1.Ɏ�o�p�8f���(�pli��Xb�i�+de�y������������_�W����ook��up�Ӝvoi� liven�L�����/�/�/�/�/�/�߀W��A��r�.�ccord������0����see��hum��co���`harm��cau���H�1own��ac�Y.�wo�3�Gt��agains�1� ����,͏��?�?�?�?�?��W�:E�p���(�i���0half�ra�hW�H,�@�{�@k.�ou�R��i�„�����O��ߕX�(ces��`�I�7�7�7�7�7��W�2C�����a��!go�do���_�_�_�_�_�/�_�I��m��цЃ��ُ9��w�)�����do���wo��brea�8�r���؍��ڲ:evil�ќ�ei�A�:�:ree-four���(from�ኗ�?�?�?�?��W�:H�!��Gre�آŠҘ�����ehavior�o�8�Ad�,�܉ ju��2��.�igu��� a��tter�������� �������������g�W�'�#Fir���Ĕ�ub����te�hgoe�R��lmo��mmedi�ȳ$Tw��y-se�����`�����������O�W��felt�j����gg�x�i�dd��push�y�L��moun����wa�ɔxn���sun�X���}op����� th�9� u�p�vclic����shu��O���s�c��m��o��ad��r�i���g�ein�d�ؘQ�o��rpose.ʑ�him.��br/������NJ▘�و�h� ��n�v�ѻ���a�a�9��itch����ma��Tbac�XImag���y,���ab�i����hap�ard�a�A�(����Ҍ����r�(���:��osu����χχχχ���Speedy��wa�`�ъ�,�Ht�)�h�x� f�ilber�#Sul�X�gib��i�x�g�Pt��ank�od�A�2!‚p�bre���ioo���نw�w�w�w�w�G�uH���@����ndr�@y�s�wa�8�i���P��9����step�3tim�ؾȌ�usly��/�Hopped.�yjum�X�������!lder�؁خ�d���Scry���ne���И������ ����a�ly��f�I�aagm�Ps�����������_��e��c�����0�Ѕ)��gritty��li��ry��i��s�kl�hgr���X��s�D�ifficulty���o�d�f�x�hckl��� warmth��ca�Po� ���Y���̍a��l� nes����l���$ad�l�(liz�@�i�A�Qco���fa�0o�(turn�y�$� �0self���p�help�antique�ß�������not�������p��g����constrict�Tches������ǏF��en��!����߂߂߂�eft">   �����   ��   �� “Speedy,”�e�alled.��!��</p><p��ight="1em"�idth="0pt"�lign="left">���W�PT��sleek,�odern�obot�head�f�im�sitated�nd�al�Yhis�ackward�teps,�he�esum��hm.�'�'�'�'�'���%Powell�ri��o�u��ote� pl�Ping�n����voice,�bfou�0it�idn’t�ake�uch�ct����y,Ɂve��`get��a�h�hadow�r�su�����9me.�t��s�if��r�eath,ӂڀ��H�ou.�߈��������o�W�Ԅ�ok�n��� ��r����stopp��H��pok��b�ن��ڊ�groaned,��ywa�p��W������re�y�Aaw�wit���smal�Hadac����repose�s�hbooed--�9I��rai�@��f�!r�4� �Qtim���8�Qso�hreason�)mur���Iolan��o�o�o�o�o��W��釠��as���ot!��cau���Hmovement�⓸�corner�3s�y�|whir�1dizzily;��star��in�tt���Honish���Â�monstrou�Y�A�Ȃx�p�����idd�h�a���Q--�Uto�ڝ��D��qa��er�g�G�G�G�G��F����talk��:�YP��on,͆��0�Pmust����?��p��m�t������dang����W�W�W�W��W�f�urs�@Rule 1�nti�x����everyth�*B�X��>w�����`clumsy��tique;�1��X�݈�lk��wa�Qd��ti���r�ɭ�y�jI�،`�������������׀�op�/�_�_�_�_��W��qui��useless.كH�ld�Zb�x�O�L.��Ssai��upidl�X�`� �ߍؐ&�DžDžDžDžDžw�W��l����b�1��desper��l��2��se�x��r�ڵ�����8a�I�ٝ�`� �I�h��ٛ���è�����(���`�g��a��immer��aze�_�����������_���l����,��3!��ح�(am
show raw
0

Total Output: 104,850XEC

Block Summary


{
    "hash": "0000000000cf9a82973b38d2579b7aafdd2c0ccdbc47dc3242b018398b3e8df3",
    "confirmations": 1023646,
    "height": 605130,
    "version": 4,
    "versionHex": "00000004",
    "merkleroot": "60a0719b297bcf0860fd4a3110110ec975f238aeb44fd430e79d18e4b9e70a32",
    "time": 1447585510,
    "mediantime": 1447581802,
    "nonce": 1739534825,
    "bits": "1d00ffff",
    "difficulty": 1,
    "chainwork": "000000000000000000000000000000000000000000000006ac7f4b533747694f",
    "nTx": 16,
    "previousblockhash": "000000000042d3789568d7c57593a24762af995b36dd44ca285a5d675f21c415",
    "nextblockhash": "000000000000064340ba05fdad78443fd2c9cbb32bf6ca46f10415b784497cc6",
    "size": 93143,
    "tx": "See 'Transaction IDs'",
    "coinbaseTx": {
        "txid": "96acdd753703777ef51cbd90e2f909ead36f59104dcb4d2c175f24213682994d",
        "hash": "96acdd753703777ef51cbd90e2f909ead36f59104dcb4d2c175f24213682994d",
        "version": 1,
        "size": 181,
        "locktime": 0,
        "vin": [
            {
                "coinbase": "03ca3b09",
                "sequence": 4294967295
            }
        ],
        "vout": [
            {
                "value": 11884215,
                "n": 0,
                "scriptPubKey": {
                    "asm": "OP_HASH160 349ef962198fcc875f45e786598272ecace9818d OP_EQUAL",
                    "hex": "a914349ef962198fcc875f45e786598272ecace9818d87",
                    "reqSigs": 1,
                    "type": "scripthash",
                    "addresses": [
                        "ectest:pq6fa7tzrx8uep6lghncvkvzwtk2e6vp35dnwur9qx"
                    ]
                }
            },
            {
                "value": 625485,
                "n": 1,
                "scriptPubKey": {
                    "asm": "OP_HASH160 349ef962198fcc875f45e786598272ecace9818d OP_EQUAL",
                    "hex": "a914349ef962198fcc875f45e786598272ecace9818d87",
                    "reqSigs": 1,
                    "type": "scripthash",
                    "addresses": [
                        "ectest:pq6fa7tzrx8uep6lghncvkvzwtk2e6vp35dnwur9qx"
                    ]
                }
            },
            {
                "value": 0,
                "n": 2,
                "scriptPubKey": {
                    "asm": "OP_RETURN 0000000000000000000000000000000000000000000000000000000000000000",
                    "hex": "6a200000000000000000000000000000000000000000000000000000000000000000",
                    "type": "nulldata"
                }
            },
            {
                "value": 0,
                "n": 3,
                "scriptPubKey": {
                    "asm": "OP_RETURN 7302c41798610000",
                    "hex": "6a087302c41798610000",
                    "type": "nulldata"
                }
            }
        ],
        "hex": "01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff0403ca3b09ffffffff047cdfd5460000000017a914349ef962198fcc875f45e786598272ecace9818d87146aba030000000017a914349ef962198fcc875f45e786598272ecace9818d870000000000000000226a20000000000000000000000000000000000000000000000000000000000000000000000000000000000a6a087302c4179861000000000000",
        "blockhash": "0000000000cf9a82973b38d2579b7aafdd2c0ccdbc47dc3242b018398b3e8df3",
        "confirmations": 1023646,
        "time": 1447585510,
        "blocktime": 1447585510
    },
    "totalFees": "9700",
    "subsidy": "12500000"
}

Transaction IDs


Loading...

Block Stats


{
    "avgfee": 646.66,
    "avgfeerate": 0.1,
    "avgtxsize": 6192,
    "blockhash": "0000000000cf9a82973b38d2579b7aafdd2c0ccdbc47dc3242b018398b3e8df3",
    "height": 605130,
    "ins": 15,
    "maxfee": 5000,
    "maxfeerate": 2.84,
    "maxtxsize": 65743,
    "medianfee": 100,
    "medianfeerate": 0.44,
    "mediantime": 1447581802,
    "mediantxsize": 226,
    "minfee": 100,
    "minfeerate": 0.07,
    "mintxsize": 176,
    "outs": 33,
    "subsidy": 12500000,
    "time": 1447585510,
    "total_out": 15038896.38,
    "total_size": 92881,
    "totalfee": 9700,
    "txs": 16,
    "utxo_increase": 18,
    "utxo_size_inc": 90872,
    "finalized": true
}
hosted by bitcoinabc.org