ETH Price: $3,406.09 (-1.12%)
Gas: 5 Gwei

Token

Crypto Commonwealth (COMM)
 

Overview

Max Total Supply

1,000,000,000 COMM

Holders

1,803

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 COMM

Value
$0.00
0xfb5561e5f77bca2a3500751f1c99970289e89a1d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
COMM

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 9: Comm.sol
pragma solidity ^0.5.8;

import "./SafeMath.sol";
import "./Ownable.sol";
import "./ERC20.sol";
import "./ERC20Detailed.sol";
import "./MinterRole.sol";


// ----------------------------------------------------------------------------
// Crypto Commonwealth token contract
// Symbol      : COMM
// Name        : Crypto Commonwealth
// Total supply: 1000000000
// Decimals    : 18
// ----------------------------------------------------------------------------

// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ----------------------------------------------------------------------------
contract COMM is Ownable, ERC20, MinterRole, ERC20Detailed {


    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    constructor () public ERC20Detailed("Crypto Commonwealth", "COMM", 18) {
        _mint(msg.sender, 1000000000 * (10 ** uint256(decimals())));
    }


    // ------------------------------------------------------------------------
    // @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;
    }

    // ------------------------------------------------------------------------
    //@dev Destroys `amount` tokens from the caller.
    //See {ERC20-_burn}.
    // ------------------------------------------------------------------------
    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    // ------------------------------------------------------------------------
    // Don't accept ETH
    // ------------------------------------------------------------------------
    function() external payable {
        revert();
    }
}

File 2 of 9: Context.sol
pragma solidity 0.5.8;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 9: ERC20.sol
pragma solidity 0.5.8;

import "./Context.sol";
import "./IERC20.sol";
import "./SafeMath.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

File 4 of 9: ERC20Detailed.sol
pragma solidity ^0.5.8;

import "./IERC20.sol";

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * > Note that this information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * `IERC20.balanceOf` and `IERC20.transfer`.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

File 5 of 9: IERC20.sol
pragma solidity 0.5.8;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 of 9: MinterRole.sol
pragma solidity ^0.5.8;

import "./Roles.sol";

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), "MinterRole: caller does not have the Minter role");
        _;
    }

    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);
    }
}

File 7 of 9: Ownable.sol
pragma solidity 0.5.8;

import "./Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where there is an account
 * (owner) that can be granted exclusive access to specific functions.
 *
 * This module is used through inheritance by using the modifier `onlyOwner`.
 * 
 * To change ownership, use a 2-part nominate-accept pattern.
 * 
 * This contract is loosely based off of https://git.io/JenNF but additionally requires new owners
 * to accept ownership before the transition occurs.
 */
contract Ownable is Context {
    address private _owner;
    address public _nominatedOwner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    function _onlyOwner() internal view {
        require(_msgSender() == _owner, "caller is not owner");
    }

    /**
     * @dev Nominates a new owner `newOwner`.
     * Requires a follow-up `acceptOwnership`. 
     * Can only be called by the current owner.
     */
    function nominateNewOwner(address newOwner) external onlyOwner {
        require(newOwner != address(0), "new owner is 0 address");
        emit NewOwnerNominated(_owner, newOwner);
        _nominatedOwner = newOwner;
    }

    /**
     * @dev Accepts ownership of the contract.
     */
    function acceptOwnership() external {
        require(_nominatedOwner == _msgSender(), "unauthorized");
        require(_nominatedOwner != address(0), "cannot accept for 0 address");
        emit OwnershipTransferred(_owner, _nominatedOwner);
        _owner = _nominatedOwner;
    }

    /** Set `_owner` to the 0 address.
     * Only do this to deliberately lock in the current permissions.
     */
    function renounceOwnership() external onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

File 8 of 9: Roles.sol
pragma solidity ^0.5.8;

/**
 * @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(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        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), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

File 9 of 9: SafeMath.sol
pragma solidity 0.5.8;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"nominateNewOwner","outputs":[],"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":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"","type":"bool"}],"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":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","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":"acceptOwnership","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":"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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","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":"_nominatedOwner","outputs":[{"name":"","type":"address"}],"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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"NewOwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

60806040523480156200001157600080fd5b506040518060400160405280601381526020017f43727970746f20436f6d6d6f6e7765616c7468000000000000000000000000008152506040518060400160405280600481526020017f434f4d4d0000000000000000000000000000000000000000000000000000000081525060126000620000926200016460201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000ed336200016960201b60201c565b82516200010290600690602086019062000486565b5081516200011890600790602085019062000486565b506008805460ff191660ff92909216919091179055506200015e90503362000146620001bb602090811b901c565b60ff16600a0a633b9aca0002620001c460201b60201c565b62000528565b335b90565b62000184816005620002e360201b620012451790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60085460ff1690565b6001600160a01b0382166200023a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000256816004546200038760201b62000eb11790919060201c565b6004556001600160a01b0382166000908152600260209081526040909120546200028b91839062000eb162000387821b17901c565b6001600160a01b03831660008181526002602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002f582826200040360201b60201c565b156200036257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620003fc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b03821662000466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062001a4e6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004c957805160ff1916838001178555620004f9565b82800160010185558215620004f9579182015b82811115620004f9578251825591602001919060010190620004dc565b50620005079291506200050b565b5090565b6200016691905b8082111562000507576000815560010162000512565b61151680620005386000396000f3fe60806040526004361061012a5760003560e01c8063715018a6116100ab578063986502751161006f5780639865027514610442578063a457c2d714610457578063a9059cbb14610490578063aa271e1a146104c9578063aaf380f1146104fc578063dd62ed3e146105115761012a565b8063715018a61461039f57806379ba5097146103b45780638da5cb5b146103c957806395d89b41146103fa578063983b2d561461040f5761012a565b8063313ce567116100f2578063313ce567146102a557806339509351146102d057806340c10f191461030957806342966c681461034257806370a082311461036c5761012a565b806306fdde031461012f578063095ea7b3146101b95780631627540c1461020657806318160ddd1461023b57806323b872dd14610262575b600080fd5b34801561013b57600080fd5b5061014461054c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c557600080fd5b506101f2600480360360408110156101dc57600080fd5b506001600160a01b0381351690602001356105e2565b604080519115158252519081900360200190f35b34801561021257600080fd5b506102396004803603602081101561022957600080fd5b50356001600160a01b03166105ff565b005b34801561024757600080fd5b506102506106c0565b60408051918252519081900360200190f35b34801561026e57600080fd5b506101f26004803603606081101561028557600080fd5b506001600160a01b038135811691602081013590911690604001356106c6565b3480156102b157600080fd5b506102ba610753565b6040805160ff9092168252519081900360200190f35b3480156102dc57600080fd5b506101f2600480360360408110156102f357600080fd5b506001600160a01b03813516906020013561075c565b34801561031557600080fd5b506101f26004803603604081101561032c57600080fd5b506001600160a01b0381351690602001356107b0565b34801561034e57600080fd5b506102396004803603602081101561036557600080fd5b5035610803565b34801561037857600080fd5b506102506004803603602081101561038f57600080fd5b50356001600160a01b0316610810565b3480156103ab57600080fd5b5061023961082b565b3480156103c057600080fd5b5061023961087d565b3480156103d557600080fd5b506103de6109ab565b604080516001600160a01b039092168252519081900360200190f35b34801561040657600080fd5b506101446109ba565b34801561041b57600080fd5b506102396004803603602081101561043257600080fd5b50356001600160a01b0316610a1b565b34801561044e57600080fd5b50610239610a6b565b34801561046357600080fd5b506101f26004803603604081101561047a57600080fd5b506001600160a01b038135169060200135610a76565b34801561049c57600080fd5b506101f2600480360360408110156104b357600080fd5b506001600160a01b038135169060200135610ae4565b3480156104d557600080fd5b506101f2600480360360208110156104ec57600080fd5b50356001600160a01b0316610af8565b34801561050857600080fd5b506103de610b11565b34801561051d57600080fd5b506102506004803603604081101561053457600080fd5b506001600160a01b0381358116916020013516610b20565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b5050505050905090565b60006105f66105ef610b4b565b8484610b4f565b50600192915050565b610607610c41565b6001600160a01b0381166106655760408051600160e51b62461bcd02815260206004820152601660248201527f6e6577206f776e65722069732030206164647265737300000000000000000000604482015290519081900360640190fd5b600080546040516001600160a01b03808516939216917fb59bab42c554cfd49f4f001c983b6ed93ede25748b10114b7d1cb1b3c97df7af91a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b60045490565b60006106d3848484610cb3565b610749846106df610b4b565b61074485604051806060016040528060288152602001611412602891396001600160a01b038a1660009081526003602052604081209061071d610b4b565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610e1716565b610b4f565b5060019392505050565b60085460ff1690565b60006105f6610769610b4b565b84610744856003600061077a610b4b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610eb116565b60006107bb33610af8565b6107f957604051600160e51b62461bcd0281526004018080602001828103825260308152602001806113c16030913960400191505060405180910390fd5b6105f68383610f15565b61080d338261100a565b50565b6001600160a01b031660009081526002602052604090205490565b610833610c41565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610885610b4b565b6001546001600160a01b039081169116146108ea5760408051600160e51b62461bcd02815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015290519081900360640190fd5b6001546001600160a01b031661094a5760408051600160e51b62461bcd02815260206004820152601b60248201527f63616e6e6f742061636365707420666f72203020616464726573730000000000604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d85780601f106105ad576101008083540402835291602001916105d8565b610a2433610af8565b610a6257604051600160e51b62461bcd0281526004018080602001828103825260308152602001806113c16030913960400191505060405180910390fd5b61080d81611109565b610a7433611151565b565b60006105f6610a83610b4b565b84610744856040518060600160405280602581526020016114c66025913960036000610aad610b4b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610e1716565b60006105f6610af1610b4b565b8484610cb3565b6000610b0b60058363ffffffff61119916565b92915050565b6001546001600160a01b031681565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610b9757604051600160e51b62461bcd0281526004018080602001828103825260248152602001806114a26024913960400191505060405180910390fd5b6001600160a01b038216610bdf57604051600160e51b62461bcd0281526004018080602001828103825260228152602001806113796022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000546001600160a01b0316610c55610b4b565b6001600160a01b031614610a745760408051600160e51b62461bcd02815260206004820152601360248201527f63616c6c6572206973206e6f74206f776e657200000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038316610cfb57604051600160e51b62461bcd02815260040180806020018281038252602581526020018061147d6025913960400191505060405180910390fd5b6001600160a01b038216610d4357604051600160e51b62461bcd0281526004018080602001828103825260238152602001806113346023913960400191505060405180910390fd5b610d868160405180606001604052806026815260200161139b602691396001600160a01b038616600090815260026020526040902054919063ffffffff610e1716565b6001600160a01b038085166000908152600260205260408082209390935590841681522054610dbb908263ffffffff610eb116565b6001600160a01b0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ea957604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e6e578181015183820152602001610e56565b50505050905090810190601f168015610e9b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610f0e5760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610f735760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600454610f86908263ffffffff610eb116565b6004556001600160a01b038216600090815260026020526040902054610fb2908263ffffffff610eb116565b6001600160a01b03831660008181526002602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661105257604051600160e51b62461bcd02815260040180806020018281038252602181526020018061145c6021913960400191505060405180910390fd5b61109581604051806060016040528060228152602001611357602291396001600160a01b038516600090815260026020526040902054919063ffffffff610e1716565b6001600160a01b0383166000908152600260205260409020556004546110c1908263ffffffff61120316565b6004556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61111a60058263ffffffff61124516565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61116260058263ffffffff6112c916565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b0382166111e357604051600160e51b62461bcd02815260040180806020018281038252602281526020018061143a6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6000610f0e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e17565b61124f8282611199565b156112a45760408051600160e51b62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6112d38282611199565b61131157604051600160e51b62461bcd0281526004018080602001828103825260218152602001806113f16021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa165627a7a7230582001e44a5f1f475b8559abf9a928a515363016d9e58c5cdbe32ba7aa0a9bd5539a0029526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x60806040526004361061012a5760003560e01c8063715018a6116100ab578063986502751161006f5780639865027514610442578063a457c2d714610457578063a9059cbb14610490578063aa271e1a146104c9578063aaf380f1146104fc578063dd62ed3e146105115761012a565b8063715018a61461039f57806379ba5097146103b45780638da5cb5b146103c957806395d89b41146103fa578063983b2d561461040f5761012a565b8063313ce567116100f2578063313ce567146102a557806339509351146102d057806340c10f191461030957806342966c681461034257806370a082311461036c5761012a565b806306fdde031461012f578063095ea7b3146101b95780631627540c1461020657806318160ddd1461023b57806323b872dd14610262575b600080fd5b34801561013b57600080fd5b5061014461054c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c557600080fd5b506101f2600480360360408110156101dc57600080fd5b506001600160a01b0381351690602001356105e2565b604080519115158252519081900360200190f35b34801561021257600080fd5b506102396004803603602081101561022957600080fd5b50356001600160a01b03166105ff565b005b34801561024757600080fd5b506102506106c0565b60408051918252519081900360200190f35b34801561026e57600080fd5b506101f26004803603606081101561028557600080fd5b506001600160a01b038135811691602081013590911690604001356106c6565b3480156102b157600080fd5b506102ba610753565b6040805160ff9092168252519081900360200190f35b3480156102dc57600080fd5b506101f2600480360360408110156102f357600080fd5b506001600160a01b03813516906020013561075c565b34801561031557600080fd5b506101f26004803603604081101561032c57600080fd5b506001600160a01b0381351690602001356107b0565b34801561034e57600080fd5b506102396004803603602081101561036557600080fd5b5035610803565b34801561037857600080fd5b506102506004803603602081101561038f57600080fd5b50356001600160a01b0316610810565b3480156103ab57600080fd5b5061023961082b565b3480156103c057600080fd5b5061023961087d565b3480156103d557600080fd5b506103de6109ab565b604080516001600160a01b039092168252519081900360200190f35b34801561040657600080fd5b506101446109ba565b34801561041b57600080fd5b506102396004803603602081101561043257600080fd5b50356001600160a01b0316610a1b565b34801561044e57600080fd5b50610239610a6b565b34801561046357600080fd5b506101f26004803603604081101561047a57600080fd5b506001600160a01b038135169060200135610a76565b34801561049c57600080fd5b506101f2600480360360408110156104b357600080fd5b506001600160a01b038135169060200135610ae4565b3480156104d557600080fd5b506101f2600480360360208110156104ec57600080fd5b50356001600160a01b0316610af8565b34801561050857600080fd5b506103de610b11565b34801561051d57600080fd5b506102506004803603604081101561053457600080fd5b506001600160a01b0381358116916020013516610b20565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b5050505050905090565b60006105f66105ef610b4b565b8484610b4f565b50600192915050565b610607610c41565b6001600160a01b0381166106655760408051600160e51b62461bcd02815260206004820152601660248201527f6e6577206f776e65722069732030206164647265737300000000000000000000604482015290519081900360640190fd5b600080546040516001600160a01b03808516939216917fb59bab42c554cfd49f4f001c983b6ed93ede25748b10114b7d1cb1b3c97df7af91a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b60045490565b60006106d3848484610cb3565b610749846106df610b4b565b61074485604051806060016040528060288152602001611412602891396001600160a01b038a1660009081526003602052604081209061071d610b4b565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610e1716565b610b4f565b5060019392505050565b60085460ff1690565b60006105f6610769610b4b565b84610744856003600061077a610b4b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610eb116565b60006107bb33610af8565b6107f957604051600160e51b62461bcd0281526004018080602001828103825260308152602001806113c16030913960400191505060405180910390fd5b6105f68383610f15565b61080d338261100a565b50565b6001600160a01b031660009081526002602052604090205490565b610833610c41565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610885610b4b565b6001546001600160a01b039081169116146108ea5760408051600160e51b62461bcd02815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015290519081900360640190fd5b6001546001600160a01b031661094a5760408051600160e51b62461bcd02815260206004820152601b60248201527f63616e6e6f742061636365707420666f72203020616464726573730000000000604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105d85780601f106105ad576101008083540402835291602001916105d8565b610a2433610af8565b610a6257604051600160e51b62461bcd0281526004018080602001828103825260308152602001806113c16030913960400191505060405180910390fd5b61080d81611109565b610a7433611151565b565b60006105f6610a83610b4b565b84610744856040518060600160405280602581526020016114c66025913960036000610aad610b4b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610e1716565b60006105f6610af1610b4b565b8484610cb3565b6000610b0b60058363ffffffff61119916565b92915050565b6001546001600160a01b031681565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610b9757604051600160e51b62461bcd0281526004018080602001828103825260248152602001806114a26024913960400191505060405180910390fd5b6001600160a01b038216610bdf57604051600160e51b62461bcd0281526004018080602001828103825260228152602001806113796022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000546001600160a01b0316610c55610b4b565b6001600160a01b031614610a745760408051600160e51b62461bcd02815260206004820152601360248201527f63616c6c6572206973206e6f74206f776e657200000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038316610cfb57604051600160e51b62461bcd02815260040180806020018281038252602581526020018061147d6025913960400191505060405180910390fd5b6001600160a01b038216610d4357604051600160e51b62461bcd0281526004018080602001828103825260238152602001806113346023913960400191505060405180910390fd5b610d868160405180606001604052806026815260200161139b602691396001600160a01b038616600090815260026020526040902054919063ffffffff610e1716565b6001600160a01b038085166000908152600260205260408082209390935590841681522054610dbb908263ffffffff610eb116565b6001600160a01b0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ea957604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e6e578181015183820152602001610e56565b50505050905090810190601f168015610e9b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610f0e5760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610f735760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600454610f86908263ffffffff610eb116565b6004556001600160a01b038216600090815260026020526040902054610fb2908263ffffffff610eb116565b6001600160a01b03831660008181526002602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661105257604051600160e51b62461bcd02815260040180806020018281038252602181526020018061145c6021913960400191505060405180910390fd5b61109581604051806060016040528060228152602001611357602291396001600160a01b038516600090815260026020526040902054919063ffffffff610e1716565b6001600160a01b0383166000908152600260205260409020556004546110c1908263ffffffff61120316565b6004556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61111a60058263ffffffff61124516565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61116260058263ffffffff6112c916565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b0382166111e357604051600160e51b62461bcd02815260040180806020018281038252602281526020018061143a6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6000610f0e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e17565b61124f8282611199565b156112a45760408051600160e51b62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6112d38282611199565b61131157604051600160e51b62461bcd0281526004018080602001828103825260218152602001806113f16021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa165627a7a7230582001e44a5f1f475b8559abf9a928a515363016d9e58c5cdbe32ba7aa0a9bd5539a0029

Deployed Bytecode Sourcemap

716:1481:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2180:8;;;644:81:3;;8:9:-1;5:2;;;30:1;27;20:12;5:2;644:81:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;644:81:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2482:149:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2482:149:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2482:149:2;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1638:223:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1638:223:6;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1638:223:6;-1:-1:-1;;;;;1638:223:6;;:::i;:::-;;1541:89:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1541:89:2;;;:::i;:::-;;;;;;;;;;;;;;;;3089:300;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3089:300:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3089:300:2;;;;;;;;;;;;;;;;;:::i;1478:81:3:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1478:81:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3784:207:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3784:207:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3784:207:2;;;;;;;;:::i;1501:128:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1501:128:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1501:128:0;;;;;;;;:::i;1873:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1873:79:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1873:79:0;;:::i;1688:108:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1688:108:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1688:108:2;-1:-1:-1;;;;;1688:108:2;;:::i;2334:139:6:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2334:139:6;;;:::i;1930:282::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1930:282:6;;;:::i;1135:77::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1135:77:6;;;:::i;:::-;;;;-1:-1:-1;;;;;1135:77:6;;;;;;;;;;;;;;838:85:3;;8:9:-1;5:2;;;30:1;27;20:12;5:2;838:85:3;;;:::i;559:90:5:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;559:90:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;559:90:5;-1:-1:-1;;;;;559:90:5;;:::i;655:75::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;655:75:5;;;:::i;4478:258:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4478:258:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4478:258:2;;;;;;;;:::i;1999:155::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1999:155:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1999:155:2;;;;;;;;:::i;446:107:5:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;446:107:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;446:107:5;-1:-1:-1;;;;;446:107:5;;:::i;591:30:6:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;591:30:6;;;:::i;2212:132:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2212:132:2;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2212:132:2;;;;;;;;;;:::i;644:81:3:-;713:5;706:12;;;;;;;;-1:-1:-1;;706:12:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;681:13;;706:12;;713:5;;706:12;;713:5;706:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644:81;:::o;2482:149:2:-;2548:4;2564:39;2573:12;:10;:12::i;:::-;2587:7;2596:6;2564:8;:39::i;:::-;-1:-1:-1;2620:4:2;2482:149;;;;:::o;1638:223:6:-;1331:12;:10;:12::i;:::-;-1:-1:-1;;;;;1719:22:6;;1711:57;;;;;-1:-1:-1;;;;;1711:57:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;1801:6;;;1783:35;;-1:-1:-1;;;;;1783:35:6;;;;1801:6;;;1783:35;;;1828:15;:26;;-1:-1:-1;;;;;;1828:26:6;-1:-1:-1;;;;;1828:26:6;;;;;;;;;;1638:223::o;1541:89:2:-;1611:12;;1541:89;:::o;3089:300::-;3178:4;3194:36;3204:6;3212:9;3223:6;3194:9;:36::i;:::-;3240:121;3249:6;3257:12;:10;:12::i;:::-;3271:89;3309:6;3271:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3271:19:2;;;;;;:11;:19;;;;;;3291:12;:10;:12::i;:::-;-1:-1:-1;;;;;3271:33:2;;;;;;;;;;;;-1:-1:-1;3271:33:2;;;:89;;:37;:89;:::i;:::-;3240:8;:121::i;:::-;-1:-1:-1;3378:4:2;3089:300;;;;;:::o;1478:81:3:-;1543:9;;;;1478:81;:::o;3784:207:2:-;3864:4;3880:83;3889:12;:10;:12::i;:::-;3903:7;3912:50;3951:10;3912:11;:25;3924:12;:10;:12::i;:::-;-1:-1:-1;;;;;3912:25:2;;;;;;;;;;;;;;;;;-1:-1:-1;3912:25:2;;;:34;;;;;;;;;;;:50;:38;:50;:::i;1501:128:0:-;1569:4;349:20:5;358:10;349:8;:20::i;:::-;341:81;;;;-1:-1:-1;;;;;341:81:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1585:16:0;1591:2;1595:5;1585;:16::i;1873:79::-;1920:25;1926:10;1938:6;1920:5;:25::i;:::-;1873:79;:::o;1688:108:2:-;-1:-1:-1;;;;;1771:18:2;1745:7;1771:18;;;:9;:18;;;;;;;1688:108::o;2334:139:6:-;1331:12;:10;:12::i;:::-;2434:1;2418:6;;2397:40;;-1:-1:-1;;;;;2418:6:6;;;;2397:40;;2434:1;;2397:40;2464:1;2447:19;;-1:-1:-1;;;;;;2447:19:6;;;2334:139::o;1930:282::-;2003:12;:10;:12::i;:::-;1984:15;;-1:-1:-1;;;;;1984:15:6;;;:31;;;1976:56;;;;;-1:-1:-1;;;;;1976:56:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;2050:15;;-1:-1:-1;;;;;2050:15:6;2042:69;;;;;-1:-1:-1;;;;;2042:69:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;2155:15;;;2147:6;;2126:45;;-1:-1:-1;;;;;2155:15:6;;;;2147:6;;;;2126:45;;;2190:15;;;2181:24;;-1:-1:-1;;;;;;2181:24:6;-1:-1:-1;;;;;2190:15:6;;;2181:24;;;;;;1930:282::o;1135:77::-;1173:7;1199:6;-1:-1:-1;;;;;1199:6:6;1135:77;:::o;838:85:3:-;909:7;902:14;;;;;;;;-1:-1:-1;;902:14:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;877:13;;902:14;;909:7;;902:14;;909:7;902:14;;;;;;;;;;;;;;;;;;;;;;;;559:90:5;349:20;358:10;349:8;:20::i;:::-;341:81;;;;-1:-1:-1;;;;;341:81:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;623:19;634:7;623:10;:19::i;655:75::-;698:25;712:10;698:13;:25::i;:::-;655:75::o;4478:258:2:-;4563:4;4579:129;4588:12;:10;:12::i;:::-;4602:7;4611:96;4650:15;4611:96;;;;;;;;;;;;;;;;;:11;:25;4623:12;:10;:12::i;:::-;-1:-1:-1;;;;;4611:25:2;;;;;;;;;;;;;;;;;-1:-1:-1;4611:25:2;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;1999:155::-;2068:4;2084:42;2094:12;:10;:12::i;:::-;2108:9;2119:6;2084:9;:42::i;446:107:5:-;502:4;525:21;:8;538:7;525:21;:12;:21;:::i;:::-;518:28;446:107;-1:-1:-1;;446:107:5:o;591:30:6:-;;;-1:-1:-1;;;;;591:30:6;;:::o;2212:132:2:-;-1:-1:-1;;;;;2310:18:2;;;2284:7;2310:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2212:132::o;787:96:1:-;866:10;787:96;:::o;7332:332:2:-;-1:-1:-1;;;;;7425:19:2;;7417:68;;;;-1:-1:-1;;;;;7417:68:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7503:21:2;;7495:68;;;;-1:-1:-1;;;;;7495:68:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7574:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7625:32;;;;;;;;;;;;;;;;;7332:332;;;:::o;1367:107:6:-;1437:6;;-1:-1:-1;;;;;1437:6:6;1421:12;:10;:12::i;:::-;-1:-1:-1;;;;;1421:22:6;;1413:54;;;;;-1:-1:-1;;;;;1413:54:6;;;;;;;;;;;;;;;;;;;;;;;;;;;5210:464:2;-1:-1:-1;;;;;5307:20:2;;5299:70;;;;-1:-1:-1;;;;;5299:70:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5387:23:2;;5379:71;;;;-1:-1:-1;;;;;5379:71:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5481;5503:6;5481:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5481:17:2;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;5461:17:2;;;;;;;:9;:17;;;;;;:91;;;;5585:20;;;;;;;:32;;5610:6;5585:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;5562:20:2;;;;;;;:9;:20;;;;;;;;;:55;;;;5632:35;;;;;;;5562:20;;5632:35;;;;;;;;;;;;;5210:464;;;:::o;1843:187:8:-;1929:7;1964:12;1956:6;;;;1948:29;;;;-1:-1:-1;;;;;1948:29:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1948:29:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1999:5:8;;;1843:187::o;833:176::-;891:7;922:5;;;945:6;;;;937:46;;;;;-1:-1:-1;;;;;937:46:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;1001:1;833:176;-1:-1:-1;;;833:176:8:o;5944:302:2:-;-1:-1:-1;;;;;6019:21:2;;6011:65;;;;;-1:-1:-1;;;;;6011:65:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6102:12;;:24;;6119:6;6102:24;:16;:24;:::i;:::-;6087:12;:39;-1:-1:-1;;;;;6157:18:2;;;;;;:9;:18;;;;;;:30;;6180:6;6157:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;6136:18:2;;;;;;:9;:18;;;;;;;;:51;;;;6202:37;;;;;;;6136:18;;;;6202:37;;;;;;;;;;5944:302;;:::o;6565:342::-;-1:-1:-1;;;;;6640:21:2;;6632:67;;;;-1:-1:-1;;;;;6632:67:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6731:68;6754:6;6731:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6731:18:2;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;6710:18:2;;;;;;:9;:18;;;;;:89;6824:12;;:24;;6841:6;6824:24;:16;:24;:::i;:::-;6809:12;:39;6863:37;;;;;;;;6889:1;;-1:-1:-1;;;;;6863:37:2;;;;;;;;;;;;6565:342;;:::o;736:119:5:-;792:21;:8;805:7;792:21;:12;:21;:::i;:::-;828:20;;-1:-1:-1;;;;;828:20:5;;;;;;;;736:119;:::o;861:127::-;920:24;:8;936:7;920:24;:15;:24;:::i;:::-;959:22;;-1:-1:-1;;;;;959:22:5;;;;;;;;861:127;:::o;779:200:7:-;851:4;-1:-1:-1;;;;;875:21:7;;867:68;;;;-1:-1:-1;;;;;867:68:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;952:20:7;:11;:20;;;;;;;;;;;;;;;779:200::o;1273:134:8:-;1331:7;1357:43;1361:1;1364;1357:43;;;;;;;;;;;;;;;;;:3;:43::i;260:175:7:-;337:18;341:4;347:7;337:3;:18::i;:::-;336:19;328:63;;;;;-1:-1:-1;;;;;328:63:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;401:20:7;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;401:27:7;424:4;401:27;;;260:175::o;510:180::-;589:18;593:4;599:7;589:3;:18::i;:::-;581:64;;;;-1:-1:-1;;;;;581:64:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;655:20:7;678:5;655:20;;;;;;;;;;;:28;;-1:-1:-1;;655:28:7;;;510:180::o

Swarm Source

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