Announcement: PlusCoin token contract has migrated to a new address. The new token can be found here.
ERC-20
Old Contract
Overview
Max Total Supply
8,890,164.301752127984775825 PLC
Holders
518 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
340,173.5 PLCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PLC
Compiler Version
v0.4.13+commit.fb4cb1a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-09-22 */ pragma solidity ^0.4.13; /** * @title Math * @dev Assorted math operations */ contract Math { function max64(uint64 a, uint64 b) internal constant returns (uint64) { return a >= b ? a : b; } function min64(uint64 a, uint64 b) internal constant returns (uint64) { return a < b ? a : b; } function max256(uint256 a, uint256 b) internal constant returns (uint256) { return a >= b ? a : b; } function min256(uint256 a, uint256 b) internal constant returns (uint256) { return a < b ? a : b; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner { require(newOwner != address(0)); owner = newOwner; } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) constant returns (uint256); function transfer(address to, uint256 value) returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ contract 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; } function max64(uint64 a, uint64 b) internal constant returns (uint64) { return a >= b ? a : b; } function min64(uint64 a, uint64 b) internal constant returns (uint64) { return a < b ? a : b; } function max256(uint256 a, uint256 b) internal constant returns (uint256) { return a >= b ? a : b; } function min256(uint256 a, uint256 b) internal constant returns (uint256) { return a < b ? a : b; } } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is SafeMath, ERC20Basic { mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint _value) returns (bool){ balances[msg.sender] = sub(balances[msg.sender],_value); balances[_to] = add(balances[_to],_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint representing the amount owned by the passed address. */ function balanceOf(address _owner) constant returns (uint balance) { return balances[_owner]; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) constant returns (uint256); function transferFrom(address from, address to, uint256 value) returns (bool); function approve(address spender, uint256 value) returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amout of tokens to be transfered */ function transferFrom(address _from, address _to, uint256 _value) returns (bool) { var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_to] = add(balances[_to],_value); balances[_from] = sub(balances[_from],_value); allowed[_from][msg.sender] = sub(_allowance,_value); Transfer(_from, _to, _value); return true; } /** * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender. * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) returns (bool) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require((_value == 0) || (allowed[msg.sender][_spender] == 0)); allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifing the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will recieve the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint returns (bool) { totalSupply = add(totalSupply,_amount); balances[_to] = add(balances[_to],_amount); Mint(_to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner returns (bool) { mintingFinished = true; MintFinished(); return true; } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev modifier to allow actions only when the contract IS paused */ modifier whenNotPaused() { require(!paused); _; } /** * @dev modifier to allow actions only when the contract IS NOT paused */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused { paused = false; Unpause(); } } /** * Pausable token * * Simple ERC20 Token example, with pausable token creation **/ contract PausableToken is StandardToken, Pausable { function transfer(address _to, uint256 _value) whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint256 _value) whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } } /** * @title LimitedTransferToken * @dev LimitedTransferToken defines the generic interface and the implementation to limit token * transferability for different events. It is intended to be used as a base class for other token * contracts. * LimitedTransferToken has been designed to allow for different limiting factors, * this can be achieved by recursively calling super.transferableTokens() until the base class is * hit. For example: * function transferableTokens(address holder, uint64 time) constant public returns (uint256) { * return min256(unlockedTokens, super.transferableTokens(holder, time)); * } * A working example is VestedToken.sol: * https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/token/VestedToken.sol */ contract LimitedTransferToken is ERC20 { /** * @dev Checks whether it can transfer or otherwise throws. */ modifier canTransfer(address _sender, uint256 _value) { require(_value <= transferableTokens(_sender, uint64(now))); _; } /** * @dev Checks modifier and allows transfer if tokens are not locked. * @param _to The address that will recieve the tokens. * @param _value The amount of tokens to be transferred. */ function transfer(address _to, uint256 _value) canTransfer(msg.sender, _value) returns (bool) { return super.transfer(_to, _value); } /** * @dev Checks modifier and allows transfer if tokens are not locked. * @param _from The address that will send the tokens. * @param _to The address that will recieve the tokens. * @param _value The amount of tokens to be transferred. */ function transferFrom(address _from, address _to, uint256 _value) canTransfer(_from, _value) returns (bool) { return super.transferFrom(_from, _to, _value); } /** * @dev Default transferable tokens function returns all tokens for a holder (no limit). * @dev Overwriting transferableTokens(address holder, uint64 time) is the way to provide the * specific logic for limiting token transferability for a holder over time. */ function transferableTokens(address holder, uint64 time) constant public returns (uint256) { return balanceOf(holder); } } /** * @title Vested token * @dev Tokens that can be vested for a group of addresses. */ contract VestedToken is Math, StandardToken, LimitedTransferToken { uint256 MAX_GRANTS_PER_ADDRESS = 20; struct TokenGrant { address granter; // 20 bytes uint256 value; // 32 bytes uint64 cliff; uint64 vesting; uint64 start; // 3 * 8 = 24 bytes bool revokable; bool burnsOnRevoke; // 2 * 1 = 2 bits? or 2 bytes? } // total 78 bytes = 3 sstore per operation (32 per sstore) mapping (address => TokenGrant[]) public grants; event NewTokenGrant(address indexed from, address indexed to, uint256 value, uint256 grantId); /** * @dev Grant tokens to a specified address * @param _to address The address which the tokens will be granted to. * @param _value uint256 The amount of tokens to be granted. * @param _start uint64 Time of the beginning of the grant. * @param _cliff uint64 Time of the cliff period. * @param _vesting uint64 The vesting period. */ function grantVestedTokens( address _to, uint256 _value, uint64 _start, uint64 _cliff, uint64 _vesting, bool _revokable, bool _burnsOnRevoke ) public { // Check for date inconsistencies that may cause unexpected behavior require(_cliff >= _start && _vesting >= _cliff); require(tokenGrantsCount(_to) < MAX_GRANTS_PER_ADDRESS); // To prevent a user being spammed and have his balance locked (out of gas attack when calculating vesting). uint256 count = grants[_to].push( TokenGrant( _revokable ? msg.sender : 0, // avoid storing an extra 20 bytes when it is non-revokable _value, _cliff, _vesting, _start, _revokable, _burnsOnRevoke ) ); transfer(_to, _value); NewTokenGrant(msg.sender, _to, _value, count - 1); } /** * @dev Revoke the grant of tokens of a specifed address. * @param _holder The address which will have its tokens revoked. * @param _grantId The id of the token grant. */ function revokeTokenGrant(address _holder, uint256 _grantId) public { TokenGrant storage grant = grants[_holder][_grantId]; require(grant.revokable); require(grant.granter == msg.sender); // Only granter can revoke it address receiver = grant.burnsOnRevoke ? 0xdead : msg.sender; uint256 nonVested = nonVestedTokens(grant, uint64(now)); // remove grant from array delete grants[_holder][_grantId]; grants[_holder][_grantId] = grants[_holder][sub(grants[_holder].length,1)]; grants[_holder].length -= 1; balances[receiver] = add(balances[receiver],nonVested); balances[_holder] = sub(balances[_holder],nonVested); Transfer(_holder, receiver, nonVested); } /** * @dev Calculate the total amount of transferable tokens of a holder at a given time * @param holder address The address of the holder * @param time uint64 The specific time. * @return An uint256 representing a holder's total amount of transferable tokens. */ function transferableTokens(address holder, uint64 time) constant public returns (uint256) { uint256 grantIndex = tokenGrantsCount(holder); if (grantIndex == 0) return super.transferableTokens(holder, time); // shortcut for holder without grants // Iterate through all the grants the holder has, and add all non-vested tokens uint256 nonVested = 0; for (uint256 i = 0; i < grantIndex; i++) { nonVested = add(nonVested, nonVestedTokens(grants[holder][i], time)); } // Balance - totalNonVested is the amount of tokens a holder can transfer at any given time uint256 vestedTransferable = sub(balanceOf(holder), nonVested); // Return the minimum of how many vested can transfer and other value // in case there are other limiting transferability factors (default is balanceOf) return min256(vestedTransferable, super.transferableTokens(holder, time)); } /** * @dev Check the amount of grants that an address has. * @param _holder The holder of the grants. * @return A uint256 representing the total amount of grants. */ function tokenGrantsCount(address _holder) constant returns (uint256 index) { return grants[_holder].length; } /** * @dev Calculate amount of vested tokens at a specifc time. * @param tokens uint256 The amount of tokens grantted. * @param time uint64 The time to be checked * @param start uint64 A time representing the begining of the grant * @param cliff uint64 The cliff period. * @param vesting uint64 The vesting period. * @return An uint256 representing the amount of vested tokensof a specif grant. * transferableTokens * | _/-------- vestedTokens rect * | _/ * | _/ * | _/ * | _/ * | / * | .| * | . | * | . | * | . | * | . | * | . | * +===+===========+---------+----------> time * Start Clift Vesting */ function calculateVestedTokens( uint256 tokens, uint256 time, uint256 start, uint256 cliff, uint256 vesting) constant returns (uint256) { // Shortcuts for before cliff and after vesting cases. if (time < cliff) return 0; if (time >= vesting) return tokens; // Interpolate all vested tokens. // As before cliff the shortcut returns 0, we can use just calculate a value // in the vesting rect (as shown in above's figure) // vestedTokens = tokens * (time - start) / (vesting - start) uint256 vestedTokens = div( mul( tokens, sub(time, start) ), sub(vesting, start) ); return vestedTokens; } /** * @dev Get all information about a specifc grant. * @param _holder The address which will have its tokens revoked. * @param _grantId The id of the token grant. * @return Returns all the values that represent a TokenGrant(address, value, start, cliff, * revokability, burnsOnRevoke, and vesting) plus the vested value at the current time. */ function tokenGrant(address _holder, uint256 _grantId) constant returns (address granter, uint256 value, uint256 vested, uint64 start, uint64 cliff, uint64 vesting, bool revokable, bool burnsOnRevoke) { TokenGrant storage grant = grants[_holder][_grantId]; granter = grant.granter; value = grant.value; start = grant.start; cliff = grant.cliff; vesting = grant.vesting; revokable = grant.revokable; burnsOnRevoke = grant.burnsOnRevoke; vested = vestedTokens(grant, uint64(now)); } /** * @dev Get the amount of vested tokens at a specific time. * @param grant TokenGrant The grant to be checked. * @param time The time to be checked * @return An uint256 representing the amount of vested tokens of a specific grant at a specific time. */ function vestedTokens(TokenGrant grant, uint64 time) private constant returns (uint256) { return calculateVestedTokens( grant.value, uint256(time), uint256(grant.start), uint256(grant.cliff), uint256(grant.vesting) ); } /** * @dev Calculate the amount of non vested tokens at a specific time. * @param grant TokenGrant The grant to be checked. * @param time uint64 The time to be checked * @return An uint256 representing the amount of non vested tokens of a specifc grant on the * passed time frame. */ function nonVestedTokens(TokenGrant grant, uint64 time) private constant returns (uint256) { return sub(grant.value,vestedTokens(grant, time)); } /** * @dev Calculate the date when the holder can trasfer all its tokens * @param holder address The address of the holder * @return An uint256 representing the date of the last transferable tokens. */ function lastTokenIsTransferableDate(address holder) constant public returns (uint64 date) { date = uint64(now); uint256 grantIndex = grants[holder].length; for (uint256 i = 0; i < grantIndex; i++) { date = max64(grants[holder][i].vesting, date); } } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract BurnableToken is SafeMath, StandardToken { event Burn(address indexed burner, uint indexed value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint _value) public { require(_value > 0); address burner = msg.sender; balances[burner] = sub(balances[burner], _value); totalSupply = sub(totalSupply, _value); Burn(burner, _value); } } /** * @title PLC * @dev PLC is ERC20 token contract, inheriting MintableToken, PausableToken, * VestedToken, BurnableToken contract from open zeppelin. */ contract PLC is MintableToken, PausableToken, VestedToken, BurnableToken { string public name = "PlusCoin"; string public symbol = "PLC"; uint256 public decimals = 18; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[{"name":"_holder","type":"address"}],"name":"tokenGrantsCount","outputs":[{"name":"index","type":"uint256"}],"payable":false,"type":"function"},{"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":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"grants","outputs":[{"name":"granter","type":"address"},{"name":"value","type":"uint256"},{"name":"cliff","type":"uint64"},{"name":"vesting","type":"uint64"},{"name":"start","type":"uint64"},{"name":"revokable","type":"bool"},{"name":"burnsOnRevoke","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_holder","type":"address"},{"name":"_grantId","type":"uint256"}],"name":"tokenGrant","outputs":[{"name":"granter","type":"address"},{"name":"value","type":"uint256"},{"name":"vested","type":"uint256"},{"name":"start","type":"uint64"},{"name":"cliff","type":"uint64"},{"name":"vesting","type":"uint64"},{"name":"revokable","type":"bool"},{"name":"burnsOnRevoke","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"holder","type":"address"}],"name":"lastTokenIsTransferableDate","outputs":[{"name":"date","type":"uint64"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_start","type":"uint64"},{"name":"_cliff","type":"uint64"},{"name":"_vesting","type":"uint64"},{"name":"_revokable","type":"bool"},{"name":"_burnsOnRevoke","type":"bool"}],"name":"grantVestedTokens","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"holder","type":"address"},{"name":"time","type":"uint64"}],"name":"transferableTokens","outputs":[{"name":"","type":"uint256"}],"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":"tokens","type":"uint256"},{"name":"time","type":"uint256"},{"name":"start","type":"uint256"},{"name":"cliff","type":"uint256"},{"name":"vesting","type":"uint256"}],"name":"calculateVestedTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_holder","type":"address"},{"name":"_grantId","type":"uint256"}],"name":"revokeTokenGrant","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":true,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"grantId","type":"uint256"}],"name":"NewTokenGrant","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","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
606060409081526003805460a060020a61ffff021916905560146004558051908101604052600881527f506c7573436f696e0000000000000000000000000000000000000000000000006020820152600690805162000063929160200190620000d6565b5060408051908101604052600381527f504c43000000000000000000000000000000000000000000000000000000000060208201526007908051620000ad929160200190620000d6565b5060126008555b60038054600160a060020a03191633600160a060020a03161790555b62000180565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011957805160ff191683800117855562000149565b8280016001018555821562000149579182015b82811115620001495782518255916020019190600101906200012c565b5b50620001589291506200015c565b5090565b6200017d91905b8082111562000158576000815560010162000163565b5090565b90565b611ca080620001906000396000f300606060405236156101515763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302a72a4c811461015657806305d2035b1461018757806306fdde03146101ae578063095ea7b31461023957806318160ddd1461026f57806323b872dd146102945780632c71e60a146102d0578063313ce5671461034b5780633f4ba83a1461037057806340c10f191461038557806342966c68146103bb5780635c975abb146103d3578063600e85b7146103fa5780636c182e991461047b57806370a08231146104b75780637d64bcb4146104e85780638456cb591461050f5780638da5cb5b1461052457806395d89b41146105535780639754a4d9146105de578063a9059cbb14610625578063d347c2051461065b578063dd62ed3e14610699578063df3c211b146106d0578063eb944e4c14610704578063f2fde38b14610728575b600080fd5b341561016157600080fd5b610175600160a060020a0360043516610749565b60405190815260200160405180910390f35b341561019257600080fd5b61019a610768565b604051901515815260200160405180910390f35b34156101b957600080fd5b6101c1610789565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fe5780820151818401525b6020016101e5565b50505050905090810190601f16801561022b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024457600080fd5b61019a600160a060020a0360043516602435610827565b604051901515815260200160405180910390f35b341561027a57600080fd5b6101756108ce565b60405190815260200160405180910390f35b341561029f57600080fd5b61019a600160a060020a03600435811690602435166044356108d4565b604051901515815260200160405180910390f35b34156102db57600080fd5b6102f2600160a060020a0360043516602435610906565b604051600160a060020a039097168752602087019590955267ffffffffffffffff93841660408088019190915292841660608701529216608085015290151560a084015290151560c083015260e0909101905180910390f35b341561035657600080fd5b61017561098c565b60405190815260200160405180910390f35b341561037b57600080fd5b610383610992565b005b341561039057600080fd5b61019a600160a060020a0360043516602435610a15565b604051901515815260200160405180910390f35b34156103c657600080fd5b610383600435610aea565b005b34156103de57600080fd5b61019a610b83565b604051901515815260200160405180910390f35b341561040557600080fd5b61041c600160a060020a0360043516602435610b93565b604051600160a060020a039098168852602088019690965260408088019590955267ffffffffffffffff9384166060880152918316608087015290911660a0850152151560c084015290151560e0830152610100909101905180910390f35b341561048657600080fd5b61049a600160a060020a0360043516610ce0565b60405167ffffffffffffffff909116815260200160405180910390f35b34156104c257600080fd5b610175600160a060020a0360043516610d72565b60405190815260200160405180910390f35b34156104f357600080fd5b61019a610d91565b604051901515815260200160405180910390f35b341561051a57600080fd5b610383610e18565b005b341561052f57600080fd5b610537610ea0565b604051600160a060020a03909116815260200160405180910390f35b341561055e57600080fd5b6101c1610eaf565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fe5780820151818401525b6020016101e5565b50505050905090810190601f16801561022b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105e957600080fd5b610383600160a060020a036004351660243567ffffffffffffffff6044358116906064358116906084351660a435151560c4351515610f4d565b005b341561063057600080fd5b61019a600160a060020a03600435166024356111d8565b604051901515815260200160405180910390f35b341561066657600080fd5b610175600160a060020a036004351667ffffffffffffffff60243516611208565b60405190815260200160405180910390f35b34156106a457600080fd5b610175600160a060020a0360043581169060243516611355565b60405190815260200160405180910390f35b34156106db57600080fd5b610175600435602435604435606435608435611382565b60405190815260200160405180910390f35b341561070f57600080fd5b610383600160a060020a03600435166024356113da565b005b341561073357600080fd5b610383600160a060020a03600435166117ef565b005b600160a060020a0381166000908152600560205260409020545b919050565b60035474010000000000000000000000000000000000000000900460ff1681565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b505050505081565b60008115806108595750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561086457600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005481565b600083826108e28242611208565b8111156108ee57600080fd5b6108f986868661184c565b92505b5b50509392505050565b60056020528160005260406000208181548110151561092157fe5b906000526020600020906003020160005b5080546001820154600290920154600160a060020a03909116935090915067ffffffffffffffff80821691680100000000000000008104821691608060020a8204169060ff60c060020a820481169160c860020a90041687565b60085481565b60035433600160a060020a039081169116146109ad57600080fd5b60035460a860020a900460ff1615156109c557600080fd5b6003805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60035460009033600160a060020a03908116911614610a3357600080fd5b60035474010000000000000000000000000000000000000000900460ff1615610a5b57600080fd5b610a676000548361187c565b6000908155600160a060020a038416815260016020526040902054610a8c908361187c565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a25060015b5b5b92915050565b6000808211610af857600080fd5b5033600160a060020a038116600090815260016020526040902054610b1d9083611896565b600160a060020a03821660009081526001602052604081209190915554610b449083611896565b60005581600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca560405160405180910390a35b5050565b60035460a860020a900460ff1681565b6000806000806000806000806000600560008c600160a060020a0316600160a060020a031681526020019081526020016000208a815481101515610bd357fe5b906000526020600020906003020160005b50805460018201546002830154600160a060020a039092169b50995067ffffffffffffffff608060020a820481169850808216975068010000000000000000820416955060ff60c060020a82048116955060c860020a9091041692509050610ccf8160e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c0820152426118ad565b96505b509295985092959890939650565b600160a060020a03811660009081526005602052604081205442915b81811015610d6a57600160a060020a03841660009081526005602052604090208054610d5f919083908110610d2d57fe5b906000526020600020906003020160005b506002015468010000000000000000900467ffffffffffffffff16846118fd565b92505b600101610cfc565b5b5050919050565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a03908116911614610daf57600080fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b60035433600160a060020a03908116911614610e3357600080fd5b60035460a860020a900460ff1615610e4a57600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b600354600160a060020a031681565b60078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b505050505081565b60008567ffffffffffffffff168567ffffffffffffffff1610158015610f8757508467ffffffffffffffff168467ffffffffffffffff1610155b1515610f9257600080fd5b600454610f9e89610749565b10610fa857600080fd5b600160a060020a0388166000908152600560205260409020805460018101610fd08382611bac565b916000526020600020906003020160005b60e06040519081016040528087610ff9576000610ffb565b335b600160a060020a03168152602081018c905267ffffffffffffffff808b16604083015289811660608301528b16608082015287151560a082015286151560c0909101529190508151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039190911617815560208201518160010155604082015160028201805467ffffffffffffffff191667ffffffffffffffff9290921691909117905560608201518160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060808201518160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a082015160028201805491151560c060020a0278ff0000000000000000000000000000000000000000000000001990921691909117905560c08201516002909101805491151560c860020a0279ff000000000000000000000000000000000000000000000000001990921691909117905550905061117b88886111d8565b5087600160a060020a031633600160a060020a03167ff9565aecd648a0466ffb964a79eeccdf1120ad6276189c687a6e9fe73984d9bb896001850360405191825260208201526040908101905180910390a35b5050505050505050565b600033826111e68242611208565b8111156111f257600080fd5b6111fc858561192c565b92505b5b505092915050565b600080600080600061121987610749565b93508315156112335761122c878761195a565b945061134b565b60009250600091505b8382101561132157600160a060020a0387166000908152600560205260409020805461131391859161130e91908690811061127357fe5b906000526020600020906003020160005b5060e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c08201528961196e565b61187c565b92505b60019091019061123c565b61133361132d88610d72565b84611896565b905061134881611343898961195a565b611990565b94505b5050505092915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b6000808386101561139657600091506113d0565b8286106113a5578691506113d0565b6113ca6113bb886113b68989611896565b6119aa565b6113c58588611896565b6119d9565b90508091505b5095945050505050565b600160a060020a03821660009081526005602052604081208054829182918590811061140257fe5b906000526020600020906003020160005b50600281015490935060c060020a900460ff16151561143157600080fd5b825433600160a060020a0390811691161461144b57600080fd5b600283015460c860020a900460ff166114645733611468565b61dead5b91506114f78360e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c08201524261196e565b600160a060020a03861660009081526005602052604090208054919250908590811061151f57fe5b906000526020600020906003020160005b50805473ffffffffffffffffffffffffffffffffffffffff19168155600060018083018290556002909201805479ffffffffffffffffffffffffffffffffffffffffffffffffffff19169055600160a060020a03871681526005602052604090208054909161159f9190611896565b815481106115a957fe5b906000526020600020906003020160005b50600160a060020a03861660009081526005602052604090208054869081106115df57fe5b906000526020600020906003020160005b508154815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03918216178255600180840154908301556002928301805493909201805467ffffffffffffffff191667ffffffffffffffff94851617808255835468010000000000000000908190048616026fffffffffffffffff000000000000000019909116178082558354608060020a9081900490951690940277ffffffffffffffff000000000000000000000000000000001990941693909317808455825460ff60c060020a918290048116151590910278ff0000000000000000000000000000000000000000000000001990921691909117808555925460c860020a9081900490911615150279ff000000000000000000000000000000000000000000000000001990921691909117909155851660009081526005602052604090208054600019019061173e9082611bac565b50600160a060020a038216600090815260016020526040902054611762908261187c565b600160a060020a0380841660009081526001602052604080822093909355908716815220546117919082611896565b600160a060020a038087166000818152600160205260409081902093909355908416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050505050565b60035433600160a060020a0390811691161461180a57600080fd5b600160a060020a038116151561181f57600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60035460009060a860020a900460ff161561186657600080fd5b6118718484846119f5565b90505b5b9392505050565b60008282018381101561188b57fe5b8091505b5092915050565b6000828211156118a257fe5b508082035b92915050565b60006118f483602001518367ffffffffffffffff16856080015167ffffffffffffffff16866040015167ffffffffffffffff16876060015167ffffffffffffffff16611382565b90505b92915050565b60008167ffffffffffffffff168367ffffffffffffffff16101561192157816118f4565b825b90505b92915050565b60035460009060a860020a900460ff161561194657600080fd5b6118f48383611af8565b90505b5b92915050565b60006118f483610d72565b90505b92915050565b60006118f4836020015161198285856118ad565b611896565b90505b92915050565b600081831061192157816118f4565b825b90505b92915050565b60008282028315806119c657508284828115156119c357fe5b04145b151561188b57fe5b8091505b5092915050565b60008082848115156119e757fe5b0490508091505b5092915050565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190611a36908461187c565b600160a060020a038086166000908152600160205260408082209390935590871681522054611a659084611896565b600160a060020a038616600090815260016020526040902055611a888184611896565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b600160a060020a033316600090815260016020526040812054611b1b9083611896565b600160a060020a033381166000908152600160205260408082209390935590851681522054611b4a908361187c565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b815481835581811511611bd857600302816003028360005260206000209182019101611bd89190611c10565b5b505050565b815481835581811511611bd857600302816003028360005260206000209182019101611bd89190611c10565b5b505050565b610e1491905b80821115611c6d57805473ffffffffffffffffffffffffffffffffffffffff191681556000600182015560028101805479ffffffffffffffffffffffffffffffffffffffffffffffffffff19169055600301611c16565b5090565b905600a165627a7a72305820361b64afdbc02f2ca88e8f9808bc2324e6d54477b585077cbccaa02778d1a2660029
Deployed Bytecode
0x606060405236156101515763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302a72a4c811461015657806305d2035b1461018757806306fdde03146101ae578063095ea7b31461023957806318160ddd1461026f57806323b872dd146102945780632c71e60a146102d0578063313ce5671461034b5780633f4ba83a1461037057806340c10f191461038557806342966c68146103bb5780635c975abb146103d3578063600e85b7146103fa5780636c182e991461047b57806370a08231146104b75780637d64bcb4146104e85780638456cb591461050f5780638da5cb5b1461052457806395d89b41146105535780639754a4d9146105de578063a9059cbb14610625578063d347c2051461065b578063dd62ed3e14610699578063df3c211b146106d0578063eb944e4c14610704578063f2fde38b14610728575b600080fd5b341561016157600080fd5b610175600160a060020a0360043516610749565b60405190815260200160405180910390f35b341561019257600080fd5b61019a610768565b604051901515815260200160405180910390f35b34156101b957600080fd5b6101c1610789565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fe5780820151818401525b6020016101e5565b50505050905090810190601f16801561022b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024457600080fd5b61019a600160a060020a0360043516602435610827565b604051901515815260200160405180910390f35b341561027a57600080fd5b6101756108ce565b60405190815260200160405180910390f35b341561029f57600080fd5b61019a600160a060020a03600435811690602435166044356108d4565b604051901515815260200160405180910390f35b34156102db57600080fd5b6102f2600160a060020a0360043516602435610906565b604051600160a060020a039097168752602087019590955267ffffffffffffffff93841660408088019190915292841660608701529216608085015290151560a084015290151560c083015260e0909101905180910390f35b341561035657600080fd5b61017561098c565b60405190815260200160405180910390f35b341561037b57600080fd5b610383610992565b005b341561039057600080fd5b61019a600160a060020a0360043516602435610a15565b604051901515815260200160405180910390f35b34156103c657600080fd5b610383600435610aea565b005b34156103de57600080fd5b61019a610b83565b604051901515815260200160405180910390f35b341561040557600080fd5b61041c600160a060020a0360043516602435610b93565b604051600160a060020a039098168852602088019690965260408088019590955267ffffffffffffffff9384166060880152918316608087015290911660a0850152151560c084015290151560e0830152610100909101905180910390f35b341561048657600080fd5b61049a600160a060020a0360043516610ce0565b60405167ffffffffffffffff909116815260200160405180910390f35b34156104c257600080fd5b610175600160a060020a0360043516610d72565b60405190815260200160405180910390f35b34156104f357600080fd5b61019a610d91565b604051901515815260200160405180910390f35b341561051a57600080fd5b610383610e18565b005b341561052f57600080fd5b610537610ea0565b604051600160a060020a03909116815260200160405180910390f35b341561055e57600080fd5b6101c1610eaf565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101fe5780820151818401525b6020016101e5565b50505050905090810190601f16801561022b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105e957600080fd5b610383600160a060020a036004351660243567ffffffffffffffff6044358116906064358116906084351660a435151560c4351515610f4d565b005b341561063057600080fd5b61019a600160a060020a03600435166024356111d8565b604051901515815260200160405180910390f35b341561066657600080fd5b610175600160a060020a036004351667ffffffffffffffff60243516611208565b60405190815260200160405180910390f35b34156106a457600080fd5b610175600160a060020a0360043581169060243516611355565b60405190815260200160405180910390f35b34156106db57600080fd5b610175600435602435604435606435608435611382565b60405190815260200160405180910390f35b341561070f57600080fd5b610383600160a060020a03600435166024356113da565b005b341561073357600080fd5b610383600160a060020a03600435166117ef565b005b600160a060020a0381166000908152600560205260409020545b919050565b60035474010000000000000000000000000000000000000000900460ff1681565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b505050505081565b60008115806108595750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561086457600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005481565b600083826108e28242611208565b8111156108ee57600080fd5b6108f986868661184c565b92505b5b50509392505050565b60056020528160005260406000208181548110151561092157fe5b906000526020600020906003020160005b5080546001820154600290920154600160a060020a03909116935090915067ffffffffffffffff80821691680100000000000000008104821691608060020a8204169060ff60c060020a820481169160c860020a90041687565b60085481565b60035433600160a060020a039081169116146109ad57600080fd5b60035460a860020a900460ff1615156109c557600080fd5b6003805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60035460009033600160a060020a03908116911614610a3357600080fd5b60035474010000000000000000000000000000000000000000900460ff1615610a5b57600080fd5b610a676000548361187c565b6000908155600160a060020a038416815260016020526040902054610a8c908361187c565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a25060015b5b5b92915050565b6000808211610af857600080fd5b5033600160a060020a038116600090815260016020526040902054610b1d9083611896565b600160a060020a03821660009081526001602052604081209190915554610b449083611896565b60005581600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca560405160405180910390a35b5050565b60035460a860020a900460ff1681565b6000806000806000806000806000600560008c600160a060020a0316600160a060020a031681526020019081526020016000208a815481101515610bd357fe5b906000526020600020906003020160005b50805460018201546002830154600160a060020a039092169b50995067ffffffffffffffff608060020a820481169850808216975068010000000000000000820416955060ff60c060020a82048116955060c860020a9091041692509050610ccf8160e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c0820152426118ad565b96505b509295985092959890939650565b600160a060020a03811660009081526005602052604081205442915b81811015610d6a57600160a060020a03841660009081526005602052604090208054610d5f919083908110610d2d57fe5b906000526020600020906003020160005b506002015468010000000000000000900467ffffffffffffffff16846118fd565b92505b600101610cfc565b5b5050919050565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a03908116911614610daf57600080fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b5b90565b60035433600160a060020a03908116911614610e3357600080fd5b60035460a860020a900460ff1615610e4a57600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b600354600160a060020a031681565b60078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b505050505081565b60008567ffffffffffffffff168567ffffffffffffffff1610158015610f8757508467ffffffffffffffff168467ffffffffffffffff1610155b1515610f9257600080fd5b600454610f9e89610749565b10610fa857600080fd5b600160a060020a0388166000908152600560205260409020805460018101610fd08382611bac565b916000526020600020906003020160005b60e06040519081016040528087610ff9576000610ffb565b335b600160a060020a03168152602081018c905267ffffffffffffffff808b16604083015289811660608301528b16608082015287151560a082015286151560c0909101529190508151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039190911617815560208201518160010155604082015160028201805467ffffffffffffffff191667ffffffffffffffff9290921691909117905560608201518160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060808201518160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a082015160028201805491151560c060020a0278ff0000000000000000000000000000000000000000000000001990921691909117905560c08201516002909101805491151560c860020a0279ff000000000000000000000000000000000000000000000000001990921691909117905550905061117b88886111d8565b5087600160a060020a031633600160a060020a03167ff9565aecd648a0466ffb964a79eeccdf1120ad6276189c687a6e9fe73984d9bb896001850360405191825260208201526040908101905180910390a35b5050505050505050565b600033826111e68242611208565b8111156111f257600080fd5b6111fc858561192c565b92505b5b505092915050565b600080600080600061121987610749565b93508315156112335761122c878761195a565b945061134b565b60009250600091505b8382101561132157600160a060020a0387166000908152600560205260409020805461131391859161130e91908690811061127357fe5b906000526020600020906003020160005b5060e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c08201528961196e565b61187c565b92505b60019091019061123c565b61133361132d88610d72565b84611896565b905061134881611343898961195a565b611990565b94505b5050505092915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b6000808386101561139657600091506113d0565b8286106113a5578691506113d0565b6113ca6113bb886113b68989611896565b6119aa565b6113c58588611896565b6119d9565b90508091505b5095945050505050565b600160a060020a03821660009081526005602052604081208054829182918590811061140257fe5b906000526020600020906003020160005b50600281015490935060c060020a900460ff16151561143157600080fd5b825433600160a060020a0390811691161461144b57600080fd5b600283015460c860020a900460ff166114645733611468565b61dead5b91506114f78360e060405190810160409081528254600160a060020a031682526001830154602083015260029092015467ffffffffffffffff8082169383019390935268010000000000000000810483166060830152608060020a8104909216608082015260ff60c060020a83048116151560a083015260c860020a909204909116151560c08201524261196e565b600160a060020a03861660009081526005602052604090208054919250908590811061151f57fe5b906000526020600020906003020160005b50805473ffffffffffffffffffffffffffffffffffffffff19168155600060018083018290556002909201805479ffffffffffffffffffffffffffffffffffffffffffffffffffff19169055600160a060020a03871681526005602052604090208054909161159f9190611896565b815481106115a957fe5b906000526020600020906003020160005b50600160a060020a03861660009081526005602052604090208054869081106115df57fe5b906000526020600020906003020160005b508154815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03918216178255600180840154908301556002928301805493909201805467ffffffffffffffff191667ffffffffffffffff94851617808255835468010000000000000000908190048616026fffffffffffffffff000000000000000019909116178082558354608060020a9081900490951690940277ffffffffffffffff000000000000000000000000000000001990941693909317808455825460ff60c060020a918290048116151590910278ff0000000000000000000000000000000000000000000000001990921691909117808555925460c860020a9081900490911615150279ff000000000000000000000000000000000000000000000000001990921691909117909155851660009081526005602052604090208054600019019061173e9082611bac565b50600160a060020a038216600090815260016020526040902054611762908261187c565b600160a060020a0380841660009081526001602052604080822093909355908716815220546117919082611896565b600160a060020a038087166000818152600160205260409081902093909355908416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050505050565b60035433600160a060020a0390811691161461180a57600080fd5b600160a060020a038116151561181f57600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60035460009060a860020a900460ff161561186657600080fd5b6118718484846119f5565b90505b5b9392505050565b60008282018381101561188b57fe5b8091505b5092915050565b6000828211156118a257fe5b508082035b92915050565b60006118f483602001518367ffffffffffffffff16856080015167ffffffffffffffff16866040015167ffffffffffffffff16876060015167ffffffffffffffff16611382565b90505b92915050565b60008167ffffffffffffffff168367ffffffffffffffff16101561192157816118f4565b825b90505b92915050565b60035460009060a860020a900460ff161561194657600080fd5b6118f48383611af8565b90505b5b92915050565b60006118f483610d72565b90505b92915050565b60006118f4836020015161198285856118ad565b611896565b90505b92915050565b600081831061192157816118f4565b825b90505b92915050565b60008282028315806119c657508284828115156119c357fe5b04145b151561188b57fe5b8091505b5092915050565b60008082848115156119e757fe5b0490508091505b5092915050565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190611a36908461187c565b600160a060020a038086166000908152600160205260408082209390935590871681522054611a659084611896565b600160a060020a038616600090815260016020526040902055611a888184611896565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b600160a060020a033316600090815260016020526040812054611b1b9083611896565b600160a060020a033381166000908152600160205260408082209390935590851681522054611b4a908361187c565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b815481835581811511611bd857600302816003028360005260206000209182019101611bd89190611c10565b5b505050565b815481835581811511611bd857600302816003028360005260206000209182019101611bd89190611c10565b5b505050565b610e1491905b80821115611c6d57805473ffffffffffffffffffffffffffffffffffffffff191681556000600182015560028101805479ffffffffffffffffffffffffffffffffffffffffffffffffffff19169055600301611c16565b5090565b905600a165627a7a72305820361b64afdbc02f2ca88e8f9808bc2324e6d54477b585077cbccaa02778d1a2660029
Swarm Source
bzzr://361b64afdbc02f2ca88e8f9808bc2324e6d54477b585077cbccaa02778d1a266
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.