ETH Price: $2,417.68 (+1.70%)

Token

Cornerstone.land (CORNERSTONE)
 

Overview

Max Total Supply

134 CORNERSTONE

Holders

66

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CORNERSTONE
0x95096b0ef64eda4460bfeadd718063fa6455385c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cornerstone.land is the foundation of the photorealistic metaverse, established by metaverse studio ZOAN.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cornerstone

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Cornerstone.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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


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

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

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

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

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

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

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

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

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

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

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

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




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




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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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


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



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


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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI,".json"));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


/**
 * @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 External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}


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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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


/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

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

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

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

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

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

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}



/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}


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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 1;
    }
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract Cornerstone is Context,  AccessControlEnumerable, ERC721Enumerable, ERC721URIStorage {
  using Counters for Counters.Counter;
  using SafeMath for uint256;
  
  Counters.Counter public _tokenIdTracker;

  string private _baseTokenURI;
  uint private _priceOne;
  uint private _max;
  address private _admin;
  address private _makerFeeAddress;
  uint256 public _makerFee;
  bool private _mintingEnabled;
  bool private _buyingEnabled;
  mapping (uint => address) public tokenToOwner;
  mapping (address => uint) ownerTokenCount;

    event Minted(
        uint256 tokenId,
        address minter,
        uint256 amount
    );
 
  constructor(string memory name, string memory symbol, string memory baseTokenURI, uint mintPriceOne, uint max, bool mintingEnabled, bool buyingEnabled, address admin, address makerFeeAddress) ERC721(name, symbol) {
      _baseTokenURI = baseTokenURI;
      _priceOne = mintPriceOne;
      _max = max;
      _admin = admin;
      _mintingEnabled = mintingEnabled;
      _buyingEnabled = buyingEnabled;
      _makerFeeAddress = makerFeeAddress;
      _setupRole(DEFAULT_ADMIN_ROLE, admin);
      _makerFee = 90;
  }

  function mintedCount() public view returns(uint256) {
      return _tokenIdTracker.current();
  }

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

  function setBaseURI(string memory baseURI) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role to change base URI");
    _baseTokenURI = baseURI;
  }

  function setTokenURI(uint256 tokenId, string memory _tokenURI) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role to change token URI");
    _setTokenURI(tokenId, _tokenURI);
  }
  

  function setPriceOne(uint mintPrice) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role to change price");
    _priceOne = mintPrice;
  }


  function priceOne() public view returns (uint) {
    return _priceOne;
  }


  /**
    * @dev Creates a new token for `to`. Its token ID will be automatically
    * assigned (and available on the emitted {IERC721-Transfer} event), and the token
    * URI autogenerated based on the base URI passed at construction.
    *
    */
  function mint() public {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must be admin to be able to mint");
    require(_mintingEnabled, "Minting is not enabled yet");
    require(_tokenIdTracker.current() < _max, "all NFTs have been minted");
    address owner = address(this);
    _mint(owner, _tokenIdTracker.current());
    tokenToOwner[_tokenIdTracker.current()] = owner;
    ownerTokenCount[owner] = ownerTokenCount[owner].add(1);
    _tokenIdTracker.increment();
    emit Minted(_tokenIdTracker.current(),owner,1);
    
  }

  function mintBatch(uint256 amount) public {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must be admin to be able to batch mint");
    require(_mintingEnabled, "Minting is not enabled yet");
    require((_tokenIdTracker.current() + amount) < _max, "all NFTs have been minted");
    address owner = address(this);

    for(uint i=0; i < amount; i++){
      _mint(owner, _tokenIdTracker.current());
      tokenToOwner[_tokenIdTracker.current()] = owner;
      ownerTokenCount[owner] = ownerTokenCount[owner].add(1);
      _tokenIdTracker.increment();
      emit Minted(_tokenIdTracker.current(),owner,1);
    }
    
  }
  
  /*
   * Checks whether the NFT has been sold. The owner is this contract,
   * when the token is not sold
   */
  function isAvailable(uint256 tokenId) public view returns (bool) {
    address owner = address(this);
    return tokenToOwner[tokenId] == owner;
  }  

  function buy(uint256 tokenId) public payable {
    address owner = address(this);
    require(_buyingEnabled, "Buying is not enabled yet");
    require(tokenToOwner[tokenId] == owner,"The NFT is already sold");
    require(msg.value == _priceOne, "Must send correct price");
    // If the current owner is the contract, the NFT is considered unsold
    require(tokenId < _max, "All NFTs have been bought");

    _safeTransfer( owner, msg.sender, tokenId, "");
    
    tokenToOwner[tokenId] = msg.sender;
    ownerTokenCount[msg.sender] = ownerTokenCount[msg.sender].add(1);
    // Calculate makerFee, and send to recipients
    uint256 totalMakerFee = msg.value * _makerFee / 100;
    uint256 rest = msg.value - totalMakerFee;

    payable(_admin).transfer(rest);
    payable(_makerFeeAddress).transfer(totalMakerFee);
    emit Minted(tokenId,msg.sender,1);
    
  }
   
    function toggleMinting() external {
         require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role to change URI");
         _mintingEnabled = !_mintingEnabled;
        
    }
    function toggleBuying() external {
         require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have admin role to change URI");
         _buyingEnabled = !_buyingEnabled;
        
    }

  function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
    return ERC721URIStorage._burn(tokenId);
  }

  function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
    return ERC721URIStorage.tokenURI(tokenId);
  }
  
  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"uint256","name":"mintPriceOne","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"bool","name":"mintingEnabled","type":"bool"},{"internalType":"bool","name":"buyingEnabled","type":"bool"},{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"makerFeeAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"_makerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenIdTracker","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"priceOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setPriceOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBuying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenToOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

60806040523480156200001157600080fd5b506040516200637e3803806200637e833981810160405281019062000037919062000573565b88888160029080519060200190620000519291906200040c565b5080600390805190602001906200006a9291906200040c565b50505086600e9080519060200190620000859291906200040c565b5085600f819055508460108190555081601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083601460006101000a81548160ff02191690831515021790555082601460016101000a81548160ff02191690831515021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200015f6000801b836200017660201b60201c565b605a6013819055505050505050505050506200089f565b6200018d8282620001be60201b62001ead1760201c565b620001b98160016000858152602001908152602001600020620001d460201b62001ebb1790919060201c565b505050565b620001d082826200020c60201b60201c565b5050565b600062000204836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620002fd60201b60201c565b905092915050565b6200021e82826200037760201b60201c565b620002f957600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200029e620003e160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620003118383620003e960201b60201c565b6200036c57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000371565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200041a9062000776565b90600052602060002090601f0160209004810192826200043e57600085556200048a565b82601f106200045957805160ff19168380011785556200048a565b828001600101855582156200048a579182015b82811115620004895782518255916020019190600101906200046c565b5b5090506200049991906200049d565b5090565b5b80821115620004b85760008160009055506001016200049e565b5090565b6000620004d3620004cd84620006c0565b62000697565b905082815260208101848484011115620004ec57600080fd5b620004f984828562000740565b509392505050565b600081519050620005128162000851565b92915050565b60008151905062000529816200086b565b92915050565b600082601f8301126200054157600080fd5b815162000553848260208601620004bc565b91505092915050565b6000815190506200056d8162000885565b92915050565b60008060008060008060008060006101208a8c0312156200059357600080fd5b60008a015167ffffffffffffffff811115620005ae57600080fd5b620005bc8c828d016200052f565b99505060208a015167ffffffffffffffff811115620005da57600080fd5b620005e88c828d016200052f565b98505060408a015167ffffffffffffffff8111156200060657600080fd5b620006148c828d016200052f565b9750506060620006278c828d016200055c565b96505060806200063a8c828d016200055c565b95505060a06200064d8c828d0162000518565b94505060c0620006608c828d0162000518565b93505060e0620006738c828d0162000501565b925050610100620006878c828d0162000501565b9150509295985092959850929598565b6000620006a3620006b6565b9050620006b18282620007ac565b919050565b6000604051905090565b600067ffffffffffffffff821115620006de57620006dd62000811565b5b620006e98262000840565b9050602081019050919050565b6000620007038262000716565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200076057808201518184015260208101905062000743565b8381111562000770576000848401525b50505050565b600060028204905060018216806200078f57607f821691505b60208210811415620007a657620007a5620007e2565b5b50919050565b620007b78262000840565b810181811067ffffffffffffffff82111715620007d957620007d862000811565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200085c81620006f6565b81146200086857600080fd5b50565b62000876816200070a565b81146200088257600080fd5b50565b620008908162000736565b81146200089c57600080fd5b50565b615acf80620008af6000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063cf721b151161006f578063cf721b151461084f578063d547741f1461087a578063d96a094a146108a3578063dacea8b8146108bf578063e985e9c5146108e857610225565b8063a22cb46514610746578063b88d4fde1461076f578063c87b56dd14610798578063ca15c873146107d5578063cc0b2c9f1461081257610225565b80639075a3bf116100f25780639075a3bf1461065d57806391d148541461068857806395d89b41146106c557806398bcede9146106f0578063a217fddf1461071b57610225565b80636352211e1461058f57806370a08231146105cc5780637d55094d146106095780639010d07c1461062057610225565b806323b872dd116101b15780633a178d99116101755780633a178d991461049857806342842e0e146104d55780634f6ccce7146104fe578063503768481461053b57806355f804b31461056657610225565b806323b872dd146103a3578063248a9ca3146103cc5780632f2ff15d146104095780632f745c591461043257806336568abe1461046f57610225565b80631249c58b116101f85780631249c58b146102f8578063125a6eb61461030f578063162094c41461032657806318160ddd1461034f57806320e409b41461037a57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906140a7565b610925565b60405161025e919061483e565b60405180910390f35b34801561027357600080fd5b5061027c610937565b6040516102899190614874565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061413a565b6109c9565b6040516102c691906147d7565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613fca565b610a4e565b005b34801561030457600080fd5b5061030d610b66565b005b34801561031b57600080fd5b50610324610db0565b005b34801561033257600080fd5b5061034d60048036038101906103489190614163565b610e2f565b005b34801561035b57600080fd5b50610364610e90565b6040516103719190614c96565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061413a565b610e9d565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190613ec4565b611112565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190614006565b611172565b6040516104009190614859565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b919061402f565b611191565b005b34801561043e57600080fd5b5061045960048036038101906104549190613fca565b6111c5565b6040516104669190614c96565b60405180910390f35b34801561047b57600080fd5b506104966004803603810190610491919061402f565b61126a565b005b3480156104a457600080fd5b506104bf60048036038101906104ba919061413a565b61129e565b6040516104cc919061483e565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190613ec4565b61130e565b005b34801561050a57600080fd5b506105256004803603810190610520919061413a565b61132e565b6040516105329190614c96565b60405180910390f35b34801561054757600080fd5b506105506113c5565b60405161055d9190614c96565b60405180910390f35b34801561057257600080fd5b5061058d600480360381019061058891906140f9565b6113cb565b005b34801561059b57600080fd5b506105b660048036038101906105b1919061413a565b611438565b6040516105c391906147d7565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190613e5f565b6114ea565b6040516106009190614c96565b60405180910390f35b34801561061557600080fd5b5061061e6115a2565b005b34801561062c57600080fd5b506106476004803603810190610642919061406b565b611621565b60405161065491906147d7565b60405180910390f35b34801561066957600080fd5b50610672611650565b60405161067f9190614c96565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa919061402f565b61165a565b6040516106bc919061483e565b60405180910390f35b3480156106d157600080fd5b506106da6116c4565b6040516106e79190614874565b60405180910390f35b3480156106fc57600080fd5b50610705611756565b6040516107129190614c96565b60405180910390f35b34801561072757600080fd5b50610730611762565b60405161073d9190614859565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613f8e565b611769565b005b34801561077b57600080fd5b5061079660048036038101906107919190613f13565b6118ea565b005b3480156107a457600080fd5b506107bf60048036038101906107ba919061413a565b61194c565b6040516107cc9190614874565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f79190614006565b61195e565b6040516108099190614c96565b60405180910390f35b34801561081e57600080fd5b506108396004803603810190610834919061413a565b611982565b60405161084691906147d7565b60405180910390f35b34801561085b57600080fd5b506108646119b5565b6040516108719190614c96565b60405180910390f35b34801561088657600080fd5b506108a1600480360381019061089c919061402f565b6119c6565b005b6108bd60048036038101906108b8919061413a565b6119fa565b005b3480156108cb57600080fd5b506108e660048036038101906108e1919061413a565b611dbc565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190613e88565b611e19565b60405161091c919061483e565b60405180910390f35b600061093082611eeb565b9050919050565b60606002805461094690614fc3565b80601f016020809104026020016040519081016040528092919081815260200182805461097290614fc3565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b60006109d482611f65565b610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90614ad6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5982611438565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190614b96565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae9611fd1565b73ffffffffffffffffffffffffffffffffffffffff161480610b185750610b1781610b12611fd1565b611e19565b5b610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90614a16565b60405180910390fd5b610b618383611fd9565b505050565b610b7a6000801b610b75611fd1565b61165a565b610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090614b76565b60405180910390fd5b601460009054906101000a900460ff16610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90614af6565b60405180910390fd5b601054610c15600d612092565b10610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90614c76565b60405180910390fd5b6000309050610c6d81610c68600d612092565b6120a0565b8060156000610c7c600d612092565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d1b6001601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226e90919063ffffffff16565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d68600d612284565b7fc9d0543a84d3510329c0783b91576878ceb484e8699944cb5610c3436b3b8e39610d93600d612092565b826001604051610da593929190614cb1565b60405180910390a150565b610dc46000801b610dbf611fd1565b61165a565b610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90614bb6565b60405180910390fd5b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b610e436000801b610e3e611fd1565b61165a565b610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e79906149b6565b60405180910390fd5b610e8c828261229a565b5050565b6000600a80549050905090565b610eb16000801b610eac611fd1565b61165a565b610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee7906149f6565b60405180910390fd5b601460009054906101000a900460ff16610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690614af6565b60405180910390fd5b60105481610f4d600d612092565b610f579190614db2565b10610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90614c76565b60405180910390fd5b600030905060005b8281101561110d57610fba82610fb5600d612092565b6120a0565b8160156000610fc9600d612092565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506110686001601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226e90919063ffffffff16565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110b5600d612284565b7fc9d0543a84d3510329c0783b91576878ceb484e8699944cb5610c3436b3b8e396110e0600d612092565b8360016040516110f293929190614cb1565b60405180910390a1808061110590615026565b915050610f9f565b505050565b61112361111d611fd1565b8261230e565b611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990614bf6565b60405180910390fd5b61116d8383836123ec565b505050565b6000806000838152602001908152602001600020600101549050919050565b61119b8282612648565b6111c08160016000858152602001908152602001600020611ebb90919063ffffffff16565b505050565b60006111d0836114ea565b8210611211576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611208906148f6565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6112748282612671565b61129981600160008581526020019081526020016000206126f490919063ffffffff16565b505050565b6000803090508073ffffffffffffffffffffffffffffffffffffffff166015600085815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050919050565b611329838383604051806020016040528060008152506118ea565b505050565b6000611338610e90565b8210611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090614c36565b60405180910390fd5b600a82815481106113b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60135481565b6113df6000801b6113da611fd1565b61165a565b61141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590614c16565b60405180910390fd5b80600e9080519060200190611434929190613c6e565b5050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890614a56565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614a36565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115b66000801b6115b1611fd1565b61165a565b6115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90614bb6565b60405180910390fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b6000611648826001600086815260200190815260200160002061272490919063ffffffff16565b905092915050565b6000600f54905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600380546116d390614fc3565b80601f01602080910402602001604051908101604052809291908181526020018280546116ff90614fc3565b801561174c5780601f106117215761010080835404028352916020019161174c565b820191906000526020600020905b81548152906001019060200180831161172f57829003601f168201915b5050505050905090565b600d8060000154905081565b6000801b81565b611771611fd1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690614996565b60405180910390fd5b80600760006117ec611fd1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611899611fd1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118de919061483e565b60405180910390a35050565b6118fb6118f5611fd1565b8361230e565b61193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190614bf6565b60405180910390fd5b6119468484848461273e565b50505050565b60606119578261279a565b9050919050565b600061197b600160008481526020019081526020016000206128ec565b9050919050565b60156020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006119c1600d612092565b905090565b6119d08282612901565b6119f581600160008581526020019081526020016000206126f490919063ffffffff16565b505050565b6000309050601460019054906101000a900460ff16611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a45906148b6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166015600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690614bd6565b60405180910390fd5b600f543414611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90614956565b60405180910390fd5b6010548210611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e90614b16565b60405180910390fd5b611b928133846040518060200160405280600081525061273e565b336015600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c376001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226e90919063ffffffff16565b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000606460135434611c8c9190614e39565b611c969190614e08565b905060008134611ca69190614e93565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611d10573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611d79573d6000803e3d6000fd5b507fc9d0543a84d3510329c0783b91576878ceb484e8699944cb5610c3436b3b8e3984336001604051611dae93929190614cb1565b60405180910390a150505050565b611dd06000801b611dcb611fd1565b61165a565b611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e06906148d6565b60405180910390fd5b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eb7828261292a565b5050565b6000611ee3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612a0a565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f5e5750611f5d82612a7a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661204c83611438565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790614a96565b60405180910390fd5b61211981611f65565b15612159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215090614936565b60405180910390fd5b61216560008383612b5c565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b59190614db2565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000818361227c9190614db2565b905092915050565b6001816000016000828254019250508190555050565b6122a382611f65565b6122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d990614a76565b60405180910390fd5b80600c60008481526020019081526020016000209080519060200190612309929190613c6e565b505050565b600061231982611f65565b612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f906149d6565b60405180910390fd5b600061236383611438565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123d257508373ffffffffffffffffffffffffffffffffffffffff166123ba846109c9565b73ffffffffffffffffffffffffffffffffffffffff16145b806123e357506123e28185611e19565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661240c82611438565b73ffffffffffffffffffffffffffffffffffffffff1614612462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245990614b36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990614976565b60405180910390fd5b6124dd838383612b5c565b6124e8600082611fd9565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125389190614e93565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258f9190614db2565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61265182611172565b6126628161265d611fd1565b612b6c565b61266c838361292a565b505050565b612679611fd1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614c56565b60405180910390fd5b6126f08282612c09565b5050565b600061271c836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612cea565b905092915050565b60006127338360000183612e70565b60001c905092915050565b6127498484846123ec565b61275584848484612ec1565b612794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278b90614916565b60405180910390fd5b50505050565b60606127a582611f65565b6127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db90614ab6565b60405180910390fd5b6000600c6000848152602001908152602001600020805461280490614fc3565b80601f016020809104026020016040519081016040528092919081815260200182805461283090614fc3565b801561287d5780601f106128525761010080835404028352916020019161287d565b820191906000526020600020905b81548152906001019060200180831161286057829003601f168201915b50505050509050600061288e613058565b90506000815114156128a45781925050506128e7565b6000825111156128d95780826040516020016128c192919061476e565b604051602081830303815290604052925050506128e7565b6128e2846130ea565b925050505b919050565b60006128fa82600001613191565b9050919050565b61290a82611172565b61291b81612916611fd1565b612b6c565b6129258383612c09565b505050565b612934828261165a565b612a0657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506129ab611fd1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612a1683836131a2565b612a6f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612a74565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b4557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b555750612b54826131c5565b5b9050919050565b612b6783838361323f565b505050565b612b76828261165a565b612c0557612b9b8173ffffffffffffffffffffffffffffffffffffffff166014613353565b612ba98360001c6020613353565b604051602001612bba92919061479d565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfc9190614874565b60405180910390fd5b5050565b612c13828261165a565b15612ce657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612c8b611fd1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114612e64576000600182612d1c9190614e93565b9050600060018660000180549050612d349190614e93565b9050818114612def576000866000018281548110612d7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612dc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612e29577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612e6a565b60009150505b92915050565b6000826000018281548110612eae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6000612ee28473ffffffffffffffffffffffffffffffffffffffff1661364d565b1561304b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f0b611fd1565b8786866040518563ffffffff1660e01b8152600401612f2d94939291906147f2565b602060405180830381600087803b158015612f4757600080fd5b505af1925050508015612f7857506040513d601f19601f82011682018060405250810190612f7591906140d0565b60015b612ffb573d8060008114612fa8576040519150601f19603f3d011682016040523d82523d6000602084013e612fad565b606091505b50600081511415612ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fea90614916565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613050565b600190505b949350505050565b6060600e805461306790614fc3565b80601f016020809104026020016040519081016040528092919081815260200182805461309390614fc3565b80156130e05780601f106130b5576101008083540402835291602001916130e0565b820191906000526020600020905b8154815290600101906020018083116130c357829003601f168201915b5050505050905090565b60606130f582611f65565b613134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312b90614b56565b60405180910390fd5b600061313e613058565b9050600081511161315e5760405180602001604052806000815250613189565b8061316884613660565b60405160200161317992919061476e565b6040516020818303038152906040525b915050919050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061323857506132378261380d565b5b9050919050565b61324a838383613887565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561328d576132888161388c565b6132cc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132cb576132ca83826138d5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561330f5761330a81613a42565b61334e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461334d5761334c8282613b85565b5b5b505050565b6060600060028360026133669190614e39565b6133709190614db2565b67ffffffffffffffff8111156133af577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133e15781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061343f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106134c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026135099190614e39565b6135139190614db2565b90505b60018111156135ff577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061357b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106135b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806135f890614f99565b9050613516565b5060008414613643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363a90614896565b60405180910390fd5b8091505092915050565b600080823b905060008111915050919050565b606060008214156136a8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613808565b600082905060005b600082146136da5780806136c390615026565b915050600a826136d39190614e08565b91506136b0565b60008167ffffffffffffffff81111561371c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561374e5781602001600182028036833780820191505090505b5090505b60008514613801576001826137679190614e93565b9150600a85613776919061506f565b60306137829190614db2565b60f81b8183815181106137be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137fa9190614e08565b9450613752565b8093505050505b919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613880575061387f82613c04565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138e2846114ea565b6138ec9190614e93565b90506000600960008481526020019081526020016000205490508181146139d1576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050613a569190614e93565b90506000600b60008481526020019081526020016000205490506000600a8381548110613aac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600a8381548110613af4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613b69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613b90836114ea565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054613c7a90614fc3565b90600052602060002090601f016020900481019282613c9c5760008555613ce3565b82601f10613cb557805160ff1916838001178555613ce3565b82800160010185558215613ce3579182015b82811115613ce2578251825591602001919060010190613cc7565b5b509050613cf09190613cf4565b5090565b5b80821115613d0d576000816000905550600101613cf5565b5090565b6000613d24613d1f84614d0d565b614ce8565b905082815260208101848484011115613d3c57600080fd5b613d47848285614f57565b509392505050565b6000613d62613d5d84614d3e565b614ce8565b905082815260208101848484011115613d7a57600080fd5b613d85848285614f57565b509392505050565b600081359050613d9c81615a26565b92915050565b600081359050613db181615a3d565b92915050565b600081359050613dc681615a54565b92915050565b600081359050613ddb81615a6b565b92915050565b600081519050613df081615a6b565b92915050565b600082601f830112613e0757600080fd5b8135613e17848260208601613d11565b91505092915050565b600082601f830112613e3157600080fd5b8135613e41848260208601613d4f565b91505092915050565b600081359050613e5981615a82565b92915050565b600060208284031215613e7157600080fd5b6000613e7f84828501613d8d565b91505092915050565b60008060408385031215613e9b57600080fd5b6000613ea985828601613d8d565b9250506020613eba85828601613d8d565b9150509250929050565b600080600060608486031215613ed957600080fd5b6000613ee786828701613d8d565b9350506020613ef886828701613d8d565b9250506040613f0986828701613e4a565b9150509250925092565b60008060008060808587031215613f2957600080fd5b6000613f3787828801613d8d565b9450506020613f4887828801613d8d565b9350506040613f5987828801613e4a565b925050606085013567ffffffffffffffff811115613f7657600080fd5b613f8287828801613df6565b91505092959194509250565b60008060408385031215613fa157600080fd5b6000613faf85828601613d8d565b9250506020613fc085828601613da2565b9150509250929050565b60008060408385031215613fdd57600080fd5b6000613feb85828601613d8d565b9250506020613ffc85828601613e4a565b9150509250929050565b60006020828403121561401857600080fd5b600061402684828501613db7565b91505092915050565b6000806040838503121561404257600080fd5b600061405085828601613db7565b925050602061406185828601613d8d565b9150509250929050565b6000806040838503121561407e57600080fd5b600061408c85828601613db7565b925050602061409d85828601613e4a565b9150509250929050565b6000602082840312156140b957600080fd5b60006140c784828501613dcc565b91505092915050565b6000602082840312156140e257600080fd5b60006140f084828501613de1565b91505092915050565b60006020828403121561410b57600080fd5b600082013567ffffffffffffffff81111561412557600080fd5b61413184828501613e20565b91505092915050565b60006020828403121561414c57600080fd5b600061415a84828501613e4a565b91505092915050565b6000806040838503121561417657600080fd5b600061418485828601613e4a565b925050602083013567ffffffffffffffff8111156141a157600080fd5b6141ad85828601613e20565b9150509250929050565b6141c081614ec7565b82525050565b6141cf81614ed9565b82525050565b6141de81614ee5565b82525050565b60006141ef82614d6f565b6141f98185614d85565b9350614209818560208601614f66565b6142128161515c565b840191505092915050565b61422681614f45565b82525050565b600061423782614d7a565b6142418185614d96565b9350614251818560208601614f66565b61425a8161515c565b840191505092915050565b600061427082614d7a565b61427a8185614da7565b935061428a818560208601614f66565b80840191505092915050565b60006142a3602083614d96565b91506142ae8261516d565b602082019050919050565b60006142c6601983614d96565b91506142d182615196565b602082019050919050565b60006142e9602483614d96565b91506142f4826151bf565b604082019050919050565b600061430c602b83614d96565b91506143178261520e565b604082019050919050565b600061432f603283614d96565b915061433a8261525d565b604082019050919050565b6000614352601c83614d96565b915061435d826152ac565b602082019050919050565b6000614375601783614d96565b9150614380826152d5565b602082019050919050565b6000614398602483614d96565b91506143a3826152fe565b604082019050919050565b60006143bb601983614d96565b91506143c68261534d565b602082019050919050565b60006143de602883614d96565b91506143e982615376565b604082019050919050565b6000614401602c83614d96565b915061440c826153c5565b604082019050919050565b6000614424602683614d96565b915061442f82615414565b604082019050919050565b6000614447603883614d96565b915061445282615463565b604082019050919050565b600061446a602a83614d96565b9150614475826154b2565b604082019050919050565b600061448d602983614d96565b915061449882615501565b604082019050919050565b60006144b0602e83614d96565b91506144bb82615550565b604082019050919050565b60006144d3602083614d96565b91506144de8261559f565b602082019050919050565b60006144f6603183614d96565b9150614501826155c8565b604082019050919050565b6000614519602c83614d96565b915061452482615617565b604082019050919050565b600061453c600583614da7565b915061454782615666565b600582019050919050565b600061455f601a83614d96565b915061456a8261568f565b602082019050919050565b6000614582601983614d96565b915061458d826156b8565b602082019050919050565b60006145a5602983614d96565b91506145b0826156e1565b604082019050919050565b60006145c8602f83614d96565b91506145d382615730565b604082019050919050565b60006145eb602083614d96565b91506145f68261577f565b602082019050919050565b600061460e602183614d96565b9150614619826157a8565b604082019050919050565b6000614631602283614d96565b915061463c826157f7565b604082019050919050565b6000614654601783614d96565b915061465f82615846565b602082019050919050565b6000614677603183614d96565b91506146828261586f565b604082019050919050565b600061469a602783614d96565b91506146a5826158be565b604082019050919050565b60006146bd602c83614d96565b91506146c88261590d565b604082019050919050565b60006146e0601783614da7565b91506146eb8261595c565b601782019050919050565b6000614703601183614da7565b915061470e82615985565b601182019050919050565b6000614726602f83614d96565b9150614731826159ae565b604082019050919050565b6000614749601983614d96565b9150614754826159fd565b602082019050919050565b61476881614f3b565b82525050565b600061477a8285614265565b91506147868284614265565b91506147918261452f565b91508190509392505050565b60006147a8826146d3565b91506147b48285614265565b91506147bf826146f6565b91506147cb8284614265565b91508190509392505050565b60006020820190506147ec60008301846141b7565b92915050565b600060808201905061480760008301876141b7565b61481460208301866141b7565b614821604083018561475f565b818103606083015261483381846141e4565b905095945050505050565b600060208201905061485360008301846141c6565b92915050565b600060208201905061486e60008301846141d5565b92915050565b6000602082019050818103600083015261488e818461422c565b905092915050565b600060208201905081810360008301526148af81614296565b9050919050565b600060208201905081810360008301526148cf816142b9565b9050919050565b600060208201905081810360008301526148ef816142dc565b9050919050565b6000602082019050818103600083015261490f816142ff565b9050919050565b6000602082019050818103600083015261492f81614322565b9050919050565b6000602082019050818103600083015261494f81614345565b9050919050565b6000602082019050818103600083015261496f81614368565b9050919050565b6000602082019050818103600083015261498f8161438b565b9050919050565b600060208201905081810360008301526149af816143ae565b9050919050565b600060208201905081810360008301526149cf816143d1565b9050919050565b600060208201905081810360008301526149ef816143f4565b9050919050565b60006020820190508181036000830152614a0f81614417565b9050919050565b60006020820190508181036000830152614a2f8161443a565b9050919050565b60006020820190508181036000830152614a4f8161445d565b9050919050565b60006020820190508181036000830152614a6f81614480565b9050919050565b60006020820190508181036000830152614a8f816144a3565b9050919050565b60006020820190508181036000830152614aaf816144c6565b9050919050565b60006020820190508181036000830152614acf816144e9565b9050919050565b60006020820190508181036000830152614aef8161450c565b9050919050565b60006020820190508181036000830152614b0f81614552565b9050919050565b60006020820190508181036000830152614b2f81614575565b9050919050565b60006020820190508181036000830152614b4f81614598565b9050919050565b60006020820190508181036000830152614b6f816145bb565b9050919050565b60006020820190508181036000830152614b8f816145de565b9050919050565b60006020820190508181036000830152614baf81614601565b9050919050565b60006020820190508181036000830152614bcf81614624565b9050919050565b60006020820190508181036000830152614bef81614647565b9050919050565b60006020820190508181036000830152614c0f8161466a565b9050919050565b60006020820190508181036000830152614c2f8161468d565b9050919050565b60006020820190508181036000830152614c4f816146b0565b9050919050565b60006020820190508181036000830152614c6f81614719565b9050919050565b60006020820190508181036000830152614c8f8161473c565b9050919050565b6000602082019050614cab600083018461475f565b92915050565b6000606082019050614cc6600083018661475f565b614cd360208301856141b7565b614ce0604083018461421d565b949350505050565b6000614cf2614d03565b9050614cfe8282614ff5565b919050565b6000604051905090565b600067ffffffffffffffff821115614d2857614d2761512d565b5b614d318261515c565b9050602081019050919050565b600067ffffffffffffffff821115614d5957614d5861512d565b5b614d628261515c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614dbd82614f3b565b9150614dc883614f3b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614dfd57614dfc6150a0565b5b828201905092915050565b6000614e1382614f3b565b9150614e1e83614f3b565b925082614e2e57614e2d6150cf565b5b828204905092915050565b6000614e4482614f3b565b9150614e4f83614f3b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e8857614e876150a0565b5b828202905092915050565b6000614e9e82614f3b565b9150614ea983614f3b565b925082821015614ebc57614ebb6150a0565b5b828203905092915050565b6000614ed282614f1b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614f5082614f3b565b9050919050565b82818337600083830152505050565b60005b83811015614f84578082015181840152602081019050614f69565b83811115614f93576000848401525b50505050565b6000614fa482614f3b565b91506000821415614fb857614fb76150a0565b5b600182039050919050565b60006002820490506001821680614fdb57607f821691505b60208210811415614fef57614fee6150fe565b5b50919050565b614ffe8261515c565b810181811067ffffffffffffffff8211171561501d5761501c61512d565b5b80604052505050565b600061503182614f3b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615064576150636150a0565b5b600182019050919050565b600061507a82614f3b565b915061508583614f3b565b925082615095576150946150cf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f427579696e67206973206e6f7420656e61626c65642079657400000000000000600082015250565b7f4d75737420686176652061646d696e20726f6c6520746f206368616e6765207060008201527f7269636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d7573742073656e6420636f7272656374207072696365000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d75737420686176652061646d696e20726f6c6520746f206368616e6765207460008201527f6f6b656e20555249000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d7573742062652061646d696e20746f2062652061626c6520746f206261746360008201527f68206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b7f416c6c204e4654732068617665206265656e20626f7567687400000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d7573742062652061646d696e20746f2062652061626c6520746f206d696e74600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d75737420686176652061646d696e20726f6c6520746f206368616e6765205560008201527f5249000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865204e465420697320616c726561647920736f6c64000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d75737420686176652061646d696e20726f6c6520746f206368616e6765206260008201527f6173652055524900000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f616c6c204e4654732068617665206265656e206d696e74656400000000000000600082015250565b615a2f81614ec7565b8114615a3a57600080fd5b50565b615a4681614ed9565b8114615a5157600080fd5b50565b615a5d81614ee5565b8114615a6857600080fd5b50565b615a7481614eef565b8114615a7f57600080fd5b50565b615a8b81614f3b565b8114615a9657600080fd5b5056fea26469706673582212202f5fd10882eac1d4b1999c503054f82cfd38a43ae9451ad61b9d12b22f78509564736f6c634300080400330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000029a2241af62c000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a7829c9e870518040ad8ad91a70b097669b0724e00000000000000000000000096b179f60a32b80c76cc83f4e5a836dec1c3c4240000000000000000000000000000000000000000000000000000000000000010436f726e657273746f6e652e6c616e6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b434f524e455253544f4e45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6145616e6876755155506934316765486a69333470433569796b35767739667250617a436e647871586254342f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063cf721b151161006f578063cf721b151461084f578063d547741f1461087a578063d96a094a146108a3578063dacea8b8146108bf578063e985e9c5146108e857610225565b8063a22cb46514610746578063b88d4fde1461076f578063c87b56dd14610798578063ca15c873146107d5578063cc0b2c9f1461081257610225565b80639075a3bf116100f25780639075a3bf1461065d57806391d148541461068857806395d89b41146106c557806398bcede9146106f0578063a217fddf1461071b57610225565b80636352211e1461058f57806370a08231146105cc5780637d55094d146106095780639010d07c1461062057610225565b806323b872dd116101b15780633a178d99116101755780633a178d991461049857806342842e0e146104d55780634f6ccce7146104fe578063503768481461053b57806355f804b31461056657610225565b806323b872dd146103a3578063248a9ca3146103cc5780632f2ff15d146104095780632f745c591461043257806336568abe1461046f57610225565b80631249c58b116101f85780631249c58b146102f8578063125a6eb61461030f578063162094c41461032657806318160ddd1461034f57806320e409b41461037a57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906140a7565b610925565b60405161025e919061483e565b60405180910390f35b34801561027357600080fd5b5061027c610937565b6040516102899190614874565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061413a565b6109c9565b6040516102c691906147d7565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613fca565b610a4e565b005b34801561030457600080fd5b5061030d610b66565b005b34801561031b57600080fd5b50610324610db0565b005b34801561033257600080fd5b5061034d60048036038101906103489190614163565b610e2f565b005b34801561035b57600080fd5b50610364610e90565b6040516103719190614c96565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061413a565b610e9d565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190613ec4565b611112565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190614006565b611172565b6040516104009190614859565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b919061402f565b611191565b005b34801561043e57600080fd5b5061045960048036038101906104549190613fca565b6111c5565b6040516104669190614c96565b60405180910390f35b34801561047b57600080fd5b506104966004803603810190610491919061402f565b61126a565b005b3480156104a457600080fd5b506104bf60048036038101906104ba919061413a565b61129e565b6040516104cc919061483e565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190613ec4565b61130e565b005b34801561050a57600080fd5b506105256004803603810190610520919061413a565b61132e565b6040516105329190614c96565b60405180910390f35b34801561054757600080fd5b506105506113c5565b60405161055d9190614c96565b60405180910390f35b34801561057257600080fd5b5061058d600480360381019061058891906140f9565b6113cb565b005b34801561059b57600080fd5b506105b660048036038101906105b1919061413a565b611438565b6040516105c391906147d7565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190613e5f565b6114ea565b6040516106009190614c96565b60405180910390f35b34801561061557600080fd5b5061061e6115a2565b005b34801561062c57600080fd5b506106476004803603810190610642919061406b565b611621565b60405161065491906147d7565b60405180910390f35b34801561066957600080fd5b50610672611650565b60405161067f9190614c96565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa919061402f565b61165a565b6040516106bc919061483e565b60405180910390f35b3480156106d157600080fd5b506106da6116c4565b6040516106e79190614874565b60405180910390f35b3480156106fc57600080fd5b50610705611756565b6040516107129190614c96565b60405180910390f35b34801561072757600080fd5b50610730611762565b60405161073d9190614859565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613f8e565b611769565b005b34801561077b57600080fd5b5061079660048036038101906107919190613f13565b6118ea565b005b3480156107a457600080fd5b506107bf60048036038101906107ba919061413a565b61194c565b6040516107cc9190614874565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f79190614006565b61195e565b6040516108099190614c96565b60405180910390f35b34801561081e57600080fd5b506108396004803603810190610834919061413a565b611982565b60405161084691906147d7565b60405180910390f35b34801561085b57600080fd5b506108646119b5565b6040516108719190614c96565b60405180910390f35b34801561088657600080fd5b506108a1600480360381019061089c919061402f565b6119c6565b005b6108bd60048036038101906108b8919061413a565b6119fa565b005b3480156108cb57600080fd5b506108e660048036038101906108e1919061413a565b611dbc565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190613e88565b611e19565b60405161091c919061483e565b60405180910390f35b600061093082611eeb565b9050919050565b60606002805461094690614fc3565b80601f016020809104026020016040519081016040528092919081815260200182805461097290614fc3565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b60006109d482611f65565b610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90614ad6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5982611438565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190614b96565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae9611fd1565b73ffffffffffffffffffffffffffffffffffffffff161480610b185750610b1781610b12611fd1565b611e19565b5b610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90614a16565b60405180910390fd5b610b618383611fd9565b505050565b610b7a6000801b610b75611fd1565b61165a565b610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090614b76565b60405180910390fd5b601460009054906101000a900460ff16610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90614af6565b60405180910390fd5b601054610c15600d612092565b10610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90614c76565b60405180910390fd5b6000309050610c6d81610c68600d612092565b6120a0565b8060156000610c7c600d612092565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d1b6001601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226e90919063ffffffff16565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d68600d612284565b7fc9d0543a84d3510329c0783b91576878ceb484e8699944cb5610c3436b3b8e39610d93600d612092565b826001604051610da593929190614cb1565b60405180910390a150565b610dc46000801b610dbf611fd1565b61165a565b610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90614bb6565b60405180910390fd5b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b610e436000801b610e3e611fd1565b61165a565b610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e79906149b6565b60405180910390fd5b610e8c828261229a565b5050565b6000600a80549050905090565b610eb16000801b610eac611fd1565b61165a565b610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee7906149f6565b60405180910390fd5b601460009054906101000a900460ff16610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690614af6565b60405180910390fd5b60105481610f4d600d612092565b610f579190614db2565b10610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90614c76565b60405180910390fd5b600030905060005b8281101561110d57610fba82610fb5600d612092565b6120a0565b8160156000610fc9600d612092565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506110686001601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226e90919063ffffffff16565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110b5600d612284565b7fc9d0543a84d3510329c0783b91576878ceb484e8699944cb5610c3436b3b8e396110e0600d612092565b8360016040516110f293929190614cb1565b60405180910390a1808061110590615026565b915050610f9f565b505050565b61112361111d611fd1565b8261230e565b611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990614bf6565b60405180910390fd5b61116d8383836123ec565b505050565b6000806000838152602001908152602001600020600101549050919050565b61119b8282612648565b6111c08160016000858152602001908152602001600020611ebb90919063ffffffff16565b505050565b60006111d0836114ea565b8210611211576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611208906148f6565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6112748282612671565b61129981600160008581526020019081526020016000206126f490919063ffffffff16565b505050565b6000803090508073ffffffffffffffffffffffffffffffffffffffff166015600085815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050919050565b611329838383604051806020016040528060008152506118ea565b505050565b6000611338610e90565b8210611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090614c36565b60405180910390fd5b600a82815481106113b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60135481565b6113df6000801b6113da611fd1565b61165a565b61141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590614c16565b60405180910390fd5b80600e9080519060200190611434929190613c6e565b5050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890614a56565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614a36565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115b66000801b6115b1611fd1565b61165a565b6115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90614bb6565b60405180910390fd5b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b6000611648826001600086815260200190815260200160002061272490919063ffffffff16565b905092915050565b6000600f54905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600380546116d390614fc3565b80601f01602080910402602001604051908101604052809291908181526020018280546116ff90614fc3565b801561174c5780601f106117215761010080835404028352916020019161174c565b820191906000526020600020905b81548152906001019060200180831161172f57829003601f168201915b5050505050905090565b600d8060000154905081565b6000801b81565b611771611fd1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690614996565b60405180910390fd5b80600760006117ec611fd1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611899611fd1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118de919061483e565b60405180910390a35050565b6118fb6118f5611fd1565b8361230e565b61193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190614bf6565b60405180910390fd5b6119468484848461273e565b50505050565b60606119578261279a565b9050919050565b600061197b600160008481526020019081526020016000206128ec565b9050919050565b60156020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006119c1600d612092565b905090565b6119d08282612901565b6119f581600160008581526020019081526020016000206126f490919063ffffffff16565b505050565b6000309050601460019054906101000a900460ff16611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a45906148b6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166015600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690614bd6565b60405180910390fd5b600f543414611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90614956565b60405180910390fd5b6010548210611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e90614b16565b60405180910390fd5b611b928133846040518060200160405280600081525061273e565b336015600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c376001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226e90919063ffffffff16565b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000606460135434611c8c9190614e39565b611c969190614e08565b905060008134611ca69190614e93565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611d10573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611d79573d6000803e3d6000fd5b507fc9d0543a84d3510329c0783b91576878ceb484e8699944cb5610c3436b3b8e3984336001604051611dae93929190614cb1565b60405180910390a150505050565b611dd06000801b611dcb611fd1565b61165a565b611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e06906148d6565b60405180910390fd5b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eb7828261292a565b5050565b6000611ee3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612a0a565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f5e5750611f5d82612a7a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661204c83611438565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790614a96565b60405180910390fd5b61211981611f65565b15612159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215090614936565b60405180910390fd5b61216560008383612b5c565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b59190614db2565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000818361227c9190614db2565b905092915050565b6001816000016000828254019250508190555050565b6122a382611f65565b6122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d990614a76565b60405180910390fd5b80600c60008481526020019081526020016000209080519060200190612309929190613c6e565b505050565b600061231982611f65565b612358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234f906149d6565b60405180910390fd5b600061236383611438565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123d257508373ffffffffffffffffffffffffffffffffffffffff166123ba846109c9565b73ffffffffffffffffffffffffffffffffffffffff16145b806123e357506123e28185611e19565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661240c82611438565b73ffffffffffffffffffffffffffffffffffffffff1614612462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245990614b36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990614976565b60405180910390fd5b6124dd838383612b5c565b6124e8600082611fd9565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125389190614e93565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258f9190614db2565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61265182611172565b6126628161265d611fd1565b612b6c565b61266c838361292a565b505050565b612679611fd1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614c56565b60405180910390fd5b6126f08282612c09565b5050565b600061271c836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612cea565b905092915050565b60006127338360000183612e70565b60001c905092915050565b6127498484846123ec565b61275584848484612ec1565b612794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278b90614916565b60405180910390fd5b50505050565b60606127a582611f65565b6127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db90614ab6565b60405180910390fd5b6000600c6000848152602001908152602001600020805461280490614fc3565b80601f016020809104026020016040519081016040528092919081815260200182805461283090614fc3565b801561287d5780601f106128525761010080835404028352916020019161287d565b820191906000526020600020905b81548152906001019060200180831161286057829003601f168201915b50505050509050600061288e613058565b90506000815114156128a45781925050506128e7565b6000825111156128d95780826040516020016128c192919061476e565b604051602081830303815290604052925050506128e7565b6128e2846130ea565b925050505b919050565b60006128fa82600001613191565b9050919050565b61290a82611172565b61291b81612916611fd1565b612b6c565b6129258383612c09565b505050565b612934828261165a565b612a0657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506129ab611fd1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612a1683836131a2565b612a6f578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612a74565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b4557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b555750612b54826131c5565b5b9050919050565b612b6783838361323f565b505050565b612b76828261165a565b612c0557612b9b8173ffffffffffffffffffffffffffffffffffffffff166014613353565b612ba98360001c6020613353565b604051602001612bba92919061479d565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfc9190614874565b60405180910390fd5b5050565b612c13828261165a565b15612ce657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612c8b611fd1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114612e64576000600182612d1c9190614e93565b9050600060018660000180549050612d349190614e93565b9050818114612def576000866000018281548110612d7b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612dc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612e29577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612e6a565b60009150505b92915050565b6000826000018281548110612eae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6000612ee28473ffffffffffffffffffffffffffffffffffffffff1661364d565b1561304b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f0b611fd1565b8786866040518563ffffffff1660e01b8152600401612f2d94939291906147f2565b602060405180830381600087803b158015612f4757600080fd5b505af1925050508015612f7857506040513d601f19601f82011682018060405250810190612f7591906140d0565b60015b612ffb573d8060008114612fa8576040519150601f19603f3d011682016040523d82523d6000602084013e612fad565b606091505b50600081511415612ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fea90614916565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613050565b600190505b949350505050565b6060600e805461306790614fc3565b80601f016020809104026020016040519081016040528092919081815260200182805461309390614fc3565b80156130e05780601f106130b5576101008083540402835291602001916130e0565b820191906000526020600020905b8154815290600101906020018083116130c357829003601f168201915b5050505050905090565b60606130f582611f65565b613134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312b90614b56565b60405180910390fd5b600061313e613058565b9050600081511161315e5760405180602001604052806000815250613189565b8061316884613660565b60405160200161317992919061476e565b6040516020818303038152906040525b915050919050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061323857506132378261380d565b5b9050919050565b61324a838383613887565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561328d576132888161388c565b6132cc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132cb576132ca83826138d5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561330f5761330a81613a42565b61334e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461334d5761334c8282613b85565b5b5b505050565b6060600060028360026133669190614e39565b6133709190614db2565b67ffffffffffffffff8111156133af577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133e15781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061343f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106134c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026135099190614e39565b6135139190614db2565b90505b60018111156135ff577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061357b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106135b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806135f890614f99565b9050613516565b5060008414613643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363a90614896565b60405180910390fd5b8091505092915050565b600080823b905060008111915050919050565b606060008214156136a8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613808565b600082905060005b600082146136da5780806136c390615026565b915050600a826136d39190614e08565b91506136b0565b60008167ffffffffffffffff81111561371c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561374e5781602001600182028036833780820191505090505b5090505b60008514613801576001826137679190614e93565b9150600a85613776919061506f565b60306137829190614db2565b60f81b8183815181106137be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137fa9190614e08565b9450613752565b8093505050505b919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613880575061387f82613c04565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138e2846114ea565b6138ec9190614e93565b90506000600960008481526020019081526020016000205490508181146139d1576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050613a569190614e93565b90506000600b60008481526020019081526020016000205490506000600a8381548110613aac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600a8381548110613af4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613b69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613b90836114ea565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054613c7a90614fc3565b90600052602060002090601f016020900481019282613c9c5760008555613ce3565b82601f10613cb557805160ff1916838001178555613ce3565b82800160010185558215613ce3579182015b82811115613ce2578251825591602001919060010190613cc7565b5b509050613cf09190613cf4565b5090565b5b80821115613d0d576000816000905550600101613cf5565b5090565b6000613d24613d1f84614d0d565b614ce8565b905082815260208101848484011115613d3c57600080fd5b613d47848285614f57565b509392505050565b6000613d62613d5d84614d3e565b614ce8565b905082815260208101848484011115613d7a57600080fd5b613d85848285614f57565b509392505050565b600081359050613d9c81615a26565b92915050565b600081359050613db181615a3d565b92915050565b600081359050613dc681615a54565b92915050565b600081359050613ddb81615a6b565b92915050565b600081519050613df081615a6b565b92915050565b600082601f830112613e0757600080fd5b8135613e17848260208601613d11565b91505092915050565b600082601f830112613e3157600080fd5b8135613e41848260208601613d4f565b91505092915050565b600081359050613e5981615a82565b92915050565b600060208284031215613e7157600080fd5b6000613e7f84828501613d8d565b91505092915050565b60008060408385031215613e9b57600080fd5b6000613ea985828601613d8d565b9250506020613eba85828601613d8d565b9150509250929050565b600080600060608486031215613ed957600080fd5b6000613ee786828701613d8d565b9350506020613ef886828701613d8d565b9250506040613f0986828701613e4a565b9150509250925092565b60008060008060808587031215613f2957600080fd5b6000613f3787828801613d8d565b9450506020613f4887828801613d8d565b9350506040613f5987828801613e4a565b925050606085013567ffffffffffffffff811115613f7657600080fd5b613f8287828801613df6565b91505092959194509250565b60008060408385031215613fa157600080fd5b6000613faf85828601613d8d565b9250506020613fc085828601613da2565b9150509250929050565b60008060408385031215613fdd57600080fd5b6000613feb85828601613d8d565b9250506020613ffc85828601613e4a565b9150509250929050565b60006020828403121561401857600080fd5b600061402684828501613db7565b91505092915050565b6000806040838503121561404257600080fd5b600061405085828601613db7565b925050602061406185828601613d8d565b9150509250929050565b6000806040838503121561407e57600080fd5b600061408c85828601613db7565b925050602061409d85828601613e4a565b9150509250929050565b6000602082840312156140b957600080fd5b60006140c784828501613dcc565b91505092915050565b6000602082840312156140e257600080fd5b60006140f084828501613de1565b91505092915050565b60006020828403121561410b57600080fd5b600082013567ffffffffffffffff81111561412557600080fd5b61413184828501613e20565b91505092915050565b60006020828403121561414c57600080fd5b600061415a84828501613e4a565b91505092915050565b6000806040838503121561417657600080fd5b600061418485828601613e4a565b925050602083013567ffffffffffffffff8111156141a157600080fd5b6141ad85828601613e20565b9150509250929050565b6141c081614ec7565b82525050565b6141cf81614ed9565b82525050565b6141de81614ee5565b82525050565b60006141ef82614d6f565b6141f98185614d85565b9350614209818560208601614f66565b6142128161515c565b840191505092915050565b61422681614f45565b82525050565b600061423782614d7a565b6142418185614d96565b9350614251818560208601614f66565b61425a8161515c565b840191505092915050565b600061427082614d7a565b61427a8185614da7565b935061428a818560208601614f66565b80840191505092915050565b60006142a3602083614d96565b91506142ae8261516d565b602082019050919050565b60006142c6601983614d96565b91506142d182615196565b602082019050919050565b60006142e9602483614d96565b91506142f4826151bf565b604082019050919050565b600061430c602b83614d96565b91506143178261520e565b604082019050919050565b600061432f603283614d96565b915061433a8261525d565b604082019050919050565b6000614352601c83614d96565b915061435d826152ac565b602082019050919050565b6000614375601783614d96565b9150614380826152d5565b602082019050919050565b6000614398602483614d96565b91506143a3826152fe565b604082019050919050565b60006143bb601983614d96565b91506143c68261534d565b602082019050919050565b60006143de602883614d96565b91506143e982615376565b604082019050919050565b6000614401602c83614d96565b915061440c826153c5565b604082019050919050565b6000614424602683614d96565b915061442f82615414565b604082019050919050565b6000614447603883614d96565b915061445282615463565b604082019050919050565b600061446a602a83614d96565b9150614475826154b2565b604082019050919050565b600061448d602983614d96565b915061449882615501565b604082019050919050565b60006144b0602e83614d96565b91506144bb82615550565b604082019050919050565b60006144d3602083614d96565b91506144de8261559f565b602082019050919050565b60006144f6603183614d96565b9150614501826155c8565b604082019050919050565b6000614519602c83614d96565b915061452482615617565b604082019050919050565b600061453c600583614da7565b915061454782615666565b600582019050919050565b600061455f601a83614d96565b915061456a8261568f565b602082019050919050565b6000614582601983614d96565b915061458d826156b8565b602082019050919050565b60006145a5602983614d96565b91506145b0826156e1565b604082019050919050565b60006145c8602f83614d96565b91506145d382615730565b604082019050919050565b60006145eb602083614d96565b91506145f68261577f565b602082019050919050565b600061460e602183614d96565b9150614619826157a8565b604082019050919050565b6000614631602283614d96565b915061463c826157f7565b604082019050919050565b6000614654601783614d96565b915061465f82615846565b602082019050919050565b6000614677603183614d96565b91506146828261586f565b604082019050919050565b600061469a602783614d96565b91506146a5826158be565b604082019050919050565b60006146bd602c83614d96565b91506146c88261590d565b604082019050919050565b60006146e0601783614da7565b91506146eb8261595c565b601782019050919050565b6000614703601183614da7565b915061470e82615985565b601182019050919050565b6000614726602f83614d96565b9150614731826159ae565b604082019050919050565b6000614749601983614d96565b9150614754826159fd565b602082019050919050565b61476881614f3b565b82525050565b600061477a8285614265565b91506147868284614265565b91506147918261452f565b91508190509392505050565b60006147a8826146d3565b91506147b48285614265565b91506147bf826146f6565b91506147cb8284614265565b91508190509392505050565b60006020820190506147ec60008301846141b7565b92915050565b600060808201905061480760008301876141b7565b61481460208301866141b7565b614821604083018561475f565b818103606083015261483381846141e4565b905095945050505050565b600060208201905061485360008301846141c6565b92915050565b600060208201905061486e60008301846141d5565b92915050565b6000602082019050818103600083015261488e818461422c565b905092915050565b600060208201905081810360008301526148af81614296565b9050919050565b600060208201905081810360008301526148cf816142b9565b9050919050565b600060208201905081810360008301526148ef816142dc565b9050919050565b6000602082019050818103600083015261490f816142ff565b9050919050565b6000602082019050818103600083015261492f81614322565b9050919050565b6000602082019050818103600083015261494f81614345565b9050919050565b6000602082019050818103600083015261496f81614368565b9050919050565b6000602082019050818103600083015261498f8161438b565b9050919050565b600060208201905081810360008301526149af816143ae565b9050919050565b600060208201905081810360008301526149cf816143d1565b9050919050565b600060208201905081810360008301526149ef816143f4565b9050919050565b60006020820190508181036000830152614a0f81614417565b9050919050565b60006020820190508181036000830152614a2f8161443a565b9050919050565b60006020820190508181036000830152614a4f8161445d565b9050919050565b60006020820190508181036000830152614a6f81614480565b9050919050565b60006020820190508181036000830152614a8f816144a3565b9050919050565b60006020820190508181036000830152614aaf816144c6565b9050919050565b60006020820190508181036000830152614acf816144e9565b9050919050565b60006020820190508181036000830152614aef8161450c565b9050919050565b60006020820190508181036000830152614b0f81614552565b9050919050565b60006020820190508181036000830152614b2f81614575565b9050919050565b60006020820190508181036000830152614b4f81614598565b9050919050565b60006020820190508181036000830152614b6f816145bb565b9050919050565b60006020820190508181036000830152614b8f816145de565b9050919050565b60006020820190508181036000830152614baf81614601565b9050919050565b60006020820190508181036000830152614bcf81614624565b9050919050565b60006020820190508181036000830152614bef81614647565b9050919050565b60006020820190508181036000830152614c0f8161466a565b9050919050565b60006020820190508181036000830152614c2f8161468d565b9050919050565b60006020820190508181036000830152614c4f816146b0565b9050919050565b60006020820190508181036000830152614c6f81614719565b9050919050565b60006020820190508181036000830152614c8f8161473c565b9050919050565b6000602082019050614cab600083018461475f565b92915050565b6000606082019050614cc6600083018661475f565b614cd360208301856141b7565b614ce0604083018461421d565b949350505050565b6000614cf2614d03565b9050614cfe8282614ff5565b919050565b6000604051905090565b600067ffffffffffffffff821115614d2857614d2761512d565b5b614d318261515c565b9050602081019050919050565b600067ffffffffffffffff821115614d5957614d5861512d565b5b614d628261515c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614dbd82614f3b565b9150614dc883614f3b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614dfd57614dfc6150a0565b5b828201905092915050565b6000614e1382614f3b565b9150614e1e83614f3b565b925082614e2e57614e2d6150cf565b5b828204905092915050565b6000614e4482614f3b565b9150614e4f83614f3b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e8857614e876150a0565b5b828202905092915050565b6000614e9e82614f3b565b9150614ea983614f3b565b925082821015614ebc57614ebb6150a0565b5b828203905092915050565b6000614ed282614f1b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614f5082614f3b565b9050919050565b82818337600083830152505050565b60005b83811015614f84578082015181840152602081019050614f69565b83811115614f93576000848401525b50505050565b6000614fa482614f3b565b91506000821415614fb857614fb76150a0565b5b600182039050919050565b60006002820490506001821680614fdb57607f821691505b60208210811415614fef57614fee6150fe565b5b50919050565b614ffe8261515c565b810181811067ffffffffffffffff8211171561501d5761501c61512d565b5b80604052505050565b600061503182614f3b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615064576150636150a0565b5b600182019050919050565b600061507a82614f3b565b915061508583614f3b565b925082615095576150946150cf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f427579696e67206973206e6f7420656e61626c65642079657400000000000000600082015250565b7f4d75737420686176652061646d696e20726f6c6520746f206368616e6765207060008201527f7269636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d7573742073656e6420636f7272656374207072696365000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d75737420686176652061646d696e20726f6c6520746f206368616e6765207460008201527f6f6b656e20555249000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d7573742062652061646d696e20746f2062652061626c6520746f206261746360008201527f68206d696e740000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b7f416c6c204e4654732068617665206265656e20626f7567687400000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d7573742062652061646d696e20746f2062652061626c6520746f206d696e74600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d75737420686176652061646d696e20726f6c6520746f206368616e6765205560008201527f5249000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865204e465420697320616c726561647920736f6c64000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d75737420686176652061646d696e20726f6c6520746f206368616e6765206260008201527f6173652055524900000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f616c6c204e4654732068617665206265656e206d696e74656400000000000000600082015250565b615a2f81614ec7565b8114615a3a57600080fd5b50565b615a4681614ed9565b8114615a5157600080fd5b50565b615a5d81614ee5565b8114615a6857600080fd5b50565b615a7481614eef565b8114615a7f57600080fd5b50565b615a8b81614f3b565b8114615a9657600080fd5b5056fea26469706673582212202f5fd10882eac1d4b1999c503054f82cfd38a43ae9451ad61b9d12b22f78509564736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000029a2241af62c000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a7829c9e870518040ad8ad91a70b097669b0724e00000000000000000000000096b179f60a32b80c76cc83f4e5a836dec1c3c4240000000000000000000000000000000000000000000000000000000000000010436f726e657273746f6e652e6c616e6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b434f524e455253544f4e45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6145616e6876755155506934316765486a69333470433569796b35767739667250617a436e647871586254342f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Cornerstone.land
Arg [1] : symbol (string): CORNERSTONE
Arg [2] : baseTokenURI (string): https://gateway.pinata.cloud/ipfs/QmaEanhvuQUPi41geHji34pC5iyk5vw9frPazCndxqXbT4/
Arg [3] : mintPriceOne (uint256): 3000000000000000000
Arg [4] : max (uint256): 1000
Arg [5] : mintingEnabled (bool): True
Arg [6] : buyingEnabled (bool): False
Arg [7] : admin (address): 0xA7829C9E870518040ad8ad91A70B097669B0724e
Arg [8] : makerFeeAddress (address): 0x96b179f60A32B80C76Cc83F4e5a836dec1C3C424

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [3] : 00000000000000000000000000000000000000000000000029a2241af62c0000
Arg [4] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000a7829c9e870518040ad8ad91a70b097669b0724e
Arg [8] : 00000000000000000000000096b179f60a32b80c76cc83f4e5a836dec1c3c424
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [10] : 436f726e657273746f6e652e6c616e6400000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [12] : 434f524e455253544f4e45000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [14] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [15] : 732f516d6145616e6876755155506934316765486a69333470433569796b3576
Arg [16] : 7739667250617a436e647871586254342f000000000000000000000000000000


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.