ETH Price: $3,420.39 (+1.14%)
Gas: 4 Gwei

Token

Marketing Tokamak Network Token (MTON)
 

Overview

Max Total Supply

2,604,259.361489405049819676 MTON

Holders

323

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1.5 MTON

Value
$0.00
0x1102577632e82e9cf854bd4f1b6627147edc46b9
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:
MTON

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-04-07
*/

// File: openzeppelin-solidity/contracts/GSN/Context.sol

pragma solidity ^0.5.0;

/*
 * @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: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    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() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.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.
     *
     * 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: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.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) {
        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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.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}.
 *
 * 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: openzeppelin-solidity/contracts/access/Roles.sol

pragma solidity ^0.5.0;

/**
 * @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: openzeppelin-solidity/contracts/access/roles/MinterRole.sol

pragma solidity ^0.5.0;



contract MinterRole is Context {
    using Roles for Roles.Role;

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

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "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(_msgSender());
    }

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

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

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol

pragma solidity ^0.5.0;



/**
 * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.0;


/**
 * @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: 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: openzeppelin-solidity/contracts/introspection/ERC165Checker.sol

pragma solidity ^0.5.10;

/**
 * @dev Library used to query support of an interface declared via {IERC165}.
 *
 * Note that these functions return the actual result of the query: they do not
 * `revert` if an interface is not supported. It is up to the caller to decide
 * what to do in these cases.
 */
library ERC165Checker {
    // As per the EIP-165 spec, no interface should ever match 0xffffffff
    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;

    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Returns true if `account` supports the {IERC165} interface,
     */
    function _supportsERC165(address account) internal view returns (bool) {
        // Any contract that implements ERC165 must explicitly indicate support of
        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid
        return _supportsERC165Interface(account, _INTERFACE_ID_ERC165) &&
            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);
    }

    /**
     * @dev Returns true if `account` supports the interface defined by
     * `interfaceId`. Support for {IERC165} itself is queried automatically.
     *
     * See {IERC165-supportsInterface}.
     */
    function _supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {
        // query support of both ERC165 as per the spec and support of _interfaceId
        return _supportsERC165(account) &&
            _supportsERC165Interface(account, interfaceId);
    }

    /**
     * @dev Returns true if `account` supports all the interfaces defined in
     * `interfaceIds`. Support for {IERC165} itself is queried automatically.
     *
     * Batch-querying can lead to gas savings by skipping repeated checks for
     * {IERC165} support.
     *
     * See {IERC165-supportsInterface}.
     */
    function _supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {
        // query support of ERC165 itself
        if (!_supportsERC165(account)) {
            return false;
        }

        // query support of each interface in _interfaceIds
        for (uint256 i = 0; i < interfaceIds.length; i++) {
            if (!_supportsERC165Interface(account, interfaceIds[i])) {
                return false;
            }
        }

        // all interfaces supported
        return true;
    }

    /**
     * @notice Query if a contract implements an interface, does not check ERC165 support
     * @param account The address of the contract to query for support of an interface
     * @param interfaceId The interface identifier, as specified in ERC-165
     * @return true if the contract at account indicates support of the interface with
     * identifier interfaceId, false otherwise
     * @dev Assumes that account contains a contract that supports ERC165, otherwise
     * the behavior of this method is undefined. This precondition can be checked
     * with the `supportsERC165` method in this library.
     * Interface identification is specified in ERC-165.
     */
    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {
        // success determines whether the staticcall succeeded and result determines
        // whether the contract at account indicates support of _interfaceId
        (bool success, bool result) = _callERC165SupportsInterface(account, interfaceId);

        return (success && result);
    }

    /**
     * @notice Calls the function with selector 0x01ffc9a7 (ERC165) and suppresses throw
     * @param account The address of the contract to query for support of an interface
     * @param interfaceId The interface identifier, as specified in ERC-165
     * @return success true if the STATICCALL succeeded, false otherwise
     * @return result true if the STATICCALL succeeded and the contract at account
     * indicates support of the interface with identifier interfaceId, false otherwise
     */
    function _callERC165SupportsInterface(address account, bytes4 interfaceId)
        private
        view
        returns (bool, bool)
    {
        bytes memory encodedParams = abi.encodeWithSelector(_INTERFACE_ID_ERC165, interfaceId);
        (bool success, bytes memory result) = account.staticcall.gas(30000)(encodedParams);
        if (result.length < 32) return (false, false);
        return (success, abi.decode(result, (bool)));
    }
}

// File: contracts/stake/interfaces/SeigManagerI.sol

pragma solidity ^0.5.12;


interface SeigManagerI {
  function registry() external view returns (address);
  function depositManager() external view returns (address);
  function ton() external view returns (address);
  function wton() external view returns (address);
  function powerton() external view returns (address);
  function tot() external view returns (address);
  function coinages(address rootchain) external view returns (address);
  function commissionRates(address rootchain) external view returns (uint256);

  function lastCommitBlock(address rootchain) external view returns (uint256);
  function seigPerBlock() external view returns (uint256);
  function lastSeigBlock() external view returns (uint256);
  function pausedBlock() external view returns (uint256);
  function unpausedBlock() external view returns (uint256);
  function DEFAULT_FACTOR() external view returns (uint256);

  function deployCoinage(address rootchain) external returns (bool);
  function setCommissionRate(address rootchain, uint256 commission) external returns (bool);

  function uncomittedStakeOf(address rootchain, address account) external view returns (uint256);
  function stakeOf(address rootchain, address account) external view returns (uint256);
  function additionalTotBurnAmount(address rootchain, address account, uint256 amount) external view returns (uint256 totAmount);

  function onTransfer(address sender, address recipient, uint256 amount) external returns (bool);
  function onCommit() external returns (bool);
  function onDeposit(address rootchain, address account, uint256 amount) external returns (bool);
  function onWithdraw(address rootchain, address account, uint256 amount) external returns (bool);

}

// File: contracts/stake/tokens/OnApproveConstant.sol

pragma solidity ^0.5.12;


contract OnApproveConstant {
  bytes4 public constant INTERFACE_ID_ON_APPROVE = bytes4(keccak256("onApprove(address,address,uint256,bytes)"));
}

// File: contracts/stake/tokens/ERC20OnApprove.sol

pragma solidity ^0.5.12;





contract ERC20OnApprove is ERC20, OnApproveConstant {
  function approveAndCall(address spender, uint256 amount, bytes memory data) public returns (bool) {
    require(approve(spender, amount));
    _callOnApprove(msg.sender, spender, amount, data);
  }

  function _callOnApprove(address owner, address spender, uint256 amount, bytes memory data) internal {
    require(ERC165Checker._supportsInterface(spender, INTERFACE_ID_ON_APPROVE),
      "ERC20OnApprove: spender doesn't support onApprove");

    (bool ok, bytes memory res) = spender.call(
      abi.encodeWithSelector(
        INTERFACE_ID_ON_APPROVE,
        owner,
        spender,
        amount,
        data
      )
    );

    require(ok, string(res));
    // require(ok, "ERC20OnApprove: failed to call onApprove");
  }

}

// File: contracts/stake/tokens/AuthController.sol

pragma solidity ^0.5.12;



interface MinterRoleRenounceTarget {
  function renounceMinter() external;
}

interface PauserRoleRenounceTarget {
  function renouncePauser() external;
}

interface OwnableTarget {
  function renounceOwnership() external;
  function transferOwnership(address newOwner) external;
}

contract AuthController is Ownable {
  function renounceMinter(address target) public onlyOwner {
    MinterRoleRenounceTarget(target).renounceMinter();
  }

  function renouncePauser(address target) public onlyOwner {
    PauserRoleRenounceTarget(target).renouncePauser();
  }

  function renounceOwnership(address target) public onlyOwner {
    OwnableTarget(target).renounceOwnership();
  }

  function transferOwnership(address target, address newOwner) public onlyOwner {
    OwnableTarget(target).transferOwnership(newOwner);
  }
}

// File: contracts/stake/tokens/SeigToken.sol

pragma solidity ^0.5.12;







contract SeigToken is ERC20, Ownable, ERC20OnApprove, AuthController {
  SeigManagerI public seigManager;

  function setSeigManager(SeigManagerI _seigManager) external onlyOwner {
    seigManager = _seigManager;
  }

  //////////////////////
  // Override ERC20 functions
  //////////////////////

  function _transfer(address sender, address recipient, uint256 amount) internal {
    require(msg.sender == sender || msg.sender == recipient, "SeigToken: only sender or recipient can transfer");
    super._transfer(sender, recipient, amount);
    if (address(seigManager) != address(0)) {
      // seigManager.onTransfer(sender, recipient, amount);
    }
  }

  function _mint(address account, uint256 amount) internal {
    super._mint(account, amount);
    if (address(seigManager) != address(0)) {
      // seigManager.onTransfer(address(0), account, amount);
    }
  }

  function _burn(address account, uint256 amount) internal {
    super._burn(account, amount);
    if (address(seigManager) != address(0)) {
      // seigManager.onTransfer(account, address(0), amount);
    }
  }
}

// File: contracts/stake/tokens/MTON.sol

pragma solidity ^0.5.12;








/**
 * @dev Current implementations is just for testing seigniorage manager.
 */
contract MTON is Ownable, ERC20Mintable, ERC20Detailed, SeigToken {
  constructor() public ERC20Detailed("Marketing Tokamak Network Token", "MTON", 18) {}

  function setSeigManager(SeigManagerI _seigManager) external {
    revert("MTON: MTON doesn't allow setSeigManager");
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"constant":true,"inputs":[],"name":"INTERFACE_ID_ON_APPROVE","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"seigManager","outputs":[{"internalType":"contract SeigManagerI","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract SeigManagerI","name":"_seigManager","type":"address"}],"name":"setSeigManager","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601f81526020017f4d61726b6574696e6720546f6b616d616b204e6574776f726b20546f6b656e008152506040518060400160405280600481526020017f4d544f4e000000000000000000000000000000000000000000000000000000008152506012620000a3620000946200014f60201b60201c565b6001600160e01b036200015416565b6000620000b86001600160e01b036200014f16565b600480546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35082516200011b906005906020860190620002d0565b50815162000131906006906020850190620002d0565b506007805460ff191660ff9290921691909117905550620003729050565b335b90565b6200016f816003620001a660201b620016701790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001bb82826001600160e01b036200024d16565b156200022857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062001f226022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200031357805160ff191683800117855562000343565b8280016001018555821562000343579182015b828111156200034357825182559160200191906001019062000326565b506200035192915062000355565b5090565b6200015191905b808211156200035157600081556001016200035c565b611ba080620003826000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f95780639865027511610097578063aa271e1a11610071578063aa271e1a1461050e578063cae9ca5114610534578063dd62ed3e146105ef578063f2fde38b1461061d576101a9565b806398650275146104ae578063a457c2d7146104b6578063a9059cbb146104e2576101a9565b80638da5cb5b116100d35780638da5cb5b146104705780638f32d59b1461047857806395d89b4114610480578063983b2d5614610488576101a9565b806370a082311461041c578063715018a6146104425780637657f20a1461044a576101a9565b806339509351116101665780635f112c68116101405780635f112c681461037f5780636cd28f9a146103a55780636d435421146103ca5780636fb7f558146103f8576101a9565b8063395093511461030157806340c10f191461032d57806341eb24bb14610359576101a9565b806306fdde03146101ae578063095ea7b31461022b57806318160ddd1461026b57806323b872dd14610285578063313ce567146102bb57806338bf3cfa146102d9575b600080fd5b6101b6610643565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356106d9565b604080519115158252519081900360200190f35b6102736106f6565b60408051918252519081900360200190f35b6102576004803603606081101561029b57600080fd5b506001600160a01b038135811691602081013590911690604001356106fc565b6102c361078a565b6040805160ff9092168252519081900360200190f35b6102ff600480360360208110156102ef57600080fd5b50356001600160a01b0316610793565b005b6102576004803603604081101561031757600080fd5b506001600160a01b038135169060200135610830565b6102576004803603604081101561034357600080fd5b506001600160a01b038135169060200135610884565b6102ff6004803603602081101561036f57600080fd5b50356001600160a01b03166108db565b6102ff6004803603602081101561039557600080fd5b50356001600160a01b031661095d565b6103ad6109df565b604080516001600160e01b03199092168252519081900360200190f35b6102ff600480360360408110156103e057600080fd5b506001600160a01b03813581169160200135166109fa565b610400610ab5565b604080516001600160a01b039092168252519081900360200190f35b6102736004803603602081101561043257600080fd5b50356001600160a01b0316610ac9565b6102ff610ae4565b6102ff6004803603602081101561046057600080fd5b50356001600160a01b0316610b75565b610400610bac565b610257610bbb565b6101b6610be1565b6102ff6004803603602081101561049e57600080fd5b50356001600160a01b0316610c42565b6102ff610c94565b610257600480360360408110156104cc57600080fd5b506001600160a01b038135169060200135610ca6565b610257600480360360408110156104f857600080fd5b506001600160a01b038135169060200135610d14565b6102576004803603602081101561052457600080fd5b50356001600160a01b0316610d28565b6102576004803603606081101561054a57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561057a57600080fd5b82018360208201111561058c57600080fd5b803590602001918460018302840111640100000000831117156105ae57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d41945050505050565b6102736004803603604081101561060557600080fd5b506001600160a01b0381358116916020013516610d62565b6102ff6004803603602081101561063357600080fd5b50356001600160a01b0316610d8d565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b60006106ed6106e6610ddd565b8484610de1565b50600192915050565b60025490565b6000610709848484610ecd565b61077f84610715610ddd565b61077a85604051806060016040528060288152602001611a94602891396001600160a01b038a16600090815260016020526040812090610753610ddd565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610f3716565b610de1565b5060015b9392505050565b60075460ff1690565b61079b610bbb565b6107da576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b806001600160a01b031663715018a66040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561081557600080fd5b505af1158015610829573d6000803e3d6000fd5b5050505050565b60006106ed61083d610ddd565b8461077a856001600061084e610ddd565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610fce16565b6000610896610891610ddd565b610d28565b6108d15760405162461bcd60e51b8152600401808060200182810382526030815260200180611a1c6030913960400191505060405180910390fd5b6106ed8383611028565b6108e3610bbb565b610922576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b806001600160a01b0316636ef8d66d6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561081557600080fd5b610965610bbb565b6109a4576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b806001600160a01b031663986502756040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561081557600080fd5b6040518060286119c482396028019050604051809103902081565b610a02610bbb565b610a41576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b816001600160a01b031663f2fde38b826040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015610a9957600080fd5b505af1158015610aad573d6000803e3d6000fd5b505050505050565b60075461010090046001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b610aec610bbb565b610b2b576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b60405162461bcd60e51b8152600401808060200182810382526027815260200180611a6d6027913960400191505060405180910390fd5b6004546001600160a01b031690565b6004546000906001600160a01b0316610bd2610ddd565b6001600160a01b031614905090565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106cf5780601f106106a4576101008083540402835291602001916106cf565b610c4d610891610ddd565b610c885760405162461bcd60e51b8152600401808060200182810382526030815260200180611a1c6030913960400191505060405180910390fd5b610c9181611036565b50565b610ca4610c9f610ddd565b61107e565b565b60006106ed610cb3610ddd565b8461077a85604051806060016040528060258152602001611b476025913960016000610cdd610ddd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610f3716565b60006106ed610d21610ddd565b8484610ecd565b6000610d3b60038363ffffffff6110c616565b92915050565b6000610d4d84846106d9565b610d5657600080fd5b6107833385858561112d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d95610bbb565b610dd4576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b610c9181611383565b3390565b6001600160a01b038316610e265760405162461bcd60e51b8152600401808060200182810382526024815260200180611b236024913960400191505060405180910390fd5b6001600160a01b038216610e6b5760405162461bcd60e51b815260040180806020018281038252602281526020018061194b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b336001600160a01b0384161480610eec5750336001600160a01b038316145b610f275760405162461bcd60e51b81526004018080602001828103825260308152602001806119ec6030913960400191505060405180910390fd5b610f32838383611424565b505050565b60008184841115610fc65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f8b578181015183820152602001610f73565b50505050905090810190601f168015610fb85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610783576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6110328282611580565b5050565b61104760038263ffffffff61167016565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61108f60038263ffffffff6116f116565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b03821661110d5760405162461bcd60e51b8152600401808060200182810382526022815260200180611adc6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61114f8360405180806119c46028913960280190506040518091039020611758565b61118a5760405162461bcd60e51b815260040180806020018281038252603181526020018061196d6031913960400191505060405180910390fd5b60006060846001600160a01b031660405180806119c460289139602801905060405180910390208787878760405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561122b578181015183820152602001611213565b50505050905090810190601f1680156112585780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b602083106112c05780518252601f1990920191602091820191016112a1565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611322576040519150601f19603f3d011682016040523d82523d6000602084013e611327565b606091505b509150915081819061137a5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f8b578181015183820152602001610f73565b50505050505050565b6001600160a01b0381166113c85760405162461bcd60e51b81526004018080602001828103825260268152602001806119256026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166114695760405162461bcd60e51b8152600401808060200182810382526025815260200180611afe6025913960400191505060405180910390fd5b6001600160a01b0382166114ae5760405162461bcd60e51b81526004018080602001828103825260238152602001806119026023913960400191505060405180910390fd5b6114f18160405180606001604052806026815260200161199e602691396001600160a01b038616600090815260208190526040902054919063ffffffff610f3716565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611526908263ffffffff610fce16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0382166115db576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546115ee908263ffffffff610fce16565b6002556001600160a01b03821660009081526020819052604090205461161a908263ffffffff610fce16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b61167a82826110c6565b156116cc576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6116fb82826110c6565b6117365760405162461bcd60e51b8152600401808060200182810382526021815260200180611a4c6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600061176383611774565b8015610783575061078383836117a7565b6000611787826301ffc9a760e01b6117a7565b8015610d3b57506117a0826001600160e01b03196117a7565b1592915050565b60008060006117b685856117cd565b915091508180156117c45750805b95945050505050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180516001600160e01b03166301ffc9a760e01b1781529151815160009384939284926060926001600160a01b038a169261753092879282918083835b602083106118555780518252601f199092019160209182019101611836565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303818686fa925050503d80600081146118b6576040519150601f19603f3d011682016040523d82523d6000602084013e6118bb565b606091505b50915091506020815110156118d957600080945094505050506118fa565b818180602001905160208110156118ef57600080fd5b505190955093505050505b925092905056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332304f6e417070726f76653a207370656e64657220646f65736e277420737570706f7274206f6e417070726f766545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f6e417070726f766528616464726573732c616464726573732c75696e743235362c62797465732953656967546f6b656e3a206f6e6c792073656e646572206f7220726563697069656e742063616e207472616e736665724d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654d544f4e3a204d544f4e20646f65736e277420616c6c6f7720736574536569674d616e6167657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820c08b89b95daf31a16df035a0ed31a72d3160cea08041b284e354a8805f122d4464736f6c634300050c0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f95780639865027511610097578063aa271e1a11610071578063aa271e1a1461050e578063cae9ca5114610534578063dd62ed3e146105ef578063f2fde38b1461061d576101a9565b806398650275146104ae578063a457c2d7146104b6578063a9059cbb146104e2576101a9565b80638da5cb5b116100d35780638da5cb5b146104705780638f32d59b1461047857806395d89b4114610480578063983b2d5614610488576101a9565b806370a082311461041c578063715018a6146104425780637657f20a1461044a576101a9565b806339509351116101665780635f112c68116101405780635f112c681461037f5780636cd28f9a146103a55780636d435421146103ca5780636fb7f558146103f8576101a9565b8063395093511461030157806340c10f191461032d57806341eb24bb14610359576101a9565b806306fdde03146101ae578063095ea7b31461022b57806318160ddd1461026b57806323b872dd14610285578063313ce567146102bb57806338bf3cfa146102d9575b600080fd5b6101b6610643565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356106d9565b604080519115158252519081900360200190f35b6102736106f6565b60408051918252519081900360200190f35b6102576004803603606081101561029b57600080fd5b506001600160a01b038135811691602081013590911690604001356106fc565b6102c361078a565b6040805160ff9092168252519081900360200190f35b6102ff600480360360208110156102ef57600080fd5b50356001600160a01b0316610793565b005b6102576004803603604081101561031757600080fd5b506001600160a01b038135169060200135610830565b6102576004803603604081101561034357600080fd5b506001600160a01b038135169060200135610884565b6102ff6004803603602081101561036f57600080fd5b50356001600160a01b03166108db565b6102ff6004803603602081101561039557600080fd5b50356001600160a01b031661095d565b6103ad6109df565b604080516001600160e01b03199092168252519081900360200190f35b6102ff600480360360408110156103e057600080fd5b506001600160a01b03813581169160200135166109fa565b610400610ab5565b604080516001600160a01b039092168252519081900360200190f35b6102736004803603602081101561043257600080fd5b50356001600160a01b0316610ac9565b6102ff610ae4565b6102ff6004803603602081101561046057600080fd5b50356001600160a01b0316610b75565b610400610bac565b610257610bbb565b6101b6610be1565b6102ff6004803603602081101561049e57600080fd5b50356001600160a01b0316610c42565b6102ff610c94565b610257600480360360408110156104cc57600080fd5b506001600160a01b038135169060200135610ca6565b610257600480360360408110156104f857600080fd5b506001600160a01b038135169060200135610d14565b6102576004803603602081101561052457600080fd5b50356001600160a01b0316610d28565b6102576004803603606081101561054a57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561057a57600080fd5b82018360208201111561058c57600080fd5b803590602001918460018302840111640100000000831117156105ae57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d41945050505050565b6102736004803603604081101561060557600080fd5b506001600160a01b0381358116916020013516610d62565b6102ff6004803603602081101561063357600080fd5b50356001600160a01b0316610d8d565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b60006106ed6106e6610ddd565b8484610de1565b50600192915050565b60025490565b6000610709848484610ecd565b61077f84610715610ddd565b61077a85604051806060016040528060288152602001611a94602891396001600160a01b038a16600090815260016020526040812090610753610ddd565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610f3716565b610de1565b5060015b9392505050565b60075460ff1690565b61079b610bbb565b6107da576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b806001600160a01b031663715018a66040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561081557600080fd5b505af1158015610829573d6000803e3d6000fd5b5050505050565b60006106ed61083d610ddd565b8461077a856001600061084e610ddd565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610fce16565b6000610896610891610ddd565b610d28565b6108d15760405162461bcd60e51b8152600401808060200182810382526030815260200180611a1c6030913960400191505060405180910390fd5b6106ed8383611028565b6108e3610bbb565b610922576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b806001600160a01b0316636ef8d66d6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561081557600080fd5b610965610bbb565b6109a4576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b806001600160a01b031663986502756040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561081557600080fd5b6040518060286119c482396028019050604051809103902081565b610a02610bbb565b610a41576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b816001600160a01b031663f2fde38b826040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015610a9957600080fd5b505af1158015610aad573d6000803e3d6000fd5b505050505050565b60075461010090046001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b610aec610bbb565b610b2b576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b60405162461bcd60e51b8152600401808060200182810382526027815260200180611a6d6027913960400191505060405180910390fd5b6004546001600160a01b031690565b6004546000906001600160a01b0316610bd2610ddd565b6001600160a01b031614905090565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106cf5780601f106106a4576101008083540402835291602001916106cf565b610c4d610891610ddd565b610c885760405162461bcd60e51b8152600401808060200182810382526030815260200180611a1c6030913960400191505060405180910390fd5b610c9181611036565b50565b610ca4610c9f610ddd565b61107e565b565b60006106ed610cb3610ddd565b8461077a85604051806060016040528060258152602001611b476025913960016000610cdd610ddd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610f3716565b60006106ed610d21610ddd565b8484610ecd565b6000610d3b60038363ffffffff6110c616565b92915050565b6000610d4d84846106d9565b610d5657600080fd5b6107833385858561112d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d95610bbb565b610dd4576040805162461bcd60e51b81526020600482018190526024820152600080516020611abc833981519152604482015290519081900360640190fd5b610c9181611383565b3390565b6001600160a01b038316610e265760405162461bcd60e51b8152600401808060200182810382526024815260200180611b236024913960400191505060405180910390fd5b6001600160a01b038216610e6b5760405162461bcd60e51b815260040180806020018281038252602281526020018061194b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b336001600160a01b0384161480610eec5750336001600160a01b038316145b610f275760405162461bcd60e51b81526004018080602001828103825260308152602001806119ec6030913960400191505060405180910390fd5b610f32838383611424565b505050565b60008184841115610fc65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f8b578181015183820152602001610f73565b50505050905090810190601f168015610fb85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610783576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6110328282611580565b5050565b61104760038263ffffffff61167016565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61108f60038263ffffffff6116f116565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b03821661110d5760405162461bcd60e51b8152600401808060200182810382526022815260200180611adc6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61114f8360405180806119c46028913960280190506040518091039020611758565b61118a5760405162461bcd60e51b815260040180806020018281038252603181526020018061196d6031913960400191505060405180910390fd5b60006060846001600160a01b031660405180806119c460289139602801905060405180910390208787878760405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561122b578181015183820152602001611213565b50505050905090810190601f1680156112585780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b602083106112c05780518252601f1990920191602091820191016112a1565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611322576040519150601f19603f3d011682016040523d82523d6000602084013e611327565b606091505b509150915081819061137a5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f8b578181015183820152602001610f73565b50505050505050565b6001600160a01b0381166113c85760405162461bcd60e51b81526004018080602001828103825260268152602001806119256026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166114695760405162461bcd60e51b8152600401808060200182810382526025815260200180611afe6025913960400191505060405180910390fd5b6001600160a01b0382166114ae5760405162461bcd60e51b81526004018080602001828103825260238152602001806119026023913960400191505060405180910390fd5b6114f18160405180606001604052806026815260200161199e602691396001600160a01b038616600090815260208190526040902054919063ffffffff610f3716565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611526908263ffffffff610fce16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0382166115db576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546115ee908263ffffffff610fce16565b6002556001600160a01b03821660009081526020819052604090205461161a908263ffffffff610fce16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b61167a82826110c6565b156116cc576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6116fb82826110c6565b6117365760405162461bcd60e51b8152600401808060200182810382526021815260200180611a4c6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600061176383611774565b8015610783575061078383836117a7565b6000611787826301ffc9a760e01b6117a7565b8015610d3b57506117a0826001600160e01b03196117a7565b1592915050565b60008060006117b685856117cd565b915091508180156117c45750805b95945050505050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180516001600160e01b03166301ffc9a760e01b1781529151815160009384939284926060926001600160a01b038a169261753092879282918083835b602083106118555780518252601f199092019160209182019101611836565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303818686fa925050503d80600081146118b6576040519150601f19603f3d011682016040523d82523d6000602084013e6118bb565b606091505b50915091506020815110156118d957600080945094505050506118fa565b818180602001905160208110156118ef57600080fd5b505190955093505050505b925092905056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332304f6e417070726f76653a207370656e64657220646f65736e277420737570706f7274206f6e417070726f766545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f6e417070726f766528616464726573732c616464726573732c75696e743235362c62797465732953656967546f6b656e3a206f6e6c792073656e646572206f7220726563697069656e742063616e207472616e736665724d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654d544f4e3a204d544f4e20646f65736e277420616c6c6f7720736574536569674d616e6167657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820c08b89b95daf31a16df035a0ed31a72d3160cea08041b284e354a8805f122d4464736f6c634300050c0032

Deployed Bytecode Sourcemap

34953:286:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34953:286:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24017:83;;;:::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;24017:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14689:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14689:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13710:91;;;:::i;:::-;;;;;;;;;;;;;;;;15313:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15313:304:0;;;;;;;;;;;;;;;;;:::i;24869:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33302:114;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33302:114:0;-1:-1:-1;;;;;33302:114:0;;:::i;:::-;;16026:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16026:210:0;;;;;;;;:::i;23147:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23147:143:0;;;;;;;;:::i;33177:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33177:119:0;-1:-1:-1;;;;;33177:119:0;;:::i;33052:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33052:119:0;-1:-1:-1;;;;;33052:119:0;;:::i;31606:110::-;;;:::i;:::-;;;;-1:-1:-1;;;;;;31606:110:0;;;;;;;;;;;;;;33422:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33422:140:0;;;;;;;;;;:::i;33732:31::-;;;:::i;:::-;;;;-1:-1:-1;;;;;33732:31:0;;;;;;;;;;;;;;13864:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13864:110:0;-1:-1:-1;;;;;13864:110:0;;:::i;2979:140::-;;;:::i;35114:122::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35114:122:0;-1:-1:-1;;;;;35114:122:0;;:::i;2168:79::-;;;:::i;2534:94::-;;;:::i;24219:87::-;;;:::i;22164:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22164:92:0;-1:-1:-1;;;;;22164:92:0;;:::i;22264:79::-;;;:::i;16739:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16739:261:0;;;;;;;;:::i;14187:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14187:158:0;;;;;;;;:::i;22047:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22047:109:0;-1:-1:-1;;;;;22047:109:0;;:::i;31871:200::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;31871:200:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;31871:200:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;31871:200:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;31871:200:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;31871:200:0;;-1:-1:-1;31871:200:0;;-1:-1:-1;;;;;31871:200:0:i;14408:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14408:134:0;;;;;;;;;;:::i;3274:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3274:109:0;-1:-1:-1;;;;;3274:109:0;;:::i;24017:83::-;24087:5;24080:12;;;;;;;;-1:-1:-1;;24080:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24054:13;;24080:12;;24087:5;;24080:12;;24087:5;24080:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24017:83;:::o;14689:152::-;14755:4;14772:39;14781:12;:10;:12::i;:::-;14795:7;14804:6;14772:8;:39::i;:::-;-1:-1:-1;14829:4:0;14689:152;;;;:::o;13710:91::-;13781:12;;13710:91;:::o;15313:304::-;15402:4;15419:36;15429:6;15437:9;15448:6;15419:9;:36::i;:::-;15466:121;15475:6;15483:12;:10;:12::i;:::-;15497:89;15535:6;15497:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15497:19:0;;;;;;:11;:19;;;;;;15517:12;:10;:12::i;:::-;-1:-1:-1;;;;;15497:33:0;;;;;;;;;;;;-1:-1:-1;15497:33:0;;;:89;;:37;:89;:::i;:::-;15466:8;:121::i;:::-;-1:-1:-1;15605:4:0;15313:304;;;;;;:::o;24869:83::-;24935:9;;;;24869:83;:::o;33302:114::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;33383:6;-1:-1:-1;;;;;33369:39:0;;:41;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33369:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33369:41:0;;;;33302:114;:::o;16026:210::-;16106:4;16123:83;16132:12;:10;:12::i;:::-;16146:7;16155:50;16194:10;16155:11;:25;16167:12;:10;:12::i;:::-;-1:-1:-1;;;;;16155:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16155:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;23147:143::-;23221:4;21944:22;21953:12;:10;:12::i;:::-;21944:8;:22::i;:::-;21936:83;;;;-1:-1:-1;;;21936:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23238:22;23244:7;23253:6;23238:5;:22::i;33177:119::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;33266:6;-1:-1:-1;;;;;33241:47:0;;:49;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;33052:119:0;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;33141:6;-1:-1:-1;;;;;33116:47:0;;:49;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;31606:110:0;31662:53;;;;;;;;;;;;;;;;;;31606:110;:::o;33422:140::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;33521:6;-1:-1:-1;;;;;33507:39:0;;33547:8;33507:49;;;;;;;;;;;;;-1:-1:-1;;;;;33507:49:0;-1:-1:-1;;;;;33507:49:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33507:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33507:49:0;;;;33422:140;;:::o;33732:31::-;;;;;;-1:-1:-1;;;;;33732:31:0;;:::o;13864:110::-;-1:-1:-1;;;;;13948:18:0;13921:7;13948:18;;;;;;;;;;;;13864:110::o;2979:140::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;3062:6;;3041:40;;3078:1;;-1:-1:-1;;;;;3062:6:0;;3041:40;;3078:1;;3041:40;3092:6;:19;;-1:-1:-1;;;;;;3092:19:0;;;2979:140::o;35114:122::-;35181:49;;-1:-1:-1;;;35181:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:79;2233:6;;-1:-1:-1;;;;;2233:6:0;2168:79;:::o;2534:94::-;2614:6;;2574:4;;-1:-1:-1;;;;;2614:6:0;2598:12;:10;:12::i;:::-;-1:-1:-1;;;;;2598:22:0;;2591:29;;2534:94;:::o;24219:87::-;24291:7;24284:14;;;;;;;;-1:-1:-1;;24284:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24258:13;;24284:14;;24291:7;;24284:14;;24291:7;24284:14;;;;;;;;;;;;;;;;;;;;;;;;22164:92;21944:22;21953:12;:10;:12::i;21944:22::-;21936:83;;;;-1:-1:-1;;;21936:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22229:19;22240:7;22229:10;:19::i;:::-;22164:92;:::o;22264:79::-;22308:27;22322:12;:10;:12::i;:::-;22308:13;:27::i;:::-;22264:79::o;16739:261::-;16824:4;16841:129;16850:12;:10;:12::i;:::-;16864:7;16873:96;16912:15;16873:96;;;;;;;;;;;;;;;;;:11;:25;16885:12;:10;:12::i;:::-;-1:-1:-1;;;;;16873:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16873:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;14187:158::-;14256:4;14273:42;14283:12;:10;:12::i;:::-;14297:9;14308:6;14273:9;:42::i;22047:109::-;22103:4;22127:21;:8;22140:7;22127:21;:12;:21;:::i;:::-;22120:28;22047:109;-1:-1:-1;;22047:109:0:o;31871:200::-;31963:4;31984:24;31992:7;32001:6;31984:7;:24::i;:::-;31976:33;;;;;;32016:49;32031:10;32043:7;32052:6;32060:4;32016:14;:49::i;14408:134::-;-1:-1:-1;;;;;14507:18:0;;;14480:7;14507:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14408:134::o;3274:109::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;3347:28;3366:8;3347:18;:28::i;866:98::-;946:10;866:98;:::o;19670:338::-;-1:-1:-1;;;;;19764:19:0;;19756:68;;;;-1:-1:-1;;;19756:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19843:21:0;;19835:68;;;;-1:-1:-1;;;19835:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19916:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19968:32;;;;;;;;;;;;;;;;;19670:338;;;:::o;33970:364::-;34064:10;-1:-1:-1;;;;;34064:20:0;;;;:47;;-1:-1:-1;34088:10:0;-1:-1:-1;;;;;34088:23:0;;;34064:47;34056:108;;;;-1:-1:-1;;;34056:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34171:42;34187:6;34195:9;34206:6;34171:15;:42::i;:::-;33970:364;;;:::o;8463:192::-;8549:7;8585:12;8577:6;;;;8569:29;;;;-1:-1:-1;;;8569:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;8569:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8621:5:0;;;8463:192::o;7534:181::-;7592:7;7624:5;;;7648:6;;;;7640:46;;;;;-1:-1:-1;;;7640:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34340:215;34404:28;34416:7;34425:6;34404:11;:28::i;:::-;34340:215;;:::o;22351:122::-;22408:21;:8;22421:7;22408:21;:12;:21;:::i;:::-;22445:20;;-1:-1:-1;;;;;22445:20:0;;;;;;;;22351:122;:::o;22481:130::-;22541:24;:8;22557:7;22541:24;:15;:24;:::i;:::-;22581:22;;-1:-1:-1;;;;;22581:22:0;;;;;;;;22481:130;:::o;21304:203::-;21376:4;-1:-1:-1;;;;;21401:21:0;;21393:68;;;;-1:-1:-1;;;21393:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21479:20:0;:11;:20;;;;;;;;;;;;;;;21304:203::o;32077:544::-;32192:66;32225:7;31662:53;;;;;;;;;;;;;;;;;;;32192:32;:66::i;:::-;32184:135;;;;-1:-1:-1;;;32184:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32329:7;32338:16;32358:7;-1:-1:-1;;;;;32358:12:0;31662:53;;;;;;;;;;;;;;;;;;;32446:5;32462:7;32480:6;32497:4;32379:131;;;;;;-1:-1:-1;;;;;32379:131:0;-1:-1:-1;;;;;32379:131:0;;;;;;-1:-1:-1;;;;;32379:131:0;-1:-1:-1;;;;;32379:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;32379:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32379:131:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;32379:131:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;32379:131:0;;;179:29:-1;;;;160:49;;32358:159:0;;;32379:131;;32358:159;;-1:-1:-1;32358:159:0;;-1:-1:-1;25:18;-1:-1;32358:159:0;-1:-1:-1;32358:159:0;;-1:-1:-1;32358:159:0;;-1:-1:-1;25:18;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;32358:159:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;32328:189:0;;;;32534:2;32545:3;32526:24;;;;;-1:-1:-1;;;32526:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;32526:24:0;;32077:544;;;;;;:::o;3489:229::-;-1:-1:-1;;;;;3563:22:0;;3555:73;;;;-1:-1:-1;;;3555:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3665:6;;3644:38;;-1:-1:-1;;;;;3644:38:0;;;;3665:6;;3644:38;;3665:6;;3644:38;3693:6;:17;;-1:-1:-1;;;;;;3693:17:0;-1:-1:-1;;;;;3693:17:0;;;;;;;;;;3489:229::o;17490:471::-;-1:-1:-1;;;;;17588:20:0;;17580:70;;;;-1:-1:-1;;;17580:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17669:23:0;;17661:71;;;;-1:-1:-1;;;17661:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17765;17787:6;17765:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17765:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;17745:17:0;;;:9;:17;;;;;;;;;;;:91;;;;17870:20;;;;;;;:32;;17895:6;17870:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17847:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17918:35;;;;;;;17847:20;;17918:35;;;;;;;;;;;;;17490:471;;;:::o;18242:308::-;-1:-1:-1;;;;;18318:21:0;;18310:65;;;;;-1:-1:-1;;;18310:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18403:12;;:24;;18420:6;18403:24;:16;:24;:::i;:::-;18388:12;:39;-1:-1:-1;;;;;18459:18:0;;:9;:18;;;;;;;;;;;:30;;18482:6;18459:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;18438:18:0;;:9;:18;;;;;;;;;;;:51;;;;18505:37;;;;;;;18438:18;;:9;;18505:37;;;;;;;;;;18242:308;;:::o;20768:178::-;20846:18;20850:4;20856:7;20846:3;:18::i;:::-;20845:19;20837:63;;;;;-1:-1:-1;;;20837:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20911:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;20911:27:0;20934:4;20911:27;;;20768:178::o;21026:183::-;21106:18;21110:4;21116:7;21106:3;:18::i;:::-;21098:64;;;;-1:-1:-1;;;21098:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21173:20:0;21196:5;21173:20;;;;;;;;;;;:28;;-1:-1:-1;;21173:28:0;;;21026:183::o;26388:292::-;26476:4;26585:24;26601:7;26585:15;:24::i;:::-;:87;;;;;26626:46;26651:7;26660:11;26626:24;:46::i;25762:400::-;25827:4;26025:55;26050:7;-1:-1:-1;;;26025:24:0;:55::i;:::-;:129;;;;-1:-1:-1;26098:56:0;26123:7;-1:-1:-1;;;;;;26098:24:0;:56::i;:::-;26097:57;;25762:400;-1:-1:-1;;25762:400:0:o;28282:401::-;28375:4;28557:12;28571:11;28586:50;28615:7;28624:11;28586:28;:50::i;:::-;28556:80;;;;28657:7;:17;;;;;28668:6;28657:17;28649:26;28282:401;-1:-1:-1;;;;;28282:401:0:o;29210:450::-;29391:57;;;-1:-1:-1;;;;;;29391:57:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;29391:57:0;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;29497:44:0;;;;29334:4;;;;29391:57;29334:4;;29362:26;;-1:-1:-1;;;;;29497:18:0;;;29520:5;;29391:57;;29497:44;;;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;29497:44:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;29459:82:0;;;;29572:2;29556:6;:13;:18;29552:45;;;29584:5;29591;29576:21;;;;;;;;;29552:45;29616:7;29636:6;29625:26;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29625:26:0;29608:44;;-1:-1:-1;29625:26:0;-1:-1:-1;;;;29210:450:0;;;;;;:::o

Swarm Source

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