ETH Price: $2,282.65 (-3.80%)

Token

RoyalEggs (ROYL)
 

Overview

Max Total Supply

2,222 ROYL

Holders

535

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 ROYL
0xb6Faa92ABE089Cf3604F98b960fb65173410789C
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:
RoyalEggs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// SPDX-License-Identifier: MIT


pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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



pragma solidity ^0.8.0;


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

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/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



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/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 granted `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}.
     * ====
     */
    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);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/RoyalEggs.sol


pragma solidity ^0.8.0;







contract RoyalEggs is ERC721Enumerable, Ownable, AccessControl {

    using Strings for uint256; 

    string baseURI;
    bytes32 public constant TEAM_ROLE = keccak256("TEAM_ROLE");
    uint256 public constant TOTAL_EGGS_SUPPLY = 8888;
    uint256 public constant max_mint_transactions = 11;
    uint256 public constant max_eggs_per_wallet = 12;
    uint256 public cost = 0.05 ether;
    uint256 public pre_mint_supply = 2000;
    uint256 public giveaway_supply = 300;

    mapping(address => bool) private _pre_sale_minters;

    bool public paused_mint = true;
    bool public paused_pre_mint = true;
    bool public revealed = false;
    string public notRevealedUri;

    // withdraw addresses
    address royaleggs_treasury;

    modifier whenMintNotPaused() {
        require(!paused_mint, "RoyalEggs: mint is paused");
        _;
    }

    modifier whenPreMintNotPaused() {
        require(!paused_pre_mint, "RoyalEggs: pre mint is paused");
        _;
    }

    modifier preMintAllowedAccount(address account) {
        require(is_pre_mint_allowed(account), "RoyalEggs: account is not allowed to pre mint");
        _;
    }

    event MintPaused(address account);

    event MintUnpaused(address account);

    event PreMintPaused(address account);

    event PreMintUnpaused(address account);

    event setPreMintRole(address account);

    event redeemedPreMint(address account);


    constructor(
        string memory _name,
        string memory _symbol,
        address _royaleggs_treasury,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    )
        ERC721(_name, _symbol)
    {   

        royaleggs_treasury = _royaleggs_treasury;
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(TEAM_ROLE, msg.sender);

        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);

    }

    fallback() external payable { }

    receive() external payable { }

    function mint(uint256 num) public payable whenMintNotPaused(){
        uint256 supply = totalSupply();
        uint256 tokenCount = balanceOf(msg.sender);
        require( num <= max_mint_transactions,                              "RoyalEggs: Max Royal Eggs per mint exceeded ! try less " );
        require( tokenCount + num <= max_eggs_per_wallet,                   "RoyalEggs: Max Royal Eggs per wallet exceeded ! WOW Many thanks <3" );
        require( supply + num <= TOTAL_EGGS_SUPPLY - giveaway_supply,       "RoyalEggs: No More Eggs :(" );
        require( msg.value >= cost * num,                                   "RoyalEggs: Not enough to cover the transaction " );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function pre_mint() public payable whenPreMintNotPaused() preMintAllowedAccount(msg.sender){
        require( pre_mint_supply > 0,         "RoyalEggs: No More Eggs for pre mint" );
        require( msg.value >= cost,            "RoyalEggs: Not enough to cover cost " );
        _pre_sale_minters[msg.sender] = false;
        pre_mint_supply -= 1;
        uint256 supply = totalSupply();
        _safeMint( msg.sender, supply);
        emit redeemedPreMint(msg.sender);
    }

    function giveAway(address _to) external onlyRole(TEAM_ROLE) {
        require(giveaway_supply > 0, "RoyalEggs: No More Free Eggs" );
        giveaway_supply -= 1;
        uint256 supply = totalSupply();
        _safeMint( _to, supply);
    }

    function setCost(uint256 _newCost) public onlyRole(TEAM_ROLE) {
        cost = _newCost;
    
    }
    
    function pauseMint() public onlyRole(TEAM_ROLE) {
        paused_mint = true;
        emit MintPaused(msg.sender);
    }

    function unpauseMint() public onlyRole(TEAM_ROLE) {
        paused_mint = false;
        emit MintUnpaused(msg.sender);
    }

    function pausePreMint() public onlyRole(TEAM_ROLE) {
        paused_pre_mint = true;
        emit PreMintPaused(msg.sender);
    }

    function unpausePreMint() public onlyRole(TEAM_ROLE) {
        paused_pre_mint = false;
        emit PreMintUnpaused(msg.sender);
    }

    function updateTreasuryWalletAddress(address _royaleggs_treasury) public onlyRole(TEAM_ROLE) {
        royaleggs_treasury = _royaleggs_treasury;
    }

    function setPreMintRoleBatch(address[] calldata _addresses) external onlyRole(TEAM_ROLE) {
        for(uint256 i; i < _addresses.length; i++){
            _pre_sale_minters[_addresses[i]] = true;
            emit setPreMintRole(_addresses[i]);
        }
    }

    function reaveal() public onlyRole(TEAM_ROLE) {
        revealed = true;
    }

    function setBaseURI(string memory _newBaseURI) public onlyRole(TEAM_ROLE) {
        baseURI = _newBaseURI;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyRole(TEAM_ROLE) {
        notRevealedUri = _notRevealedURI;
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function withdrawAllToTreasury() public onlyRole(TEAM_ROLE) {
        uint256 _balance = address(this).balance ;
        require(_balance > 0, "RoyalEggs: No Balance");
        require(payable(royaleggs_treasury).send(_balance), "RoyalEggs: FAILED to withdraw ");
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "RoyalEggs: URI query for nonexistent token");

        if (revealed == false) {
            return notRevealedUri;
        }
        
        string memory currentBaseURI = _baseURI();
        string memory json = ".json";
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), json))
            : '';
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function getTreasuryWallet() public view onlyRole(TEAM_ROLE) returns(address wallet) {
        return royaleggs_treasury;
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable, AccessControl) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function is_pre_mint_allowed(address account) public view returns (bool) {
        return _pre_sale_minters[account];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_royaleggs_treasury","type":"address"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"MintPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"MintUnpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"PreMintPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"PreMintUnpaused","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"redeemedPreMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"setPreMintRole","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_EGGS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTreasuryWallet","outputs":[{"internalType":"address","name":"wallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giveaway_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"is_pre_mint_allowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_eggs_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_mint_transactions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pausePreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused_mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused_pre_mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pre_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pre_mint_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reaveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"setPreMintRoleBatch","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpausePreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaleggs_treasury","type":"address"}],"name":"updateTreasuryWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAllToTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266b1a2bc2ec50000600d556107d0600e5561012c600f556011805462ffffff19166101011790553480156200003857600080fd5b5060405162003afc38038062003afc8339810160408190526200005b9162000619565b84518590859062000074906000906020850190620004e2565b5080516200008a906001906020840190620004e2565b505050620000a7620000a16200010b60201b60201c565b6200010f565b601380546001600160a01b0319166001600160a01b038516179055620000cf60003362000161565b620000ea60008051602062003adc8339815191523362000161565b620000f58262000171565b6200010081620001a7565b5050505050620008ab565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200016d8282620001d8565b5050565b60008051602062003adc8339815191526200018d81336200027c565b8151620001a290600c906020850190620004e2565b505050565b60008051602062003adc833981519152620001c381336200027c565b8151620001a2906012906020850190620004e2565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff166200016d576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002383390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff166200016d57620002c8816001600160a01b031660146200032260201b62001d3f1760201c565b620002de83602062001d3f62000322821b17811c565b604051602001620002f1929190620006f4565b60408051601f198184030181529082905262461bcd60e51b825262000319916004016200076d565b60405180910390fd5b6060600062000333836002620007bd565b62000340906002620007a2565b6001600160401b038111156200035a576200035a62000895565b6040519080825280601f01601f19166020018201604052801562000385576020820181803683370190505b509050600360fc1b81600081518110620003a357620003a36200087f565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620003d557620003d56200087f565b60200101906001600160f81b031916908160001a9053506000620003fb846002620007bd565b62000408906001620007a2565b90505b60018111156200048a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106200044057620004406200087f565b1a60f81b8282815181106200045957620004596200087f565b60200101906001600160f81b031916908160001a90535060049490941c93620004828162000812565b90506200040b565b508315620004db5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000319565b9392505050565b828054620004f0906200082c565b90600052602060002090601f0160209004810192826200051457600085556200055f565b82601f106200052f57805160ff19168380011785556200055f565b828001600101855582156200055f579182015b828111156200055f57825182559160200191906001019062000542565b506200056d92915062000571565b5090565b5b808211156200056d576000815560010162000572565b600082601f8301126200059a57600080fd5b81516001600160401b0380821115620005b757620005b762000895565b604051601f8301601f19908116603f01168101908282118183101715620005e257620005e262000895565b81604052838152866020858801011115620005fc57600080fd5b6200060f846020830160208901620007df565b9695505050505050565b600080600080600060a086880312156200063257600080fd5b85516001600160401b03808211156200064a57600080fd5b6200065889838a0162000588565b965060208801519150808211156200066f57600080fd5b6200067d89838a0162000588565b604089015190965091506001600160a01b03821682146200069d57600080fd5b606088015191945080821115620006b357600080fd5b620006c189838a0162000588565b93506080880151915080821115620006d857600080fd5b50620006e78882890162000588565b9150509295509295909350565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516200072e816017850160208801620007df565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162000761816028840160208801620007df565b01602801949350505050565b60208152600082518060208401526200078e816040850160208701620007df565b601f01601f19169190910160400192915050565b60008219821115620007b857620007b862000869565b500190565b6000816000190483118215151615620007da57620007da62000869565b500290565b60005b83811015620007fc578181015183820152602001620007e2565b838111156200080c576000848401525b50505050565b60008162000824576200082462000869565b506000190190565b600181811c908216806200084157607f821691505b602082108114156200086357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61322180620008bb6000396000f3fe6080604052600436106102f75760003560e01c80636556646511610196578063b88d4fde116100eb578063cd85cdb51161008f578063d813df0e1161006c578063d813df0e146108b0578063e985e9c5146108c5578063f2c4ce1e1461090e578063f2fde38b1461092e57005b8063cd85cdb514610873578063d22f79e814610888578063d547741f1461089057005b8063c6a3768a116100c8578063c6a3768a14610804578063c87b56dd14610819578063cb48d8ee14610839578063ccfe21581461085357005b8063b88d4fde146107b9578063bd595581146107d9578063bf7ffd60146107ee57005b806391d1485411610152578063a0712d681161012f578063a0712d681461075c578063a217fddf1461076f578063a22cb46514610784578063a40a65ab146107a457005b806391d148541461070757806395d89b41146107275780639e2407851461073c57005b8063655664651461065057806370a0823114610666578063715018a6146106865780637d28c5b91461069b5780638da5cb5b146106d45780638ee0927b146106f257005b80632f745c591161024c57806349d5e6041161020857806351830227116101e557806351830227146105da57806351bed37b146105fa57806355f804b3146106105780636352211e1461063057005b806349d5e604146105795780634f6ccce71461059b5780635166d586146105bb57005b80632f745c59146104ac57806336568abe146104cc57806342842e0e146104ec578063438b63001461050c57806344a0d68a14610539578063468e5c2b1461055957005b8063144ffc70116102b357806323b872dd1161029057806323b872dd14610427578063248a9ca3146104475780632c035b74146104775780632f2ff15d1461048c57005b8063144ffc70146103e857806318160ddd146103fd5780631a8bd2da1461041257005b806301ffc9a71461030057806306fdde0314610335578063081812fc14610357578063081c8c441461038f578063095ea7b3146103a457806313faede6146103c457005b366102fe57005b005b34801561030c57600080fd5b5061032061031b366004612d9a565b61094e565b60405190151581526020015b60405180910390f35b34801561034157600080fd5b5061034a61095f565b60405161032c9190612f82565b34801561036357600080fd5b50610377610372366004612d5e565b6109f1565b6040516001600160a01b03909116815260200161032c565b34801561039b57600080fd5b5061034a610a8b565b3480156103b057600080fd5b506102fe6103bf366004612cbf565b610b19565b3480156103d057600080fd5b506103da600d5481565b60405190815260200161032c565b3480156103f457600080fd5b506102fe610c2f565b34801561040957600080fd5b506008546103da565b34801561041e57600080fd5b506102fe610c5c565b34801561043357600080fd5b506102fe610442366004612bcb565b610cb6565b34801561045357600080fd5b506103da610462366004612d5e565b6000908152600b602052604090206001015490565b34801561048357600080fd5b50610377610ce7565b34801561049857600080fd5b506102fe6104a7366004612d77565b610d15565b3480156104b857600080fd5b506103da6104c7366004612cbf565b610d3b565b3480156104d857600080fd5b506102fe6104e7366004612d77565b610dd1565b3480156104f857600080fd5b506102fe610507366004612bcb565b610e4f565b34801561051857600080fd5b5061052c610527366004612b7d565b610e6a565b60405161032c9190612f3e565b34801561054557600080fd5b506102fe610554366004612d5e565b610f0c565b34801561056557600080fd5b506102fe610574366004612ce9565b610f2b565b34801561058557600080fd5b506103da6000805160206131cc83398151915281565b3480156105a757600080fd5b506103da6105b6366004612d5e565b61101f565b3480156105c757600080fd5b5060115461032090610100900460ff1681565b3480156105e657600080fd5b506011546103209062010000900460ff1681565b34801561060657600080fd5b506103da6122b881565b34801561061c57600080fd5b506102fe61062b366004612dd4565b6110b2565b34801561063c57600080fd5b5061037761064b366004612d5e565b6110de565b34801561065c57600080fd5b506103da600e5481565b34801561067257600080fd5b506103da610681366004612b7d565b611155565b34801561069257600080fd5b506102fe6111dc565b3480156106a757600080fd5b506103206106b6366004612b7d565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156106e057600080fd5b50600a546001600160a01b0316610377565b3480156106fe57600080fd5b506102fe611242565b34801561071357600080fd5b50610320610722366004612d77565b611296565b34801561073357600080fd5b5061034a6112c1565b34801561074857600080fd5b506102fe610757366004612b7d565b6112d0565b6102fe61076a366004612d5e565b611360565b34801561077b57600080fd5b506103da600081565b34801561079057600080fd5b506102fe61079f366004612c83565b6115db565b3480156107b057600080fd5b506102fe6116a0565b3480156107c557600080fd5b506102fe6107d4366004612c07565b6116f8565b3480156107e557600080fd5b506102fe61172a565b3480156107fa57600080fd5b506103da600f5481565b34801561081057600080fd5b506103da600b81565b34801561082557600080fd5b5061034a610834366004612d5e565b6117fe565b34801561084557600080fd5b506011546103209060ff1681565b34801561085f57600080fd5b506102fe61086e366004612b7d565b611994565b34801561087f57600080fd5b506102fe6119d0565b6102fe611a26565b34801561089c57600080fd5b506102fe6108ab366004612d77565b611c22565b3480156108bc57600080fd5b506103da600c81565b3480156108d157600080fd5b506103206108e0366004612b98565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561091a57600080fd5b506102fe610929366004612dd4565b611c48565b34801561093a57600080fd5b506102fe610949366004612b7d565b611c74565b600061095982611ee2565b92915050565b60606000805461096e906130dd565b80601f016020809104026020016040519081016040528092919081815260200182805461099a906130dd565b80156109e75780601f106109bc576101008083540402835291602001916109e7565b820191906000526020600020905b8154815290600101906020018083116109ca57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60128054610a98906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac4906130dd565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b505050505081565b6000610b24826110de565b9050806001600160a01b0316836001600160a01b03161415610b925760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a66565b336001600160a01b0382161480610bae5750610bae81336108e0565b610c205760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a66565b610c2a8383611f07565b505050565b6000805160206131cc833981519152610c488133611f75565b506011805462ff0000191662010000179055565b6000805160206131cc833981519152610c758133611f75565b6011805460ff191690556040513381527f4edc83796ddd13f7381b8c91ffbca02176782693577083e23486400548aaa8a1906020015b60405180910390a150565b610cc03382611fd9565b610cdc5760405162461bcd60e51b8152600401610a6690612fe7565b610c2a8383836120cc565b60006000805160206131cc833981519152610d028133611f75565b6013546001600160a01b031691505b5090565b6000828152600b6020526040902060010154610d318133611f75565b610c2a8383612277565b6000610d4683611155565b8210610da85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a66565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b0381163314610e415760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610a66565b610e4b82826122fd565b5050565b610c2a838383604051806020016040528060008152506116f8565b60606000610e7783611155565b905060008167ffffffffffffffff811115610e9457610e9461319f565b604051908082528060200260200182016040528015610ebd578160200160208202803683370190505b50905060005b82811015610f0457610ed58582610d3b565b828281518110610ee757610ee7613189565b602090810291909101015280610efc81613118565b915050610ec3565b509392505050565b6000805160206131cc833981519152610f258133611f75565b50600d55565b6000805160206131cc833981519152610f448133611f75565b60005b8281101561101957600160106000868685818110610f6757610f67613189565b9050602002016020810190610f7c9190612b7d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790557f76a4908ea0b72e737177dfabc7e452107f3d0191151537dd4526731c276f456e848483818110610fd757610fd7613189565b9050602002016020810190610fec9190612b7d565b6040516001600160a01b03909116815260200160405180910390a18061101181613118565b915050610f47565b50505050565b600061102a60085490565b821061108d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a66565b600882815481106110a0576110a0613189565b90600052602060002001549050919050565b6000805160206131cc8339815191526110cb8133611f75565b8151610c2a90600c906020850190612a5b565b6000818152600260205260408120546001600160a01b0316806109595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a66565b60006001600160a01b0382166111c05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a66565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6112406000612364565b565b6000805160206131cc83398151915261125b8133611f75565b6011805461ff00191690556040513381527f8a3f4e54d8cdf3c0e6f0646578db4ba141e67bf902991531b47e6aa4c88480b790602001610cab565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461096e906130dd565b6000805160206131cc8339815191526112e98133611f75565b6000600f541161133b5760405162461bcd60e51b815260206004820152601c60248201527f526f79616c456767733a204e6f204d6f726520467265652045676773000000006044820152606401610a66565b6001600f600082825461134e9190613083565b9091555050600854610c2a83826123b6565b60115460ff16156113b35760405162461bcd60e51b815260206004820152601960248201527f526f79616c456767733a206d696e7420697320706175736564000000000000006044820152606401610a66565b60006113be60085490565b905060006113cb33611155565b9050600b8311156114445760405162461bcd60e51b815260206004820152603760248201527f526f79616c456767733a204d617820526f79616c204567677320706572206d6960448201527f6e74206578636565646564202120747279206c657373200000000000000000006064820152608401610a66565b600c6114508483613038565b11156114cf5760405162461bcd60e51b815260206004820152604260248201527f526f79616c456767733a204d617820526f79616c20456767732070657220776160448201527f6c6c6574206578636565646564202120574f57204d616e79207468616e6b73206064820152613c3360f01b608482015260a401610a66565b600f546114de906122b8613083565b6114e88484613038565b11156115365760405162461bcd60e51b815260206004820152601a60248201527f526f79616c456767733a204e6f204d6f72652045676773203a280000000000006044820152606401610a66565b82600d546115449190613064565b3410156115ab5760405162461bcd60e51b815260206004820152602f60248201527f526f79616c456767733a204e6f7420656e6f75676820746f20636f766572207460448201526e03432903a3930b739b0b1ba34b7b71608d1b6064820152608401610a66565b60005b83811015611019576115c9336115c48386613038565b6123b6565b806115d381613118565b9150506115ae565b6001600160a01b0382163314156116345760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a66565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000805160206131cc8339815191526116b98133611f75565b6011805461ff0019166101001790556040513381527f261dbdca66ce7134b6b4a8aaab3f7e9d7e389e31a2bad248611205b4619ec7c790602001610cab565b6117023383611fd9565b61171e5760405162461bcd60e51b8152600401610a6690612fe7565b611019848484846123d0565b6000805160206131cc8339815191526117438133611f75565b47806117895760405162461bcd60e51b8152602060048201526015602482015274526f79616c456767733a204e6f2042616c616e636560581b6044820152606401610a66565b6013546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610e4b5760405162461bcd60e51b815260206004820152601e60248201527f526f79616c456767733a204641494c454420746f2077697468647261772000006044820152606401610a66565b6000818152600260205260409020546060906001600160a01b03166118785760405162461bcd60e51b815260206004820152602a60248201527f526f79616c456767733a2055524920717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a66565b60115462010000900460ff1661191a5760128054611895906130dd565b80601f01602080910402602001604051908101604052809291908181526020018280546118c1906130dd565b801561190e5780601f106118e35761010080835404028352916020019161190e565b820191906000526020600020905b8154815290600101906020018083116118f157829003601f168201915b50505050509050919050565b6000611924612403565b604080518082019091526005815264173539b7b760d91b602082015281519192509061195f576040518060200160405280600081525061198c565b8161196985612412565b8260405160200161197c93929190612e49565b6040516020818303038152906040525b949350505050565b6000805160206131cc8339815191526119ad8133611f75565b50601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206131cc8339815191526119e98133611f75565b6011805460ff191660011790556040513381527fee9b45d4bbbf616909699035be16f077b7459c8d4db74944d4e27d84f15faf3490602001610cab565b601154610100900460ff1615611a7e5760405162461bcd60e51b815260206004820152601d60248201527f526f79616c456767733a20707265206d696e74206973207061757365640000006044820152606401610a66565b3360008181526010602052604090205460ff16611af35760405162461bcd60e51b815260206004820152602d60248201527f526f79616c456767733a206163636f756e74206973206e6f7420616c6c6f776560448201526c19081d1bc81c1c99481b5a5b9d609a1b6064820152608401610a66565b6000600e5411611b515760405162461bcd60e51b8152602060048201526024808201527f526f79616c456767733a204e6f204d6f7265204567677320666f7220707265206044820152631b5a5b9d60e21b6064820152608401610a66565b600d54341015611baf5760405162461bcd60e51b8152602060048201526024808201527f526f79616c456767733a204e6f7420656e6f75676820746f20636f7665722063604482015263037b9ba160e51b6064820152608401610a66565b336000908152601060205260408120805460ff19169055600e805460019290611bd9908490613083565b9091555050600854611beb33826123b6565b6040513381527ffaedf1435ba1285ffa084b8b584a15eeb8199ee8d75ef5ed5538ebcf9ceebc639060200160405180910390a15050565b6000828152600b6020526040902060010154611c3e8133611f75565b610c2a83836122fd565b6000805160206131cc833981519152611c618133611f75565b8151610c2a906012906020850190612a5b565b600a546001600160a01b03163314611cce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b038116611d335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a66565b611d3c81612364565b50565b60606000611d4e836002613064565b611d59906002613038565b67ffffffffffffffff811115611d7157611d7161319f565b6040519080825280601f01601f191660200182016040528015611d9b576020820181803683370190505b509050600360fc1b81600081518110611db657611db6613189565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611de557611de5613189565b60200101906001600160f81b031916908160001a9053506000611e09846002613064565b611e14906001613038565b90505b6001811115611e8c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611e4857611e48613189565b1a60f81b828281518110611e5e57611e5e613189565b60200101906001600160f81b031916908160001a90535060049490941c93611e85816130c6565b9050611e17565b508315611edb5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a66565b9392505050565b60006001600160e01b03198216637965db0b60e01b1480610959575061095982612510565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f3c826110de565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f7f8282611296565b610e4b57611f97816001600160a01b03166014611d3f565b611fa2836020611d3f565b604051602001611fb3929190612e8c565b60408051601f198184030181529082905262461bcd60e51b8252610a6691600401612f82565b6000818152600260205260408120546001600160a01b03166120525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a66565b600061205d836110de565b9050806001600160a01b0316846001600160a01b031614806120985750836001600160a01b031661208d846109f1565b6001600160a01b0316145b8061198c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff1661198c565b826001600160a01b03166120df826110de565b6001600160a01b0316146121475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a66565b6001600160a01b0382166121a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a66565b6121b4838383612535565b6121bf600082611f07565b6001600160a01b03831660009081526003602052604081208054600192906121e8908490613083565b90915550506001600160a01b0382166000908152600360205260408120805460019290612216908490613038565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6122818282611296565b610e4b576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556122b93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6123078282611296565b15610e4b576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e4b8282604051806020016040528060008152506125ed565b6123db8484846120cc565b6123e784848484612620565b6110195760405162461bcd60e51b8152600401610a6690612f95565b6060600c805461096e906130dd565b6060816124365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612460578061244a81613118565b91506124599050600a83613050565b915061243a565b60008167ffffffffffffffff81111561247b5761247b61319f565b6040519080825280601f01601f1916602001820160405280156124a5576020820181803683370190505b5090505b841561198c576124ba600183613083565b91506124c7600a86613133565b6124d2906030613038565b60f81b8183815181106124e7576124e7613189565b60200101906001600160f81b031916908160001a905350612509600a86613050565b94506124a9565b60006001600160e01b0319821663780e9d6360e01b148061095957506109598261272d565b6001600160a01b0383166125905761258b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6125b3565b816001600160a01b0316836001600160a01b0316146125b3576125b3838261277d565b6001600160a01b0382166125ca57610c2a8161281a565b826001600160a01b0316826001600160a01b031614610c2a57610c2a82826128c9565b6125f7838361290d565b6126046000848484612620565b610c2a5760405162461bcd60e51b8152600401610a6690612f95565b60006001600160a01b0384163b1561272257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612664903390899088908890600401612f01565b602060405180830381600087803b15801561267e57600080fd5b505af19250505080156126ae575060408051601f3d908101601f191682019092526126ab91810190612db7565b60015b612708573d8080156126dc576040519150601f19603f3d011682016040523d82523d6000602084013e6126e1565b606091505b5080516127005760405162461bcd60e51b8152600401610a6690612f95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061198c565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b148061275e57506001600160e01b03198216635b5e139f60e01b145b8061095957506301ffc9a760e01b6001600160e01b0319831614610959565b6000600161278a84611155565b6127949190613083565b6000838152600760205260409020549091508082146127e7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061282c90600190613083565b6000838152600960205260408120546008805493945090928490811061285457612854613189565b90600052602060002001549050806008838154811061287557612875613189565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128ad576128ad613173565b6001900381819060005260206000200160009055905550505050565b60006128d483611155565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166129635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a66565b6000818152600260205260409020546001600160a01b0316156129c85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a66565b6129d460008383612535565b6001600160a01b03821660009081526003602052604081208054600192906129fd908490613038565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a67906130dd565b90600052602060002090601f016020900481019282612a895760008555612acf565b82601f10612aa257805160ff1916838001178555612acf565b82800160010185558215612acf579182015b82811115612acf578251825591602001919060010190612ab4565b50610d119291505b80821115610d115760008155600101612ad7565b600067ffffffffffffffff80841115612b0657612b0661319f565b604051601f8501601f19908116603f01168101908282118183101715612b2e57612b2e61319f565b81604052809350858152868686011115612b4757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b7857600080fd5b919050565b600060208284031215612b8f57600080fd5b611edb82612b61565b60008060408385031215612bab57600080fd5b612bb483612b61565b9150612bc260208401612b61565b90509250929050565b600080600060608486031215612be057600080fd5b612be984612b61565b9250612bf760208501612b61565b9150604084013590509250925092565b60008060008060808587031215612c1d57600080fd5b612c2685612b61565b9350612c3460208601612b61565b925060408501359150606085013567ffffffffffffffff811115612c5757600080fd5b8501601f81018713612c6857600080fd5b612c7787823560208401612aeb565b91505092959194509250565b60008060408385031215612c9657600080fd5b612c9f83612b61565b915060208301358015158114612cb457600080fd5b809150509250929050565b60008060408385031215612cd257600080fd5b612cdb83612b61565b946020939093013593505050565b60008060208385031215612cfc57600080fd5b823567ffffffffffffffff80821115612d1457600080fd5b818501915085601f830112612d2857600080fd5b813581811115612d3757600080fd5b8660208260051b8501011115612d4c57600080fd5b60209290920196919550909350505050565b600060208284031215612d7057600080fd5b5035919050565b60008060408385031215612d8a57600080fd5b82359150612bc260208401612b61565b600060208284031215612dac57600080fd5b8135611edb816131b5565b600060208284031215612dc957600080fd5b8151611edb816131b5565b600060208284031215612de657600080fd5b813567ffffffffffffffff811115612dfd57600080fd5b8201601f81018413612e0e57600080fd5b61198c84823560208401612aeb565b60008151808452612e3581602086016020860161309a565b601f01601f19169290920160200192915050565b60008451612e5b81846020890161309a565b845190830190612e6f81836020890161309a565b8451910190612e8281836020880161309a565b0195945050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612ec481601785016020880161309a565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612ef581602884016020880161309a565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f3490830184612e1d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f7657835183529284019291840191600101612f5a565b50909695505050505050565b602081526000611edb6020830184612e1d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561304b5761304b613147565b500190565b60008261305f5761305f61315d565b500490565b600081600019048311821515161561307e5761307e613147565b500290565b60008282101561309557613095613147565b500390565b60005b838110156130b557818101518382015260200161309d565b838111156110195750506000910152565b6000816130d5576130d5613147565b506000190190565b600181811c908216806130f157607f821691505b6020821081141561311257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561312c5761312c613147565b5060010190565b6000826131425761314261315d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611d3c57600080fdfe5146a08baf902532d0ee2f909971144f12ca32651cd70cbee1117cddfb3b3b33a26469706673582212201e37498d1b55014d296c3abb824f0aaa48a9d4e9b6530df2f9fd9526b308e72e64736f6c634300080700335146a08baf902532d0ee2f909971144f12ca32651cd70cbee1117cddfb3b3b3300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000008cb50ec0c202e294afe6efc4bec0535cad578c93000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000009526f79616c4567677300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f594c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102f75760003560e01c80636556646511610196578063b88d4fde116100eb578063cd85cdb51161008f578063d813df0e1161006c578063d813df0e146108b0578063e985e9c5146108c5578063f2c4ce1e1461090e578063f2fde38b1461092e57005b8063cd85cdb514610873578063d22f79e814610888578063d547741f1461089057005b8063c6a3768a116100c8578063c6a3768a14610804578063c87b56dd14610819578063cb48d8ee14610839578063ccfe21581461085357005b8063b88d4fde146107b9578063bd595581146107d9578063bf7ffd60146107ee57005b806391d1485411610152578063a0712d681161012f578063a0712d681461075c578063a217fddf1461076f578063a22cb46514610784578063a40a65ab146107a457005b806391d148541461070757806395d89b41146107275780639e2407851461073c57005b8063655664651461065057806370a0823114610666578063715018a6146106865780637d28c5b91461069b5780638da5cb5b146106d45780638ee0927b146106f257005b80632f745c591161024c57806349d5e6041161020857806351830227116101e557806351830227146105da57806351bed37b146105fa57806355f804b3146106105780636352211e1461063057005b806349d5e604146105795780634f6ccce71461059b5780635166d586146105bb57005b80632f745c59146104ac57806336568abe146104cc57806342842e0e146104ec578063438b63001461050c57806344a0d68a14610539578063468e5c2b1461055957005b8063144ffc70116102b357806323b872dd1161029057806323b872dd14610427578063248a9ca3146104475780632c035b74146104775780632f2ff15d1461048c57005b8063144ffc70146103e857806318160ddd146103fd5780631a8bd2da1461041257005b806301ffc9a71461030057806306fdde0314610335578063081812fc14610357578063081c8c441461038f578063095ea7b3146103a457806313faede6146103c457005b366102fe57005b005b34801561030c57600080fd5b5061032061031b366004612d9a565b61094e565b60405190151581526020015b60405180910390f35b34801561034157600080fd5b5061034a61095f565b60405161032c9190612f82565b34801561036357600080fd5b50610377610372366004612d5e565b6109f1565b6040516001600160a01b03909116815260200161032c565b34801561039b57600080fd5b5061034a610a8b565b3480156103b057600080fd5b506102fe6103bf366004612cbf565b610b19565b3480156103d057600080fd5b506103da600d5481565b60405190815260200161032c565b3480156103f457600080fd5b506102fe610c2f565b34801561040957600080fd5b506008546103da565b34801561041e57600080fd5b506102fe610c5c565b34801561043357600080fd5b506102fe610442366004612bcb565b610cb6565b34801561045357600080fd5b506103da610462366004612d5e565b6000908152600b602052604090206001015490565b34801561048357600080fd5b50610377610ce7565b34801561049857600080fd5b506102fe6104a7366004612d77565b610d15565b3480156104b857600080fd5b506103da6104c7366004612cbf565b610d3b565b3480156104d857600080fd5b506102fe6104e7366004612d77565b610dd1565b3480156104f857600080fd5b506102fe610507366004612bcb565b610e4f565b34801561051857600080fd5b5061052c610527366004612b7d565b610e6a565b60405161032c9190612f3e565b34801561054557600080fd5b506102fe610554366004612d5e565b610f0c565b34801561056557600080fd5b506102fe610574366004612ce9565b610f2b565b34801561058557600080fd5b506103da6000805160206131cc83398151915281565b3480156105a757600080fd5b506103da6105b6366004612d5e565b61101f565b3480156105c757600080fd5b5060115461032090610100900460ff1681565b3480156105e657600080fd5b506011546103209062010000900460ff1681565b34801561060657600080fd5b506103da6122b881565b34801561061c57600080fd5b506102fe61062b366004612dd4565b6110b2565b34801561063c57600080fd5b5061037761064b366004612d5e565b6110de565b34801561065c57600080fd5b506103da600e5481565b34801561067257600080fd5b506103da610681366004612b7d565b611155565b34801561069257600080fd5b506102fe6111dc565b3480156106a757600080fd5b506103206106b6366004612b7d565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156106e057600080fd5b50600a546001600160a01b0316610377565b3480156106fe57600080fd5b506102fe611242565b34801561071357600080fd5b50610320610722366004612d77565b611296565b34801561073357600080fd5b5061034a6112c1565b34801561074857600080fd5b506102fe610757366004612b7d565b6112d0565b6102fe61076a366004612d5e565b611360565b34801561077b57600080fd5b506103da600081565b34801561079057600080fd5b506102fe61079f366004612c83565b6115db565b3480156107b057600080fd5b506102fe6116a0565b3480156107c557600080fd5b506102fe6107d4366004612c07565b6116f8565b3480156107e557600080fd5b506102fe61172a565b3480156107fa57600080fd5b506103da600f5481565b34801561081057600080fd5b506103da600b81565b34801561082557600080fd5b5061034a610834366004612d5e565b6117fe565b34801561084557600080fd5b506011546103209060ff1681565b34801561085f57600080fd5b506102fe61086e366004612b7d565b611994565b34801561087f57600080fd5b506102fe6119d0565b6102fe611a26565b34801561089c57600080fd5b506102fe6108ab366004612d77565b611c22565b3480156108bc57600080fd5b506103da600c81565b3480156108d157600080fd5b506103206108e0366004612b98565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561091a57600080fd5b506102fe610929366004612dd4565b611c48565b34801561093a57600080fd5b506102fe610949366004612b7d565b611c74565b600061095982611ee2565b92915050565b60606000805461096e906130dd565b80601f016020809104026020016040519081016040528092919081815260200182805461099a906130dd565b80156109e75780601f106109bc576101008083540402835291602001916109e7565b820191906000526020600020905b8154815290600101906020018083116109ca57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a6f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60128054610a98906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac4906130dd565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b505050505081565b6000610b24826110de565b9050806001600160a01b0316836001600160a01b03161415610b925760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a66565b336001600160a01b0382161480610bae5750610bae81336108e0565b610c205760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a66565b610c2a8383611f07565b505050565b6000805160206131cc833981519152610c488133611f75565b506011805462ff0000191662010000179055565b6000805160206131cc833981519152610c758133611f75565b6011805460ff191690556040513381527f4edc83796ddd13f7381b8c91ffbca02176782693577083e23486400548aaa8a1906020015b60405180910390a150565b610cc03382611fd9565b610cdc5760405162461bcd60e51b8152600401610a6690612fe7565b610c2a8383836120cc565b60006000805160206131cc833981519152610d028133611f75565b6013546001600160a01b031691505b5090565b6000828152600b6020526040902060010154610d318133611f75565b610c2a8383612277565b6000610d4683611155565b8210610da85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a66565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b0381163314610e415760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610a66565b610e4b82826122fd565b5050565b610c2a838383604051806020016040528060008152506116f8565b60606000610e7783611155565b905060008167ffffffffffffffff811115610e9457610e9461319f565b604051908082528060200260200182016040528015610ebd578160200160208202803683370190505b50905060005b82811015610f0457610ed58582610d3b565b828281518110610ee757610ee7613189565b602090810291909101015280610efc81613118565b915050610ec3565b509392505050565b6000805160206131cc833981519152610f258133611f75565b50600d55565b6000805160206131cc833981519152610f448133611f75565b60005b8281101561101957600160106000868685818110610f6757610f67613189565b9050602002016020810190610f7c9190612b7d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790557f76a4908ea0b72e737177dfabc7e452107f3d0191151537dd4526731c276f456e848483818110610fd757610fd7613189565b9050602002016020810190610fec9190612b7d565b6040516001600160a01b03909116815260200160405180910390a18061101181613118565b915050610f47565b50505050565b600061102a60085490565b821061108d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a66565b600882815481106110a0576110a0613189565b90600052602060002001549050919050565b6000805160206131cc8339815191526110cb8133611f75565b8151610c2a90600c906020850190612a5b565b6000818152600260205260408120546001600160a01b0316806109595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a66565b60006001600160a01b0382166111c05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a66565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6112406000612364565b565b6000805160206131cc83398151915261125b8133611f75565b6011805461ff00191690556040513381527f8a3f4e54d8cdf3c0e6f0646578db4ba141e67bf902991531b47e6aa4c88480b790602001610cab565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461096e906130dd565b6000805160206131cc8339815191526112e98133611f75565b6000600f541161133b5760405162461bcd60e51b815260206004820152601c60248201527f526f79616c456767733a204e6f204d6f726520467265652045676773000000006044820152606401610a66565b6001600f600082825461134e9190613083565b9091555050600854610c2a83826123b6565b60115460ff16156113b35760405162461bcd60e51b815260206004820152601960248201527f526f79616c456767733a206d696e7420697320706175736564000000000000006044820152606401610a66565b60006113be60085490565b905060006113cb33611155565b9050600b8311156114445760405162461bcd60e51b815260206004820152603760248201527f526f79616c456767733a204d617820526f79616c204567677320706572206d6960448201527f6e74206578636565646564202120747279206c657373200000000000000000006064820152608401610a66565b600c6114508483613038565b11156114cf5760405162461bcd60e51b815260206004820152604260248201527f526f79616c456767733a204d617820526f79616c20456767732070657220776160448201527f6c6c6574206578636565646564202120574f57204d616e79207468616e6b73206064820152613c3360f01b608482015260a401610a66565b600f546114de906122b8613083565b6114e88484613038565b11156115365760405162461bcd60e51b815260206004820152601a60248201527f526f79616c456767733a204e6f204d6f72652045676773203a280000000000006044820152606401610a66565b82600d546115449190613064565b3410156115ab5760405162461bcd60e51b815260206004820152602f60248201527f526f79616c456767733a204e6f7420656e6f75676820746f20636f766572207460448201526e03432903a3930b739b0b1ba34b7b71608d1b6064820152608401610a66565b60005b83811015611019576115c9336115c48386613038565b6123b6565b806115d381613118565b9150506115ae565b6001600160a01b0382163314156116345760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a66565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000805160206131cc8339815191526116b98133611f75565b6011805461ff0019166101001790556040513381527f261dbdca66ce7134b6b4a8aaab3f7e9d7e389e31a2bad248611205b4619ec7c790602001610cab565b6117023383611fd9565b61171e5760405162461bcd60e51b8152600401610a6690612fe7565b611019848484846123d0565b6000805160206131cc8339815191526117438133611f75565b47806117895760405162461bcd60e51b8152602060048201526015602482015274526f79616c456767733a204e6f2042616c616e636560581b6044820152606401610a66565b6013546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610e4b5760405162461bcd60e51b815260206004820152601e60248201527f526f79616c456767733a204641494c454420746f2077697468647261772000006044820152606401610a66565b6000818152600260205260409020546060906001600160a01b03166118785760405162461bcd60e51b815260206004820152602a60248201527f526f79616c456767733a2055524920717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a66565b60115462010000900460ff1661191a5760128054611895906130dd565b80601f01602080910402602001604051908101604052809291908181526020018280546118c1906130dd565b801561190e5780601f106118e35761010080835404028352916020019161190e565b820191906000526020600020905b8154815290600101906020018083116118f157829003601f168201915b50505050509050919050565b6000611924612403565b604080518082019091526005815264173539b7b760d91b602082015281519192509061195f576040518060200160405280600081525061198c565b8161196985612412565b8260405160200161197c93929190612e49565b6040516020818303038152906040525b949350505050565b6000805160206131cc8339815191526119ad8133611f75565b50601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206131cc8339815191526119e98133611f75565b6011805460ff191660011790556040513381527fee9b45d4bbbf616909699035be16f077b7459c8d4db74944d4e27d84f15faf3490602001610cab565b601154610100900460ff1615611a7e5760405162461bcd60e51b815260206004820152601d60248201527f526f79616c456767733a20707265206d696e74206973207061757365640000006044820152606401610a66565b3360008181526010602052604090205460ff16611af35760405162461bcd60e51b815260206004820152602d60248201527f526f79616c456767733a206163636f756e74206973206e6f7420616c6c6f776560448201526c19081d1bc81c1c99481b5a5b9d609a1b6064820152608401610a66565b6000600e5411611b515760405162461bcd60e51b8152602060048201526024808201527f526f79616c456767733a204e6f204d6f7265204567677320666f7220707265206044820152631b5a5b9d60e21b6064820152608401610a66565b600d54341015611baf5760405162461bcd60e51b8152602060048201526024808201527f526f79616c456767733a204e6f7420656e6f75676820746f20636f7665722063604482015263037b9ba160e51b6064820152608401610a66565b336000908152601060205260408120805460ff19169055600e805460019290611bd9908490613083565b9091555050600854611beb33826123b6565b6040513381527ffaedf1435ba1285ffa084b8b584a15eeb8199ee8d75ef5ed5538ebcf9ceebc639060200160405180910390a15050565b6000828152600b6020526040902060010154611c3e8133611f75565b610c2a83836122fd565b6000805160206131cc833981519152611c618133611f75565b8151610c2a906012906020850190612a5b565b600a546001600160a01b03163314611cce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b038116611d335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a66565b611d3c81612364565b50565b60606000611d4e836002613064565b611d59906002613038565b67ffffffffffffffff811115611d7157611d7161319f565b6040519080825280601f01601f191660200182016040528015611d9b576020820181803683370190505b509050600360fc1b81600081518110611db657611db6613189565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611de557611de5613189565b60200101906001600160f81b031916908160001a9053506000611e09846002613064565b611e14906001613038565b90505b6001811115611e8c576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611e4857611e48613189565b1a60f81b828281518110611e5e57611e5e613189565b60200101906001600160f81b031916908160001a90535060049490941c93611e85816130c6565b9050611e17565b508315611edb5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a66565b9392505050565b60006001600160e01b03198216637965db0b60e01b1480610959575061095982612510565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f3c826110de565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f7f8282611296565b610e4b57611f97816001600160a01b03166014611d3f565b611fa2836020611d3f565b604051602001611fb3929190612e8c565b60408051601f198184030181529082905262461bcd60e51b8252610a6691600401612f82565b6000818152600260205260408120546001600160a01b03166120525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a66565b600061205d836110de565b9050806001600160a01b0316846001600160a01b031614806120985750836001600160a01b031661208d846109f1565b6001600160a01b0316145b8061198c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff1661198c565b826001600160a01b03166120df826110de565b6001600160a01b0316146121475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a66565b6001600160a01b0382166121a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a66565b6121b4838383612535565b6121bf600082611f07565b6001600160a01b03831660009081526003602052604081208054600192906121e8908490613083565b90915550506001600160a01b0382166000908152600360205260408120805460019290612216908490613038565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6122818282611296565b610e4b576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556122b93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6123078282611296565b15610e4b576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e4b8282604051806020016040528060008152506125ed565b6123db8484846120cc565b6123e784848484612620565b6110195760405162461bcd60e51b8152600401610a6690612f95565b6060600c805461096e906130dd565b6060816124365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612460578061244a81613118565b91506124599050600a83613050565b915061243a565b60008167ffffffffffffffff81111561247b5761247b61319f565b6040519080825280601f01601f1916602001820160405280156124a5576020820181803683370190505b5090505b841561198c576124ba600183613083565b91506124c7600a86613133565b6124d2906030613038565b60f81b8183815181106124e7576124e7613189565b60200101906001600160f81b031916908160001a905350612509600a86613050565b94506124a9565b60006001600160e01b0319821663780e9d6360e01b148061095957506109598261272d565b6001600160a01b0383166125905761258b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6125b3565b816001600160a01b0316836001600160a01b0316146125b3576125b3838261277d565b6001600160a01b0382166125ca57610c2a8161281a565b826001600160a01b0316826001600160a01b031614610c2a57610c2a82826128c9565b6125f7838361290d565b6126046000848484612620565b610c2a5760405162461bcd60e51b8152600401610a6690612f95565b60006001600160a01b0384163b1561272257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612664903390899088908890600401612f01565b602060405180830381600087803b15801561267e57600080fd5b505af19250505080156126ae575060408051601f3d908101601f191682019092526126ab91810190612db7565b60015b612708573d8080156126dc576040519150601f19603f3d011682016040523d82523d6000602084013e6126e1565b606091505b5080516127005760405162461bcd60e51b8152600401610a6690612f95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061198c565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b148061275e57506001600160e01b03198216635b5e139f60e01b145b8061095957506301ffc9a760e01b6001600160e01b0319831614610959565b6000600161278a84611155565b6127949190613083565b6000838152600760205260409020549091508082146127e7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061282c90600190613083565b6000838152600960205260408120546008805493945090928490811061285457612854613189565b90600052602060002001549050806008838154811061287557612875613189565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128ad576128ad613173565b6001900381819060005260206000200160009055905550505050565b60006128d483611155565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166129635760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a66565b6000818152600260205260409020546001600160a01b0316156129c85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a66565b6129d460008383612535565b6001600160a01b03821660009081526003602052604081208054600192906129fd908490613038565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a67906130dd565b90600052602060002090601f016020900481019282612a895760008555612acf565b82601f10612aa257805160ff1916838001178555612acf565b82800160010185558215612acf579182015b82811115612acf578251825591602001919060010190612ab4565b50610d119291505b80821115610d115760008155600101612ad7565b600067ffffffffffffffff80841115612b0657612b0661319f565b604051601f8501601f19908116603f01168101908282118183101715612b2e57612b2e61319f565b81604052809350858152868686011115612b4757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b7857600080fd5b919050565b600060208284031215612b8f57600080fd5b611edb82612b61565b60008060408385031215612bab57600080fd5b612bb483612b61565b9150612bc260208401612b61565b90509250929050565b600080600060608486031215612be057600080fd5b612be984612b61565b9250612bf760208501612b61565b9150604084013590509250925092565b60008060008060808587031215612c1d57600080fd5b612c2685612b61565b9350612c3460208601612b61565b925060408501359150606085013567ffffffffffffffff811115612c5757600080fd5b8501601f81018713612c6857600080fd5b612c7787823560208401612aeb565b91505092959194509250565b60008060408385031215612c9657600080fd5b612c9f83612b61565b915060208301358015158114612cb457600080fd5b809150509250929050565b60008060408385031215612cd257600080fd5b612cdb83612b61565b946020939093013593505050565b60008060208385031215612cfc57600080fd5b823567ffffffffffffffff80821115612d1457600080fd5b818501915085601f830112612d2857600080fd5b813581811115612d3757600080fd5b8660208260051b8501011115612d4c57600080fd5b60209290920196919550909350505050565b600060208284031215612d7057600080fd5b5035919050565b60008060408385031215612d8a57600080fd5b82359150612bc260208401612b61565b600060208284031215612dac57600080fd5b8135611edb816131b5565b600060208284031215612dc957600080fd5b8151611edb816131b5565b600060208284031215612de657600080fd5b813567ffffffffffffffff811115612dfd57600080fd5b8201601f81018413612e0e57600080fd5b61198c84823560208401612aeb565b60008151808452612e3581602086016020860161309a565b601f01601f19169290920160200192915050565b60008451612e5b81846020890161309a565b845190830190612e6f81836020890161309a565b8451910190612e8281836020880161309a565b0195945050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612ec481601785016020880161309a565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612ef581602884016020880161309a565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f3490830184612e1d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f7657835183529284019291840191600101612f5a565b50909695505050505050565b602081526000611edb6020830184612e1d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561304b5761304b613147565b500190565b60008261305f5761305f61315d565b500490565b600081600019048311821515161561307e5761307e613147565b500290565b60008282101561309557613095613147565b500390565b60005b838110156130b557818101518382015260200161309d565b838111156110195750506000910152565b6000816130d5576130d5613147565b506000190190565b600181811c908216806130f157607f821691505b6020821081141561311257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561312c5761312c613147565b5060010190565b6000826131425761314261315d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611d3c57600080fdfe5146a08baf902532d0ee2f909971144f12ca32651cd70cbee1117cddfb3b3b33a26469706673582212201e37498d1b55014d296c3abb824f0aaa48a9d4e9b6530df2f9fd9526b308e72e64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000008cb50ec0c202e294afe6efc4bec0535cad578c93000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000009526f79616c4567677300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f594c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RoyalEggs
Arg [1] : _symbol (string): ROYL
Arg [2] : _royaleggs_treasury (address): 0x8CB50Ec0C202e294Afe6Efc4BeC0535CAd578c93
Arg [3] : _initBaseURI (string):
Arg [4] : _initNotRevealedUri (string):

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000008cb50ec0c202e294afe6efc4bec0535cad578c93
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 526f79616c456767730000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 524f594c00000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62556:6755:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68997:178;;;;;;;;;;-1:-1:-1;68997:178:0;;;;;:::i;:::-;;:::i;:::-;;;8332:14:1;;8325:22;8307:41;;8295:2;8280:18;68997:178:0;;;;;;;;44223:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45782:221::-;;;;;;;;;;-1:-1:-1;45782:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6993:32:1;;;6975:51;;6963:2;6948:18;45782:221:0;6829:203:1;63216:28:0;;;;;;;;;;;;;:::i;45305:411::-;;;;;;;;;;-1:-1:-1;45305:411:0;;;;;:::i;:::-;;:::i;62916:32::-;;;;;;;;;;;;;;;;;;;8505:25:1;;;8493:2;8478:18;62916:32:0;8359:177:1;67222:80:0;;;;;;;;;;;;;:::i;56971:113::-;;;;;;;;;;-1:-1:-1;57059:10:0;:17;56971:113;;66367:128;;;;;;;;;;;;;:::i;46672:339::-;;;;;;;;;;-1:-1:-1;46672:339:0;;;;;:::i;:::-;;:::i;32210:123::-;;;;;;;;;;-1:-1:-1;32210:123:0;;;;;:::i;:::-;32276:7;32303:12;;;:6;:12;;;;;:22;;;;32210:123;68860:129;;;;;;;;;;;;;:::i;32595:147::-;;;;;;;;;;-1:-1:-1;32595:147:0;;;;;:::i;:::-;;:::i;56639:256::-;;;;;;;;;;-1:-1:-1;56639:256:0;;;;;:::i;:::-;;:::i;33643:218::-;;;;;;;;;;-1:-1:-1;33643:218:0;;;;;:::i;:::-;;:::i;47082:185::-;;;;;;;;;;-1:-1:-1;47082:185:0;;;;;:::i;:::-;;:::i;68510:342::-;;;;;;;;;;-1:-1:-1;68510:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;66122:102::-;;;;;;;;;;-1:-1:-1;66122:102:0;;;;;:::i;:::-;;:::i;66950:264::-;;;;;;;;;;-1:-1:-1;66950:264:0;;;;;:::i;:::-;;:::i;62684:58::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;62684:58:0;;57161:233;;;;;;;;;;-1:-1:-1;57161:233:0;;;;;:::i;:::-;;:::i;63140:34::-;;;;;;;;;;-1:-1:-1;63140:34:0;;;;;;;;;;;63181:28;;;;;;;;;;-1:-1:-1;63181:28:0;;;;;;;;;;;62749:48;;;;;;;;;;;;62793:4;62749:48;;67310:114;;;;;;;;;;-1:-1:-1;67310:114:0;;;;;:::i;:::-;;:::i;43917:239::-;;;;;;;;;;-1:-1:-1;43917:239:0;;;;;:::i;:::-;;:::i;62955:37::-;;;;;;;;;;;;;;;;43647:208;;;;;;;;;;-1:-1:-1;43647:208:0;;;;;:::i;:::-;;:::i;14525:94::-;;;;;;;;;;;;;:::i;69183:125::-;;;;;;;;;;-1:-1:-1;69183:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;69274:26:0;69250:4;69274:26;;;:17;:26;;;;;;;;;69183:125;13874:87;;;;;;;;;;-1:-1:-1;13947:6:0;;-1:-1:-1;;;;;13947:6:0;13874:87;;66644:138;;;;;;;;;;;;;:::i;31095:139::-;;;;;;;;;;-1:-1:-1;31095:139:0;;;;;:::i;:::-;;:::i;44392:104::-;;;;;;;;;;;;;:::i;65868:246::-;;;;;;;;;;-1:-1:-1;65868:246:0;;;;;:::i;:::-;;:::i;64579:791::-;;;;;;:::i;:::-;;:::i;30186:49::-;;;;;;;;;;-1:-1:-1;30186:49:0;30231:4;30186:49;;46075:295;;;;;;;;;;-1:-1:-1;46075:295:0;;;;;:::i;:::-;;:::i;66503:133::-;;;;;;;;;;;;;:::i;47338:328::-;;;;;;;;;;-1:-1:-1;47338:328:0;;;;;:::i;:::-;;:::i;67709:273::-;;;;;;;;;;;;;:::i;62999:36::-;;;;;;;;;;;;;;;;62804:50;;;;;;;;;;;;62852:2;62804:50;;67990:512;;;;;;;;;;-1:-1:-1;67990:512:0;;;;;:::i;:::-;;:::i;63103:30::-;;;;;;;;;;-1:-1:-1;63103:30:0;;;;;;;;66790:152;;;;;;;;;;-1:-1:-1;66790:152:0;;;;;:::i;:::-;;:::i;66236:123::-;;;;;;;;;;;;;:::i;65378:482::-;;;:::i;32987:149::-;;;;;;;;;;-1:-1:-1;32987:149:0;;;;;:::i;:::-;;:::i;62861:48::-;;;;;;;;;;;;62907:2;62861:48;;46441:164;;;;;;;;;;-1:-1:-1;46441:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;46562:25:0;;;46538:4;46562:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46441:164;67432:136;;;;;;;;;;-1:-1:-1;67432:136:0;;;;;:::i;:::-;;:::i;14774:192::-;;;;;;;;;;-1:-1:-1;14774:192:0;;;;;:::i;:::-;;:::i;68997:178::-;69107:4;69131:36;69155:11;69131:23;:36::i;:::-;69124:43;68997:178;-1:-1:-1;;68997:178:0:o;44223:100::-;44277:13;44310:5;44303:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44223:100;:::o;45782:221::-;45858:7;49265:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49265:16:0;45878:73;;;;-1:-1:-1;;;45878:73:0;;16901:2:1;45878:73:0;;;16883:21:1;16940:2;16920:18;;;16913:30;16979:34;16959:18;;;16952:62;-1:-1:-1;;;17030:18:1;;;17023:42;17082:19;;45878:73:0;;;;;;;;;-1:-1:-1;45971:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45971:24:0;;45782:221::o;63216:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45305:411::-;45386:13;45402:23;45417:7;45402:14;:23::i;:::-;45386:39;;45450:5;-1:-1:-1;;;;;45444:11:0;:2;-1:-1:-1;;;;;45444:11:0;;;45436:57;;;;-1:-1:-1;;;45436:57:0;;18851:2:1;45436:57:0;;;18833:21:1;18890:2;18870:18;;;18863:30;18929:34;18909:18;;;18902:62;-1:-1:-1;;;18980:18:1;;;18973:31;19021:19;;45436:57:0;18649:397:1;45436:57:0;12742:10;-1:-1:-1;;;;;45528:21:0;;;;:62;;-1:-1:-1;45553:37:0;45570:5;12742:10;46441:164;:::i;45553:37::-;45506:168;;;;-1:-1:-1;;;45506:168:0;;15294:2:1;45506:168:0;;;15276:21:1;15333:2;15313:18;;;15306:30;15372:34;15352:18;;;15345:62;15443:26;15423:18;;;15416:54;15487:19;;45506:168:0;15092:420:1;45506:168:0;45687:21;45696:2;45700:7;45687:8;:21::i;:::-;45375:341;45305:411;;:::o;67222:80::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;-1:-1:-1;67279:8:0::1;:15:::0;;-1:-1:-1;;67279:15:0::1;::::0;::::1;::::0;;67222:80::o;66367:128::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;66428:11:::1;:19:::0;;-1:-1:-1;;66428:19:0::1;::::0;;66463:24:::1;::::0;66476:10:::1;6975:51:1::0;;66463:24:0::1;::::0;6963:2:1;6948:18;66463:24:0::1;;;;;;;;66367:128:::0;:::o;46672:339::-;46867:41;12742:10;46900:7;46867:18;:41::i;:::-;46859:103;;;;-1:-1:-1;;;46859:103:0;;;;;;;:::i;:::-;46975:28;46985:4;46991:2;46995:7;46975:9;:28::i;68860:129::-;68929:14;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;68963:18:::1;::::0;-1:-1:-1;;;;;68963:18:0::1;::::0;-1:-1:-1;30718:1:0::1;68860:129:::0;;:::o;32595:147::-;32276:7;32303:12;;;:6;:12;;;;;:22;;;30677:30;30688:4;12742:10;30677;:30::i;:::-;32709:25:::1;32720:4;32726:7;32709:10;:25::i;56639:256::-:0;56736:7;56772:23;56789:5;56772:16;:23::i;:::-;56764:5;:31;56756:87;;;;-1:-1:-1;;;56756:87:0;;10162:2:1;56756:87:0;;;10144:21:1;10201:2;10181:18;;;10174:30;10240:34;10220:18;;;10213:62;-1:-1:-1;;;10291:18:1;;;10284:41;10342:19;;56756:87:0;9960:407:1;56756:87:0;-1:-1:-1;;;;;;56861:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;56639:256::o;33643:218::-;-1:-1:-1;;;;;33739:23:0;;12742:10;33739:23;33731:83;;;;-1:-1:-1;;;33731:83:0;;21202:2:1;33731:83:0;;;21184:21:1;21241:2;21221:18;;;21214:30;21280:34;21260:18;;;21253:62;-1:-1:-1;;;21331:18:1;;;21324:45;21386:19;;33731:83:0;21000:411:1;33731:83:0;33827:26;33839:4;33845:7;33827:11;:26::i;:::-;33643:218;;:::o;47082:185::-;47220:39;47237:4;47243:2;47247:7;47220:39;;;;;;;;;;;;:16;:39::i;68510:342::-;68569:16;68598:18;68619:17;68629:6;68619:9;:17::i;:::-;68598:38;;68649:25;68691:10;68677:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68677:25:0;;68649:53;;68717:9;68713:106;68732:10;68728:1;:14;68713:106;;;68777:30;68797:6;68805:1;68777:19;:30::i;:::-;68763:8;68772:1;68763:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;68744:3;;;;:::i;:::-;;;;68713:106;;;-1:-1:-1;68836:8:0;68510:342;-1:-1:-1;;;68510:342:0:o;66122:102::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;-1:-1:-1;66195:4:0::1;:15:::0;66122:102::o;66950:264::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;67054:9:::1;67050:157;67065:21:::0;;::::1;67050:157;;;67142:4;67107:17;:32;67125:10;;67136:1;67125:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;67107:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;67107:32:0;:39;;-1:-1:-1;;67107:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67166:29:::1;67181:10:::0;;67192:1;67181:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;67166:29;::::0;-1:-1:-1;;;;;6993:32:1;;;6975:51;;6963:2;6948:18;67166:29:0::1;;;;;;;67088:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67050:157;;;;66950:264:::0;;;:::o;57161:233::-;57236:7;57272:30;57059:10;:17;;56971:113;57272:30;57264:5;:38;57256:95;;;;-1:-1:-1;;;57256:95:0;;20434:2:1;57256:95:0;;;20416:21:1;20473:2;20453:18;;;20446:30;20512:34;20492:18;;;20485:62;-1:-1:-1;;;20563:18:1;;;20556:42;20615:19;;57256:95:0;20232:408:1;57256:95:0;57369:10;57380:5;57369:17;;;;;;;;:::i;:::-;;;;;;;;;57362:24;;57161:233;;;:::o;67310:114::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;67395:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;43917:239::-:0;43989:7;44025:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44025:16:0;44060:19;44052:73;;;;-1:-1:-1;;;44052:73:0;;16130:2:1;44052:73:0;;;16112:21:1;16169:2;16149:18;;;16142:30;16208:34;16188:18;;;16181:62;-1:-1:-1;;;16259:18:1;;;16252:39;16308:19;;44052:73:0;15928:405:1;43647:208:0;43719:7;-1:-1:-1;;;;;43747:19:0;;43739:74;;;;-1:-1:-1;;;43739:74:0;;15719:2:1;43739:74:0;;;15701:21:1;15758:2;15738:18;;;15731:30;15797:34;15777:18;;;15770:62;-1:-1:-1;;;15848:18:1;;;15841:40;15898:19;;43739:74:0;15517:406:1;43739:74:0;-1:-1:-1;;;;;;43831:16:0;;;;;:9;:16;;;;;;;43647:208::o;14525:94::-;13947:6;;-1:-1:-1;;;;;13947:6:0;12742:10;14094:23;14086:68;;;;-1:-1:-1;;;14086:68:0;;17314:2:1;14086:68:0;;;17296:21:1;;;17333:18;;;17326:30;17392:34;17372:18;;;17365:62;17444:18;;14086:68:0;17112:356:1;14086:68:0;14590:21:::1;14608:1;14590:9;:21::i;:::-;14525:94::o:0;66644:138::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;66708:15:::1;:23:::0;;-1:-1:-1;;66708:23:0::1;::::0;;66747:27:::1;::::0;66763:10:::1;6975:51:1::0;;66747:27:0::1;::::0;6963:2:1;6948:18;66747:27:0::1;6829:203:1::0;31095:139:0;31173:4;31197:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;31197:29:0;;;;;;;;;;;;;;;31095:139::o;44392:104::-;44448:13;44481:7;44474:14;;;;;:::i;65868:246::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;65965:1:::1;65947:15;;:19;65939:61;;;::::0;-1:-1:-1;;;65939:61:0;;14937:2:1;65939:61:0::1;::::0;::::1;14919:21:1::0;14976:2;14956:18;;;14949:30;15015;14995:18;;;14988:58;15063:18;;65939:61:0::1;14735:352:1::0;65939:61:0::1;66030:1;66011:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;57059:10:0;:17;66083:23:::1;66094:3;66099:6;66083:9;:23::i;64579:791::-:0;63364:11;;;;63363:12;63355:50;;;;-1:-1:-1;;;63355:50:0;;11400:2:1;63355:50:0;;;11382:21:1;11439:2;11419:18;;;11412:30;11478:27;11458:18;;;11451:55;11523:18;;63355:50:0;11198:349:1;63355:50:0;64651:14:::1;64668:13;57059:10:::0;:17;;56971:113;64668:13:::1;64651:30;;64692:18;64713:21;64723:10;64713:9;:21::i;:::-;64692:42;;62852:2;64754:3;:28;;64745:127;;;::::0;-1:-1:-1;;;64745:127:0;;12111:2:1;64745:127:0::1;::::0;::::1;12093:21:1::0;12150:2;12130:18;;;12123:30;12189:34;12169:18;;;12162:62;12260:25;12240:18;;;12233:53;12303:19;;64745:127:0::1;11909:419:1::0;64745:127:0::1;62907:2;64892:16;64905:3:::0;64892:10;:16:::1;:::i;:::-;:39;;64883:138;;;::::0;-1:-1:-1;;;64883:138:0;;9328:2:1;64883:138:0::1;::::0;::::1;9310:21:1::0;9367:2;9347:18;;;9340:30;9406:34;9386:18;;;9379:62;9477:34;9457:18;;;9450:62;-1:-1:-1;;;9528:19:1;;;9521:33;9571:19;;64883:138:0::1;9126:470:1::0;64883:138:0::1;65077:15;::::0;65057:35:::1;::::0;62793:4:::1;65057:35;:::i;:::-;65041:12;65050:3:::0;65041:6;:12:::1;:::i;:::-;:51;;65032:98;;;::::0;-1:-1:-1;;;65032:98:0;;20847:2:1;65032:98:0::1;::::0;::::1;20829:21:1::0;20886:2;20866:18;;;20859:30;20925:28;20905:18;;;20898:56;20971:18;;65032:98:0::1;20645:350:1::0;65032:98:0::1;65170:3;65163:4;;:10;;;;:::i;:::-;65150:9;:23;;65141:119;;;::::0;-1:-1:-1;;;65141:119:0;;18085:2:1;65141:119:0::1;::::0;::::1;18067:21:1::0;18124:2;18104:18;;;18097:30;18163:34;18143:18;;;18136:62;-1:-1:-1;;;18214:18:1;;;18207:45;18269:19;;65141:119:0::1;17883:411:1::0;65141:119:0::1;65277:9;65273:90;65292:3;65288:1;:7;65273:90;;;65316:35;65327:10;65339;65348:1:::0;65339:6;:10:::1;:::i;:::-;65316:9;:35::i;:::-;65297:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65273:90;;46075:295:::0;-1:-1:-1;;;;;46178:24:0;;12742:10;46178:24;;46170:62;;;;-1:-1:-1;;;46170:62:0;;14170:2:1;46170:62:0;;;14152:21:1;14209:2;14189:18;;;14182:30;14248:27;14228:18;;;14221:55;14293:18;;46170:62:0;13968:349:1;46170:62:0;12742:10;46245:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;46245:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;46245:53:0;;;;;;;;;;46314:48;;8307:41:1;;;46245:42:0;;12742:10;46314:48;;8280:18:1;46314:48:0;;;;;;;46075:295;;:::o;66503:133::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;66565:15:::1;:22:::0;;-1:-1:-1;;66565:22:0::1;;;::::0;;66603:25:::1;::::0;66617:10:::1;6975:51:1::0;;66603:25:0::1;::::0;6963:2:1;6948:18;66603:25:0::1;6829:203:1::0;47338:328:0;47513:41;12742:10;47546:7;47513:18;:41::i;:::-;47505:103;;;;-1:-1:-1;;;47505:103:0;;;;;;;:::i;:::-;47619:39;47633:4;47639:2;47643:7;47652:5;47619:13;:39::i;67709:273::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;67799:21:::1;67840:12:::0;67832:46:::1;;;::::0;-1:-1:-1;;;67832:46:0;;18501:2:1;67832:46:0::1;::::0;::::1;18483:21:1::0;18540:2;18520:18;;;18513:30;-1:-1:-1;;;18559:18:1;;;18552:51;18620:18;;67832:46:0::1;18299:345:1::0;67832:46:0::1;67905:18;::::0;67897:42:::1;::::0;-1:-1:-1;;;;;67905:18:0;;::::1;::::0;67897:42;::::1;;;::::0;67930:8;;67905:18:::1;67897:42:::0;67905:18;67897:42;67930:8;67905:18;67897:42;::::1;;;;;;67889:85;;;::::0;-1:-1:-1;;;67889:85:0;;9803:2:1;67889:85:0::1;::::0;::::1;9785:21:1::0;9842:2;9822:18;;;9815:30;9881:32;9861:18;;;9854:60;9931:18;;67889:85:0::1;9601:354:1::0;67990:512:0;49241:4;49265:16;;;:7;:16;;;;;;68063:13;;-1:-1:-1;;;;;49265:16:0;68089:71;;;;-1:-1:-1;;;68089:71:0;;12535:2:1;68089:71:0;;;12517:21:1;12574:2;12554:18;;;12547:30;12613:34;12593:18;;;12586:62;-1:-1:-1;;;12664:18:1;;;12657:40;12714:19;;68089:71:0;12333:406:1;68089:71:0;68177:8;;;;;;;68173:71;;68218:14;68211:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67990:512;;;:::o;68173:71::-;68264:28;68295:10;:8;:10::i;:::-;68316:28;;;;;;;;;;;;-1:-1:-1;;;68316:28:0;;;;68362;;68264:41;;-1:-1:-1;68316:28:0;68362:132;;;;;;;;;;;;;;;;;68434:14;68450:18;:7;:16;:18::i;:::-;68470:4;68417:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68362:132;68355:139;67990:512;-1:-1:-1;;;;67990:512:0:o;66790:152::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;-1:-1:-1;66894:18:0::1;:40:::0;;-1:-1:-1;;;;;;66894:40:0::1;-1:-1:-1::0;;;;;66894:40:0;;;::::1;::::0;;;::::1;::::0;;66790:152::o;66236:123::-;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;66295:11:::1;:18:::0;;-1:-1:-1;;66295:18:0::1;66309:4;66295:18;::::0;;66329:22:::1;::::0;66340:10:::1;6975:51:1::0;;66329:22:0::1;::::0;6963:2:1;6948:18;66329:22:0::1;6829:203:1::0;65378:482:0;63485:15;;;;;;;63484:16;63476:58;;;;-1:-1:-1;;;63476:58:0;;20076:2:1;63476:58:0;;;20058:21:1;20115:2;20095:18;;;20088:30;20154:31;20134:18;;;20127:59;20203:18;;63476:58:0;19874:353:1;63476:58:0;65458:10:::1;69250:4:::0;69274:26;;;:17;:26;;;;;;;;63621:86:::1;;;::::0;-1:-1:-1;;;63621:86:0;;12946:2:1;63621:86:0::1;::::0;::::1;12928:21:1::0;12985:2;12965:18;;;12958:30;13024:34;13004:18;;;12997:62;-1:-1:-1;;;13075:18:1;;;13068:43;13128:19;;63621:86:0::1;12744:409:1::0;63621:86:0::1;65507:1:::2;65489:15;;:19;65480:78;;;::::0;-1:-1:-1;;;65480:78:0;;13360:2:1;65480:78:0::2;::::0;::::2;13342:21:1::0;13399:2;13379:18;;;13372:30;13438:34;13418:18;;;13411:62;-1:-1:-1;;;13489:18:1;;;13482:34;13533:19;;65480:78:0::2;13158:400:1::0;65480:78:0::2;65591:4;;65578:9;:17;;65569:79;;;::::0;-1:-1:-1;;;65569:79:0;;19253:2:1;65569:79:0::2;::::0;::::2;19235:21:1::0;19292:2;19272:18;;;19265:30;19331:34;19311:18;;;19304:62;-1:-1:-1;;;19382:18:1;;;19375:34;19426:19;;65569:79:0::2;19051:400:1::0;65569:79:0::2;65677:10;65691:5;65659:29:::0;;;:17:::2;:29;::::0;;;;:37;;-1:-1:-1;;65659:37:0::2;::::0;;65707:15:::2;:20:::0;;65659:37;;65691:5;65707:20:::2;::::0;65659:37;;65707:20:::2;:::i;:::-;::::0;;;-1:-1:-1;;57059:10:0;:17;65779:30:::2;65790:10;65802:6;65779:9;:30::i;:::-;65825:27;::::0;65841:10:::2;6975:51:1::0;;65825:27:0::2;::::0;6963:2:1;6948:18;65825:27:0::2;;;;;;;65469:391;63545:1:::1;65378:482::o:0;32987:149::-;32276:7;32303:12;;;:6;:12;;;;;:22;;;30677:30;30688:4;12742:10;30677;:30::i;:::-;33102:26:::1;33114:4;33120:7;33102:11;:26::i;67432:136::-:0;-1:-1:-1;;;;;;;;;;;30677:30:0;62720:22;12742:10;30677;:30::i;:::-;67528:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;14774:192::-:0;13947:6;;-1:-1:-1;;;;;13947:6:0;12742:10;14094:23;14086:68;;;;-1:-1:-1;;;14086:68:0;;17314:2:1;14086:68:0;;;17296:21:1;;;17333:18;;;17326:30;17392:34;17372:18;;;17365:62;17444:18;;14086:68:0;17112:356:1;14086:68:0;-1:-1:-1;;;;;14863:22:0;::::1;14855:73;;;::::0;-1:-1:-1;;;14855:73:0;;10993:2:1;14855:73:0::1;::::0;::::1;10975:21:1::0;11032:2;11012:18;;;11005:30;11071:34;11051:18;;;11044:62;-1:-1:-1;;;11122:18:1;;;11115:36;11168:19;;14855:73:0::1;10791:402:1::0;14855:73:0::1;14939:19;14949:8;14939:9;:19::i;:::-;14774:192:::0;:::o;11579:451::-;11654:13;11680:19;11712:10;11716:6;11712:1;:10;:::i;:::-;:14;;11725:1;11712:14;:::i;:::-;11702:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11702:25:0;;11680:47;;-1:-1:-1;;;11738:6:0;11745:1;11738:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;11738:15:0;;;;;;;;;-1:-1:-1;;;11764:6:0;11771:1;11764:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;11764:15:0;;;;;;;;-1:-1:-1;11795:9:0;11807:10;11811:6;11807:1;:10;:::i;:::-;:14;;11820:1;11807:14;:::i;:::-;11795:26;;11790:135;11827:1;11823;:5;11790:135;;;-1:-1:-1;;;11875:5:0;11883:3;11875:11;11862:25;;;;;;;:::i;:::-;;;;11850:6;11857:1;11850:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;11850:37:0;;;;;;;;-1:-1:-1;11912:1:0;11902:11;;;;;11830:3;;;:::i;:::-;;;11790:135;;;-1:-1:-1;11943:10:0;;11935:55;;;;-1:-1:-1;;;11935:55:0;;8967:2:1;11935:55:0;;;8949:21:1;;;8986:18;;;8979:30;9045:34;9025:18;;;9018:62;9097:18;;11935:55:0;8765:356:1;11935:55:0;12015:6;11579:451;-1:-1:-1;;;11579:451:0:o;30799:204::-;30884:4;-1:-1:-1;;;;;;30908:47:0;;-1:-1:-1;;;30908:47:0;;:87;;;30959:36;30983:11;30959:23;:36::i;53158:174::-;53233:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;53233:29:0;-1:-1:-1;;;;;53233:29:0;;;;;;;;:24;;53287:23;53233:24;53287:14;:23::i;:::-;-1:-1:-1;;;;;53278:46:0;;;;;;;;;;;53158:174;;:::o;31524:497::-;31605:22;31613:4;31619:7;31605;:22::i;:::-;31600:414;;31793:41;31821:7;-1:-1:-1;;;;;31793:41:0;31831:2;31793:19;:41::i;:::-;31907:38;31935:4;31942:2;31907:19;:38::i;:::-;31698:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;31698:270:0;;;;;;;;;;-1:-1:-1;;;31644:358:0;;;;;;;:::i;49470:348::-;49563:4;49265:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49265:16:0;49580:73;;;;-1:-1:-1;;;49580:73:0;;14524:2:1;49580:73:0;;;14506:21:1;14563:2;14543:18;;;14536:30;14602:34;14582:18;;;14575:62;-1:-1:-1;;;14653:18:1;;;14646:42;14705:19;;49580:73:0;14322:408:1;49580:73:0;49664:13;49680:23;49695:7;49680:14;:23::i;:::-;49664:39;;49733:5;-1:-1:-1;;;;;49722:16:0;:7;-1:-1:-1;;;;;49722:16:0;;:51;;;;49766:7;-1:-1:-1;;;;;49742:31:0;:20;49754:7;49742:11;:20::i;:::-;-1:-1:-1;;;;;49742:31:0;;49722:51;:87;;;-1:-1:-1;;;;;;46562:25:0;;;46538:4;46562:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;49777:32;46441:164;52462:578;52621:4;-1:-1:-1;;;;;52594:31:0;:23;52609:7;52594:14;:23::i;:::-;-1:-1:-1;;;;;52594:31:0;;52586:85;;;;-1:-1:-1;;;52586:85:0;;17675:2:1;52586:85:0;;;17657:21:1;17714:2;17694:18;;;17687:30;17753:34;17733:18;;;17726:62;-1:-1:-1;;;17804:18:1;;;17797:39;17853:19;;52586:85:0;17473:405:1;52586:85:0;-1:-1:-1;;;;;52690:16:0;;52682:65;;;;-1:-1:-1;;;52682:65:0;;13765:2:1;52682:65:0;;;13747:21:1;13804:2;13784:18;;;13777:30;13843:34;13823:18;;;13816:62;-1:-1:-1;;;13894:18:1;;;13887:34;13938:19;;52682:65:0;13563:400:1;52682:65:0;52760:39;52781:4;52787:2;52791:7;52760:20;:39::i;:::-;52864:29;52881:1;52885:7;52864:8;:29::i;:::-;-1:-1:-1;;;;;52906:15:0;;;;;;:9;:15;;;;;:20;;52925:1;;52906:15;:20;;52925:1;;52906:20;:::i;:::-;;;;-1:-1:-1;;;;;;;52937:13:0;;;;;;:9;:13;;;;;:18;;52954:1;;52937:13;:18;;52954:1;;52937:18;:::i;:::-;;;;-1:-1:-1;;52966:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52966:21:0;-1:-1:-1;;;;;52966:21:0;;;;;;;;;53005:27;;52966:16;;53005:27;;;;;;;52462:578;;;:::o;34947:229::-;35022:22;35030:4;35036:7;35022;:22::i;:::-;35017:152;;35061:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;35061:29:0;;;;;;;;;:36;;-1:-1:-1;;35061:36:0;35093:4;35061:36;;;35144:12;12742:10;;12662:98;35144:12;-1:-1:-1;;;;;35117:40:0;35135:7;-1:-1:-1;;;;;35117:40:0;35129:4;35117:40;;;;;;;;;;34947:229;;:::o;35184:230::-;35259:22;35267:4;35273:7;35259;:22::i;:::-;35255:152;;;35330:5;35298:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;35298:29:0;;;;;;;;;;:37;;-1:-1:-1;;35298:37:0;;;35355:40;12742:10;;35298:12;;35355:40;;35330:5;35355:40;35184:230;;:::o;14974:173::-;15049:6;;;-1:-1:-1;;;;;15066:17:0;;;-1:-1:-1;;;;;;15066:17:0;;;;;;;15099:40;;15049:6;;;15066:17;15049:6;;15099:40;;15030:16;;15099:40;15019:128;14974:173;:::o;50160:110::-;50236:26;50246:2;50250:7;50236:26;;;;;;;;;;;;:9;:26::i;48548:315::-;48705:28;48715:4;48721:2;48725:7;48705:9;:28::i;:::-;48752:48;48775:4;48781:2;48785:7;48794:5;48752:22;:48::i;:::-;48744:111;;;;-1:-1:-1;;;48744:111:0;;;;;;;:::i;67593:108::-;67653:13;67686:7;67679:14;;;;;:::i;10278:723::-;10334:13;10555:10;10551:53;;-1:-1:-1;;10582:10:0;;;;;;;;;;;;-1:-1:-1;;;10582:10:0;;;;;10278:723::o;10551:53::-;10629:5;10614:12;10670:78;10677:9;;10670:78;;10703:8;;;;:::i;:::-;;-1:-1:-1;10726:10:0;;-1:-1:-1;10734:2:0;10726:10;;:::i;:::-;;;10670:78;;;10758:19;10790:6;10780:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10780:17:0;;10758:39;;10808:154;10815:10;;10808:154;;10842:11;10852:1;10842:11;;:::i;:::-;;-1:-1:-1;10911:10:0;10919:2;10911:5;:10;:::i;:::-;10898:24;;:2;:24;:::i;:::-;10885:39;;10868:6;10875;10868:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10868:56:0;;;;;;;;-1:-1:-1;10939:11:0;10948:2;10939:11;;:::i;:::-;;;10808:154;;56331:224;56433:4;-1:-1:-1;;;;;;56457:50:0;;-1:-1:-1;;;56457:50:0;;:90;;;56511:36;56535:11;56511:23;:36::i;58007:589::-;-1:-1:-1;;;;;58213:18:0;;58209:187;;58248:40;58280:7;59423:10;:17;;59396:24;;;;:15;:24;;;;;:44;;;59451:24;;;;;;;;;;;;59319:164;58248:40;58209:187;;;58318:2;-1:-1:-1;;;;;58310:10:0;:4;-1:-1:-1;;;;;58310:10:0;;58306:90;;58337:47;58370:4;58376:7;58337:32;:47::i;:::-;-1:-1:-1;;;;;58410:16:0;;58406:183;;58443:45;58480:7;58443:36;:45::i;58406:183::-;58516:4;-1:-1:-1;;;;;58510:10:0;:2;-1:-1:-1;;;;;58510:10:0;;58506:83;;58537:40;58565:2;58569:7;58537:27;:40::i;50497:321::-;50627:18;50633:2;50637:7;50627:5;:18::i;:::-;50678:54;50709:1;50713:2;50717:7;50726:5;50678:22;:54::i;:::-;50656:154;;;;-1:-1:-1;;;50656:154:0;;;;;;;:::i;53897:799::-;54052:4;-1:-1:-1;;;;;54073:13:0;;18503:20;18551:8;54069:620;;54109:72;;-1:-1:-1;;;54109:72:0;;-1:-1:-1;;;;;54109:36:0;;;;;:72;;12742:10;;54160:4;;54166:7;;54175:5;;54109:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54109:72:0;;;;;;;;-1:-1:-1;;54109:72:0;;;;;;;;;;;;:::i;:::-;;;54105:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54351:13:0;;54347:272;;54394:60;;-1:-1:-1;;;54394:60:0;;;;;;;:::i;54347:272::-;54569:6;54563:13;54554:6;54550:2;54546:15;54539:38;54105:529;-1:-1:-1;;;;;;54232:51:0;-1:-1:-1;;;54232:51:0;;-1:-1:-1;54225:58:0;;54069:620;-1:-1:-1;54673:4:0;53897:799;;;;;;:::o;43278:305::-;43380:4;-1:-1:-1;;;;;;43417:40:0;;-1:-1:-1;;;43417:40:0;;:105;;-1:-1:-1;;;;;;;43474:48:0;;-1:-1:-1;;;43474:48:0;43417:105;:158;;;-1:-1:-1;;;;;;;;;;28229:40:0;;;43539:36;28120:157;60110:988;60376:22;60426:1;60401:22;60418:4;60401:16;:22::i;:::-;:26;;;;:::i;:::-;60438:18;60459:26;;;:17;:26;;;;;;60376:51;;-1:-1:-1;60592:28:0;;;60588:328;;-1:-1:-1;;;;;60659:18:0;;60637:19;60659:18;;;:12;:18;;;;;;;;:34;;;;;;;;;60710:30;;;;;;:44;;;60827:30;;:17;:30;;;;;:43;;;60588:328;-1:-1:-1;61012:26:0;;;;:17;:26;;;;;;;;61005:33;;;-1:-1:-1;;;;;61056:18:0;;;;;:12;:18;;;;;:34;;;;;;;61049:41;60110:988::o;61393:1079::-;61671:10;:17;61646:22;;61671:21;;61691:1;;61671:21;:::i;:::-;61703:18;61724:24;;;:15;:24;;;;;;62097:10;:26;;61646:46;;-1:-1:-1;61724:24:0;;61646:46;;62097:26;;;;;;:::i;:::-;;;;;;;;;62075:48;;62161:11;62136:10;62147;62136:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;62241:28;;;:15;:28;;;;;;;:41;;;62413:24;;;;;62406:31;62448:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;61464:1008;;;61393:1079;:::o;58897:221::-;58982:14;58999:20;59016:2;58999:16;:20::i;:::-;-1:-1:-1;;;;;59030:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;59075:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;58897:221:0:o;51154:382::-;-1:-1:-1;;;;;51234:16:0;;51226:61;;;;-1:-1:-1;;;51226:61:0;;16540:2:1;51226:61:0;;;16522:21:1;;;16559:18;;;16552:30;16618:34;16598:18;;;16591:62;16670:18;;51226:61:0;16338:356:1;51226:61:0;49241:4;49265:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49265:16:0;:30;51298:58;;;;-1:-1:-1;;;51298:58:0;;11754:2:1;51298:58:0;;;11736:21:1;11793:2;11773:18;;;11766:30;11832;11812:18;;;11805:58;11880:18;;51298:58:0;11552:352:1;51298:58:0;51369:45;51398:1;51402:2;51406:7;51369:20;:45::i;:::-;-1:-1:-1;;;;;51427:13:0;;;;;;:9;:13;;;;;:18;;51444:1;;51427:13;:18;;51444:1;;51427:18;:::i;:::-;;;;-1:-1:-1;;51456:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;51456:21:0;-1:-1:-1;;;;;51456:21:0;;;;;;;;51495:33;;51456:16;;;51495:33;;51456:16;;51495:33;51154:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:180::-;3578:6;3631:2;3619:9;3610:7;3606:23;3602:32;3599:52;;;3647:1;3644;3637:12;3599:52;-1:-1:-1;3670:23:1;;3519:180;-1:-1:-1;3519:180:1:o;3704:254::-;3772:6;3780;3833:2;3821:9;3812:7;3808:23;3804:32;3801:52;;;3849:1;3846;3839:12;3801:52;3885:9;3872:23;3862:33;;3914:38;3948:2;3937:9;3933:18;3914:38;:::i;3963:245::-;4021:6;4074:2;4062:9;4053:7;4049:23;4045:32;4042:52;;;4090:1;4087;4080:12;4042:52;4129:9;4116:23;4148:30;4172:5;4148:30;:::i;4213:249::-;4282:6;4335:2;4323:9;4314:7;4310:23;4306:32;4303:52;;;4351:1;4348;4341:12;4303:52;4383:9;4377:16;4402:30;4426:5;4402:30;:::i;4467:450::-;4536:6;4589:2;4577:9;4568:7;4564:23;4560:32;4557:52;;;4605:1;4602;4595:12;4557:52;4645:9;4632:23;4678:18;4670:6;4667:30;4664:50;;;4710:1;4707;4700:12;4664:50;4733:22;;4786:4;4778:13;;4774:27;-1:-1:-1;4764:55:1;;4815:1;4812;4805:12;4764:55;4838:73;4903:7;4898:2;4885:16;4880:2;4876;4872:11;4838:73;:::i;5107:257::-;5148:3;5186:5;5180:12;5213:6;5208:3;5201:19;5229:63;5285:6;5278:4;5273:3;5269:14;5262:4;5255:5;5251:16;5229:63;:::i;:::-;5346:2;5325:15;-1:-1:-1;;5321:29:1;5312:39;;;;5353:4;5308:50;;5107:257;-1:-1:-1;;5107:257:1:o;5369:664::-;5596:3;5634:6;5628:13;5650:53;5696:6;5691:3;5684:4;5676:6;5672:17;5650:53;:::i;:::-;5766:13;;5725:16;;;;5788:57;5766:13;5725:16;5822:4;5810:17;;5788:57;:::i;:::-;5912:13;;5867:20;;;5934:57;5912:13;5867:20;5968:4;5956:17;;5934:57;:::i;:::-;6007:20;;5369:664;-1:-1:-1;;;;;5369:664:1:o;6038:786::-;6449:25;6444:3;6437:38;6419:3;6504:6;6498:13;6520:62;6575:6;6570:2;6565:3;6561:12;6554:4;6546:6;6542:17;6520:62;:::i;:::-;-1:-1:-1;;;6641:2:1;6601:16;;;6633:11;;;6626:40;6691:13;;6713:63;6691:13;6762:2;6754:11;;6747:4;6735:17;;6713:63;:::i;:::-;6796:17;6815:2;6792:26;;6038:786;-1:-1:-1;;;;6038:786:1:o;7037:488::-;-1:-1:-1;;;;;7306:15:1;;;7288:34;;7358:15;;7353:2;7338:18;;7331:43;7405:2;7390:18;;7383:34;;;7453:3;7448:2;7433:18;;7426:31;;;7231:4;;7474:45;;7499:19;;7491:6;7474:45;:::i;:::-;7466:53;7037:488;-1:-1:-1;;;;;;7037:488:1:o;7530:632::-;7701:2;7753:21;;;7823:13;;7726:18;;;7845:22;;;7672:4;;7701:2;7924:15;;;;7898:2;7883:18;;;7672:4;7967:169;7981:6;7978:1;7975:13;7967:169;;;8042:13;;8030:26;;8111:15;;;;8076:12;;;;8003:1;7996:9;7967:169;;;-1:-1:-1;8153:3:1;;7530:632;-1:-1:-1;;;;;;7530:632:1:o;8541:219::-;8690:2;8679:9;8672:21;8653:4;8710:44;8750:2;8739:9;8735:18;8727:6;8710:44;:::i;10372:414::-;10574:2;10556:21;;;10613:2;10593:18;;;10586:30;10652:34;10647:2;10632:18;;10625:62;-1:-1:-1;;;10718:2:1;10703:18;;10696:48;10776:3;10761:19;;10372:414::o;19456:413::-;19658:2;19640:21;;;19697:2;19677:18;;;19670:30;19736:34;19731:2;19716:18;;19709:62;-1:-1:-1;;;19802:2:1;19787:18;;19780:47;19859:3;19844:19;;19456:413::o;21598:128::-;21638:3;21669:1;21665:6;21662:1;21659:13;21656:39;;;21675:18;;:::i;:::-;-1:-1:-1;21711:9:1;;21598:128::o;21731:120::-;21771:1;21797;21787:35;;21802:18;;:::i;:::-;-1:-1:-1;21836:9:1;;21731:120::o;21856:168::-;21896:7;21962:1;21958;21954:6;21950:14;21947:1;21944:21;21939:1;21932:9;21925:17;21921:45;21918:71;;;21969:18;;:::i;:::-;-1:-1:-1;22009:9:1;;21856:168::o;22029:125::-;22069:4;22097:1;22094;22091:8;22088:34;;;22102:18;;:::i;:::-;-1:-1:-1;22139:9:1;;22029:125::o;22159:258::-;22231:1;22241:113;22255:6;22252:1;22249:13;22241:113;;;22331:11;;;22325:18;22312:11;;;22305:39;22277:2;22270:10;22241:113;;;22372:6;22369:1;22366:13;22363:48;;;-1:-1:-1;;22407:1:1;22389:16;;22382:27;22159:258::o;22422:136::-;22461:3;22489:5;22479:39;;22498:18;;:::i;:::-;-1:-1:-1;;;22534:18:1;;22422:136::o;22563:380::-;22642:1;22638:12;;;;22685;;;22706:61;;22760:4;22752:6;22748:17;22738:27;;22706:61;22813:2;22805:6;22802:14;22782:18;22779:38;22776:161;;;22859:10;22854:3;22850:20;22847:1;22840:31;22894:4;22891:1;22884:15;22922:4;22919:1;22912:15;22776:161;;22563:380;;;:::o;22948:135::-;22987:3;-1:-1:-1;;23008:17:1;;23005:43;;;23028:18;;:::i;:::-;-1:-1:-1;23075:1:1;23064:13;;22948:135::o;23088:112::-;23120:1;23146;23136:35;;23151:18;;:::i;:::-;-1:-1:-1;23185:9:1;;23088:112::o;23205:127::-;23266:10;23261:3;23257:20;23254:1;23247:31;23297:4;23294:1;23287:15;23321:4;23318:1;23311:15;23337:127;23398:10;23393:3;23389:20;23386:1;23379:31;23429:4;23426:1;23419:15;23453:4;23450:1;23443:15;23469:127;23530:10;23525:3;23521:20;23518:1;23511:31;23561:4;23558:1;23551:15;23585:4;23582:1;23575:15;23601:127;23662:10;23657:3;23653:20;23650:1;23643:31;23693:4;23690:1;23683:15;23717:4;23714:1;23707:15;23733:127;23794:10;23789:3;23785:20;23782:1;23775:31;23825:4;23822:1;23815:15;23849:4;23846:1;23839:15;23865:131;-1:-1:-1;;;;;;23939:32:1;;23929:43;;23919:71;;23986:1;23983;23976:12

Swarm Source

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