ETH Price: $3,087.77 (-0.02%)
Gas: 5 Gwei

Token

The Labyrinth (MAZE)
 

Overview

Max Total Supply

993 MAZE

Holders

777

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MAZE
0xbaee3e7368223d1ae47c179bf7da2529b67b84fb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheLabyrinth

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 2 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 4 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 7 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 9 of 13 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 13 : TheLabyrinth.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

// @author: doorman                                                                                                                                                                                                                  

contract TheLabyrinth is ERC721, ReentrancyGuard, Ownable {

    event TokenMinted(address indexed _from, uint256 indexed _tokenId);
    event TokenBurned(address indexed _from, uint256 indexed _tokenId);

    string private _customBaseURI;
    string private _suffixURI;
    bool public paused = true;
    uint public claimPeriodEnd = 1640995199;
    uint256[] private maxSupplyByType = [1500, 1200, 900, 600, 200];
    address private stringifyDoorContractAddress = 0xf4794aEB9D243c024cf59B85b30ed94F5014168a;

    mapping(uint256 => uint256) private usedDoors;
    mapping(uint256 => uint256) private whiteDoors;

    using Counters for Counters.Counter;
    Counters.Counter private _whiteTriangleSupply;
    Counters.Counter private _whiteHexagonSupply;
    Counters.Counter private _whiteOctagonSupply;
    Counters.Counter private _whiteDecagonSupply;
    Counters.Counter private _whiteDodecagonSupply;

    Counters.Counter private _blackTriangleSupply;
    Counters.Counter private _blackHexagonSupply;
    Counters.Counter private _blackOctagonSupply;
    Counters.Counter private _blackDecagonSupply;
    Counters.Counter private _blackDodecagonSupply;

    Counters.Counter private _triangleClaimed;
    Counters.Counter private _hexagonClaimed;
    Counters.Counter private _octagonClaimed;
    Counters.Counter private _decagonClaimed;
    Counters.Counter private _dodecagonClaimed;

    Counters.Counter public totalSupply;
    Counters.Counter public whiteMazesSupply;
    Counters.Counter public blackMazesSupply;
    Counters.Counter public claimed;
    Counters.Counter public burned;

    function claim(uint256[] memory doors, uint256[5] memory tokenTypes) public nonReentrant  {
        require(!paused, "The mint is not active at the moment.");
        require(doors.length > 0, "No doors provided.");
        require(block.timestamp < claimPeriodEnd, "The claim period ended.");

        uint256 doorPointsNeeded = tokenTypes[0] + tokenTypes[1] * 2 + tokenTypes[2] * 3 + tokenTypes[3] * 4 + tokenTypes[4] * 5;

        require(doorPointsNeeded > 0, "No token types provided.");
        require((_triangleClaimed.current() + tokenTypes[0]) <= maxSupplyByType[0], "The mint would exceed max supply of triangles.");
        require((_hexagonClaimed.current() + tokenTypes[1]) <= maxSupplyByType[1], "The mint would exceed max supply of hexagons.");
        require((_octagonClaimed.current() + tokenTypes[2]) <= maxSupplyByType[2], "The mint would exceed max supply of octagons.");
        require((_decagonClaimed.current() + tokenTypes[3]) <= maxSupplyByType[3], "The mint would exceed max supply of decagons.");
        require((_dodecagonClaimed.current() + tokenTypes[4]) <= maxSupplyByType[4], "The mint would exceed max supply of dodecagons.");

        uint256 doorPoints = 0;

        /*  Check if no duplicated doors
            Check ownership of doors
            Check if all doors unused */
        for (uint i = 0; i < doors.length; i++) {
            require(ERC721(stringifyDoorContractAddress).ownerOf(doors[i]) == _msgSender(), "You are not the owner of at least one door.");
            require(usedDoors[doors[i]] == 0, "At least one door has already been used to claim.");
            for (uint j = i + 1; j < doors.length; j++) {
                require(doors[i] != doors[j], "Duplicated doors detected.");
            }
            // Calculate door points
            if (whiteDoors[doors[i]] == 1) {
                doorPoints += 5;
            } else {
                doorPoints++;
            }
        }

        // Check if user have enough door points to claim
        require(doorPoints >= doorPointsNeeded, "You don't have enough door points to claim these mazes.");

        // Mint triangles
        for (uint i = 0; i < tokenTypes[0]; i++) {
            _whiteTriangleSupply.increment();
            _triangleClaimed.increment();
            totalSupply.increment();
            whiteMazesSupply.increment();
            claimed.increment();

            _safeMint(_msgSender(),  _triangleClaimed.current());
            emit TokenMinted(_msgSender(), _triangleClaimed.current());
        }

        // Mint hexagons
        for (uint i = 0; i < tokenTypes[1]; i++) {
            _whiteHexagonSupply.increment();
            _hexagonClaimed.increment();
            totalSupply.increment();
            whiteMazesSupply.increment();
            claimed.increment();

            _safeMint(_msgSender(),  1500 + _hexagonClaimed.current());
            emit TokenMinted(_msgSender(), 1500 + _hexagonClaimed.current());
        }

        // Mint octagons
        for (uint i = 0; i < tokenTypes[2]; i++) {
            _whiteOctagonSupply.increment();
            _octagonClaimed.increment();
            totalSupply.increment();
            whiteMazesSupply.increment();
            claimed.increment();

            _safeMint(_msgSender(),  2700 + _octagonClaimed.current());
            emit TokenMinted(_msgSender(), 2700 + _octagonClaimed.current());
        }

        // Mint decagons
        for (uint i = 0; i < tokenTypes[3]; i++) {
            _whiteDecagonSupply.increment();
            _decagonClaimed.increment();
            totalSupply.increment();
            whiteMazesSupply.increment();
            claimed.increment();

            _safeMint(_msgSender(),  3600 + _decagonClaimed.current());
            emit TokenMinted(_msgSender(), 3600 + _decagonClaimed.current());
        }

        // Mint dodecagons
        for (uint i = 0; i < tokenTypes[4]; i++) {
            _whiteDodecagonSupply.increment();
            _dodecagonClaimed.increment();
            totalSupply.increment();
            whiteMazesSupply.increment();
            claimed.increment();

            _safeMint(_msgSender(),  4200 + _dodecagonClaimed.current());
            emit TokenMinted(_msgSender(), 4200 + _dodecagonClaimed.current());
        }

        // Mark doors as used
        for (uint i = 0; i < doors.length; i++) {
            usedDoors[doors[i]] = 1;
        }
    }

    // Burn: takes to maze ids, burns them and mints the firstMazeId in black
    function burn(uint256 firstMazeId, uint256 secondMazeId) public nonReentrant  {
        require(firstMazeId != secondMazeId, "Maze ids should be different.");
        require((firstMazeId > 0 && firstMazeId <= 4400) && (secondMazeId > 0 && secondMazeId <= 4400), "Invalid maze ids. You can only burn white mazes.");
        require(_exists(firstMazeId) && _exists(secondMazeId), "At least one of mazes does not exist (not minted or already burned).");
        require((ownerOf(firstMazeId) == _msgSender()) && (ownerOf(secondMazeId) == _msgSender()), "You should own mazes to burn them.");

        _burn(firstMazeId);
        _burn(secondMazeId);
        _safeMint(_msgSender(),  4400 + firstMazeId);

        emit TokenBurned(_msgSender(), firstMazeId);
        emit TokenBurned(_msgSender(), secondMazeId);
        emit TokenMinted(_msgSender(), 4400 + firstMazeId);

        whiteMazesSupply.decrement();
        whiteMazesSupply.decrement();
        blackMazesSupply.increment();
        totalSupply.decrement();
        burned.increment();
        burned.increment();

        if (secondMazeId < 1501) {
            _whiteTriangleSupply.decrement();
        } else if (secondMazeId > 1500 && secondMazeId <= 2700) {
            _whiteHexagonSupply.decrement();
        } else if (secondMazeId > 2700 && secondMazeId <= 3600) {
            _whiteOctagonSupply.decrement();
        } else if (secondMazeId > 3600 && secondMazeId <= 4200) {
            _whiteDecagonSupply.decrement();
        } else {
            _whiteDodecagonSupply.decrement();
        }

        if (firstMazeId < 1501) {
            _blackTriangleSupply.increment();
        } else if (firstMazeId > 1500 && firstMazeId <= 2700) {
            _blackHexagonSupply.increment();
        } else if (firstMazeId > 2700 && firstMazeId <= 3600) {
            _blackOctagonSupply.increment();
        } else if (firstMazeId > 3600 && firstMazeId <= 4200) {
            _blackDecagonSupply.increment();
        } else {
            _blackDodecagonSupply.increment();
        }
    }

    function isDoorValid(uint256 doorId) public view returns (bool) {
        return usedDoors[doorId] == 0;
    }

    // If the door is not valid, the index of this door id in the returned array will contain 0
    function getValidDoors(uint256[] memory doorIds) public view returns (uint256[] memory) {
        for (uint i = 0; i < doorIds.length; i++) {
            if (usedDoors[doorIds[i]] == 1) {
                doorIds[i] = 0;
            }
        }
        return doorIds;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(_customBaseURI, toString(tokenId), _suffixURI));
    }

    function getWhiteSupplyPerType() public view returns (uint256[5] memory) {
        return [_whiteTriangleSupply.current(), _whiteHexagonSupply.current(), _whiteOctagonSupply.current(), _whiteDecagonSupply.current(), _whiteDodecagonSupply.current()];
    }

    function getBlackSupplyPerType() public view returns (uint256[5] memory) {
        return [_blackTriangleSupply.current(), _blackHexagonSupply.current(), _blackOctagonSupply.current(), _blackDecagonSupply.current(), _blackDodecagonSupply.current()];
    }

    function getSupplyPerType() public view returns (uint256[5] memory) {
        return [
            _whiteTriangleSupply.current() + _blackTriangleSupply.current(), 
            _whiteHexagonSupply.current() + _blackHexagonSupply.current(), 
            _whiteOctagonSupply.current() + _blackOctagonSupply.current(), 
            _whiteDecagonSupply.current() + _blackDecagonSupply.current(), 
            _whiteDodecagonSupply.current() + _blackDodecagonSupply.current()
        ];
    }

    function getClaimedPerType() public view returns (uint256[5] memory) {
        return [_triangleClaimed.current(), _hexagonClaimed.current(), _octagonClaimed.current(), _decagonClaimed.current(), _dodecagonClaimed.current()];
    }

    function flipMintState() public onlyOwner {
        paused = !paused;
    }

    function updateCustomBaseURI(string memory customBaseURI) public onlyOwner {
        _customBaseURI = customBaseURI;
    }

    function updateSuffixURI(string memory suffixURI) public onlyOwner {
        _suffixURI = suffixURI;
    }

    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT license
        // 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 + uint(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    constructor(string memory customBaseURI, string memory suffixURI, uint16[] memory whiteIds) ERC721("The Labyrinth", "MAZE") Ownable() {
        _customBaseURI = customBaseURI;
        _suffixURI = suffixURI;
        
        for (uint i = 0; i < whiteIds.length; i++) {
            whiteDoors[whiteIds[i]] = 1;
        }
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 10000
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"customBaseURI","type":"string"},{"internalType":"string","name":"suffixURI","type":"string"},{"internalType":"uint16[]","name":"whiteIds","type":"uint16[]"}],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"TokenBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"TokenMinted","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blackMazesSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"firstMazeId","type":"uint256"},{"internalType":"uint256","name":"secondMazeId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burned","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"doors","type":"uint256[]"},{"internalType":"uint256[5]","name":"tokenTypes","type":"uint256[5]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimPeriodEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimed","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlackSupplyPerType","outputs":[{"internalType":"uint256[5]","name":"","type":"uint256[5]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimedPerType","outputs":[{"internalType":"uint256[5]","name":"","type":"uint256[5]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupplyPerType","outputs":[{"internalType":"uint256[5]","name":"","type":"uint256[5]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"doorIds","type":"uint256[]"}],"name":"getValidDoors","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteSupplyPerType","outputs":[{"internalType":"uint256[5]","name":"","type":"uint256[5]"}],"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":"doorId","type":"uint256"}],"name":"isDoorValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI","type":"string"}],"name":"updateCustomBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"suffixURI","type":"string"}],"name":"updateSuffixURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteMazesSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"}]

600a805460ff191660011790556361cf997f600b556101206040526105dc60809081526104b060a05261038460c05261025860e05260c8610100526200004a90600c906005620001ff565b50600d80546001600160a01b03191673f4794aeb9d243c024cf59b85b30ed94f5014168a1790553480156200007e57600080fd5b5060405162003c2a38038062003c2a833981016040819052620000a1916200037e565b604080518082018252600d81526c0a8d0ca4098c2c4f2e4d2dce8d609b1b6020808301918252835180850190945260048452634d415a4560e01b908401528151919291620000f29160009162000255565b5080516200010890600190602084019062000255565b50506001600655506200011b33620001ad565b82516200013090600890602086019062000255565b5081516200014690600990602085019062000255565b5060005b8151811015620001a3576001600f60008484815181106200016f576200016f6200052f565b602002602001015161ffff1681526020019081526020016000208190555080806200019a9062000505565b9150506200014a565b505050506200055b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000243579160200282015b8281111562000243578251829061ffff1690559160200191906001019062000220565b5062000251929150620002d2565b5090565b8280546200026390620004c8565b90600052602060002090601f01602090048101928262000287576000855562000243565b82601f10620002a257805160ff191683800117855562000243565b8280016001018555821562000243579182015b8281111562000243578251825591602001919060010190620002b5565b5b80821115620002515760008155600101620002d3565b600082601f830112620002fb57600080fd5b81516001600160401b0381111562000317576200031762000545565b60206200032d601f8301601f1916820162000495565b82815285828487010111156200034257600080fd5b60005b838110156200036257858101830151828201840152820162000345565b83811115620003745760008385840101525b5095945050505050565b6000806000606084860312156200039457600080fd5b83516001600160401b0380821115620003ac57600080fd5b620003ba87838801620002e9565b9450602091508186015181811115620003d257600080fd5b620003e088828901620002e9565b945050604086015181811115620003f657600080fd5b8601601f810188136200040857600080fd5b8051828111156200041d576200041d62000545565b8060051b92506200043084840162000495565b8181528481019083860185850187018c10156200044c57600080fd5b600095508594505b838510156200048457805161ffff811681146200046f578687fd5b83526001949094019391860191860162000454565b508096505050505050509250925092565b604051601f8201601f191681016001600160401b0381118282101715620004c057620004c062000545565b604052919050565b600181811c90821680620004dd57607f821691505b60208210811415620004ff57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200052857634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6136bf806200056b6000396000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c8063715018a61161012a578063a22cb465116100bd578063cf139f121161008c578063e834a83411610071578063e834a8341461045c578063e985e9c514610466578063f2fde38b146104a257600080fd5b8063cf139f1214610429578063dff1c5cc1461043c57600080fd5b8063a22cb465146103dd578063b390c0ab146103f0578063b88d4fde14610403578063c87b56dd1461041657600080fd5b806382bebaaf116100f957806382bebaaf146103b45780638da5cb5b146103bc57806395d89b41146103cd5780639961429b146103d557600080fd5b8063715018a61461038557806372ba8f0b1461038d57806373f425611461039757806379a10920146103a157600080fd5b80633b31ad71116101bd5780635b3c8adb1161018c5780636352211e116101715780636352211e1461033e5780636b95c6a81461035157806370a082311461037257600080fd5b80635b3c8adb146103295780635c975abb1461033157600080fd5b80633b31ad71146102f05780633da082a01461030557806342842e0e1461030e57806359c74f291461032157600080fd5b806317ae9966116101f957806317ae9966146102a857806318160ddd146102c057806323b872dd146102ca5780633101af0f146102dd57600080fd5b806301ffc9a71461022b57806306fdde0314610253578063081812fc14610268578063095ea7b314610293575b600080fd5b61023e6102393660046130f5565b6104b5565b60405190151581526020015b60405180910390f35b61025b61059a565b60405161024a91906133b2565b61027b610276366004613178565b61062c565b6040516001600160a01b03909116815260200161024a565b6102a66102a1366004613000565b6106d7565b005b6020546102b29081565b60405190815260200161024a565b601f546102b29081565b6102a66102d8366004612f0c565b610809565b6102a66102eb36600461312f565b610890565b6102f8610901565b60405161024a919061333d565b6102b2600b5481565b6102a661031c366004612f0c565b61095c565b6102a6610977565b6102f8610a03565b600a5461023e9060ff1681565b61027b61034c366004613178565b610a98565b61023e61035f366004613178565b6000908152600e60205260409020541590565b6102b2610380366004612e92565b610b23565b6102a6610bbd565b6021546102b29081565b6023546102b29081565b6102a66103af36600461312f565b610c23565b6102f8610c90565b6007546001600160a01b031661027b565b61025b610ce4565b6102f8610cf3565b6102a66103eb366004612fcd565b610d47565b6102a66103fe366004613191565b610e2a565b6102a6610411366004612f4d565b611315565b61025b610424366004613178565b6113a3565b6102a6610437366004613061565b611465565b61044f61044a36600461302c565b6120f8565b60405161024a919061336e565b6022546102b29081565b61023e610474366004612ed3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102a66104b0366004612e92565b612175565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061054857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061059457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600080546105a9906134e9565b80601f01602080910402602001604051908101604052809291908181526020018280546105d5906134e9565b80156106225780601f106105f757610100808354040283529160200191610622565b820191906000526020600020905b81548152906001019060200180831161060557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e282610a98565b9050806001600160a01b0316836001600160a01b0316141561076c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106b2565b336001600160a01b038216148061078857506107888133610474565b6107fa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b2565b6108048383612257565b505050565b61081333826122dd565b6108855760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106b2565b6108048383836123e5565b6007546001600160a01b031633146108ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b2565b80516108fd906009906020840190612cdf565b5050565b610909612d63565b6040518060a0016040528061091d601a5490565b815260200161092b601b5490565b8152602001610939601c5490565b8152602001610947601d5490565b8152602001610955601e5490565b9052919050565b61080483838360405180602001604052806000815250611315565b6007546001600160a01b031633146109d15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b2565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b610a0b612d63565b6040518060a00160405280610a1f60155490565b601054610a2c919061343d565b8152602001610a3a60165490565b601154610a47919061343d565b8152602001610a5560175490565b601254610a62919061343d565b8152602001610a7060185490565b601354610a7d919061343d565b8152602001610a8b60195490565b601454610955919061343d565b6000818152600260205260408120546001600160a01b0316806105945760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106b2565b60006001600160a01b038216610ba15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106b2565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610c175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b2565b610c2160006125ca565b565b6007546001600160a01b03163314610c7d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b2565b80516108fd906008906020840190612cdf565b610c98612d63565b6040518060a00160405280610cac60155490565b8152602001610cba60165490565b8152602001610cc860175490565b8152602001610cd660185490565b815260200161095560195490565b6060600180546105a9906134e9565b610cfb612d63565b6040518060a00160405280610d0f60105490565b8152602001610d1d60115490565b8152602001610d2b60125490565b8152602001610d3960135490565b815260200161095560145490565b6001600160a01b038216331415610da05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b2565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026006541415610e7d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b2565b600260065581811415610ed25760405162461bcd60e51b815260206004820152601d60248201527f4d617a65206964732073686f756c6420626520646966666572656e742e00000060448201526064016106b2565b600082118015610ee457506111308211155b8015610efd5750600081118015610efd57506111308111155b610f6f5760405162461bcd60e51b815260206004820152603060248201527f496e76616c6964206d617a65206964732e20596f752063616e206f6e6c79206260448201527f75726e207768697465206d617a65732e0000000000000000000000000000000060648201526084016106b2565b6000828152600260205260409020546001600160a01b031615158015610fab57506000818152600260205260409020546001600160a01b031615155b6110445760405162461bcd60e51b8152602060048201526044602482018190527f4174206c65617374206f6e65206f66206d617a657320646f6573206e6f742065908201527f7869737420286e6f74206d696e746564206f7220616c7265616479206275726e60648201527f6564292e00000000000000000000000000000000000000000000000000000000608482015260a4016106b2565b3361104e83610a98565b6001600160a01b031614801561107457503361106982610a98565b6001600160a01b0316145b6110e65760405162461bcd60e51b815260206004820152602260248201527f596f752073686f756c64206f776e206d617a657320746f206275726e2074686560448201527f6d2e00000000000000000000000000000000000000000000000000000000000060648201526084016106b2565b6110ef82612634565b6110f881612634565b61110d336111088461113061343d565b6126e7565b604051829033907f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa290600090a3604051819033907f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa290600090a36111738261113061343d565b60405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a36111a86020612701565b6111b26020612701565b6111c0602180546001019055565b6111ca601f612701565b6111d8602380546001019055565b6111e6602380546001019055565b6105dd8110156111ff576111fa6010612701565b61126f565b6105dc811180156112125750610a8c8111155b15611221576111fa6011612701565b610a8c811180156112345750610e108111155b15611243576111fa6012612701565b610e108111801561125657506110688111155b15611265576111fa6013612701565b61126f6014612701565b6105dd82101561128c57611287601580546001019055565b61130c565b6105dc8211801561129f5750610a8c8211155b156112b257611287601680546001019055565b610a8c821180156112c55750610e108211155b156112d857611287601780546001019055565b610e10821180156112eb57506110688211155b156112fe57611287601880546001019055565b61130c601980546001019055565b50506001600655565b61131f33836122dd565b6113915760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106b2565b61139d84848484612776565b50505050565b6000818152600260205260409020546060906001600160a01b03166114305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106b2565b600861143b836127ff565b600960405160200161144f939291906132ce565b6040516020818303038152906040529050919050565b600260065414156114b85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b2565b6002600655600a5460ff16156115365760405162461bcd60e51b815260206004820152602560248201527f546865206d696e74206973206e6f742061637469766520617420746865206d6f60448201527f6d656e742e00000000000000000000000000000000000000000000000000000060648201526084016106b2565b60008251116115875760405162461bcd60e51b815260206004820152601260248201527f4e6f20646f6f72732070726f76696465642e000000000000000000000000000060448201526064016106b2565b600b5442106115d85760405162461bcd60e51b815260206004820152601760248201527f54686520636c61696d20706572696f6420656e6465642e00000000000000000060448201526064016106b2565b60808101516000906115eb906005613469565b60608301516115fb906004613469565b604084015161160b906003613469565b602085015161161b906002613469565b8551611627919061343d565b611631919061343d565b61163b919061343d565b611645919061343d565b9050600081116116975760405162461bcd60e51b815260206004820152601860248201527f4e6f20746f6b656e2074797065732070726f76696465642e000000000000000060448201526064016106b2565b600c6000815481106116ab576116ab6135e8565b6000918252602090912001548251601a546116c6919061343d565b111561173a5760405162461bcd60e51b815260206004820152602e60248201527f546865206d696e7420776f756c6420657863656564206d617820737570706c7960448201527f206f6620747269616e676c65732e00000000000000000000000000000000000060648201526084016106b2565b600c60018154811061174e5761174e6135e8565b6000918252602091829020015490830151601b5461176c919061343d565b11156117e05760405162461bcd60e51b815260206004820152602d60248201527f546865206d696e7420776f756c6420657863656564206d617820737570706c7960448201527f206f662068657861676f6e732e0000000000000000000000000000000000000060648201526084016106b2565b600c6002815481106117f4576117f46135e8565b6000918252602090912001546040830151601c54611812919061343d565b11156118865760405162461bcd60e51b815260206004820152602d60248201527f546865206d696e7420776f756c6420657863656564206d617820737570706c7960448201527f206f66206f637461676f6e732e0000000000000000000000000000000000000060648201526084016106b2565b600c60038154811061189a5761189a6135e8565b6000918252602090912001546060830151601d546118b8919061343d565b111561192c5760405162461bcd60e51b815260206004820152602d60248201527f546865206d696e7420776f756c6420657863656564206d617820737570706c7960448201527f206f662064656361676f6e732e0000000000000000000000000000000000000060648201526084016106b2565b600c600481548110611940576119406135e8565b6000918252602090912001546080830151601e5461195e919061343d565b11156119d25760405162461bcd60e51b815260206004820152602f60248201527f546865206d696e7420776f756c6420657863656564206d617820737570706c7960448201527f206f6620646f64656361676f6e732e000000000000000000000000000000000060648201526084016106b2565b6000805b8451811015611cb157600d54855133916001600160a01b031690636352211e90889085908110611a0857611a086135e8565b60200260200101516040518263ffffffff1660e01b8152600401611a2e91815260200190565b60206040518083038186803b158015611a4657600080fd5b505afa158015611a5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a7e9190612eb6565b6001600160a01b031614611afa5760405162461bcd60e51b815260206004820152602b60248201527f596f7520617265206e6f7420746865206f776e6572206f66206174206c65617360448201527f74206f6e6520646f6f722e00000000000000000000000000000000000000000060648201526084016106b2565b600e6000868381518110611b1057611b106135e8565b6020026020010151815260200190815260200160002054600014611b9c5760405162461bcd60e51b815260206004820152603160248201527f4174206c65617374206f6e6520646f6f722068617320616c726561647920626560448201527f656e207573656420746f20636c61696d2e00000000000000000000000000000060648201526084016106b2565b6000611ba982600161343d565b90505b8551811015611c4957858181518110611bc757611bc76135e8565b6020026020010151868381518110611be157611be16135e8565b60200260200101511415611c375760405162461bcd60e51b815260206004820152601a60248201527f4475706c69636174656420646f6f72732064657465637465642e00000000000060448201526064016106b2565b80611c418161353d565b915050611bac565b50600f6000868381518110611c6057611c606135e8565b602002602001015181526020019081526020016000205460011415611c9157611c8a60058361343d565b9150611c9f565b81611c9b8161353d565b9250505b80611ca98161353d565b9150506119d6565b5081811015611d285760405162461bcd60e51b815260206004820152603760248201527f596f7520646f6e2774206861766520656e6f75676820646f6f7220706f696e7460448201527f7320746f20636c61696d207468657365206d617a65732e00000000000000000060648201526084016106b2565b60005b8351811015611dc657611d42601080546001019055565b611d50601a80546001019055565b611d5e601f80546001019055565b611d6c602080546001019055565b611d7a602280546001019055565b611d8633601a546126e7565b601a5460405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a380611dbe8161353d565b915050611d2b565b5060005b6020840151811015611e7b57611de4601180546001019055565b611df2601b80546001019055565b611e00601f80546001019055565b611e0e602080546001019055565b611e1c602280546001019055565b611e2f33601b54611108906105dc61343d565b601b54611e3e906105dc61343d565b60405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a380611e738161353d565b915050611dca565b5060005b6040840151811015611f3057611e99601280546001019055565b611ea7601c80546001019055565b611eb5601f80546001019055565b611ec3602080546001019055565b611ed1602280546001019055565b611ee433601c5461110890610a8c61343d565b601c54611ef390610a8c61343d565b60405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a380611f288161353d565b915050611e7f565b5060005b6060840151811015611fe557611f4e601380546001019055565b611f5c601d80546001019055565b611f6a601f80546001019055565b611f78602080546001019055565b611f86602280546001019055565b611f9933601d5461110890610e1061343d565b601d54611fa890610e1061343d565b60405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a380611fdd8161353d565b915050611f34565b5060005b608084015181101561209a57612003601480546001019055565b612011601e80546001019055565b61201f601f80546001019055565b61202d602080546001019055565b61203b602280546001019055565b61204e33601e546111089061106861343d565b601e5461205d9061106861343d565b60405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3806120928161353d565b915050611fe9565b5060005b84518110156120ec576001600e60008784815181106120bf576120bf6135e8565b602002602001015181526020019081526020016000208190555080806120e49061353d565b91505061209e565b50506001600655505050565b606060005b825181101561216e57600e600084838151811061211c5761211c6135e8565b60200260200101518152602001908152602001600020546001141561215c57600083828151811061214f5761214f6135e8565b6020026020010181815250505b806121668161353d565b9150506120fd565b5090919050565b6007546001600160a01b031633146121cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b2565b6001600160a01b03811661224b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106b2565b612254816125ca565b50565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906122a482610a98565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166123675760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106b2565b600061237283610a98565b9050806001600160a01b0316846001600160a01b031614806123ad5750836001600160a01b03166123a28461062c565b6001600160a01b0316145b806123dd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166123f882610a98565b6001600160a01b0316146124745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106b2565b6001600160a01b0382166124ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106b2565b6124fa600082612257565b6001600160a01b03831660009081526003602052604081208054600192906125239084906134a6565b90915550506001600160a01b038216600090815260036020526040812080546001929061255190849061343d565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061263f82610a98565b905061264c600083612257565b6001600160a01b03811660009081526003602052604081208054600192906126759084906134a6565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6108fd828260405180602001604052806000815250612931565b8054806127505760405162461bcd60e51b815260206004820152601b60248201527f436f756e7465723a2064656372656d656e74206f766572666c6f77000000000060448201526064016106b2565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055565b6127818484846123e5565b61278d848484846129ba565b61139d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106b2565b60608161283f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561286957806128538161353d565b91506128629050600a83613455565b9150612843565b60008167ffffffffffffffff81111561288457612884613617565b6040519080825280601f01601f1916602001820160405280156128ae576020820181803683370190505b5090505b84156123dd576128c36001836134a6565b91506128d0600a86613576565b6128db90603061343d565b60f81b8183815181106128f0576128f06135e8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061292a600a86613455565b94506128b2565b61293b8383612b85565b61294860008484846129ba565b6108045760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106b2565b60006001600160a01b0384163b15612b7a576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612a17903390899088908890600401613301565b602060405180830381600087803b158015612a3157600080fd5b505af1925050508015612a7f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612a7c91810190613112565b60015b612b2f573d808015612aad576040519150601f19603f3d011682016040523d82523d6000602084013e612ab2565b606091505b508051612b275760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106b2565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506123dd565b506001949350505050565b6001600160a01b038216612bdb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b2565b6000818152600260205260409020546001600160a01b031615612c405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b2565b6001600160a01b0382166000908152600360205260408120805460019290612c6990849061343d565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612ceb906134e9565b90600052602060002090601f016020900481019282612d0d5760008555612d53565b82601f10612d2657805160ff1916838001178555612d53565b82800160010185558215612d53579182015b82811115612d53578251825591602001919060010190612d38565b50612d5f929150612d81565b5090565b6040518060a001604052806005906020820280368337509192915050565b5b80821115612d5f5760008155600101612d82565b600067ffffffffffffffff831115612db057612db0613617565b612de160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116016133ee565b9050828152838383011115612df557600080fd5b828260208301376000602084830101529392505050565b600082601f830112612e1d57600080fd5b8135602067ffffffffffffffff821115612e3957612e39613617565b8160051b612e488282016133ee565b838152828101908684018388018501891015612e6357600080fd5b600093505b85841015612e86578035835260019390930192918401918401612e68565b50979650505050505050565b600060208284031215612ea457600080fd5b8135612eaf81613646565b9392505050565b600060208284031215612ec857600080fd5b8151612eaf81613646565b60008060408385031215612ee657600080fd5b8235612ef181613646565b91506020830135612f0181613646565b809150509250929050565b600080600060608486031215612f2157600080fd5b8335612f2c81613646565b92506020840135612f3c81613646565b929592945050506040919091013590565b60008060008060808587031215612f6357600080fd5b8435612f6e81613646565b93506020850135612f7e81613646565b925060408501359150606085013567ffffffffffffffff811115612fa157600080fd5b8501601f81018713612fb257600080fd5b612fc187823560208401612d96565b91505092959194509250565b60008060408385031215612fe057600080fd5b8235612feb81613646565b915060208301358015158114612f0157600080fd5b6000806040838503121561301357600080fd5b823561301e81613646565b946020939093013593505050565b60006020828403121561303e57600080fd5b813567ffffffffffffffff81111561305557600080fd5b6123dd84828501612e0c565b60008060c0838503121561307457600080fd5b823567ffffffffffffffff81111561308b57600080fd5b61309785828601612e0c565b925050602084603f8501126130ab57600080fd5b6130b36133c5565b808286018760c0880111156130c757600080fd5b60005b60058110156130e7578135845292840192908401906001016130ca565b509497909650945050505050565b60006020828403121561310757600080fd5b8135612eaf8161365b565b60006020828403121561312457600080fd5b8151612eaf8161365b565b60006020828403121561314157600080fd5b813567ffffffffffffffff81111561315857600080fd5b8201601f8101841361316957600080fd5b6123dd84823560208401612d96565b60006020828403121561318a57600080fd5b5035919050565b600080604083850312156131a457600080fd5b50508035926020909101359150565b600081518084526131cb8160208601602086016134bd565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8054600090600181811c908083168061321757607f831692505b6020808410821415613252577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b8180156132665760018114613295576132c2565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284890196506132c2565b60008881526020902060005b868110156132ba5781548b8201529085019083016132a1565b505084890196505b50505050505092915050565b60006132da82866131fd565b84516132ea8183602089016134bd565b6132f6818301866131fd565b979650505050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261333360808301846131b3565b9695505050505050565b60a08101818360005b6005811015613365578151835260209283019290910190600101613346565b50505092915050565b6020808252825182820181905260009190848201906040850190845b818110156133a65783518352928401929184019160010161338a565b50909695505050505050565b602081526000612eaf60208301846131b3565b60405160a0810167ffffffffffffffff811182821017156133e8576133e8613617565b60405290565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561343557613435613617565b604052919050565b600082198211156134505761345061358a565b500190565b600082613464576134646135b9565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a1576134a161358a565b500290565b6000828210156134b8576134b861358a565b500390565b60005b838110156134d85781810151838201526020016134c0565b8381111561139d5750506000910152565b600181811c908216806134fd57607f821691505b60208210811415613537577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561356f5761356f61358a565b5060010190565b600082613585576135856135b9565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b038116811461225457600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461225457600080fdfea2646970667358221220360138a121c11352fd29c1f10a61df7ae377df9c5af2285fbc7ce00590dcfd2a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5375683552506d714c4564774c375844333843335a575174764244686a506d5a515a5a61415542544d6a51392f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000001ca00000000000000000000000000000000000000000000000000000000000001e8000000000000000000000000000000000000000000000000000000000000026e000000000000000000000000000000000000000000000000000000000000027400000000000000000000000000000000000000000000000000000000000002b200000000000000000000000000000000000000000000000000000000000002b900000000000000000000000000000000000000000000000000000000000002f50000000000000000000000000000000000000000000000000000000000000348000000000000000000000000000000000000000000000000000000000000035a000000000000000000000000000000000000000000000000000000000000036f000000000000000000000000000000000000000000000000000000000000037500000000000000000000000000000000000000000000000000000000000003b500000000000000000000000000000000000000000000000000000000000003c7000000000000000000000000000000000000000000000000000000000000048b00000000000000000000000000000000000000000000000000000000000004dd000000000000000000000000000000000000000000000000000000000000053c0000000000000000000000000000000000000000000000000000000000000566000000000000000000000000000000000000000000000000000000000000058700000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000005fb00000000000000000000000000000000000000000000000000000000000006f10000000000000000000000000000000000000000000000000000000000000717000000000000000000000000000000000000000000000000000000000000072100000000000000000000000000000000000000000000000000000000000007b7000000000000000000000000000000000000000000000000000000000000081c000000000000000000000000000000000000000000000000000000000000084800000000000000000000000000000000000000000000000000000000000009210000000000000000000000000000000000000000000000000000000000000949000000000000000000000000000000000000000000000000000000000000096900000000000000000000000000000000000000000000000000000000000009d30000000000000000000000000000000000000000000000000000000000000a310000000000000000000000000000000000000000000000000000000000000a5c0000000000000000000000000000000000000000000000000000000000000adc0000000000000000000000000000000000000000000000000000000000000b470000000000000000000000000000000000000000000000000000000000000b6b0000000000000000000000000000000000000000000000000000000000000c170000000000000000000000000000000000000000000000000000000000000c510000000000000000000000000000000000000000000000000000000000000c650000000000000000000000000000000000000000000000000000000000000d0b0000000000000000000000000000000000000000000000000000000000000d260000000000000000000000000000000000000000000000000000000000000d780000000000000000000000000000000000000000000000000000000000000ec10000000000000000000000000000000000000000000000000000000000000f6c0000000000000000000000000000000000000000000000000000000000000fa60000000000000000000000000000000000000000000000000000000000000fc80000000000000000000000000000000000000000000000000000000000000ff7000000000000000000000000000000000000000000000000000000000000101f00000000000000000000000000000000000000000000000000000000000010660000000000000000000000000000000000000000000000000000000000001087000000000000000000000000000000000000000000000000000000000000111100000000000000000000000000000000000000000000000000000000000011140000000000000000000000000000000000000000000000000000000000001120000000000000000000000000000000000000000000000000000000000000123e000000000000000000000000000000000000000000000000000000000000124c0000000000000000000000000000000000000000000000000000000000001361000000000000000000000000000000000000000000000000000000000000150700000000000000000000000000000000000000000000000000000000000015ac0000000000000000000000000000000000000000000000000000000000001612000000000000000000000000000000000000000000000000000000000000167500000000000000000000000000000000000000000000000000000000000017570000000000000000000000000000000000000000000000000000000000001848000000000000000000000000000000000000000000000000000000000000197f0000000000000000000000000000000000000000000000000000000000001a440000000000000000000000000000000000000000000000000000000000001aad0000000000000000000000000000000000000000000000000000000000001ad90000000000000000000000000000000000000000000000000000000000001b410000000000000000000000000000000000000000000000000000000000001b880000000000000000000000000000000000000000000000000000000000001b960000000000000000000000000000000000000000000000000000000000001bd00000000000000000000000000000000000000000000000000000000000001c0d0000000000000000000000000000000000000000000000000000000000001c120000000000000000000000000000000000000000000000000000000000001ca40000000000000000000000000000000000000000000000000000000000001d200000000000000000000000000000000000000000000000000000000000001d2b0000000000000000000000000000000000000000000000000000000000001d3e0000000000000000000000000000000000000000000000000000000000001d8c0000000000000000000000000000000000000000000000000000000000001d910000000000000000000000000000000000000000000000000000000000001e0a0000000000000000000000000000000000000000000000000000000000001e110000000000000000000000000000000000000000000000000000000000001e440000000000000000000000000000000000000000000000000000000000001e570000000000000000000000000000000000000000000000000000000000001e610000000000000000000000000000000000000000000000000000000000001ece0000000000000000000000000000000000000000000000000000000000001ef30000000000000000000000000000000000000000000000000000000000001f0b0000000000000000000000000000000000000000000000000000000000001f6e0000000000000000000000000000000000000000000000000000000000001f9c0000000000000000000000000000000000000000000000000000000000001faa000000000000000000000000000000000000000000000000000000000000201b000000000000000000000000000000000000000000000000000000000000212f00000000000000000000000000000000000000000000000000000000000021ac00000000000000000000000000000000000000000000000000000000000021d300000000000000000000000000000000000000000000000000000000000022b200000000000000000000000000000000000000000000000000000000000022c700000000000000000000000000000000000000000000000000000000000022fe00000000000000000000000000000000000000000000000000000000000023a100000000000000000000000000000000000000000000000000000000000023d00000000000000000000000000000000000000000000000000000000000002425000000000000000000000000000000000000000000000000000000000000244200000000000000000000000000000000000000000000000000000000000024d5000000000000000000000000000000000000000000000000000000000000250d000000000000000000000000000000000000000000000000000000000000251f000000000000000000000000000000000000000000000000000000000000252a00000000000000000000000000000000000000000000000000000000000025a10000000000000000000000000000000000000000000000000000000000002620000000000000000000000000000000000000000000000000000000000000264f0000000000000000000000000000000000000000000000000000000000002694

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102265760003560e01c8063715018a61161012a578063a22cb465116100bd578063cf139f121161008c578063e834a83411610071578063e834a8341461045c578063e985e9c514610466578063f2fde38b146104a257600080fd5b8063cf139f1214610429578063dff1c5cc1461043c57600080fd5b8063a22cb465146103dd578063b390c0ab146103f0578063b88d4fde14610403578063c87b56dd1461041657600080fd5b806382bebaaf116100f957806382bebaaf146103b45780638da5cb5b146103bc57806395d89b41146103cd5780639961429b146103d557600080fd5b8063715018a61461038557806372ba8f0b1461038d57806373f425611461039757806379a10920146103a157600080fd5b80633b31ad71116101bd5780635b3c8adb1161018c5780636352211e116101715780636352211e1461033e5780636b95c6a81461035157806370a082311461037257600080fd5b80635b3c8adb146103295780635c975abb1461033157600080fd5b80633b31ad71146102f05780633da082a01461030557806342842e0e1461030e57806359c74f291461032157600080fd5b806317ae9966116101f957806317ae9966146102a857806318160ddd146102c057806323b872dd146102ca5780633101af0f146102dd57600080fd5b806301ffc9a71461022b57806306fdde0314610253578063081812fc14610268578063095ea7b314610293575b600080fd5b61023e6102393660046130f5565b6104b5565b60405190151581526020015b60405180910390f35b61025b61059a565b60405161024a91906133b2565b61027b610276366004613178565b61062c565b6040516001600160a01b03909116815260200161024a565b6102a66102a1366004613000565b6106d7565b005b6020546102b29081565b60405190815260200161024a565b601f546102b29081565b6102a66102d8366004612f0c565b610809565b6102a66102eb36600461312f565b610890565b6102f8610901565b60405161024a919061333d565b6102b2600b5481565b6102a661031c366004612f0c565b61095c565b6102a6610977565b6102f8610a03565b600a5461023e9060ff1681565b61027b61034c366004613178565b610a98565b61023e61035f366004613178565b6000908152600e60205260409020541590565b6102b2610380366004612e92565b610b23565b6102a6610bbd565b6021546102b29081565b6023546102b29081565b6102a66103af36600461312f565b610c23565b6102f8610c90565b6007546001600160a01b031661027b565b61025b610ce4565b6102f8610cf3565b6102a66103eb366004612fcd565b610d47565b6102a66103fe366004613191565b610e2a565b6102a6610411366004612f4d565b611315565b61025b610424366004613178565b6113a3565b6102a6610437366004613061565b611465565b61044f61044a36600461302c565b6120f8565b60405161024a919061336e565b6022546102b29081565b61023e610474366004612ed3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102a66104b0366004612e92565b612175565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061054857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061059457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600080546105a9906134e9565b80601f01602080910402602001604051908101604052809291908181526020018280546105d5906134e9565b80156106225780601f106105f757610100808354040283529160200191610622565b820191906000526020600020905b81548152906001019060200180831161060557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e282610a98565b9050806001600160a01b0316836001600160a01b0316141561076c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106b2565b336001600160a01b038216148061078857506107888133610474565b6107fa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b2565b6108048383612257565b505050565b61081333826122dd565b6108855760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106b2565b6108048383836123e5565b6007546001600160a01b031633146108ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b2565b80516108fd906009906020840190612cdf565b5050565b610909612d63565b6040518060a0016040528061091d601a5490565b815260200161092b601b5490565b8152602001610939601c5490565b8152602001610947601d5490565b8152602001610955601e5490565b9052919050565b61080483838360405180602001604052806000815250611315565b6007546001600160a01b031633146109d15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b2565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b610a0b612d63565b6040518060a00160405280610a1f60155490565b601054610a2c919061343d565b8152602001610a3a60165490565b601154610a47919061343d565b8152602001610a5560175490565b601254610a62919061343d565b8152602001610a7060185490565b601354610a7d919061343d565b8152602001610a8b60195490565b601454610955919061343d565b6000818152600260205260408120546001600160a01b0316806105945760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106b2565b60006001600160a01b038216610ba15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106b2565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610c175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b2565b610c2160006125ca565b565b6007546001600160a01b03163314610c7d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b2565b80516108fd906008906020840190612cdf565b610c98612d63565b6040518060a00160405280610cac60155490565b8152602001610cba60165490565b8152602001610cc860175490565b8152602001610cd660185490565b815260200161095560195490565b6060600180546105a9906134e9565b610cfb612d63565b6040518060a00160405280610d0f60105490565b8152602001610d1d60115490565b8152602001610d2b60125490565b8152602001610d3960135490565b815260200161095560145490565b6001600160a01b038216331415610da05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b2565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026006541415610e7d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b2565b600260065581811415610ed25760405162461bcd60e51b815260206004820152601d60248201527f4d617a65206964732073686f756c6420626520646966666572656e742e00000060448201526064016106b2565b600082118015610ee457506111308211155b8015610efd5750600081118015610efd57506111308111155b610f6f5760405162461bcd60e51b815260206004820152603060248201527f496e76616c6964206d617a65206964732e20596f752063616e206f6e6c79206260448201527f75726e207768697465206d617a65732e0000000000000000000000000000000060648201526084016106b2565b6000828152600260205260409020546001600160a01b031615158015610fab57506000818152600260205260409020546001600160a01b031615155b6110445760405162461bcd60e51b8152602060048201526044602482018190527f4174206c65617374206f6e65206f66206d617a657320646f6573206e6f742065908201527f7869737420286e6f74206d696e746564206f7220616c7265616479206275726e60648201527f6564292e00000000000000000000000000000000000000000000000000000000608482015260a4016106b2565b3361104e83610a98565b6001600160a01b031614801561107457503361106982610a98565b6001600160a01b0316145b6110e65760405162461bcd60e51b815260206004820152602260248201527f596f752073686f756c64206f776e206d617a657320746f206275726e2074686560448201527f6d2e00000000000000000000000000000000000000000000000000000000000060648201526084016106b2565b6110ef82612634565b6110f881612634565b61110d336111088461113061343d565b6126e7565b604051829033907f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa290600090a3604051819033907f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa290600090a36111738261113061343d565b60405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a36111a86020612701565b6111b26020612701565b6111c0602180546001019055565b6111ca601f612701565b6111d8602380546001019055565b6111e6602380546001019055565b6105dd8110156111ff576111fa6010612701565b61126f565b6105dc811180156112125750610a8c8111155b15611221576111fa6011612701565b610a8c811180156112345750610e108111155b15611243576111fa6012612701565b610e108111801561125657506110688111155b15611265576111fa6013612701565b61126f6014612701565b6105dd82101561128c57611287601580546001019055565b61130c565b6105dc8211801561129f5750610a8c8211155b156112b257611287601680546001019055565b610a8c821180156112c55750610e108211155b156112d857611287601780546001019055565b610e10821180156112eb57506110688211155b156112fe57611287601880546001019055565b61130c601980546001019055565b50506001600655565b61131f33836122dd565b6113915760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106b2565b61139d84848484612776565b50505050565b6000818152600260205260409020546060906001600160a01b03166114305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106b2565b600861143b836127ff565b600960405160200161144f939291906132ce565b6040516020818303038152906040529050919050565b600260065414156114b85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b2565b6002600655600a5460ff16156115365760405162461bcd60e51b815260206004820152602560248201527f546865206d696e74206973206e6f742061637469766520617420746865206d6f60448201527f6d656e742e00000000000000000000000000000000000000000000000000000060648201526084016106b2565b60008251116115875760405162461bcd60e51b815260206004820152601260248201527f4e6f20646f6f72732070726f76696465642e000000000000000000000000000060448201526064016106b2565b600b5442106115d85760405162461bcd60e51b815260206004820152601760248201527f54686520636c61696d20706572696f6420656e6465642e00000000000000000060448201526064016106b2565b60808101516000906115eb906005613469565b60608301516115fb906004613469565b604084015161160b906003613469565b602085015161161b906002613469565b8551611627919061343d565b611631919061343d565b61163b919061343d565b611645919061343d565b9050600081116116975760405162461bcd60e51b815260206004820152601860248201527f4e6f20746f6b656e2074797065732070726f76696465642e000000000000000060448201526064016106b2565b600c6000815481106116ab576116ab6135e8565b6000918252602090912001548251601a546116c6919061343d565b111561173a5760405162461bcd60e51b815260206004820152602e60248201527f546865206d696e7420776f756c6420657863656564206d617820737570706c7960448201527f206f6620747269616e676c65732e00000000000000000000000000000000000060648201526084016106b2565b600c60018154811061174e5761174e6135e8565b6000918252602091829020015490830151601b5461176c919061343d565b11156117e05760405162461bcd60e51b815260206004820152602d60248201527f546865206d696e7420776f756c6420657863656564206d617820737570706c7960448201527f206f662068657861676f6e732e0000000000000000000000000000000000000060648201526084016106b2565b600c6002815481106117f4576117f46135e8565b6000918252602090912001546040830151601c54611812919061343d565b11156118865760405162461bcd60e51b815260206004820152602d60248201527f546865206d696e7420776f756c6420657863656564206d617820737570706c7960448201527f206f66206f637461676f6e732e0000000000000000000000000000000000000060648201526084016106b2565b600c60038154811061189a5761189a6135e8565b6000918252602090912001546060830151601d546118b8919061343d565b111561192c5760405162461bcd60e51b815260206004820152602d60248201527f546865206d696e7420776f756c6420657863656564206d617820737570706c7960448201527f206f662064656361676f6e732e0000000000000000000000000000000000000060648201526084016106b2565b600c600481548110611940576119406135e8565b6000918252602090912001546080830151601e5461195e919061343d565b11156119d25760405162461bcd60e51b815260206004820152602f60248201527f546865206d696e7420776f756c6420657863656564206d617820737570706c7960448201527f206f6620646f64656361676f6e732e000000000000000000000000000000000060648201526084016106b2565b6000805b8451811015611cb157600d54855133916001600160a01b031690636352211e90889085908110611a0857611a086135e8565b60200260200101516040518263ffffffff1660e01b8152600401611a2e91815260200190565b60206040518083038186803b158015611a4657600080fd5b505afa158015611a5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a7e9190612eb6565b6001600160a01b031614611afa5760405162461bcd60e51b815260206004820152602b60248201527f596f7520617265206e6f7420746865206f776e6572206f66206174206c65617360448201527f74206f6e6520646f6f722e00000000000000000000000000000000000000000060648201526084016106b2565b600e6000868381518110611b1057611b106135e8565b6020026020010151815260200190815260200160002054600014611b9c5760405162461bcd60e51b815260206004820152603160248201527f4174206c65617374206f6e6520646f6f722068617320616c726561647920626560448201527f656e207573656420746f20636c61696d2e00000000000000000000000000000060648201526084016106b2565b6000611ba982600161343d565b90505b8551811015611c4957858181518110611bc757611bc76135e8565b6020026020010151868381518110611be157611be16135e8565b60200260200101511415611c375760405162461bcd60e51b815260206004820152601a60248201527f4475706c69636174656420646f6f72732064657465637465642e00000000000060448201526064016106b2565b80611c418161353d565b915050611bac565b50600f6000868381518110611c6057611c606135e8565b602002602001015181526020019081526020016000205460011415611c9157611c8a60058361343d565b9150611c9f565b81611c9b8161353d565b9250505b80611ca98161353d565b9150506119d6565b5081811015611d285760405162461bcd60e51b815260206004820152603760248201527f596f7520646f6e2774206861766520656e6f75676820646f6f7220706f696e7460448201527f7320746f20636c61696d207468657365206d617a65732e00000000000000000060648201526084016106b2565b60005b8351811015611dc657611d42601080546001019055565b611d50601a80546001019055565b611d5e601f80546001019055565b611d6c602080546001019055565b611d7a602280546001019055565b611d8633601a546126e7565b601a5460405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a380611dbe8161353d565b915050611d2b565b5060005b6020840151811015611e7b57611de4601180546001019055565b611df2601b80546001019055565b611e00601f80546001019055565b611e0e602080546001019055565b611e1c602280546001019055565b611e2f33601b54611108906105dc61343d565b601b54611e3e906105dc61343d565b60405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a380611e738161353d565b915050611dca565b5060005b6040840151811015611f3057611e99601280546001019055565b611ea7601c80546001019055565b611eb5601f80546001019055565b611ec3602080546001019055565b611ed1602280546001019055565b611ee433601c5461110890610a8c61343d565b601c54611ef390610a8c61343d565b60405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a380611f288161353d565b915050611e7f565b5060005b6060840151811015611fe557611f4e601380546001019055565b611f5c601d80546001019055565b611f6a601f80546001019055565b611f78602080546001019055565b611f86602280546001019055565b611f9933601d5461110890610e1061343d565b601d54611fa890610e1061343d565b60405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a380611fdd8161353d565b915050611f34565b5060005b608084015181101561209a57612003601480546001019055565b612011601e80546001019055565b61201f601f80546001019055565b61202d602080546001019055565b61203b602280546001019055565b61204e33601e546111089061106861343d565b601e5461205d9061106861343d565b60405133907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3806120928161353d565b915050611fe9565b5060005b84518110156120ec576001600e60008784815181106120bf576120bf6135e8565b602002602001015181526020019081526020016000208190555080806120e49061353d565b91505061209e565b50506001600655505050565b606060005b825181101561216e57600e600084838151811061211c5761211c6135e8565b60200260200101518152602001908152602001600020546001141561215c57600083828151811061214f5761214f6135e8565b6020026020010181815250505b806121668161353d565b9150506120fd565b5090919050565b6007546001600160a01b031633146121cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b2565b6001600160a01b03811661224b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106b2565b612254816125ca565b50565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906122a482610a98565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166123675760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106b2565b600061237283610a98565b9050806001600160a01b0316846001600160a01b031614806123ad5750836001600160a01b03166123a28461062c565b6001600160a01b0316145b806123dd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166123f882610a98565b6001600160a01b0316146124745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106b2565b6001600160a01b0382166124ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106b2565b6124fa600082612257565b6001600160a01b03831660009081526003602052604081208054600192906125239084906134a6565b90915550506001600160a01b038216600090815260036020526040812080546001929061255190849061343d565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061263f82610a98565b905061264c600083612257565b6001600160a01b03811660009081526003602052604081208054600192906126759084906134a6565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6108fd828260405180602001604052806000815250612931565b8054806127505760405162461bcd60e51b815260206004820152601b60248201527f436f756e7465723a2064656372656d656e74206f766572666c6f77000000000060448201526064016106b2565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055565b6127818484846123e5565b61278d848484846129ba565b61139d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106b2565b60608161283f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561286957806128538161353d565b91506128629050600a83613455565b9150612843565b60008167ffffffffffffffff81111561288457612884613617565b6040519080825280601f01601f1916602001820160405280156128ae576020820181803683370190505b5090505b84156123dd576128c36001836134a6565b91506128d0600a86613576565b6128db90603061343d565b60f81b8183815181106128f0576128f06135e8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061292a600a86613455565b94506128b2565b61293b8383612b85565b61294860008484846129ba565b6108045760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106b2565b60006001600160a01b0384163b15612b7a576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612a17903390899088908890600401613301565b602060405180830381600087803b158015612a3157600080fd5b505af1925050508015612a7f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612a7c91810190613112565b60015b612b2f573d808015612aad576040519150601f19603f3d011682016040523d82523d6000602084013e612ab2565b606091505b508051612b275760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106b2565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506123dd565b506001949350505050565b6001600160a01b038216612bdb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b2565b6000818152600260205260409020546001600160a01b031615612c405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b2565b6001600160a01b0382166000908152600360205260408120805460019290612c6990849061343d565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612ceb906134e9565b90600052602060002090601f016020900481019282612d0d5760008555612d53565b82601f10612d2657805160ff1916838001178555612d53565b82800160010185558215612d53579182015b82811115612d53578251825591602001919060010190612d38565b50612d5f929150612d81565b5090565b6040518060a001604052806005906020820280368337509192915050565b5b80821115612d5f5760008155600101612d82565b600067ffffffffffffffff831115612db057612db0613617565b612de160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116016133ee565b9050828152838383011115612df557600080fd5b828260208301376000602084830101529392505050565b600082601f830112612e1d57600080fd5b8135602067ffffffffffffffff821115612e3957612e39613617565b8160051b612e488282016133ee565b838152828101908684018388018501891015612e6357600080fd5b600093505b85841015612e86578035835260019390930192918401918401612e68565b50979650505050505050565b600060208284031215612ea457600080fd5b8135612eaf81613646565b9392505050565b600060208284031215612ec857600080fd5b8151612eaf81613646565b60008060408385031215612ee657600080fd5b8235612ef181613646565b91506020830135612f0181613646565b809150509250929050565b600080600060608486031215612f2157600080fd5b8335612f2c81613646565b92506020840135612f3c81613646565b929592945050506040919091013590565b60008060008060808587031215612f6357600080fd5b8435612f6e81613646565b93506020850135612f7e81613646565b925060408501359150606085013567ffffffffffffffff811115612fa157600080fd5b8501601f81018713612fb257600080fd5b612fc187823560208401612d96565b91505092959194509250565b60008060408385031215612fe057600080fd5b8235612feb81613646565b915060208301358015158114612f0157600080fd5b6000806040838503121561301357600080fd5b823561301e81613646565b946020939093013593505050565b60006020828403121561303e57600080fd5b813567ffffffffffffffff81111561305557600080fd5b6123dd84828501612e0c565b60008060c0838503121561307457600080fd5b823567ffffffffffffffff81111561308b57600080fd5b61309785828601612e0c565b925050602084603f8501126130ab57600080fd5b6130b36133c5565b808286018760c0880111156130c757600080fd5b60005b60058110156130e7578135845292840192908401906001016130ca565b509497909650945050505050565b60006020828403121561310757600080fd5b8135612eaf8161365b565b60006020828403121561312457600080fd5b8151612eaf8161365b565b60006020828403121561314157600080fd5b813567ffffffffffffffff81111561315857600080fd5b8201601f8101841361316957600080fd5b6123dd84823560208401612d96565b60006020828403121561318a57600080fd5b5035919050565b600080604083850312156131a457600080fd5b50508035926020909101359150565b600081518084526131cb8160208601602086016134bd565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8054600090600181811c908083168061321757607f831692505b6020808410821415613252577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b8180156132665760018114613295576132c2565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284890196506132c2565b60008881526020902060005b868110156132ba5781548b8201529085019083016132a1565b505084890196505b50505050505092915050565b60006132da82866131fd565b84516132ea8183602089016134bd565b6132f6818301866131fd565b979650505050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261333360808301846131b3565b9695505050505050565b60a08101818360005b6005811015613365578151835260209283019290910190600101613346565b50505092915050565b6020808252825182820181905260009190848201906040850190845b818110156133a65783518352928401929184019160010161338a565b50909695505050505050565b602081526000612eaf60208301846131b3565b60405160a0810167ffffffffffffffff811182821017156133e8576133e8613617565b60405290565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561343557613435613617565b604052919050565b600082198211156134505761345061358a565b500190565b600082613464576134646135b9565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134a1576134a161358a565b500290565b6000828210156134b8576134b861358a565b500390565b60005b838110156134d85781810151838201526020016134c0565b8381111561139d5750506000910152565b600181811c908216806134fd57607f821691505b60208210811415613537577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561356f5761356f61358a565b5060010190565b600082613585576135856135b9565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b038116811461225457600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461225457600080fdfea2646970667358221220360138a121c11352fd29c1f10a61df7ae377df9c5af2285fbc7ce00590dcfd2a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5375683552506d714c4564774c375844333843335a575174764244686a506d5a515a5a61415542544d6a51392f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000001ca00000000000000000000000000000000000000000000000000000000000001e8000000000000000000000000000000000000000000000000000000000000026e000000000000000000000000000000000000000000000000000000000000027400000000000000000000000000000000000000000000000000000000000002b200000000000000000000000000000000000000000000000000000000000002b900000000000000000000000000000000000000000000000000000000000002f50000000000000000000000000000000000000000000000000000000000000348000000000000000000000000000000000000000000000000000000000000035a000000000000000000000000000000000000000000000000000000000000036f000000000000000000000000000000000000000000000000000000000000037500000000000000000000000000000000000000000000000000000000000003b500000000000000000000000000000000000000000000000000000000000003c7000000000000000000000000000000000000000000000000000000000000048b00000000000000000000000000000000000000000000000000000000000004dd000000000000000000000000000000000000000000000000000000000000053c0000000000000000000000000000000000000000000000000000000000000566000000000000000000000000000000000000000000000000000000000000058700000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000005fb00000000000000000000000000000000000000000000000000000000000006f10000000000000000000000000000000000000000000000000000000000000717000000000000000000000000000000000000000000000000000000000000072100000000000000000000000000000000000000000000000000000000000007b7000000000000000000000000000000000000000000000000000000000000081c000000000000000000000000000000000000000000000000000000000000084800000000000000000000000000000000000000000000000000000000000009210000000000000000000000000000000000000000000000000000000000000949000000000000000000000000000000000000000000000000000000000000096900000000000000000000000000000000000000000000000000000000000009d30000000000000000000000000000000000000000000000000000000000000a310000000000000000000000000000000000000000000000000000000000000a5c0000000000000000000000000000000000000000000000000000000000000adc0000000000000000000000000000000000000000000000000000000000000b470000000000000000000000000000000000000000000000000000000000000b6b0000000000000000000000000000000000000000000000000000000000000c170000000000000000000000000000000000000000000000000000000000000c510000000000000000000000000000000000000000000000000000000000000c650000000000000000000000000000000000000000000000000000000000000d0b0000000000000000000000000000000000000000000000000000000000000d260000000000000000000000000000000000000000000000000000000000000d780000000000000000000000000000000000000000000000000000000000000ec10000000000000000000000000000000000000000000000000000000000000f6c0000000000000000000000000000000000000000000000000000000000000fa60000000000000000000000000000000000000000000000000000000000000fc80000000000000000000000000000000000000000000000000000000000000ff7000000000000000000000000000000000000000000000000000000000000101f00000000000000000000000000000000000000000000000000000000000010660000000000000000000000000000000000000000000000000000000000001087000000000000000000000000000000000000000000000000000000000000111100000000000000000000000000000000000000000000000000000000000011140000000000000000000000000000000000000000000000000000000000001120000000000000000000000000000000000000000000000000000000000000123e000000000000000000000000000000000000000000000000000000000000124c0000000000000000000000000000000000000000000000000000000000001361000000000000000000000000000000000000000000000000000000000000150700000000000000000000000000000000000000000000000000000000000015ac0000000000000000000000000000000000000000000000000000000000001612000000000000000000000000000000000000000000000000000000000000167500000000000000000000000000000000000000000000000000000000000017570000000000000000000000000000000000000000000000000000000000001848000000000000000000000000000000000000000000000000000000000000197f0000000000000000000000000000000000000000000000000000000000001a440000000000000000000000000000000000000000000000000000000000001aad0000000000000000000000000000000000000000000000000000000000001ad90000000000000000000000000000000000000000000000000000000000001b410000000000000000000000000000000000000000000000000000000000001b880000000000000000000000000000000000000000000000000000000000001b960000000000000000000000000000000000000000000000000000000000001bd00000000000000000000000000000000000000000000000000000000000001c0d0000000000000000000000000000000000000000000000000000000000001c120000000000000000000000000000000000000000000000000000000000001ca40000000000000000000000000000000000000000000000000000000000001d200000000000000000000000000000000000000000000000000000000000001d2b0000000000000000000000000000000000000000000000000000000000001d3e0000000000000000000000000000000000000000000000000000000000001d8c0000000000000000000000000000000000000000000000000000000000001d910000000000000000000000000000000000000000000000000000000000001e0a0000000000000000000000000000000000000000000000000000000000001e110000000000000000000000000000000000000000000000000000000000001e440000000000000000000000000000000000000000000000000000000000001e570000000000000000000000000000000000000000000000000000000000001e610000000000000000000000000000000000000000000000000000000000001ece0000000000000000000000000000000000000000000000000000000000001ef30000000000000000000000000000000000000000000000000000000000001f0b0000000000000000000000000000000000000000000000000000000000001f6e0000000000000000000000000000000000000000000000000000000000001f9c0000000000000000000000000000000000000000000000000000000000001faa000000000000000000000000000000000000000000000000000000000000201b000000000000000000000000000000000000000000000000000000000000212f00000000000000000000000000000000000000000000000000000000000021ac00000000000000000000000000000000000000000000000000000000000021d300000000000000000000000000000000000000000000000000000000000022b200000000000000000000000000000000000000000000000000000000000022c700000000000000000000000000000000000000000000000000000000000022fe00000000000000000000000000000000000000000000000000000000000023a100000000000000000000000000000000000000000000000000000000000023d00000000000000000000000000000000000000000000000000000000000002425000000000000000000000000000000000000000000000000000000000000244200000000000000000000000000000000000000000000000000000000000024d5000000000000000000000000000000000000000000000000000000000000250d000000000000000000000000000000000000000000000000000000000000251f000000000000000000000000000000000000000000000000000000000000252a00000000000000000000000000000000000000000000000000000000000025a10000000000000000000000000000000000000000000000000000000000002620000000000000000000000000000000000000000000000000000000000000264f0000000000000000000000000000000000000000000000000000000000002694

-----Decoded View---------------
Arg [0] : customBaseURI (string): https://gateway.pinata.cloud/ipfs/QmSuh5RPmqLEdwL7XD38C3ZWQtvBDhjPmZQZZaAUBTMjQ9/
Arg [1] : suffixURI (string): .json
Arg [2] : whiteIds (uint16[]): 66,458,488,622,628,690,697,757,840,858,879,885,949,967,1163,1245,1340,1382,1415,1440,1531,1777,1815,1825,1975,2076,2120,2337,2377,2409,2515,2609,2652,2780,2887,2923,3095,3153,3173,3339,3366,3448,3777,3948,4006,4040,4087,4127,4198,4231,4369,4372,4384,4670,4684,4961,5383,5548,5650,5749,5975,6216,6527,6724,6829,6873,6977,7048,7062,7120,7181,7186,7332,7456,7467,7486,7564,7569,7690,7697,7748,7767,7777,7886,7923,7947,8046,8092,8106,8219,8495,8620,8659,8882,8903,8958,9121,9168,9253,9282,9429,9485,9503,9514,9633,9760,9807,9876

-----Encoded View---------------
118 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [4] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [5] : 732f516d5375683552506d714c4564774c375844333843335a57517476424468
Arg [6] : 6a506d5a515a5a61415542544d6a51392f000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000006c
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [11] : 00000000000000000000000000000000000000000000000000000000000001ca
Arg [12] : 00000000000000000000000000000000000000000000000000000000000001e8
Arg [13] : 000000000000000000000000000000000000000000000000000000000000026e
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000274
Arg [15] : 00000000000000000000000000000000000000000000000000000000000002b2
Arg [16] : 00000000000000000000000000000000000000000000000000000000000002b9
Arg [17] : 00000000000000000000000000000000000000000000000000000000000002f5
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000348
Arg [19] : 000000000000000000000000000000000000000000000000000000000000035a
Arg [20] : 000000000000000000000000000000000000000000000000000000000000036f
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000375
Arg [22] : 00000000000000000000000000000000000000000000000000000000000003b5
Arg [23] : 00000000000000000000000000000000000000000000000000000000000003c7
Arg [24] : 000000000000000000000000000000000000000000000000000000000000048b
Arg [25] : 00000000000000000000000000000000000000000000000000000000000004dd
Arg [26] : 000000000000000000000000000000000000000000000000000000000000053c
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000566
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000587
Arg [29] : 00000000000000000000000000000000000000000000000000000000000005a0
Arg [30] : 00000000000000000000000000000000000000000000000000000000000005fb
Arg [31] : 00000000000000000000000000000000000000000000000000000000000006f1
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000717
Arg [33] : 0000000000000000000000000000000000000000000000000000000000000721
Arg [34] : 00000000000000000000000000000000000000000000000000000000000007b7
Arg [35] : 000000000000000000000000000000000000000000000000000000000000081c
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000848
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000921
Arg [38] : 0000000000000000000000000000000000000000000000000000000000000949
Arg [39] : 0000000000000000000000000000000000000000000000000000000000000969
Arg [40] : 00000000000000000000000000000000000000000000000000000000000009d3
Arg [41] : 0000000000000000000000000000000000000000000000000000000000000a31
Arg [42] : 0000000000000000000000000000000000000000000000000000000000000a5c
Arg [43] : 0000000000000000000000000000000000000000000000000000000000000adc
Arg [44] : 0000000000000000000000000000000000000000000000000000000000000b47
Arg [45] : 0000000000000000000000000000000000000000000000000000000000000b6b
Arg [46] : 0000000000000000000000000000000000000000000000000000000000000c17
Arg [47] : 0000000000000000000000000000000000000000000000000000000000000c51
Arg [48] : 0000000000000000000000000000000000000000000000000000000000000c65
Arg [49] : 0000000000000000000000000000000000000000000000000000000000000d0b
Arg [50] : 0000000000000000000000000000000000000000000000000000000000000d26
Arg [51] : 0000000000000000000000000000000000000000000000000000000000000d78
Arg [52] : 0000000000000000000000000000000000000000000000000000000000000ec1
Arg [53] : 0000000000000000000000000000000000000000000000000000000000000f6c
Arg [54] : 0000000000000000000000000000000000000000000000000000000000000fa6
Arg [55] : 0000000000000000000000000000000000000000000000000000000000000fc8
Arg [56] : 0000000000000000000000000000000000000000000000000000000000000ff7
Arg [57] : 000000000000000000000000000000000000000000000000000000000000101f
Arg [58] : 0000000000000000000000000000000000000000000000000000000000001066
Arg [59] : 0000000000000000000000000000000000000000000000000000000000001087
Arg [60] : 0000000000000000000000000000000000000000000000000000000000001111
Arg [61] : 0000000000000000000000000000000000000000000000000000000000001114
Arg [62] : 0000000000000000000000000000000000000000000000000000000000001120
Arg [63] : 000000000000000000000000000000000000000000000000000000000000123e
Arg [64] : 000000000000000000000000000000000000000000000000000000000000124c
Arg [65] : 0000000000000000000000000000000000000000000000000000000000001361
Arg [66] : 0000000000000000000000000000000000000000000000000000000000001507
Arg [67] : 00000000000000000000000000000000000000000000000000000000000015ac
Arg [68] : 0000000000000000000000000000000000000000000000000000000000001612
Arg [69] : 0000000000000000000000000000000000000000000000000000000000001675
Arg [70] : 0000000000000000000000000000000000000000000000000000000000001757
Arg [71] : 0000000000000000000000000000000000000000000000000000000000001848
Arg [72] : 000000000000000000000000000000000000000000000000000000000000197f
Arg [73] : 0000000000000000000000000000000000000000000000000000000000001a44
Arg [74] : 0000000000000000000000000000000000000000000000000000000000001aad
Arg [75] : 0000000000000000000000000000000000000000000000000000000000001ad9
Arg [76] : 0000000000000000000000000000000000000000000000000000000000001b41
Arg [77] : 0000000000000000000000000000000000000000000000000000000000001b88
Arg [78] : 0000000000000000000000000000000000000000000000000000000000001b96
Arg [79] : 0000000000000000000000000000000000000000000000000000000000001bd0
Arg [80] : 0000000000000000000000000000000000000000000000000000000000001c0d
Arg [81] : 0000000000000000000000000000000000000000000000000000000000001c12
Arg [82] : 0000000000000000000000000000000000000000000000000000000000001ca4
Arg [83] : 0000000000000000000000000000000000000000000000000000000000001d20
Arg [84] : 0000000000000000000000000000000000000000000000000000000000001d2b
Arg [85] : 0000000000000000000000000000000000000000000000000000000000001d3e
Arg [86] : 0000000000000000000000000000000000000000000000000000000000001d8c
Arg [87] : 0000000000000000000000000000000000000000000000000000000000001d91
Arg [88] : 0000000000000000000000000000000000000000000000000000000000001e0a
Arg [89] : 0000000000000000000000000000000000000000000000000000000000001e11
Arg [90] : 0000000000000000000000000000000000000000000000000000000000001e44
Arg [91] : 0000000000000000000000000000000000000000000000000000000000001e57
Arg [92] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [93] : 0000000000000000000000000000000000000000000000000000000000001ece
Arg [94] : 0000000000000000000000000000000000000000000000000000000000001ef3
Arg [95] : 0000000000000000000000000000000000000000000000000000000000001f0b
Arg [96] : 0000000000000000000000000000000000000000000000000000000000001f6e
Arg [97] : 0000000000000000000000000000000000000000000000000000000000001f9c
Arg [98] : 0000000000000000000000000000000000000000000000000000000000001faa
Arg [99] : 000000000000000000000000000000000000000000000000000000000000201b
Arg [100] : 000000000000000000000000000000000000000000000000000000000000212f
Arg [101] : 00000000000000000000000000000000000000000000000000000000000021ac
Arg [102] : 00000000000000000000000000000000000000000000000000000000000021d3
Arg [103] : 00000000000000000000000000000000000000000000000000000000000022b2
Arg [104] : 00000000000000000000000000000000000000000000000000000000000022c7
Arg [105] : 00000000000000000000000000000000000000000000000000000000000022fe
Arg [106] : 00000000000000000000000000000000000000000000000000000000000023a1
Arg [107] : 00000000000000000000000000000000000000000000000000000000000023d0
Arg [108] : 0000000000000000000000000000000000000000000000000000000000002425
Arg [109] : 0000000000000000000000000000000000000000000000000000000000002442
Arg [110] : 00000000000000000000000000000000000000000000000000000000000024d5
Arg [111] : 000000000000000000000000000000000000000000000000000000000000250d
Arg [112] : 000000000000000000000000000000000000000000000000000000000000251f
Arg [113] : 000000000000000000000000000000000000000000000000000000000000252a
Arg [114] : 00000000000000000000000000000000000000000000000000000000000025a1
Arg [115] : 0000000000000000000000000000000000000000000000000000000000002620
Arg [116] : 000000000000000000000000000000000000000000000000000000000000264f
Arg [117] : 0000000000000000000000000000000000000000000000000000000000002694


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.