Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
112,386.7129247255088024 PRFT Test
Holders
270
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
200 PRFT TestValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ProofToken
Compiler Version
v0.4.15+commit.bbb8e64f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-10-29 */ pragma solidity ^0.4.13; contract Controllable { address public controller; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender account. */ function Controllable() public { controller = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyController() { require(msg.sender == controller); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newController The address to transfer ownership to. */ function transferControl(address newController) public onlyController { if (newController != address(0)) { controller = newController; } } } library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal constant returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract TokenFactoryInterface { function createCloneToken( address _parentToken, uint _snapshotBlock, string _tokenName, string _tokenSymbol ) public returns (ProofToken newToken); } contract ProofToken is Controllable { using SafeMath for uint256; ProofTokenInterface public parentToken; TokenFactoryInterface public tokenFactory; string public name; string public symbol; string public version; uint8 public decimals; uint256 public parentSnapShotBlock; uint256 public creationBlock; bool public transfersEnabled; bool public masterTransfersEnabled; address public masterWallet = 0x740C588C5556e523981115e587892be0961853B8; struct Checkpoint { uint128 fromBlock; uint128 value; } Checkpoint[] totalSupplyHistory; mapping(address => Checkpoint[]) balances; mapping (address => mapping (address => uint)) allowed; bool public mintingFinished = false; bool public presaleBalancesLocked = false; uint256 public constant TOTAL_PRESALE_TOKENS = 112386712924725508802400; event Mint(address indexed to, uint256 amount); event MintFinished(); event ClaimedTokens(address indexed _token, address indexed _owner, uint _amount); event NewCloneToken(address indexed cloneToken); event Approval(address indexed _owner, address indexed _spender, uint256 _amount); event Transfer(address indexed from, address indexed to, uint256 value); function ProofToken( address _tokenFactory, address _parentToken, uint256 _parentSnapShotBlock, string _tokenName, string _tokenSymbol ) public { tokenFactory = TokenFactoryInterface(_tokenFactory); parentToken = ProofTokenInterface(_parentToken); parentSnapShotBlock = _parentSnapShotBlock; name = _tokenName; symbol = _tokenSymbol; decimals = 18; transfersEnabled = false; masterTransfersEnabled = false; creationBlock = block.number; version = '0.1'; } function() public payable { revert(); } /** * Returns the total Proof token supply at the current block * @return total supply {uint256} */ function totalSupply() public constant returns (uint256) { return totalSupplyAt(block.number); } /** * Returns the total Proof token supply at the given block number * @param _blockNumber {uint256} * @return total supply {uint256} */ function totalSupplyAt(uint256 _blockNumber) public constant returns(uint256) { // These next few lines are used when the totalSupply of the token is // requested before a check point was ever created for this token, it // requires that the `parentToken.totalSupplyAt` be queried at the // genesis block for this token as that contains totalSupply of this // token at this block number. if ((totalSupplyHistory.length == 0) || (totalSupplyHistory[0].fromBlock > _blockNumber)) { if (address(parentToken) != 0) { return parentToken.totalSupplyAt(min(_blockNumber, parentSnapShotBlock)); } else { return 0; } // This will return the expected totalSupply during normal situations } else { return getValueAt(totalSupplyHistory, _blockNumber); } } /** * Returns the token holder balance at the current block * @param _owner {address} * @return balance {uint256} */ function balanceOf(address _owner) public constant returns (uint256 balance) { return balanceOfAt(_owner, block.number); } /** * Returns the token holder balance the the given block number * @param _owner {address} * @param _blockNumber {uint256} * @return balance {uint256} */ function balanceOfAt(address _owner, uint256 _blockNumber) public constant returns (uint256) { // These next few lines are used when the balance of the token is // requested before a check point was ever created for this token, it // requires that the `parentToken.balanceOfAt` be queried at the // genesis block for that token as this contains initial balance of // this token if ((balances[_owner].length == 0) || (balances[_owner][0].fromBlock > _blockNumber)) { if (address(parentToken) != 0) { return parentToken.balanceOfAt(_owner, min(_blockNumber, parentSnapShotBlock)); } else { // Has no parent return 0; } // This will return the expected balance during normal situations } else { return getValueAt(balances[_owner], _blockNumber); } } /** * Standard ERC20 transfer tokens function * @param _to {address} * @param _amount {uint} * @return success {bool} */ function transfer(address _to, uint256 _amount) public returns (bool success) { return doTransfer(msg.sender, _to, _amount); } /** * Standard ERC20 transferFrom function * @param _from {address} * @param _to {address} * @param _amount {uint256} * @return success {bool} */ function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success) { require(allowed[_from][msg.sender] >= _amount); allowed[_from][msg.sender] -= _amount; return doTransfer(_from, _to, _amount); } /** * Standard ERC20 approve function * @param _spender {address} * @param _amount {uint256} * @return success {bool} */ function approve(address _spender, uint256 _amount) public returns (bool success) { require(transfersEnabled); //https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require((_amount == 0) || (allowed[msg.sender][_spender] == 0)); allowed[msg.sender][_spender] = _amount; Approval(msg.sender, _spender, _amount); return true; } /** * Standard ERC20 approve function * @param _spender {address} * @param _amount {uint256} * @return success {bool} */ function approveAndCall(address _spender, uint256 _amount, bytes _extraData) public returns (bool success) { approve(_spender, _amount); ApproveAndCallReceiver(_spender).receiveApproval( msg.sender, _amount, this, _extraData ); return true; } /** * Standard ERC20 allowance function * @param _owner {address} * @param _spender {address} * @return remaining {uint256} */ function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } /** * Internal Transfer function - Updates the checkpoint ledger * @param _from {address} * @param _to {address} * @param _amount {uint256} * @return success {bool} */ function doTransfer(address _from, address _to, uint256 _amount) internal returns(bool) { if (msg.sender != masterWallet) { require(transfersEnabled); } else { require(masterTransfersEnabled); } require(_amount > 0); require(parentSnapShotBlock < block.number); require((_to != 0) && (_to != address(this))); // If the amount being transfered is more than the balance of the // account the transfer returns false uint256 previousBalanceFrom = balanceOfAt(_from, block.number); require(previousBalanceFrom >= _amount); // First update the balance array with the new value for the address // sending the tokens updateValueAtNow(balances[_from], previousBalanceFrom - _amount); // Then update the balance array with the new value for the address // receiving the tokens uint256 previousBalanceTo = balanceOfAt(_to, block.number); require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow updateValueAtNow(balances[_to], previousBalanceTo + _amount); // An event to make the transfer easy to find on the blockchain Transfer(_from, _to, _amount); return true; } /** * Token creation functions - can only be called by the tokensale controller during the tokensale period * @param _owner {address} * @param _amount {uint256} * @return success {bool} */ function mint(address _owner, uint256 _amount) public onlyController canMint returns (bool) { uint256 curTotalSupply = totalSupply(); uint256 previousBalanceTo = balanceOf(_owner); require(curTotalSupply + _amount >= curTotalSupply); // Check for overflow require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow updateValueAtNow(totalSupplyHistory, curTotalSupply + _amount); updateValueAtNow(balances[_owner], previousBalanceTo + _amount); Transfer(0, _owner, _amount); return true; } modifier canMint() { require(!mintingFinished); _; } /** * Import presale balances before the start of the token sale. After importing * balances, lockPresaleBalances() has to be called to prevent further modification * of presale balances. * @param _addresses {address[]} Array of presale addresses * @param _balances {uint256[]} Array of balances corresponding to presale addresses. * @return success {bool} */ function importPresaleBalances(address[] _addresses, uint256[] _balances) public onlyController returns (bool) { require(presaleBalancesLocked == false); for (uint256 i = 0; i < _addresses.length; i++) { updateValueAtNow(balances[_addresses[i]], _balances[i]); Transfer(0, _addresses[i], _balances[i]); } updateValueAtNow(totalSupplyHistory, TOTAL_PRESALE_TOKENS); return true; } /** * Lock presale balances after successful presale balance import * @return A boolean that indicates if the operation was successful. */ function lockPresaleBalances() public onlyController returns (bool) { presaleBalancesLocked = true; return true; } /** * Lock the minting of Proof Tokens - to be called after the presale * @return {bool} success */ function finishMinting() public onlyController returns (bool) { mintingFinished = true; MintFinished(); return true; } /** * Enable or block transfers - to be called in case of emergency * @param _value {bool} */ function enableTransfers(bool _value) public onlyController { transfersEnabled = _value; } /** * Enable or block transfers - to be called in case of emergency * @param _value {bool} */ function enableMasterTransfers(bool _value) public onlyController { masterTransfersEnabled = _value; } /** * Internal balance method - gets a certain checkpoint value a a certain _block * @param _checkpoints {Checkpoint[]} List of checkpoints - supply history or balance history * @return value {uint256} Value of _checkpoints at _block */ function getValueAt(Checkpoint[] storage _checkpoints, uint256 _block) constant internal returns (uint256) { if (_checkpoints.length == 0) return 0; // Shortcut for the actual value if (_block >= _checkpoints[_checkpoints.length-1].fromBlock) return _checkpoints[_checkpoints.length-1].value; if (_block < _checkpoints[0].fromBlock) return 0; // Binary search of the value in the array uint256 min = 0; uint256 max = _checkpoints.length-1; while (max > min) { uint256 mid = (max + min + 1) / 2; if (_checkpoints[mid].fromBlock<=_block) { min = mid; } else { max = mid-1; } } return _checkpoints[min].value; } /** * Internal update method - updates the checkpoint ledger at the current block * @param _checkpoints {Checkpoint[]} List of checkpoints - supply history or balance history * @return value {uint256} Value to add to the checkpoints ledger */ function updateValueAtNow(Checkpoint[] storage _checkpoints, uint256 _value) internal { if ((_checkpoints.length == 0) || (_checkpoints[_checkpoints.length-1].fromBlock < block.number)) { Checkpoint storage newCheckPoint = _checkpoints[_checkpoints.length++]; newCheckPoint.fromBlock = uint128(block.number); newCheckPoint.value = uint128(_value); } else { Checkpoint storage oldCheckPoint = _checkpoints[_checkpoints.length-1]; oldCheckPoint.value = uint128(_value); } } function min(uint256 a, uint256 b) internal constant returns (uint) { return a < b ? a : b; } /** * Clones Proof Token at the given snapshot block * @param _snapshotBlock {uint256} * @param _name {string} - The cloned token name * @param _symbol {string} - The cloned token symbol * @return clonedTokenAddress {address} */ function createCloneToken(uint256 _snapshotBlock, string _name, string _symbol) public returns(address) { if (_snapshotBlock == 0) { _snapshotBlock = block.number; } if (_snapshotBlock > block.number) { _snapshotBlock = block.number; } ProofToken cloneToken = tokenFactory.createCloneToken( this, _snapshotBlock, _name, _symbol ); cloneToken.transferControl(msg.sender); // An event to make the token easy to find on the blockchain NewCloneToken(address(cloneToken)); return address(cloneToken); } } contract ControllerInterface { function proxyPayment(address _owner) public payable returns(bool); function onTransfer(address _from, address _to, uint _amount) public returns(bool); function onApprove(address _owner, address _spender, uint _amount) public returns(bool); } contract ProofTokenInterface is Controllable { event Mint(address indexed to, uint256 amount); event MintFinished(); event ClaimedTokens(address indexed _token, address indexed _owner, uint _amount); event NewCloneToken(address indexed _cloneToken, uint _snapshotBlock); event Approval(address indexed _owner, address indexed _spender, uint256 _amount); event Transfer(address indexed from, address indexed to, uint256 value); function totalSupply() public constant returns (uint); function totalSupplyAt(uint _blockNumber) public constant returns(uint); function balanceOf(address _owner) public constant returns (uint256 balance); function balanceOfAt(address _owner, uint _blockNumber) public constant returns (uint); function transfer(address _to, uint256 _amount) public returns (bool success); function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success); function approve(address _spender, uint256 _amount) public returns (bool success); function approveAndCall(address _spender, uint256 _amount, bytes _extraData) public returns (bool success); function allowance(address _owner, address _spender) public constant returns (uint256 remaining); function mint(address _owner, uint _amount) public returns (bool); function importPresaleBalances(address[] _addresses, uint256[] _balances, address _presaleAddress) public returns (bool); function lockPresaleBalances() public returns (bool); function finishMinting() public returns (bool); function enableTransfers(bool _value) public; function enableMasterTransfers(bool _value) public; function createCloneToken(uint _snapshotBlock, string _cloneTokenName, string _cloneTokenSymbol) public returns (address); } contract ApproveAndCallReceiver { function receiveApproval(address from, uint256 _amount, address _token, bytes _data) public; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_balances","type":"uint256[]"}],"name":"importPresaleBalances","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"presaleBalancesLocked","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"lockPresaleBalances","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newController","type":"address"}],"name":"transferControl","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOTAL_PRESALE_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_snapshotBlock","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"bool"}],"name":"enableMasterTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"masterTransfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"masterWallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_tokenFactory","type":"address"},{"name":"_parentToken","type":"address"},{"name":"_parentSnapShotBlock","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"cloneToken","type":"address"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
6060604052600980546201000060b060020a03191675740c588c5556e523981115e587892be0961853b80000179055600d805461ffff1916905534156200004557600080fd5b60405162001cc138038062001cc18339810160405280805191906020018051919060200180519190602001805182019190602001805190910190505b5b60008054600160a060020a03191633600160a060020a03161790555b60028054600160a060020a03808816600160a060020a031992831617909255600180549287169290911691909117905560078390556003828051620000e892916020019062000171565b506004818051620000fe92916020019062000171565b506006805460ff191660121790556009805461ffff191690554360085560408051908101604052600381527f302e310000000000000000000000000000000000000000000000000000000000602082015260059080516200016492916020019062000171565b505b50505050506200021b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001b457805160ff1916838001178555620001e4565b82800160010185558215620001e4579182015b82811115620001e4578251825591602001919060010190620001c7565b5b50620001f3929150620001f7565b5090565b6200021891905b80821115620001f35760008155600101620001fe565b5090565b90565b611a96806200022b6000396000f3006060604052361561017a5763ffffffff60e060020a60003504166305d2035b811461018257806306fdde03146101a9578063095ea7b314610234578063128f04e71461026a578063176345141461030d57806318160ddd146103325780631a53cd901461035757806323b872dd1461037e578063313ce567146103ba57806340c10f19146103e35780634ee2cd7e1461041957806354fd4d501461044d5780635d0a7628146104d85780636d16fa41146104ff57806370a0823114610520578063763fd2ab146105515780637d64bcb41461057657806380a540011461059d57806395d89b41146105cc578063981b24d0146106575780639ed74a231461067f578063a9059cbb14610733578063aec318f114610769578063b127326e14610783578063bef97c87146107aa578063c5bcc4f1146107d1578063cae9ca51146107f6578063dd62ed3e1461086f578063e77772fe146108a6578063f41e60c5146108d5578063f77c4791146108ef578063fc0d01171461091e575b5b600080fd5b005b341561018d57600080fd5b61019561094d565b604051901515815260200160405180910390f35b34156101b457600080fd5b6101bc610956565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561023f57600080fd5b610195600160a060020a03600435166024356109f4565b604051901515815260200160405180910390f35b341561027557600080fd5b610195600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610aad95505050505050565b604051901515815260200160405180910390f35b341561031857600080fd5b610320610bd9565b60405190815260200160405180910390f35b341561033d57600080fd5b610320610bdf565b60405190815260200160405180910390f35b341561036257600080fd5b610195610bf0565b604051901515815260200160405180910390f35b341561038957600080fd5b610195600160a060020a0360043581169060243516604435610bfe565b604051901515815260200160405180910390f35b34156103c557600080fd5b6103cd610c76565b60405160ff909116815260200160405180910390f35b34156103ee57600080fd5b610195600160a060020a0360043516602435610c7f565b604051901515815260200160405180910390f35b341561042457600080fd5b610320600160a060020a0360043516602435610d63565b60405190815260200160405180910390f35b341561045857600080fd5b6101bc610ea9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104e357600080fd5b610195610f47565b604051901515815260200160405180910390f35b341561050a57600080fd5b610180600160a060020a0360043516610f7a565b005b341561052b57600080fd5b610320600160a060020a0360043516610fd2565b60405190815260200160405180910390f35b341561055c57600080fd5b610320610fe6565b60405190815260200160405180910390f35b341561058157600080fd5b610195610ff4565b604051901515815260200160405180910390f35b34156105a857600080fd5b6105b0611051565b604051600160a060020a03909116815260200160405180910390f35b34156105d757600080fd5b6101bc611060565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561066257600080fd5b6103206004356110fe565b60405190815260200160405180910390f35b341561068a57600080fd5b6105b0600480359060446024803590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f0160208091040260200160405190810160405281815292919060208401838380828437509496506111f695505050505050565b604051600160a060020a03909116815260200160405180910390f35b341561073e57600080fd5b610195600160a060020a0360043516602435611413565b604051901515815260200160405180910390f35b341561077457600080fd5b6101806004351515611429565b005b341561078e57600080fd5b61019561145c565b604051901515815260200160405180910390f35b34156107b557600080fd5b61019561146a565b604051901515815260200160405180910390f35b34156107dc57600080fd5b610320611473565b60405190815260200160405180910390f35b341561080157600080fd5b61019560048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061147995505050505050565b604051901515815260200160405180910390f35b341561087a57600080fd5b610320600160a060020a036004358116906024351661158d565b60405190815260200160405180910390f35b34156108b157600080fd5b6105b06115ba565b604051600160a060020a03909116815260200160405180910390f35b34156108e057600080fd5b61018060043515156115c9565b005b34156108fa57600080fd5b6105b06115f7565b604051600160a060020a03909116815260200160405180910390f35b341561092957600080fd5b6105b0611606565b604051600160a060020a03909116815260200160405180910390f35b600d5460ff1681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b60095460009060ff161515610a0857600080fd5b811580610a385750600160a060020a033381166000908152600c6020908152604080832093871683529290522054155b1515610a4357600080fd5b600160a060020a033381166000818152600c6020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60008054819033600160a060020a03908116911614610acb57600080fd5b600d54610100900460ff1615610ae057600080fd5b5060005b8351811015610bb757610b45600b6000868481518110610b0057fe5b90602001906020020151600160a060020a0316600160a060020a03168152602001908152602001600020848381518110610b3657fe5b9060200190602002015161161b565b838181518110610b5157fe5b90602001906020020151600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858481518110610b9357fe5b9060200190602002015160405190815260200160405180910390a35b600101610ae4565b610bcc600a6917cc7ef452b68253876061161b565b600191505b5b5092915050565b60085481565b6000610bea436110fe565b90505b90565b600d54610100900460ff1681565b600160a060020a038084166000908152600c602090815260408083203390941683529290529081205482901015610c3457600080fd5b600160a060020a038085166000908152600c602090815260408083203390941683529290522080548390039055610c6c84848461171e565b90505b9392505050565b60065460ff1681565b600080548190819033600160a060020a03908116911614610c9f57600080fd5b600d5460ff1615610caf57600080fd5b610cb7610bdf565b9150610cc285610fd2565b905083820182901015610cd457600080fd5b83810181901015610ce457600080fd5b610cf1600a85840161161b565b600160a060020a0385166000908152600b60205260409020610d159082860161161b565b84600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b5b5b505092915050565b600160a060020a0382166000908152600b60205260408120541580610dc35750600160a060020a0383166000908152600b6020526040812080548492908110610da857fe5b906000526020600020900160005b50546001608060020a0316115b15610e7957600154600160a060020a031615610e6c57600154600754600160a060020a0390911690634ee2cd7e908590610dfe908690611891565b60006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610e4a57600080fd5b6102c65a03f11515610e5b57600080fd5b505050604051805190509050610aa7565b506000610aa7565b610aa7565b600160a060020a0383166000908152600b60205260409020610e9b90836118ab565b9050610aa7565b5b92915050565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b6000805433600160a060020a03908116911614610f6357600080fd5b50600d805461ff00191661010017905560015b5b90565b60005433600160a060020a03908116911614610f9557600080fd5b600160a060020a03811615610fcd576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b6000610fde8243610d63565b90505b919050565b6917cc7ef452b68253876081565b6000805433600160a060020a0390811691161461101057600080fd5b600d805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600154600160a060020a031681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b600a546000901580611137575081600a600081548110151561111c57fe5b906000526020600020900160005b50546001608060020a0316115b156111de57600154600160a060020a0316156111d157600154600754600160a060020a039091169063981b24d090611170908590611891565b60006040516020015260405160e060020a63ffffffff84160281526004810191909152602401602060405180830381600087803b15156111af57600080fd5b6102c65a03f115156111c057600080fd5b505050604051805190509050610fe1565b506000610fe1565b610fe1565b6111e9600a836118ab565b9050610fe1565b5b919050565b600080841515611204574394505b43851115611210574394505b600254600160a060020a03166359b58dba308787876000604051602001526040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156112a05780820151818401525b602001611287565b50505050905090810190601f1680156112cd5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156113045780820151818401525b6020016112eb565b50505050905090810190601f1680156113315780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b151561135357600080fd5b6102c65a03f1151561136457600080fd5b5050506040518051915050600160a060020a038116636d16fa413360405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b15156113bd57600080fd5b6102c65a03f115156113ce57600080fd5b50505080600160a060020a03167ff30000f977bee4f7df8246f69a4ba66f2d5be05d1fdaa0f0044d24fc52748b0060405160405180910390a28091505b509392505050565b600061142033848461171e565b90505b92915050565b60005433600160a060020a0390811691161461144457600080fd5b6009805461ff001916610100831515021790555b5b50565b600954610100900460ff1681565b60095460ff1681565b60075481565b600061148584846109f4565b5083600160a060020a0316638f4ffcb1338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561151f5780820151818401525b602001611506565b50505050905090810190601f16801561154c5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561156d57600080fd5b6102c65a03f1151561157e57600080fd5b505050600190505b9392505050565b600160a060020a038083166000908152600c60209081526040808320938516835292905220545b92915050565b600254600160a060020a031681565b60005433600160a060020a039081169116146115e457600080fd5b6009805460ff19168215151790555b5b50565b600054600160a060020a031681565b600954620100009004600160a060020a031681565b8154600090819015806116585750835443908590600019810190811061163d57fe5b906000526020600020900160005b50546001608060020a0316105b156116ce578354849061166e8260018301611a1f565b8154811061167857fe5b906000526020600020900160005b5080546001608060020a03858116700100000000000000000000000000000000024382166fffffffffffffffffffffffffffffffff1990931692909217161781559150611717565b8354849060001981019081106116e057fe5b906000526020600020900160005b5080546001608060020a0380861670010000000000000000000000000000000002911617815590505b5b50505050565b6009546000908190819033600160a060020a039081166201000090920416146117575760095460ff16151561175257600080fd5b61176d565b600954610100900460ff16151561176d57600080fd5b5b6000841161177b57600080fd5b60075443901061178a57600080fd5b600160a060020a038516158015906117b4575030600160a060020a031685600160a060020a031614155b15156117bf57600080fd5b6117c98643610d63565b9150838210156117d857600080fd5b600160a060020a0386166000908152600b602052604090206117fc9085840361161b565b6118068543610d63565b90508381018190101561181857600080fd5b600160a060020a0385166000908152600b6020526040902061183c9082860161161b565b84600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b50509392505050565b60008183106118a05781611420565b825b90505b92915050565b6000806000808580549050600014156118c75760009350611a16565b8554869060001981019081106118d957fe5b906000526020600020900160005b50546001608060020a0316851061193e5785548690600019810190811061190a57fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a03169350611a16565b85600081548110151561194d57fe5b906000526020600020900160005b50546001608060020a03168510156119765760009350611a16565b8554600093506000190191505b828211156119d85760026001838501015b0490508486828154811015156119a657fe5b906000526020600020900160005b50546001608060020a0316116119cc578092506119d3565b6001810391505b611983565b85838154811015156119e657fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a031693505b50505092915050565b815481835581811511611a4357600083815260209020611a43918101908301611a49565b5b505050565b610bed91905b80821115611a635760008155600101611a4f565b5090565b905600a165627a7a72305820e05f8857f40675e3c51626d1a76285c8b042ca0ae47e5b504575e873f6eed3f50029000000000000000000000000e24e7c711194a4732244c42083699cc4e8f5a8350000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a50726f6f6620546573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095052465420546573740000000000000000000000000000000000000000000000
Deployed Bytecode
0x6060604052361561017a5763ffffffff60e060020a60003504166305d2035b811461018257806306fdde03146101a9578063095ea7b314610234578063128f04e71461026a578063176345141461030d57806318160ddd146103325780631a53cd901461035757806323b872dd1461037e578063313ce567146103ba57806340c10f19146103e35780634ee2cd7e1461041957806354fd4d501461044d5780635d0a7628146104d85780636d16fa41146104ff57806370a0823114610520578063763fd2ab146105515780637d64bcb41461057657806380a540011461059d57806395d89b41146105cc578063981b24d0146106575780639ed74a231461067f578063a9059cbb14610733578063aec318f114610769578063b127326e14610783578063bef97c87146107aa578063c5bcc4f1146107d1578063cae9ca51146107f6578063dd62ed3e1461086f578063e77772fe146108a6578063f41e60c5146108d5578063f77c4791146108ef578063fc0d01171461091e575b5b600080fd5b005b341561018d57600080fd5b61019561094d565b604051901515815260200160405180910390f35b34156101b457600080fd5b6101bc610956565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561023f57600080fd5b610195600160a060020a03600435166024356109f4565b604051901515815260200160405180910390f35b341561027557600080fd5b610195600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610aad95505050505050565b604051901515815260200160405180910390f35b341561031857600080fd5b610320610bd9565b60405190815260200160405180910390f35b341561033d57600080fd5b610320610bdf565b60405190815260200160405180910390f35b341561036257600080fd5b610195610bf0565b604051901515815260200160405180910390f35b341561038957600080fd5b610195600160a060020a0360043581169060243516604435610bfe565b604051901515815260200160405180910390f35b34156103c557600080fd5b6103cd610c76565b60405160ff909116815260200160405180910390f35b34156103ee57600080fd5b610195600160a060020a0360043516602435610c7f565b604051901515815260200160405180910390f35b341561042457600080fd5b610320600160a060020a0360043516602435610d63565b60405190815260200160405180910390f35b341561045857600080fd5b6101bc610ea9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104e357600080fd5b610195610f47565b604051901515815260200160405180910390f35b341561050a57600080fd5b610180600160a060020a0360043516610f7a565b005b341561052b57600080fd5b610320600160a060020a0360043516610fd2565b60405190815260200160405180910390f35b341561055c57600080fd5b610320610fe6565b60405190815260200160405180910390f35b341561058157600080fd5b610195610ff4565b604051901515815260200160405180910390f35b34156105a857600080fd5b6105b0611051565b604051600160a060020a03909116815260200160405180910390f35b34156105d757600080fd5b6101bc611060565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101f95780820151818401525b6020016101e0565b50505050905090810190601f1680156102265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561066257600080fd5b6103206004356110fe565b60405190815260200160405180910390f35b341561068a57600080fd5b6105b0600480359060446024803590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f0160208091040260200160405190810160405281815292919060208401838380828437509496506111f695505050505050565b604051600160a060020a03909116815260200160405180910390f35b341561073e57600080fd5b610195600160a060020a0360043516602435611413565b604051901515815260200160405180910390f35b341561077457600080fd5b6101806004351515611429565b005b341561078e57600080fd5b61019561145c565b604051901515815260200160405180910390f35b34156107b557600080fd5b61019561146a565b604051901515815260200160405180910390f35b34156107dc57600080fd5b610320611473565b60405190815260200160405180910390f35b341561080157600080fd5b61019560048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061147995505050505050565b604051901515815260200160405180910390f35b341561087a57600080fd5b610320600160a060020a036004358116906024351661158d565b60405190815260200160405180910390f35b34156108b157600080fd5b6105b06115ba565b604051600160a060020a03909116815260200160405180910390f35b34156108e057600080fd5b61018060043515156115c9565b005b34156108fa57600080fd5b6105b06115f7565b604051600160a060020a03909116815260200160405180910390f35b341561092957600080fd5b6105b0611606565b604051600160a060020a03909116815260200160405180910390f35b600d5460ff1681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b60095460009060ff161515610a0857600080fd5b811580610a385750600160a060020a033381166000908152600c6020908152604080832093871683529290522054155b1515610a4357600080fd5b600160a060020a033381166000818152600c6020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60008054819033600160a060020a03908116911614610acb57600080fd5b600d54610100900460ff1615610ae057600080fd5b5060005b8351811015610bb757610b45600b6000868481518110610b0057fe5b90602001906020020151600160a060020a0316600160a060020a03168152602001908152602001600020848381518110610b3657fe5b9060200190602002015161161b565b838181518110610b5157fe5b90602001906020020151600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858481518110610b9357fe5b9060200190602002015160405190815260200160405180910390a35b600101610ae4565b610bcc600a6917cc7ef452b68253876061161b565b600191505b5b5092915050565b60085481565b6000610bea436110fe565b90505b90565b600d54610100900460ff1681565b600160a060020a038084166000908152600c602090815260408083203390941683529290529081205482901015610c3457600080fd5b600160a060020a038085166000908152600c602090815260408083203390941683529290522080548390039055610c6c84848461171e565b90505b9392505050565b60065460ff1681565b600080548190819033600160a060020a03908116911614610c9f57600080fd5b600d5460ff1615610caf57600080fd5b610cb7610bdf565b9150610cc285610fd2565b905083820182901015610cd457600080fd5b83810181901015610ce457600080fd5b610cf1600a85840161161b565b600160a060020a0385166000908152600b60205260409020610d159082860161161b565b84600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b5b5b505092915050565b600160a060020a0382166000908152600b60205260408120541580610dc35750600160a060020a0383166000908152600b6020526040812080548492908110610da857fe5b906000526020600020900160005b50546001608060020a0316115b15610e7957600154600160a060020a031615610e6c57600154600754600160a060020a0390911690634ee2cd7e908590610dfe908690611891565b60006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610e4a57600080fd5b6102c65a03f11515610e5b57600080fd5b505050604051805190509050610aa7565b506000610aa7565b610aa7565b600160a060020a0383166000908152600b60205260409020610e9b90836118ab565b9050610aa7565b5b92915050565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b6000805433600160a060020a03908116911614610f6357600080fd5b50600d805461ff00191661010017905560015b5b90565b60005433600160a060020a03908116911614610f9557600080fd5b600160a060020a03811615610fcd576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b6000610fde8243610d63565b90505b919050565b6917cc7ef452b68253876081565b6000805433600160a060020a0390811691161461101057600080fd5b600d805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b600154600160a060020a031681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ec5780601f106109c1576101008083540402835291602001916109ec565b820191906000526020600020905b8154815290600101906020018083116109cf57829003601f168201915b505050505081565b600a546000901580611137575081600a600081548110151561111c57fe5b906000526020600020900160005b50546001608060020a0316115b156111de57600154600160a060020a0316156111d157600154600754600160a060020a039091169063981b24d090611170908590611891565b60006040516020015260405160e060020a63ffffffff84160281526004810191909152602401602060405180830381600087803b15156111af57600080fd5b6102c65a03f115156111c057600080fd5b505050604051805190509050610fe1565b506000610fe1565b610fe1565b6111e9600a836118ab565b9050610fe1565b5b919050565b600080841515611204574394505b43851115611210574394505b600254600160a060020a03166359b58dba308787876000604051602001526040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a031681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b838110156112a05780820151818401525b602001611287565b50505050905090810190601f1680156112cd5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156113045780820151818401525b6020016112eb565b50505050905090810190601f1680156113315780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b151561135357600080fd5b6102c65a03f1151561136457600080fd5b5050506040518051915050600160a060020a038116636d16fa413360405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b15156113bd57600080fd5b6102c65a03f115156113ce57600080fd5b50505080600160a060020a03167ff30000f977bee4f7df8246f69a4ba66f2d5be05d1fdaa0f0044d24fc52748b0060405160405180910390a28091505b509392505050565b600061142033848461171e565b90505b92915050565b60005433600160a060020a0390811691161461144457600080fd5b6009805461ff001916610100831515021790555b5b50565b600954610100900460ff1681565b60095460ff1681565b60075481565b600061148584846109f4565b5083600160a060020a0316638f4ffcb1338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561151f5780820151818401525b602001611506565b50505050905090810190601f16801561154c5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561156d57600080fd5b6102c65a03f1151561157e57600080fd5b505050600190505b9392505050565b600160a060020a038083166000908152600c60209081526040808320938516835292905220545b92915050565b600254600160a060020a031681565b60005433600160a060020a039081169116146115e457600080fd5b6009805460ff19168215151790555b5b50565b600054600160a060020a031681565b600954620100009004600160a060020a031681565b8154600090819015806116585750835443908590600019810190811061163d57fe5b906000526020600020900160005b50546001608060020a0316105b156116ce578354849061166e8260018301611a1f565b8154811061167857fe5b906000526020600020900160005b5080546001608060020a03858116700100000000000000000000000000000000024382166fffffffffffffffffffffffffffffffff1990931692909217161781559150611717565b8354849060001981019081106116e057fe5b906000526020600020900160005b5080546001608060020a0380861670010000000000000000000000000000000002911617815590505b5b50505050565b6009546000908190819033600160a060020a039081166201000090920416146117575760095460ff16151561175257600080fd5b61176d565b600954610100900460ff16151561176d57600080fd5b5b6000841161177b57600080fd5b60075443901061178a57600080fd5b600160a060020a038516158015906117b4575030600160a060020a031685600160a060020a031614155b15156117bf57600080fd5b6117c98643610d63565b9150838210156117d857600080fd5b600160a060020a0386166000908152600b602052604090206117fc9085840361161b565b6118068543610d63565b90508381018190101561181857600080fd5b600160a060020a0385166000908152600b6020526040902061183c9082860161161b565b84600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405190815260200160405180910390a3600192505b50509392505050565b60008183106118a05781611420565b825b90505b92915050565b6000806000808580549050600014156118c75760009350611a16565b8554869060001981019081106118d957fe5b906000526020600020900160005b50546001608060020a0316851061193e5785548690600019810190811061190a57fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a03169350611a16565b85600081548110151561194d57fe5b906000526020600020900160005b50546001608060020a03168510156119765760009350611a16565b8554600093506000190191505b828211156119d85760026001838501015b0490508486828154811015156119a657fe5b906000526020600020900160005b50546001608060020a0316116119cc578092506119d3565b6001810391505b611983565b85838154811015156119e657fe5b906000526020600020900160005b505470010000000000000000000000000000000090046001608060020a031693505b50505092915050565b815481835581811511611a4357600083815260209020611a43918101908301611a49565b5b505050565b610bed91905b80821115611a635760008155600101611a4f565b5090565b905600a165627a7a72305820e05f8857f40675e3c51626d1a76285c8b042ca0ae47e5b504575e873f6eed3f50029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e24e7c711194a4732244c42083699cc4e8f5a8350000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a50726f6f6620546573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095052465420546573740000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenFactory (address): 0xe24e7C711194A4732244C42083699cc4e8f5a835
Arg [1] : _parentToken (address): 0x0000000000000000000000000000000000000000
Arg [2] : _parentSnapShotBlock (uint256): 0
Arg [3] : _tokenName (string): Proof Test
Arg [4] : _tokenSymbol (string): PRFT Test
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000e24e7c711194a4732244c42083699cc4e8f5a835
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 50726f6f66205465737400000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 5052465420546573740000000000000000000000000000000000000000000000
Swarm Source
bzzr://e05f8857f40675e3c51626d1a76285c8b042ca0ae47e5b504575e873f6eed3f5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.