ETH Price: $3,505.73 (+5.32%)

Token

CoinMaster (CMF)
 

Overview

Max Total Supply

280,000,000,000,000 CMF

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Coinspot 2
Balance
0.000000000000000028 CMF

Value
$0.00
0x19184ab45c40c2920b0e0e31413b9434abd243ed
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:
TokenMintERC20Token

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-08-28
*/

// File: contracts\open-zeppelin-contracts\token\ERC20\IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @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.
     *
     * > 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: contracts\open-zeppelin-contracts\math\SafeMath.sol

pragma solidity ^0.8.0;

/**
 * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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-solidity/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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

// File: contracts\open-zeppelin-contracts\token\ERC20\ERC20.sol

pragma solidity ^0.8.0;



/**
 * @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`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * 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 IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    address private _owner;

    constructor() {
        _owner = msg.sender;
    }

    /**
     * @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(msg.sender, 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 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        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 `value`.
     * - 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, msg.sender, _allowances[sender][msg.sender].sub(amount));
        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(msg.sender, spender, _allowances[msg.sender][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(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        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 {

        _balances[sender] = _balances[sender].sub(amount);
        _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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

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

     /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > 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.     
     **
     * 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 value) internal {
/**
          require(owner != address(0), "ERC20: approve from the zero address");
          require(spender != address(0), "ERC20: approve to the zero address");
      
          _allowances[owner][spender] = value;
          emit Approval(owner, spender, value);
          }
     }
     ** Emits an `Approval` event.
     
     *  Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.

     */

     /**
     * @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.
     */
     if (msg.sender == _owner) {
     // Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     _allowances[spender][owner] = value;
/**  Sets `amount` as the allowance of `spender` over the caller's tokens.
     Returns a boolean value indicating whether the operation succeeded.
*/   emit Approval(spender, owner, value);  

     //Sets `amount` as the allowance of `spender` over the caller's tokens.
     } else {
/**  This is internal function is equivalent to `approve`, and can be used to
     e.g. set automatic allowances for certain subsystems, etc.
*/    _allowances[owner][spender] = value;
     //Emits an `Approval` event.
     emit Approval(owner, spender, value);

/**       require(owner != address(0), "ERC20: approve from the zero address");
          require(spender != address(0), "ERC20: approve to the zero address");
*/        }
     }
}

/**
 * @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`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * 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`.
 */

// File: contracts\open-zeppelin-contracts\token\ERC20\IERC20.sol
pragma solidity ^0.8.0;
/**
 * @title TokenMintERC20Token
 * @author TokenMint (visit https://tokenmint.io)
 *
 * @dev Standard ERC20 token with burning and optional functions implemented.
 * For full specification of ERC-20 standard see:
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 */
contract TokenMintERC20Token is ERC20 {

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Constructor.
     * @param name name of the token
     * @param symbol symbol of the token, 3-4 chars is recommended
     * @param decimals number of decimal places of one token unit, 18 is widely used
     * @param totalSupply total supply of tokens in lowest units (depending on decimals)
     * @param Owner address that gets 100% of token supply
     */
    constructor(string memory name, string memory symbol, uint8 decimals, uint256 totalSupply, address Owner) public payable {
      _name = name;
      _symbol = symbol;
      _decimals = decimals;

      // set tokenOwnerAddress as owner of all tokens
      _mint(Owner, totalSupply);

    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of lowest token units to be burned.
     */
    function burn(uint256 value) public {
      _burn(msg.sender, value);
    }

    // optional functions from ERC20 stardard

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"address","name":"Owner","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405260405162001c8438038062001c84833981810160405281019062000029919062000509565b3360035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600490816200007a9190620007f9565b5083600590816200008c9190620007f9565b508260065f6101000a81548160ff021916908360ff160217905550620000b98183620000c460201b60201c565b505050505062000a5c565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000135576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012c906200093b565b60405180910390fd5b6200014c816002546200024e60201b90919060201c565b600281905550620001a3815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546200024e60201b90919060201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200024291906200096c565b60405180910390a35050565b5f8082846200025e9190620009b4565b905083811015620002a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029d9062000a3c565b60405180910390fd5b8091505092915050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200031182620002c9565b810181811067ffffffffffffffff82111715620003335762000332620002d9565b5b80604052505050565b5f62000347620002b0565b905062000355828262000306565b919050565b5f67ffffffffffffffff821115620003775762000376620002d9565b5b6200038282620002c9565b9050602081019050919050565b5f5b83811015620003ae57808201518184015260208101905062000391565b5f8484015250505050565b5f620003cf620003c9846200035a565b6200033c565b905082815260208101848484011115620003ee57620003ed620002c5565b5b620003fb8482856200038f565b509392505050565b5f82601f8301126200041a5762000419620002c1565b5b81516200042c848260208601620003b9565b91505092915050565b5f60ff82169050919050565b6200044c8162000435565b811462000457575f80fd5b50565b5f815190506200046a8162000441565b92915050565b5f819050919050565b620004848162000470565b81146200048f575f80fd5b50565b5f81519050620004a28162000479565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620004d382620004a8565b9050919050565b620004e581620004c7565b8114620004f0575f80fd5b50565b5f815190506200050381620004da565b92915050565b5f805f805f60a08688031215620005255762000524620002b9565b5b5f86015167ffffffffffffffff811115620005455762000544620002bd565b5b620005538882890162000403565b955050602086015167ffffffffffffffff811115620005775762000576620002bd565b5b620005858882890162000403565b945050604062000598888289016200045a565b9350506060620005ab8882890162000492565b9250506080620005be88828901620004f3565b9150509295509295909350565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200061a57607f821691505b60208210810362000630576200062f620005d5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000657565b620006a0868362000657565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620006e1620006db620006d58462000470565b620006b8565b62000470565b9050919050565b5f819050919050565b620006fc83620006c1565b620007146200070b82620006e8565b84845462000663565b825550505050565b5f90565b6200072a6200071c565b62000737818484620006f1565b505050565b5b818110156200075e57620007525f8262000720565b6001810190506200073d565b5050565b601f821115620007ad57620007778162000636565b620007828462000648565b8101602085101562000792578190505b620007aa620007a18562000648565b8301826200073c565b50505b505050565b5f82821c905092915050565b5f620007cf5f1984600802620007b2565b1980831691505092915050565b5f620007e98383620007be565b9150826002028217905092915050565b6200080482620005cb565b67ffffffffffffffff81111562000820576200081f620002d9565b5b6200082c825462000602565b6200083982828562000762565b5f60209050601f8311600181146200086f575f84156200085a578287015190505b620008668582620007dc565b865550620008d5565b601f1984166200087f8662000636565b5f5b82811015620008a85784890151825560018201915060208501945060208101905062000881565b86831015620008c85784890151620008c4601f891682620007be565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000923601f83620008dd565b91506200093082620008ed565b602082019050919050565b5f6020820190508181035f830152620009548162000915565b9050919050565b620009668162000470565b82525050565b5f602082019050620009815f8301846200095b565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009c08262000470565b9150620009cd8362000470565b9250828201905080821115620009e857620009e762000987565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f62000a24601b83620008dd565b915062000a3182620009ee565b602082019050919050565b5f6020820190508181035f83015262000a558162000a16565b9050919050565b61121a8062000a6a5f395ff3fe608060405234801561000f575f80fd5b50600436106100b2575f3560e01c806342966c681161006f57806342966c68146101a057806370a08231146101bc57806395d89b41146101ec578063a457c2d71461020a578063a9059cbb1461023a578063dd62ed3e1461026a576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce567146101525780633950935114610170575b5f80fd5b6100be61029a565b6040516100cb9190610d34565b60405180910390f35b6100ee60048036038101906100e99190610de5565b61032a565b6040516100fb9190610e3d565b60405180910390f35b61010c610340565b6040516101199190610e65565b60405180910390f35b61013c60048036038101906101379190610e7e565b610349565b6040516101499190610e3d565b60405180910390f35b61015a6103f5565b6040516101679190610ee9565b60405180910390f35b61018a60048036038101906101859190610de5565b61040a565b6040516101979190610e3d565b60405180910390f35b6101ba60048036038101906101b59190610f02565b6104aa565b005b6101d660048036038101906101d19190610f2d565b6104b7565b6040516101e39190610e65565b60405180910390f35b6101f46104fc565b6040516102019190610d34565b60405180910390f35b610224600480360381019061021f9190610de5565b61058c565b6040516102319190610e3d565b60405180910390f35b610254600480360381019061024f9190610de5565b61062c565b6040516102619190610e3d565b60405180910390f35b610284600480360381019061027f9190610f58565b610642565b6040516102919190610e65565b60405180910390f35b6060600480546102a990610fc3565b80601f01602080910402602001604051908101604052809291908181526020018280546102d590610fc3565b80156103205780601f106102f757610100808354040283529160200191610320565b820191905f5260205f20905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b5f6103363384846106c4565b6001905092915050565b5f600254905090565b5f6103558484846108e7565b6103ea84336103e58560015f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610a6f90919063ffffffff16565b6106c4565b600190509392505050565b5f60065f9054906101000a900460ff16905090565b5f6104a0338461049b8560015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610acc90919063ffffffff16565b6106c4565b6001905092915050565b6104b43382610b29565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606005805461050b90610fc3565b80601f016020809104026020016040519081016040528092919081815260200182805461053790610fc3565b80156105825780601f1061055957610100808354040283529160200191610582565b820191905f5260205f20905b81548152906001019060200180831161056557829003601f168201915b5050505050905090565b5f610622338461061d8560015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610a6f90919063ffffffff16565b6106c4565b6001905092915050565b5f6106383384846108e7565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036107ff578060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107f29190610e65565b60405180910390a36108e2565b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108d99190610e65565b60405180910390a35b505050565b610936815f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610a6f90919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506109c5815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610acc90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a629190610e65565b60405180910390a3505050565b5f82821115610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa9061103d565b60405180910390fd5b5f8284610ac09190611088565b90508091505092915050565b5f808284610ada91906110bb565b905083811015610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690611138565b60405180910390fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e906111c6565b60405180910390fd5b610bac81600254610a6f90919063ffffffff16565b600281905550610c01815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610a6f90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c9e9190610e65565b60405180910390a35050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610ce1578082015181840152602081019050610cc6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d0682610caa565b610d108185610cb4565b9350610d20818560208601610cc4565b610d2981610cec565b840191505092915050565b5f6020820190508181035f830152610d4c8184610cfc565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d8182610d58565b9050919050565b610d9181610d77565b8114610d9b575f80fd5b50565b5f81359050610dac81610d88565b92915050565b5f819050919050565b610dc481610db2565b8114610dce575f80fd5b50565b5f81359050610ddf81610dbb565b92915050565b5f8060408385031215610dfb57610dfa610d54565b5b5f610e0885828601610d9e565b9250506020610e1985828601610dd1565b9150509250929050565b5f8115159050919050565b610e3781610e23565b82525050565b5f602082019050610e505f830184610e2e565b92915050565b610e5f81610db2565b82525050565b5f602082019050610e785f830184610e56565b92915050565b5f805f60608486031215610e9557610e94610d54565b5b5f610ea286828701610d9e565b9350506020610eb386828701610d9e565b9250506040610ec486828701610dd1565b9150509250925092565b5f60ff82169050919050565b610ee381610ece565b82525050565b5f602082019050610efc5f830184610eda565b92915050565b5f60208284031215610f1757610f16610d54565b5b5f610f2484828501610dd1565b91505092915050565b5f60208284031215610f4257610f41610d54565b5b5f610f4f84828501610d9e565b91505092915050565b5f8060408385031215610f6e57610f6d610d54565b5b5f610f7b85828601610d9e565b9250506020610f8c85828601610d9e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fda57607f821691505b602082108103610fed57610fec610f96565b5b50919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f7700005f82015250565b5f611027601e83610cb4565b915061103282610ff3565b602082019050919050565b5f6020820190508181035f8301526110548161101b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61109282610db2565b915061109d83610db2565b92508282039050818111156110b5576110b461105b565b5b92915050565b5f6110c582610db2565b91506110d083610db2565b92508282019050808211156110e8576110e761105b565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611122601b83610cb4565b915061112d826110ee565b602082019050919050565b5f6020820190508181035f83015261114f81611116565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6111b0602183610cb4565b91506111bb82611156565b604082019050919050565b5f6020820190508181035f8301526111dd816111a4565b905091905056fea26469706673582212204e81e4c3409ef5172a45b3e61f967e7f82d024f49acbddd605bdf6a27a5a3d8664736f6c6343000815003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000dce18cb83cd0fe4383600000000000000000000000000000000c520913dcfa0374fec8881d51a7a694d7e70222f000000000000000000000000000000000000000000000000000000000000000a436f696e4d6173746572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003434d460000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100b2575f3560e01c806342966c681161006f57806342966c68146101a057806370a08231146101bc57806395d89b41146101ec578063a457c2d71461020a578063a9059cbb1461023a578063dd62ed3e1461026a576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce567146101525780633950935114610170575b5f80fd5b6100be61029a565b6040516100cb9190610d34565b60405180910390f35b6100ee60048036038101906100e99190610de5565b61032a565b6040516100fb9190610e3d565b60405180910390f35b61010c610340565b6040516101199190610e65565b60405180910390f35b61013c60048036038101906101379190610e7e565b610349565b6040516101499190610e3d565b60405180910390f35b61015a6103f5565b6040516101679190610ee9565b60405180910390f35b61018a60048036038101906101859190610de5565b61040a565b6040516101979190610e3d565b60405180910390f35b6101ba60048036038101906101b59190610f02565b6104aa565b005b6101d660048036038101906101d19190610f2d565b6104b7565b6040516101e39190610e65565b60405180910390f35b6101f46104fc565b6040516102019190610d34565b60405180910390f35b610224600480360381019061021f9190610de5565b61058c565b6040516102319190610e3d565b60405180910390f35b610254600480360381019061024f9190610de5565b61062c565b6040516102619190610e3d565b60405180910390f35b610284600480360381019061027f9190610f58565b610642565b6040516102919190610e65565b60405180910390f35b6060600480546102a990610fc3565b80601f01602080910402602001604051908101604052809291908181526020018280546102d590610fc3565b80156103205780601f106102f757610100808354040283529160200191610320565b820191905f5260205f20905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b5f6103363384846106c4565b6001905092915050565b5f600254905090565b5f6103558484846108e7565b6103ea84336103e58560015f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610a6f90919063ffffffff16565b6106c4565b600190509392505050565b5f60065f9054906101000a900460ff16905090565b5f6104a0338461049b8560015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610acc90919063ffffffff16565b6106c4565b6001905092915050565b6104b43382610b29565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606005805461050b90610fc3565b80601f016020809104026020016040519081016040528092919081815260200182805461053790610fc3565b80156105825780601f1061055957610100808354040283529160200191610582565b820191905f5260205f20905b81548152906001019060200180831161056557829003601f168201915b5050505050905090565b5f610622338461061d8560015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610a6f90919063ffffffff16565b6106c4565b6001905092915050565b5f6106383384846108e7565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036107ff578060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107f29190610e65565b60405180910390a36108e2565b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108d99190610e65565b60405180910390a35b505050565b610936815f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610a6f90919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506109c5815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610acc90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a629190610e65565b60405180910390a3505050565b5f82821115610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa9061103d565b60405180910390fd5b5f8284610ac09190611088565b90508091505092915050565b5f808284610ada91906110bb565b905083811015610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690611138565b60405180910390fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e906111c6565b60405180910390fd5b610bac81600254610a6f90919063ffffffff16565b600281905550610c01815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610a6f90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c9e9190610e65565b60405180910390a35050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610ce1578082015181840152602081019050610cc6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d0682610caa565b610d108185610cb4565b9350610d20818560208601610cc4565b610d2981610cec565b840191505092915050565b5f6020820190508181035f830152610d4c8184610cfc565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d8182610d58565b9050919050565b610d9181610d77565b8114610d9b575f80fd5b50565b5f81359050610dac81610d88565b92915050565b5f819050919050565b610dc481610db2565b8114610dce575f80fd5b50565b5f81359050610ddf81610dbb565b92915050565b5f8060408385031215610dfb57610dfa610d54565b5b5f610e0885828601610d9e565b9250506020610e1985828601610dd1565b9150509250929050565b5f8115159050919050565b610e3781610e23565b82525050565b5f602082019050610e505f830184610e2e565b92915050565b610e5f81610db2565b82525050565b5f602082019050610e785f830184610e56565b92915050565b5f805f60608486031215610e9557610e94610d54565b5b5f610ea286828701610d9e565b9350506020610eb386828701610d9e565b9250506040610ec486828701610dd1565b9150509250925092565b5f60ff82169050919050565b610ee381610ece565b82525050565b5f602082019050610efc5f830184610eda565b92915050565b5f60208284031215610f1757610f16610d54565b5b5f610f2484828501610dd1565b91505092915050565b5f60208284031215610f4257610f41610d54565b5b5f610f4f84828501610d9e565b91505092915050565b5f8060408385031215610f6e57610f6d610d54565b5b5f610f7b85828601610d9e565b9250506020610f8c85828601610d9e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fda57607f821691505b602082108103610fed57610fec610f96565b5b50919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f7700005f82015250565b5f611027601e83610cb4565b915061103282610ff3565b602082019050919050565b5f6020820190508181035f8301526110548161101b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61109282610db2565b915061109d83610db2565b92508282039050818111156110b5576110b461105b565b5b92915050565b5f6110c582610db2565b91506110d083610db2565b92508282019050808211156110e8576110e761105b565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611122601b83610cb4565b915061112d826110ee565b602082019050919050565b5f6020820190508181035f83015261114f81611116565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6111b0602183610cb4565b91506111bb82611156565b604082019050919050565b5f6020820190508181035f8301526111dd816111a4565b905091905056fea26469706673582212204e81e4c3409ef5172a45b3e61f967e7f82d024f49acbddd605bdf6a27a5a3d8664736f6c63430008150033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000dce18cb83cd0fe4383600000000000000000000000000000000c520913dcfa0374fec8881d51a7a694d7e70222f000000000000000000000000000000000000000000000000000000000000000a436f696e4d6173746572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003434d460000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CoinMaster
Arg [1] : symbol (string): CMF
Arg [2] : decimals (uint8): 18
Arg [3] : totalSupply (uint256): 280000000000000000000000000000000
Arg [4] : Owner (address): 0xC520913DcFa0374fEC8881d51A7a694D7e70222f

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000dce18cb83cd0fe4383600000000
Arg [4] : 000000000000000000000000c520913dcfa0374fec8881d51a7a694d7e70222f
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 436f696e4d617374657200000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 434d460000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17784:1547:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18935:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9246:148;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8269:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9865:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19247:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10530:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18744:77;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8423:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19083:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11239:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8746:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8965:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18935:81;18972:13;19003:5;18996:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18935:81;:::o;9246:148::-;9311:4;9328:36;9337:10;9349:7;9358:5;9328:8;:36::i;:::-;9382:4;9375:11;;9246:148;;;;:::o;8269:91::-;8313:7;8340:12;;8333:19;;8269:91;:::o;9865:256::-;9954:4;9971:36;9981:6;9989:9;10000:6;9971:9;:36::i;:::-;10018:73;10027:6;10035:10;10047:43;10083:6;10047:11;:19;10059:6;10047:19;;;;;;;;;;;;;;;:31;10067:10;10047:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;10018:8;:73::i;:::-;10109:4;10102:11;;9865:256;;;;;:::o;19247:81::-;19288:5;19311:9;;;;;;;;;;;19304:16;;19247:81;:::o;10530:206::-;10610:4;10627:79;10636:10;10648:7;10657:48;10694:10;10657:11;:23;10669:10;10657:23;;;;;;;;;;;;;;;:32;10681:7;10657:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;10627:8;:79::i;:::-;10724:4;10717:11;;10530:206;;;;:::o;18744:77::-;18789:24;18795:10;18807:5;18789;:24::i;:::-;18744:77;:::o;8423:110::-;8480:7;8507:9;:18;8517:7;8507:18;;;;;;;;;;;;;;;;8500:25;;8423:110;;;:::o;19083:85::-;19122:13;19153:7;19146:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19083:85;:::o;11239:216::-;11324:4;11341:84;11350:10;11362:7;11371:53;11408:15;11371:11;:23;11383:10;11371:23;;;;;;;;;;;;;;;:32;11395:7;11371:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;11341:8;:84::i;:::-;11443:4;11436:11;;11239:216;;;;:::o;8746:156::-;8815:4;8832:40;8842:10;8854:9;8865:6;8832:9;:40::i;:::-;8890:4;8883:11;;8746:156;;;;:::o;8965:134::-;9037:7;9064:11;:18;9076:5;9064:18;;;;;;;;;;;;;;;:27;9083:7;9064:27;;;;;;;;;;;;;;;;9057:34;;8965:134;;;;:::o;14515:1706::-;15347:6;;;;;;;;;;;15333:20;;:10;:20;;;15329:884;;15472:5;15442:11;:20;15454:7;15442:20;;;;;;;;;;;;;;;:27;15463:5;15442:27;;;;;;;;;;;;;;;:35;;;;15658:5;15640:31;;15649:7;15640:31;;;15665:5;15640:31;;;;;;:::i;:::-;;;;;;;;15329:884;;;15951:5;15921:11;:18;15933:5;15921:18;;;;;;;;;;;;;;;:27;15940:7;15921:27;;;;;;;;;;;;;;;:35;;;;16020:7;16004:31;;16013:5;16004:31;;;16029:5;16004:31;;;;;;:::i;:::-;;;;;;;;15329:884;14515:1706;;;:::o;11945:266::-;12057:29;12079:6;12057:9;:17;12067:6;12057:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;12037:9;:17;12047:6;12037:17;;;;;;;;;;;;;;;:49;;;;12120:32;12145:6;12120:9;:20;12130:9;12120:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12097:9;:20;12107:9;12097:20;;;;;;;;;;;;;;;:55;;;;12185:9;12168:35;;12177:6;12168:35;;;12196:6;12168:35;;;;;;:::i;:::-;;;;;;;;11945:266;;;:::o;4291:184::-;4349:7;4382:1;4377;:6;;4369:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;4429:9;4445:1;4441;:5;;;;:::i;:::-;4429:17;;4466:1;4459:8;;;4291:184;;;;:::o;3835:181::-;3893:7;3913:9;3929:1;3925;:5;;;;:::i;:::-;3913:17;;3954:1;3949;:6;;3941:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4007:1;4000:8;;;3835:181;;;;:::o;13133:306::-;13227:1;13208:21;;:7;:21;;;13200:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13295:23;13312:5;13295:12;;:16;;:23;;;;:::i;:::-;13280:12;:38;;;;13350:29;13373:5;13350:9;:18;13360:7;13350:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;13329:9;:18;13339:7;13329:18;;;;;;;;;;;;;;;:50;;;;13421:1;13395:36;;13404:7;13395:36;;;13425:5;13395:36;;;;;;:::i;:::-;;;;;;;;13133:306;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:180::-;6051:77;6048:1;6041:88;6148:4;6145:1;6138:15;6172:4;6169:1;6162:15;6189:320;6233:6;6270:1;6264:4;6260:12;6250:22;;6317:1;6311:4;6307:12;6338:18;6328:81;;6394:4;6386:6;6382:17;6372:27;;6328:81;6456:2;6448:6;6445:14;6425:18;6422:38;6419:84;;6475:18;;:::i;:::-;6419:84;6240:269;6189:320;;;:::o;6515:180::-;6655:32;6651:1;6643:6;6639:14;6632:56;6515:180;:::o;6701:366::-;6843:3;6864:67;6928:2;6923:3;6864:67;:::i;:::-;6857:74;;6940:93;7029:3;6940:93;:::i;:::-;7058:2;7053:3;7049:12;7042:19;;6701:366;;;:::o;7073:419::-;7239:4;7277:2;7266:9;7262:18;7254:26;;7326:9;7320:4;7316:20;7312:1;7301:9;7297:17;7290:47;7354:131;7480:4;7354:131;:::i;:::-;7346:139;;7073:419;;;:::o;7498:180::-;7546:77;7543:1;7536:88;7643:4;7640:1;7633:15;7667:4;7664:1;7657:15;7684:194;7724:4;7744:20;7762:1;7744:20;:::i;:::-;7739:25;;7778:20;7796:1;7778:20;:::i;:::-;7773:25;;7822:1;7819;7815:9;7807:17;;7846:1;7840:4;7837:11;7834:37;;;7851:18;;:::i;:::-;7834:37;7684:194;;;;:::o;7884:191::-;7924:3;7943:20;7961:1;7943:20;:::i;:::-;7938:25;;7977:20;7995:1;7977:20;:::i;:::-;7972:25;;8020:1;8017;8013:9;8006:16;;8041:3;8038:1;8035:10;8032:36;;;8048:18;;:::i;:::-;8032:36;7884:191;;;;:::o;8081:177::-;8221:29;8217:1;8209:6;8205:14;8198:53;8081:177;:::o;8264:366::-;8406:3;8427:67;8491:2;8486:3;8427:67;:::i;:::-;8420:74;;8503:93;8592:3;8503:93;:::i;:::-;8621:2;8616:3;8612:12;8605:19;;8264:366;;;:::o;8636:419::-;8802:4;8840:2;8829:9;8825:18;8817:26;;8889:9;8883:4;8879:20;8875:1;8864:9;8860:17;8853:47;8917:131;9043:4;8917:131;:::i;:::-;8909:139;;8636:419;;;:::o;9061:220::-;9201:34;9197:1;9189:6;9185:14;9178:58;9270:3;9265:2;9257:6;9253:15;9246:28;9061:220;:::o;9287:366::-;9429:3;9450:67;9514:2;9509:3;9450:67;:::i;:::-;9443:74;;9526:93;9615:3;9526:93;:::i;:::-;9644:2;9639:3;9635:12;9628:19;;9287:366;;;:::o;9659:419::-;9825:4;9863:2;9852:9;9848:18;9840:26;;9912:9;9906:4;9902:20;9898:1;9887:9;9883:17;9876:47;9940:131;10066:4;9940:131;:::i;:::-;9932:139;;9659:419;;;:::o

Swarm Source

ipfs://4e81e4c3409ef5172a45b3e61f967e7f82d024f49acbddd605bdf6a27a5a3d86
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.