Token migration announcement. Noku token contract has migrated to a new address.
ERC-20
Old Contract
Overview
Max Total Supply
99,999,976.00209099398700427 NOKU
Holders
1,446 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6 NOKUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NokuMasterToken
Compiler Version
v0.4.13+commit.fb4cb1a
Optimization Enabled:
Yes with 0 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-04-09 */ pragma solidity 0.4.13; contract Burnable { event LogBurned(address indexed burner, uint256 indexed amount); function burn(uint256 amount) returns (bool burned); } contract Mintable { function mint(address to, uint256 amount) returns (bool minted); function mintLocked(address to, uint256 amount) returns (bool minted); } /** * @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) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { function safeTransfer(ERC20Basic token, address to, uint256 value) internal { assert(token.transfer(to, value)); } function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal { assert(token.transferFrom(from, to, value)); } function safeApprove(ERC20 token, address spender, uint256 value) internal { assert(token.approve(spender, value)); } } /** * @title TokenTimelock * @dev TokenTimelock is a token holder contract that will allow a * beneficiary to extract the tokens after a given release time */ contract TokenTimelock { using SafeERC20 for ERC20Basic; // ERC20 basic token contract being held ERC20Basic public token; // beneficiary of tokens after they are released address public beneficiary; // timestamp when token release is enabled uint256 public releaseTime; function TokenTimelock(ERC20Basic _token, address _beneficiary, uint256 _releaseTime) { //require(_token != address(0)); //require(_beneficiary != address(0)); require(_releaseTime > now); token = _token; beneficiary = _beneficiary; releaseTime = _releaseTime; } /** * @notice Transfers tokens held by timelock to beneficiary. */ function release() public { require(now >= releaseTime); uint256 amount = token.balanceOf(this); require(amount > 0); token.safeTransfer(beneficiary, amount); } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ 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; } } /** * @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; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @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 public { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a typical vesting * scheme, with a cliff and vesting period. Optionally revocable by the owner. */ contract TokenVesting is Ownable { using SafeMath for uint256; using SafeERC20 for ERC20Basic; event LogVestingCreated(address indexed beneficiary, uint256 startTime, uint256 indexed cliff, uint256 indexed duration, bool revocable); event LogVestedTokensReleased(address indexed token, uint256 indexed released); event LogVestingRevoked(address indexed token, uint256 indexed refunded); // Beneficiary of tokens after they are released address public beneficiary; // The duration in seconds of the cliff in which tokens will begin to vest uint256 public cliff; // When the vesting starts as timestamp in seconds from Unix epoch uint256 public startTime; // The duration in seconds of the period in which the tokens will vest uint256 public duration; // Flag indicating whether the vesting is revocable or not bool public revocable; mapping (address => uint256) public released; mapping (address => bool) public revoked; /** * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * _beneficiary, gradually in a linear fashion until _startTime + _duration. By then all * of the balance will have vested. * @param _beneficiary The address of the beneficiary to whom vested tokens are transferred * @param _startTime When the vesting starts as timestamp in seconds from Unix epoch * @param _cliff The duration in seconds of the cliff in which tokens will begin to vest * @param _duration The duration in seconds of the period in which the tokens will vest * @param _revocable Flag indicating whether the vesting is revocable or not */ function TokenVesting(address _beneficiary, uint256 _startTime, uint256 _cliff, uint256 _duration, bool _revocable) public { require(_beneficiary != address(0)); require(_startTime >= now); require(_duration > 0); require(_cliff <= _duration); beneficiary = _beneficiary; startTime = _startTime; cliff = _startTime.add(_cliff); duration = _duration; revocable = _revocable; LogVestingCreated(beneficiary, startTime, cliff, duration, revocable); } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(ERC20Basic token) public { uint256 unreleased = releasableAmount(token); require(unreleased > 0); released[token] = released[token].add(unreleased); token.safeTransfer(beneficiary, unreleased); LogVestedTokensReleased(address(token), unreleased); } /** * @notice Allows the owner to revoke the vesting. Tokens already vested * remain in the contract, the rest are returned to the owner. * @param token ERC20 token which is being vested */ function revoke(ERC20Basic token) public onlyOwner { require(revocable); require(!revoked[token]); uint256 balance = token.balanceOf(this); uint256 unreleased = releasableAmount(token); uint256 refundable = balance.sub(unreleased); revoked[token] = true; token.safeTransfer(owner, refundable); LogVestingRevoked(address(token), refundable); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function releasableAmount(ERC20Basic token) public constant returns (uint256) { return vestedAmount(token).sub(released[token]); } /** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function vestedAmount(ERC20Basic token) public constant returns (uint256) { uint256 currentBalance = token.balanceOf(this); uint256 totalBalance = currentBalance.add(released[token]); if (now < cliff) { return 0; } else if (now >= startTime.add(duration) || revoked[token]) { return totalBalance; } else { return totalBalance.mul(now.sub(startTime)).div(duration); } } } /** * @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 make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; 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, uint256 _value) public returns (bool) { require(_to != address(0)); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_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 uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } } /** * @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 amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); uint256 _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[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { 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 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } /** * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol */ function increaseApproval (address _spender, uint _addedValue) returns (bool success) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval (address _spender, uint _subtractedValue) returns (bool success) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Pausable token * * @dev StandardToken modified with pausable transfers. **/ contract PausableToken is StandardToken, Pausable { function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) { return super.approve(_spender, _value); } function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } } contract AdaptableToken is Burnable, Mintable, PausableToken { uint256 public transferableFromBlock; uint256 public lockEndBlock; mapping (address => uint256) public initiallyLockedAmount; function AdaptableToken(uint256 _transferableFromBlock, uint256 _lockEndBlock) internal { require(_lockEndBlock > _transferableFromBlock); transferableFromBlock = _transferableFromBlock; lockEndBlock = _lockEndBlock; } modifier canTransfer(address _from, uint _value) { require(block.number >= transferableFromBlock); if (block.number < lockEndBlock) { uint256 locked = lockedBalanceOf(_from); if (locked > 0) { uint256 newBalance = balanceOf(_from).sub(_value); require(newBalance >= locked); } } _; } function lockedBalanceOf(address _to) public constant returns(uint256) { uint256 locked = initiallyLockedAmount[_to]; if (block.number >= lockEndBlock) return 0; else if (block.number <= transferableFromBlock) return locked; uint256 releaseForBlock = locked.div(lockEndBlock.sub(transferableFromBlock)); uint256 released = block.number.sub(transferableFromBlock).mul(releaseForBlock); return locked.sub(released); } function transfer(address _to, uint _value) canTransfer(msg.sender, _value) public returns (bool) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint _value) canTransfer(_from, _value) public returns (bool) { return super.transferFrom(_from, _to, _value); } modifier canMint() { require(!mintingFinished()); _; } function mintingFinished() public constant returns(bool finished) { return block.number >= transferableFromBlock; } /** * @dev Mint new tokens. * @param _to The address that will receieve 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) public onlyOwner canMint returns (bool minted) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Transfer(address(0), _to, _amount); return true; } /** * @dev Mint new locked tokens, which will unlock progressively. * @param _to The address that will receieve the minted locked tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mintLocked(address _to, uint256 _amount) public onlyOwner canMint returns (bool minted) { initiallyLockedAmount[_to] = initiallyLockedAmount[_to].add(_amount); return mint(_to, _amount); } /** * @dev Mint timelocked tokens. * @param _to The address that will receieve the minted locked tokens. * @param _amount The amount of tokens to mint. * @param _releaseTime The token release time as timestamp from Unix epoch. * @return A boolean that indicates if the operation was successful. */ function mintTimelocked(address _to, uint256 _amount, uint256 _releaseTime) public onlyOwner canMint returns (TokenTimelock tokenTimelock) { TokenTimelock timelock = new TokenTimelock(this, _to, _releaseTime); mint(timelock, _amount); return timelock; } /** * @dev Mint vested tokens. * @param _to The address that will receieve the minted vested tokens. * @param _amount The amount of tokens to mint. * @param _startTime When the vesting starts as timestamp in seconds from Unix epoch. * @param _duration The duration in seconds of the period in which the tokens will vest. * @return A boolean that indicates if the operation was successful. */ function mintVested(address _to, uint256 _amount, uint256 _startTime, uint256 _duration) public onlyOwner canMint returns (TokenVesting tokenVesting) { TokenVesting vesting = new TokenVesting(_to, _startTime, 0, _duration, true); mint(vesting, _amount); return vesting; } /** * @dev Burn tokens. * @param _amount The amount of tokens to burn. * @return A boolean that indicates if the operation was successful. */ function burn(uint256 _amount) public returns (bool burned) { //require(0 < _amount && _amount <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_amount); totalSupply = totalSupply.sub(_amount); Transfer(msg.sender, address(0), _amount); return true; } /** * @dev Release vested tokens to beneficiary. * @param _vesting The token vesting to release. */ function releaseVested(TokenVesting _vesting) public { require(_vesting != address(0)); _vesting.release(this); } /** * @dev Revoke vested tokens. Just the token can revoke because it is the vesting owner. * @param _vesting The token vesting to revoke. */ function revokeVested(TokenVesting _vesting) public onlyOwner { require(_vesting != address(0)); _vesting.revoke(this); } } contract NokuMasterToken is AdaptableToken { string public constant name = "NOKU"; string public constant symbol = "NOKU"; uint8 public constant decimals = 18; function NokuMasterToken(uint256 _transferableFromBlock, uint256 _lockEndBlock) AdaptableToken(_transferableFromBlock, _lockEndBlock) public { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"finished","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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_duration","type":"uint256"}],"name":"mintVested","outputs":[{"name":"tokenVesting","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_vesting","type":"address"}],"name":"releaseVested","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"minted","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"burn","outputs":[{"name":"burned","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mintLocked","outputs":[{"name":"minted","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_to","type":"address"}],"name":"lockedBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"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":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"lockEndBlock","outputs":[{"name":"","type":"uint256"}],"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":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_vesting","type":"address"}],"name":"revokeVested","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_releaseTime","type":"uint256"}],"name":"mintTimelocked","outputs":[{"name":"tokenTimelock","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transferableFromBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","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":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"initiallyLockedAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_transferableFromBlock","type":"uint256"},{"name":"_lockEndBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":true,"name":"amount","type":"uint256"}],"name":"LogBurned","type":"event"}]
Contract Creation Code
60606040526003805460a060020a60ff0219169055341561001f57600080fd5b60405160408061231e83398101604052808051919060200180519150505b81815b5b60038054600160a060020a03191633600160a060020a03161790555b81811161006957600080fd5b600482905560058190555b50505b50505b612295806100896000396000f300606060405236156200016b5763ffffffff60e060020a60003504166305d2035b81146200017057806306fdde03146200019a578063095ea7b3146200022b57806318160ddd146200026457806323b872dd146200028c578063313ce56714620002cb57806339e613d914620002f75780633f4ba83a146200033e5780634069925a146200035657806340c10f19146200037a57806342966c6814620003b35780635143e24614620003e05780635935573614620004195780635c975abb146200044d57806366188463146200047757806370a0823114620004b05780638456cb5914620004e45780638587edbb14620004fc5780638da5cb5b146200052457806395d89b41146200019a578063a9059cbb14620005e7578063b8eeb6601462000620578063c14a3b8c1462000644578063c78b200c1462000688578063d73dd62314620006b0578063dd62ed3e14620006e9578063f2fde38b1462000723578063f559468c1462000747575b600080fd5b34156200017c57600080fd5b620001866200077b565b604051901515815260200160405180910390f35b3415620001a657600080fd5b620001b062000785565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015620001ef5780820151818401525b602001620001d4565b50505050905090810190601f1680156200021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156200023757600080fd5b62000186600160a060020a0360043516602435620007a6565b604051901515815260200160405180910390f35b34156200027057600080fd5b6200027a620007d7565b60405190815260200160405180910390f35b34156200029857600080fd5b62000186600160a060020a0360043581169060243516604435620007dd565b604051901515815260200160405180910390f35b3415620002d757600080fd5b620002e162000863565b60405160ff909116815260200160405180910390f35b34156200030357600080fd5b62000322600160a060020a036004351660243560443560643562000868565b604051600160a060020a03909116815260200160405180910390f35b34156200034a57600080fd5b6200035462000913565b005b34156200036257600080fd5b62000354600160a060020a036004351662000989565b005b34156200038657600080fd5b62000186600160a060020a036004351660243562000a07565b604051901515815260200160405180910390f35b3415620003bf57600080fd5b6200018660043562000aca565b604051901515815260200160405180910390f35b3415620003ec57600080fd5b62000186600160a060020a036004351660243562000b5e565b604051901515815260200160405180910390f35b34156200042557600080fd5b6200027a600160a060020a036004351662000bed565b60405190815260200160405180910390f35b34156200045957600080fd5b6200018662000ca7565b604051901515815260200160405180910390f35b34156200048357600080fd5b62000186600160a060020a036004351660243562000cb7565b604051901515815260200160405180910390f35b3415620004bc57600080fd5b6200027a600160a060020a036004351662000ce8565b60405190815260200160405180910390f35b3415620004f057600080fd5b6200035462000d07565b005b34156200050857600080fd5b6200027a62000d82565b60405190815260200160405180910390f35b34156200053057600080fd5b6200032262000d88565b604051600160a060020a03909116815260200160405180910390f35b3415620001a657600080fd5b620001b062000785565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015620001ef5780820151818401525b602001620001d4565b50505050905090810190601f1680156200021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3415620005f357600080fd5b62000186600160a060020a036004351660243562000db8565b604051901515815260200160405180910390f35b34156200062c57600080fd5b62000354600160a060020a036004351662000e3c565b005b34156200065057600080fd5b62000322600160a060020a036004351660243560443562000ed7565b604051600160a060020a03909116815260200160405180910390f35b34156200069457600080fd5b6200027a62000f6f565b60405190815260200160405180910390f35b3415620006bc57600080fd5b62000186600160a060020a036004351660243562000f75565b604051901515815260200160405180910390f35b3415620006f557600080fd5b6200027a600160a060020a036004358116906024351662000fa6565b60405190815260200160405180910390f35b34156200072f57600080fd5b62000354600160a060020a036004351662000fd3565b005b34156200075357600080fd5b6200027a600160a060020a036004351662001061565b60405190815260200160405180910390f35b6004544310155b90565b604080519081016040526004815260e060020a634e4f4b5502602082015281565b60035460009060a060020a900460ff1615620007c157600080fd5b620007cd838362001073565b90505b5b92915050565b60005481565b600083826000806004544310151515620007f657600080fd5b60055443101562000845576200080c8462000bed565b9150600082111562000845576200083583620008288662000ce8565b9063ffffffff620010cf16565b9050818110156200084557600080fd5b5b5b62000854888888620010e7565b94505b5b505050509392505050565b601281565b600354600090819033600160a060020a039081169116146200088957600080fd5b620008936200077b565b156200089e57600080fd5b85846000856001620008af62001527565b600160a060020a03909516855260208501939093526040808501929092526060840152901515608083015260a09091019051809103906000f0801515620008f557600080fd5b905062000903818662000a07565b508091505b5b5b50949350505050565b60035433600160a060020a039081169116146200092f57600080fd5b60035460a060020a900460ff1615156200094857600080fd5b6003805460a060020a60ff02191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b600160a060020a03811615156200099f57600080fd5b80600160a060020a031663191655873060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b1515620009ee57600080fd5b6102c65a03f1151562000a0057600080fd5b5050505b50565b60035460009033600160a060020a0390811691161462000a2657600080fd5b62000a306200077b565b1562000a3b57600080fd5b60005462000a50908363ffffffff6200111a16565b6000908155600160a060020a03841681526001602052604090205462000a7d908363ffffffff6200111a16565b600160a060020a0384166000818152600160205260408082209390935590916000805160206200222a8339815191529085905190815260200160405180910390a35060015b5b5b92915050565b600160a060020a03331660009081526001602052604081205462000af5908363ffffffff620010cf16565b600160a060020a0333166000908152600160205260408120919091555462000b24908363ffffffff620010cf16565b600090815533600160a060020a03166000805160206200222a8339815191528460405190815260200160405180910390a35060015b919050565b60035460009033600160a060020a0390811691161462000b7d57600080fd5b62000b876200077b565b1562000b9257600080fd5b600160a060020a03831660009081526006602052604090205462000bbd908363ffffffff6200111a16565b600160a060020a038416600090815260066020526040902055620007cd838362000a07565b90505b5b5b92915050565b600160a060020a03811660009081526006602052604081205460055482908190431062000c1e576000935062000c9f565b600454431162000c315782935062000c9f565b5b62000c5d62000c4f600454600554620010cf90919063ffffffff16565b849063ffffffff6200113516565b915062000c888262000c7b60045443620010cf90919063ffffffff16565b9063ffffffff6200115216565b905062000c9c838263ffffffff620010cf16565b93505b505050919050565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161562000cd257600080fd5b620007cd838362001184565b90505b5b92915050565b600160a060020a0381166000908152600160205260409020545b919050565b60035433600160a060020a0390811691161462000d2357600080fd5b60035460a060020a900460ff161562000d3b57600080fd5b6003805460a060020a60ff02191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b60055481565b600354600160a060020a031681565b604080519081016040526004815260e060020a634e4f4b5502602082015281565b60003382600080600454431015151562000dd157600080fd5b60055443101562000e205762000de78462000bed565b9150600082111562000e205762000e1083620008288662000ce8565b9063ffffffff620010cf16565b90508181101562000e2057600080fd5b5b5b62000e2e878762001273565b94505b5b5050505092915050565b60035433600160a060020a0390811691161462000e5857600080fd5b600160a060020a038116151562000e6e57600080fd5b80600160a060020a03166374a8f1033060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b1515620009ee57600080fd5b6102c65a03f1151562000a0057600080fd5b5050505b5b50565b600354600090819033600160a060020a0390811691161462000ef857600080fd5b62000f026200077b565b1562000f0d57600080fd5b30858462000f1a62001538565b600160a060020a0393841681529190921660208201526040808201929092526060019051809103906000f080151562000f5257600080fd5b905062000f60818562000a07565b508091505b5b5b509392505050565b60045481565b60035460009060a060020a900460ff161562000f9057600080fd5b620007cd8383620012a4565b90505b5b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a0390811691161462000fef57600080fd5b600160a060020a03811615156200100557600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360038054600160a060020a031916600160a060020a0383161790555b5b50565b60066020526000908152604090205481565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291906000805160206200224a8339815191529085905190815260200160405180910390a35060015b92915050565b600082821115620010dc57fe5b508082035b92915050565b60035460009060a060020a900460ff16156200110257600080fd5b6200110f8484846200133a565b90505b5b9392505050565b6000828201838110156200112a57fe5b8091505b5092915050565b60008082848115156200114457fe5b0490508091505b5092915050565b60008282028315806200117057508284828115156200116d57fe5b04145b15156200112a57fe5b8091505b5092915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115620011e357600160a060020a0333811660009081526002602090815260408083209388168352929052908120556200121c565b620011f5818463ffffffff620010cf16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020546000805160206200224a833981519152915190815260200160405180910390a3600191505b5092915050565b60035460009060a060020a900460ff16156200128e57600080fd5b620007cd83836200145c565b90505b5b92915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054620012de908363ffffffff6200111a16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290916000805160206200224a83398151915291905190815260200160405180910390a35060015b92915050565b600080600160a060020a03841615156200135357600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546200139b908463ffffffff620010cf16565b600160a060020a038087166000908152600160205260408082209390935590861681522054620013d2908463ffffffff6200111a16565b600160a060020a038516600090815260016020526040902055620013fd818463ffffffff620010cf16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616916000805160206200222a8339815191529086905190815260200160405180910390a3600191505b509392505050565b6000600160a060020a03831615156200147457600080fd5b600160a060020a0333166000908152600160205260409020546200149f908363ffffffff620010cf16565b600160a060020a033381166000908152600160205260408082209390935590851681522054620014d6908363ffffffff6200111a16565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206200222a8339815191529085905190815260200160405180910390a35060015b92915050565b6040516109e7806200154a83390190565b6040516102f98062001f318339019056006060604052341561000f57600080fd5b60405160a0806109e783398101604052808051919060200180519190602001805191906020018051919060200180519150505b5b60008054600160a060020a03191633600160a060020a03161790555b600160a060020a038516151561007457600080fd5b4284101561008157600080fd5b6000821161008e57600080fd5b8183111561009b57600080fd5b60018054600160a060020a031916600160a060020a03871617905560038490556100d2848464010000000061014b810261075c1704565b600281905560048390556005805460ff19168315151790819055600154600354859392600160a060020a03909216917ff57e0a7a87565bf66d5d7a9c145ba21624dcce4fc47828b552b3910370fcd88a919060ff16604051918252151560208201526040908101905180910390a45b5050505050610165565b60008282018381101561015a57fe5b8091505b5092915050565b610873806101746000396000f300606060405236156100a95763ffffffff60e060020a6000350416630fb5a6b481146100ae57806313d033c0146100d35780631726cbc8146100f85780631916558714610129578063384711cc1461014a57806338af3eed1461017b57806374a8f103146101aa57806378e97925146101cb578063872a7810146101f05780638da5cb5b146102175780639852595c14610246578063f2fde38b14610277578063fa01dc0614610298575b600080fd5b34156100b957600080fd5b6100c16102cb565b60405190815260200160405180910390f35b34156100de57600080fd5b6100c16102d1565b60405190815260200160405180910390f35b341561010357600080fd5b6100c1600160a060020a03600435166102d7565b60405190815260200160405180910390f35b341561013457600080fd5b610148600160a060020a0360043516610311565b005b341561015557600080fd5b6100c1600160a060020a03600435166103c2565b60405190815260200160405180910390f35b341561018657600080fd5b61018e610505565b604051600160a060020a03909116815260200160405180910390f35b34156101b557600080fd5b610148600160a060020a0360043516610514565b005b34156101d657600080fd5b6100c1610674565b60405190815260200160405180910390f35b34156101fb57600080fd5b61020361067a565b604051901515815260200160405180910390f35b341561022257600080fd5b61018e610683565b604051600160a060020a03909116815260200160405180910390f35b341561025157600080fd5b6100c1600160a060020a0360043516610692565b60405190815260200160405180910390f35b341561028257600080fd5b610148600160a060020a03600435166106a4565b005b34156102a357600080fd5b610203600160a060020a0360043516610730565b604051901515815260200160405180910390f35b60045481565b60025481565b600160a060020a038116600090815260066020526040812054610309906102fd846103c2565b9063ffffffff61074516565b90505b919050565b600061031c826102d7565b90506000811161032b57600080fd5b600160a060020a038216600090815260066020526040902054610354908263ffffffff61075c16565b600160a060020a038084166000818152600660205260409020929092556001546103869291168363ffffffff61077616565b8082600160a060020a03167fc59809262d5a30c230302eec1bdf982b62d1e8cb477facf281f8f0343bc081c460405160405180910390a35b5050565b600080600083600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561041e57600080fd5b6102c65a03f1151561042f57600080fd5b5050506040518051600160a060020a0386166000908152600660205260409020549093506104659150839063ffffffff61075c16565b905060025442101561047a57600092506104fc565b60045460035461048f9163ffffffff61075c16565b421015806104b55750600160a060020a03841660009081526007602052604090205460ff165b156104c2578092506104fc565b6104f96004546104ed6104e06003544261074590919063ffffffff16565b849063ffffffff6107fc16565b9063ffffffff61082b16565b92505b5b5b5050919050565b600154600160a060020a031681565b600080548190819033600160a060020a0390811691161461053457600080fd5b60055460ff16151561054557600080fd5b600160a060020a03841660009081526007602052604090205460ff161561056b57600080fd5b83600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b15156105c257600080fd5b6102c65a03f115156105d357600080fd5b5050506040518051905092506105e8846102d7565b91506105fa838363ffffffff61074516565b600160a060020a038086166000818152600760205260408120805460ff1916600117905554929350610635929091168363ffffffff61077616565b8084600160a060020a03167f49f9f5e483e60c8b0fb5f0a1e586dd006acde1a033b11e44cecd93090e571c1b60405160405180910390a35b5b50505050565b60035481565b60055460ff1681565b600054600160a060020a031681565b60066020526000908152604090205481565b60005433600160a060020a039081169116146106bf57600080fd5b600160a060020a03811615156106d457600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008054600160a060020a031916600160a060020a0383161790555b5b50565b60076020526000908152604090205460ff1681565b60008282111561075157fe5b508082035b92915050565b60008282018381101561076b57fe5b8091505b5092915050565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156107d357600080fd5b6102c65a03f115156107e457600080fd5b5050506040518051905015156107f657fe5b5b505050565b6000828202831580610818575082848281151561081557fe5b04145b151561076b57fe5b8091505b5092915050565b600080828481151561083957fe5b0490508091505b50929150505600a165627a7a723058200111152d0a8d9911893d96c878d94db6af2454c223474323e3f8c8442a03d8f100296060604052341561000f57600080fd5b6040516060806102f98339810160405280805191906020018051919060200180519150505b42811161004057600080fd5b60008054600160a060020a03808616600160a060020a031992831617909255600180549285169290911691909117905560028190555b5050505b610270806100896000396000f300606060405263ffffffff60e060020a60003504166338af3eed811461004557806386d1a69f14610074578063b91d400114610089578063fc0c546a146100ae575b600080fd5b341561005057600080fd5b6100586100dd565b604051600160a060020a03909116815260200160405180910390f35b341561007f57600080fd5b6100876100ec565b005b341561009457600080fd5b61009c6101a9565b60405190815260200160405180910390f35b34156100b957600080fd5b6100586101af565b604051600160a060020a03909116815260200160405180910390f35b600154600160a060020a031681565b6002546000904210156100fe57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561015957600080fd5b6102c65a03f1151561016a57600080fd5b50505060405180519150506000811161018257600080fd5b6001546000546101a591600160a060020a0391821691168363ffffffff6101be16565b5b50565b60025481565b600054600160a060020a031681565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561021b57600080fd5b6102c65a03f1151561022c57600080fd5b50505060405180519050151561023e57fe5b5b5050505600a165627a7a72305820f24f29ef53cf3fb806f926d02c6bc8aa7660803f26053808e75f1bda5b08fc960029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a723058204c356406b0b2da61c04925a8bc5b845c6fd5acfe51cf776d659833d554a7df8d002900000000000000000000000000000000000000000000000000000000004b5bcd00000000000000000000000000000000000000000000000000000000006b704d
Deployed Bytecode
0x606060405236156200016b5763ffffffff60e060020a60003504166305d2035b81146200017057806306fdde03146200019a578063095ea7b3146200022b57806318160ddd146200026457806323b872dd146200028c578063313ce56714620002cb57806339e613d914620002f75780633f4ba83a146200033e5780634069925a146200035657806340c10f19146200037a57806342966c6814620003b35780635143e24614620003e05780635935573614620004195780635c975abb146200044d57806366188463146200047757806370a0823114620004b05780638456cb5914620004e45780638587edbb14620004fc5780638da5cb5b146200052457806395d89b41146200019a578063a9059cbb14620005e7578063b8eeb6601462000620578063c14a3b8c1462000644578063c78b200c1462000688578063d73dd62314620006b0578063dd62ed3e14620006e9578063f2fde38b1462000723578063f559468c1462000747575b600080fd5b34156200017c57600080fd5b620001866200077b565b604051901515815260200160405180910390f35b3415620001a657600080fd5b620001b062000785565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015620001ef5780820151818401525b602001620001d4565b50505050905090810190601f1680156200021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156200023757600080fd5b62000186600160a060020a0360043516602435620007a6565b604051901515815260200160405180910390f35b34156200027057600080fd5b6200027a620007d7565b60405190815260200160405180910390f35b34156200029857600080fd5b62000186600160a060020a0360043581169060243516604435620007dd565b604051901515815260200160405180910390f35b3415620002d757600080fd5b620002e162000863565b60405160ff909116815260200160405180910390f35b34156200030357600080fd5b62000322600160a060020a036004351660243560443560643562000868565b604051600160a060020a03909116815260200160405180910390f35b34156200034a57600080fd5b6200035462000913565b005b34156200036257600080fd5b62000354600160a060020a036004351662000989565b005b34156200038657600080fd5b62000186600160a060020a036004351660243562000a07565b604051901515815260200160405180910390f35b3415620003bf57600080fd5b6200018660043562000aca565b604051901515815260200160405180910390f35b3415620003ec57600080fd5b62000186600160a060020a036004351660243562000b5e565b604051901515815260200160405180910390f35b34156200042557600080fd5b6200027a600160a060020a036004351662000bed565b60405190815260200160405180910390f35b34156200045957600080fd5b6200018662000ca7565b604051901515815260200160405180910390f35b34156200048357600080fd5b62000186600160a060020a036004351660243562000cb7565b604051901515815260200160405180910390f35b3415620004bc57600080fd5b6200027a600160a060020a036004351662000ce8565b60405190815260200160405180910390f35b3415620004f057600080fd5b6200035462000d07565b005b34156200050857600080fd5b6200027a62000d82565b60405190815260200160405180910390f35b34156200053057600080fd5b6200032262000d88565b604051600160a060020a03909116815260200160405180910390f35b3415620001a657600080fd5b620001b062000785565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015620001ef5780820151818401525b602001620001d4565b50505050905090810190601f1680156200021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3415620005f357600080fd5b62000186600160a060020a036004351660243562000db8565b604051901515815260200160405180910390f35b34156200062c57600080fd5b62000354600160a060020a036004351662000e3c565b005b34156200065057600080fd5b62000322600160a060020a036004351660243560443562000ed7565b604051600160a060020a03909116815260200160405180910390f35b34156200069457600080fd5b6200027a62000f6f565b60405190815260200160405180910390f35b3415620006bc57600080fd5b62000186600160a060020a036004351660243562000f75565b604051901515815260200160405180910390f35b3415620006f557600080fd5b6200027a600160a060020a036004358116906024351662000fa6565b60405190815260200160405180910390f35b34156200072f57600080fd5b62000354600160a060020a036004351662000fd3565b005b34156200075357600080fd5b6200027a600160a060020a036004351662001061565b60405190815260200160405180910390f35b6004544310155b90565b604080519081016040526004815260e060020a634e4f4b5502602082015281565b60035460009060a060020a900460ff1615620007c157600080fd5b620007cd838362001073565b90505b5b92915050565b60005481565b600083826000806004544310151515620007f657600080fd5b60055443101562000845576200080c8462000bed565b9150600082111562000845576200083583620008288662000ce8565b9063ffffffff620010cf16565b9050818110156200084557600080fd5b5b5b62000854888888620010e7565b94505b5b505050509392505050565b601281565b600354600090819033600160a060020a039081169116146200088957600080fd5b620008936200077b565b156200089e57600080fd5b85846000856001620008af62001527565b600160a060020a03909516855260208501939093526040808501929092526060840152901515608083015260a09091019051809103906000f0801515620008f557600080fd5b905062000903818662000a07565b508091505b5b5b50949350505050565b60035433600160a060020a039081169116146200092f57600080fd5b60035460a060020a900460ff1615156200094857600080fd5b6003805460a060020a60ff02191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b600160a060020a03811615156200099f57600080fd5b80600160a060020a031663191655873060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b1515620009ee57600080fd5b6102c65a03f1151562000a0057600080fd5b5050505b50565b60035460009033600160a060020a0390811691161462000a2657600080fd5b62000a306200077b565b1562000a3b57600080fd5b60005462000a50908363ffffffff6200111a16565b6000908155600160a060020a03841681526001602052604090205462000a7d908363ffffffff6200111a16565b600160a060020a0384166000818152600160205260408082209390935590916000805160206200222a8339815191529085905190815260200160405180910390a35060015b5b5b92915050565b600160a060020a03331660009081526001602052604081205462000af5908363ffffffff620010cf16565b600160a060020a0333166000908152600160205260408120919091555462000b24908363ffffffff620010cf16565b600090815533600160a060020a03166000805160206200222a8339815191528460405190815260200160405180910390a35060015b919050565b60035460009033600160a060020a0390811691161462000b7d57600080fd5b62000b876200077b565b1562000b9257600080fd5b600160a060020a03831660009081526006602052604090205462000bbd908363ffffffff6200111a16565b600160a060020a038416600090815260066020526040902055620007cd838362000a07565b90505b5b5b92915050565b600160a060020a03811660009081526006602052604081205460055482908190431062000c1e576000935062000c9f565b600454431162000c315782935062000c9f565b5b62000c5d62000c4f600454600554620010cf90919063ffffffff16565b849063ffffffff6200113516565b915062000c888262000c7b60045443620010cf90919063ffffffff16565b9063ffffffff6200115216565b905062000c9c838263ffffffff620010cf16565b93505b505050919050565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161562000cd257600080fd5b620007cd838362001184565b90505b5b92915050565b600160a060020a0381166000908152600160205260409020545b919050565b60035433600160a060020a0390811691161462000d2357600080fd5b60035460a060020a900460ff161562000d3b57600080fd5b6003805460a060020a60ff02191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b60055481565b600354600160a060020a031681565b604080519081016040526004815260e060020a634e4f4b5502602082015281565b60003382600080600454431015151562000dd157600080fd5b60055443101562000e205762000de78462000bed565b9150600082111562000e205762000e1083620008288662000ce8565b9063ffffffff620010cf16565b90508181101562000e2057600080fd5b5b5b62000e2e878762001273565b94505b5b5050505092915050565b60035433600160a060020a0390811691161462000e5857600080fd5b600160a060020a038116151562000e6e57600080fd5b80600160a060020a03166374a8f1033060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b1515620009ee57600080fd5b6102c65a03f1151562000a0057600080fd5b5050505b5b50565b600354600090819033600160a060020a0390811691161462000ef857600080fd5b62000f026200077b565b1562000f0d57600080fd5b30858462000f1a62001538565b600160a060020a0393841681529190921660208201526040808201929092526060019051809103906000f080151562000f5257600080fd5b905062000f60818562000a07565b508091505b5b5b509392505050565b60045481565b60035460009060a060020a900460ff161562000f9057600080fd5b620007cd8383620012a4565b90505b5b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a0390811691161462000fef57600080fd5b600160a060020a03811615156200100557600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360038054600160a060020a031916600160a060020a0383161790555b5b50565b60066020526000908152604090205481565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291906000805160206200224a8339815191529085905190815260200160405180910390a35060015b92915050565b600082821115620010dc57fe5b508082035b92915050565b60035460009060a060020a900460ff16156200110257600080fd5b6200110f8484846200133a565b90505b5b9392505050565b6000828201838110156200112a57fe5b8091505b5092915050565b60008082848115156200114457fe5b0490508091505b5092915050565b60008282028315806200117057508284828115156200116d57fe5b04145b15156200112a57fe5b8091505b5092915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115620011e357600160a060020a0333811660009081526002602090815260408083209388168352929052908120556200121c565b620011f5818463ffffffff620010cf16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020546000805160206200224a833981519152915190815260200160405180910390a3600191505b5092915050565b60035460009060a060020a900460ff16156200128e57600080fd5b620007cd83836200145c565b90505b5b92915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054620012de908363ffffffff6200111a16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290916000805160206200224a83398151915291905190815260200160405180910390a35060015b92915050565b600080600160a060020a03841615156200135357600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546200139b908463ffffffff620010cf16565b600160a060020a038087166000908152600160205260408082209390935590861681522054620013d2908463ffffffff6200111a16565b600160a060020a038516600090815260016020526040902055620013fd818463ffffffff620010cf16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616916000805160206200222a8339815191529086905190815260200160405180910390a3600191505b509392505050565b6000600160a060020a03831615156200147457600080fd5b600160a060020a0333166000908152600160205260409020546200149f908363ffffffff620010cf16565b600160a060020a033381166000908152600160205260408082209390935590851681522054620014d6908363ffffffff6200111a16565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206200222a8339815191529085905190815260200160405180910390a35060015b92915050565b6040516109e7806200154a83390190565b6040516102f98062001f318339019056006060604052341561000f57600080fd5b60405160a0806109e783398101604052808051919060200180519190602001805191906020018051919060200180519150505b5b60008054600160a060020a03191633600160a060020a03161790555b600160a060020a038516151561007457600080fd5b4284101561008157600080fd5b6000821161008e57600080fd5b8183111561009b57600080fd5b60018054600160a060020a031916600160a060020a03871617905560038490556100d2848464010000000061014b810261075c1704565b600281905560048390556005805460ff19168315151790819055600154600354859392600160a060020a03909216917ff57e0a7a87565bf66d5d7a9c145ba21624dcce4fc47828b552b3910370fcd88a919060ff16604051918252151560208201526040908101905180910390a45b5050505050610165565b60008282018381101561015a57fe5b8091505b5092915050565b610873806101746000396000f300606060405236156100a95763ffffffff60e060020a6000350416630fb5a6b481146100ae57806313d033c0146100d35780631726cbc8146100f85780631916558714610129578063384711cc1461014a57806338af3eed1461017b57806374a8f103146101aa57806378e97925146101cb578063872a7810146101f05780638da5cb5b146102175780639852595c14610246578063f2fde38b14610277578063fa01dc0614610298575b600080fd5b34156100b957600080fd5b6100c16102cb565b60405190815260200160405180910390f35b34156100de57600080fd5b6100c16102d1565b60405190815260200160405180910390f35b341561010357600080fd5b6100c1600160a060020a03600435166102d7565b60405190815260200160405180910390f35b341561013457600080fd5b610148600160a060020a0360043516610311565b005b341561015557600080fd5b6100c1600160a060020a03600435166103c2565b60405190815260200160405180910390f35b341561018657600080fd5b61018e610505565b604051600160a060020a03909116815260200160405180910390f35b34156101b557600080fd5b610148600160a060020a0360043516610514565b005b34156101d657600080fd5b6100c1610674565b60405190815260200160405180910390f35b34156101fb57600080fd5b61020361067a565b604051901515815260200160405180910390f35b341561022257600080fd5b61018e610683565b604051600160a060020a03909116815260200160405180910390f35b341561025157600080fd5b6100c1600160a060020a0360043516610692565b60405190815260200160405180910390f35b341561028257600080fd5b610148600160a060020a03600435166106a4565b005b34156102a357600080fd5b610203600160a060020a0360043516610730565b604051901515815260200160405180910390f35b60045481565b60025481565b600160a060020a038116600090815260066020526040812054610309906102fd846103c2565b9063ffffffff61074516565b90505b919050565b600061031c826102d7565b90506000811161032b57600080fd5b600160a060020a038216600090815260066020526040902054610354908263ffffffff61075c16565b600160a060020a038084166000818152600660205260409020929092556001546103869291168363ffffffff61077616565b8082600160a060020a03167fc59809262d5a30c230302eec1bdf982b62d1e8cb477facf281f8f0343bc081c460405160405180910390a35b5050565b600080600083600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561041e57600080fd5b6102c65a03f1151561042f57600080fd5b5050506040518051600160a060020a0386166000908152600660205260409020549093506104659150839063ffffffff61075c16565b905060025442101561047a57600092506104fc565b60045460035461048f9163ffffffff61075c16565b421015806104b55750600160a060020a03841660009081526007602052604090205460ff165b156104c2578092506104fc565b6104f96004546104ed6104e06003544261074590919063ffffffff16565b849063ffffffff6107fc16565b9063ffffffff61082b16565b92505b5b5b5050919050565b600154600160a060020a031681565b600080548190819033600160a060020a0390811691161461053457600080fd5b60055460ff16151561054557600080fd5b600160a060020a03841660009081526007602052604090205460ff161561056b57600080fd5b83600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b15156105c257600080fd5b6102c65a03f115156105d357600080fd5b5050506040518051905092506105e8846102d7565b91506105fa838363ffffffff61074516565b600160a060020a038086166000818152600760205260408120805460ff1916600117905554929350610635929091168363ffffffff61077616565b8084600160a060020a03167f49f9f5e483e60c8b0fb5f0a1e586dd006acde1a033b11e44cecd93090e571c1b60405160405180910390a35b5b50505050565b60035481565b60055460ff1681565b600054600160a060020a031681565b60066020526000908152604090205481565b60005433600160a060020a039081169116146106bf57600080fd5b600160a060020a03811615156106d457600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008054600160a060020a031916600160a060020a0383161790555b5b50565b60076020526000908152604090205460ff1681565b60008282111561075157fe5b508082035b92915050565b60008282018381101561076b57fe5b8091505b5092915050565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156107d357600080fd5b6102c65a03f115156107e457600080fd5b5050506040518051905015156107f657fe5b5b505050565b6000828202831580610818575082848281151561081557fe5b04145b151561076b57fe5b8091505b5092915050565b600080828481151561083957fe5b0490508091505b50929150505600a165627a7a723058200111152d0a8d9911893d96c878d94db6af2454c223474323e3f8c8442a03d8f100296060604052341561000f57600080fd5b6040516060806102f98339810160405280805191906020018051919060200180519150505b42811161004057600080fd5b60008054600160a060020a03808616600160a060020a031992831617909255600180549285169290911691909117905560028190555b5050505b610270806100896000396000f300606060405263ffffffff60e060020a60003504166338af3eed811461004557806386d1a69f14610074578063b91d400114610089578063fc0c546a146100ae575b600080fd5b341561005057600080fd5b6100586100dd565b604051600160a060020a03909116815260200160405180910390f35b341561007f57600080fd5b6100876100ec565b005b341561009457600080fd5b61009c6101a9565b60405190815260200160405180910390f35b34156100b957600080fd5b6100586101af565b604051600160a060020a03909116815260200160405180910390f35b600154600160a060020a031681565b6002546000904210156100fe57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561015957600080fd5b6102c65a03f1151561016a57600080fd5b50505060405180519150506000811161018257600080fd5b6001546000546101a591600160a060020a0391821691168363ffffffff6101be16565b5b50565b60025481565b600054600160a060020a031681565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561021b57600080fd5b6102c65a03f1151561022c57600080fd5b50505060405180519050151561023e57fe5b5b5050505600a165627a7a72305820f24f29ef53cf3fb806f926d02c6bc8aa7660803f26053808e75f1bda5b08fc960029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a723058204c356406b0b2da61c04925a8bc5b845c6fd5acfe51cf776d659833d554a7df8d0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000004b5bcd00000000000000000000000000000000000000000000000000000000006b704d
-----Decoded View---------------
Arg [0] : _transferableFromBlock (uint256): 4938701
Arg [1] : _lockEndBlock (uint256): 7041101
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000004b5bcd
Arg [1] : 00000000000000000000000000000000000000000000000000000000006b704d
Swarm Source
bzzr://4c356406b0b2da61c04925a8bc5b845c6fd5acfe51cf776d659833d554a7df8d
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.