ETH Price: $3,071.66 (+2.69%)
Gas: 4 Gwei

Token

DISC Token Rewards (DISC)
 

Overview

Max Total Supply

1,422,918.383148148148204698 DISC

Holders

108

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mathsboy.eth
Balance
11,335.361111111111111111 DISC

Value
$0.00
0xf372675f73b4eb952f77c427ae8d1c2ff6f86347
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:
DISC_TOKEN

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-29
*/

// SPDX-License-Identifier: GPL-3.0

/*

########  ####  ######   ######     ########  #######  ##    ## ######## ##    ## 
##     ##  ##  ##    ## ##    ##       ##    ##     ## ##   ##  ##       ###   ## 
##     ##  ##  ##       ##             ##    ##     ## ##  ##   ##       ####  ## 
##     ##  ##   ######  ##             ##    ##     ## #####    ######   ## ## ## 
##     ##  ##        ## ##             ##    ##     ## ##  ##   ##       ##  #### 
##     ##  ##  ##    ## ##    ##       ##    ##     ## ##   ##  ##       ##   ### 
########  ####  ######   ######        ##     #######  ##    ## ######## ##    ## 

*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File: @openzeppelin/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File: @openzeppelin/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {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 Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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.
 */
abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File: contracts/dogliens_disc.sol

pragma solidity ^0.8.0;

contract DISC_TOKEN is ERC20, ERC20Burnable, Ownable {
  using SafeMath for uint256;

  mapping(address => uint256) private _balances;
  mapping(address => bool) controllers;

  uint256 private _totalSupply;
  uint256 constant MAX_SUPPLY = 100000000 * 10 ** 18;
  uint256 public CAP_SUPPLY = 10000000 * 10 ** 18;

  constructor() ERC20( "DISC Token Rewards", "DISC" ) {}

  function mint(address to, uint256 amount) external {
    require(controllers[msg.sender], "Only controllers can mint");
    require((_totalSupply + amount) <= MAX_SUPPLY, "Max supply has been reached.");

    _totalSupply = _totalSupply.add(amount);
    _balances[to] = _balances[to].add(amount);
    _mint(to, amount);
  }

  function mintToAddress(address to, uint256 amount) public onlyOwner {
    require((_totalSupply + amount) <= CAP_SUPPLY, "Max supply has been reached.");

    _totalSupply = _totalSupply.add(amount);
    _balances[to] = _balances[to].add(amount);
    _mint(to, amount);
  }

  function burnFrom(address account, uint256 amount) public override {
      if (controllers[msg.sender]) {
          _burn(account, amount);
      }
      else {
          super.burnFrom(account, amount);
      }
  }

  function addController(address controller) external onlyOwner {
    controllers[controller] = true;
  }

  function removeController(address controller) external onlyOwner {
    controllers[controller] = false;
  }
  
  function totalSupply() public override view returns (uint256) {
    return _totalSupply;
  }

  function maxSupply() public pure returns (uint256) {
    return MAX_SUPPLY;
  }

  // SET CAP MAX SUPPLY
  function setMaxSupply(uint256 _capSupply) public onlyOwner {
    CAP_SUPPLY = _capSupply;
  }

}

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":"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":"CAP_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"addController","outputs":[],"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_capSupply","type":"uint256"}],"name":"setMaxSupply","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040526a084595161401484a0000006009553480156200002057600080fd5b506040518060400160405280601281526020017f4449534320546f6b656e205265776172647300000000000000000000000000008152506040518060400160405280600481526020017f44495343000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000a5929190620001b5565b508060049080519060200190620000be929190620001b5565b505050620000e1620000d5620000e760201b60201c565b620000ef60201b60201c565b620002ca565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c39062000265565b90600052602060002090601f016020900481019282620001e7576000855562000233565b82601f106200020257805160ff191683800117855562000233565b8280016001018555821562000233579182015b828111156200023257825182559160200191906001019062000215565b5b50905062000242919062000246565b5090565b5b808211156200026157600081600090555060010162000247565b5090565b600060028204905060018216806200027e57607f821691505b602082108114156200029557620002946200029b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61242080620002da6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a7fc7a071161007c578063a7fc7a071461038c578063a9059cbb146103a8578063d5abeb01146103d8578063dd62ed3e146103f6578063f2fde38b14610426578063f6a74ed7146104425761014d565b806370a08231146102ca578063715018a6146102fa57806379cc6790146103045780638da5cb5b1461032057806395d89b411461033e578063a457c2d71461035c5761014d565b806323b872dd1161011557806323b872dd146101f8578063313ce56714610228578063395093511461024657806340c10f191461027657806342966c68146102925780636f8b44b0146102ae5761014d565b806306fdde0314610152578063070c0c4e14610170578063095ea7b31461018e57806318160ddd146101be57806321ca4236146101dc575b600080fd5b61015a61045e565b6040516101679190611c3c565b60405180910390f35b6101786104f0565b6040516101859190611e1e565b60405180910390f35b6101a860048036038101906101a3919061193a565b6104f6565b6040516101b59190611c21565b60405180910390f35b6101c6610519565b6040516101d39190611e1e565b60405180910390f35b6101f660048036038101906101f1919061193a565b610523565b005b610212600480360381019061020d91906118e7565b6106af565b60405161021f9190611c21565b60405180910390f35b6102306106de565b60405161023d9190611e39565b60405180910390f35b610260600480360381019061025b919061193a565b6106e7565b60405161026d9190611c21565b60405180910390f35b610290600480360381019061028b919061193a565b61071e565b005b6102ac60048036038101906102a7919061197a565b6108c3565b005b6102c860048036038101906102c3919061197a565b6108d7565b005b6102e460048036038101906102df919061187a565b61095d565b6040516102f19190611e1e565b60405180910390f35b6103026109a5565b005b61031e6004803603810190610319919061193a565b610a2d565b005b610328610a9d565b6040516103359190611c06565b60405180910390f35b610346610ac7565b6040516103539190611c3c565b60405180910390f35b6103766004803603810190610371919061193a565b610b59565b6040516103839190611c21565b60405180910390f35b6103a660048036038101906103a1919061187a565b610bd0565b005b6103c260048036038101906103bd919061193a565b610ca7565b6040516103cf9190611c21565b60405180910390f35b6103e0610cca565b6040516103ed9190611e1e565b60405180910390f35b610410600480360381019061040b91906118a7565b610cdd565b60405161041d9190611e1e565b60405180910390f35b610440600480360381019061043b919061187a565b610d64565b005b61045c6004803603810190610457919061187a565b610e5c565b005b60606003805461046d90611f82565b80601f016020809104026020016040519081016040528092919081815260200182805461049990611f82565b80156104e65780601f106104bb576101008083540402835291602001916104e6565b820191906000526020600020905b8154815290600101906020018083116104c957829003601f168201915b5050505050905090565b60095481565b600080610501610f33565b905061050e818585610f3b565b600191505092915050565b6000600854905090565b61052b610f33565b73ffffffffffffffffffffffffffffffffffffffff16610549610a9d565b73ffffffffffffffffffffffffffffffffffffffff161461059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690611d5e565b60405180910390fd5b600954816008546105b09190611e70565b11156105f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e890611cde565b60405180910390fd5b6106068160085461110690919063ffffffff16565b60088190555061065e81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461110690919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506106ab828261111c565b5050565b6000806106ba610f33565b90506106c785828561127c565b6106d2858585611308565b60019150509392505050565b60006012905090565b6000806106f2610f33565b90506107138185856107048589610cdd565b61070e9190611e70565b610f3b565b600191505092915050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a190611d3e565b60405180910390fd5b6a52b7d2dcc80cd2e4000000816008546107c49190611e70565b1115610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90611cde565b60405180910390fd5b61081a8160085461110690919063ffffffff16565b60088190555061087281600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461110690919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506108bf828261111c565b5050565b6108d46108ce610f33565b82611589565b50565b6108df610f33565b73ffffffffffffffffffffffffffffffffffffffff166108fd610a9d565b73ffffffffffffffffffffffffffffffffffffffff1614610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90611d5e565b60405180910390fd5b8060098190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ad610f33565b73ffffffffffffffffffffffffffffffffffffffff166109cb610a9d565b73ffffffffffffffffffffffffffffffffffffffff1614610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890611d5e565b60405180910390fd5b610a2b6000611760565b565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a8e57610a898282611589565b610a99565b610a988282611826565b5b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ad690611f82565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0290611f82565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b5050505050905090565b600080610b64610f33565b90506000610b728286610cdd565b905083811015610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90611dde565b60405180910390fd5b610bc48286868403610f3b565b60019250505092915050565b610bd8610f33565b73ffffffffffffffffffffffffffffffffffffffff16610bf6610a9d565b73ffffffffffffffffffffffffffffffffffffffff1614610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390611d5e565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610cb2610f33565b9050610cbf818585611308565b600191505092915050565b60006a52b7d2dcc80cd2e4000000905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d6c610f33565b73ffffffffffffffffffffffffffffffffffffffff16610d8a610a9d565b73ffffffffffffffffffffffffffffffffffffffff1614610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790611d5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790611c9e565b60405180910390fd5b610e5981611760565b50565b610e64610f33565b73ffffffffffffffffffffffffffffffffffffffff16610e82610a9d565b73ffffffffffffffffffffffffffffffffffffffff1614610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf90611d5e565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa290611dbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290611cbe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110f99190611e1e565b60405180910390a3505050565b600081836111149190611e70565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390611dfe565b60405180910390fd5b61119860008383611846565b80600260008282546111aa9190611e70565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111ff9190611e70565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112649190611e1e565b60405180910390a36112786000838361184b565b5050565b60006112888484610cdd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130257818110156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90611cfe565b60405180910390fd5b6113018484848403610f3b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90611d9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df90611c5e565b60405180910390fd5b6113f3838383611846565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090611d1e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150c9190611e70565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115709190611e1e565b60405180910390a361158384848461184b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090611d7e565b60405180910390fd5b61160582600083611846565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290611c7e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546116e29190611ec6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117479190611e1e565b60405180910390a361175b8360008461184b565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61183882611832610f33565b8361127c565b6118428282611589565b5050565b505050565b505050565b60008135905061185f816123bc565b92915050565b600081359050611874816123d3565b92915050565b6000602082840312156118905761188f612012565b5b600061189e84828501611850565b91505092915050565b600080604083850312156118be576118bd612012565b5b60006118cc85828601611850565b92505060206118dd85828601611850565b9150509250929050565b600080600060608486031215611900576118ff612012565b5b600061190e86828701611850565b935050602061191f86828701611850565b925050604061193086828701611865565b9150509250925092565b6000806040838503121561195157611950612012565b5b600061195f85828601611850565b925050602061197085828601611865565b9150509250929050565b6000602082840312156119905761198f612012565b5b600061199e84828501611865565b91505092915050565b6119b081611efa565b82525050565b6119bf81611f0c565b82525050565b60006119d082611e54565b6119da8185611e5f565b93506119ea818560208601611f4f565b6119f381612017565b840191505092915050565b6000611a0b602383611e5f565b9150611a1682612028565b604082019050919050565b6000611a2e602283611e5f565b9150611a3982612077565b604082019050919050565b6000611a51602683611e5f565b9150611a5c826120c6565b604082019050919050565b6000611a74602283611e5f565b9150611a7f82612115565b604082019050919050565b6000611a97601c83611e5f565b9150611aa282612164565b602082019050919050565b6000611aba601d83611e5f565b9150611ac58261218d565b602082019050919050565b6000611add602683611e5f565b9150611ae8826121b6565b604082019050919050565b6000611b00601983611e5f565b9150611b0b82612205565b602082019050919050565b6000611b23602083611e5f565b9150611b2e8261222e565b602082019050919050565b6000611b46602183611e5f565b9150611b5182612257565b604082019050919050565b6000611b69602583611e5f565b9150611b74826122a6565b604082019050919050565b6000611b8c602483611e5f565b9150611b97826122f5565b604082019050919050565b6000611baf602583611e5f565b9150611bba82612344565b604082019050919050565b6000611bd2601f83611e5f565b9150611bdd82612393565b602082019050919050565b611bf181611f38565b82525050565b611c0081611f42565b82525050565b6000602082019050611c1b60008301846119a7565b92915050565b6000602082019050611c3660008301846119b6565b92915050565b60006020820190508181036000830152611c5681846119c5565b905092915050565b60006020820190508181036000830152611c77816119fe565b9050919050565b60006020820190508181036000830152611c9781611a21565b9050919050565b60006020820190508181036000830152611cb781611a44565b9050919050565b60006020820190508181036000830152611cd781611a67565b9050919050565b60006020820190508181036000830152611cf781611a8a565b9050919050565b60006020820190508181036000830152611d1781611aad565b9050919050565b60006020820190508181036000830152611d3781611ad0565b9050919050565b60006020820190508181036000830152611d5781611af3565b9050919050565b60006020820190508181036000830152611d7781611b16565b9050919050565b60006020820190508181036000830152611d9781611b39565b9050919050565b60006020820190508181036000830152611db781611b5c565b9050919050565b60006020820190508181036000830152611dd781611b7f565b9050919050565b60006020820190508181036000830152611df781611ba2565b9050919050565b60006020820190508181036000830152611e1781611bc5565b9050919050565b6000602082019050611e336000830184611be8565b92915050565b6000602082019050611e4e6000830184611bf7565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e7b82611f38565b9150611e8683611f38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ebb57611eba611fb4565b5b828201905092915050565b6000611ed182611f38565b9150611edc83611f38565b925082821015611eef57611eee611fb4565b5b828203905092915050565b6000611f0582611f18565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f6d578082015181840152602081019050611f52565b83811115611f7c576000848401525b50505050565b60006002820490506001821680611f9a57607f821691505b60208210811415611fae57611fad611fe3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920686173206265656e20726561636865642e00000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6123c581611efa565b81146123d057600080fd5b50565b6123dc81611f38565b81146123e757600080fd5b5056fea26469706673582212207e029f1f79e98b77ed97f33971d52c6591602c28567b9fc64c2856aae80e3b2764736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a7fc7a071161007c578063a7fc7a071461038c578063a9059cbb146103a8578063d5abeb01146103d8578063dd62ed3e146103f6578063f2fde38b14610426578063f6a74ed7146104425761014d565b806370a08231146102ca578063715018a6146102fa57806379cc6790146103045780638da5cb5b1461032057806395d89b411461033e578063a457c2d71461035c5761014d565b806323b872dd1161011557806323b872dd146101f8578063313ce56714610228578063395093511461024657806340c10f191461027657806342966c68146102925780636f8b44b0146102ae5761014d565b806306fdde0314610152578063070c0c4e14610170578063095ea7b31461018e57806318160ddd146101be57806321ca4236146101dc575b600080fd5b61015a61045e565b6040516101679190611c3c565b60405180910390f35b6101786104f0565b6040516101859190611e1e565b60405180910390f35b6101a860048036038101906101a3919061193a565b6104f6565b6040516101b59190611c21565b60405180910390f35b6101c6610519565b6040516101d39190611e1e565b60405180910390f35b6101f660048036038101906101f1919061193a565b610523565b005b610212600480360381019061020d91906118e7565b6106af565b60405161021f9190611c21565b60405180910390f35b6102306106de565b60405161023d9190611e39565b60405180910390f35b610260600480360381019061025b919061193a565b6106e7565b60405161026d9190611c21565b60405180910390f35b610290600480360381019061028b919061193a565b61071e565b005b6102ac60048036038101906102a7919061197a565b6108c3565b005b6102c860048036038101906102c3919061197a565b6108d7565b005b6102e460048036038101906102df919061187a565b61095d565b6040516102f19190611e1e565b60405180910390f35b6103026109a5565b005b61031e6004803603810190610319919061193a565b610a2d565b005b610328610a9d565b6040516103359190611c06565b60405180910390f35b610346610ac7565b6040516103539190611c3c565b60405180910390f35b6103766004803603810190610371919061193a565b610b59565b6040516103839190611c21565b60405180910390f35b6103a660048036038101906103a1919061187a565b610bd0565b005b6103c260048036038101906103bd919061193a565b610ca7565b6040516103cf9190611c21565b60405180910390f35b6103e0610cca565b6040516103ed9190611e1e565b60405180910390f35b610410600480360381019061040b91906118a7565b610cdd565b60405161041d9190611e1e565b60405180910390f35b610440600480360381019061043b919061187a565b610d64565b005b61045c6004803603810190610457919061187a565b610e5c565b005b60606003805461046d90611f82565b80601f016020809104026020016040519081016040528092919081815260200182805461049990611f82565b80156104e65780601f106104bb576101008083540402835291602001916104e6565b820191906000526020600020905b8154815290600101906020018083116104c957829003601f168201915b5050505050905090565b60095481565b600080610501610f33565b905061050e818585610f3b565b600191505092915050565b6000600854905090565b61052b610f33565b73ffffffffffffffffffffffffffffffffffffffff16610549610a9d565b73ffffffffffffffffffffffffffffffffffffffff161461059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690611d5e565b60405180910390fd5b600954816008546105b09190611e70565b11156105f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e890611cde565b60405180910390fd5b6106068160085461110690919063ffffffff16565b60088190555061065e81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461110690919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506106ab828261111c565b5050565b6000806106ba610f33565b90506106c785828561127c565b6106d2858585611308565b60019150509392505050565b60006012905090565b6000806106f2610f33565b90506107138185856107048589610cdd565b61070e9190611e70565b610f3b565b600191505092915050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a190611d3e565b60405180910390fd5b6a52b7d2dcc80cd2e4000000816008546107c49190611e70565b1115610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90611cde565b60405180910390fd5b61081a8160085461110690919063ffffffff16565b60088190555061087281600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461110690919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506108bf828261111c565b5050565b6108d46108ce610f33565b82611589565b50565b6108df610f33565b73ffffffffffffffffffffffffffffffffffffffff166108fd610a9d565b73ffffffffffffffffffffffffffffffffffffffff1614610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90611d5e565b60405180910390fd5b8060098190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ad610f33565b73ffffffffffffffffffffffffffffffffffffffff166109cb610a9d565b73ffffffffffffffffffffffffffffffffffffffff1614610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890611d5e565b60405180910390fd5b610a2b6000611760565b565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a8e57610a898282611589565b610a99565b610a988282611826565b5b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ad690611f82565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0290611f82565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b5050505050905090565b600080610b64610f33565b90506000610b728286610cdd565b905083811015610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90611dde565b60405180910390fd5b610bc48286868403610f3b565b60019250505092915050565b610bd8610f33565b73ffffffffffffffffffffffffffffffffffffffff16610bf6610a9d565b73ffffffffffffffffffffffffffffffffffffffff1614610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390611d5e565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610cb2610f33565b9050610cbf818585611308565b600191505092915050565b60006a52b7d2dcc80cd2e4000000905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d6c610f33565b73ffffffffffffffffffffffffffffffffffffffff16610d8a610a9d565b73ffffffffffffffffffffffffffffffffffffffff1614610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790611d5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790611c9e565b60405180910390fd5b610e5981611760565b50565b610e64610f33565b73ffffffffffffffffffffffffffffffffffffffff16610e82610a9d565b73ffffffffffffffffffffffffffffffffffffffff1614610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf90611d5e565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa290611dbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290611cbe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110f99190611e1e565b60405180910390a3505050565b600081836111149190611e70565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390611dfe565b60405180910390fd5b61119860008383611846565b80600260008282546111aa9190611e70565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111ff9190611e70565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112649190611e1e565b60405180910390a36112786000838361184b565b5050565b60006112888484610cdd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130257818110156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90611cfe565b60405180910390fd5b6113018484848403610f3b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90611d9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df90611c5e565b60405180910390fd5b6113f3838383611846565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090611d1e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150c9190611e70565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115709190611e1e565b60405180910390a361158384848461184b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090611d7e565b60405180910390fd5b61160582600083611846565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290611c7e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546116e29190611ec6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117479190611e1e565b60405180910390a361175b8360008461184b565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61183882611832610f33565b8361127c565b6118428282611589565b5050565b505050565b505050565b60008135905061185f816123bc565b92915050565b600081359050611874816123d3565b92915050565b6000602082840312156118905761188f612012565b5b600061189e84828501611850565b91505092915050565b600080604083850312156118be576118bd612012565b5b60006118cc85828601611850565b92505060206118dd85828601611850565b9150509250929050565b600080600060608486031215611900576118ff612012565b5b600061190e86828701611850565b935050602061191f86828701611850565b925050604061193086828701611865565b9150509250925092565b6000806040838503121561195157611950612012565b5b600061195f85828601611850565b925050602061197085828601611865565b9150509250929050565b6000602082840312156119905761198f612012565b5b600061199e84828501611865565b91505092915050565b6119b081611efa565b82525050565b6119bf81611f0c565b82525050565b60006119d082611e54565b6119da8185611e5f565b93506119ea818560208601611f4f565b6119f381612017565b840191505092915050565b6000611a0b602383611e5f565b9150611a1682612028565b604082019050919050565b6000611a2e602283611e5f565b9150611a3982612077565b604082019050919050565b6000611a51602683611e5f565b9150611a5c826120c6565b604082019050919050565b6000611a74602283611e5f565b9150611a7f82612115565b604082019050919050565b6000611a97601c83611e5f565b9150611aa282612164565b602082019050919050565b6000611aba601d83611e5f565b9150611ac58261218d565b602082019050919050565b6000611add602683611e5f565b9150611ae8826121b6565b604082019050919050565b6000611b00601983611e5f565b9150611b0b82612205565b602082019050919050565b6000611b23602083611e5f565b9150611b2e8261222e565b602082019050919050565b6000611b46602183611e5f565b9150611b5182612257565b604082019050919050565b6000611b69602583611e5f565b9150611b74826122a6565b604082019050919050565b6000611b8c602483611e5f565b9150611b97826122f5565b604082019050919050565b6000611baf602583611e5f565b9150611bba82612344565b604082019050919050565b6000611bd2601f83611e5f565b9150611bdd82612393565b602082019050919050565b611bf181611f38565b82525050565b611c0081611f42565b82525050565b6000602082019050611c1b60008301846119a7565b92915050565b6000602082019050611c3660008301846119b6565b92915050565b60006020820190508181036000830152611c5681846119c5565b905092915050565b60006020820190508181036000830152611c77816119fe565b9050919050565b60006020820190508181036000830152611c9781611a21565b9050919050565b60006020820190508181036000830152611cb781611a44565b9050919050565b60006020820190508181036000830152611cd781611a67565b9050919050565b60006020820190508181036000830152611cf781611a8a565b9050919050565b60006020820190508181036000830152611d1781611aad565b9050919050565b60006020820190508181036000830152611d3781611ad0565b9050919050565b60006020820190508181036000830152611d5781611af3565b9050919050565b60006020820190508181036000830152611d7781611b16565b9050919050565b60006020820190508181036000830152611d9781611b39565b9050919050565b60006020820190508181036000830152611db781611b5c565b9050919050565b60006020820190508181036000830152611dd781611b7f565b9050919050565b60006020820190508181036000830152611df781611ba2565b9050919050565b60006020820190508181036000830152611e1781611bc5565b9050919050565b6000602082019050611e336000830184611be8565b92915050565b6000602082019050611e4e6000830184611bf7565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e7b82611f38565b9150611e8683611f38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ebb57611eba611fb4565b5b828201905092915050565b6000611ed182611f38565b9150611edc83611f38565b925082821015611eef57611eee611fb4565b5b828203905092915050565b6000611f0582611f18565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f6d578082015181840152602081019050611f52565b83811115611f7c576000848401525b50505050565b60006002820490506001821680611f9a57607f821691505b60208210811415611fae57611fad611fe3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920686173206265656e20726561636865642e00000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6123c581611efa565b81146123d057600080fd5b50565b6123dc81611f38565b81146123e757600080fd5b5056fea26469706673582212207e029f1f79e98b77ed97f33971d52c6591602c28567b9fc64c2856aae80e3b2764736f6c63430008070033

Deployed Bytecode Sourcemap

28877:1775:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14325:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29149:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16676:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30340:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29599:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17457:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15287:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18161:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29263:330;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25699:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30552:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15616:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27991:103;;;:::i;:::-;;29884:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27340:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14544:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18902:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30112:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15949:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30440:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16205:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30223:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14325:100;14379:13;14412:5;14405:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14325:100;:::o;29149:47::-;;;;:::o;16676:201::-;16759:4;16776:13;16792:12;:10;:12::i;:::-;16776:28;;16815:32;16824:5;16831:7;16840:6;16815:8;:32::i;:::-;16865:4;16858:11;;;16676:201;;;;:::o;30340:94::-;30393:7;30416:12;;30409:19;;30340:94;:::o;29599:279::-;27571:12;:10;:12::i;:::-;27560:23;;:7;:5;:7::i;:::-;:23;;;27552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29709:10:::1;;29698:6;29683:12;;:21;;;;:::i;:::-;29682:37;;29674:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;29776:24;29793:6;29776:12;;:16;;:24;;;;:::i;:::-;29761:12;:39;;;;29823:25;29841:6;29823:9;:13;29833:2;29823:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;29807:9;:13;29817:2;29807:13;;;;;;;;;;;;;;;:41;;;;29855:17;29861:2;29865:6;29855:5;:17::i;:::-;29599:279:::0;;:::o;17457:295::-;17588:4;17605:15;17623:12;:10;:12::i;:::-;17605:30;;17646:38;17662:4;17668:7;17677:6;17646:15;:38::i;:::-;17695:27;17705:4;17711:2;17715:6;17695:9;:27::i;:::-;17740:4;17733:11;;;17457:295;;;;;:::o;15287:93::-;15345:5;15370:2;15363:9;;15287:93;:::o;18161:238::-;18249:4;18266:13;18282:12;:10;:12::i;:::-;18266:28;;18305:64;18314:5;18321:7;18358:10;18330:25;18340:5;18347:7;18330:9;:25::i;:::-;:38;;;;:::i;:::-;18305:8;:64::i;:::-;18387:4;18380:11;;;18161:238;;;;:::o;29263:330::-;29329:11;:23;29341:10;29329:23;;;;;;;;;;;;;;;;;;;;;;;;;29321:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29124:20;29413:6;29398:12;;:21;;;;:::i;:::-;29397:37;;29389:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;29491:24;29508:6;29491:12;;:16;;:24;;;;:::i;:::-;29476:12;:39;;;;29538:25;29556:6;29538:9;:13;29548:2;29538:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;29522:9;:13;29532:2;29522:13;;;;;;;;;;;;;;;:41;;;;29570:17;29576:2;29580:6;29570:5;:17::i;:::-;29263:330;;:::o;25699:91::-;25755:27;25761:12;:10;:12::i;:::-;25775:6;25755:5;:27::i;:::-;25699:91;:::o;30552:95::-;27571:12;:10;:12::i;:::-;27560:23;;:7;:5;:7::i;:::-;:23;;;27552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30631:10:::1;30618;:23;;;;30552:95:::0;:::o;15616:127::-;15690:7;15717:9;:18;15727:7;15717:18;;;;;;;;;;;;;;;;15710:25;;15616:127;;;:::o;27991:103::-;27571:12;:10;:12::i;:::-;27560:23;;:7;:5;:7::i;:::-;:23;;;27552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28056:30:::1;28083:1;28056:18;:30::i;:::-;27991:103::o:0;29884:222::-;29964:11;:23;29976:10;29964:23;;;;;;;;;;;;;;;;;;;;;;;;;29960:141;;;30002:22;30008:7;30017:6;30002:5;:22::i;:::-;29960:141;;;30060:31;30075:7;30084:6;30060:14;:31::i;:::-;29960:141;29884:222;;:::o;27340:87::-;27386:7;27413:6;;;;;;;;;;;27406:13;;27340:87;:::o;14544:104::-;14600:13;14633:7;14626:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14544:104;:::o;18902:436::-;18995:4;19012:13;19028:12;:10;:12::i;:::-;19012:28;;19051:24;19078:25;19088:5;19095:7;19078:9;:25::i;:::-;19051:52;;19142:15;19122:16;:35;;19114:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;19235:60;19244:5;19251:7;19279:15;19260:16;:34;19235:8;:60::i;:::-;19326:4;19319:11;;;;18902:436;;;;:::o;30112:105::-;27571:12;:10;:12::i;:::-;27560:23;;:7;:5;:7::i;:::-;:23;;;27552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30207:4:::1;30181:11;:23;30193:10;30181:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;30112:105:::0;:::o;15949:193::-;16028:4;16045:13;16061:12;:10;:12::i;:::-;16045:28;;16084;16094:5;16101:2;16105:6;16084:9;:28::i;:::-;16130:4;16123:11;;;15949:193;;;;:::o;30440:81::-;30482:7;29124:20;30498:17;;30440:81;:::o;16205:151::-;16294:7;16321:11;:18;16333:5;16321:18;;;;;;;;;;;;;;;:27;16340:7;16321:27;;;;;;;;;;;;;;;;16314:34;;16205:151;;;;:::o;28249:201::-;27571:12;:10;:12::i;:::-;27560:23;;:7;:5;:7::i;:::-;:23;;;27552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28358:1:::1;28338:22;;:8;:22;;;;28330:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28414:28;28433:8;28414:18;:28::i;:::-;28249:201:::0;:::o;30223:109::-;27571:12;:10;:12::i;:::-;27560:23;;:7;:5;:7::i;:::-;:23;;;27552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30321:5:::1;30295:11;:23;30307:10;30295:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;30223:109:::0;:::o;11971:98::-;12024:7;12051:10;12044:17;;11971:98;:::o;22536:380::-;22689:1;22672:19;;:5;:19;;;;22664:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22770:1;22751:21;;:7;:21;;;;22743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22854:6;22824:11;:18;22836:5;22824:18;;;;;;;;;;;;;;;:27;22843:7;22824:27;;;;;;;;;;;;;;;:36;;;;22892:7;22876:32;;22885:5;22876:32;;;22901:6;22876:32;;;;;;:::i;:::-;;;;;;;;22536:380;;;:::o;7127:98::-;7185:7;7216:1;7212;:5;;;;:::i;:::-;7205:12;;7127:98;;;;:::o;20775:399::-;20878:1;20859:21;;:7;:21;;;;20851:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;20929:49;20958:1;20962:7;20971:6;20929:20;:49::i;:::-;21007:6;20991:12;;:22;;;;;;;:::i;:::-;;;;;;;;21046:6;21024:9;:18;21034:7;21024:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;21089:7;21068:37;;21085:1;21068:37;;;21098:6;21068:37;;;;;;:::i;:::-;;;;;;;;21118:48;21146:1;21150:7;21159:6;21118:19;:48::i;:::-;20775:399;;:::o;23207:453::-;23342:24;23369:25;23379:5;23386:7;23369:9;:25::i;:::-;23342:52;;23429:17;23409:16;:37;23405:248;;23491:6;23471:16;:26;;23463:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23575:51;23584:5;23591:7;23619:6;23600:16;:25;23575:8;:51::i;:::-;23405:248;23331:329;23207:453;;;:::o;19817:671::-;19964:1;19948:18;;:4;:18;;;;19940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20041:1;20027:16;;:2;:16;;;;20019:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20096:38;20117:4;20123:2;20127:6;20096:20;:38::i;:::-;20147:19;20169:9;:15;20179:4;20169:15;;;;;;;;;;;;;;;;20147:37;;20218:6;20203:11;:21;;20195:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;20335:6;20321:11;:20;20303:9;:15;20313:4;20303:15;;;;;;;;;;;;;;;:38;;;;20380:6;20363:9;:13;20373:2;20363:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;20419:2;20404:26;;20413:4;20404:26;;;20423:6;20404:26;;;;;;:::i;:::-;;;;;;;;20443:37;20463:4;20469:2;20473:6;20443:19;:37::i;:::-;19929:559;19817:671;;;:::o;21507:591::-;21610:1;21591:21;;:7;:21;;;;21583:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21663:49;21684:7;21701:1;21705:6;21663:20;:49::i;:::-;21725:22;21750:9;:18;21760:7;21750:18;;;;;;;;;;;;;;;;21725:43;;21805:6;21787:14;:24;;21779:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21924:6;21907:14;:23;21886:9;:18;21896:7;21886:18;;;;;;;;;;;;;;;:44;;;;21968:6;21952:12;;:22;;;;;;;:::i;:::-;;;;;;;;22018:1;21992:37;;22001:7;21992:37;;;22022:6;21992:37;;;;;;:::i;:::-;;;;;;;;22042:48;22062:7;22079:1;22083:6;22042:19;:48::i;:::-;21572:526;21507:591;;:::o;28610:191::-;28684:16;28703:6;;;;;;;;;;;28684:25;;28729:8;28720:6;;:17;;;;;;;;;;;;;;;;;;28784:8;28753:40;;28774:8;28753:40;;;;;;;;;;;;28673:128;28610:191;:::o;26109:164::-;26186:46;26202:7;26211:12;:10;:12::i;:::-;26225:6;26186:15;:46::i;:::-;26243:22;26249:7;26258:6;26243:5;:22::i;:::-;26109:164;;:::o;24260:125::-;;;;:::o;24989:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:::-;7767:3;7788:67;7852:2;7847:3;7788:67;:::i;:::-;7781:74;;7864:93;7953:3;7864:93;:::i;:::-;7982:2;7977:3;7973:12;7966:19;;7625:366;;;:::o;7997:::-;8139:3;8160:67;8224:2;8219:3;8160:67;:::i;:::-;8153:74;;8236:93;8325:3;8236:93;:::i;:::-;8354:2;8349:3;8345:12;8338:19;;7997:366;;;:::o;8369:118::-;8456:24;8474:5;8456:24;:::i;:::-;8451:3;8444:37;8369:118;;:::o;8493:112::-;8576:22;8592:5;8576:22;:::i;:::-;8571:3;8564:35;8493:112;;:::o;8611:222::-;8704:4;8742:2;8731:9;8727:18;8719:26;;8755:71;8823:1;8812:9;8808:17;8799:6;8755:71;:::i;:::-;8611:222;;;;:::o;8839:210::-;8926:4;8964:2;8953:9;8949:18;8941:26;;8977:65;9039:1;9028:9;9024:17;9015:6;8977:65;:::i;:::-;8839:210;;;;:::o;9055:313::-;9168:4;9206:2;9195:9;9191:18;9183:26;;9255:9;9249:4;9245:20;9241:1;9230:9;9226:17;9219:47;9283:78;9356:4;9347:6;9283:78;:::i;:::-;9275:86;;9055:313;;;;:::o;9374:419::-;9540:4;9578:2;9567:9;9563:18;9555:26;;9627:9;9621:4;9617:20;9613:1;9602:9;9598:17;9591:47;9655:131;9781:4;9655:131;:::i;:::-;9647:139;;9374:419;;;:::o;9799:::-;9965:4;10003:2;9992:9;9988:18;9980:26;;10052:9;10046:4;10042:20;10038:1;10027:9;10023:17;10016:47;10080:131;10206:4;10080:131;:::i;:::-;10072:139;;9799:419;;;:::o;10224:::-;10390:4;10428:2;10417:9;10413:18;10405:26;;10477:9;10471:4;10467:20;10463:1;10452:9;10448:17;10441:47;10505:131;10631:4;10505:131;:::i;:::-;10497:139;;10224:419;;;:::o;10649:::-;10815:4;10853:2;10842:9;10838:18;10830:26;;10902:9;10896:4;10892:20;10888:1;10877:9;10873:17;10866:47;10930:131;11056:4;10930:131;:::i;:::-;10922:139;;10649:419;;;:::o;11074:::-;11240:4;11278:2;11267:9;11263:18;11255:26;;11327:9;11321:4;11317:20;11313:1;11302:9;11298:17;11291:47;11355:131;11481:4;11355:131;:::i;:::-;11347:139;;11074:419;;;:::o;11499:::-;11665:4;11703:2;11692:9;11688:18;11680:26;;11752:9;11746:4;11742:20;11738:1;11727:9;11723:17;11716:47;11780:131;11906:4;11780:131;:::i;:::-;11772:139;;11499:419;;;:::o;11924:::-;12090:4;12128:2;12117:9;12113:18;12105:26;;12177:9;12171:4;12167:20;12163:1;12152:9;12148:17;12141:47;12205:131;12331:4;12205:131;:::i;:::-;12197:139;;11924:419;;;:::o;12349:::-;12515:4;12553:2;12542:9;12538:18;12530:26;;12602:9;12596:4;12592:20;12588:1;12577:9;12573:17;12566:47;12630:131;12756:4;12630:131;:::i;:::-;12622:139;;12349:419;;;:::o;12774:::-;12940:4;12978:2;12967:9;12963:18;12955:26;;13027:9;13021:4;13017:20;13013:1;13002:9;12998:17;12991:47;13055:131;13181:4;13055:131;:::i;:::-;13047:139;;12774:419;;;:::o;13199:::-;13365:4;13403:2;13392:9;13388:18;13380:26;;13452:9;13446:4;13442:20;13438:1;13427:9;13423:17;13416:47;13480:131;13606:4;13480:131;:::i;:::-;13472:139;;13199:419;;;:::o;13624:::-;13790:4;13828:2;13817:9;13813:18;13805:26;;13877:9;13871:4;13867:20;13863:1;13852:9;13848:17;13841:47;13905:131;14031:4;13905:131;:::i;:::-;13897:139;;13624:419;;;:::o;14049:::-;14215:4;14253:2;14242:9;14238:18;14230:26;;14302:9;14296:4;14292:20;14288:1;14277:9;14273:17;14266:47;14330:131;14456:4;14330:131;:::i;:::-;14322:139;;14049:419;;;:::o;14474:::-;14640:4;14678:2;14667:9;14663:18;14655:26;;14727:9;14721:4;14717:20;14713:1;14702:9;14698:17;14691:47;14755:131;14881:4;14755:131;:::i;:::-;14747:139;;14474:419;;;:::o;14899:::-;15065:4;15103:2;15092:9;15088:18;15080:26;;15152:9;15146:4;15142:20;15138:1;15127:9;15123:17;15116:47;15180:131;15306:4;15180:131;:::i;:::-;15172:139;;14899:419;;;:::o;15324:222::-;15417:4;15455:2;15444:9;15440:18;15432:26;;15468:71;15536:1;15525:9;15521:17;15512:6;15468:71;:::i;:::-;15324:222;;;;:::o;15552:214::-;15641:4;15679:2;15668:9;15664:18;15656:26;;15692:67;15756:1;15745:9;15741:17;15732:6;15692:67;:::i;:::-;15552:214;;;;:::o;15853:99::-;15905:6;15939:5;15933:12;15923:22;;15853:99;;;:::o;15958:169::-;16042:11;16076:6;16071:3;16064:19;16116:4;16111:3;16107:14;16092:29;;15958:169;;;;:::o;16133:305::-;16173:3;16192:20;16210:1;16192:20;:::i;:::-;16187:25;;16226:20;16244:1;16226:20;:::i;:::-;16221:25;;16380:1;16312:66;16308:74;16305:1;16302:81;16299:107;;;16386:18;;:::i;:::-;16299:107;16430:1;16427;16423:9;16416:16;;16133:305;;;;:::o;16444:191::-;16484:4;16504:20;16522:1;16504:20;:::i;:::-;16499:25;;16538:20;16556:1;16538:20;:::i;:::-;16533:25;;16577:1;16574;16571:8;16568:34;;;16582:18;;:::i;:::-;16568:34;16627:1;16624;16620:9;16612:17;;16444:191;;;;:::o;16641:96::-;16678:7;16707:24;16725:5;16707:24;:::i;:::-;16696:35;;16641:96;;;:::o;16743:90::-;16777:7;16820:5;16813:13;16806:21;16795:32;;16743:90;;;:::o;16839:126::-;16876:7;16916:42;16909:5;16905:54;16894:65;;16839:126;;;:::o;16971:77::-;17008:7;17037:5;17026:16;;16971:77;;;:::o;17054:86::-;17089:7;17129:4;17122:5;17118:16;17107:27;;17054:86;;;:::o;17146:307::-;17214:1;17224:113;17238:6;17235:1;17232:13;17224:113;;;17323:1;17318:3;17314:11;17308:18;17304:1;17299:3;17295:11;17288:39;17260:2;17257:1;17253:10;17248:15;;17224:113;;;17355:6;17352:1;17349:13;17346:101;;;17435:1;17426:6;17421:3;17417:16;17410:27;17346:101;17195:258;17146:307;;;:::o;17459:320::-;17503:6;17540:1;17534:4;17530:12;17520:22;;17587:1;17581:4;17577:12;17608:18;17598:81;;17664:4;17656:6;17652:17;17642:27;;17598:81;17726:2;17718:6;17715:14;17695:18;17692:38;17689:84;;;17745:18;;:::i;:::-;17689:84;17510:269;17459:320;;;:::o;17785:180::-;17833:77;17830:1;17823:88;17930:4;17927:1;17920:15;17954:4;17951:1;17944:15;17971:180;18019:77;18016:1;18009:88;18116:4;18113:1;18106:15;18140:4;18137:1;18130:15;18280:117;18389:1;18386;18379:12;18403:102;18444:6;18495:2;18491:7;18486:2;18479:5;18475:14;18471:28;18461:38;;18403:102;;;:::o;18511:222::-;18651:34;18647:1;18639:6;18635:14;18628:58;18720:5;18715:2;18707:6;18703:15;18696:30;18511:222;:::o;18739:221::-;18879:34;18875:1;18867:6;18863:14;18856:58;18948:4;18943:2;18935:6;18931:15;18924:29;18739:221;:::o;18966:225::-;19106:34;19102:1;19094:6;19090:14;19083:58;19175:8;19170:2;19162:6;19158:15;19151:33;18966:225;:::o;19197:221::-;19337:34;19333:1;19325:6;19321:14;19314:58;19406:4;19401:2;19393:6;19389:15;19382:29;19197:221;:::o;19424:178::-;19564:30;19560:1;19552:6;19548:14;19541:54;19424:178;:::o;19608:179::-;19748:31;19744:1;19736:6;19732:14;19725:55;19608:179;:::o;19793:225::-;19933:34;19929:1;19921:6;19917:14;19910:58;20002:8;19997:2;19989:6;19985:15;19978:33;19793:225;:::o;20024:175::-;20164:27;20160:1;20152:6;20148:14;20141:51;20024:175;:::o;20205:182::-;20345:34;20341:1;20333:6;20329:14;20322:58;20205:182;:::o;20393:220::-;20533:34;20529:1;20521:6;20517:14;20510:58;20602:3;20597:2;20589:6;20585:15;20578:28;20393:220;:::o;20619:224::-;20759:34;20755:1;20747:6;20743:14;20736:58;20828:7;20823:2;20815:6;20811:15;20804:32;20619:224;:::o;20849:223::-;20989:34;20985:1;20977:6;20973:14;20966:58;21058:6;21053:2;21045:6;21041:15;21034:31;20849:223;:::o;21078:224::-;21218:34;21214:1;21206:6;21202:14;21195:58;21287:7;21282:2;21274:6;21270:15;21263:32;21078:224;:::o;21308:181::-;21448:33;21444:1;21436:6;21432:14;21425:57;21308:181;:::o;21495:122::-;21568:24;21586:5;21568:24;:::i;:::-;21561:5;21558:35;21548:63;;21607:1;21604;21597:12;21548:63;21495:122;:::o;21623:::-;21696:24;21714:5;21696:24;:::i;:::-;21689:5;21686:35;21676:63;;21735:1;21732;21725:12;21676:63;21623:122;:::o

Swarm Source

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