ETH Price: $3,306.36 (-3.72%)
Gas: 14 Gwei

Token

Good Vibes Only DAO (GVODAO)
 

Overview

Max Total Supply

170 GVODAO

Holders

64

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
zirbma.eth
Balance
1 GVODAO
0xc825baf5a4c8c02b28ed9118dc0381a5f9ed0efc
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:
GVODAONFT

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

// SPDX-License-Identifier: MIT

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: GVODAO.sol



pragma solidity 0.8.11;



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


/**
 * @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 IAccessControl, ERC721A {
    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);
        _;
    }

    /**
     * @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 virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @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 virtual {
        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 virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

contract GVODAONFT is AccessControl{
    using SafeMath for uint256;

    uint256 public hardcap = 250;

    string public baseURI;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    constructor(address _admin) ERC721A("Good Vibes Only DAO", "GVODAO") {
        _grantRole(DEFAULT_ADMIN_ROLE, _admin);
    }

    function setHardcap(uint _hardcap) public onlyRole(DEFAULT_ADMIN_ROLE){
        hardcap = _hardcap;
    }

    function setBaseURI(string memory _uri) public onlyRole(DEFAULT_ADMIN_ROLE){
        baseURI = _uri;
    }

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

    function mintToken(address _userAddress, uint256 _quantity) public onlyRole(MINTER_ROLE){
        require(totalSupply().add(_quantity) <= hardcap, "Hardcap reached");
        _safeMint(_userAddress, _quantity);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardcap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_userAddress","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hardcap","type":"uint256"}],"name":"setHardcap","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":"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"}]

608060405260fa6009553480156200001657600080fd5b50604051620038303803806200383083398181016040528101906200003c919062000392565b6040518060400160405280601381526020017f476f6f64205669626573204f6e6c792044414f000000000000000000000000008152506040518060400160405280600681526020017f47564f44414f00000000000000000000000000000000000000000000000000008152508160029080519060200190620000c092919062000278565b508060039080519060200190620000d992919062000278565b50620000ea6200010e60201b60201c565b6000819055505050620001076000801b826200011360201b60201c565b5062000429565b600090565b6200012582826200020560201b60201c565b620002015760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001a66200027060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b8280546200028690620003f3565b90600052602060002090601f016020900481019282620002aa5760008555620002f6565b82601f10620002c557805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f5578251825591602001919060010190620002d8565b5b50905062000305919062000309565b5090565b5b80821115620003245760008160009055506001016200030a565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200035a826200032d565b9050919050565b6200036c816200034d565b81146200037857600080fd5b50565b6000815190506200038c8162000361565b92915050565b600060208284031215620003ab57620003aa62000328565b5b6000620003bb848285016200037b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040c57607f821691505b60208210811415620004235762000422620003c4565b5b50919050565b6133f780620004396000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063b071cbe611610097578063d539139311610071578063d539139314610493578063d547741f146104b1578063e28fa27d146104cd578063e985e9c5146104e95761018e565b8063b071cbe614610429578063b88d4fde14610447578063c87b56dd146104635761018e565b806370a082311461035557806379c650681461038557806391d14854146103a157806395d89b41146103d1578063a217fddf146103ef578063a22cb4651461040d5761018e565b8063248a9ca31161014b57806342842e0e1161012557806342842e0e146102cf57806355f804b3146102eb5780636352211e146103075780636c0360eb146103375761018e565b8063248a9ca3146102675780632f2ff15d1461029757806336568abe146102b35761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806318160ddd1461022d57806323b872dd1461024b575b600080fd5b6101ad60048036038101906101a8919061268d565b610519565b6040516101ba91906126d5565b60405180910390f35b6101cb610593565b6040516101d89190612789565b60405180910390f35b6101fb60048036038101906101f691906127e1565b610625565b604051610208919061284f565b60405180910390f35b61022b60048036038101906102269190612896565b6106a1565b005b610235610848565b60405161024291906128e5565b60405180910390f35b61026560048036038101906102609190612900565b61085f565b005b610281600480360381019061027c9190612989565b61086f565b60405161028e91906129c5565b60405180910390f35b6102b160048036038101906102ac91906129e0565b61088f565b005b6102cd60048036038101906102c891906129e0565b6108b0565b005b6102e960048036038101906102e49190612900565b610933565b005b61030560048036038101906103009190612b55565b610953565b005b610321600480360381019061031c91906127e1565b61097b565b60405161032e919061284f565b60405180910390f35b61033f610991565b60405161034c9190612789565b60405180910390f35b61036f600480360381019061036a9190612b9e565b610a1f565b60405161037c91906128e5565b60405180910390f35b61039f600480360381019061039a9190612896565b610aef565b005b6103bb60048036038101906103b691906129e0565b610b86565b6040516103c891906126d5565b60405180910390f35b6103d9610bf1565b6040516103e69190612789565b60405180910390f35b6103f7610c83565b60405161040491906129c5565b60405180910390f35b61042760048036038101906104229190612bf7565b610c8a565b005b610431610e02565b60405161043e91906128e5565b60405180910390f35b610461600480360381019061045c9190612cd8565b610e08565b005b61047d600480360381019061047891906127e1565b610e80565b60405161048a9190612789565b60405180910390f35b61049b610f1f565b6040516104a891906129c5565b60405180910390f35b6104cb60048036038101906104c691906129e0565b610f43565b005b6104e760048036038101906104e291906127e1565b610f64565b005b61050360048036038101906104fe9190612d5b565b610f7c565b60405161051091906126d5565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058c575061058b82611010565b5b9050919050565b6060600280546105a290612dca565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90612dca565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b6000610630826110f2565b610666576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ac8261097b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610714576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610733611140565b73ffffffffffffffffffffffffffffffffffffffff16146107965761075f8161075a611140565b610f7c565b610795576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610852611148565b6001546000540303905090565b61086a83838361114d565b505050565b600060086000838152602001908152602001600020600101549050919050565b6108988261086f565b6108a18161162d565b6108ab8383611641565b505050565b6108b8611140565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90612e6e565b60405180910390fd5b61092f8282611722565b5050565b61094e83838360405180602001604052806000815250610e08565b505050565b6000801b6109608161162d565b81600a908051906020019061097692919061253b565b505050565b600061098682611804565b600001519050919050565b600a805461099e90612dca565b80601f01602080910402602001604051908101604052809291908181526020018280546109ca90612dca565b8015610a175780601f106109ec57610100808354040283529160200191610a17565b820191906000526020600020905b8154815290600101906020018083116109fa57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a87576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610b198161162d565b600954610b3683610b28610848565b611a8f90919063ffffffff16565b1115610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90612eda565b60405180910390fd5b610b818383611aa5565b505050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610c0090612dca565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2c90612dca565b8015610c795780601f10610c4e57610100808354040283529160200191610c79565b820191906000526020600020905b815481529060010190602001808311610c5c57829003601f168201915b5050505050905090565b6000801b81565b610c92611140565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d04611140565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610db1611140565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610df691906126d5565b60405180910390a35050565b60095481565b610e1384848461114d565b610e328373ffffffffffffffffffffffffffffffffffffffff16611ac3565b15610e7a57610e4384848484611ae6565b610e79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610e8b826110f2565b610ec1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610ecb611c37565b9050600081511415610eec5760405180602001604052806000815250610f17565b80610ef684611cc9565b604051602001610f07929190612f36565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610f4c8261086f565b610f558161162d565b610f5f8383611722565b505050565b6000801b610f718161162d565b816009819055505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110db57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110eb57506110ea82611e2a565b5b9050919050565b6000816110fd611148565b1115801561110c575060005482105b8015611139575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b600090565b600061115882611804565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111c3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166111e4611140565b73ffffffffffffffffffffffffffffffffffffffff16148061121357506112128561120d611140565b610f7c565b5b806112585750611221611140565b73ffffffffffffffffffffffffffffffffffffffff1661124084610625565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611291576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156112f8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113058585856001611e94565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115bb5760005482146115ba57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116268585856001611e9a565b5050505050565b61163e81611639611140565b611ea0565b50565b61164b8282610b86565b61171e5760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116c3611140565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61172c8282610b86565b156118005760006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117a5611140565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61180c6125c1565b60008290508061181a611148565b11611a5857600054811015611a57576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a5557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611939578092505050611a8a565b5b600115611a5457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a4f578092505050611a8a565b61193a565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008183611a9d9190612f89565b905092915050565b611abf828260405180602001604052806000815250611f3d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b0c611140565b8786866040518563ffffffff1660e01b8152600401611b2e9493929190613034565b6020604051808303816000875af1925050508015611b6a57506040513d601f19601f82011682018060405250810190611b679190613095565b60015b611be4573d8060008114611b9a576040519150601f19603f3d011682016040523d82523d6000602084013e611b9f565b606091505b50600081511415611bdc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611c4690612dca565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7290612dca565b8015611cbf5780601f10611c9457610100808354040283529160200191611cbf565b820191906000526020600020905b815481529060010190602001808311611ca257829003601f168201915b5050505050905090565b60606000821415611d11576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e25565b600082905060005b60008214611d43578080611d2c906130c2565b915050600a82611d3c919061313a565b9150611d19565b60008167ffffffffffffffff811115611d5f57611d5e612a2a565b5b6040519080825280601f01601f191660200182016040528015611d915781602001600182028036833780820191505090505b5090505b60008514611e1e57600182611daa919061316b565b9150600a85611db9919061319f565b6030611dc59190612f89565b60f81b818381518110611ddb57611dda6131d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e17919061313a565b9450611d95565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b611eaa8282610b86565b611f3957611ecf8173ffffffffffffffffffffffffffffffffffffffff1660146122ff565b611edd8360001c60206122ff565b604051602001611eee929190613297565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f309190612789565b60405180910390fd5b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611faa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611fe5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ff26000858386611e94565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506121b38673ffffffffffffffffffffffffffffffffffffffff16611ac3565b15612278575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122286000878480600101955087611ae6565b61225e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106121b957826000541461227357600080fd5b6122e3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612279575b8160008190555050506122f96000858386611e9a565b50505050565b60606000600283600261231291906132d1565b61231c9190612f89565b67ffffffffffffffff81111561233557612334612a2a565b5b6040519080825280601f01601f1916602001820160405280156123675781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061239f5761239e6131d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612403576124026131d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261244391906132d1565b61244d9190612f89565b90505b60018111156124ed577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061248f5761248e6131d0565b5b1a60f81b8282815181106124a6576124a56131d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806124e69061332b565b9050612450565b5060008414612531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612528906133a1565b60405180910390fd5b8091505092915050565b82805461254790612dca565b90600052602060002090601f01602090048101928261256957600085556125b0565b82601f1061258257805160ff19168380011785556125b0565b828001600101855582156125b0579182015b828111156125af578251825591602001919060010190612594565b5b5090506125bd9190612604565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561261d576000816000905550600101612605565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61266a81612635565b811461267557600080fd5b50565b60008135905061268781612661565b92915050565b6000602082840312156126a3576126a261262b565b5b60006126b184828501612678565b91505092915050565b60008115159050919050565b6126cf816126ba565b82525050565b60006020820190506126ea60008301846126c6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561272a57808201518184015260208101905061270f565b83811115612739576000848401525b50505050565b6000601f19601f8301169050919050565b600061275b826126f0565b61276581856126fb565b935061277581856020860161270c565b61277e8161273f565b840191505092915050565b600060208201905081810360008301526127a38184612750565b905092915050565b6000819050919050565b6127be816127ab565b81146127c957600080fd5b50565b6000813590506127db816127b5565b92915050565b6000602082840312156127f7576127f661262b565b5b6000612805848285016127cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128398261280e565b9050919050565b6128498161282e565b82525050565b60006020820190506128646000830184612840565b92915050565b6128738161282e565b811461287e57600080fd5b50565b6000813590506128908161286a565b92915050565b600080604083850312156128ad576128ac61262b565b5b60006128bb85828601612881565b92505060206128cc858286016127cc565b9150509250929050565b6128df816127ab565b82525050565b60006020820190506128fa60008301846128d6565b92915050565b6000806000606084860312156129195761291861262b565b5b600061292786828701612881565b935050602061293886828701612881565b9250506040612949868287016127cc565b9150509250925092565b6000819050919050565b61296681612953565b811461297157600080fd5b50565b6000813590506129838161295d565b92915050565b60006020828403121561299f5761299e61262b565b5b60006129ad84828501612974565b91505092915050565b6129bf81612953565b82525050565b60006020820190506129da60008301846129b6565b92915050565b600080604083850312156129f7576129f661262b565b5b6000612a0585828601612974565b9250506020612a1685828601612881565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a628261273f565b810181811067ffffffffffffffff82111715612a8157612a80612a2a565b5b80604052505050565b6000612a94612621565b9050612aa08282612a59565b919050565b600067ffffffffffffffff821115612ac057612abf612a2a565b5b612ac98261273f565b9050602081019050919050565b82818337600083830152505050565b6000612af8612af384612aa5565b612a8a565b905082815260208101848484011115612b1457612b13612a25565b5b612b1f848285612ad6565b509392505050565b600082601f830112612b3c57612b3b612a20565b5b8135612b4c848260208601612ae5565b91505092915050565b600060208284031215612b6b57612b6a61262b565b5b600082013567ffffffffffffffff811115612b8957612b88612630565b5b612b9584828501612b27565b91505092915050565b600060208284031215612bb457612bb361262b565b5b6000612bc284828501612881565b91505092915050565b612bd4816126ba565b8114612bdf57600080fd5b50565b600081359050612bf181612bcb565b92915050565b60008060408385031215612c0e57612c0d61262b565b5b6000612c1c85828601612881565b9250506020612c2d85828601612be2565b9150509250929050565b600067ffffffffffffffff821115612c5257612c51612a2a565b5b612c5b8261273f565b9050602081019050919050565b6000612c7b612c7684612c37565b612a8a565b905082815260208101848484011115612c9757612c96612a25565b5b612ca2848285612ad6565b509392505050565b600082601f830112612cbf57612cbe612a20565b5b8135612ccf848260208601612c68565b91505092915050565b60008060008060808587031215612cf257612cf161262b565b5b6000612d0087828801612881565b9450506020612d1187828801612881565b9350506040612d22878288016127cc565b925050606085013567ffffffffffffffff811115612d4357612d42612630565b5b612d4f87828801612caa565b91505092959194509250565b60008060408385031215612d7257612d7161262b565b5b6000612d8085828601612881565b9250506020612d9185828601612881565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612de257607f821691505b60208210811415612df657612df5612d9b565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612e58602f836126fb565b9150612e6382612dfc565b604082019050919050565b60006020820190508181036000830152612e8781612e4b565b9050919050565b7f4861726463617020726561636865640000000000000000000000000000000000600082015250565b6000612ec4600f836126fb565b9150612ecf82612e8e565b602082019050919050565b60006020820190508181036000830152612ef381612eb7565b9050919050565b600081905092915050565b6000612f10826126f0565b612f1a8185612efa565b9350612f2a81856020860161270c565b80840191505092915050565b6000612f428285612f05565b9150612f4e8284612f05565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f94826127ab565b9150612f9f836127ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fd457612fd3612f5a565b5b828201905092915050565b600081519050919050565b600082825260208201905092915050565b600061300682612fdf565b6130108185612fea565b935061302081856020860161270c565b6130298161273f565b840191505092915050565b60006080820190506130496000830187612840565b6130566020830186612840565b61306360408301856128d6565b81810360608301526130758184612ffb565b905095945050505050565b60008151905061308f81612661565b92915050565b6000602082840312156130ab576130aa61262b565b5b60006130b984828501613080565b91505092915050565b60006130cd826127ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613100576130ff612f5a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613145826127ab565b9150613150836127ab565b9250826131605761315f61310b565b5b828204905092915050565b6000613176826127ab565b9150613181836127ab565b92508282101561319457613193612f5a565b5b828203905092915050565b60006131aa826127ab565b91506131b5836127ab565b9250826131c5576131c461310b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613235601783612efa565b9150613240826131ff565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613281601183612efa565b915061328c8261324b565b601182019050919050565b60006132a282613228565b91506132ae8285612f05565b91506132b982613274565b91506132c58284612f05565b91508190509392505050565b60006132dc826127ab565b91506132e7836127ab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133205761331f612f5a565b5b828202905092915050565b6000613336826127ab565b9150600082141561334a57613349612f5a565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061338b6020836126fb565b915061339682613355565b602082019050919050565b600060208201905081810360008301526133ba8161337e565b905091905056fea26469706673582212205d975720cc82ed858798a4a1a924383532e2c95a818ddfa7a9a3c74d969e2f0564736f6c634300080b0033000000000000000000000000dc8986d34a98801c8569c90e0baa3ff45b50f77b

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063b071cbe611610097578063d539139311610071578063d539139314610493578063d547741f146104b1578063e28fa27d146104cd578063e985e9c5146104e95761018e565b8063b071cbe614610429578063b88d4fde14610447578063c87b56dd146104635761018e565b806370a082311461035557806379c650681461038557806391d14854146103a157806395d89b41146103d1578063a217fddf146103ef578063a22cb4651461040d5761018e565b8063248a9ca31161014b57806342842e0e1161012557806342842e0e146102cf57806355f804b3146102eb5780636352211e146103075780636c0360eb146103375761018e565b8063248a9ca3146102675780632f2ff15d1461029757806336568abe146102b35761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b31461021157806318160ddd1461022d57806323b872dd1461024b575b600080fd5b6101ad60048036038101906101a8919061268d565b610519565b6040516101ba91906126d5565b60405180910390f35b6101cb610593565b6040516101d89190612789565b60405180910390f35b6101fb60048036038101906101f691906127e1565b610625565b604051610208919061284f565b60405180910390f35b61022b60048036038101906102269190612896565b6106a1565b005b610235610848565b60405161024291906128e5565b60405180910390f35b61026560048036038101906102609190612900565b61085f565b005b610281600480360381019061027c9190612989565b61086f565b60405161028e91906129c5565b60405180910390f35b6102b160048036038101906102ac91906129e0565b61088f565b005b6102cd60048036038101906102c891906129e0565b6108b0565b005b6102e960048036038101906102e49190612900565b610933565b005b61030560048036038101906103009190612b55565b610953565b005b610321600480360381019061031c91906127e1565b61097b565b60405161032e919061284f565b60405180910390f35b61033f610991565b60405161034c9190612789565b60405180910390f35b61036f600480360381019061036a9190612b9e565b610a1f565b60405161037c91906128e5565b60405180910390f35b61039f600480360381019061039a9190612896565b610aef565b005b6103bb60048036038101906103b691906129e0565b610b86565b6040516103c891906126d5565b60405180910390f35b6103d9610bf1565b6040516103e69190612789565b60405180910390f35b6103f7610c83565b60405161040491906129c5565b60405180910390f35b61042760048036038101906104229190612bf7565b610c8a565b005b610431610e02565b60405161043e91906128e5565b60405180910390f35b610461600480360381019061045c9190612cd8565b610e08565b005b61047d600480360381019061047891906127e1565b610e80565b60405161048a9190612789565b60405180910390f35b61049b610f1f565b6040516104a891906129c5565b60405180910390f35b6104cb60048036038101906104c691906129e0565b610f43565b005b6104e760048036038101906104e291906127e1565b610f64565b005b61050360048036038101906104fe9190612d5b565b610f7c565b60405161051091906126d5565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061058c575061058b82611010565b5b9050919050565b6060600280546105a290612dca565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90612dca565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b6000610630826110f2565b610666576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ac8261097b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610714576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610733611140565b73ffffffffffffffffffffffffffffffffffffffff16146107965761075f8161075a611140565b610f7c565b610795576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610852611148565b6001546000540303905090565b61086a83838361114d565b505050565b600060086000838152602001908152602001600020600101549050919050565b6108988261086f565b6108a18161162d565b6108ab8383611641565b505050565b6108b8611140565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90612e6e565b60405180910390fd5b61092f8282611722565b5050565b61094e83838360405180602001604052806000815250610e08565b505050565b6000801b6109608161162d565b81600a908051906020019061097692919061253b565b505050565b600061098682611804565b600001519050919050565b600a805461099e90612dca565b80601f01602080910402602001604051908101604052809291908181526020018280546109ca90612dca565b8015610a175780601f106109ec57610100808354040283529160200191610a17565b820191906000526020600020905b8154815290600101906020018083116109fa57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a87576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610b198161162d565b600954610b3683610b28610848565b611a8f90919063ffffffff16565b1115610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90612eda565b60405180910390fd5b610b818383611aa5565b505050565b60006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610c0090612dca565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2c90612dca565b8015610c795780601f10610c4e57610100808354040283529160200191610c79565b820191906000526020600020905b815481529060010190602001808311610c5c57829003601f168201915b5050505050905090565b6000801b81565b610c92611140565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d04611140565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610db1611140565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610df691906126d5565b60405180910390a35050565b60095481565b610e1384848461114d565b610e328373ffffffffffffffffffffffffffffffffffffffff16611ac3565b15610e7a57610e4384848484611ae6565b610e79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610e8b826110f2565b610ec1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610ecb611c37565b9050600081511415610eec5760405180602001604052806000815250610f17565b80610ef684611cc9565b604051602001610f07929190612f36565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610f4c8261086f565b610f558161162d565b610f5f8383611722565b505050565b6000801b610f718161162d565b816009819055505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806110db57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110eb57506110ea82611e2a565b5b9050919050565b6000816110fd611148565b1115801561110c575060005482105b8015611139575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b600090565b600061115882611804565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111c3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166111e4611140565b73ffffffffffffffffffffffffffffffffffffffff16148061121357506112128561120d611140565b610f7c565b5b806112585750611221611140565b73ffffffffffffffffffffffffffffffffffffffff1661124084610625565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611291576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156112f8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113058585856001611e94565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115bb5760005482146115ba57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116268585856001611e9a565b5050505050565b61163e81611639611140565b611ea0565b50565b61164b8282610b86565b61171e5760016008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116c3611140565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61172c8282610b86565b156118005760006008600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117a5611140565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61180c6125c1565b60008290508061181a611148565b11611a5857600054811015611a57576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a5557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611939578092505050611a8a565b5b600115611a5457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a4f578092505050611a8a565b61193a565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008183611a9d9190612f89565b905092915050565b611abf828260405180602001604052806000815250611f3d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b0c611140565b8786866040518563ffffffff1660e01b8152600401611b2e9493929190613034565b6020604051808303816000875af1925050508015611b6a57506040513d601f19601f82011682018060405250810190611b679190613095565b60015b611be4573d8060008114611b9a576040519150601f19603f3d011682016040523d82523d6000602084013e611b9f565b606091505b50600081511415611bdc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611c4690612dca565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7290612dca565b8015611cbf5780601f10611c9457610100808354040283529160200191611cbf565b820191906000526020600020905b815481529060010190602001808311611ca257829003601f168201915b5050505050905090565b60606000821415611d11576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e25565b600082905060005b60008214611d43578080611d2c906130c2565b915050600a82611d3c919061313a565b9150611d19565b60008167ffffffffffffffff811115611d5f57611d5e612a2a565b5b6040519080825280601f01601f191660200182016040528015611d915781602001600182028036833780820191505090505b5090505b60008514611e1e57600182611daa919061316b565b9150600a85611db9919061319f565b6030611dc59190612f89565b60f81b818381518110611ddb57611dda6131d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e17919061313a565b9450611d95565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b611eaa8282610b86565b611f3957611ecf8173ffffffffffffffffffffffffffffffffffffffff1660146122ff565b611edd8360001c60206122ff565b604051602001611eee929190613297565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f309190612789565b60405180910390fd5b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611faa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611fe5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ff26000858386611e94565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506121b38673ffffffffffffffffffffffffffffffffffffffff16611ac3565b15612278575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122286000878480600101955087611ae6565b61225e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106121b957826000541461227357600080fd5b6122e3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612279575b8160008190555050506122f96000858386611e9a565b50505050565b60606000600283600261231291906132d1565b61231c9190612f89565b67ffffffffffffffff81111561233557612334612a2a565b5b6040519080825280601f01601f1916602001820160405280156123675781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061239f5761239e6131d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612403576124026131d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261244391906132d1565b61244d9190612f89565b90505b60018111156124ed577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061248f5761248e6131d0565b5b1a60f81b8282815181106124a6576124a56131d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806124e69061332b565b9050612450565b5060008414612531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612528906133a1565b60405180910390fd5b8091505092915050565b82805461254790612dca565b90600052602060002090601f01602090048101928261256957600085556125b0565b82601f1061258257805160ff19168380011785556125b0565b828001600101855582156125b0579182015b828111156125af578251825591602001919060010190612594565b5b5090506125bd9190612604565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561261d576000816000905550600101612605565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61266a81612635565b811461267557600080fd5b50565b60008135905061268781612661565b92915050565b6000602082840312156126a3576126a261262b565b5b60006126b184828501612678565b91505092915050565b60008115159050919050565b6126cf816126ba565b82525050565b60006020820190506126ea60008301846126c6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561272a57808201518184015260208101905061270f565b83811115612739576000848401525b50505050565b6000601f19601f8301169050919050565b600061275b826126f0565b61276581856126fb565b935061277581856020860161270c565b61277e8161273f565b840191505092915050565b600060208201905081810360008301526127a38184612750565b905092915050565b6000819050919050565b6127be816127ab565b81146127c957600080fd5b50565b6000813590506127db816127b5565b92915050565b6000602082840312156127f7576127f661262b565b5b6000612805848285016127cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128398261280e565b9050919050565b6128498161282e565b82525050565b60006020820190506128646000830184612840565b92915050565b6128738161282e565b811461287e57600080fd5b50565b6000813590506128908161286a565b92915050565b600080604083850312156128ad576128ac61262b565b5b60006128bb85828601612881565b92505060206128cc858286016127cc565b9150509250929050565b6128df816127ab565b82525050565b60006020820190506128fa60008301846128d6565b92915050565b6000806000606084860312156129195761291861262b565b5b600061292786828701612881565b935050602061293886828701612881565b9250506040612949868287016127cc565b9150509250925092565b6000819050919050565b61296681612953565b811461297157600080fd5b50565b6000813590506129838161295d565b92915050565b60006020828403121561299f5761299e61262b565b5b60006129ad84828501612974565b91505092915050565b6129bf81612953565b82525050565b60006020820190506129da60008301846129b6565b92915050565b600080604083850312156129f7576129f661262b565b5b6000612a0585828601612974565b9250506020612a1685828601612881565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a628261273f565b810181811067ffffffffffffffff82111715612a8157612a80612a2a565b5b80604052505050565b6000612a94612621565b9050612aa08282612a59565b919050565b600067ffffffffffffffff821115612ac057612abf612a2a565b5b612ac98261273f565b9050602081019050919050565b82818337600083830152505050565b6000612af8612af384612aa5565b612a8a565b905082815260208101848484011115612b1457612b13612a25565b5b612b1f848285612ad6565b509392505050565b600082601f830112612b3c57612b3b612a20565b5b8135612b4c848260208601612ae5565b91505092915050565b600060208284031215612b6b57612b6a61262b565b5b600082013567ffffffffffffffff811115612b8957612b88612630565b5b612b9584828501612b27565b91505092915050565b600060208284031215612bb457612bb361262b565b5b6000612bc284828501612881565b91505092915050565b612bd4816126ba565b8114612bdf57600080fd5b50565b600081359050612bf181612bcb565b92915050565b60008060408385031215612c0e57612c0d61262b565b5b6000612c1c85828601612881565b9250506020612c2d85828601612be2565b9150509250929050565b600067ffffffffffffffff821115612c5257612c51612a2a565b5b612c5b8261273f565b9050602081019050919050565b6000612c7b612c7684612c37565b612a8a565b905082815260208101848484011115612c9757612c96612a25565b5b612ca2848285612ad6565b509392505050565b600082601f830112612cbf57612cbe612a20565b5b8135612ccf848260208601612c68565b91505092915050565b60008060008060808587031215612cf257612cf161262b565b5b6000612d0087828801612881565b9450506020612d1187828801612881565b9350506040612d22878288016127cc565b925050606085013567ffffffffffffffff811115612d4357612d42612630565b5b612d4f87828801612caa565b91505092959194509250565b60008060408385031215612d7257612d7161262b565b5b6000612d8085828601612881565b9250506020612d9185828601612881565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612de257607f821691505b60208210811415612df657612df5612d9b565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612e58602f836126fb565b9150612e6382612dfc565b604082019050919050565b60006020820190508181036000830152612e8781612e4b565b9050919050565b7f4861726463617020726561636865640000000000000000000000000000000000600082015250565b6000612ec4600f836126fb565b9150612ecf82612e8e565b602082019050919050565b60006020820190508181036000830152612ef381612eb7565b9050919050565b600081905092915050565b6000612f10826126f0565b612f1a8185612efa565b9350612f2a81856020860161270c565b80840191505092915050565b6000612f428285612f05565b9150612f4e8284612f05565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f94826127ab565b9150612f9f836127ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fd457612fd3612f5a565b5b828201905092915050565b600081519050919050565b600082825260208201905092915050565b600061300682612fdf565b6130108185612fea565b935061302081856020860161270c565b6130298161273f565b840191505092915050565b60006080820190506130496000830187612840565b6130566020830186612840565b61306360408301856128d6565b81810360608301526130758184612ffb565b905095945050505050565b60008151905061308f81612661565b92915050565b6000602082840312156130ab576130aa61262b565b5b60006130b984828501613080565b91505092915050565b60006130cd826127ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613100576130ff612f5a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613145826127ab565b9150613150836127ab565b9250826131605761315f61310b565b5b828204905092915050565b6000613176826127ab565b9150613181836127ab565b92508282101561319457613193612f5a565b5b828203905092915050565b60006131aa826127ab565b91506131b5836127ab565b9250826131c5576131c461310b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613235601783612efa565b9150613240826131ff565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613281601183612efa565b915061328c8261324b565b601182019050919050565b60006132a282613228565b91506132ae8285612f05565b91506132b982613274565b91506132c58284612f05565b91508190509392505050565b60006132dc826127ab565b91506132e7836127ab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133205761331f612f5a565b5b828202905092915050565b6000613336826127ab565b9150600082141561334a57613349612f5a565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061338b6020836126fb565b915061339682613355565b602082019050919050565b600060208201905081810360008301526133ba8161337e565b905091905056fea26469706673582212205d975720cc82ed858798a4a1a924383532e2c95a818ddfa7a9a3c74d969e2f0564736f6c634300080b0033

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

000000000000000000000000dc8986d34a98801c8569c90e0baa3ff45b50f77b

-----Decoded View---------------
Arg [0] : _admin (address): 0xDc8986d34A98801c8569c90e0BaA3Ff45b50f77b

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dc8986d34a98801c8569c90e0baa3ff45b50f77b


Deployed Bytecode Sourcemap

62496:918:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57102:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36339:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37888:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37405:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32464:312;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38753:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58938:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59331:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60379:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38994:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62960:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36147:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62610:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33593:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63192:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57398:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36508:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56503:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38164:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62573:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39250:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36683:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62640:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59723:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62845:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38522:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57102:204;57187:4;57226:32;57211:47;;;:11;:47;;;;:87;;;;57262:36;57286:11;57262:23;:36::i;:::-;57211:87;57204:94;;57102:204;;;:::o;36339:100::-;36393:13;36426:5;36419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36339:100;:::o;37888:204::-;37956:7;37981:16;37989:7;37981;:16::i;:::-;37976:64;;38006:34;;;;;;;;;;;;;;37976:64;38060:15;:24;38076:7;38060:24;;;;;;;;;;;;;;;;;;;;;38053:31;;37888:204;;;:::o;37405:417::-;37478:13;37494:24;37510:7;37494:15;:24::i;:::-;37478:40;;37539:5;37533:11;;:2;:11;;;37529:48;;;37553:24;;;;;;;;;;;;;;37529:48;37610:5;37594:21;;:12;:10;:12::i;:::-;:21;;;37590:139;;37621:37;37638:5;37645:12;:10;:12::i;:::-;37621:16;:37::i;:::-;37617:112;;37682:35;;;;;;;;;;;;;;37617:112;37590:139;37768:2;37741:15;:24;37757:7;37741:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37806:7;37802:2;37786:28;;37795:5;37786:28;;;;;;;;;;;;37467:355;37405:417;;:::o;32464:312::-;32517:7;32742:15;:13;:15::i;:::-;32727:12;;32711:13;;:28;:46;32704:53;;32464:312;:::o;38753:170::-;38887:28;38897:4;38903:2;38907:7;38887:9;:28::i;:::-;38753:170;;;:::o;58938:131::-;59012:7;59039:6;:12;59046:4;59039:12;;;;;;;;;;;:22;;;59032:29;;58938:131;;;:::o;59331:147::-;59414:18;59427:4;59414:12;:18::i;:::-;56994:16;57005:4;56994:10;:16::i;:::-;59445:25:::1;59456:4;59462:7;59445:10;:25::i;:::-;59331:147:::0;;;:::o;60379:218::-;60486:12;:10;:12::i;:::-;60475:23;;:7;:23;;;60467:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;60563:26;60575:4;60581:7;60563:11;:26::i;:::-;60379:218;;:::o;38994:185::-;39132:39;39149:4;39155:2;39159:7;39132:39;;;;;;;;;;;;:16;:39::i;:::-;38994:185;;;:::o;62960:108::-;56548:4;63016:18;;56994:16;57005:4;56994:10;:16::i;:::-;63056:4:::1;63046:7;:14;;;;;;;;;;;;:::i;:::-;;62960:108:::0;;:::o;36147:125::-;36211:7;36238:21;36251:7;36238:12;:21::i;:::-;:26;;;36231:33;;36147:125;;;:::o;62610:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33593:206::-;33657:7;33698:1;33681:19;;:5;:19;;;33677:60;;;33709:28;;;;;;;;;;;;;;33677:60;33763:12;:19;33776:5;33763:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;33755:36;;33748:43;;33593:206;;;:::o;63192:219::-;62678:24;56994:16;57005:4;56994:10;:16::i;:::-;63331:7:::1;;63299:28;63317:9;63299:13;:11;:13::i;:::-;:17;;:28;;;;:::i;:::-;:39;;63291:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;63369:34;63379:12;63393:9;63369;:34::i;:::-;63192:219:::0;;;:::o;57398:147::-;57484:4;57508:6;:12;57515:4;57508:12;;;;;;;;;;;:20;;:29;57529:7;57508:29;;;;;;;;;;;;;;;;;;;;;;;;;57501:36;;57398:147;;;;:::o;36508:104::-;36564:13;36597:7;36590:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36508:104;:::o;56503:49::-;56548:4;56503:49;;;:::o;38164:287::-;38275:12;:10;:12::i;:::-;38263:24;;:8;:24;;;38259:54;;;38296:17;;;;;;;;;;;;;;38259:54;38371:8;38326:18;:32;38345:12;:10;:12::i;:::-;38326:32;;;;;;;;;;;;;;;:42;38359:8;38326:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;38424:8;38395:48;;38410:12;:10;:12::i;:::-;38395:48;;;38434:8;38395:48;;;;;;:::i;:::-;;;;;;;;38164:287;;:::o;62573:28::-;;;;:::o;39250:370::-;39417:28;39427:4;39433:2;39437:7;39417:9;:28::i;:::-;39460:15;:2;:13;;;:15::i;:::-;39456:157;;;39481:56;39512:4;39518:2;39522:7;39531:5;39481:30;:56::i;:::-;39477:136;;39561:40;;;;;;;;;;;;;;39477:136;39456:157;39250:370;;;;:::o;36683:318::-;36756:13;36787:16;36795:7;36787;:16::i;:::-;36782:59;;36812:29;;;;;;;;;;;;;;36782:59;36854:21;36878:10;:8;:10::i;:::-;36854:34;;36931:1;36912:7;36906:21;:26;;:87;;;;;;;;;;;;;;;;;36959:7;36968:18;:7;:16;:18::i;:::-;36942:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36906:87;36899:94;;;36683:318;;;:::o;62640:62::-;62678:24;62640:62;:::o;59723:149::-;59807:18;59820:4;59807:12;:18::i;:::-;56994:16;57005:4;56994:10;:16::i;:::-;59838:26:::1;59850:4;59856:7;59838:11;:26::i;:::-;59723:149:::0;;;:::o;62845:107::-;56548:4;62896:18;;56994:16;57005:4;56994:10;:16::i;:::-;62936:8:::1;62926:7;:18;;;;62845:107:::0;;:::o;38522:164::-;38619:4;38643:18;:25;38662:5;38643:25;;;;;;;;;;;;;;;:35;38669:8;38643:35;;;;;;;;;;;;;;;;;;;;;;;;;38636:42;;38522:164;;;;:::o;33224:305::-;33326:4;33378:25;33363:40;;;:11;:40;;;;:105;;;;33435:33;33420:48;;;:11;:48;;;;33363:105;:158;;;;33485:36;33509:11;33485:23;:36::i;:::-;33363:158;33343:178;;33224:305;;;:::o;39875:174::-;39932:4;39975:7;39956:15;:13;:15::i;:::-;:26;;:53;;;;;39996:13;;39986:7;:23;39956:53;:85;;;;;40014:11;:20;40026:7;40014:20;;;;;;;;;;;:27;;;;;;;;;;;;40013:28;39956:85;39949:92;;39875:174;;;:::o;9932:98::-;9985:7;10012:10;10005:17;;9932:98;:::o;32238:92::-;32294:7;32238:92;:::o;44045:2127::-;44160:35;44198:21;44211:7;44198:12;:21::i;:::-;44160:59;;44258:4;44236:26;;:13;:18;;;:26;;;44232:67;;44271:28;;;;;;;;;;;;;;44232:67;44312:22;44354:4;44338:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;44375:36;44392:4;44398:12;:10;:12::i;:::-;44375:16;:36::i;:::-;44338:73;:126;;;;44452:12;:10;:12::i;:::-;44428:36;;:20;44440:7;44428:11;:20::i;:::-;:36;;;44338:126;44312:153;;44483:17;44478:66;;44509:35;;;;;;;;;;;;;;44478:66;44573:1;44559:16;;:2;:16;;;44555:52;;;44584:23;;;;;;;;;;;;;;44555:52;44620:43;44642:4;44648:2;44652:7;44661:1;44620:21;:43::i;:::-;44736:15;:24;44752:7;44736:24;;;;;;;;;;;;44729:31;;;;;;;;;;;45086:1;45056:12;:18;45069:4;45056:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45130:1;45102:12;:16;45115:2;45102:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45148:31;45182:11;:20;45194:7;45182:20;;;;;;;;;;;45148:54;;45233:2;45217:8;:13;;;:18;;;;;;;;;;;;;;;;;;45283:15;45250:8;:23;;;:49;;;;;;;;;;;;;;;;;;45551:19;45583:1;45573:7;:11;45551:33;;45599:31;45633:11;:24;45645:11;45633:24;;;;;;;;;;;45599:58;;45701:1;45676:27;;:8;:13;;;;;;;;;;;;:27;;;45672:384;;;45886:13;;45871:11;:28;45867:174;;45940:4;45924:8;:13;;;:20;;;;;;;;;;;;;;;;;;45993:13;:28;;;45967:8;:23;;;:54;;;;;;;;;;;;;;;;;;45867:174;45672:384;45031:1036;;;46103:7;46099:2;46084:27;;46093:4;46084:27;;;;;;;;;;;;46122:42;46143:4;46149:2;46153:7;46162:1;46122:20;:42::i;:::-;44149:2023;;44045:2127;;;:::o;57849:105::-;57916:30;57927:4;57933:12;:10;:12::i;:::-;57916:10;:30::i;:::-;57849:105;:::o;61880:238::-;61964:22;61972:4;61978:7;61964;:22::i;:::-;61959:152;;62035:4;62003:6;:12;62010:4;62003:12;;;;;;;;;;;:20;;:29;62024:7;62003:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;62086:12;:10;:12::i;:::-;62059:40;;62077:7;62059:40;;62071:4;62059:40;;;;;;;;;;61959:152;61880:238;;:::o;62250:239::-;62334:22;62342:4;62348:7;62334;:22::i;:::-;62330:152;;;62405:5;62373:6;:12;62380:4;62373:12;;;;;;;;;;;:20;;:29;62394:7;62373:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;62457:12;:10;:12::i;:::-;62430:40;;62448:7;62430:40;;62442:4;62430:40;;;;;;;;;;62330:152;62250:239;;:::o;34974:1111::-;35036:21;;:::i;:::-;35070:12;35085:7;35070:22;;35153:4;35134:15;:13;:15::i;:::-;:23;35130:888;;35170:13;;35163:4;:20;35159:859;;;35204:31;35238:11;:17;35250:4;35238:17;;;;;;;;;;;35204:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35279:9;:16;;;35274:729;;35350:1;35324:28;;:9;:14;;;:28;;;35320:101;;35388:9;35381:16;;;;;;35320:101;35723:261;35730:4;35723:261;;;35763:6;;;;;;;;35808:11;:17;35820:4;35808:17;;;;;;;;;;;35796:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35882:1;35856:28;;:9;:14;;;:28;;;35852:109;;35924:9;35917:16;;;;;;35852:109;35723:261;;;35274:729;35185:833;35159:859;35130:888;36046:31;;;;;;;;;;;;;;34974:1111;;;;:::o;2964:98::-;3022:7;3053:1;3049;:5;;;;:::i;:::-;3042:12;;2964:98;;;;:::o;40133:104::-;40202:27;40212:2;40216:8;40202:27;;;;;;;;;;;;:9;:27::i;:::-;40133:104;;:::o;11379:326::-;11439:4;11696:1;11674:7;:19;;;:23;11667:30;;11379:326;;;:::o;49465:667::-;49628:4;49665:2;49649:36;;;49686:12;:10;:12::i;:::-;49700:4;49706:7;49715:5;49649:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49645:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49900:1;49883:6;:13;:18;49879:235;;;49929:40;;;;;;;;;;;;;;49879:235;50072:6;50066:13;50057:6;50053:2;50049:15;50042:38;49645:480;49778:45;;;49768:55;;;:6;:55;;;;49761:62;;;49465:667;;;;;;:::o;63076:108::-;63136:13;63169:7;63162:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63076:108;:::o;7494:723::-;7550:13;7780:1;7771:5;:10;7767:53;;;7798:10;;;;;;;;;;;;;;;;;;;;;7767:53;7830:12;7845:5;7830:20;;7861:14;7886:78;7901:1;7893:4;:9;7886:78;;7919:8;;;;;:::i;:::-;;;;7950:2;7942:10;;;;;:::i;:::-;;;7886:78;;;7974:19;8006:6;7996:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7974:39;;8024:154;8040:1;8031:5;:10;8024:154;;8068:1;8058:11;;;;;:::i;:::-;;;8135:2;8127:5;:10;;;;:::i;:::-;8114:2;:24;;;;:::i;:::-;8101:39;;8084:6;8091;8084:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8164:2;8155:11;;;;;:::i;:::-;;;8024:154;;;8202:6;8188:21;;;;;7494:723;;;;:::o;21485:157::-;21570:4;21609:25;21594:40;;;:11;:40;;;;21587:47;;21485:157;;;:::o;50780:159::-;;;;;:::o;51598:158::-;;;;;:::o;58244:505::-;58333:22;58341:4;58347:7;58333;:22::i;:::-;58328:414;;58521:41;58549:7;58521:41;;58559:2;58521:19;:41::i;:::-;58635:38;58663:4;58655:13;;58670:2;58635:19;:38::i;:::-;58426:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58372:358;;;;;;;;;;;:::i;:::-;;;;;;;;58328:414;58244:505;;:::o;40610:1749::-;40733:20;40756:13;;40733:36;;40798:1;40784:16;;:2;:16;;;40780:48;;;40809:19;;;;;;;;;;;;;;40780:48;40855:1;40843:8;:13;40839:44;;;40865:18;;;;;;;;;;;;;;40839:44;40896:61;40926:1;40930:2;40934:12;40948:8;40896:21;:61::i;:::-;41269:8;41234:12;:16;41247:2;41234:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41333:8;41293:12;:16;41306:2;41293:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41392:2;41359:11;:25;41371:12;41359:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41459:15;41409:11;:25;41421:12;41409:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;41492:20;41515:12;41492:35;;41542:11;41571:8;41556:12;:23;41542:37;;41600:15;:2;:13;;;:15::i;:::-;41596:631;;;41636:313;41692:12;41688:2;41667:38;;41684:1;41667:38;;;;;;;;;;;;41733:69;41772:1;41776:2;41780:14;;;;;;41796:5;41733:30;:69::i;:::-;41728:174;;41838:40;;;;;;;;;;;;;;41728:174;41944:3;41929:12;:18;41636:313;;42030:12;42013:13;;:29;42009:43;;42044:8;;;42009:43;41596:631;;;42093:119;42149:14;;;;;;42145:2;42124:40;;42141:1;42124:40;;;;;;;;;;;;42207:3;42192:12;:18;42093:119;;41596:631;42257:12;42241:13;:28;;;;41209:1072;;42291:60;42320:1;42324:2;42328:12;42342:8;42291:20;:60::i;:::-;40722:1637;40610:1749;;;:::o;8795:451::-;8870:13;8896:19;8941:1;8932:6;8928:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;8918:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8896:47;;8954:15;:6;8961:1;8954:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;8980;:6;8987:1;8980:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;9011:9;9036:1;9027:6;9023:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;9011:26;;9006:135;9043:1;9039;:5;9006:135;;;9078:12;9099:3;9091:5;:11;9078:25;;;;;;;:::i;:::-;;;;;9066:6;9073:1;9066:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;9128:1;9118:11;;;;;9046:3;;;;:::i;:::-;;;9006:135;;;;9168:1;9159:5;:10;9151:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;9231:6;9217:21;;;8795:451;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:77::-;5952:7;5981:5;5970:16;;5915:77;;;:::o;5998:122::-;6071:24;6089:5;6071:24;:::i;:::-;6064:5;6061:35;6051:63;;6110:1;6107;6100:12;6051:63;5998:122;:::o;6126:139::-;6172:5;6210:6;6197:20;6188:29;;6226:33;6253:5;6226:33;:::i;:::-;6126:139;;;;:::o;6271:329::-;6330:6;6379:2;6367:9;6358:7;6354:23;6350:32;6347:119;;;6385:79;;:::i;:::-;6347:119;6505:1;6530:53;6575:7;6566:6;6555:9;6551:22;6530:53;:::i;:::-;6520:63;;6476:117;6271:329;;;;:::o;6606:118::-;6693:24;6711:5;6693:24;:::i;:::-;6688:3;6681:37;6606:118;;:::o;6730:222::-;6823:4;6861:2;6850:9;6846:18;6838:26;;6874:71;6942:1;6931:9;6927:17;6918:6;6874:71;:::i;:::-;6730:222;;;;:::o;6958:474::-;7026:6;7034;7083:2;7071:9;7062:7;7058:23;7054:32;7051:119;;;7089:79;;:::i;:::-;7051:119;7209:1;7234:53;7279:7;7270:6;7259:9;7255:22;7234:53;:::i;:::-;7224:63;;7180:117;7336:2;7362:53;7407:7;7398:6;7387:9;7383:22;7362:53;:::i;:::-;7352:63;;7307:118;6958:474;;;;;:::o;7438:117::-;7547:1;7544;7537:12;7561:117;7670:1;7667;7660:12;7684:180;7732:77;7729:1;7722:88;7829:4;7826:1;7819:15;7853:4;7850:1;7843:15;7870:281;7953:27;7975:4;7953:27;:::i;:::-;7945:6;7941:40;8083:6;8071:10;8068:22;8047:18;8035:10;8032:34;8029:62;8026:88;;;8094:18;;:::i;:::-;8026:88;8134:10;8130:2;8123:22;7913:238;7870:281;;:::o;8157:129::-;8191:6;8218:20;;:::i;:::-;8208:30;;8247:33;8275:4;8267:6;8247:33;:::i;:::-;8157:129;;;:::o;8292:308::-;8354:4;8444:18;8436:6;8433:30;8430:56;;;8466:18;;:::i;:::-;8430:56;8504:29;8526:6;8504:29;:::i;:::-;8496:37;;8588:4;8582;8578:15;8570:23;;8292:308;;;:::o;8606:154::-;8690:6;8685:3;8680;8667:30;8752:1;8743:6;8738:3;8734:16;8727:27;8606:154;;;:::o;8766:412::-;8844:5;8869:66;8885:49;8927:6;8885:49;:::i;:::-;8869:66;:::i;:::-;8860:75;;8958:6;8951:5;8944:21;8996:4;8989:5;8985:16;9034:3;9025:6;9020:3;9016:16;9013:25;9010:112;;;9041:79;;:::i;:::-;9010:112;9131:41;9165:6;9160:3;9155;9131:41;:::i;:::-;8850:328;8766:412;;;;;:::o;9198:340::-;9254:5;9303:3;9296:4;9288:6;9284:17;9280:27;9270:122;;9311:79;;:::i;:::-;9270:122;9428:6;9415:20;9453:79;9528:3;9520:6;9513:4;9505:6;9501:17;9453:79;:::i;:::-;9444:88;;9260:278;9198:340;;;;:::o;9544:509::-;9613:6;9662:2;9650:9;9641:7;9637:23;9633:32;9630:119;;;9668:79;;:::i;:::-;9630:119;9816:1;9805:9;9801:17;9788:31;9846:18;9838:6;9835:30;9832:117;;;9868:79;;:::i;:::-;9832:117;9973:63;10028:7;10019:6;10008:9;10004:22;9973:63;:::i;:::-;9963:73;;9759:287;9544:509;;;;:::o;10059:329::-;10118:6;10167:2;10155:9;10146:7;10142:23;10138:32;10135:119;;;10173:79;;:::i;:::-;10135:119;10293:1;10318:53;10363:7;10354:6;10343:9;10339:22;10318:53;:::i;:::-;10308:63;;10264:117;10059:329;;;;:::o;10394:116::-;10464:21;10479:5;10464:21;:::i;:::-;10457:5;10454:32;10444:60;;10500:1;10497;10490:12;10444:60;10394:116;:::o;10516:133::-;10559:5;10597:6;10584:20;10575:29;;10613:30;10637:5;10613:30;:::i;:::-;10516:133;;;;:::o;10655:468::-;10720:6;10728;10777:2;10765:9;10756:7;10752:23;10748:32;10745:119;;;10783:79;;:::i;:::-;10745:119;10903:1;10928:53;10973:7;10964:6;10953:9;10949:22;10928:53;:::i;:::-;10918:63;;10874:117;11030:2;11056:50;11098:7;11089:6;11078:9;11074:22;11056:50;:::i;:::-;11046:60;;11001:115;10655:468;;;;;:::o;11129:307::-;11190:4;11280:18;11272:6;11269:30;11266:56;;;11302:18;;:::i;:::-;11266:56;11340:29;11362:6;11340:29;:::i;:::-;11332:37;;11424:4;11418;11414:15;11406:23;;11129:307;;;:::o;11442:410::-;11519:5;11544:65;11560:48;11601:6;11560:48;:::i;:::-;11544:65;:::i;:::-;11535:74;;11632:6;11625:5;11618:21;11670:4;11663:5;11659:16;11708:3;11699:6;11694:3;11690:16;11687:25;11684:112;;;11715:79;;:::i;:::-;11684:112;11805:41;11839:6;11834:3;11829;11805:41;:::i;:::-;11525:327;11442:410;;;;;:::o;11871:338::-;11926:5;11975:3;11968:4;11960:6;11956:17;11952:27;11942:122;;11983:79;;:::i;:::-;11942:122;12100:6;12087:20;12125:78;12199:3;12191:6;12184:4;12176:6;12172:17;12125:78;:::i;:::-;12116:87;;11932:277;11871:338;;;;:::o;12215:943::-;12310:6;12318;12326;12334;12383:3;12371:9;12362:7;12358:23;12354:33;12351:120;;;12390:79;;:::i;:::-;12351:120;12510:1;12535:53;12580:7;12571:6;12560:9;12556:22;12535:53;:::i;:::-;12525:63;;12481:117;12637:2;12663:53;12708:7;12699:6;12688:9;12684:22;12663:53;:::i;:::-;12653:63;;12608:118;12765:2;12791:53;12836:7;12827:6;12816:9;12812:22;12791:53;:::i;:::-;12781:63;;12736:118;12921:2;12910:9;12906:18;12893:32;12952:18;12944:6;12941:30;12938:117;;;12974:79;;:::i;:::-;12938:117;13079:62;13133:7;13124:6;13113:9;13109:22;13079:62;:::i;:::-;13069:72;;12864:287;12215:943;;;;;;;:::o;13164:474::-;13232:6;13240;13289:2;13277:9;13268:7;13264:23;13260:32;13257:119;;;13295:79;;:::i;:::-;13257:119;13415:1;13440:53;13485:7;13476:6;13465:9;13461:22;13440:53;:::i;:::-;13430:63;;13386:117;13542:2;13568:53;13613:7;13604:6;13593:9;13589:22;13568:53;:::i;:::-;13558:63;;13513:118;13164:474;;;;;:::o;13644:180::-;13692:77;13689:1;13682:88;13789:4;13786:1;13779:15;13813:4;13810:1;13803:15;13830:320;13874:6;13911:1;13905:4;13901:12;13891:22;;13958:1;13952:4;13948:12;13979:18;13969:81;;14035:4;14027:6;14023:17;14013:27;;13969:81;14097:2;14089:6;14086:14;14066:18;14063:38;14060:84;;;14116:18;;:::i;:::-;14060:84;13881:269;13830:320;;;:::o;14156:234::-;14296:34;14292:1;14284:6;14280:14;14273:58;14365:17;14360:2;14352:6;14348:15;14341:42;14156:234;:::o;14396:366::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14396:366;;;:::o;14768:419::-;14934:4;14972:2;14961:9;14957:18;14949:26;;15021:9;15015:4;15011:20;15007:1;14996:9;14992:17;14985:47;15049:131;15175:4;15049:131;:::i;:::-;15041:139;;14768:419;;;:::o;15193:165::-;15333:17;15329:1;15321:6;15317:14;15310:41;15193:165;:::o;15364:366::-;15506:3;15527:67;15591:2;15586:3;15527:67;:::i;:::-;15520:74;;15603:93;15692:3;15603:93;:::i;:::-;15721:2;15716:3;15712:12;15705:19;;15364:366;;;:::o;15736:419::-;15902:4;15940:2;15929:9;15925:18;15917:26;;15989:9;15983:4;15979:20;15975:1;15964:9;15960:17;15953:47;16017:131;16143:4;16017:131;:::i;:::-;16009:139;;15736:419;;;:::o;16161:148::-;16263:11;16300:3;16285:18;;16161:148;;;;:::o;16315:377::-;16421:3;16449:39;16482:5;16449:39;:::i;:::-;16504:89;16586:6;16581:3;16504:89;:::i;:::-;16497:96;;16602:52;16647:6;16642:3;16635:4;16628:5;16624:16;16602:52;:::i;:::-;16679:6;16674:3;16670:16;16663:23;;16425:267;16315:377;;;;:::o;16698:435::-;16878:3;16900:95;16991:3;16982:6;16900:95;:::i;:::-;16893:102;;17012:95;17103:3;17094:6;17012:95;:::i;:::-;17005:102;;17124:3;17117:10;;16698:435;;;;;:::o;17139:180::-;17187:77;17184:1;17177:88;17284:4;17281:1;17274:15;17308:4;17305:1;17298:15;17325:305;17365:3;17384:20;17402:1;17384:20;:::i;:::-;17379:25;;17418:20;17436:1;17418:20;:::i;:::-;17413:25;;17572:1;17504:66;17500:74;17497:1;17494:81;17491:107;;;17578:18;;:::i;:::-;17491:107;17622:1;17619;17615:9;17608:16;;17325:305;;;;:::o;17636:98::-;17687:6;17721:5;17715:12;17705:22;;17636:98;;;:::o;17740:168::-;17823:11;17857:6;17852:3;17845:19;17897:4;17892:3;17888:14;17873:29;;17740:168;;;;:::o;17914:360::-;18000:3;18028:38;18060:5;18028:38;:::i;:::-;18082:70;18145:6;18140:3;18082:70;:::i;:::-;18075:77;;18161:52;18206:6;18201:3;18194:4;18187:5;18183:16;18161:52;:::i;:::-;18238:29;18260:6;18238:29;:::i;:::-;18233:3;18229:39;18222:46;;18004:270;17914:360;;;;:::o;18280:640::-;18475:4;18513:3;18502:9;18498:19;18490:27;;18527:71;18595:1;18584:9;18580:17;18571:6;18527:71;:::i;:::-;18608:72;18676:2;18665:9;18661:18;18652:6;18608:72;:::i;:::-;18690;18758:2;18747:9;18743:18;18734:6;18690:72;:::i;:::-;18809:9;18803:4;18799:20;18794:2;18783:9;18779:18;18772:48;18837:76;18908:4;18899:6;18837:76;:::i;:::-;18829:84;;18280:640;;;;;;;:::o;18926:141::-;18982:5;19013:6;19007:13;18998:22;;19029:32;19055:5;19029:32;:::i;:::-;18926:141;;;;:::o;19073:349::-;19142:6;19191:2;19179:9;19170:7;19166:23;19162:32;19159:119;;;19197:79;;:::i;:::-;19159:119;19317:1;19342:63;19397:7;19388:6;19377:9;19373:22;19342:63;:::i;:::-;19332:73;;19288:127;19073:349;;;;:::o;19428:233::-;19467:3;19490:24;19508:5;19490:24;:::i;:::-;19481:33;;19536:66;19529:5;19526:77;19523:103;;;19606:18;;:::i;:::-;19523:103;19653:1;19646:5;19642:13;19635:20;;19428:233;;;:::o;19667:180::-;19715:77;19712:1;19705:88;19812:4;19809:1;19802:15;19836:4;19833:1;19826:15;19853:185;19893:1;19910:20;19928:1;19910:20;:::i;:::-;19905:25;;19944:20;19962:1;19944:20;:::i;:::-;19939:25;;19983:1;19973:35;;19988:18;;:::i;:::-;19973:35;20030:1;20027;20023:9;20018:14;;19853:185;;;;:::o;20044:191::-;20084:4;20104:20;20122:1;20104:20;:::i;:::-;20099:25;;20138:20;20156:1;20138:20;:::i;:::-;20133:25;;20177:1;20174;20171:8;20168:34;;;20182:18;;:::i;:::-;20168:34;20227:1;20224;20220:9;20212:17;;20044:191;;;;:::o;20241:176::-;20273:1;20290:20;20308:1;20290:20;:::i;:::-;20285:25;;20324:20;20342:1;20324:20;:::i;:::-;20319:25;;20363:1;20353:35;;20368:18;;:::i;:::-;20353:35;20409:1;20406;20402:9;20397:14;;20241:176;;;;:::o;20423:180::-;20471:77;20468:1;20461:88;20568:4;20565:1;20558:15;20592:4;20589:1;20582:15;20609:173;20749:25;20745:1;20737:6;20733:14;20726:49;20609:173;:::o;20788:402::-;20948:3;20969:85;21051:2;21046:3;20969:85;:::i;:::-;20962:92;;21063:93;21152:3;21063:93;:::i;:::-;21181:2;21176:3;21172:12;21165:19;;20788:402;;;:::o;21196:167::-;21336:19;21332:1;21324:6;21320:14;21313:43;21196:167;:::o;21369:402::-;21529:3;21550:85;21632:2;21627:3;21550:85;:::i;:::-;21543:92;;21644:93;21733:3;21644:93;:::i;:::-;21762:2;21757:3;21753:12;21746:19;;21369:402;;;:::o;21777:967::-;22159:3;22181:148;22325:3;22181:148;:::i;:::-;22174:155;;22346:95;22437:3;22428:6;22346:95;:::i;:::-;22339:102;;22458:148;22602:3;22458:148;:::i;:::-;22451:155;;22623:95;22714:3;22705:6;22623:95;:::i;:::-;22616:102;;22735:3;22728:10;;21777:967;;;;;:::o;22750:348::-;22790:7;22813:20;22831:1;22813:20;:::i;:::-;22808:25;;22847:20;22865:1;22847:20;:::i;:::-;22842:25;;23035:1;22967:66;22963:74;22960:1;22957:81;22952:1;22945:9;22938:17;22934:105;22931:131;;;23042:18;;:::i;:::-;22931:131;23090:1;23087;23083:9;23072:20;;22750:348;;;;:::o;23104:171::-;23143:3;23166:24;23184:5;23166:24;:::i;:::-;23157:33;;23212:4;23205:5;23202:15;23199:41;;;23220:18;;:::i;:::-;23199:41;23267:1;23260:5;23256:13;23249:20;;23104:171;;;:::o;23281:182::-;23421:34;23417:1;23409:6;23405:14;23398:58;23281:182;:::o;23469:366::-;23611:3;23632:67;23696:2;23691:3;23632:67;:::i;:::-;23625:74;;23708:93;23797:3;23708:93;:::i;:::-;23826:2;23821:3;23817:12;23810:19;;23469:366;;;:::o;23841:419::-;24007:4;24045:2;24034:9;24030:18;24022:26;;24094:9;24088:4;24084:20;24080:1;24069:9;24065:17;24058:47;24122:131;24248:4;24122:131;:::i;:::-;24114:139;;23841:419;;;:::o

Swarm Source

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