ETH Price: $2,683.10 (+2.44%)
Gas: 0.84 Gwei

Token

Tokenmom (TM)
 

Overview

Max Total Supply

1,999,999,999.9999999999999999 TM

Holders

1,538

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Tokenmom
Balance
0.000000002064289051 TM

Value
$0.00
0x4a821aa1affbf7ee89a245bf750d1d7374e77409
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Tokenmom is a decentralized cryptocurrency exchange with no need to deposit and signup.

ICO Information

ICO Start Date : Jan 1, 2019  
ICO End Date : Mar 31, 2019
Total Cap : 800,000,000 TM
Hard Cap : $ 8,000,000
Soft Cap : $ 2,000,000
Token Distribution Date : Jan 4, 2019
ICO Price  : $0.004415 | 0.00004 ETH
Bonus : 10%
Country : South Korea

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Tokenmom

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 2019-01-04
*/

pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// TOKENMOM DECENTRALIZED EXCHANGE Token(TM) Smart Contract V.1.1
// 토큰맘 탈중앙화거래소 토큰(TM) 스마트 컨트랙트 버전1.1
// Exchange URL : https://tokenmom.com
// Trading FEE  : 0.00% Event (Maker and Taker)
// Symbol       : TM
// Name         : TOKENMOM Token
// Decimals     : 18
// Total supply : 2,000,000,000
// 40%	800,000,000	Free TM token to Tokenmom users(Rewards & Referral)
// 40%	800,000,000	Founder, team, exchange ecosystem & maintenance
// 10%	200,000,000	Price stability and maintenance of TM Token(Burning)
// 10%	200,000,000	Reserved funds to prepare for future problems
// ----------------------------------------------------------------------------

/**
 * @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 private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @return the address of the owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return 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 OwnershipTransferred(_owner, address(0));
        _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;
    }
}


/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
library SafeMath {
    int256 constant private INT256_MIN = -2**255;

    /**
    * @dev Multiplies two unsigned integers, reverts on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring '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;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
    * @dev Multiplies two signed integers, reverts on overflow.
    */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        // Gas optimization: this is cheaper than requiring '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;
        }

        require(!(a == -1 && b == INT256_MIN)); // This is the only case of overflow not detected by the check below

        int256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
    * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
    * @dev Integer division of two signed integers truncating the quotient, reverts on division by zero.
    */
    function div(int256 a, int256 b) internal pure returns (int256) {
        require(b != 0); // Solidity only automatically asserts when dividing by 0
        require(!(b == -1 && a == INT256_MIN)); // This is the only case of overflow

        int256 c = a / b;

        return c;
    }

    /**
    * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
    * @dev Subtracts two signed integers, reverts on overflow.
    */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));

        return c;
    }

    /**
    * @dev Adds two unsigned integers, reverts on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
    * @dev Adds two signed integers, reverts on overflow.
    */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));

        return c;
    }

    /**
    * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
    * reverts when dividing by zero.
    */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    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 {
    using SafeMath for uint256;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        require(token.transfer(to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        require(token.transferFrom(from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require((value == 0) || (token.allowance(msg.sender, spender) == 0));
        require(token.approve(spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        require(token.approve(spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value);
        require(token.approve(spender, newAllowance));
    }
}

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string name, string symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @return the name of the token.
     */
    function name() public view returns (string) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev give an account access to this role
     */
    function add(Role storage role, address account) internal {
        require(account != address(0));
        require(!has(role, account));

        role.bearer[account] = true;
    }

    /**
     * @dev remove an account's access to this role
     */
    function remove(Role storage role, address account) internal {
        require(account != address(0));
        require(has(role, account));

        role.bearer[account] = false;
    }

    /**
     * @dev check if an account has this role
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0));
        return role.bearer[account];
    }
}


contract SignerRole {
    using Roles for Roles.Role;

    event SignerAdded(address indexed account);
    event SignerRemoved(address indexed account);

    Roles.Role private _signers;

    constructor () internal {
        _addSigner(msg.sender);
    }

    modifier onlySigner() {
        require(isSigner(msg.sender));
        _;
    }

    function isSigner(address account) public view returns (bool) {
        return _signers.has(account);
    }

    function addSigner(address account) public onlySigner {
        _addSigner(account);
    }

    function renounceSigner() public {
        _removeSigner(msg.sender);
    }

    function _addSigner(address account) internal {
        _signers.add(account);
        emit SignerAdded(account);
    }

    function _removeSigner(address account) internal {
        _signers.remove(account);
        emit SignerRemoved(account);
    }
}


contract MinterRole {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(msg.sender);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender));
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(msg.sender);
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender));
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20, Ownable {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply;

    /**
    * @dev Total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param owner The address to query 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];
    }

    /**
     * @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 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) {
        _transfer(msg.sender, 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) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @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) {
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        emit Approval(from, msg.sender, _allowed[from][msg.sender]);
        return true;
    }

    /**
     * @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
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        require(spender != address(0));

        _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
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
    * @dev Transfer token for a specified addresses
    * @param from The address to transfer from.
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value);
        _burn(account, value);
        emit Approval(account, msg.sender, _allowed[account][msg.sender]);
    }
}


/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is PauserRole {
    event Paused(address account);
    event Unpaused(address account);

    bool private _paused;

    constructor () internal {
        _paused = false;
    }

    /**
     * @return true if the contract is paused, false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @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() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}


/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @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);
    }

    /**
     * @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) public {
        _burnFrom(from, value);
    }
}


/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 **/
contract ERC20Pausable is ERC20, 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 increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

/**
 * @title ERC20Mintable
 * @dev ERC20 minting logic
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 value) public onlyMinter returns (bool) {
        _mint(to, value);
        return true;
    }
}

contract Tokenmom is ERC20Pausable, ERC20Burnable, ERC20Mintable, ERC20Detailed {
    uint256 public constant INITIAL_SUPPLY = 2000000000 * (10 ** uint256(decimals()));

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor () public ERC20Detailed("Tokenmom", "TM", 18) {
        _mint(msg.sender, INITIAL_SUPPLY);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"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":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","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":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","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":"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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b50604080518082018252600881527f546f6b656e6d6f6d00000000000000000000000000000000000000000000000060208083019190915282518084018452600281527f544d0000000000000000000000000000000000000000000000000000000000009181019190915260008054600160a060020a0319163317808255935192939192601292600160a060020a031691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3620000dc336401000000006200017c810204565b6005805460ff19169055620000fa33640100000000620001ce810204565b82516200010f90600790602086019062000398565b5081516200012590600890602085019062000398565b506009805460ff191660ff9290921691909117905550620001769050336200015564010000000062000220810204565b60ff16600a0a6377359400026200022a640100000000026401000000009004565b6200043a565b62000197600482640100000000620010c8620002eb82021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b620001e9600682640100000000620010c8620002eb82021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60095460ff165b90565b600160a060020a03821615156200024057600080fd5b6003546200025d90826401000000006200106a6200034682021704565b600355600160a060020a0382166000908152600160205260409020546200029390826401000000006200106a6200034682021704565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03811615156200030157600080fd5b62000316828264010000000062000360810204565b156200032157600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200035957600080fd5b9392505050565b6000600160a060020a03821615156200037857600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003db57805160ff19168380011785556200040b565b828001600101855582156200040b579182015b828111156200040b578251825591602001919060010190620003ee565b50620004199291506200041d565b5090565b6200022791905b8082111562000419576000815560010162000424565b611162806200044a6000396000f3006080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461016e578063095ea7b3146101f857806318160ddd1461023057806323b872dd146102575780632ff2e9dc14610281578063313ce5671461029657806339509351146102c15780633f4ba83a146102e557806340c10f19146102fc57806342966c681461032057806346fbf68e146103385780635c975abb146103595780636ef8d66d1461036e57806370a0823114610383578063715018a6146103a457806379cc6790146103b957806382dc1ec4146103dd5780638456cb59146103fe5780638da5cb5b146104135780638f32d59b1461044457806395d89b4114610459578063983b2d561461046e578063986502751461048f578063a457c2d7146104a4578063a9059cbb146104c8578063aa271e1a146104ec578063dd62ed3e1461050d578063f2fde38b14610534575b600080fd5b34801561017a57600080fd5b50610183610555565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bd5781810151838201526020016101a5565b50505050905090810190601f1680156101ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020457600080fd5b5061021c600160a060020a03600435166024356105eb565b604080519115158252519081900360200190f35b34801561023c57600080fd5b5061024561060f565b60408051918252519081900360200190f35b34801561026357600080fd5b5061021c600160a060020a0360043581169060243516604435610615565b34801561028d57600080fd5b5061024561063b565b3480156102a257600080fd5b506102ab610652565b6040805160ff9092168252519081900360200190f35b3480156102cd57600080fd5b5061021c600160a060020a036004351660243561065b565b3480156102f157600080fd5b506102fa610678565b005b34801561030857600080fd5b5061021c600160a060020a03600435166024356106dc565b34801561032c57600080fd5b506102fa600435610705565b34801561034457600080fd5b5061021c600160a060020a0360043516610712565b34801561036557600080fd5b5061021c61072b565b34801561037a57600080fd5b506102fa610734565b34801561038f57600080fd5b50610245600160a060020a036004351661073f565b3480156103b057600080fd5b506102fa61075a565b3480156103c557600080fd5b506102fa600160a060020a03600435166024356107c4565b3480156103e957600080fd5b506102fa600160a060020a03600435166107d2565b34801561040a57600080fd5b506102fa6107ef565b34801561041f57600080fd5b50610428610855565b60408051600160a060020a039092168252519081900360200190f35b34801561045057600080fd5b5061021c610864565b34801561046557600080fd5b50610183610875565b34801561047a57600080fd5b506102fa600160a060020a03600435166108d6565b34801561049b57600080fd5b506102fa6108f3565b3480156104b057600080fd5b5061021c600160a060020a03600435166024356108fc565b3480156104d457600080fd5b5061021c600160a060020a0360043516602435610919565b3480156104f857600080fd5b5061021c600160a060020a0360043516610936565b34801561051957600080fd5b50610245600160a060020a0360043581169060243516610949565b34801561054057600080fd5b506102fa600160a060020a0360043516610974565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105e15780601f106105b6576101008083540402835291602001916105e1565b820191906000526020600020905b8154815290600101906020018083116105c457829003601f168201915b5050505050905090565b60055460009060ff16156105fe57600080fd5b6106088383610990565b9392505050565b60035490565b60055460009060ff161561062857600080fd5b6106338484846109fc565b949350505050565b610643610652565b60ff16600a0a63773594000281565b60095460ff1690565b60055460009060ff161561066e57600080fd5b6106088383610ab3565b61068133610712565b151561068c57600080fd5b60055460ff16151561069d57600080fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006106e733610936565b15156106f257600080fd5b6106fc8383610b51565b50600192915050565b61070f3382610bfd565b50565b600061072560048363ffffffff610ca816565b92915050565b60055460ff1690565b61073d33610cdf565b565b600160a060020a031660009081526001602052604090205490565b610762610864565b151561076d57600080fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6107ce8282610d27565b5050565b6107db33610712565b15156107e657600080fd5b61070f81610dd7565b6107f833610712565b151561080357600080fd5b60055460ff161561081357600080fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b600054600160a060020a031690565b600054600160a060020a0316331490565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105e15780601f106105b6576101008083540402835291602001916105e1565b6108df33610936565b15156108ea57600080fd5b61070f81610e1f565b61073d33610e67565b60055460009060ff161561090f57600080fd5b6106088383610eaf565b60055460009060ff161561092c57600080fd5b6106088383610efa565b600061072560068363ffffffff610ca816565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b61097c610864565b151561098757600080fd5b61070f81610f07565b6000600160a060020a03831615156109a757600080fd5b336000818152600260209081526040808320600160a060020a0388168085529083529281902086905580518681529051929392600080516020611117833981519152929181900390910190a350600192915050565b600160a060020a0383166000908152600260209081526040808320338452909152812054610a30908363ffffffff610f8416565b600160a060020a0385166000908152600260209081526040808320338452909152902055610a5f848484610f9b565b600160a060020a038416600081815260026020908152604080832033808552908352928190205481519081529051929392600080516020611117833981519152929181900390910190a35060019392505050565b6000600160a060020a0383161515610aca57600080fd5b336000908152600260209081526040808320600160a060020a0387168452909152902054610afe908363ffffffff61106a16565b336000818152600260209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020611117833981519152929081900390910190a350600192915050565b600160a060020a0382161515610b6657600080fd5b600354610b79908263ffffffff61106a16565b600355600160a060020a038216600090815260016020526040902054610ba5908263ffffffff61106a16565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515610c1257600080fd5b600354610c25908263ffffffff610f8416565b600355600160a060020a038216600090815260016020526040902054610c51908263ffffffff610f8416565b600160a060020a0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a0382161515610cbf57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610cf060048263ffffffff61107c16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b600160a060020a0382166000908152600260209081526040808320338452909152902054610d5b908263ffffffff610f8416565b600160a060020a0383166000908152600260209081526040808320338452909152902055610d898282610bfd565b600160a060020a038216600081815260026020908152604080832033808552908352928190205481519081529051929392600080516020611117833981519152929181900390910190a35050565b610de860048263ffffffff6110c816565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610e3060068263ffffffff6110c816565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610e7860068263ffffffff61107c16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0383161515610ec657600080fd5b336000908152600260209081526040808320600160a060020a0387168452909152902054610afe908363ffffffff610f8416565b60006106fc338484610f9b565b600160a060020a0381161515610f1c57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008083831115610f9457600080fd5b5050900390565b600160a060020a0382161515610fb057600080fd5b600160a060020a038316600090815260016020526040902054610fd9908263ffffffff610f8416565b600160a060020a03808516600090815260016020526040808220939093559084168152205461100e908263ffffffff61106a16565b600160a060020a0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561060857600080fd5b600160a060020a038116151561109157600080fd5b61109b8282610ca8565b15156110a657600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a03811615156110dd57600080fd5b6110e78282610ca8565b156110f157600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820a365226cd8e1bb8ff1bdf473c35428b14762366bb298dc678a042cd2918a07c90029

Deployed Bytecode

0x6080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461016e578063095ea7b3146101f857806318160ddd1461023057806323b872dd146102575780632ff2e9dc14610281578063313ce5671461029657806339509351146102c15780633f4ba83a146102e557806340c10f19146102fc57806342966c681461032057806346fbf68e146103385780635c975abb146103595780636ef8d66d1461036e57806370a0823114610383578063715018a6146103a457806379cc6790146103b957806382dc1ec4146103dd5780638456cb59146103fe5780638da5cb5b146104135780638f32d59b1461044457806395d89b4114610459578063983b2d561461046e578063986502751461048f578063a457c2d7146104a4578063a9059cbb146104c8578063aa271e1a146104ec578063dd62ed3e1461050d578063f2fde38b14610534575b600080fd5b34801561017a57600080fd5b50610183610555565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bd5781810151838201526020016101a5565b50505050905090810190601f1680156101ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020457600080fd5b5061021c600160a060020a03600435166024356105eb565b604080519115158252519081900360200190f35b34801561023c57600080fd5b5061024561060f565b60408051918252519081900360200190f35b34801561026357600080fd5b5061021c600160a060020a0360043581169060243516604435610615565b34801561028d57600080fd5b5061024561063b565b3480156102a257600080fd5b506102ab610652565b6040805160ff9092168252519081900360200190f35b3480156102cd57600080fd5b5061021c600160a060020a036004351660243561065b565b3480156102f157600080fd5b506102fa610678565b005b34801561030857600080fd5b5061021c600160a060020a03600435166024356106dc565b34801561032c57600080fd5b506102fa600435610705565b34801561034457600080fd5b5061021c600160a060020a0360043516610712565b34801561036557600080fd5b5061021c61072b565b34801561037a57600080fd5b506102fa610734565b34801561038f57600080fd5b50610245600160a060020a036004351661073f565b3480156103b057600080fd5b506102fa61075a565b3480156103c557600080fd5b506102fa600160a060020a03600435166024356107c4565b3480156103e957600080fd5b506102fa600160a060020a03600435166107d2565b34801561040a57600080fd5b506102fa6107ef565b34801561041f57600080fd5b50610428610855565b60408051600160a060020a039092168252519081900360200190f35b34801561045057600080fd5b5061021c610864565b34801561046557600080fd5b50610183610875565b34801561047a57600080fd5b506102fa600160a060020a03600435166108d6565b34801561049b57600080fd5b506102fa6108f3565b3480156104b057600080fd5b5061021c600160a060020a03600435166024356108fc565b3480156104d457600080fd5b5061021c600160a060020a0360043516602435610919565b3480156104f857600080fd5b5061021c600160a060020a0360043516610936565b34801561051957600080fd5b50610245600160a060020a0360043581169060243516610949565b34801561054057600080fd5b506102fa600160a060020a0360043516610974565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105e15780601f106105b6576101008083540402835291602001916105e1565b820191906000526020600020905b8154815290600101906020018083116105c457829003601f168201915b5050505050905090565b60055460009060ff16156105fe57600080fd5b6106088383610990565b9392505050565b60035490565b60055460009060ff161561062857600080fd5b6106338484846109fc565b949350505050565b610643610652565b60ff16600a0a63773594000281565b60095460ff1690565b60055460009060ff161561066e57600080fd5b6106088383610ab3565b61068133610712565b151561068c57600080fd5b60055460ff16151561069d57600080fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006106e733610936565b15156106f257600080fd5b6106fc8383610b51565b50600192915050565b61070f3382610bfd565b50565b600061072560048363ffffffff610ca816565b92915050565b60055460ff1690565b61073d33610cdf565b565b600160a060020a031660009081526001602052604090205490565b610762610864565b151561076d57600080fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6107ce8282610d27565b5050565b6107db33610712565b15156107e657600080fd5b61070f81610dd7565b6107f833610712565b151561080357600080fd5b60055460ff161561081357600080fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b600054600160a060020a031690565b600054600160a060020a0316331490565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105e15780601f106105b6576101008083540402835291602001916105e1565b6108df33610936565b15156108ea57600080fd5b61070f81610e1f565b61073d33610e67565b60055460009060ff161561090f57600080fd5b6106088383610eaf565b60055460009060ff161561092c57600080fd5b6106088383610efa565b600061072560068363ffffffff610ca816565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b61097c610864565b151561098757600080fd5b61070f81610f07565b6000600160a060020a03831615156109a757600080fd5b336000818152600260209081526040808320600160a060020a0388168085529083529281902086905580518681529051929392600080516020611117833981519152929181900390910190a350600192915050565b600160a060020a0383166000908152600260209081526040808320338452909152812054610a30908363ffffffff610f8416565b600160a060020a0385166000908152600260209081526040808320338452909152902055610a5f848484610f9b565b600160a060020a038416600081815260026020908152604080832033808552908352928190205481519081529051929392600080516020611117833981519152929181900390910190a35060019392505050565b6000600160a060020a0383161515610aca57600080fd5b336000908152600260209081526040808320600160a060020a0387168452909152902054610afe908363ffffffff61106a16565b336000818152600260209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020611117833981519152929081900390910190a350600192915050565b600160a060020a0382161515610b6657600080fd5b600354610b79908263ffffffff61106a16565b600355600160a060020a038216600090815260016020526040902054610ba5908263ffffffff61106a16565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515610c1257600080fd5b600354610c25908263ffffffff610f8416565b600355600160a060020a038216600090815260016020526040902054610c51908263ffffffff610f8416565b600160a060020a0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a0382161515610cbf57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610cf060048263ffffffff61107c16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b600160a060020a0382166000908152600260209081526040808320338452909152902054610d5b908263ffffffff610f8416565b600160a060020a0383166000908152600260209081526040808320338452909152902055610d898282610bfd565b600160a060020a038216600081815260026020908152604080832033808552908352928190205481519081529051929392600080516020611117833981519152929181900390910190a35050565b610de860048263ffffffff6110c816565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610e3060068263ffffffff6110c816565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610e7860068263ffffffff61107c16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0383161515610ec657600080fd5b336000908152600260209081526040808320600160a060020a0387168452909152902054610afe908363ffffffff610f8416565b60006106fc338484610f9b565b600160a060020a0381161515610f1c57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008083831115610f9457600080fd5b5050900390565b600160a060020a0382161515610fb057600080fd5b600160a060020a038316600090815260016020526040902054610fd9908263ffffffff610f8416565b600160a060020a03808516600090815260016020526040808220939093559084168152205461100e908263ffffffff61106a16565b600160a060020a0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561060857600080fd5b600160a060020a038116151561109157600080fd5b61109b8282610ca8565b15156110a657600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a03811615156110dd57600080fd5b6110e78282610ca8565b156110f157600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820a365226cd8e1bb8ff1bdf473c35428b14762366bb298dc678a042cd2918a07c90029

Swarm Source

bzzr://a365226cd8e1bb8ff1bdf473c35428b14762366bb298dc678a042cd2918a07c9
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.