ETH Price: $3,302.46 (-3.17%)
Gas: 9 Gwei

Token

DinoEggs ($DinoEggs)
 

Overview

Max Total Supply

3,000,000 $DinoEggs

Holders

1,946

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,911.610324398148138141 $DinoEggs

Value
$0.00
0x79e088d5c4752d7a4a73b6a8d5ddd6d7efe6a873
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:
DinoEggs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-26
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// 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/access/AccessControl.sol


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

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

// 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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.1 (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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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 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 v4.4.1 (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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: contracts/DinoEggs.sol


pragma solidity ^0.8.0;




contract DinoEggs is ERC20, ERC20Burnable, AccessControl {
  bytes32 public constant MANAGER_ROLE = keccak256("MANAGER_ROLE");

  constructor() ERC20("DinoEggs", "$DinoEggs") {
    _mint(address(this), 3000000 ether);
    _grantRole(DEFAULT_ADMIN_ROLE, _msgSender());
  }

  function withdraw(address _address, uint256 _amount)
    external
    onlyRole(MANAGER_ROLE)
  {
    require(_amount <= balanceOf(address(this)), "Not enough eggs left");

    _transfer(address(this), _address, _amount);
  }
}

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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f44696e6f456767730000000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f2444696e6f456767730000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620003e1565b508060049080519060200190620000af929190620003e1565b505050620000cf306a027b46536c66c8e3000000620000f960201b60201c565b620000f36000801b620000e76200027260201b60201c565b6200027a60201b60201c565b6200063d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200016c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016390620004c9565b60405180910390fd5b62000180600083836200036c60201b60201c565b806002600082825462000194919062000519565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001eb919062000519565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002529190620004eb565b60405180910390a36200026e600083836200037160201b60201c565b5050565b600033905090565b6200028c82826200037660201b60201c565b620003685760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200030d6200027260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620003ef9062000580565b90600052602060002090601f0160209004810192826200041357600085556200045f565b82601f106200042e57805160ff19168380011785556200045f565b828001600101855582156200045f579182015b828111156200045e57825182559160200191906001019062000441565b5b5090506200046e919062000472565b5090565b5b808211156200048d57600081600090555060010162000473565b5090565b6000620004a0601f8362000508565b9150620004ad8262000614565b602082019050919050565b620004c38162000576565b82525050565b60006020820190508181036000830152620004e48162000491565b9050919050565b6000602082019050620005026000830184620004b8565b92915050565b600082825260208201905092915050565b6000620005268262000576565b9150620005338362000576565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200056b576200056a620005b6565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200059957607f821691505b60208210811415620005b057620005af620005e5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612678806200064d6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d71461039d578063a9059cbb146103cd578063d547741f146103fd578063dd62ed3e14610419578063ec87621c14610449578063f3fef3a31461046757610142565b806370a08231146102e557806379cc67901461031557806391d148541461033157806395d89b4114610361578063a217fddf1461037f57610142565b8063248a9ca31161010a578063248a9ca3146102135780632f2ff15d14610243578063313ce5671461025f57806336568abe1461027d578063395093511461029957806342966c68146102c957610142565b806301ffc9a71461014757806306fdde0314610177578063095ea7b31461019557806318160ddd146101c557806323b872dd146101e3575b600080fd5b610161600480360381019061015c9190611971565b610483565b60405161016e9190611cb8565b60405180910390f35b61017f6104fd565b60405161018c9190611cee565b60405180910390f35b6101af60048036038101906101aa91906118c4565b61058f565b6040516101bc9190611cb8565b60405180910390f35b6101cd6105ad565b6040516101da9190611eb0565b60405180910390f35b6101fd60048036038101906101f89190611871565b6105b7565b60405161020a9190611cb8565b60405180910390f35b61022d60048036038101906102289190611904565b6106af565b60405161023a9190611cd3565b60405180910390f35b61025d60048036038101906102589190611931565b6106cf565b005b6102676106f8565b6040516102749190611ecb565b60405180910390f35b61029760048036038101906102929190611931565b610701565b005b6102b360048036038101906102ae91906118c4565b610784565b6040516102c09190611cb8565b60405180910390f35b6102e360048036038101906102de919061199e565b610830565b005b6102ff60048036038101906102fa9190611804565b610844565b60405161030c9190611eb0565b60405180910390f35b61032f600480360381019061032a91906118c4565b61088c565b005b61034b60048036038101906103469190611931565b610907565b6040516103589190611cb8565b60405180910390f35b610369610972565b6040516103769190611cee565b60405180910390f35b610387610a04565b6040516103949190611cd3565b60405180910390f35b6103b760048036038101906103b291906118c4565b610a0b565b6040516103c49190611cb8565b60405180910390f35b6103e760048036038101906103e291906118c4565b610af6565b6040516103f49190611cb8565b60405180910390f35b61041760048036038101906104129190611931565b610b14565b005b610433600480360381019061042e9190611831565b610b3d565b6040516104409190611eb0565b60405180910390f35b610451610bc4565b60405161045e9190611cd3565b60405180910390f35b610481600480360381019061047c91906118c4565b610be8565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f657506104f582610c75565b5b9050919050565b60606003805461050c906120d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610538906120d9565b80156105855780601f1061055a57610100808354040283529160200191610585565b820191906000526020600020905b81548152906001019060200180831161056857829003601f168201915b5050505050905090565b60006105a361059c610cdf565b8484610ce7565b6001905092915050565b6000600254905090565b60006105c4848484610eb2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061060f610cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068690611db0565b60405180910390fd5b6106a38561069b610cdf565b858403610ce7565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b6106d8826106af565b6106e9816106e4610cdf565b611133565b6106f383836111d0565b505050565b60006012905090565b610709610cdf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076d90611e90565b60405180910390fd5b61078082826112b1565b5050565b6000610826610791610cdf565b84846001600061079f610cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108219190611f0d565b610ce7565b6001905092915050565b61084161083b610cdf565b82611393565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061089f8361089a610cdf565b610b3d565b9050818110156108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90611dd0565b60405180910390fd5b6108f8836108f0610cdf565b848403610ce7565b6109028383611393565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610981906120d9565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad906120d9565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b6000801b81565b60008060016000610a1a610cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace90611e70565b60405180910390fd5b610aeb610ae2610cdf565b85858403610ce7565b600191505092915050565b6000610b0a610b03610cdf565b8484610eb2565b6001905092915050565b610b1d826106af565b610b2e81610b29610cdf565b611133565b610b3883836112b1565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0881565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610c1a81610c15610cdf565b611133565b610c2330610844565b821115610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90611e50565b60405180910390fd5b610c70308484610eb2565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e90611e30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe90611d70565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ea59190611eb0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990611e10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990611d30565b60405180910390fd5b610f9d83838361156a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90611d90565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110b69190611f0d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111a9190611eb0565b60405180910390a361112d84848461156f565b50505050565b61113d8282610907565b6111cc576111628173ffffffffffffffffffffffffffffffffffffffff166014611574565b6111708360001c6020611574565b604051602001611181929190611c7e565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c39190611cee565b60405180910390fd5b5050565b6111da8282610907565b6112ad5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611252610cdf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6112bb8282610907565b1561138f5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611334610cdf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90611df0565b60405180910390fd5b61140f8260008361156a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90611d50565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546114ec9190611fbd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115519190611eb0565b60405180910390a36115658360008461156f565b505050565b505050565b505050565b6060600060028360026115879190611f63565b6115919190611f0d565b67ffffffffffffffff8111156115aa576115a9612198565b5b6040519080825280601f01601f1916602001820160405280156115dc5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061161457611613612169565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061167857611677612169565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026116b89190611f63565b6116c29190611f0d565b90505b6001811115611762577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061170457611703612169565b5b1a60f81b82828151811061171b5761171a612169565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061175b906120af565b90506116c5565b50600084146117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d90611d10565b60405180910390fd5b8091505092915050565b6000813590506117bf816125e6565b92915050565b6000813590506117d4816125fd565b92915050565b6000813590506117e981612614565b92915050565b6000813590506117fe8161262b565b92915050565b60006020828403121561181a576118196121c7565b5b6000611828848285016117b0565b91505092915050565b60008060408385031215611848576118476121c7565b5b6000611856858286016117b0565b9250506020611867858286016117b0565b9150509250929050565b60008060006060848603121561188a576118896121c7565b5b6000611898868287016117b0565b93505060206118a9868287016117b0565b92505060406118ba868287016117ef565b9150509250925092565b600080604083850312156118db576118da6121c7565b5b60006118e9858286016117b0565b92505060206118fa858286016117ef565b9150509250929050565b60006020828403121561191a576119196121c7565b5b6000611928848285016117c5565b91505092915050565b60008060408385031215611948576119476121c7565b5b6000611956858286016117c5565b9250506020611967858286016117b0565b9150509250929050565b600060208284031215611987576119866121c7565b5b6000611995848285016117da565b91505092915050565b6000602082840312156119b4576119b36121c7565b5b60006119c2848285016117ef565b91505092915050565b6119d481612003565b82525050565b6119e38161200f565b82525050565b60006119f482611ee6565b6119fe8185611ef1565b9350611a0e81856020860161207c565b611a17816121cc565b840191505092915050565b6000611a2d82611ee6565b611a378185611f02565b9350611a4781856020860161207c565b80840191505092915050565b6000611a60602083611ef1565b9150611a6b826121dd565b602082019050919050565b6000611a83602383611ef1565b9150611a8e82612206565b604082019050919050565b6000611aa6602283611ef1565b9150611ab182612255565b604082019050919050565b6000611ac9602283611ef1565b9150611ad4826122a4565b604082019050919050565b6000611aec602683611ef1565b9150611af7826122f3565b604082019050919050565b6000611b0f602883611ef1565b9150611b1a82612342565b604082019050919050565b6000611b32602483611ef1565b9150611b3d82612391565b604082019050919050565b6000611b55602183611ef1565b9150611b60826123e0565b604082019050919050565b6000611b78602583611ef1565b9150611b838261242f565b604082019050919050565b6000611b9b602483611ef1565b9150611ba68261247e565b604082019050919050565b6000611bbe601483611ef1565b9150611bc9826124cd565b602082019050919050565b6000611be1601783611f02565b9150611bec826124f6565b601782019050919050565b6000611c04602583611ef1565b9150611c0f8261251f565b604082019050919050565b6000611c27601183611f02565b9150611c328261256e565b601182019050919050565b6000611c4a602f83611ef1565b9150611c5582612597565b604082019050919050565b611c6981612065565b82525050565b611c788161206f565b82525050565b6000611c8982611bd4565b9150611c958285611a22565b9150611ca082611c1a565b9150611cac8284611a22565b91508190509392505050565b6000602082019050611ccd60008301846119cb565b92915050565b6000602082019050611ce860008301846119da565b92915050565b60006020820190508181036000830152611d0881846119e9565b905092915050565b60006020820190508181036000830152611d2981611a53565b9050919050565b60006020820190508181036000830152611d4981611a76565b9050919050565b60006020820190508181036000830152611d6981611a99565b9050919050565b60006020820190508181036000830152611d8981611abc565b9050919050565b60006020820190508181036000830152611da981611adf565b9050919050565b60006020820190508181036000830152611dc981611b02565b9050919050565b60006020820190508181036000830152611de981611b25565b9050919050565b60006020820190508181036000830152611e0981611b48565b9050919050565b60006020820190508181036000830152611e2981611b6b565b9050919050565b60006020820190508181036000830152611e4981611b8e565b9050919050565b60006020820190508181036000830152611e6981611bb1565b9050919050565b60006020820190508181036000830152611e8981611bf7565b9050919050565b60006020820190508181036000830152611ea981611c3d565b9050919050565b6000602082019050611ec56000830184611c60565b92915050565b6000602082019050611ee06000830184611c6f565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000611f1882612065565b9150611f2383612065565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f5857611f5761210b565b5b828201905092915050565b6000611f6e82612065565b9150611f7983612065565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611fb257611fb161210b565b5b828202905092915050565b6000611fc882612065565b9150611fd383612065565b925082821015611fe657611fe561210b565b5b828203905092915050565b6000611ffc82612045565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561209a57808201518184015260208101905061207f565b838111156120a9576000848401525b50505050565b60006120ba82612065565b915060008214156120ce576120cd61210b565b5b600182039050919050565b600060028204905060018216806120f157607f821691505b602082108114156121055761210461213a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065676773206c656674000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6125ef81611ff1565b81146125fa57600080fd5b50565b6126068161200f565b811461261157600080fd5b50565b61261d81612019565b811461262857600080fd5b50565b61263481612065565b811461263f57600080fd5b5056fea26469706673582212202cfbbe24da4082acb950566401658e67ec8cc26b73a9f42ec269aa1232e38d4b64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d71461039d578063a9059cbb146103cd578063d547741f146103fd578063dd62ed3e14610419578063ec87621c14610449578063f3fef3a31461046757610142565b806370a08231146102e557806379cc67901461031557806391d148541461033157806395d89b4114610361578063a217fddf1461037f57610142565b8063248a9ca31161010a578063248a9ca3146102135780632f2ff15d14610243578063313ce5671461025f57806336568abe1461027d578063395093511461029957806342966c68146102c957610142565b806301ffc9a71461014757806306fdde0314610177578063095ea7b31461019557806318160ddd146101c557806323b872dd146101e3575b600080fd5b610161600480360381019061015c9190611971565b610483565b60405161016e9190611cb8565b60405180910390f35b61017f6104fd565b60405161018c9190611cee565b60405180910390f35b6101af60048036038101906101aa91906118c4565b61058f565b6040516101bc9190611cb8565b60405180910390f35b6101cd6105ad565b6040516101da9190611eb0565b60405180910390f35b6101fd60048036038101906101f89190611871565b6105b7565b60405161020a9190611cb8565b60405180910390f35b61022d60048036038101906102289190611904565b6106af565b60405161023a9190611cd3565b60405180910390f35b61025d60048036038101906102589190611931565b6106cf565b005b6102676106f8565b6040516102749190611ecb565b60405180910390f35b61029760048036038101906102929190611931565b610701565b005b6102b360048036038101906102ae91906118c4565b610784565b6040516102c09190611cb8565b60405180910390f35b6102e360048036038101906102de919061199e565b610830565b005b6102ff60048036038101906102fa9190611804565b610844565b60405161030c9190611eb0565b60405180910390f35b61032f600480360381019061032a91906118c4565b61088c565b005b61034b60048036038101906103469190611931565b610907565b6040516103589190611cb8565b60405180910390f35b610369610972565b6040516103769190611cee565b60405180910390f35b610387610a04565b6040516103949190611cd3565b60405180910390f35b6103b760048036038101906103b291906118c4565b610a0b565b6040516103c49190611cb8565b60405180910390f35b6103e760048036038101906103e291906118c4565b610af6565b6040516103f49190611cb8565b60405180910390f35b61041760048036038101906104129190611931565b610b14565b005b610433600480360381019061042e9190611831565b610b3d565b6040516104409190611eb0565b60405180910390f35b610451610bc4565b60405161045e9190611cd3565b60405180910390f35b610481600480360381019061047c91906118c4565b610be8565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104f657506104f582610c75565b5b9050919050565b60606003805461050c906120d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610538906120d9565b80156105855780601f1061055a57610100808354040283529160200191610585565b820191906000526020600020905b81548152906001019060200180831161056857829003601f168201915b5050505050905090565b60006105a361059c610cdf565b8484610ce7565b6001905092915050565b6000600254905090565b60006105c4848484610eb2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061060f610cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068690611db0565b60405180910390fd5b6106a38561069b610cdf565b858403610ce7565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b6106d8826106af565b6106e9816106e4610cdf565b611133565b6106f383836111d0565b505050565b60006012905090565b610709610cdf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076d90611e90565b60405180910390fd5b61078082826112b1565b5050565b6000610826610791610cdf565b84846001600061079f610cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108219190611f0d565b610ce7565b6001905092915050565b61084161083b610cdf565b82611393565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061089f8361089a610cdf565b610b3d565b9050818110156108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90611dd0565b60405180910390fd5b6108f8836108f0610cdf565b848403610ce7565b6109028383611393565b505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610981906120d9565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad906120d9565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b6000801b81565b60008060016000610a1a610cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace90611e70565b60405180910390fd5b610aeb610ae2610cdf565b85858403610ce7565b600191505092915050565b6000610b0a610b03610cdf565b8484610eb2565b6001905092915050565b610b1d826106af565b610b2e81610b29610cdf565b611133565b610b3883836112b1565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0881565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610c1a81610c15610cdf565b611133565b610c2330610844565b821115610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90611e50565b60405180910390fd5b610c70308484610eb2565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e90611e30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe90611d70565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ea59190611eb0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990611e10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990611d30565b60405180910390fd5b610f9d83838361156a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90611d90565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110b69190611f0d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111a9190611eb0565b60405180910390a361112d84848461156f565b50505050565b61113d8282610907565b6111cc576111628173ffffffffffffffffffffffffffffffffffffffff166014611574565b6111708360001c6020611574565b604051602001611181929190611c7e565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c39190611cee565b60405180910390fd5b5050565b6111da8282610907565b6112ad5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611252610cdf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6112bb8282610907565b1561138f5760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611334610cdf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90611df0565b60405180910390fd5b61140f8260008361156a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90611d50565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546114ec9190611fbd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115519190611eb0565b60405180910390a36115658360008461156f565b505050565b505050565b505050565b6060600060028360026115879190611f63565b6115919190611f0d565b67ffffffffffffffff8111156115aa576115a9612198565b5b6040519080825280601f01601f1916602001820160405280156115dc5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061161457611613612169565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061167857611677612169565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026116b89190611f63565b6116c29190611f0d565b90505b6001811115611762577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061170457611703612169565b5b1a60f81b82828151811061171b5761171a612169565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061175b906120af565b90506116c5565b50600084146117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d90611d10565b60405180910390fd5b8091505092915050565b6000813590506117bf816125e6565b92915050565b6000813590506117d4816125fd565b92915050565b6000813590506117e981612614565b92915050565b6000813590506117fe8161262b565b92915050565b60006020828403121561181a576118196121c7565b5b6000611828848285016117b0565b91505092915050565b60008060408385031215611848576118476121c7565b5b6000611856858286016117b0565b9250506020611867858286016117b0565b9150509250929050565b60008060006060848603121561188a576118896121c7565b5b6000611898868287016117b0565b93505060206118a9868287016117b0565b92505060406118ba868287016117ef565b9150509250925092565b600080604083850312156118db576118da6121c7565b5b60006118e9858286016117b0565b92505060206118fa858286016117ef565b9150509250929050565b60006020828403121561191a576119196121c7565b5b6000611928848285016117c5565b91505092915050565b60008060408385031215611948576119476121c7565b5b6000611956858286016117c5565b9250506020611967858286016117b0565b9150509250929050565b600060208284031215611987576119866121c7565b5b6000611995848285016117da565b91505092915050565b6000602082840312156119b4576119b36121c7565b5b60006119c2848285016117ef565b91505092915050565b6119d481612003565b82525050565b6119e38161200f565b82525050565b60006119f482611ee6565b6119fe8185611ef1565b9350611a0e81856020860161207c565b611a17816121cc565b840191505092915050565b6000611a2d82611ee6565b611a378185611f02565b9350611a4781856020860161207c565b80840191505092915050565b6000611a60602083611ef1565b9150611a6b826121dd565b602082019050919050565b6000611a83602383611ef1565b9150611a8e82612206565b604082019050919050565b6000611aa6602283611ef1565b9150611ab182612255565b604082019050919050565b6000611ac9602283611ef1565b9150611ad4826122a4565b604082019050919050565b6000611aec602683611ef1565b9150611af7826122f3565b604082019050919050565b6000611b0f602883611ef1565b9150611b1a82612342565b604082019050919050565b6000611b32602483611ef1565b9150611b3d82612391565b604082019050919050565b6000611b55602183611ef1565b9150611b60826123e0565b604082019050919050565b6000611b78602583611ef1565b9150611b838261242f565b604082019050919050565b6000611b9b602483611ef1565b9150611ba68261247e565b604082019050919050565b6000611bbe601483611ef1565b9150611bc9826124cd565b602082019050919050565b6000611be1601783611f02565b9150611bec826124f6565b601782019050919050565b6000611c04602583611ef1565b9150611c0f8261251f565b604082019050919050565b6000611c27601183611f02565b9150611c328261256e565b601182019050919050565b6000611c4a602f83611ef1565b9150611c5582612597565b604082019050919050565b611c6981612065565b82525050565b611c788161206f565b82525050565b6000611c8982611bd4565b9150611c958285611a22565b9150611ca082611c1a565b9150611cac8284611a22565b91508190509392505050565b6000602082019050611ccd60008301846119cb565b92915050565b6000602082019050611ce860008301846119da565b92915050565b60006020820190508181036000830152611d0881846119e9565b905092915050565b60006020820190508181036000830152611d2981611a53565b9050919050565b60006020820190508181036000830152611d4981611a76565b9050919050565b60006020820190508181036000830152611d6981611a99565b9050919050565b60006020820190508181036000830152611d8981611abc565b9050919050565b60006020820190508181036000830152611da981611adf565b9050919050565b60006020820190508181036000830152611dc981611b02565b9050919050565b60006020820190508181036000830152611de981611b25565b9050919050565b60006020820190508181036000830152611e0981611b48565b9050919050565b60006020820190508181036000830152611e2981611b6b565b9050919050565b60006020820190508181036000830152611e4981611b8e565b9050919050565b60006020820190508181036000830152611e6981611bb1565b9050919050565b60006020820190508181036000830152611e8981611bf7565b9050919050565b60006020820190508181036000830152611ea981611c3d565b9050919050565b6000602082019050611ec56000830184611c60565b92915050565b6000602082019050611ee06000830184611c6f565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000611f1882612065565b9150611f2383612065565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f5857611f5761210b565b5b828201905092915050565b6000611f6e82612065565b9150611f7983612065565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611fb257611fb161210b565b5b828202905092915050565b6000611fc882612065565b9150611fd383612065565b925082821015611fe657611fe561210b565b5b828203905092915050565b6000611ffc82612045565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561209a57808201518184015260208101905061207f565b838111156120a9576000848401525b50505050565b60006120ba82612065565b915060008214156120ce576120cd61210b565b5b600182039050919050565b600060028204905060018216806120f157607f821691505b602082108114156121055761210461213a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065676773206c656674000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6125ef81611ff1565b81146125fa57600080fd5b50565b6126068161200f565b811461261157600080fd5b50565b61261d81612019565b811461262857600080fd5b50565b61263481612065565b811461263f57600080fd5b5056fea26469706673582212202cfbbe24da4082acb950566401658e67ec8cc26b73a9f42ec269aa1232e38d4b64736f6c63430008070033

Deployed Bytecode Sourcemap

32687:517:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10580:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21303:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23470:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22423:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24121:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11991:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12376:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22265:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13424:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25022:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31832:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22594:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32242:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10876:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21522:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9967:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25740:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22934:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12768:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23172:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32749:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32970:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10580:204;10665:4;10704:32;10689:47;;;:11;:47;;;;:87;;;;10740:36;10764:11;10740:23;:36::i;:::-;10689:87;10682:94;;10580:204;;;:::o;21303:100::-;21357:13;21390:5;21383:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21303:100;:::o;23470:169::-;23553:4;23570:39;23579:12;:10;:12::i;:::-;23593:7;23602:6;23570:8;:39::i;:::-;23627:4;23620:11;;23470:169;;;;:::o;22423:108::-;22484:7;22511:12;;22504:19;;22423:108;:::o;24121:492::-;24261:4;24278:36;24288:6;24296:9;24307:6;24278:9;:36::i;:::-;24327:24;24354:11;:19;24366:6;24354:19;;;;;;;;;;;;;;;:33;24374:12;:10;:12::i;:::-;24354:33;;;;;;;;;;;;;;;;24327:60;;24426:6;24406:16;:26;;24398:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;24513:57;24522:6;24530:12;:10;:12::i;:::-;24563:6;24544:16;:25;24513:8;:57::i;:::-;24601:4;24594:11;;;24121:492;;;;;:::o;11991:123::-;12057:7;12084:6;:12;12091:4;12084:12;;;;;;;;;;;:22;;;12077:29;;11991:123;;;:::o;12376:147::-;12459:18;12472:4;12459:12;:18::i;:::-;10458:30;10469:4;10475:12;:10;:12::i;:::-;10458:10;:30::i;:::-;12490:25:::1;12501:4;12507:7;12490:10;:25::i;:::-;12376:147:::0;;;:::o;22265:93::-;22323:5;22348:2;22341:9;;22265:93;:::o;13424:218::-;13531:12;:10;:12::i;:::-;13520:23;;:7;:23;;;13512:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;13608:26;13620:4;13626:7;13608:11;:26::i;:::-;13424:218;;:::o;25022:215::-;25110:4;25127:80;25136:12;:10;:12::i;:::-;25150:7;25196:10;25159:11;:25;25171:12;:10;:12::i;:::-;25159:25;;;;;;;;;;;;;;;:34;25185:7;25159:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;25127:8;:80::i;:::-;25225:4;25218:11;;25022:215;;;;:::o;31832:91::-;31888:27;31894:12;:10;:12::i;:::-;31908:6;31888:5;:27::i;:::-;31832:91;:::o;22594:127::-;22668:7;22695:9;:18;22705:7;22695:18;;;;;;;;;;;;;;;;22688:25;;22594:127;;;:::o;32242:368::-;32319:24;32346:32;32356:7;32365:12;:10;:12::i;:::-;32346:9;:32::i;:::-;32319:59;;32417:6;32397:16;:26;;32389:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;32500:58;32509:7;32518:12;:10;:12::i;:::-;32551:6;32532:16;:25;32500:8;:58::i;:::-;32580:22;32586:7;32595:6;32580:5;:22::i;:::-;32308:302;32242:368;;:::o;10876:139::-;10954:4;10978:6;:12;10985:4;10978:12;;;;;;;;;;;:20;;:29;10999:7;10978:29;;;;;;;;;;;;;;;;;;;;;;;;;10971:36;;10876:139;;;;:::o;21522:104::-;21578:13;21611:7;21604:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21522:104;:::o;9967:49::-;10012:4;9967:49;;;:::o;25740:413::-;25833:4;25850:24;25877:11;:25;25889:12;:10;:12::i;:::-;25877:25;;;;;;;;;;;;;;;:34;25903:7;25877:34;;;;;;;;;;;;;;;;25850:61;;25950:15;25930:16;:35;;25922:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;26043:67;26052:12;:10;:12::i;:::-;26066:7;26094:15;26075:16;:34;26043:8;:67::i;:::-;26141:4;26134:11;;;25740:413;;;;:::o;22934:175::-;23020:4;23037:42;23047:12;:10;:12::i;:::-;23061:9;23072:6;23037:9;:42::i;:::-;23097:4;23090:11;;22934:175;;;;:::o;12768:149::-;12852:18;12865:4;12852:12;:18::i;:::-;10458:30;10469:4;10475:12;:10;:12::i;:::-;10458:10;:30::i;:::-;12883:26:::1;12895:4;12901:7;12883:11;:26::i;:::-;12768:149:::0;;;:::o;23172:151::-;23261:7;23288:11;:18;23300:5;23288:18;;;;;;;;;;;;;;;:27;23307:7;23288:27;;;;;;;;;;;;;;;;23281:34;;23172:151;;;;:::o;32749:64::-;32788:25;32749:64;:::o;32970:231::-;32788:25;10458:30;10469:4;10475:12;:10;:12::i;:::-;10458:10;:30::i;:::-;33094:24:::1;33112:4;33094:9;:24::i;:::-;33083:7;:35;;33075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33152:43;33170:4;33177:8;33187:7;33152:9;:43::i;:::-;32970:231:::0;;;:::o;1782:157::-;1867:4;1906:25;1891:40;;;:11;:40;;;;1884:47;;1782:157;;;:::o;7790:98::-;7843:7;7870:10;7863:17;;7790:98;:::o;29424:380::-;29577:1;29560:19;;:5;:19;;;;29552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29658:1;29639:21;;:7;:21;;;;29631:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29742:6;29712:11;:18;29724:5;29712:18;;;;;;;;;;;;;;;:27;29731:7;29712:27;;;;;;;;;;;;;;;:36;;;;29780:7;29764:32;;29773:5;29764:32;;;29789:6;29764:32;;;;;;:::i;:::-;;;;;;;;29424:380;;;:::o;26643:733::-;26801:1;26783:20;;:6;:20;;;;26775:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;26885:1;26864:23;;:9;:23;;;;26856:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26940:47;26961:6;26969:9;26980:6;26940:20;:47::i;:::-;27000:21;27024:9;:17;27034:6;27024:17;;;;;;;;;;;;;;;;27000:41;;27077:6;27060:13;:23;;27052:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27198:6;27182:13;:22;27162:9;:17;27172:6;27162:17;;;;;;;;;;;;;;;:42;;;;27250:6;27226:9;:20;27236:9;27226:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;27291:9;27274:35;;27283:6;27274:35;;;27302:6;27274:35;;;;;;:::i;:::-;;;;;;;;27322:46;27342:6;27350:9;27361:6;27322:19;:46::i;:::-;26764:612;26643:733;;;:::o;11305:497::-;11386:22;11394:4;11400:7;11386;:22::i;:::-;11381:414;;11574:41;11602:7;11574:41;;11612:2;11574:19;:41::i;:::-;11688:38;11716:4;11708:13;;11723:2;11688:19;:38::i;:::-;11479:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11425:358;;;;;;;;;;;:::i;:::-;;;;;;;;11381:414;11305:497;;:::o;14925:238::-;15009:22;15017:4;15023:7;15009;:22::i;:::-;15004:152;;15080:4;15048:6;:12;15055:4;15048:12;;;;;;;;;;;:20;;:29;15069:7;15048:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;15131:12;:10;:12::i;:::-;15104:40;;15122:7;15104:40;;15116:4;15104:40;;;;;;;;;;15004:152;14925:238;;:::o;15295:239::-;15379:22;15387:4;15393:7;15379;:22::i;:::-;15375:152;;;15450:5;15418:6;:12;15425:4;15418:12;;;;;;;;;;;:20;;:29;15439:7;15418:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;15502:12;:10;:12::i;:::-;15475:40;;15493:7;15475:40;;15487:4;15475:40;;;;;;;;;;15375:152;15295:239;;:::o;28395:591::-;28498:1;28479:21;;:7;:21;;;;28471:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28551:49;28572:7;28589:1;28593:6;28551:20;:49::i;:::-;28613:22;28638:9;:18;28648:7;28638:18;;;;;;;;;;;;;;;;28613:43;;28693:6;28675:14;:24;;28667:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28812:6;28795:14;:23;28774:9;:18;28784:7;28774:18;;;;;;;;;;;;;;;:44;;;;28856:6;28840:12;;:22;;;;;;;:::i;:::-;;;;;;;;28906:1;28880:37;;28889:7;28880:37;;;28910:6;28880:37;;;;;;:::i;:::-;;;;;;;;28930:48;28950:7;28967:1;28971:6;28930:19;:48::i;:::-;28460:526;28395:591;;:::o;30404:125::-;;;;:::o;31133:124::-;;;;:::o;3612:451::-;3687:13;3713:19;3758:1;3749:6;3745:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3735:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3713:47;;3771:15;:6;3778:1;3771:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;3797;:6;3804:1;3797:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;3828:9;3853:1;3844:6;3840:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3828:26;;3823:135;3860:1;3856;:5;3823:135;;;3895:12;3916:3;3908:5;:11;3895:25;;;;;;;:::i;:::-;;;;;3883:6;3890:1;3883:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;3945:1;3935:11;;;;;3863:3;;;;:::i;:::-;;;3823:135;;;;3985:1;3976:5;:10;3968:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;4048:6;4034:21;;;3612:451;;;;:::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:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;297:137;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:119;;;1051:79;;:::i;:::-;1013:119;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;920:474;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:119;;;1548:79;;:::i;:::-;1510:119;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1400:619;;;;;:::o;2025:474::-;2093:6;2101;2150:2;2138:9;2129:7;2125:23;2121:32;2118:119;;;2156:79;;:::i;:::-;2118:119;2276:1;2301:53;2346:7;2337:6;2326:9;2322:22;2301:53;:::i;:::-;2291:63;;2247:117;2403:2;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2374:118;2025:474;;;;;:::o;2505:329::-;2564:6;2613:2;2601:9;2592:7;2588:23;2584:32;2581:119;;;2619:79;;:::i;:::-;2581:119;2739:1;2764:53;2809:7;2800:6;2789:9;2785:22;2764:53;:::i;:::-;2754:63;;2710:117;2505:329;;;;:::o;2840:474::-;2908:6;2916;2965:2;2953:9;2944:7;2940:23;2936:32;2933:119;;;2971:79;;:::i;:::-;2933:119;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;3218:2;3244:53;3289:7;3280:6;3269:9;3265:22;3244:53;:::i;:::-;3234:63;;3189:118;2840:474;;;;;:::o;3320:327::-;3378:6;3427:2;3415:9;3406:7;3402:23;3398:32;3395:119;;;3433:79;;:::i;:::-;3395:119;3553:1;3578:52;3622:7;3613:6;3602:9;3598:22;3578:52;:::i;:::-;3568:62;;3524:116;3320:327;;;;:::o;3653:329::-;3712:6;3761:2;3749:9;3740:7;3736:23;3732:32;3729:119;;;3767:79;;:::i;:::-;3729:119;3887:1;3912:53;3957:7;3948:6;3937:9;3933:22;3912:53;:::i;:::-;3902:63;;3858:117;3653:329;;;;:::o;3988:109::-;4069:21;4084:5;4069:21;:::i;:::-;4064:3;4057:34;3988:109;;:::o;4103:118::-;4190:24;4208:5;4190:24;:::i;:::-;4185:3;4178:37;4103:118;;:::o;4227:364::-;4315:3;4343:39;4376:5;4343:39;:::i;:::-;4398:71;4462:6;4457:3;4398:71;:::i;:::-;4391:78;;4478:52;4523:6;4518:3;4511:4;4504:5;4500:16;4478:52;:::i;:::-;4555:29;4577:6;4555:29;:::i;:::-;4550:3;4546:39;4539:46;;4319:272;4227:364;;;;:::o;4597:377::-;4703:3;4731:39;4764:5;4731:39;:::i;:::-;4786:89;4868:6;4863:3;4786:89;:::i;:::-;4779:96;;4884:52;4929:6;4924:3;4917:4;4910:5;4906:16;4884:52;:::i;:::-;4961:6;4956:3;4952:16;4945:23;;4707:267;4597:377;;;;:::o;4980:366::-;5122:3;5143:67;5207:2;5202:3;5143:67;:::i;:::-;5136:74;;5219:93;5308:3;5219:93;:::i;:::-;5337:2;5332:3;5328:12;5321:19;;4980:366;;;:::o;5352:::-;5494:3;5515:67;5579:2;5574:3;5515:67;:::i;:::-;5508:74;;5591:93;5680:3;5591:93;:::i;:::-;5709:2;5704:3;5700:12;5693:19;;5352:366;;;:::o;5724:::-;5866:3;5887:67;5951:2;5946:3;5887:67;:::i;:::-;5880:74;;5963:93;6052:3;5963:93;:::i;:::-;6081:2;6076:3;6072:12;6065:19;;5724:366;;;:::o;6096:::-;6238:3;6259:67;6323:2;6318:3;6259:67;:::i;:::-;6252:74;;6335:93;6424:3;6335:93;:::i;:::-;6453:2;6448:3;6444:12;6437:19;;6096:366;;;:::o;6468:::-;6610:3;6631:67;6695:2;6690:3;6631:67;:::i;:::-;6624:74;;6707:93;6796:3;6707:93;:::i;:::-;6825:2;6820:3;6816:12;6809:19;;6468:366;;;:::o;6840:::-;6982:3;7003:67;7067:2;7062:3;7003:67;:::i;:::-;6996:74;;7079:93;7168:3;7079:93;:::i;:::-;7197:2;7192:3;7188:12;7181:19;;6840:366;;;:::o;7212:::-;7354:3;7375:67;7439:2;7434:3;7375:67;:::i;:::-;7368:74;;7451:93;7540:3;7451:93;:::i;:::-;7569:2;7564:3;7560:12;7553:19;;7212:366;;;:::o;7584:::-;7726:3;7747:67;7811:2;7806:3;7747:67;:::i;:::-;7740:74;;7823:93;7912:3;7823:93;:::i;:::-;7941:2;7936:3;7932:12;7925:19;;7584:366;;;:::o;7956:::-;8098:3;8119:67;8183:2;8178:3;8119:67;:::i;:::-;8112:74;;8195:93;8284:3;8195:93;:::i;:::-;8313:2;8308:3;8304:12;8297:19;;7956:366;;;:::o;8328:::-;8470:3;8491:67;8555:2;8550:3;8491:67;:::i;:::-;8484:74;;8567:93;8656:3;8567:93;:::i;:::-;8685:2;8680:3;8676:12;8669:19;;8328:366;;;:::o;8700:::-;8842:3;8863:67;8927:2;8922:3;8863:67;:::i;:::-;8856:74;;8939:93;9028:3;8939:93;:::i;:::-;9057:2;9052:3;9048:12;9041:19;;8700:366;;;:::o;9072:402::-;9232:3;9253:85;9335:2;9330:3;9253:85;:::i;:::-;9246:92;;9347:93;9436:3;9347:93;:::i;:::-;9465:2;9460:3;9456:12;9449:19;;9072:402;;;:::o;9480:366::-;9622:3;9643:67;9707:2;9702:3;9643:67;:::i;:::-;9636:74;;9719:93;9808:3;9719:93;:::i;:::-;9837:2;9832:3;9828:12;9821:19;;9480:366;;;:::o;9852:402::-;10012:3;10033:85;10115:2;10110:3;10033:85;:::i;:::-;10026:92;;10127:93;10216:3;10127:93;:::i;:::-;10245:2;10240:3;10236:12;10229:19;;9852:402;;;:::o;10260:366::-;10402:3;10423:67;10487:2;10482:3;10423:67;:::i;:::-;10416:74;;10499:93;10588:3;10499:93;:::i;:::-;10617:2;10612:3;10608:12;10601:19;;10260:366;;;:::o;10632:118::-;10719:24;10737:5;10719:24;:::i;:::-;10714:3;10707:37;10632:118;;:::o;10756:112::-;10839:22;10855:5;10839:22;:::i;:::-;10834:3;10827:35;10756:112;;:::o;10874:967::-;11256:3;11278:148;11422:3;11278:148;:::i;:::-;11271:155;;11443:95;11534:3;11525:6;11443:95;:::i;:::-;11436:102;;11555:148;11699:3;11555:148;:::i;:::-;11548:155;;11720:95;11811:3;11802:6;11720:95;:::i;:::-;11713:102;;11832:3;11825:10;;10874:967;;;;;:::o;11847:210::-;11934:4;11972:2;11961:9;11957:18;11949:26;;11985:65;12047:1;12036:9;12032:17;12023:6;11985:65;:::i;:::-;11847:210;;;;:::o;12063:222::-;12156:4;12194:2;12183:9;12179:18;12171:26;;12207:71;12275:1;12264:9;12260:17;12251:6;12207:71;:::i;:::-;12063:222;;;;:::o;12291:313::-;12404:4;12442:2;12431:9;12427:18;12419:26;;12491:9;12485:4;12481:20;12477:1;12466:9;12462:17;12455:47;12519:78;12592:4;12583:6;12519:78;:::i;:::-;12511:86;;12291:313;;;;:::o;12610:419::-;12776:4;12814:2;12803:9;12799:18;12791:26;;12863:9;12857:4;12853:20;12849:1;12838:9;12834:17;12827:47;12891:131;13017:4;12891:131;:::i;:::-;12883:139;;12610:419;;;:::o;13035:::-;13201:4;13239:2;13228:9;13224:18;13216:26;;13288:9;13282:4;13278:20;13274:1;13263:9;13259:17;13252:47;13316:131;13442:4;13316:131;:::i;:::-;13308:139;;13035:419;;;:::o;13460:::-;13626:4;13664:2;13653:9;13649:18;13641:26;;13713:9;13707:4;13703:20;13699:1;13688:9;13684:17;13677:47;13741:131;13867:4;13741:131;:::i;:::-;13733:139;;13460:419;;;:::o;13885:::-;14051:4;14089:2;14078:9;14074:18;14066:26;;14138:9;14132:4;14128:20;14124:1;14113:9;14109:17;14102:47;14166:131;14292:4;14166:131;:::i;:::-;14158:139;;13885:419;;;:::o;14310:::-;14476:4;14514:2;14503:9;14499:18;14491:26;;14563:9;14557:4;14553:20;14549:1;14538:9;14534:17;14527:47;14591:131;14717:4;14591:131;:::i;:::-;14583:139;;14310:419;;;:::o;14735:::-;14901:4;14939:2;14928:9;14924:18;14916:26;;14988:9;14982:4;14978:20;14974:1;14963:9;14959:17;14952:47;15016:131;15142:4;15016:131;:::i;:::-;15008:139;;14735:419;;;:::o;15160:::-;15326:4;15364:2;15353:9;15349:18;15341:26;;15413:9;15407:4;15403:20;15399:1;15388:9;15384:17;15377:47;15441:131;15567:4;15441:131;:::i;:::-;15433:139;;15160:419;;;:::o;15585:::-;15751:4;15789:2;15778:9;15774:18;15766:26;;15838:9;15832:4;15828:20;15824:1;15813:9;15809:17;15802:47;15866:131;15992:4;15866:131;:::i;:::-;15858:139;;15585:419;;;:::o;16010:::-;16176:4;16214:2;16203:9;16199:18;16191:26;;16263:9;16257:4;16253:20;16249:1;16238:9;16234:17;16227:47;16291:131;16417:4;16291:131;:::i;:::-;16283:139;;16010:419;;;:::o;16435:::-;16601:4;16639:2;16628:9;16624:18;16616:26;;16688:9;16682:4;16678:20;16674:1;16663:9;16659:17;16652:47;16716:131;16842:4;16716:131;:::i;:::-;16708:139;;16435:419;;;:::o;16860:::-;17026:4;17064:2;17053:9;17049:18;17041:26;;17113:9;17107:4;17103:20;17099:1;17088:9;17084:17;17077:47;17141:131;17267:4;17141:131;:::i;:::-;17133:139;;16860:419;;;:::o;17285:::-;17451:4;17489:2;17478:9;17474:18;17466:26;;17538:9;17532:4;17528:20;17524:1;17513:9;17509:17;17502:47;17566:131;17692:4;17566:131;:::i;:::-;17558:139;;17285:419;;;:::o;17710:::-;17876:4;17914:2;17903:9;17899:18;17891:26;;17963:9;17957:4;17953:20;17949:1;17938:9;17934:17;17927:47;17991:131;18117:4;17991:131;:::i;:::-;17983:139;;17710:419;;;:::o;18135:222::-;18228:4;18266:2;18255:9;18251:18;18243:26;;18279:71;18347:1;18336:9;18332:17;18323:6;18279:71;:::i;:::-;18135:222;;;;:::o;18363:214::-;18452:4;18490:2;18479:9;18475:18;18467:26;;18503:67;18567:1;18556:9;18552:17;18543:6;18503:67;:::i;:::-;18363:214;;;;:::o;18664:99::-;18716:6;18750:5;18744:12;18734:22;;18664:99;;;:::o;18769:169::-;18853:11;18887:6;18882:3;18875:19;18927:4;18922:3;18918:14;18903:29;;18769:169;;;;:::o;18944:148::-;19046:11;19083:3;19068:18;;18944:148;;;;:::o;19098:305::-;19138:3;19157:20;19175:1;19157:20;:::i;:::-;19152:25;;19191:20;19209:1;19191:20;:::i;:::-;19186:25;;19345:1;19277:66;19273:74;19270:1;19267:81;19264:107;;;19351:18;;:::i;:::-;19264:107;19395:1;19392;19388:9;19381:16;;19098:305;;;;:::o;19409:348::-;19449:7;19472:20;19490:1;19472:20;:::i;:::-;19467:25;;19506:20;19524:1;19506:20;:::i;:::-;19501:25;;19694:1;19626:66;19622:74;19619:1;19616:81;19611:1;19604:9;19597:17;19593:105;19590:131;;;19701:18;;:::i;:::-;19590:131;19749:1;19746;19742:9;19731:20;;19409:348;;;;:::o;19763:191::-;19803:4;19823:20;19841:1;19823:20;:::i;:::-;19818:25;;19857:20;19875:1;19857:20;:::i;:::-;19852:25;;19896:1;19893;19890:8;19887:34;;;19901:18;;:::i;:::-;19887:34;19946:1;19943;19939:9;19931:17;;19763:191;;;;:::o;19960:96::-;19997:7;20026:24;20044:5;20026:24;:::i;:::-;20015:35;;19960:96;;;:::o;20062:90::-;20096:7;20139:5;20132:13;20125:21;20114:32;;20062:90;;;:::o;20158:77::-;20195:7;20224:5;20213:16;;20158:77;;;:::o;20241:149::-;20277:7;20317:66;20310:5;20306:78;20295:89;;20241:149;;;:::o;20396:126::-;20433:7;20473:42;20466:5;20462:54;20451:65;;20396:126;;;:::o;20528:77::-;20565:7;20594:5;20583:16;;20528:77;;;:::o;20611:86::-;20646:7;20686:4;20679:5;20675:16;20664:27;;20611:86;;;:::o;20703:307::-;20771:1;20781:113;20795:6;20792:1;20789:13;20781:113;;;20880:1;20875:3;20871:11;20865:18;20861:1;20856:3;20852:11;20845:39;20817:2;20814:1;20810:10;20805:15;;20781:113;;;20912:6;20909:1;20906:13;20903:101;;;20992:1;20983:6;20978:3;20974:16;20967:27;20903:101;20752:258;20703:307;;;:::o;21016:171::-;21055:3;21078:24;21096:5;21078:24;:::i;:::-;21069:33;;21124:4;21117:5;21114:15;21111:41;;;21132:18;;:::i;:::-;21111:41;21179:1;21172:5;21168:13;21161:20;;21016:171;;;:::o;21193:320::-;21237:6;21274:1;21268:4;21264:12;21254:22;;21321:1;21315:4;21311:12;21342:18;21332:81;;21398:4;21390:6;21386:17;21376:27;;21332:81;21460:2;21452:6;21449:14;21429:18;21426:38;21423:84;;;21479:18;;:::i;:::-;21423:84;21244:269;21193:320;;;:::o;21519:180::-;21567:77;21564:1;21557:88;21664:4;21661:1;21654:15;21688:4;21685:1;21678:15;21705:180;21753:77;21750:1;21743:88;21850:4;21847:1;21840:15;21874:4;21871:1;21864:15;21891:180;21939:77;21936:1;21929:88;22036:4;22033:1;22026:15;22060:4;22057:1;22050:15;22077:180;22125:77;22122:1;22115:88;22222:4;22219:1;22212:15;22246:4;22243:1;22236:15;22386:117;22495:1;22492;22485:12;22509:102;22550:6;22601:2;22597:7;22592:2;22585:5;22581:14;22577:28;22567:38;;22509:102;;;:::o;22617:182::-;22757:34;22753:1;22745:6;22741:14;22734:58;22617:182;:::o;22805:222::-;22945:34;22941:1;22933:6;22929:14;22922:58;23014:5;23009:2;23001:6;22997:15;22990:30;22805:222;:::o;23033:221::-;23173:34;23169:1;23161:6;23157:14;23150:58;23242:4;23237:2;23229:6;23225:15;23218:29;23033:221;:::o;23260:::-;23400:34;23396:1;23388:6;23384:14;23377:58;23469:4;23464:2;23456:6;23452:15;23445:29;23260:221;:::o;23487:225::-;23627:34;23623:1;23615:6;23611:14;23604:58;23696:8;23691:2;23683:6;23679:15;23672:33;23487:225;:::o;23718:227::-;23858:34;23854:1;23846:6;23842:14;23835:58;23927:10;23922:2;23914:6;23910:15;23903:35;23718:227;:::o;23951:223::-;24091:34;24087:1;24079:6;24075:14;24068:58;24160:6;24155:2;24147:6;24143:15;24136:31;23951:223;:::o;24180:220::-;24320:34;24316:1;24308:6;24304:14;24297:58;24389:3;24384:2;24376:6;24372:15;24365:28;24180:220;:::o;24406:224::-;24546:34;24542:1;24534:6;24530:14;24523:58;24615:7;24610:2;24602:6;24598:15;24591:32;24406:224;:::o;24636:223::-;24776:34;24772:1;24764:6;24760:14;24753:58;24845:6;24840:2;24832:6;24828:15;24821:31;24636:223;:::o;24865:170::-;25005:22;25001:1;24993:6;24989:14;24982:46;24865:170;:::o;25041:173::-;25181:25;25177:1;25169:6;25165:14;25158:49;25041:173;:::o;25220:224::-;25360:34;25356:1;25348:6;25344:14;25337:58;25429:7;25424:2;25416:6;25412:15;25405:32;25220:224;:::o;25450:167::-;25590:19;25586:1;25578:6;25574:14;25567:43;25450:167;:::o;25623:234::-;25763:34;25759:1;25751:6;25747:14;25740:58;25832:17;25827:2;25819:6;25815:15;25808:42;25623:234;:::o;25863:122::-;25936:24;25954:5;25936:24;:::i;:::-;25929:5;25926:35;25916:63;;25975:1;25972;25965:12;25916:63;25863:122;:::o;25991:::-;26064:24;26082:5;26064:24;:::i;:::-;26057:5;26054:35;26044:63;;26103:1;26100;26093:12;26044:63;25991:122;:::o;26119:120::-;26191:23;26208:5;26191:23;:::i;:::-;26184:5;26181:34;26171:62;;26229:1;26226;26219:12;26171:62;26119:120;:::o;26245:122::-;26318:24;26336:5;26318:24;:::i;:::-;26311:5;26308:35;26298:63;;26357:1;26354;26347:12;26298:63;26245:122;:::o

Swarm Source

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