ERC-20
Overview
Max Total Supply
0 RBX
Holders
3,610
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RubiixToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-09-03 */ pragma solidity ^0.4.24; // File: zeppelin-solidity/contracts/ownership/Ownable.sol /** * @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 OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { 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 relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } /** * @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) public onlyOwner { _transferOwnership(_newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function _transferOwnership(address _newOwner) internal { require(_newOwner != address(0)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } } // File: zeppelin-solidity/contracts/lifecycle/Destructible.sol /** * @title Destructible * @dev Base contract that can be destroyed by owner. All funds in contract will be sent to the owner. */ contract Destructible is Ownable { constructor() public payable { } /** * @dev Transfers the current balance to the owner and terminates the contract. */ function destroy() onlyOwner public { selfdestruct(owner); } function destroyAndSend(address _recipient) onlyOwner public { selfdestruct(_recipient); } } // File: zeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * See https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } // File: zeppelin-solidity/contracts/math/SafeMath.sol /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure 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 a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } // File: zeppelin-solidity/contracts/token/ERC20/BasicToken.sol /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @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)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit 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 view returns (uint256) { return balances[_owner]; } } // File: zeppelin-solidity/contracts/token/ERC20/BurnableToken.sol /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { _burn(msg.sender, _value); } function _burn(address _who, uint256 _value) internal { require(_value <= balances[_who]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure balances[_who] = balances[_who].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(_who, _value); emit Transfer(_who, address(0), _value); } } // File: zeppelin-solidity/contracts/token/ERC20/ERC20.sol /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view 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 ); } // File: zeppelin-solidity/contracts/token/ERC20/StandardToken.sol /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/issues/20 * 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)) internal 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)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit 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; emit 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 view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a 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 * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval( address _spender, uint256 _addedValue ) public returns (bool) { allowed[msg.sender][_spender] = ( allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval( address _spender, uint256 _subtractedValue ) public returns (bool) { uint256 oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } // File: contracts/token/ERC223/ERC223Basic.sol /** * @title ERC223Basic extends ERC20 interface and supports ERC223 */ contract ERC223Basic is ERC20Basic { function transfer(address _to, uint256 _value, bytes _data) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value, bytes data); } // File: contracts/token/ERC223/ERC223ReceivingContract.sol /** * @title ERC223ReceivingContract contract that will work with ERC223 tokens. */ contract ERC223ReceivingContract { /** * @dev Standard ERC223 function that will handle incoming token transfers. * * @param _from Token sender address. * @param _value Amount of tokens. * @param _data Transaction metadata. */ function tokenFallback(address _from, uint256 _value, bytes _data) public returns (bool); } // File: contracts/Adminable.sol /** * @title Adminable * @dev The Adminable contract has the simple protection logic, and provides admin based access control */ contract Adminable is Ownable { address public admin; event AdminDesignated(address indexed previousAdmin, address indexed newAdmin); /** * @dev Throws if called the non admin. */ modifier onlyAdmin() { require(msg.sender == admin); _; } /** * @dev Throws if called the non owner and non admin. */ modifier onlyOwnerOrAdmin() { require(msg.sender == owner || msg.sender == admin); _; } /** * @dev Designate new admin for the address * @param _address address The address you want to be a new admin */ function designateAdmin(address _address) public onlyOwner { require(_address != address(0) && _address != owner); emit AdminDesignated(admin, _address); admin = _address; } } // File: contracts/Lockable.sol /** * @title Lockable * @dev The Lockable contract has an locks address map, and provides lockable control * functions, this simplifies the implementation of "lock transfers". * * The contents of this Smart Contract and all associated code is owned and operated by Rubiix, a Gibraltar company in formation. */ contract Lockable is Adminable, ERC20Basic { using SafeMath for uint256; // EPOCH TIMESTAMP OF "Tue Jul 02 2019 00:00:00 GMT+0000" // @see https://www.unixtimestamp.com/index.php uint public globalUnlockTime = 1562025600; uint public constant decimals = 18; event UnLock(address indexed unlocked); event Lock(address indexed locked, uint until, uint256 value, uint count); event UpdateGlobalUnlockTime(uint256 epoch); struct LockMeta { uint256 value; uint until; } mapping(address => LockMeta[]) internal locksMeta; mapping(address => bool) locks; /** * @dev Lock tokens for the address * @param _address address The address you want to lock tokens * @param _days uint The days count you want to lock untill from now * @param _value uint256 the amount of tokens to be locked */ function lock(address _address, uint _days, uint256 _value) onlyOwnerOrAdmin public { _value = _value*(10**decimals); require(_value > 0); require(_days > 0); require(_address != owner); require(_address != admin); uint untilTime = block.timestamp + _days * 1 days; locks[_address] = true; // check if we have locks locksMeta[_address].push(LockMeta(_value, untilTime)); // fire lock event emit Lock(_address, untilTime, _value, locksMeta[_address].length); } /** * @dev Unlock tokens for the address * @param _address address The address you want to unlock tokens */ function unlock(address _address) onlyOwnerOrAdmin public { locks[_address] = false; delete locksMeta[_address]; emit UnLock(_address); } /** * @dev Gets the locked balance of the specified address and time * @param _owner The address to query the locked balance of. * @param _time The timestamp seconds to query the locked balance of. * @return An uint256 representing the locked amount owned by the passed address. */ function lockedBalanceOf(address _owner, uint _time) public view returns (uint256) { LockMeta[] memory locked = locksMeta[_owner]; uint length = locked.length; // if no locks or even not created (takes bdefault) return 0 if (length == 0) { return 0; } // sum all available locks uint256 _result = 0; for (uint i = 0; i < length; i++) { if (_time <= locked[i].until) { _result = _result.add(locked[i].value); } } return _result; } /** * @dev Gets the locked balance of the specified address of the current time * @param _owner The address to query the locked balance of. * @return An uint256 representing the locked amount owned by the passed address. */ function lockedNowBalanceOf(address _owner) public view returns (uint256) { return this.lockedBalanceOf(_owner, block.timestamp); } /** * @dev Gets the unlocked balance of the specified address and time * @param _owner The address to query the unlocked balance of. * @param _time The timestamp seconds to query the unlocked balance of. * @return An uint256 representing the unlocked amount owned by the passed address. */ function unlockedBalanceOf(address _owner, uint _time) public view returns (uint256) { return this.balanceOf(_owner).sub(lockedBalanceOf(_owner, _time)); } /** * @dev Gets the unlocked balance of the specified address of the current time * @param _owner The address to query the unlocked balance of. * @return An uint256 representing the unlocked amount owned by the passed address. */ function unlockedNowBalanceOf(address _owner) public view returns (uint256) { return this.unlockedBalanceOf(_owner, block.timestamp); } function updateGlobalUnlockTime(uint256 _epoch) public onlyOwnerOrAdmin returns (bool) { require(_epoch >= 0); globalUnlockTime = _epoch; emit UpdateGlobalUnlockTime(_epoch); // Gives owner the ability to update lockup period for all wallets. // Owner can pass an epoch timecode into the function to: // 1. Extend lockup period, // 2. Unlock all wallets by passing '0' into the function } /** * @dev Throws if the value less than the current unlocked balance of. */ modifier onlyUnlocked(uint256 _value) { if(block.timestamp > globalUnlockTime) { _; } else { if (locks[msg.sender] == true) { require(this.unlockedNowBalanceOf(msg.sender) >= _value); } _; } } /** * @dev Throws if the value less than the current unlocked balance of the given address. */ modifier onlyUnlockedOf(address _address, uint256 _value) { if(block.timestamp > globalUnlockTime) { _; } else { if (locks[_address] == true) { require(this.unlockedNowBalanceOf(_address) >= _value); } else { } _; } } } // File: contracts/StandardLockableToken.sol /** * @title StandardLockableToken * * The contents of this Smart Contract and all associated code is owned and operated by Rubiix, a Gibraltar company in formation. */ contract StandardLockableToken is Lockable, /**/ERC223Basic, /*ERC20*/StandardToken { /** * @dev Check address is to be a contract based on extcodesize (must be nonzero to be a contract) * @param _address The address to check. */ function isContract(address _address) private constant returns (bool) { uint256 codeLength; assembly { codeLength := extcodesize(_address) } return codeLength > 0; } /** * @dev Transfer token for a specified address * ERC20 support * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) onlyUnlocked(_value) public returns (bool) { bytes memory empty; return _transfer(_to, _value, empty); } /** * @dev Transfer token for a specified address * ERC223 support * @param _to The address to transfer to. * @param _value The amount to be transferred. * @param _data The additional data. */ function transfer(address _to, uint256 _value, bytes _data) onlyUnlocked(_value) public returns (bool) { return _transfer(_to, _value, _data); } /** * @dev Transfer token for a specified address * ERC223 support * @param _to The address to transfer to. * @param _value The amount to be transferred. * @param _data The additional data. */ function _transfer(address _to, uint256 _value, bytes _data) internal returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); require(_value > 0); // catch overflow loosing tokens // require(balances[_to] + _value > balances[_to]); // safety update balances balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); // determine if the contract given if (isContract(_to)) { ERC223ReceivingContract receiver = ERC223ReceivingContract(_to); receiver.tokenFallback(msg.sender, _value, _data); } // emit ERC20 transfer event emit Transfer(msg.sender, _to, _value); // emit ERC223 transfer event emit Transfer(msg.sender, _to, _value, _data); return true; } /** * @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) onlyUnlockedOf(_from, _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); require(_value > 0); // make balances manipulations first balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); bytes memory empty; if (isContract(_to)) { ERC223ReceivingContract receiver = ERC223ReceivingContract(_to); receiver.tokenFallback(msg.sender, _value, empty); } // emit ERC20 transfer event emit Transfer(_from, _to, _value); // emit ERC223 transfer event emit Transfer(_from, _to, _value, empty); return true; } } // File: contracts/StandardBurnableLockableToken.sol /** * @title StandardBurnableLockableToken * * The contents of this Smart Contract and all associated code is owned and operated by Rubiix, a Gibraltar company in formation. */ contract StandardBurnableLockableToken is StandardLockableToken, BurnableToken { /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param _from address The address which you want to send tokens from * @param _value uint256 The amount of token to be burned */ function burnFrom(address _from, uint256 _value) onlyOwner onlyUnlockedOf(_from, _value) public { require(_value <= allowed[_from][msg.sender]); require(_value > 0); // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted, // this function needs to emit an event with the updated approval. allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); _burn(_from, _value); bytes memory empty; // emit ERC223 transfer event also emit Transfer(msg.sender, address(0), _value, empty); } /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) onlyOwner onlyUnlocked(_value) public { require(_value > 0); _burn(msg.sender, _value); bytes memory empty; // emit ERC223 transfer event also emit Transfer(msg.sender, address(0), _value, empty); } } // File: contracts/RubiixToken.sol /** * @title RubiixToken * @dev The RubiixToken contract is an Standard ERC20 and ERC223 Lockable smart contract * uses as a coin * * The contents of this Smart Contract and all associated code is owned and operated by Rubiix, a Gibraltar company in formation. */ contract RubiixToken is StandardBurnableLockableToken, Destructible { string public constant name = "Rubiix Token"; uint public constant decimals = 18; string public constant symbol = "RBX"; /** * @dev Inits an owner, totalSupply and assigns tokens for the reserved addresses. * Owner = 55% * Team = 20% * Company = 23% * Wallet = 2% * Fires ERC20 & ERC223 transfer events */ constructor() public { // set the owner owner = msg.sender; admin = 0xfb36E83F6bE7C0E9ba9FF403389001f2312121aF; uint256 INITIAL_SUPPLY = 223684211 * (10**decimals); // init totalSupply totalSupply_ = INITIAL_SUPPLY; // TODO: use info instead of empty. for example: team reserved bytes memory empty; // Owner = 55% uint256 ownerSupply = 12302631605 * (10**(decimals-2)); balances[msg.sender] = ownerSupply; emit Transfer(address(0), msg.sender, ownerSupply); emit Transfer(address(0), msg.sender, ownerSupply, empty); // Team = 20% address teamAddress = 0x7B1Af4A3b427C8eED8aA36a9f997b056853d0e36; uint256 teamSupply = 447368422 * (10**(decimals - 1)); balances[teamAddress] = teamSupply; emit Transfer(address(0), teamAddress, teamSupply); emit Transfer(address(0), teamAddress, teamSupply, empty); // Company = 23% address companyAddress = 0x3AFb62d009fEe4DD66A405f191B25e77f1d64126; uint256 companySupply = 5144736853 * (10**(decimals-2)); balances[companyAddress] = companySupply; emit Transfer(address(0), companyAddress, companySupply); emit Transfer(address(0), companyAddress, companySupply, empty); // Wallet = 2% address walletAddress = 0x4E44743330b950a8c624C457178AaC1355c4f6b2; uint256 walletSupply = 447368422 * (10**(decimals-2)); balances[walletAddress] = walletSupply; emit Transfer(address(0), walletAddress, walletSupply); emit Transfer(address(0), walletAddress, walletSupply, empty); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"designateAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_epoch","type":"uint256"}],"name":"updateGlobalUnlockTime","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"unlockedNowBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"unlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_time","type":"uint256"}],"name":"unlockedBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"destroy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_time","type":"uint256"}],"name":"lockedBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"globalUnlockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_days","type":"uint256"},{"name":"_value","type":"uint256"}],"name":"lock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"lockedNowBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"}],"name":"destroyAndSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"unlocked","type":"address"}],"name":"UnLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"locked","type":"address"},{"indexed":false,"name":"until","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"count","type":"uint256"}],"name":"Lock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"epoch","type":"uint256"}],"name":"UpdateGlobalUnlockTime","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":"previousAdmin","type":"address"},{"indexed":true,"name":"newAdmin","type":"address"}],"name":"AdminDesignated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
6080604052635d1a9e806002553480156200001957600080fd5b5060008054600160a060020a0319908116339081178216811783556001805490921673fb36e83f6be7c0e9ba9ff403389001f2312121af179091556ab906f9603765c109ec000060068190558183526005602090815260408085206a65c3d5f4eb44c3c575000090819055815181815291519395606095919490938493849384938493849384926000805160206200278c833981519152929181900390910190a333600160a060020a03166000600160a060020a03166000805160206200276c833981519152898b6040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015620001265781810151838201526020016200010c565b50505050905090810190601f168015620001545780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3737b1af4a3b427c8eed8aa36a9f997b056853d0e366000818152600560209081526a250165133e478d01fc00007f904316c375c444a86a1e235606db23fe6d48253b95438421543b45c7a5d2b752819055604080518281529051949a5090985089936000805160206200278c833981519152929181900390910190a385600160a060020a03166000600160a060020a03166000805160206200276c833981519152878b6040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156200024a57818101518382015260200162000230565b50505050905090810190601f168015620002785780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3733afb62d009fee4dd66a405f191b25e77f1d641266000818152600560209081526a2a8e676fbad2488f1500007fd206796685d5ce875b2ef2968782f02d332c9b792897874a132293cd103729cd81905560408051828152905194985090965087936000805160206200278c833981519152929181900390910190a383600160a060020a03166000600160a060020a03166000805160206200276c833981519152858b6040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156200036e57818101518382015260200162000354565b50505050905090810190601f1680156200039c5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35050734e44743330b950a8c624c457178aac1355c4f6b26000818152600560209081526a03b356e8530727b36600007f1bbc26df53ee5ab188a3113ca8d4440641301871ca0b9a286a732e23c5bbc8098190556040805182815290519193859390926000805160206200278c8339815191529281900390910190a381600160a060020a03166000600160a060020a03166000805160206200276c833981519152838b6040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156200049157818101518382015260200162000477565b50505050905090810190601f168015620004bf5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a350505050505050505061228680620004e66000396000f30060806040526004361061015b5763ffffffff60e060020a60003504166306fdde03811461016057806307609873146101ea578063095ea7b31461020d57806318160ddd146102455780631cb3bbc01461026c5780631de54fcd1461028457806323b872dd146102a55780632f6c493c146102cf578063313ce567146102f057806342966c6814610305578063468b3b331461031d578063661884631461034157806370a0823114610365578063715018a61461038657806379cc67901461039b57806383197ef0146103bf5780638da5cb5b146103d45780638ef4c8071461040557806395d89b4114610429578063a9059cbb1461043e578063bae944ba14610462578063be45fd6214610477578063d73dd623146104e0578063dd62ed3e14610504578063e2ab691d1461052b578063f2fde38b14610552578063f339690514610573578063f5074f4114610594578063f851a440146105b5575b600080fd5b34801561016c57600080fd5b506101756105ca565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101af578181015183820152602001610197565b50505050905090810190601f1680156101dc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f657600080fd5b5061020b600160a060020a0360043516610601565b005b34801561021957600080fd5b50610231600160a060020a03600435166024356106b2565b604080519115158252519081900360200190f35b34801561025157600080fd5b5061025a610718565b60408051918252519081900360200190f35b34801561027857600080fd5b5061023160043561071f565b34801561029057600080fd5b5061025a600160a060020a0360043516610799565b3480156102b157600080fd5b50610231600160a060020a0360043581169060243516604435610835565b3480156102db57600080fd5b5061020b600160a060020a0360043516610f53565b3480156102fc57600080fd5b5061025a610feb565b34801561031157600080fd5b5061020b600435610ff0565b34801561032957600080fd5b5061025a600160a060020a036004351660243561122f565b34801561034d57600080fd5b50610231600160a060020a03600435166024356112de565b34801561037157600080fd5b5061025a600160a060020a03600435166113ce565b34801561039257600080fd5b5061020b6113e9565b3480156103a757600080fd5b5061020b600160a060020a0360043516602435611455565b3480156103cb57600080fd5b5061020b6117b9565b3480156103e057600080fd5b506103e96117de565b60408051600160a060020a039092168252519081900360200190f35b34801561041157600080fd5b5061025a600160a060020a03600435166024356117ed565b34801561043557600080fd5b50610175611908565b34801561044a57600080fd5b50610231600160a060020a036004351660243561193f565b34801561046e57600080fd5b5061025a611a0f565b34801561048357600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610231948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750611a159650505050505050565b3480156104ec57600080fd5b50610231600160a060020a0360043516602435611ae3565b34801561051057600080fd5b5061025a600160a060020a0360043581169060243516611b7c565b34801561053757600080fd5b5061020b600160a060020a0360043516602435604435611ba7565b34801561055e57600080fd5b5061020b600160a060020a0360043516611ce9565b34801561057f57600080fd5b5061025a600160a060020a0360043516611d0c565b3480156105a057600080fd5b5061020b600160a060020a0360043516611d76565b3480156105c157600080fd5b506103e9611d99565b60408051808201909152600c81527f52756269697820546f6b656e0000000000000000000000000000000000000000602082015281565b600054600160a060020a0316331461061857600080fd5b600160a060020a0381161580159061063e5750600054600160a060020a03828116911614155b151561064957600080fd5b600154604051600160a060020a038084169216907f9eaf9e841579f88a8d3d4ec0b4af57f34599d4141259e5888af1bd4e5b41b0b190600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006545b90565b60008054600160a060020a03163314806107435750600154600160a060020a031633145b151561074e57600080fd5b600082101561075c57600080fd5b60028290556040805183815290517f73ffc732c3754a1708836069f52b214dcbad1e3297517eef5a2ec6aedb2e10f09181900360200190a1919050565b604080517f468b3b33000000000000000000000000000000000000000000000000000000008152600160a060020a03831660048201524260248201529051600091309163468b3b339160448082019260209290919082900301818787803b15801561080357600080fd5b505af1158015610817573d6000803e3d6000fd5b505050506040513d602081101561082d57600080fd5b505192915050565b6000606060008584600254421115610b7457600160a060020a038716151561085c57600080fd5b600160a060020a03881660009081526005602052604090205486111561088157600080fd5b600160a060020a03881660009081526007602090815260408083203384529091529020548611156108b157600080fd5b600086116108be57600080fd5b600160a060020a0388166000908152600560205260409020546108e7908763ffffffff611da816565b600160a060020a03808a16600090815260056020526040808220939093559089168152205461091c908763ffffffff611dba16565b600160a060020a03808916600090815260056020908152604080832094909455918b168152600782528281203382529091522054610960908763ffffffff611da816565b600160a060020a038916600090815260076020908152604080832033845290915290205561098d87611dcd565b15610a8f5786925082600160a060020a031663c0ee0b8a3388876040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610a145781810151838201526020016109fc565b50505050905090810190601f168015610a415780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b158015610a6257600080fd5b505af1158015610a76573d6000803e3d6000fd5b505050506040513d6020811015610a8c57600080fd5b50505b86600160a060020a031688600160a060020a031660008051602061223b833981519152886040518082815260200191505060405180910390a386600160a060020a031688600160a060020a031660008051602061221b83398151915288876040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b30578181015183820152602001610b18565b50505050905090810190601f168015610b5d5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a360019450610f48565b600160a060020a03821660009081526004602052604090205460ff16151560011415610c1f576040805160e060020a631de54fcd028152600160a060020a0384166004820152905182913091631de54fcd916024808201926020929091908290030181600087803b158015610be857600080fd5b505af1158015610bfc573d6000803e3d6000fd5b505050506040513d6020811015610c1257600080fd5b50511015610c1f57600080fd5b600160a060020a0387161515610c3457600080fd5b600160a060020a038816600090815260056020526040902054861115610c5957600080fd5b600160a060020a0388166000908152600760209081526040808320338452909152902054861115610c8957600080fd5b60008611610c9657600080fd5b600160a060020a038816600090815260056020526040902054610cbf908763ffffffff611da816565b600160a060020a03808a166000908152600560205260408082209390935590891681522054610cf4908763ffffffff611dba16565b600160a060020a03808916600090815260056020908152604080832094909455918b168152600782528281203382529091522054610d38908763ffffffff611da816565b600160a060020a0389166000908152600760209081526040808320338452909152902055610d6587611dcd565b15610e675786925082600160a060020a031663c0ee0b8a3388876040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610dec578181015183820152602001610dd4565b50505050905090810190601f168015610e195780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b158015610e3a57600080fd5b505af1158015610e4e573d6000803e3d6000fd5b505050506040513d6020811015610e6457600080fd5b50505b86600160a060020a031688600160a060020a031660008051602061223b833981519152886040518082815260200191505060405180910390a386600160a060020a031688600160a060020a031660008051602061221b83398151915288876040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610f08578181015183820152602001610ef0565b50505050905090810190601f168015610f355780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3600194505b505050509392505050565b600054600160a060020a0316331480610f765750600154600160a060020a031633145b1515610f8157600080fd5b600160a060020a0381166000908152600460209081526040808320805460ff1916905560039091528120610fb4916121da565b604051600160a060020a038216907f9e4b5873dcdfeaf6bf534d422fe7d4748b91bc3fc2ea0e5e4c67f74dd8a13c5490600090a250565b601281565b600054606090600160a060020a0316331461100a57600080fd5b816002544211156110d5576000831161102257600080fd5b61102c3384611dd5565b6000600160a060020a031633600160a060020a031660008051602061221b83398151915285856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561109557818101518382015260200161107d565b50505050905090810190601f1680156110c25780820380516001836020036101000a031916815260200191505b50935050505060405180910390a361122a565b3360009081526004602052604090205460ff1615156001141561116e576040805160e060020a631de54fcd028152336004820152905182913091631de54fcd916024808201926020929091908290030181600087803b15801561113757600080fd5b505af115801561114b573d6000803e3d6000fd5b505050506040513d602081101561116157600080fd5b5051101561116e57600080fd5b6000831161117b57600080fd5b6111853384611dd5565b6000600160a060020a031633600160a060020a031660008051602061221b83398151915285856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156111ee5781810151838201526020016111d6565b50505050905090810190601f16801561121b5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35b505050565b60006112d761123e84846117ed565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a0387166004820152905130916370a082319160248083019260209291908290030181600087803b15801561129f57600080fd5b505af11580156112b3573d6000803e3d6000fd5b505050506040513d60208110156112c957600080fd5b50519063ffffffff611da816565b9392505050565b336000908152600760209081526040808320600160a060020a03861684529091528120548083111561133357336000908152600760209081526040808320600160a060020a0388168452909152812055611368565b611343818463ffffffff611da816565b336000908152600760209081526040808320600160a060020a03891684529091529020555b336000818152600760209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526005602052604090205490565b600054600160a060020a0316331461140057600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054606090600160a060020a0316331461146f57600080fd5b82826002544211156115c357600160a060020a03851660009081526007602090815260408083203384529091529020548411156114ab57600080fd5b600084116114b857600080fd5b600160a060020a03851660009081526007602090815260408083203384529091529020546114ec908563ffffffff611da816565b600160a060020a038616600090815260076020908152604080832033845290915290205561151a8585611dd5565b6000600160a060020a031633600160a060020a031660008051602061221b83398151915286866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561158357818101518382015260200161156b565b50505050905090810190601f1680156115b05780820380516001836020036101000a031916815260200191505b50935050505060405180910390a36117b2565b600160a060020a03821660009081526004602052604090205460ff1615156001141561166e576040805160e060020a631de54fcd028152600160a060020a0384166004820152905182913091631de54fcd916024808201926020929091908290030181600087803b15801561163757600080fd5b505af115801561164b573d6000803e3d6000fd5b505050506040513d602081101561166157600080fd5b5051101561166e57600080fd5b600160a060020a038516600090815260076020908152604080832033845290915290205484111561169e57600080fd5b600084116116ab57600080fd5b600160a060020a03851660009081526007602090815260408083203384529091529020546116df908563ffffffff611da816565b600160a060020a038616600090815260076020908152604080832033845290915290205561170d8585611dd5565b6000600160a060020a031633600160a060020a031660008051602061221b83398151915286866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561177657818101518382015260200161175e565b50505050905090810190601f1680156117a35780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35b5050505050565b600054600160a060020a031633146117d057600080fd5b600054600160a060020a0316ff5b600054600160a060020a031681565b6000606060008060006003600088600160a060020a0316600160a060020a03168152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b8282101561187a57600084815260209081902060408051808201909152600285029091018054825260019081015482840152908352909201910161183b565b50505050935083519250826000141561189657600094506118fe565b5060009050805b828110156118fa5783818151811015156118b357fe5b6020908102909101810151015186116118f2576118ef84828151811015156118d757fe5b6020908102909101015151839063ffffffff611dba16565b91505b60010161189d565b8194505b5050505092915050565b60408051808201909152600381527f5242580000000000000000000000000000000000000000000000000000000000602082015281565b600060608260025442111561196057611959858584611ec4565b9250611a07565b3360009081526004602052604090205460ff161515600114156119f9576040805160e060020a631de54fcd028152336004820152905182913091631de54fcd916024808201926020929091908290030181600087803b1580156119c257600080fd5b505af11580156119d6573d6000803e3d6000fd5b505050506040513d60208110156119ec57600080fd5b505110156119f957600080fd5b611a04858584611ec4565b92505b505092915050565b60025481565b600082600254421115611a3457611a2d858585611ec4565b9150611adb565b3360009081526004602052604090205460ff16151560011415611acd576040805160e060020a631de54fcd028152336004820152905182913091631de54fcd916024808201926020929091908290030181600087803b158015611a9657600080fd5b505af1158015611aaa573d6000803e3d6000fd5b505050506040513d6020811015611ac057600080fd5b50511015611acd57600080fd5b611ad8858585611ec4565b91505b509392505050565b336000908152600760209081526040808320600160a060020a0386168452909152812054611b17908363ffffffff611dba16565b336000818152600760209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b60008054600160a060020a0316331480611bcb5750600154600160a060020a031633145b1515611bd657600080fd5b670de0b6b3a7640000919091029060008211611bf157600080fd5b60008311611bfe57600080fd5b600054600160a060020a0385811691161415611c1957600080fd5b600154600160a060020a0385811691161415611c3457600080fd5b50600160a060020a0383166000818152600460209081526040808320805460ff1916600190811790915560038084528285208351808501855288815242620151808b020181870181815283548087018555848a52888a20935160029091029093019283555191909401559486905283529254815184815292830186905282820152519192917f0e31f07bae79135368ff475cf6c7f6abb31e0fd731e03c18ad425bd9406cf0c09181900360600190a250505050565b600054600160a060020a03163314611d0057600080fd5b611d098161215d565b50565b604080517f8ef4c807000000000000000000000000000000000000000000000000000000008152600160a060020a038316600482015242602482015290516000913091638ef4c8079160448082019260209290919082900301818787803b15801561080357600080fd5b600054600160a060020a03163314611d8d57600080fd5b80600160a060020a0316ff5b600154600160a060020a031681565b600082821115611db457fe5b50900390565b81810182811015611dc757fe5b92915050565b6000903b1190565b600160a060020a038216600090815260056020526040902054811115611dfa57600080fd5b600160a060020a038216600090815260056020526040902054611e23908263ffffffff611da816565b600160a060020a038316600090815260056020526040902055600654611e4f908263ffffffff611da816565b600655604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061223b8339815191529181900360200190a35050565b600080600160a060020a0385161515611edc57600080fd5b33600090815260056020526040902054841115611ef857600080fd5b60008411611f0557600080fd5b33600090815260056020526040902054611f25908563ffffffff611da816565b3360009081526005602052604080822092909255600160a060020a03871681522054611f57908563ffffffff611dba16565b600160a060020a038616600090815260056020526040902055611f7985611dcd565b1561208157506040517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523360048201818152602483018690526060604484019081528551606485015285518894600160a060020a0386169463c0ee0b8a9490938a938a9360840190602085019080838360005b83811015612006578181015183820152602001611fee565b50505050905090810190601f1680156120335780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15801561205457600080fd5b505af1158015612068573d6000803e3d6000fd5b505050506040513d602081101561207e57600080fd5b50505b604080518581529051600160a060020a03871691339160008051602061223b8339815191529181900360200190a384600160a060020a031633600160a060020a031660008051602061221b83398151915286866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156121175781810151838201526020016120ff565b50505050905090810190601f1680156121445780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3506001949350505050565b600160a060020a038116151561217257600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b5080546000825560020290600052602060002090810190611d09919061071c91905b8082111561221657600080825560018201556002016121fc565b50905600e19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f6b12126809fdd370a4c8b3b3d2b9e093dd4beee02eed8121801031bceb1f91c0029e19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x60806040526004361061015b5763ffffffff60e060020a60003504166306fdde03811461016057806307609873146101ea578063095ea7b31461020d57806318160ddd146102455780631cb3bbc01461026c5780631de54fcd1461028457806323b872dd146102a55780632f6c493c146102cf578063313ce567146102f057806342966c6814610305578063468b3b331461031d578063661884631461034157806370a0823114610365578063715018a61461038657806379cc67901461039b57806383197ef0146103bf5780638da5cb5b146103d45780638ef4c8071461040557806395d89b4114610429578063a9059cbb1461043e578063bae944ba14610462578063be45fd6214610477578063d73dd623146104e0578063dd62ed3e14610504578063e2ab691d1461052b578063f2fde38b14610552578063f339690514610573578063f5074f4114610594578063f851a440146105b5575b600080fd5b34801561016c57600080fd5b506101756105ca565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101af578181015183820152602001610197565b50505050905090810190601f1680156101dc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101f657600080fd5b5061020b600160a060020a0360043516610601565b005b34801561021957600080fd5b50610231600160a060020a03600435166024356106b2565b604080519115158252519081900360200190f35b34801561025157600080fd5b5061025a610718565b60408051918252519081900360200190f35b34801561027857600080fd5b5061023160043561071f565b34801561029057600080fd5b5061025a600160a060020a0360043516610799565b3480156102b157600080fd5b50610231600160a060020a0360043581169060243516604435610835565b3480156102db57600080fd5b5061020b600160a060020a0360043516610f53565b3480156102fc57600080fd5b5061025a610feb565b34801561031157600080fd5b5061020b600435610ff0565b34801561032957600080fd5b5061025a600160a060020a036004351660243561122f565b34801561034d57600080fd5b50610231600160a060020a03600435166024356112de565b34801561037157600080fd5b5061025a600160a060020a03600435166113ce565b34801561039257600080fd5b5061020b6113e9565b3480156103a757600080fd5b5061020b600160a060020a0360043516602435611455565b3480156103cb57600080fd5b5061020b6117b9565b3480156103e057600080fd5b506103e96117de565b60408051600160a060020a039092168252519081900360200190f35b34801561041157600080fd5b5061025a600160a060020a03600435166024356117ed565b34801561043557600080fd5b50610175611908565b34801561044a57600080fd5b50610231600160a060020a036004351660243561193f565b34801561046e57600080fd5b5061025a611a0f565b34801561048357600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610231948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750611a159650505050505050565b3480156104ec57600080fd5b50610231600160a060020a0360043516602435611ae3565b34801561051057600080fd5b5061025a600160a060020a0360043581169060243516611b7c565b34801561053757600080fd5b5061020b600160a060020a0360043516602435604435611ba7565b34801561055e57600080fd5b5061020b600160a060020a0360043516611ce9565b34801561057f57600080fd5b5061025a600160a060020a0360043516611d0c565b3480156105a057600080fd5b5061020b600160a060020a0360043516611d76565b3480156105c157600080fd5b506103e9611d99565b60408051808201909152600c81527f52756269697820546f6b656e0000000000000000000000000000000000000000602082015281565b600054600160a060020a0316331461061857600080fd5b600160a060020a0381161580159061063e5750600054600160a060020a03828116911614155b151561064957600080fd5b600154604051600160a060020a038084169216907f9eaf9e841579f88a8d3d4ec0b4af57f34599d4141259e5888af1bd4e5b41b0b190600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006545b90565b60008054600160a060020a03163314806107435750600154600160a060020a031633145b151561074e57600080fd5b600082101561075c57600080fd5b60028290556040805183815290517f73ffc732c3754a1708836069f52b214dcbad1e3297517eef5a2ec6aedb2e10f09181900360200190a1919050565b604080517f468b3b33000000000000000000000000000000000000000000000000000000008152600160a060020a03831660048201524260248201529051600091309163468b3b339160448082019260209290919082900301818787803b15801561080357600080fd5b505af1158015610817573d6000803e3d6000fd5b505050506040513d602081101561082d57600080fd5b505192915050565b6000606060008584600254421115610b7457600160a060020a038716151561085c57600080fd5b600160a060020a03881660009081526005602052604090205486111561088157600080fd5b600160a060020a03881660009081526007602090815260408083203384529091529020548611156108b157600080fd5b600086116108be57600080fd5b600160a060020a0388166000908152600560205260409020546108e7908763ffffffff611da816565b600160a060020a03808a16600090815260056020526040808220939093559089168152205461091c908763ffffffff611dba16565b600160a060020a03808916600090815260056020908152604080832094909455918b168152600782528281203382529091522054610960908763ffffffff611da816565b600160a060020a038916600090815260076020908152604080832033845290915290205561098d87611dcd565b15610a8f5786925082600160a060020a031663c0ee0b8a3388876040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610a145781810151838201526020016109fc565b50505050905090810190601f168015610a415780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b158015610a6257600080fd5b505af1158015610a76573d6000803e3d6000fd5b505050506040513d6020811015610a8c57600080fd5b50505b86600160a060020a031688600160a060020a031660008051602061223b833981519152886040518082815260200191505060405180910390a386600160a060020a031688600160a060020a031660008051602061221b83398151915288876040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b30578181015183820152602001610b18565b50505050905090810190601f168015610b5d5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a360019450610f48565b600160a060020a03821660009081526004602052604090205460ff16151560011415610c1f576040805160e060020a631de54fcd028152600160a060020a0384166004820152905182913091631de54fcd916024808201926020929091908290030181600087803b158015610be857600080fd5b505af1158015610bfc573d6000803e3d6000fd5b505050506040513d6020811015610c1257600080fd5b50511015610c1f57600080fd5b600160a060020a0387161515610c3457600080fd5b600160a060020a038816600090815260056020526040902054861115610c5957600080fd5b600160a060020a0388166000908152600760209081526040808320338452909152902054861115610c8957600080fd5b60008611610c9657600080fd5b600160a060020a038816600090815260056020526040902054610cbf908763ffffffff611da816565b600160a060020a03808a166000908152600560205260408082209390935590891681522054610cf4908763ffffffff611dba16565b600160a060020a03808916600090815260056020908152604080832094909455918b168152600782528281203382529091522054610d38908763ffffffff611da816565b600160a060020a0389166000908152600760209081526040808320338452909152902055610d6587611dcd565b15610e675786925082600160a060020a031663c0ee0b8a3388876040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610dec578181015183820152602001610dd4565b50505050905090810190601f168015610e195780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b158015610e3a57600080fd5b505af1158015610e4e573d6000803e3d6000fd5b505050506040513d6020811015610e6457600080fd5b50505b86600160a060020a031688600160a060020a031660008051602061223b833981519152886040518082815260200191505060405180910390a386600160a060020a031688600160a060020a031660008051602061221b83398151915288876040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610f08578181015183820152602001610ef0565b50505050905090810190601f168015610f355780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3600194505b505050509392505050565b600054600160a060020a0316331480610f765750600154600160a060020a031633145b1515610f8157600080fd5b600160a060020a0381166000908152600460209081526040808320805460ff1916905560039091528120610fb4916121da565b604051600160a060020a038216907f9e4b5873dcdfeaf6bf534d422fe7d4748b91bc3fc2ea0e5e4c67f74dd8a13c5490600090a250565b601281565b600054606090600160a060020a0316331461100a57600080fd5b816002544211156110d5576000831161102257600080fd5b61102c3384611dd5565b6000600160a060020a031633600160a060020a031660008051602061221b83398151915285856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561109557818101518382015260200161107d565b50505050905090810190601f1680156110c25780820380516001836020036101000a031916815260200191505b50935050505060405180910390a361122a565b3360009081526004602052604090205460ff1615156001141561116e576040805160e060020a631de54fcd028152336004820152905182913091631de54fcd916024808201926020929091908290030181600087803b15801561113757600080fd5b505af115801561114b573d6000803e3d6000fd5b505050506040513d602081101561116157600080fd5b5051101561116e57600080fd5b6000831161117b57600080fd5b6111853384611dd5565b6000600160a060020a031633600160a060020a031660008051602061221b83398151915285856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156111ee5781810151838201526020016111d6565b50505050905090810190601f16801561121b5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35b505050565b60006112d761123e84846117ed565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a0387166004820152905130916370a082319160248083019260209291908290030181600087803b15801561129f57600080fd5b505af11580156112b3573d6000803e3d6000fd5b505050506040513d60208110156112c957600080fd5b50519063ffffffff611da816565b9392505050565b336000908152600760209081526040808320600160a060020a03861684529091528120548083111561133357336000908152600760209081526040808320600160a060020a0388168452909152812055611368565b611343818463ffffffff611da816565b336000908152600760209081526040808320600160a060020a03891684529091529020555b336000818152600760209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526005602052604090205490565b600054600160a060020a0316331461140057600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054606090600160a060020a0316331461146f57600080fd5b82826002544211156115c357600160a060020a03851660009081526007602090815260408083203384529091529020548411156114ab57600080fd5b600084116114b857600080fd5b600160a060020a03851660009081526007602090815260408083203384529091529020546114ec908563ffffffff611da816565b600160a060020a038616600090815260076020908152604080832033845290915290205561151a8585611dd5565b6000600160a060020a031633600160a060020a031660008051602061221b83398151915286866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561158357818101518382015260200161156b565b50505050905090810190601f1680156115b05780820380516001836020036101000a031916815260200191505b50935050505060405180910390a36117b2565b600160a060020a03821660009081526004602052604090205460ff1615156001141561166e576040805160e060020a631de54fcd028152600160a060020a0384166004820152905182913091631de54fcd916024808201926020929091908290030181600087803b15801561163757600080fd5b505af115801561164b573d6000803e3d6000fd5b505050506040513d602081101561166157600080fd5b5051101561166e57600080fd5b600160a060020a038516600090815260076020908152604080832033845290915290205484111561169e57600080fd5b600084116116ab57600080fd5b600160a060020a03851660009081526007602090815260408083203384529091529020546116df908563ffffffff611da816565b600160a060020a038616600090815260076020908152604080832033845290915290205561170d8585611dd5565b6000600160a060020a031633600160a060020a031660008051602061221b83398151915286866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561177657818101518382015260200161175e565b50505050905090810190601f1680156117a35780820380516001836020036101000a031916815260200191505b50935050505060405180910390a35b5050505050565b600054600160a060020a031633146117d057600080fd5b600054600160a060020a0316ff5b600054600160a060020a031681565b6000606060008060006003600088600160a060020a0316600160a060020a03168152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b8282101561187a57600084815260209081902060408051808201909152600285029091018054825260019081015482840152908352909201910161183b565b50505050935083519250826000141561189657600094506118fe565b5060009050805b828110156118fa5783818151811015156118b357fe5b6020908102909101810151015186116118f2576118ef84828151811015156118d757fe5b6020908102909101015151839063ffffffff611dba16565b91505b60010161189d565b8194505b5050505092915050565b60408051808201909152600381527f5242580000000000000000000000000000000000000000000000000000000000602082015281565b600060608260025442111561196057611959858584611ec4565b9250611a07565b3360009081526004602052604090205460ff161515600114156119f9576040805160e060020a631de54fcd028152336004820152905182913091631de54fcd916024808201926020929091908290030181600087803b1580156119c257600080fd5b505af11580156119d6573d6000803e3d6000fd5b505050506040513d60208110156119ec57600080fd5b505110156119f957600080fd5b611a04858584611ec4565b92505b505092915050565b60025481565b600082600254421115611a3457611a2d858585611ec4565b9150611adb565b3360009081526004602052604090205460ff16151560011415611acd576040805160e060020a631de54fcd028152336004820152905182913091631de54fcd916024808201926020929091908290030181600087803b158015611a9657600080fd5b505af1158015611aaa573d6000803e3d6000fd5b505050506040513d6020811015611ac057600080fd5b50511015611acd57600080fd5b611ad8858585611ec4565b91505b509392505050565b336000908152600760209081526040808320600160a060020a0386168452909152812054611b17908363ffffffff611dba16565b336000818152600760209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b60008054600160a060020a0316331480611bcb5750600154600160a060020a031633145b1515611bd657600080fd5b670de0b6b3a7640000919091029060008211611bf157600080fd5b60008311611bfe57600080fd5b600054600160a060020a0385811691161415611c1957600080fd5b600154600160a060020a0385811691161415611c3457600080fd5b50600160a060020a0383166000818152600460209081526040808320805460ff1916600190811790915560038084528285208351808501855288815242620151808b020181870181815283548087018555848a52888a20935160029091029093019283555191909401559486905283529254815184815292830186905282820152519192917f0e31f07bae79135368ff475cf6c7f6abb31e0fd731e03c18ad425bd9406cf0c09181900360600190a250505050565b600054600160a060020a03163314611d0057600080fd5b611d098161215d565b50565b604080517f8ef4c807000000000000000000000000000000000000000000000000000000008152600160a060020a038316600482015242602482015290516000913091638ef4c8079160448082019260209290919082900301818787803b15801561080357600080fd5b600054600160a060020a03163314611d8d57600080fd5b80600160a060020a0316ff5b600154600160a060020a031681565b600082821115611db457fe5b50900390565b81810182811015611dc757fe5b92915050565b6000903b1190565b600160a060020a038216600090815260056020526040902054811115611dfa57600080fd5b600160a060020a038216600090815260056020526040902054611e23908263ffffffff611da816565b600160a060020a038316600090815260056020526040902055600654611e4f908263ffffffff611da816565b600655604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061223b8339815191529181900360200190a35050565b600080600160a060020a0385161515611edc57600080fd5b33600090815260056020526040902054841115611ef857600080fd5b60008411611f0557600080fd5b33600090815260056020526040902054611f25908563ffffffff611da816565b3360009081526005602052604080822092909255600160a060020a03871681522054611f57908563ffffffff611dba16565b600160a060020a038616600090815260056020526040902055611f7985611dcd565b1561208157506040517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523360048201818152602483018690526060604484019081528551606485015285518894600160a060020a0386169463c0ee0b8a9490938a938a9360840190602085019080838360005b83811015612006578181015183820152602001611fee565b50505050905090810190601f1680156120335780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15801561205457600080fd5b505af1158015612068573d6000803e3d6000fd5b505050506040513d602081101561207e57600080fd5b50505b604080518581529051600160a060020a03871691339160008051602061223b8339815191529181900360200190a384600160a060020a031633600160a060020a031660008051602061221b83398151915286866040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156121175781810151838201526020016120ff565b50505050905090810190601f1680156121445780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3506001949350505050565b600160a060020a038116151561217257600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b5080546000825560020290600052602060002090810190611d09919061071c91905b8082111561221657600080825560018201556002016121fc565b50905600e19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f6b12126809fdd370a4c8b3b3d2b9e093dd4beee02eed8121801031bceb1f91c0029
Swarm Source
bzzr://f6b12126809fdd370a4c8b3b3d2b9e093dd4beee02eed8121801031bceb1f91c
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.