ETH Price: $3,300.68 (-3.26%)
Gas: 19 Gwei

Token

Mytrade Token (MYT)
 

Overview

Max Total Supply

1,000,000,000 MYT

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Nomad: ERC20 Bridge
Balance
70,000,000.000000000000000001 MYT

Value
$0.00
0x88A69B4E698A4B090DF6CF5Bd7B2D47325Ad30A3
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:
MytradeToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-09
*/

/**
 *Submitted for verification at BscScan.com on 2021-04-08
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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


/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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(_owner == _msgSender(), "Ownable: caller is not the 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 virtual 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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}


/**
 * @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.
     */
    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.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {codehash := extcodehash(account)}
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success,) = recipient.call{value : amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value : weiValue}(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


/**
 * @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 {ERC20PresetMinterPauser}.
 *
 * 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;
    using Address for address;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @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. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override 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 virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _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 virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _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 virtual {
        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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}


library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {// Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1;
            // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;

abstract contract DelegateERC20 is ERC20 {
    // @notice A record of each accounts delegate
    mapping(address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping(address => mapping(uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping(address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping(address => uint) public nonces;


    // support delegates mint
    function _mint(address account, uint256 amount) internal override virtual {
        super._mint(account, amount);

        // add delegates to the minter
        _moveDelegates(address(0), _delegates[account], amount);
    }


    function _transfer(address sender, address recipient, uint256 amount) internal override virtual {
        super._transfer(sender, recipient, amount);
        _moveDelegates(_delegates[sender], _delegates[recipient], amount);
    }


    /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
    external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "MytradeToken::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "MytradeToken::delegateBySig: invalid nonce");
        require(now <= expiry, "MytradeToken::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
    external
    view
    returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
    external
    view
    returns (uint256)
    {
        require(blockNumber < block.number, "MytradeToken::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2;
            // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
    internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator);
        // balance of underlying balances (not scaled);
        _delegates[delegator] = delegatee;

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);

        emit DelegateChanged(delegator, currentDelegate, delegatee);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
    internal
    {
        uint32 blockNumber = safe32(block.number, "MytradeToken::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2 ** 32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly {chainId := chainid()}

        return chainId;
    }

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

}

contract MytradeToken is DelegateERC20, Ownable {
    uint256 private constant maxSupply = 1000000000 * 1e18;     // the total supply

    using EnumerableSet for EnumerableSet.AddressSet;
    EnumerableSet.AddressSet private _minters;

    constructor() public ERC20("Mytrade Token", "MYT"){
        _mint(0x822Ac17Ef0fe003F866E8e62a1cb445a7Bbd6F6C, maxSupply);
    }

    // mint with max supply
    function mint(address _to, uint256 _amount) public onlyMinter returns (bool) {
        if (_amount.add(totalSupply()) > maxSupply) {
            return false;
        }
        _mint(_to, _amount);
        return true;
    }

    function addMinter(address _addMinter) public onlyOwner returns (bool) {
        require(_addMinter != address(0), "MytradeToken: _addMinter is the zero address");
        return EnumerableSet.add(_minters, _addMinter);
    }

    function delMinter(address _delMinter) public onlyOwner returns (bool) {
        require(_delMinter != address(0), "MytradeToken: _delMinter is the zero address");
        return EnumerableSet.remove(_minters, _delMinter);
    }

    function getMinterLength() public view returns (uint256) {
        return EnumerableSet.length(_minters);
    }

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

    function getMinter(uint256 _index) public view onlyOwner returns (address){
        require(_index <= getMinterLength() - 1, "MytradeToken: index out of bounds");
        return EnumerableSet.at(_minters, _index);
    }

    // modifier for mint function
    modifier onlyMinter() {
        require(isMinter(msg.sender), "caller is not the minter");
        _;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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":"amount","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":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","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":"_delMinter","type":"address"}],"name":"delMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020016c26bcba3930b232902a37b5b2b760991b8152506040518060400160405280600381526020016213565560ea1b81525081600390805190602001906200006c9291906200060a565b508051620000829060049060208401906200060a565b50506005805460ff191660121790555060006200009e6200011e565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200011873822ac17ef0fe003f866e8e62a1cb445a7bbd6f6c6b033b2e3c9fd0803ce800000062000122565b62000781565b3390565b6200013982826200016460201b62000e8d1760201c565b6001600160a01b038083166000908152600660205260408120546200016092168362000250565b5050565b6001600160a01b038216620001965760405162461bcd60e51b81526004016200018d9062000733565b60405180910390fd5b620001a460008383620003bd565b620001c081600254620003c260201b62000f4d1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001f391839062000f4d620003c2821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002449085906200076a565b60405180910390a35050565b816001600160a01b0316836001600160a01b031614158015620002735750600081115b15620003bd576001600160a01b038316156200031b576001600160a01b03831660009081526008602052604081205463ffffffff169081620002b7576000620002e9565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000620003078483620003f160201b62000f721790919060201c565b905062000317868484846200043b565b5050505b6001600160a01b03821615620003bd576001600160a01b03821660009081526008602052604081205463ffffffff169081620003595760006200038b565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000620003a98483620003c260201b62000f4d1790919060201c565b9050620003b9858484846200043b565b5050505b505050565b600082820183811015620003ea5760405162461bcd60e51b81526004016200018d90620006fc565b9392505050565b6000620003ea83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620005a860201b60201c565b600062000462436040518060600160405280603c815260200162002756603c9139620005d7565b905060008463ffffffff16118015620004ac57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15620004eb576001600160a01b038516600090815260076020908152604080832063ffffffff600019890116845290915290206001018290556200055c565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516200059992919062000773565b60405180910390a25050505050565b60008184841115620005cf5760405162461bcd60e51b81526004016200018d9190620006a6565b505050900390565b6000816401000000008410620006025760405162461bcd60e51b81526004016200018d9190620006a6565b509192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200064d57805160ff19168380011785556200067d565b828001600101855582156200067d579182015b828111156200067d57825182559160200191906001019062000660565b506200068b9291506200068f565b5090565b5b808211156200068b576000815560010162000690565b6000602080835283518082850152825b81811015620006d457858101830151858201604001528201620006b6565b81811115620006e65783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b918252602082015260400190565b611fc580620007916000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103b0578063e7a324dc146103c3578063f1127ed8146103cb578063f2fde38b146103ec576101cf565b8063a9059cbb14610364578063aa271e1a14610377578063b4b5ea571461038a578063c3cda5201461039d576101cf565b80638da5cb5b116100de5780638da5cb5b1461032e57806395d89b4114610336578063983b2d561461033e578063a457c2d714610351576101cf565b8063715018a614610300578063782d6fe1146103085780637ecebe001461031b576101cf565b8063313ce567116101715780635b7121f81161014b5780635b7121f8146102985780635c19a95c146102b85780636fcfff45146102cd57806370a08231146102ed576101cf565b8063313ce5671461025d578063395093511461027257806340c10f1914610285576101cf565b806318160ddd116101ad57806318160ddd1461022757806320606b701461022f57806323338b881461023757806323b872dd1461024a576101cf565b80630323aac7146101d457806306fdde03146101f2578063095ea7b314610207575b600080fd5b6101dc6103ff565b6040516101e99190611948565b60405180910390f35b6101fa610410565b6040516101e991906119b7565b61021a61021536600461182e565b6104a6565b6040516101e9919061193d565b6101dc6104c4565b6101dc6104ca565b61021a61024536600461179f565b6104ee565b61021a6102583660046117ee565b61055f565b6102656105e6565b6040516101e99190611ebd565b61021a61028036600461182e565b6105ef565b61021a61029336600461182e565b61063d565b6102ab6102a63660046118f6565b61069b565b6040516101e99190611929565b6102cb6102c636600461179f565b610707565b005b6102e06102db36600461179f565b610714565b6040516101e99190611e96565b6101dc6102fb36600461179f565b61072c565b6102cb610747565b6101dc61031636600461182e565b6107c6565b6101dc61032936600461179f565b6109af565b6102ab6109c1565b6101fa6109d0565b61021a61034c36600461179f565b610a31565b61021a61035f36600461182e565b610a99565b61021a61037236600461182e565b610b01565b61021a61038536600461179f565b610b15565b6101dc61039836600461179f565b610b22565b6102cb6103ab366004611858565b610b86565b6101dc6103be3660046117ba565b610d5a565b6101dc610d85565b6103de6103d93660046118b7565b610da9565b6040516101e9929190611ea7565b6102cb6103fa36600461179f565b610dd6565b600061040b600b610fb4565b905090565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b60006104ba6104b3610fbf565b8484610fc3565b5060015b92915050565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006104f8610fbf565b600a546001600160a01b0390811691161461052e5760405162461bcd60e51b815260040161052590611c6b565b60405180910390fd5b6001600160a01b0382166105545760405162461bcd60e51b815260040161052590611be8565b6104be600b83611077565b600061056c84848461108c565b6105dc84610578610fbf565b6105d785604051806060016040528060288152602001611f07602891396001600160a01b038a166000908152600160205260408120906105b6610fbf565b6001600160a01b0316815260208101919091526040016000205491906110ce565b610fc3565b5060019392505050565b60055460ff1690565b60006104ba6105fc610fbf565b846105d7856001600061060d610fbf565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f4d565b600061064833610b15565b6106645760405162461bcd60e51b815260040161052590611c34565b6b033b2e3c9fd0803ce800000061068361067c6104c4565b8490610f4d565b1115610691575060006104be565b6104ba83836110fa565b60006106a5610fbf565b600a546001600160a01b039081169116146106d25760405162461bcd60e51b815260040161052590611c6b565b60016106dc6103ff565b038211156106fc5760405162461bcd60e51b815260040161052590611e47565b6104be600b8361112d565b6107113382611139565b50565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b61074f610fbf565b600a546001600160a01b0390811691161461077c5760405162461bcd60e51b815260040161052590611c6b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60004382106107e75760405162461bcd60e51b815260040161052590611ca0565b6001600160a01b03831660009081526008602052604090205463ffffffff16806108155760009150506104be565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610884576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506104be565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156108bf5760009150506104be565b600060001982015b8163ffffffff168163ffffffff16111561097857600282820363ffffffff160481036108f1611771565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610953576020015194506104be9350505050565b805163ffffffff1687111561096a57819350610971565b6001820392505b50506108c7565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b60096020526000908152604090205481565b600a546001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049c5780601f106104715761010080835404028352916020019161049c565b6000610a3b610fbf565b600a546001600160a01b03908116911614610a685760405162461bcd60e51b815260040161052590611c6b565b6001600160a01b038216610a8e5760405162461bcd60e51b815260040161052590611a8f565b6104be600b836111eb565b60006104ba610aa6610fbf565b846105d785604051806060016040528060258152602001611f6b6025913960016000610ad0610fbf565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110ce565b60006104ba610b0e610fbf565b848461108c565b60006104be600b83611200565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610b4d576000610b7f565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610bb1610410565b80519060200120610bc0611215565b30604051602001610bd49493929190611975565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610c259493929190611951565b60405160208183030381529060405280519060200120905060008282604051602001610c5292919061190e565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610c8f9493929190611999565b6020604051602081039080840390855afa158015610cb1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610ce45760405162461bcd60e51b815260040161052590611adb565b6001600160a01b03811660009081526009602052604090208054600181019091558914610d235760405162461bcd60e51b815260040161052590611dc6565b87421115610d435760405162461bcd60e51b815260040161052590611d78565b610d4d818b611139565b505050505b505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610dde610fbf565b600a546001600160a01b03908116911614610e0b5760405162461bcd60e51b815260040161052590611c6b565b6001600160a01b038116610e315760405162461bcd60e51b815260040161052590611b29565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610eb35760405162461bcd60e51b815260040161052590611e10565b610ebf600083836110c9565b600254610ecc9082610f4d565b6002556001600160a01b038216600090815260208190526040902054610ef29082610f4d565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f41908590611948565b60405180910390a35050565b600082820183811015610b7f5760405162461bcd60e51b815260040161052590611bb1565b6000610b7f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ce565b60006104be82611219565b3390565b6001600160a01b038316610fe95760405162461bcd60e51b815260040161052590611d34565b6001600160a01b03821661100f5760405162461bcd60e51b815260040161052590611b6f565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061106a908590611948565b60405180910390a3505050565b6000610b7f836001600160a01b03841661121d565b6110978383836112e3565b6001600160a01b038084166000908152600660205260408082205485841683529120546110c9929182169116836113f8565b505050565b600081848411156110f25760405162461bcd60e51b815260040161052591906119b7565b505050900390565b6111048282610e8d565b6001600160a01b038083166000908152600660205260408120546111299216836113f8565b5050565b6000610b7f8383611535565b6001600160a01b03808316600090815260066020526040812054909116906111608461072c565b6001600160a01b03858116600090815260066020526040902080546001600160a01b031916918616919091179055905061119b8284836113f8565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b6000610b7f836001600160a01b03841661157a565b6000610b7f836001600160a01b0384166115c4565b4690565b5490565b600081815260018301602052604081205480156112d9578354600019808301919081019060009087908390811061125057fe5b906000526020600020015490508087600001848154811061126d57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061129d57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104be565b60009150506104be565b6001600160a01b0383166113095760405162461bcd60e51b815260040161052590611cef565b6001600160a01b03821661132f5760405162461bcd60e51b815260040161052590611a4c565b61133a8383836110c9565b61137781604051806060016040528060268152602001611ee1602691396001600160a01b03861660009081526020819052604090205491906110ce565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546113a69082610f4d565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061106a908590611948565b816001600160a01b0316836001600160a01b03161415801561141a5750600081115b156110c9576001600160a01b038316156114ac576001600160a01b03831660009081526008602052604081205463ffffffff16908161145a57600061148c565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050600061149a8285610f72565b90506114a8868484846115dc565b5050505b6001600160a01b038216156110c9576001600160a01b03821660009081526008602052604081205463ffffffff1690816114e7576000611519565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006115278285610f4d565b9050610d52858484846115dc565b815460009082106115585760405162461bcd60e51b815260040161052590611a0a565b82600001828154811061156757fe5b9060005260206000200154905092915050565b600061158683836115c4565b6115bc575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104be565b5060006104be565b60009081526001919091016020526040902054151590565b6000611600436040518060600160405280603c8152602001611f2f603c9139611741565b905060008463ffffffff1611801561164957506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611686576001600160a01b038516600090815260076020908152604080832063ffffffff600019890116845290915290206001018290556116f7565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611732929190611e88565b60405180910390a25050505050565b60008164010000000084106117695760405162461bcd60e51b815260040161052591906119b7565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146104be57600080fd5b6000602082840312156117b0578081fd5b610b7f8383611788565b600080604083850312156117cc578081fd5b6117d68484611788565b91506117e58460208501611788565b90509250929050565b600080600060608486031215611802578081fd5b833561180d81611ecb565b9250602084013561181d81611ecb565b929592945050506040919091013590565b60008060408385031215611840578182fd5b61184a8484611788565b946020939093013593505050565b60008060008060008060c08789031215611870578182fd5b61187a8888611788565b95506020870135945060408701359350606087013560ff8116811461189d578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156118c9578182fd5b6118d38484611788565b9150602083013563ffffffff811681146118eb578182fd5b809150509250929050565b600060208284031215611907578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b818110156119e3578581018301518582016040015282016119c7565b818111156119f45783604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602c908201527f4d797472616465546f6b656e3a205f6164644d696e746572206973207468652060408201526b7a65726f206164647265737360a01b606082015260800190565b6020808252602e908201527f4d797472616465546f6b656e3a3a64656c656761746542795369673a20696e7660408201526d616c6964207369676e617475726560901b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252602c908201527f4d797472616465546f6b656e3a205f64656c4d696e746572206973207468652060408201526b7a65726f206164647265737360a01b606082015260800190565b60208082526018908201527f63616c6c6572206973206e6f7420746865206d696e7465720000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4d797472616465546f6b656e3a3a6765745072696f72566f7465733a206e6f7460408201526e081e595d0819195d195c9b5a5b9959608a1b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252602e908201527f4d797472616465546f6b656e3a3a64656c656761746542795369673a2073696760408201526d1b985d1d5c9948195e1c1a5c995960921b606082015260800190565b6020808252602a908201527f4d797472616465546f6b656e3a3a64656c656761746542795369673a20696e76604082015269616c6964206e6f6e636560b01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60208082526021908201527f4d797472616465546f6b656e3a20696e646578206f7574206f6620626f756e646040820152607360f81b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b038116811461071157600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d797472616465546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c62d0f4f3d0683b053e971efbc1120d5328f050c205a7b47f7d963dbef29ccdd64736f6c634300060c00334d797472616465546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103b0578063e7a324dc146103c3578063f1127ed8146103cb578063f2fde38b146103ec576101cf565b8063a9059cbb14610364578063aa271e1a14610377578063b4b5ea571461038a578063c3cda5201461039d576101cf565b80638da5cb5b116100de5780638da5cb5b1461032e57806395d89b4114610336578063983b2d561461033e578063a457c2d714610351576101cf565b8063715018a614610300578063782d6fe1146103085780637ecebe001461031b576101cf565b8063313ce567116101715780635b7121f81161014b5780635b7121f8146102985780635c19a95c146102b85780636fcfff45146102cd57806370a08231146102ed576101cf565b8063313ce5671461025d578063395093511461027257806340c10f1914610285576101cf565b806318160ddd116101ad57806318160ddd1461022757806320606b701461022f57806323338b881461023757806323b872dd1461024a576101cf565b80630323aac7146101d457806306fdde03146101f2578063095ea7b314610207575b600080fd5b6101dc6103ff565b6040516101e99190611948565b60405180910390f35b6101fa610410565b6040516101e991906119b7565b61021a61021536600461182e565b6104a6565b6040516101e9919061193d565b6101dc6104c4565b6101dc6104ca565b61021a61024536600461179f565b6104ee565b61021a6102583660046117ee565b61055f565b6102656105e6565b6040516101e99190611ebd565b61021a61028036600461182e565b6105ef565b61021a61029336600461182e565b61063d565b6102ab6102a63660046118f6565b61069b565b6040516101e99190611929565b6102cb6102c636600461179f565b610707565b005b6102e06102db36600461179f565b610714565b6040516101e99190611e96565b6101dc6102fb36600461179f565b61072c565b6102cb610747565b6101dc61031636600461182e565b6107c6565b6101dc61032936600461179f565b6109af565b6102ab6109c1565b6101fa6109d0565b61021a61034c36600461179f565b610a31565b61021a61035f36600461182e565b610a99565b61021a61037236600461182e565b610b01565b61021a61038536600461179f565b610b15565b6101dc61039836600461179f565b610b22565b6102cb6103ab366004611858565b610b86565b6101dc6103be3660046117ba565b610d5a565b6101dc610d85565b6103de6103d93660046118b7565b610da9565b6040516101e9929190611ea7565b6102cb6103fa36600461179f565b610dd6565b600061040b600b610fb4565b905090565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b60006104ba6104b3610fbf565b8484610fc3565b5060015b92915050565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006104f8610fbf565b600a546001600160a01b0390811691161461052e5760405162461bcd60e51b815260040161052590611c6b565b60405180910390fd5b6001600160a01b0382166105545760405162461bcd60e51b815260040161052590611be8565b6104be600b83611077565b600061056c84848461108c565b6105dc84610578610fbf565b6105d785604051806060016040528060288152602001611f07602891396001600160a01b038a166000908152600160205260408120906105b6610fbf565b6001600160a01b0316815260208101919091526040016000205491906110ce565b610fc3565b5060019392505050565b60055460ff1690565b60006104ba6105fc610fbf565b846105d7856001600061060d610fbf565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f4d565b600061064833610b15565b6106645760405162461bcd60e51b815260040161052590611c34565b6b033b2e3c9fd0803ce800000061068361067c6104c4565b8490610f4d565b1115610691575060006104be565b6104ba83836110fa565b60006106a5610fbf565b600a546001600160a01b039081169116146106d25760405162461bcd60e51b815260040161052590611c6b565b60016106dc6103ff565b038211156106fc5760405162461bcd60e51b815260040161052590611e47565b6104be600b8361112d565b6107113382611139565b50565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b61074f610fbf565b600a546001600160a01b0390811691161461077c5760405162461bcd60e51b815260040161052590611c6b565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60004382106107e75760405162461bcd60e51b815260040161052590611ca0565b6001600160a01b03831660009081526008602052604090205463ffffffff16806108155760009150506104be565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610884576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506104be565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156108bf5760009150506104be565b600060001982015b8163ffffffff168163ffffffff16111561097857600282820363ffffffff160481036108f1611771565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610953576020015194506104be9350505050565b805163ffffffff1687111561096a57819350610971565b6001820392505b50506108c7565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b60096020526000908152604090205481565b600a546001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049c5780601f106104715761010080835404028352916020019161049c565b6000610a3b610fbf565b600a546001600160a01b03908116911614610a685760405162461bcd60e51b815260040161052590611c6b565b6001600160a01b038216610a8e5760405162461bcd60e51b815260040161052590611a8f565b6104be600b836111eb565b60006104ba610aa6610fbf565b846105d785604051806060016040528060258152602001611f6b6025913960016000610ad0610fbf565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110ce565b60006104ba610b0e610fbf565b848461108c565b60006104be600b83611200565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610b4d576000610b7f565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610bb1610410565b80519060200120610bc0611215565b30604051602001610bd49493929190611975565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610c259493929190611951565b60405160208183030381529060405280519060200120905060008282604051602001610c5292919061190e565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610c8f9493929190611999565b6020604051602081039080840390855afa158015610cb1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610ce45760405162461bcd60e51b815260040161052590611adb565b6001600160a01b03811660009081526009602052604090208054600181019091558914610d235760405162461bcd60e51b815260040161052590611dc6565b87421115610d435760405162461bcd60e51b815260040161052590611d78565b610d4d818b611139565b505050505b505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610dde610fbf565b600a546001600160a01b03908116911614610e0b5760405162461bcd60e51b815260040161052590611c6b565b6001600160a01b038116610e315760405162461bcd60e51b815260040161052590611b29565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610eb35760405162461bcd60e51b815260040161052590611e10565b610ebf600083836110c9565b600254610ecc9082610f4d565b6002556001600160a01b038216600090815260208190526040902054610ef29082610f4d565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f41908590611948565b60405180910390a35050565b600082820183811015610b7f5760405162461bcd60e51b815260040161052590611bb1565b6000610b7f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ce565b60006104be82611219565b3390565b6001600160a01b038316610fe95760405162461bcd60e51b815260040161052590611d34565b6001600160a01b03821661100f5760405162461bcd60e51b815260040161052590611b6f565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061106a908590611948565b60405180910390a3505050565b6000610b7f836001600160a01b03841661121d565b6110978383836112e3565b6001600160a01b038084166000908152600660205260408082205485841683529120546110c9929182169116836113f8565b505050565b600081848411156110f25760405162461bcd60e51b815260040161052591906119b7565b505050900390565b6111048282610e8d565b6001600160a01b038083166000908152600660205260408120546111299216836113f8565b5050565b6000610b7f8383611535565b6001600160a01b03808316600090815260066020526040812054909116906111608461072c565b6001600160a01b03858116600090815260066020526040902080546001600160a01b031916918616919091179055905061119b8284836113f8565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b6000610b7f836001600160a01b03841661157a565b6000610b7f836001600160a01b0384166115c4565b4690565b5490565b600081815260018301602052604081205480156112d9578354600019808301919081019060009087908390811061125057fe5b906000526020600020015490508087600001848154811061126d57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061129d57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104be565b60009150506104be565b6001600160a01b0383166113095760405162461bcd60e51b815260040161052590611cef565b6001600160a01b03821661132f5760405162461bcd60e51b815260040161052590611a4c565b61133a8383836110c9565b61137781604051806060016040528060268152602001611ee1602691396001600160a01b03861660009081526020819052604090205491906110ce565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546113a69082610f4d565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061106a908590611948565b816001600160a01b0316836001600160a01b03161415801561141a5750600081115b156110c9576001600160a01b038316156114ac576001600160a01b03831660009081526008602052604081205463ffffffff16908161145a57600061148c565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050600061149a8285610f72565b90506114a8868484846115dc565b5050505b6001600160a01b038216156110c9576001600160a01b03821660009081526008602052604081205463ffffffff1690816114e7576000611519565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006115278285610f4d565b9050610d52858484846115dc565b815460009082106115585760405162461bcd60e51b815260040161052590611a0a565b82600001828154811061156757fe5b9060005260206000200154905092915050565b600061158683836115c4565b6115bc575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104be565b5060006104be565b60009081526001919091016020526040902054151590565b6000611600436040518060600160405280603c8152602001611f2f603c9139611741565b905060008463ffffffff1611801561164957506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611686576001600160a01b038516600090815260076020908152604080832063ffffffff600019890116845290915290206001018290556116f7565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611732929190611e88565b60405180910390a25050505050565b60008164010000000084106117695760405162461bcd60e51b815260040161052591906119b7565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146104be57600080fd5b6000602082840312156117b0578081fd5b610b7f8383611788565b600080604083850312156117cc578081fd5b6117d68484611788565b91506117e58460208501611788565b90509250929050565b600080600060608486031215611802578081fd5b833561180d81611ecb565b9250602084013561181d81611ecb565b929592945050506040919091013590565b60008060408385031215611840578182fd5b61184a8484611788565b946020939093013593505050565b60008060008060008060c08789031215611870578182fd5b61187a8888611788565b95506020870135945060408701359350606087013560ff8116811461189d578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156118c9578182fd5b6118d38484611788565b9150602083013563ffffffff811681146118eb578182fd5b809150509250929050565b600060208284031215611907578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b818110156119e3578581018301518582016040015282016119c7565b818111156119f45783604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602c908201527f4d797472616465546f6b656e3a205f6164644d696e746572206973207468652060408201526b7a65726f206164647265737360a01b606082015260800190565b6020808252602e908201527f4d797472616465546f6b656e3a3a64656c656761746542795369673a20696e7660408201526d616c6964207369676e617475726560901b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252602c908201527f4d797472616465546f6b656e3a205f64656c4d696e746572206973207468652060408201526b7a65726f206164647265737360a01b606082015260800190565b60208082526018908201527f63616c6c6572206973206e6f7420746865206d696e7465720000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4d797472616465546f6b656e3a3a6765745072696f72566f7465733a206e6f7460408201526e081e595d0819195d195c9b5a5b9959608a1b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252602e908201527f4d797472616465546f6b656e3a3a64656c656761746542795369673a2073696760408201526d1b985d1d5c9948195e1c1a5c995960921b606082015260800190565b6020808252602a908201527f4d797472616465546f6b656e3a3a64656c656761746542795369673a20696e76604082015269616c6964206e6f6e636560b01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60208082526021908201527f4d797472616465546f6b656e3a20696e646578206f7574206f6620626f756e646040820152607360f81b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b038116811461071157600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d797472616465546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c62d0f4f3d0683b053e971efbc1120d5328f050c205a7b47f7d963dbef29ccdd64736f6c634300060c0033

Deployed Bytecode Sourcemap

45792:1764:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46918:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19511:83;;;:::i;:::-;;;;;;;:::i;21617:169::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20586:100::-;;;:::i;37961:122::-;;;:::i;46679:231::-;;;;;;:::i;:::-;;:::i;22260:321::-;;;;;;:::i;:::-;;:::i;20438:83::-;;;:::i;:::-;;;;;;;:::i;22990:218::-;;;;;;:::i;:::-;;:::i;46205:230::-;;;;;;:::i;:::-;;:::i;47176:222::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39074:104::-;;;;;;:::i;:::-;;:::i;:::-;;37840:48;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20749:119::-;;;;;;:::i;:::-;;:::i;2690:148::-;;;:::i;41685:1262::-;;;;;;:::i;:::-;;:::i;38375:38::-;;;;;;:::i;:::-;;:::i;2048:79::-;;;:::i;19713:87::-;;;:::i;46443:228::-;;;;;;:::i;:::-;;:::i;23711:269::-;;;;;;:::i;:::-;;:::i;21081:175::-;;;;;;:::i;:::-;;:::i;47039:129::-;;;;;;:::i;:::-;;:::i;41011:243::-;;;;;;:::i;:::-;;:::i;39612:1198::-;;;;;;:::i;:::-;;:::i;21319:151::-;;;;;;:::i;:::-;;:::i;38177:117::-;;;:::i;37703:68::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;2993:244::-;;;;;;:::i;:::-;;:::i;46918:113::-;46966:7;46993:30;47014:8;46993:20;:30::i;:::-;46986:37;;46918:113;:::o;19511:83::-;19581:5;19574:12;;;;;;;;-1:-1:-1;;19574:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19548:13;;19574:12;;19581:5;;19574:12;;19581:5;19574:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19511:83;:::o;21617:169::-;21700:4;21717:39;21726:12;:10;:12::i;:::-;21740:7;21749:6;21717:8;:39::i;:::-;-1:-1:-1;21774:4:0;21617:169;;;;;:::o;20586:100::-;20666:12;;20586:100;:::o;37961:122::-;38003:80;37961:122;:::o;46679:231::-;46744:4;2270:12;:10;:12::i;:::-;2260:6;;-1:-1:-1;;;;;2260:6:0;;;:22;;;2252:67;;;;-1:-1:-1;;;2252:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;46769:24:0;::::1;46761:81;;;;-1:-1:-1::0;;;46761:81:0::1;;;;;;;:::i;:::-;46860:42;46881:8;46891:10;46860:20;:42::i;22260:321::-:0;22366:4;22383:36;22393:6;22401:9;22412:6;22383:9;:36::i;:::-;22430:121;22439:6;22447:12;:10;:12::i;:::-;22461:89;22499:6;22461:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22461:19:0;;;;;;:11;:19;;;;;;22481:12;:10;:12::i;:::-;-1:-1:-1;;;;;22461:33:0;;;;;;;;;;;;-1:-1:-1;22461:33:0;;;:89;:37;:89::i;:::-;22430:8;:121::i;:::-;-1:-1:-1;22569:4:0;22260:321;;;;;:::o;20438:83::-;20504:9;;;;20438:83;:::o;22990:218::-;23078:4;23095:83;23104:12;:10;:12::i;:::-;23118:7;23127:50;23166:10;23127:11;:25;23139:12;:10;:12::i;:::-;-1:-1:-1;;;;;23127:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23127:25:0;;;:34;;;;;;;;;;;:38;:50::i;46205:230::-;46276:4;47482:20;47491:10;47482:8;:20::i;:::-;47474:57;;;;-1:-1:-1;;;47474:57:0;;;;;;;:::i;:::-;45884:17:::1;46297:26;46309:13;:11;:13::i;:::-;46297:7:::0;;:11:::1;:26::i;:::-;:38;46293:83;;;-1:-1:-1::0;46359:5:0::1;46352:12;;46293:83;46386:19;46392:3;46397:7;46386:5;:19::i;47176:222::-:0;47242:7;2270:12;:10;:12::i;:::-;2260:6;;-1:-1:-1;;;;;2260:6:0;;;:22;;;2252:67;;;;-1:-1:-1;;;2252:67:0;;;;;;;:::i;:::-;47299:1:::1;47279:17;:15;:17::i;:::-;:21;47269:6;:31;;47261:77;;;;-1:-1:-1::0;;;47261:77:0::1;;;;;;;:::i;:::-;47356:34;47373:8;47383:6;47356:16;:34::i;39074:104::-:0;39138:32;39148:10;39160:9;39138;:32::i;:::-;39074:104;:::o;37840:48::-;;;;;;;;;;;;;;;:::o;20749:119::-;-1:-1:-1;;;;;20842:18:0;20815:7;20842:18;;;;;;;;;;;;20749:119::o;2690:148::-;2270:12;:10;:12::i;:::-;2260:6;;-1:-1:-1;;;;;2260:6:0;;;:22;;;2252:67;;;;-1:-1:-1;;;2252:67:0;;;;;;;:::i;:::-;2781:6:::1;::::0;2760:40:::1;::::0;2797:1:::1;::::0;-1:-1:-1;;;;;2781:6:0::1;::::0;2760:40:::1;::::0;2797:1;;2760:40:::1;2811:6;:19:::0;;-1:-1:-1;;;;;;2811:19:0::1;::::0;;2690:148::o;41685:1262::-;41781:7;41828:12;41814:11;:26;41806:86;;;;-1:-1:-1;;;41806:86:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41927:23:0;;41905:19;41927:23;;;:14;:23;;;;;;;;41965:17;41961:58;;42006:1;41999:8;;;;;41961:58;-1:-1:-1;;;;;42079:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;42100:16:0;;42079:38;;;;;;;;;:48;;:63;-1:-1:-1;42075:147:0;;-1:-1:-1;;;;;42166:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;42187:16:0;;;;42166:38;;;;;;;;42202:1;42166:44;;;-1:-1:-1;42159:51:0;;42075:147;-1:-1:-1;;;;;42283:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;42279:88:0;;;42354:1;42347:8;;;;;42279:88;42379:12;-1:-1:-1;;42421:16:0;;42448:441;42463:5;42455:13;;:5;:13;;;42448:441;;;42527:1;42510:13;;;42509:19;;;42501:27;;42583:20;;:::i;:::-;-1:-1:-1;;;;;;42606:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;42583:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42653:27;;42649:229;;;42708:8;;;;-1:-1:-1;42701:15:0;;-1:-1:-1;;;;42701:15:0;42649:229;42742:12;;:26;;;-1:-1:-1;42738:140:0;;;42797:6;42789:14;;42738:140;;;42861:1;42852:6;:10;42844:18;;42738:140;42448:441;;;;;-1:-1:-1;;;;;;42906:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;41685:1262:0;;;;:::o;38375:38::-;;;;;;;;;;;;;:::o;2048:79::-;2113:6;;-1:-1:-1;;;;;2113:6:0;2048:79;:::o;19713:87::-;19785:7;19778:14;;;;;;;;-1:-1:-1;;19778:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19752:13;;19778:14;;19785:7;;19778:14;;19785:7;19778:14;;;;;;;;;;;;;;;;;;;;;;;;46443:228;46508:4;2270:12;:10;:12::i;:::-;2260:6;;-1:-1:-1;;;;;2260:6:0;;;:22;;;2252:67;;;;-1:-1:-1;;;2252:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46533:24:0;::::1;46525:81;;;;-1:-1:-1::0;;;46525:81:0::1;;;;;;;:::i;:::-;46624:39;46642:8;46652:10;46624:17;:39::i;23711:269::-:0;23804:4;23821:129;23830:12;:10;:12::i;:::-;23844:7;23853:96;23892:15;23853:96;;;;;;;;;;;;;;;;;:11;:25;23865:12;:10;:12::i;:::-;-1:-1:-1;;;;;23853:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23853:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;21081:175::-;21167:4;21184:42;21194:12;:10;:12::i;:::-;21208:9;21219:6;21184:9;:42::i;47039:129::-;47095:4;47119:41;47142:8;47152:7;47119:22;:41::i;41011:243::-;-1:-1:-1;;;;;41138:23:0;;41091:7;41138:23;;;:14;:23;;;;;;;;41179:16;:67;;41245:1;41179:67;;;-1:-1:-1;;;;;41198:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;41219:16:0;;41198:38;;;;;;;;41234:1;41198:44;;41179:67;41172:74;41011:243;-1:-1:-1;;;41011:243:0:o;39612:1198::-;39801:23;38003:80;39930:6;:4;:6::i;:::-;39914:24;;;;;;39957:12;:10;:12::i;:::-;39996:4;39851:165;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39827:200;;;;;;39801:226;;40040:18;38223:71;40152:9;40180:5;40204:6;40085:140;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40061:175;;;;;;40040:196;;40249:14;40354:15;40388:10;40290:123;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40266:158;;;;;;40249:175;;40437:17;40457:26;40467:6;40475:1;40478;40481;40457:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40457:26:0;;-1:-1:-1;;40457:26:0;;;-1:-1:-1;;;;;;;40502:23:0;;40494:82;;;;-1:-1:-1;;;40494:82:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40604:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;40595:28;;40587:83;;;;-1:-1:-1;;;40587:83:0;;;;;;;:::i;:::-;40696:6;40689:3;:13;;40681:72;;;;-1:-1:-1;;;40681:72:0;;;;;;;:::i;:::-;40771:31;40781:9;40792;40771;:31::i;:::-;40764:38;;;;39612:1198;;;;;;;:::o;21319:151::-;-1:-1:-1;;;;;21435:18:0;;;21408:7;21435:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21319:151::o;38177:117::-;38223:71;38177:117;:::o;37703:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2993:244::-;2270:12;:10;:12::i;:::-;2260:6;;-1:-1:-1;;;;;2260:6:0;;;:22;;;2252:67;;;;-1:-1:-1;;;2252:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3082:22:0;::::1;3074:73;;;;-1:-1:-1::0;;;3074:73:0::1;;;;;;;:::i;:::-;3184:6;::::0;3163:38:::1;::::0;-1:-1:-1;;;;;3163:38:0;;::::1;::::0;3184:6:::1;::::0;3163:38:::1;::::0;3184:6:::1;::::0;3163:38:::1;3212:6;:17:::0;;-1:-1:-1;;;;;;3212:17:0::1;-1:-1:-1::0;;;;;3212:17:0;;;::::1;::::0;;;::::1;::::0;;2993:244::o;25290:378::-;-1:-1:-1;;;;;25374:21:0;;25366:65;;;;-1:-1:-1;;;25366:65:0;;;;;;;:::i;:::-;25444:49;25473:1;25477:7;25486:6;25444:20;:49::i;:::-;25521:12;;:24;;25538:6;25521:16;:24::i;:::-;25506:12;:39;-1:-1:-1;;;;;25577:18:0;;:9;:18;;;;;;;;;;;:30;;25600:6;25577:22;:30::i;:::-;-1:-1:-1;;;;;25556:18:0;;:9;:18;;;;;;;;;;;:51;;;;25623:37;;25556:18;;:9;25623:37;;;;25653:6;;25623:37;:::i;:::-;;;;;;;;25290:378;;:::o;6801:181::-;6859:7;6891:5;;;6915:6;;;;6907:46;;;;-1:-1:-1;;;6907:46:0;;;;;;;:::i;7265:136::-;7323:7;7350:43;7354:1;7357;7350:43;;;;;;;;;;;;;;;;;:3;:43::i;35006:117::-;35069:7;35096:19;35104:3;35096:7;:19::i;675:106::-;763:10;675:106;:::o;26858:346::-;-1:-1:-1;;;;;26960:19:0;;26952:68;;;;-1:-1:-1;;;26952:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27039:21:0;;27031:68;;;;-1:-1:-1;;;27031:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27112:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;27164:32;;;;;27142:6;;27164:32;:::i;:::-;;;;;;;;26858:346;;;:::o;34527:149::-;34600:4;34624:44;34632:3;-1:-1:-1;;;;;34652:14:0;;34624:7;:44::i;38694:233::-;38801:42;38817:6;38825:9;38836:6;38801:15;:42::i;:::-;-1:-1:-1;;;;;38869:18:0;;;;;;;:10;:18;;;;;;;38889:21;;;;;;;;38854:65;;38869:18;;;;38889:21;38912:6;38854:14;:65::i;:::-;38694:233;;;:::o;7704:192::-;7790:7;7826:12;7818:6;;;;7810:29;;;;-1:-1:-1;;;7810:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;7862:5:0;;;7704:192::o;38455:229::-;38540:28;38552:7;38561:6;38540:11;:28::i;:::-;-1:-1:-1;;;;;38648:19:0;;;38644:1;38648:19;;;:10;:19;;;;;;38621:55;;38648:19;38669:6;38621:14;:55::i;:::-;38455:229;;:::o;35477:149::-;35551:7;35594:22;35598:3;35610:5;35594:3;:22::i;42955:446::-;-1:-1:-1;;;;;43068:21:0;;;43042:23;43068:21;;;:10;:21;;;;;;;;;;43127:20;43079:9;43127;:20::i;:::-;-1:-1:-1;;;;;43215:21:0;;;;;;;:10;:21;;;;;:33;;-1:-1:-1;;;;;;43215:33:0;;;;;;;;;;43100:47;-1:-1:-1;43261:60:0;43276:15;43215:33;43100:47;43261:14;:60::i;:::-;43383:9;-1:-1:-1;;;;;43339:54:0;43366:15;-1:-1:-1;;;;;43339:54:0;43355:9;-1:-1:-1;;;;;43339:54:0;;;;;;;;;;;42955:446;;;;:::o;34208:143::-;34278:4;34302:41;34307:3;-1:-1:-1;;;;;34327:14:0;;34302:4;:41::i;34762:158::-;34842:4;34866:46;34876:3;-1:-1:-1;;;;;34896:14:0;;34866:9;:46::i;45251:153::-;45360:9;45251:153;:::o;31687:109::-;31770:18;;31687:109::o;29830:1556::-;29896:4;30035:19;;;:12;;;:19;;;;;;30071:15;;30067:1312;;30505:18;;-1:-1:-1;;30456:14:0;;;;30505:22;;;;30432:21;;30505:3;;:22;;30792;;;;;;;;;;;;;;30772:42;;30938:9;30909:3;:11;;30921:13;30909:26;;;;;;;;;;;;;;;;;;;:38;;;;31015:23;;;31057:1;31015:12;;;:23;;;;;;31041:17;;;31015:43;;31180:17;;31015:3;;31180:17;;;;;;;;;;;;;;;;;;;;;;31275:3;:12;;:19;31288:5;31275:19;;;;;;;;;;;31268:26;;;31318:4;31311:11;;;;;;;;30067:1312;31362:5;31355:12;;;;;24470:539;-1:-1:-1;;;;;24576:20:0;;24568:70;;;;-1:-1:-1;;;24568:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24657:23:0;;24649:71;;;;-1:-1:-1;;;24649:71:0;;;;;;;:::i;:::-;24733:47;24754:6;24762:9;24773:6;24733:20;:47::i;:::-;24813:71;24835:6;24813:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24813:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;24793:17:0;;;:9;:17;;;;;;;;;;;:91;;;;24918:20;;;;;;;:32;;24943:6;24918:24;:32::i;:::-;-1:-1:-1;;;;;24895:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;24966:35;;;;;;;;;;24994:6;;24966:35;:::i;43409:947::-;43515:6;-1:-1:-1;;;;;43505:16:0;:6;-1:-1:-1;;;;;43505:16:0;;;:30;;;;;43534:1;43525:6;:10;43505:30;43501:848;;;-1:-1:-1;;;;;43556:20:0;;;43552:385;;-1:-1:-1;;;;;43664:22:0;;43645:16;43664:22;;;:14;:22;;;;;;;;;43725:13;:60;;43784:1;43725:60;;;-1:-1:-1;;;;;43741:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;43761:13:0;;43741:34;;;;;;;;43773:1;43741:40;;43725:60;43705:80;-1:-1:-1;43804:17:0;43824:21;43705:80;43838:6;43824:13;:21::i;:::-;43804:41;;43864:57;43881:6;43889:9;43900;43911;43864:16;:57::i;:::-;43552:385;;;;-1:-1:-1;;;;;43957:20:0;;;43953:385;;-1:-1:-1;;;;;44065:22:0;;44046:16;44065:22;;;:14;:22;;;;;;;;;44126:13;:60;;44185:1;44126:60;;;-1:-1:-1;;;;;44142:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;44162:13:0;;44142:34;;;;;;;;44174:1;44142:40;;44126:60;44106:80;-1:-1:-1;44205:17:0;44225:21;44106:80;44239:6;44225:13;:21::i;:::-;44205:41;;44265:57;44282:6;44290:9;44301;44312;44265:16;:57::i;32150:204::-;32245:18;;32217:7;;32245:26;-1:-1:-1;32237:73:0;;;;-1:-1:-1;;;32237:73:0;;;;;;;:::i;:::-;32328:3;:11;;32340:5;32328:18;;;;;;;;;;;;;;;;32321:25;;32150:204;;;;:::o;29240:414::-;29303:4;29325:21;29335:3;29340:5;29325:9;:21::i;:::-;29320:327;;-1:-1:-1;29363:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;29546:18;;29524:19;;;:12;;;:19;;;;;;:40;;;;29579:11;;29320:327;-1:-1:-1;29630:5:0;29623:12;;31472:129;31545:4;31569:19;;;:12;;;;;:19;;;;;;:24;;;31472:129::o;44364:708::-;44539:18;44560:84;44567:12;44560:84;;;;;;;;;;;;;;;;;:6;:84::i;:::-;44539:105;;44676:1;44661:12;:16;;;:85;;;;-1:-1:-1;;;;;;44681:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;44704:16:0;;44681:40;;;;;;;;;:50;:65;;;:50;;:65;44661:85;44657:339;;;-1:-1:-1;;;;;44763:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;44786:16:0;;44763:40;;;;;;;;44801:1;44763:46;:57;;;44657:339;;;44892:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44853:22:0;;-1:-1:-1;44853:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;44853:72:0;;;;;;;;;;;;;44940:25;;;:14;:25;;;;;;:44;;44968:16;;;44940:44;;;;;;;;;;44657:339;45034:9;-1:-1:-1;;;;;45013:51:0;;45045:8;45055;45013:51;;;;;;;:::i;:::-;;;;;;;;44364:708;;;;;:::o;45080:163::-;45155:6;45195:12;45186:7;45182:11;;45174:34;;;;-1:-1:-1;;;45174:34:0;;;;;;;;:::i;:::-;-1:-1:-1;45233:1:0;;45080:163;-1:-1:-1;;45080:163:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;24320:54;;25170:35;;25160:2;;25219:1;;25209:12;684:241;;788:2;776:9;767:7;763:23;759:32;756:2;;;-1:-1;;794:12;756:2;856:53;901:7;877:22;856:53;:::i;932:366::-;;;1053:2;1041:9;1032:7;1028:23;1024:32;1021:2;;;-1:-1;;1059:12;1021:2;1121:53;1166:7;1142:22;1121:53;:::i;:::-;1111:63;;1229:53;1274:7;1211:2;1254:9;1250:22;1229:53;:::i;:::-;1219:63;;1015:283;;;;;:::o;1305:491::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;-1:-1;;1449:12;1411:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1501:63;-1:-1;1601:2;1640:22;;72:20;97:33;72:20;97:33;:::i;:::-;1405:391;;1609:63;;-1:-1;;;1709:2;1748:22;;;;346:20;;1405:391::o;1803:366::-;;;1924:2;1912:9;1903:7;1899:23;1895:32;1892:2;;;-1:-1;;1930:12;1892:2;1992:53;2037:7;2013:22;1992:53;:::i;:::-;1982:63;2082:2;2121:22;;;;346:20;;-1:-1;;;1886:283::o;2176:865::-;;;;;;;2363:3;2351:9;2342:7;2338:23;2334:33;2331:2;;;-1:-1;;2370:12;2331:2;2432:53;2477:7;2453:22;2432:53;:::i;:::-;2422:63;;2522:2;2565:9;2561:22;346:20;2530:63;;2630:2;2673:9;2669:22;346:20;2638:63;;2738:2;2779:9;2775:22;616:20;24631:4;25688:5;24620:16;25665:5;25662:33;25652:2;;-1:-1;;25699:12;25652:2;2325:716;;;;-1:-1;2325:716;;2844:3;2884:22;;209:20;;2953:3;2993:22;;;209:20;;-1:-1;2325:716;-1:-1;;2325:716::o;3048:364::-;;;3168:2;3156:9;3147:7;3143:23;3139:32;3136:2;;;-1:-1;;3174:12;3136:2;3236:53;3281:7;3257:22;3236:53;:::i;:::-;3226:63;;3326:2;3368:9;3364:22;482:20;24537:10;25568:5;24526:22;25544:5;25541:34;25531:2;;-1:-1;;25579:12;25531:2;3334:62;;;;3130:282;;;;;:::o;3419:241::-;;3523:2;3511:9;3502:7;3498:23;3494:32;3491:2;;;-1:-1;;3529:12;3491:2;-1:-1;346:20;;3485:175;-1:-1;3485:175::o;11653:659::-;-1:-1;;;7114:87;;7099:1;7220:11;;3969:37;;;;12164:12;;;3969:37;12275:12;;;11898:414::o;12319:222::-;-1:-1;;;;;24320:54;;;;3738:37;;12446:2;12431:18;;12417:124::o;12548:210::-;24153:13;;24146:21;3852:34;;12669:2;12654:18;;12640:118::o;12765:222::-;3969:37;;;12892:2;12877:18;;12863:124::o;12994:556::-;3969:37;;;-1:-1;;;;;24320:54;;;;13370:2;13355:18;;3738:37;13453:2;13438:18;;3969:37;13536:2;13521:18;;3969:37;13205:3;13190:19;;13176:374::o;13557:556::-;3969:37;;;13933:2;13918:18;;3969:37;;;;14016:2;14001:18;;3969:37;-1:-1;;;;;24320:54;14099:2;14084:18;;3738:37;13768:3;13753:19;;13739:374::o;14120:548::-;3969:37;;;24631:4;24620:16;;;;14488:2;14473:18;;11606:35;14571:2;14556:18;;3969:37;14654:2;14639:18;;3969:37;14327:3;14312:19;;14298:370::o;14675:310::-;;14822:2;;14843:17;14836:47;4322:5;23622:12;23779:6;14822:2;14811:9;14807:18;23767:19;-1:-1;24721:101;24735:6;24732:1;24729:13;24721:101;;;24802:11;;;;;24796:18;24783:11;;;23807:14;24783:11;24776:39;24750:10;;24721:101;;;24837:6;24834:1;24831:13;24828:2;;;-1:-1;23807:14;24893:6;14811:9;24884:16;;24877:27;24828:2;-1:-1;25090:7;25074:14;-1:-1;;25070:28;4480:39;;;;23807:14;4480:39;;14793:192;-1:-1;;;14793:192::o;14992:416::-;15192:2;15206:47;;;4756:2;15177:18;;;23767:19;4792:34;23807:14;;;4772:55;-1:-1;;;4847:12;;;4840:26;4885:12;;;15163:245::o;15415:416::-;15615:2;15629:47;;;5136:2;15600:18;;;23767:19;5172:34;23807:14;;;5152:55;-1:-1;;;5227:12;;;5220:27;5266:12;;;15586:245::o;15838:416::-;16038:2;16052:47;;;5517:2;16023:18;;;23767:19;5553:34;23807:14;;;5533:55;-1:-1;;;5608:12;;;5601:36;5656:12;;;16009:245::o;16261:416::-;16461:2;16475:47;;;5907:2;16446:18;;;23767:19;5943:34;23807:14;;;5923:55;-1:-1;;;5998:12;;;5991:38;6048:12;;;16432:245::o;16684:416::-;16884:2;16898:47;;;6299:2;16869:18;;;23767:19;6335:34;23807:14;;;6315:55;-1:-1;;;6390:12;;;6383:30;6432:12;;;16855:245::o;17107:416::-;17307:2;17321:47;;;6683:2;17292:18;;;23767:19;6719:34;23807:14;;;6699:55;-1:-1;;;6774:12;;;6767:26;6812:12;;;17278:245::o;17530:416::-;17730:2;17744:47;;;7470:2;17715:18;;;23767:19;7506:29;23807:14;;;7486:50;7555:12;;;17701:245::o;17953:416::-;18153:2;18167:47;;;7806:2;18138:18;;;23767:19;7842:34;23807:14;;;7822:55;-1:-1;;;7897:12;;;7890:36;7945:12;;;18124:245::o;18376:416::-;18576:2;18590:47;;;8196:2;18561:18;;;23767:19;8232:26;23807:14;;;8212:47;8278:12;;;18547:245::o;18799:416::-;18999:2;19013:47;;;18984:18;;;23767:19;8565:34;23807:14;;;8545:55;8619:12;;;18970:245::o;19222:416::-;19422:2;19436:47;;;8870:2;19407:18;;;23767:19;8906:34;23807:14;;;8886:55;-1:-1;;;8961:12;;;8954:39;9012:12;;;19393:245::o;19645:416::-;19845:2;19859:47;;;9263:2;19830:18;;;23767:19;9299:34;23807:14;;;9279:55;-1:-1;;;9354:12;;;9347:29;9395:12;;;19816:245::o;20068:416::-;20268:2;20282:47;;;9646:2;20253:18;;;23767:19;9682:34;23807:14;;;9662:55;-1:-1;;;9737:12;;;9730:28;9777:12;;;20239:245::o;20491:416::-;20691:2;20705:47;;;10028:2;20676:18;;;23767:19;10064:34;23807:14;;;10044:55;-1:-1;;;10119:12;;;10112:38;10169:12;;;20662:245::o;20914:416::-;21114:2;21128:47;;;10420:2;21099:18;;;23767:19;10456:34;23807:14;;;10436:55;-1:-1;;;10511:12;;;10504:34;10557:12;;;21085:245::o;21337:416::-;21537:2;21551:47;;;10808:2;21522:18;;;23767:19;10844:33;23807:14;;;10824:54;10897:12;;;21508:245::o;21760:416::-;21960:2;21974:47;;;11148:2;21945:18;;;23767:19;11184:34;23807:14;;;11164:55;-1:-1;;;11239:12;;;11232:25;11276:12;;;21931:245::o;22412:333::-;3969:37;;;22731:2;22716:18;;3969:37;22567:2;22552:18;;22538:207::o;22752:218::-;24537:10;24526:22;;;;11491:36;;22877:2;22862:18;;22848:122::o;22977:329::-;24537:10;24526:22;;;;11491:36;;23292:2;23277:18;;3969:37;23130:2;23115:18;;23101:205::o;23313:214::-;24631:4;24620:16;;;;11606:35;;23436:2;23421:18;;23407:120::o;25111:117::-;-1:-1;;;;;24320:54;;25170:35;;25160:2;;25219:1;;25209:12

Swarm Source

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