ETH Price: $2,873.44 (-5.83%)
Gas: 2 Gwei

Token

GCC x BONIA (GCCBONIA)
 

Overview

Max Total Supply

333 GCCBONIA

Holders

202

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
akidcalledseb.eth
Balance
2 GCCBONIA
0x015f5c5015c6a0fe63619c9c6eedb2abe91e40c2
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:
GCCxBONIA

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.7;


contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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 making 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: contracts/GCCxBONIA.sol



pragma solidity ^0.8.7;






contract GCCxBONIA is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string private _baseUri;
  string private _baseExtension = ".json";

  uint256 public MaxSupply = 333;
  uint256 public Reserved = 197;
  uint256 private _mintPrice = 0 ether;

  uint256 private _maxBlackcardMint = 2;
  uint256 private _maxRedemptionMint = 3;

  bool public Paused = true;
  bool public Revealed = false;
  bool public OnlyBlackcard = false;
  bool public PublicMint = false;

  mapping(address => uint256) private BlackcardMinted;
  mapping(address => uint256) private RedemptionMinted;
  mapping(string => bool) public BlackcardTokenClaimed;
  mapping(string => bool) public Blackcard2TokenClaimed;
  mapping(string => bool) public RedemptionTokenClaimed;
  mapping(string => bool) public Redemption2TokenClaimed;
  mapping(string => bool) public Redemption3TokenClaimed;

  bytes32 private _merkleRootBlackcard;
  bytes32 private _merkleRootBlackcard2;
  bytes32 private _merkleRootRedemption;
  bytes32 private _merkleRootRedemption2;
  bytes32 private _merkleRootRedemption3;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }


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

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

    if (Revealed == false) {
        return _baseURI();
    }
    
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, (tokenId+1).toString(), _baseExtension))
        : "";
  }


  // Merkle
  function _leaf(string memory _token) internal pure returns(bytes32) {
    return keccak256(abi.encodePacked(_token));
  }

  function _verifyBlackcard(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
    return MerkleProof.verify(proof, _merkleRootBlackcard, leaf);
  }

  function isBlackcardAllowed(string memory _token, bytes32[] calldata proof) internal view returns(bool) {
    return _verifyBlackcard(_leaf(_token), proof);
  }

  function changeMerkleRootBlackcard(bytes32 _newMerkleRoot) external onlyOwner {
    _merkleRootBlackcard = _newMerkleRoot;
  }

  function _verifyBlackcard2(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
    return MerkleProof.verify(proof, _merkleRootBlackcard2, leaf);
  }

  function isBlackcard2Allowed(string memory _token, bytes32[] calldata proof) internal view returns(bool) {
    return _verifyBlackcard2(_leaf(_token), proof);
  }

  function changeMerkleRootBlackcard2(bytes32 _newMerkleRoot) external onlyOwner {
    _merkleRootBlackcard2 = _newMerkleRoot;
  }

  function _verifyRedemption(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
        return MerkleProof.verify(proof, _merkleRootRedemption, leaf);
  }

  function isRedemptionAllowed(string memory _token, bytes32[] calldata proof) internal view returns(bool) {
    return _verifyRedemption(_leaf(_token), proof);
  }

  function changeMerkleRootRedemption(bytes32 _newmerkleRoot) external onlyOwner {
      _merkleRootRedemption = _newmerkleRoot;
  }

  function _verifyRedemption2(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
        return MerkleProof.verify(proof, _merkleRootRedemption2, leaf);
  }

  function isRedemption2Allowed(string memory _token, bytes32[] calldata proof) internal view returns(bool) {
    return _verifyRedemption2(_leaf(_token), proof);
  }

  function changeMerkleRootRedemption2(bytes32 _newmerkleRoot) external onlyOwner {
      _merkleRootRedemption2 = _newmerkleRoot;
  }

  function _verifyRedemption3(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
        return MerkleProof.verify(proof, _merkleRootRedemption3, leaf);
  }

  function isRedemption3Allowed(string memory _token, bytes32[] calldata proof) internal view returns(bool) {
    return _verifyRedemption3(_leaf(_token), proof);
  }

  function changeMerkleRootRedemption3(bytes32 _newmerkleRoot) external onlyOwner {
      _merkleRootRedemption3 = _newmerkleRoot;
  }


  // Minting
  function _mint(address recipient, uint256 quantity) internal {
    _safeMint(recipient, quantity);
  }

  function MintBlackcard(string memory _token, bytes32[] calldata _proof) public payable nonReentrant {
    require(totalSupply() + 1 <= MaxSupply - Reserved, "Exceeds max supply");
    require(!Paused, "Minting is not live");
    require(OnlyBlackcard, "Blackcard Redemption is not live");
    require(!BlackcardTokenClaimed[_token], "Token already redeemed");
    require(isBlackcardAllowed(_token, _proof), "Invalid Signature");
    require(BlackcardMinted[msg.sender] + 1 <= _maxBlackcardMint, "Max mint for Blackcard is 2 NFTs");
    BlackcardMinted[msg.sender] += 1;
    BlackcardTokenClaimed[_token] = true;
    _mint(msg.sender, 1);
  }

  function MintBlackcard2(string memory _token, bytes32[] calldata _proof) public payable nonReentrant {
    require(totalSupply() + 2 <= MaxSupply - Reserved, "Exceeds max supply");
    require(!Paused, "Minting is not live");
    require(OnlyBlackcard, "Blackcard Redemption is not live");
    require(!Blackcard2TokenClaimed[_token], "Token already redeemed");
    require(isBlackcard2Allowed(_token, _proof), "Invalid Signature");
    require(BlackcardMinted[msg.sender] + 2 <= _maxBlackcardMint, "Max mint for Blackcard is 2 NFTs");
    BlackcardMinted[msg.sender] += 2;
    Blackcard2TokenClaimed[_token] = true;
    _mint(msg.sender, 2);
  }

  function MintRedemption(string memory _token, bytes32[] calldata _proof) public payable nonReentrant {
    require(totalSupply() + 1 <= MaxSupply - Reserved, "Exceeds max supply");
    require(!Paused, "Minting is not live");
    require(!OnlyBlackcard, "Holder Redemption is not live");
    require(!RedemptionTokenClaimed[_token], "Token already redeemed");
    require(isRedemptionAllowed(_token, _proof), "Invalid Signature");
    require(RedemptionMinted[msg.sender] + 1 <= _maxRedemptionMint, "Max mint for Holders is 3 NFTs");
    RedemptionMinted[msg.sender] += 1;
    RedemptionTokenClaimed[_token] = true;
    _mint(msg.sender, 1);
  }

  function MintRedemption2(string memory _token, bytes32[] calldata _proof) public payable nonReentrant {
    require(totalSupply() + 2 <= MaxSupply - Reserved, "Exceeds max supply");
    require(!Paused, "Minting is not live");
    require(!OnlyBlackcard, "Holder Redemption is not live");
    require(!Redemption2TokenClaimed[_token], "Token already redeemed");
    require(isRedemption2Allowed(_token, _proof), "Invalid Signature");
    require(RedemptionMinted[msg.sender] + 2 <= _maxRedemptionMint, "Max mint for Holders is 3 NFTs");
    RedemptionMinted[msg.sender] += 2;
    Redemption2TokenClaimed[_token] = true;
    _mint(msg.sender, 2);
  }

  function MintRedemption3(string memory _token, bytes32[] calldata _proof) public payable nonReentrant {
    require(totalSupply() + 3 <= MaxSupply - Reserved, "Exceeds max supply");
    require(!Paused, "Minting is not live");
    require(!OnlyBlackcard, "Holder Redemption is not live");
    require(!Redemption3TokenClaimed[_token], "Token already redeemed");
    require(isRedemption3Allowed(_token, _proof), "Invalid Signature");
    require(RedemptionMinted[msg.sender] + 3 <= _maxRedemptionMint, "Max mint for Holders is 3 NFTs");
    RedemptionMinted[msg.sender] += 3;
    Redemption3TokenClaimed[_token] = true;
    _mint(msg.sender, 3);
  }

  function MintPublic(uint8 _num) public payable nonReentrant {
    require(_num > 0, "Minimum mint amount is 1");
    require(totalSupply() + _num <= MaxSupply - Reserved, "Exceeds max supply");
    require(!Paused, "Minting is not live");
    require(PublicMint, "Public Mint is not live");
    require(_mintPrice * _num <= msg.value, "Insufficient funds"); 
    _mint(msg.sender, _num);
  }

  function Airdrop(uint256 _num, address _recipient) public onlyOwner {
    require(_num <= Reserved, "Exceeds reserved supply");
   
    _mint(_recipient, _num);

    Reserved -= _num;
  }

  function BatchAirdrop(address[] memory _addresses) external onlyOwner {
    require(_addresses.length <= Reserved, "Exceeds reserved supply");

    for (uint256 i = 0; i < _addresses.length; ) {
      Airdrop(1, _addresses[i]);

      unchecked {
          i++;
      }
    }
  }

  function OwnerMint(uint256 _num) public onlyOwner {
    require(_num <= Reserved, "Exceeds reserved supply");

    _mint(msg.sender, _num);

    Reserved -= _num;
  }


  // States
  function setPaused(bool _state) public onlyOwner {
    Paused = _state;
  }

  function toggleBlackcard(bool _state) public onlyOwner {
    OnlyBlackcard = _state;
  }

  function togglePublicMint(bool _state) public onlyOwner {
    PublicMint = _state;
  }

  function setRevealed() public onlyOwner {
    Revealed = true;
  }


  // Supplementary
  function getOwnerTokens(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }


  // Admin
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    _baseUri = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    _baseExtension = _newBaseExtension;
  }

  function setMintPrice(uint256 _newPrice) public onlyOwner {
    _mintPrice = _newPrice;
  }

  function setReserved(uint256 _newReserved) public onlyOwner {
    Reserved = _newReserved;
  }

  function setMaxSupply(uint256 _newSupply) public onlyOwner {
    MaxSupply = _newSupply;
  }

  function withdraw() public onlyOwner {
    require(
      payable(owner()).send(address(this).balance),
      "Withdraw failed"
    );
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"BatchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"Blackcard2TokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"BlackcardTokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_token","type":"string"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"MintBlackcard","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_token","type":"string"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"MintBlackcard2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_num","type":"uint8"}],"name":"MintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_token","type":"string"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"MintRedemption","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_token","type":"string"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"MintRedemption2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_token","type":"string"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"MintRedemption3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OnlyBlackcard","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"OwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"Redemption2TokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"Redemption3TokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"RedemptionTokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"changeMerkleRootBlackcard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"changeMerkleRootBlackcard2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newmerkleRoot","type":"bytes32"}],"name":"changeMerkleRootRedemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newmerkleRoot","type":"bytes32"}],"name":"changeMerkleRootRedemption2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newmerkleRoot","type":"bytes32"}],"name":"changeMerkleRootRedemption3","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getOwnerTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[],"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":"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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newReserved","type":"uint256"}],"name":"setReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","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":"bool","name":"_state","type":"bool"}],"name":"toggleBlackcard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620001b6565b5061014d600b5560c5600c556000600d556002600e556003600f556010805463ffffffff191660011790553480156200006057600080fd5b5060405162003bee38038062003bee833981016040819052620000839162000313565b8251839083906200009c906001906020850190620001b6565b508051620000b2906002906020840190620001b6565b505050620000cf620000c9620000e860201b60201c565b620000ec565b6001600855620000df816200013e565b505050620003f7565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200019d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b2906009906020840190620001b6565b5050565b828054620001c490620003a4565b90600052602060002090601f016020900481019282620001e8576000855562000233565b82601f106200020357805160ff191683800117855562000233565b8280016001018555821562000233579182015b828111156200023357825182559160200191906001019062000216565b506200024192915062000245565b5090565b5b8082111562000241576000815560010162000246565b600082601f8301126200026e57600080fd5b81516001600160401b03808211156200028b576200028b620003e1565b604051601f8301601f19908116603f01168101908282118183101715620002b657620002b6620003e1565b81604052838152602092508683858801011115620002d357600080fd5b600091505b83821015620002f75785820183015181830184015290820190620002d8565b83821115620003095760008385830101525b9695505050505050565b6000806000606084860312156200032957600080fd5b83516001600160401b03808211156200034157600080fd5b6200034f878388016200025c565b945060208601519150808211156200036657600080fd5b62000374878388016200025c565b935060408601519150808211156200038b57600080fd5b506200039a868287016200025c565b9150509250925092565b600181811c90821680620003b957607f821691505b60208210811415620003db57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6137e780620004076000396000f3fe6080604052600436106103505760003560e01c806370a08231116101c6578063bd0cd2e1116100f7578063e2a7169c11610095578063f4a0a5281161006f578063f4a0a52814610a15578063faf3f41e14610a35578063fe1881c414610a4b578063ff00982814610a6c57600080fd5b8063e2a7169c1461098d578063e985e9c5146109ac578063f2fde38b146109f557600080fd5b8063d2a77991116100d1578063d2a779911461091a578063d63d4af01461092d578063d9a91bc21461095a578063da3ef23f1461096d57600080fd5b8063bd0cd2e114610884578063c04b7478146108bf578063c87b56dd146108fa57600080fd5b806395d89b41116101645780639e87fac81161013e5780639e87fac814610814578063a22cb4651461082e578063b36c12841461084e578063b88d4fde1461086457600080fd5b806395d89b41146107cc5780639638cf29146107e15780639b7c1c83146107f457600080fd5b80637871e154116101a05780637871e1541461075b5780637a69cbc51461077b5780638bae58491461079b5780638da5cb5b146107ae57600080fd5b806370a0823114610706578063715018a614610726578063778ebc231461073b57600080fd5b806331ce31e3116102a057806349b86a331161023e57806355f804b31161021857806355f804b31461069357806358beda56146106b35780636352211e146106c65780636f8b44b0146106e657600080fd5b806349b86a33146106185780634d705f80146106385780634f6ccce71461067357600080fd5b80633bd649681161027a5780633bd64968146105ae5780633ccfd60b146105c357806342842e0e146105d857806342caf1c0146105f857600080fd5b806331ce31e31461053357806334472d501461056e57806337060c631461058e57600080fd5b80631618c8df1161030d578063228cae1c116102e7578063228cae1c146104c057806323b872dd146104d35780632d6e71b6146104f35780632f745c591461051357600080fd5b80631618c8df1461046157806316c38b3c1461048157806318160ddd146104a157600080fd5b806301ffc9a71461035557806306fdde031461038a57806307fa8338146103ac578063081812fc146103ce578063095ea7b31461040657806313220b7714610426575b600080fd5b34801561036157600080fd5b50610375610370366004613116565b610a8c565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b5061039f610af9565b60405161038191906133f0565b3480156103b857600080fd5b506103cc6103c73660046130fd565b610b8b565b005b3480156103da57600080fd5b506103ee6103e93660046130fd565b610bc3565b6040516001600160a01b039091168152602001610381565b34801561041257600080fd5b506103cc610421366004613005565b610c4e565b34801561043257600080fd5b50610375610441366004613150565b805160208183018101805160168252928201919093012091525460ff1681565b34801561046d57600080fd5b506103cc61047c3660046130fd565b610d66565b34801561048d57600080fd5b506103cc61049c3660046130e2565b610dd6565b3480156104ad57600080fd5b506000545b604051908152602001610381565b6103cc6104ce366004613240565b610e13565b3480156104df57600080fd5b506103cc6104ee366004612f24565b610fb6565b3480156104ff57600080fd5b506103cc61050e3660046130fd565b610fc1565b34801561051f57600080fd5b506104b261052e366004613005565b610ff0565b34801561053f57600080fd5b5061037561054e366004613150565b805160208183018101805160158252928201919093012091525460ff1681565b34801561057a57600080fd5b506103cc6105893660046130e2565b61114c565b34801561059a57600080fd5b506103cc6105a93660046130fd565b611192565b3480156105ba57600080fd5b506103cc6111c1565b3480156105cf57600080fd5b506103cc6111fc565b3480156105e457600080fd5b506103cc6105f3366004612f24565b61128e565b34801561060457600080fd5b506103cc6106133660046130fd565b6112a9565b34801561062457600080fd5b506010546103759062010000900460ff1681565b34801561064457600080fd5b50610375610653366004613150565b805160208183018101805160138252928201919093012091525460ff1681565b34801561067f57600080fd5b506104b261068e3660046130fd565b6112d8565b34801561069f57600080fd5b506103cc6106ae366004613150565b61133a565b6103cc6106c1366004613184565b61137b565b3480156106d257600080fd5b506103ee6106e13660046130fd565b61153c565b3480156106f257600080fd5b506103cc6107013660046130fd565b61154e565b34801561071257600080fd5b506104b2610721366004612ed6565b61157d565b34801561073257600080fd5b506103cc61160e565b34801561074757600080fd5b506103cc6107563660046130fd565b611642565b34801561076757600080fd5b506103cc61077636600461321d565b611671565b34801561078757600080fd5b506103cc61079636600461302f565b6116e2565b6103cc6107a9366004613184565b611767565b3480156107ba57600080fd5b506007546001600160a01b03166103ee565b3480156107d857600080fd5b5061039f61191e565b6103cc6107ef366004613184565b61192d565b34801561080057600080fd5b506103cc61080f3660046130e2565b611ae4565b34801561082057600080fd5b506010546103759060ff1681565b34801561083a57600080fd5b506103cc610849366004612fdb565b611b2c565b34801561085a57600080fd5b506104b2600b5481565b34801561087057600080fd5b506103cc61087f366004612f60565b611bf1565b34801561089057600080fd5b5061037561089f366004613150565b805160208183018101805160148252928201919093012091525460ff1681565b3480156108cb57600080fd5b506103756108da366004613150565b805160208183018101805160178252928201919093012091525460ff1681565b34801561090657600080fd5b5061039f6109153660046130fd565b611c2a565b6103cc610928366004613184565b611d1b565b34801561093957600080fd5b5061094d610948366004612ed6565b611f06565b60405161038191906133ac565b6103cc610968366004613184565b611fa7565b34801561097957600080fd5b506103cc610988366004613150565b612192565b34801561099957600080fd5b5060105461037590610100900460ff1681565b3480156109b857600080fd5b506103756109c7366004612ef1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a0157600080fd5b506103cc610a10366004612ed6565b6121cf565b348015610a2157600080fd5b506103cc610a303660046130fd565b61226a565b348015610a4157600080fd5b506104b2600c5481565b348015610a5757600080fd5b50601054610375906301000000900460ff1681565b348015610a7857600080fd5b506103cc610a873660046130fd565b612299565b60006001600160e01b031982166380ac58cd60e01b1480610abd57506001600160e01b03198216635b5e139f60e01b145b80610ad857506001600160e01b0319821663780e9d6360e01b145b80610af357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610b08906136d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b34906136d9565b8015610b815780601f10610b5657610100808354040283529160200191610b81565b820191906000526020600020905b815481529060010190602001808311610b6457829003601f168201915b5050505050905090565b6007546001600160a01b03163314610bbe5760405162461bcd60e51b8152600401610bb590613525565b60405180910390fd5b601855565b6000610bd0826000541190565b610c325760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bb5565b506000908152600560205260409020546001600160a01b031690565b6000610c598261153c565b9050806001600160a01b0316836001600160a01b03161415610cc85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bb5565b336001600160a01b0382161480610ce45750610ce481336109c7565b610d565760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bb5565b610d618383836122c8565b505050565b6007546001600160a01b03163314610d905760405162461bcd60e51b8152600401610bb590613525565b600c54811115610db25760405162461bcd60e51b8152600401610bb5906134c3565b610dbc3382612324565b80600c6000828254610dce9190613696565b909155505050565b6007546001600160a01b03163314610e005760405162461bcd60e51b8152600401610bb590613525565b6010805460ff1916911515919091179055565b60026008541415610e365760405162461bcd60e51b8152600401610bb5906135e4565b600260085560ff8116610e8b5760405162461bcd60e51b815260206004820152601860248201527f4d696e696d756d206d696e7420616d6f756e74206973203100000000000000006044820152606401610bb5565b600c54600b54610e9b9190613696565b8160ff16610ea860005490565b610eb2919061364b565b1115610ed05760405162461bcd60e51b8152600401610bb590613497565b60105460ff1615610ef35760405162461bcd60e51b8152600401610bb590613403565b6010546301000000900460ff16610f4c5760405162461bcd60e51b815260206004820152601760248201527f5075626c6963204d696e74206973206e6f74206c6976650000000000000000006044820152606401610bb5565b348160ff16600d54610f5e9190613677565b1115610fa15760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610bb5565b610fae338260ff16612324565b506001600855565b610d6183838361232e565b6007546001600160a01b03163314610feb5760405162461bcd60e51b8152600401610bb590613525565b600c55565b6000610ffb8361157d565b82106110545760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bb5565b600080549080805b838110156110ec576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156110ae57805192505b876001600160a01b0316836001600160a01b031614156110e357868414156110dc57509350610af392505050565b6001909301925b5060010161105c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bb5565b6007546001600160a01b031633146111765760405162461bcd60e51b8152600401610bb590613525565b60108054911515620100000262ff000019909216919091179055565b6007546001600160a01b031633146111bc5760405162461bcd60e51b8152600401610bb590613525565b601b55565b6007546001600160a01b031633146111eb5760405162461bcd60e51b8152600401610bb590613525565b6010805461ff001916610100179055565b6007546001600160a01b031633146112265760405162461bcd60e51b8152600401610bb590613525565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505061128c5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610bb5565b565b610d6183838360405180602001604052806000815250611bf1565b6007546001600160a01b031633146112d35760405162461bcd60e51b8152600401610bb590613525565b601c55565b6000805482106113365760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bb5565b5090565b6007546001600160a01b031633146113645760405162461bcd60e51b8152600401610bb590613525565b8051611377906009906020840190612da3565b5050565b6002600854141561139e5760405162461bcd60e51b8152600401610bb5906135e4565b6002600855600c54600b546113b39190613696565b6000546113c190600361364b565b11156113df5760405162461bcd60e51b8152600401610bb590613497565b60105460ff16156114025760405162461bcd60e51b8152600401610bb590613403565b60105462010000900460ff161561142b5760405162461bcd60e51b8152600401610bb590613460565b60178360405161143b919061328f565b9081526040519081900360200190205460ff161561146b5760405162461bcd60e51b8152600401610bb590613430565b611476838383612611565b6114925760405162461bcd60e51b8152600401610bb5906134fa565b600f54336000908152601260205260409020546114b090600361364b565b11156114ce5760405162461bcd60e51b8152600401610bb59061355a565b3360009081526012602052604081208054600392906114ee90849061364b565b925050819055506001601784604051611507919061328f565b908152604051908190036020019020805491151560ff19909216919091179055611532336003612324565b5050600160085550565b600061154782612660565b5192915050565b6007546001600160a01b031633146115785760405162461bcd60e51b8152600401610bb590613525565b600b55565b60006001600160a01b0382166115e95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bb5565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146116385760405162461bcd60e51b8152600401610bb590613525565b61128c6000612736565b6007546001600160a01b0316331461166c5760405162461bcd60e51b8152600401610bb590613525565b601a55565b6007546001600160a01b0316331461169b5760405162461bcd60e51b8152600401610bb590613525565b600c548211156116bd5760405162461bcd60e51b8152600401610bb5906134c3565b6116c78183612324565b81600c60008282546116d99190613696565b90915550505050565b6007546001600160a01b0316331461170c5760405162461bcd60e51b8152600401610bb590613525565b600c548151111561172f5760405162461bcd60e51b8152600401610bb5906134c3565b60005b81518110156113775761175f60018383815181106117525761175261376f565b6020026020010151611671565b600101611732565b6002600854141561178a5760405162461bcd60e51b8152600401610bb5906135e4565b6002600855600c54600b5461179f9190613696565b6000546117ad90600261364b565b11156117cb5760405162461bcd60e51b8152600401610bb590613497565b60105460ff16156117ee5760405162461bcd60e51b8152600401610bb590613403565b60105462010000900460ff16156118175760405162461bcd60e51b8152600401610bb590613460565b601683604051611827919061328f565b9081526040519081900360200190205460ff16156118575760405162461bcd60e51b8152600401610bb590613430565b611862838383612788565b61187e5760405162461bcd60e51b8152600401610bb5906134fa565b600f543360009081526012602052604090205461189c90600261364b565b11156118ba5760405162461bcd60e51b8152600401610bb59061355a565b3360009081526012602052604081208054600292906118da90849061364b565b9250508190555060016016846040516118f3919061328f565b908152604051908190036020019020805491151560ff19909216919091179055611532336002612324565b606060028054610b08906136d9565b600260085414156119505760405162461bcd60e51b8152600401610bb5906135e4565b6002600855600c54600b546119659190613696565b60005461197390600161364b565b11156119915760405162461bcd60e51b8152600401610bb590613497565b60105460ff16156119b45760405162461bcd60e51b8152600401610bb590613403565b60105462010000900460ff16156119dd5760405162461bcd60e51b8152600401610bb590613460565b6015836040516119ed919061328f565b9081526040519081900360200190205460ff1615611a1d5760405162461bcd60e51b8152600401610bb590613430565b611a288383836127cf565b611a445760405162461bcd60e51b8152600401610bb5906134fa565b600f5433600090815260126020526040902054611a6290600161364b565b1115611a805760405162461bcd60e51b8152600401610bb59061355a565b336000908152601260205260408120805460019290611aa090849061364b565b925050819055506001601584604051611ab9919061328f565b908152604051908190036020019020805491151560ff19909216919091179055611532336001612324565b6007546001600160a01b03163314611b0e5760405162461bcd60e51b8152600401610bb590613525565b6010805491151563010000000263ff00000019909216919091179055565b6001600160a01b038216331415611b855760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bb5565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611bfc84848461232e565b611c0884848484612816565b611c245760405162461bcd60e51b8152600401610bb590613591565b50505050565b6060611c37826000541190565b611c9b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bb5565b601054610100900460ff16611cb257610af3612923565b6000611cbc612923565b90506000815111611cdc5760405180602001604052806000815250611d14565b80611cf0611ceb85600161364b565b612932565b600a604051602001611d04939291906132ab565b6040516020818303038152906040525b9392505050565b60026008541415611d3e5760405162461bcd60e51b8152600401610bb5906135e4565b6002600855600c54600b54611d539190613696565b600054611d6190600161364b565b1115611d7f5760405162461bcd60e51b8152600401610bb590613497565b60105460ff1615611da25760405162461bcd60e51b8152600401610bb590613403565b60105462010000900460ff16611dfa5760405162461bcd60e51b815260206004820181905260248201527f426c61636b6361726420526564656d7074696f6e206973206e6f74206c6976656044820152606401610bb5565b601383604051611e0a919061328f565b9081526040519081900360200190205460ff1615611e3a5760405162461bcd60e51b8152600401610bb590613430565b611e45838383612a2f565b611e615760405162461bcd60e51b8152600401610bb5906134fa565b600e5433600090815260116020526040902054611e7f90600161364b565b1115611ecd5760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e7420666f7220426c61636b636172642069732032204e4654736044820152606401610bb5565b336000908152601160205260408120805460019290611eed90849061364b565b925050819055506001601384604051611ab9919061328f565b60606000611f138361157d565b90506000816001600160401b03811115611f2f57611f2f613785565b604051908082528060200260200182016040528015611f58578160200160208202803683370190505b50905060005b82811015611f9f57611f708582610ff0565b828281518110611f8257611f8261376f565b602090810291909101015280611f9781613714565b915050611f5e565b509392505050565b60026008541415611fca5760405162461bcd60e51b8152600401610bb5906135e4565b6002600855600c54600b54611fdf9190613696565b600054611fed90600261364b565b111561200b5760405162461bcd60e51b8152600401610bb590613497565b60105460ff161561202e5760405162461bcd60e51b8152600401610bb590613403565b60105462010000900460ff166120865760405162461bcd60e51b815260206004820181905260248201527f426c61636b6361726420526564656d7074696f6e206973206e6f74206c6976656044820152606401610bb5565b601483604051612096919061328f565b9081526040519081900360200190205460ff16156120c65760405162461bcd60e51b8152600401610bb590613430565b6120d1838383612a76565b6120ed5760405162461bcd60e51b8152600401610bb5906134fa565b600e543360009081526011602052604090205461210b90600261364b565b11156121595760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e7420666f7220426c61636b636172642069732032204e4654736044820152606401610bb5565b33600090815260116020526040812080546002929061217990849061364b565b9250508190555060016014846040516118f3919061328f565b6007546001600160a01b031633146121bc5760405162461bcd60e51b8152600401610bb590613525565b805161137790600a906020840190612da3565b6007546001600160a01b031633146121f95760405162461bcd60e51b8152600401610bb590613525565b6001600160a01b03811661225e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb5565b61226781612736565b50565b6007546001600160a01b031633146122945760405162461bcd60e51b8152600401610bb590613525565b600d55565b6007546001600160a01b031633146122c35760405162461bcd60e51b8152600401610bb590613525565b601955565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6113778282612abd565b600061233982612660565b80519091506000906001600160a01b0316336001600160a01b0316148061237057503361236584610bc3565b6001600160a01b0316145b806123825750815161238290336109c7565b9050806123ec5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bb5565b846001600160a01b031682600001516001600160a01b0316146124605760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bb5565b6001600160a01b0384166124c45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bb5565b6124d460008484600001516122c8565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b0316021790559086018083529120549091166125c75761257b816000541190565b156125c757825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600061265861261f85612ad7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b0792505050565b949350505050565b604080518082019091526000808252602082015261267f826000541190565b6126de5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610bb5565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561272c579392505050565b50600019016126e0565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061265861279685612ad7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b1692505050565b60006126586127dd85612ad7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b2592505050565b60006001600160a01b0384163b1561291857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061285a90339089908890889060040161336f565b602060405180830381600087803b15801561287457600080fd5b505af19250505080156128a4575060408051601f3d908101601f191682019092526128a191810190613133565b60015b6128fe573d8080156128d2576040519150601f19603f3d011682016040523d82523d6000602084013e6128d7565b606091505b5080516128f65760405162461bcd60e51b8152600401610bb590613591565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612658565b506001949350505050565b606060098054610b08906136d9565b6060816129565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612980578061296a81613714565b91506129799050600a83613663565b915061295a565b6000816001600160401b0381111561299a5761299a613785565b6040519080825280601f01601f1916602001820160405280156129c4576020820181803683370190505b5090505b8415612658576129d9600183613696565b91506129e6600a8661372f565b6129f190603061364b565b60f81b818381518110612a0657612a0661376f565b60200101906001600160f81b031916908160001a905350612a28600a86613663565b94506129c8565b6000612658612a3d85612ad7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b3492505050565b6000612658612a8485612ad7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b4392505050565b611377828260405180602001604052806000815250612b52565b600081604051602001612aea919061328f565b604051602081830303815290604052805190602001209050919050565b6000611d1482601c5485612b5f565b6000611d1482601b5485612b5f565b6000611d1482601a5485612b5f565b6000611d148260185485612b5f565b6000611d148260195485612b5f565b610d618383836001612b75565b600082612b6c8584612d37565b14949350505050565b6000546001600160a01b038516612bd85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bb5565b83612c365760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610bb5565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b85811015612d2e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612d2257612d066000888488612816565b612d225760405162461bcd60e51b8152600401610bb590613591565b60019182019101612cb3565b5060005561260a565b600081815b8451811015611f9f576000858281518110612d5957612d5961376f565b60200260200101519050808311612d7f5760008381526020829052604090209250612d90565b600081815260208490526040902092505b5080612d9b81613714565b915050612d3c565b828054612daf906136d9565b90600052602060002090601f016020900481019282612dd15760008555612e17565b82601f10612dea57805160ff1916838001178555612e17565b82800160010185558215612e17579182015b82811115612e17578251825591602001919060010190612dfc565b506113369291505b808211156113365760008155600101612e1f565b60006001600160401b03831115612e4c57612e4c613785565b612e5f601f8401601f191660200161361b565b9050828152838383011115612e7357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612ea157600080fd5b919050565b80358015158114612ea157600080fd5b600082601f830112612ec757600080fd5b611d1483833560208501612e33565b600060208284031215612ee857600080fd5b611d1482612e8a565b60008060408385031215612f0457600080fd5b612f0d83612e8a565b9150612f1b60208401612e8a565b90509250929050565b600080600060608486031215612f3957600080fd5b612f4284612e8a565b9250612f5060208501612e8a565b9150604084013590509250925092565b60008060008060808587031215612f7657600080fd5b612f7f85612e8a565b9350612f8d60208601612e8a565b92506040850135915060608501356001600160401b03811115612faf57600080fd5b8501601f81018713612fc057600080fd5b612fcf87823560208401612e33565b91505092959194509250565b60008060408385031215612fee57600080fd5b612ff783612e8a565b9150612f1b60208401612ea6565b6000806040838503121561301857600080fd5b61302183612e8a565b946020939093013593505050565b6000602080838503121561304257600080fd5b82356001600160401b038082111561305957600080fd5b818501915085601f83011261306d57600080fd5b81358181111561307f5761307f613785565b8060051b915061309084830161361b565b8181528481019084860184860187018a10156130ab57600080fd5b600095505b838610156130d5576130c181612e8a565b8352600195909501949186019186016130b0565b5098975050505050505050565b6000602082840312156130f457600080fd5b611d1482612ea6565b60006020828403121561310f57600080fd5b5035919050565b60006020828403121561312857600080fd5b8135611d148161379b565b60006020828403121561314557600080fd5b8151611d148161379b565b60006020828403121561316257600080fd5b81356001600160401b0381111561317857600080fd5b61265884828501612eb6565b60008060006040848603121561319957600080fd5b83356001600160401b03808211156131b057600080fd5b6131bc87838801612eb6565b945060208601359150808211156131d257600080fd5b818601915086601f8301126131e657600080fd5b8135818111156131f557600080fd5b8760208260051b850101111561320a57600080fd5b6020830194508093505050509250925092565b6000806040838503121561323057600080fd5b82359150612f1b60208401612e8a565b60006020828403121561325257600080fd5b813560ff81168114611d1457600080fd5b6000815180845261327b8160208601602086016136ad565b601f01601f19169290920160200192915050565b600082516132a18184602087016136ad565b9190910192915050565b6000845160206132be8285838a016136ad565b8551918401916132d18184848a016136ad565b8554920191600090600181811c90808316806132ee57607f831692505b85831081141561330c57634e487b7160e01b85526022600452602485fd5b80801561332057600181146133315761335e565b60ff1985168852838801955061335e565b60008b81526020902060005b858110156133565781548a82015290840190880161333d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133a290830184613263565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133e4578351835292840192918401916001016133c8565b50909695505050505050565b602081526000611d146020830184613263565b6020808252601390820152724d696e74696e67206973206e6f74206c69766560681b604082015260600190565b602080825260169082015275151bdad95b88185b1c9958591e481c995919595b595960521b604082015260600190565b6020808252601d908201527f486f6c64657220526564656d7074696f6e206973206e6f74206c697665000000604082015260600190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526017908201527f4578636565647320726573657276656420737570706c79000000000000000000604082015260600190565b602080825260119082015270496e76616c6964205369676e617475726560781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f4d6178206d696e7420666f7220486f6c646572732069732033204e4654730000604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561364357613643613785565b604052919050565b6000821982111561365e5761365e613743565b500190565b60008261367257613672613759565b500490565b600081600019048311821515161561369157613691613743565b500290565b6000828210156136a8576136a8613743565b500390565b60005b838110156136c85781810151838201526020016136b0565b83811115611c245750506000910152565b600181811c908216806136ed57607f821691505b6020821081141561370e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561372857613728613743565b5060010190565b60008261373e5761373e613759565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461226757600080fdfea2646970667358221220b952b75bdc1f459f704429396b3ec8ffedea107e7eda9057d8f4ace527cdf8c864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b474343207820424f4e49410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008474343424f4e49410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d55634d655a69724868523174326f6338557653584861676a556a79367766596f54614e34726d394c6a4871482f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103505760003560e01c806370a08231116101c6578063bd0cd2e1116100f7578063e2a7169c11610095578063f4a0a5281161006f578063f4a0a52814610a15578063faf3f41e14610a35578063fe1881c414610a4b578063ff00982814610a6c57600080fd5b8063e2a7169c1461098d578063e985e9c5146109ac578063f2fde38b146109f557600080fd5b8063d2a77991116100d1578063d2a779911461091a578063d63d4af01461092d578063d9a91bc21461095a578063da3ef23f1461096d57600080fd5b8063bd0cd2e114610884578063c04b7478146108bf578063c87b56dd146108fa57600080fd5b806395d89b41116101645780639e87fac81161013e5780639e87fac814610814578063a22cb4651461082e578063b36c12841461084e578063b88d4fde1461086457600080fd5b806395d89b41146107cc5780639638cf29146107e15780639b7c1c83146107f457600080fd5b80637871e154116101a05780637871e1541461075b5780637a69cbc51461077b5780638bae58491461079b5780638da5cb5b146107ae57600080fd5b806370a0823114610706578063715018a614610726578063778ebc231461073b57600080fd5b806331ce31e3116102a057806349b86a331161023e57806355f804b31161021857806355f804b31461069357806358beda56146106b35780636352211e146106c65780636f8b44b0146106e657600080fd5b806349b86a33146106185780634d705f80146106385780634f6ccce71461067357600080fd5b80633bd649681161027a5780633bd64968146105ae5780633ccfd60b146105c357806342842e0e146105d857806342caf1c0146105f857600080fd5b806331ce31e31461053357806334472d501461056e57806337060c631461058e57600080fd5b80631618c8df1161030d578063228cae1c116102e7578063228cae1c146104c057806323b872dd146104d35780632d6e71b6146104f35780632f745c591461051357600080fd5b80631618c8df1461046157806316c38b3c1461048157806318160ddd146104a157600080fd5b806301ffc9a71461035557806306fdde031461038a57806307fa8338146103ac578063081812fc146103ce578063095ea7b31461040657806313220b7714610426575b600080fd5b34801561036157600080fd5b50610375610370366004613116565b610a8c565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b5061039f610af9565b60405161038191906133f0565b3480156103b857600080fd5b506103cc6103c73660046130fd565b610b8b565b005b3480156103da57600080fd5b506103ee6103e93660046130fd565b610bc3565b6040516001600160a01b039091168152602001610381565b34801561041257600080fd5b506103cc610421366004613005565b610c4e565b34801561043257600080fd5b50610375610441366004613150565b805160208183018101805160168252928201919093012091525460ff1681565b34801561046d57600080fd5b506103cc61047c3660046130fd565b610d66565b34801561048d57600080fd5b506103cc61049c3660046130e2565b610dd6565b3480156104ad57600080fd5b506000545b604051908152602001610381565b6103cc6104ce366004613240565b610e13565b3480156104df57600080fd5b506103cc6104ee366004612f24565b610fb6565b3480156104ff57600080fd5b506103cc61050e3660046130fd565b610fc1565b34801561051f57600080fd5b506104b261052e366004613005565b610ff0565b34801561053f57600080fd5b5061037561054e366004613150565b805160208183018101805160158252928201919093012091525460ff1681565b34801561057a57600080fd5b506103cc6105893660046130e2565b61114c565b34801561059a57600080fd5b506103cc6105a93660046130fd565b611192565b3480156105ba57600080fd5b506103cc6111c1565b3480156105cf57600080fd5b506103cc6111fc565b3480156105e457600080fd5b506103cc6105f3366004612f24565b61128e565b34801561060457600080fd5b506103cc6106133660046130fd565b6112a9565b34801561062457600080fd5b506010546103759062010000900460ff1681565b34801561064457600080fd5b50610375610653366004613150565b805160208183018101805160138252928201919093012091525460ff1681565b34801561067f57600080fd5b506104b261068e3660046130fd565b6112d8565b34801561069f57600080fd5b506103cc6106ae366004613150565b61133a565b6103cc6106c1366004613184565b61137b565b3480156106d257600080fd5b506103ee6106e13660046130fd565b61153c565b3480156106f257600080fd5b506103cc6107013660046130fd565b61154e565b34801561071257600080fd5b506104b2610721366004612ed6565b61157d565b34801561073257600080fd5b506103cc61160e565b34801561074757600080fd5b506103cc6107563660046130fd565b611642565b34801561076757600080fd5b506103cc61077636600461321d565b611671565b34801561078757600080fd5b506103cc61079636600461302f565b6116e2565b6103cc6107a9366004613184565b611767565b3480156107ba57600080fd5b506007546001600160a01b03166103ee565b3480156107d857600080fd5b5061039f61191e565b6103cc6107ef366004613184565b61192d565b34801561080057600080fd5b506103cc61080f3660046130e2565b611ae4565b34801561082057600080fd5b506010546103759060ff1681565b34801561083a57600080fd5b506103cc610849366004612fdb565b611b2c565b34801561085a57600080fd5b506104b2600b5481565b34801561087057600080fd5b506103cc61087f366004612f60565b611bf1565b34801561089057600080fd5b5061037561089f366004613150565b805160208183018101805160148252928201919093012091525460ff1681565b3480156108cb57600080fd5b506103756108da366004613150565b805160208183018101805160178252928201919093012091525460ff1681565b34801561090657600080fd5b5061039f6109153660046130fd565b611c2a565b6103cc610928366004613184565b611d1b565b34801561093957600080fd5b5061094d610948366004612ed6565b611f06565b60405161038191906133ac565b6103cc610968366004613184565b611fa7565b34801561097957600080fd5b506103cc610988366004613150565b612192565b34801561099957600080fd5b5060105461037590610100900460ff1681565b3480156109b857600080fd5b506103756109c7366004612ef1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a0157600080fd5b506103cc610a10366004612ed6565b6121cf565b348015610a2157600080fd5b506103cc610a303660046130fd565b61226a565b348015610a4157600080fd5b506104b2600c5481565b348015610a5757600080fd5b50601054610375906301000000900460ff1681565b348015610a7857600080fd5b506103cc610a873660046130fd565b612299565b60006001600160e01b031982166380ac58cd60e01b1480610abd57506001600160e01b03198216635b5e139f60e01b145b80610ad857506001600160e01b0319821663780e9d6360e01b145b80610af357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610b08906136d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b34906136d9565b8015610b815780601f10610b5657610100808354040283529160200191610b81565b820191906000526020600020905b815481529060010190602001808311610b6457829003601f168201915b5050505050905090565b6007546001600160a01b03163314610bbe5760405162461bcd60e51b8152600401610bb590613525565b60405180910390fd5b601855565b6000610bd0826000541190565b610c325760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bb5565b506000908152600560205260409020546001600160a01b031690565b6000610c598261153c565b9050806001600160a01b0316836001600160a01b03161415610cc85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bb5565b336001600160a01b0382161480610ce45750610ce481336109c7565b610d565760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bb5565b610d618383836122c8565b505050565b6007546001600160a01b03163314610d905760405162461bcd60e51b8152600401610bb590613525565b600c54811115610db25760405162461bcd60e51b8152600401610bb5906134c3565b610dbc3382612324565b80600c6000828254610dce9190613696565b909155505050565b6007546001600160a01b03163314610e005760405162461bcd60e51b8152600401610bb590613525565b6010805460ff1916911515919091179055565b60026008541415610e365760405162461bcd60e51b8152600401610bb5906135e4565b600260085560ff8116610e8b5760405162461bcd60e51b815260206004820152601860248201527f4d696e696d756d206d696e7420616d6f756e74206973203100000000000000006044820152606401610bb5565b600c54600b54610e9b9190613696565b8160ff16610ea860005490565b610eb2919061364b565b1115610ed05760405162461bcd60e51b8152600401610bb590613497565b60105460ff1615610ef35760405162461bcd60e51b8152600401610bb590613403565b6010546301000000900460ff16610f4c5760405162461bcd60e51b815260206004820152601760248201527f5075626c6963204d696e74206973206e6f74206c6976650000000000000000006044820152606401610bb5565b348160ff16600d54610f5e9190613677565b1115610fa15760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610bb5565b610fae338260ff16612324565b506001600855565b610d6183838361232e565b6007546001600160a01b03163314610feb5760405162461bcd60e51b8152600401610bb590613525565b600c55565b6000610ffb8361157d565b82106110545760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bb5565b600080549080805b838110156110ec576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156110ae57805192505b876001600160a01b0316836001600160a01b031614156110e357868414156110dc57509350610af392505050565b6001909301925b5060010161105c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bb5565b6007546001600160a01b031633146111765760405162461bcd60e51b8152600401610bb590613525565b60108054911515620100000262ff000019909216919091179055565b6007546001600160a01b031633146111bc5760405162461bcd60e51b8152600401610bb590613525565b601b55565b6007546001600160a01b031633146111eb5760405162461bcd60e51b8152600401610bb590613525565b6010805461ff001916610100179055565b6007546001600160a01b031633146112265760405162461bcd60e51b8152600401610bb590613525565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505061128c5760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610bb5565b565b610d6183838360405180602001604052806000815250611bf1565b6007546001600160a01b031633146112d35760405162461bcd60e51b8152600401610bb590613525565b601c55565b6000805482106113365760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bb5565b5090565b6007546001600160a01b031633146113645760405162461bcd60e51b8152600401610bb590613525565b8051611377906009906020840190612da3565b5050565b6002600854141561139e5760405162461bcd60e51b8152600401610bb5906135e4565b6002600855600c54600b546113b39190613696565b6000546113c190600361364b565b11156113df5760405162461bcd60e51b8152600401610bb590613497565b60105460ff16156114025760405162461bcd60e51b8152600401610bb590613403565b60105462010000900460ff161561142b5760405162461bcd60e51b8152600401610bb590613460565b60178360405161143b919061328f565b9081526040519081900360200190205460ff161561146b5760405162461bcd60e51b8152600401610bb590613430565b611476838383612611565b6114925760405162461bcd60e51b8152600401610bb5906134fa565b600f54336000908152601260205260409020546114b090600361364b565b11156114ce5760405162461bcd60e51b8152600401610bb59061355a565b3360009081526012602052604081208054600392906114ee90849061364b565b925050819055506001601784604051611507919061328f565b908152604051908190036020019020805491151560ff19909216919091179055611532336003612324565b5050600160085550565b600061154782612660565b5192915050565b6007546001600160a01b031633146115785760405162461bcd60e51b8152600401610bb590613525565b600b55565b60006001600160a01b0382166115e95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bb5565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146116385760405162461bcd60e51b8152600401610bb590613525565b61128c6000612736565b6007546001600160a01b0316331461166c5760405162461bcd60e51b8152600401610bb590613525565b601a55565b6007546001600160a01b0316331461169b5760405162461bcd60e51b8152600401610bb590613525565b600c548211156116bd5760405162461bcd60e51b8152600401610bb5906134c3565b6116c78183612324565b81600c60008282546116d99190613696565b90915550505050565b6007546001600160a01b0316331461170c5760405162461bcd60e51b8152600401610bb590613525565b600c548151111561172f5760405162461bcd60e51b8152600401610bb5906134c3565b60005b81518110156113775761175f60018383815181106117525761175261376f565b6020026020010151611671565b600101611732565b6002600854141561178a5760405162461bcd60e51b8152600401610bb5906135e4565b6002600855600c54600b5461179f9190613696565b6000546117ad90600261364b565b11156117cb5760405162461bcd60e51b8152600401610bb590613497565b60105460ff16156117ee5760405162461bcd60e51b8152600401610bb590613403565b60105462010000900460ff16156118175760405162461bcd60e51b8152600401610bb590613460565b601683604051611827919061328f565b9081526040519081900360200190205460ff16156118575760405162461bcd60e51b8152600401610bb590613430565b611862838383612788565b61187e5760405162461bcd60e51b8152600401610bb5906134fa565b600f543360009081526012602052604090205461189c90600261364b565b11156118ba5760405162461bcd60e51b8152600401610bb59061355a565b3360009081526012602052604081208054600292906118da90849061364b565b9250508190555060016016846040516118f3919061328f565b908152604051908190036020019020805491151560ff19909216919091179055611532336002612324565b606060028054610b08906136d9565b600260085414156119505760405162461bcd60e51b8152600401610bb5906135e4565b6002600855600c54600b546119659190613696565b60005461197390600161364b565b11156119915760405162461bcd60e51b8152600401610bb590613497565b60105460ff16156119b45760405162461bcd60e51b8152600401610bb590613403565b60105462010000900460ff16156119dd5760405162461bcd60e51b8152600401610bb590613460565b6015836040516119ed919061328f565b9081526040519081900360200190205460ff1615611a1d5760405162461bcd60e51b8152600401610bb590613430565b611a288383836127cf565b611a445760405162461bcd60e51b8152600401610bb5906134fa565b600f5433600090815260126020526040902054611a6290600161364b565b1115611a805760405162461bcd60e51b8152600401610bb59061355a565b336000908152601260205260408120805460019290611aa090849061364b565b925050819055506001601584604051611ab9919061328f565b908152604051908190036020019020805491151560ff19909216919091179055611532336001612324565b6007546001600160a01b03163314611b0e5760405162461bcd60e51b8152600401610bb590613525565b6010805491151563010000000263ff00000019909216919091179055565b6001600160a01b038216331415611b855760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bb5565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611bfc84848461232e565b611c0884848484612816565b611c245760405162461bcd60e51b8152600401610bb590613591565b50505050565b6060611c37826000541190565b611c9b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bb5565b601054610100900460ff16611cb257610af3612923565b6000611cbc612923565b90506000815111611cdc5760405180602001604052806000815250611d14565b80611cf0611ceb85600161364b565b612932565b600a604051602001611d04939291906132ab565b6040516020818303038152906040525b9392505050565b60026008541415611d3e5760405162461bcd60e51b8152600401610bb5906135e4565b6002600855600c54600b54611d539190613696565b600054611d6190600161364b565b1115611d7f5760405162461bcd60e51b8152600401610bb590613497565b60105460ff1615611da25760405162461bcd60e51b8152600401610bb590613403565b60105462010000900460ff16611dfa5760405162461bcd60e51b815260206004820181905260248201527f426c61636b6361726420526564656d7074696f6e206973206e6f74206c6976656044820152606401610bb5565b601383604051611e0a919061328f565b9081526040519081900360200190205460ff1615611e3a5760405162461bcd60e51b8152600401610bb590613430565b611e45838383612a2f565b611e615760405162461bcd60e51b8152600401610bb5906134fa565b600e5433600090815260116020526040902054611e7f90600161364b565b1115611ecd5760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e7420666f7220426c61636b636172642069732032204e4654736044820152606401610bb5565b336000908152601160205260408120805460019290611eed90849061364b565b925050819055506001601384604051611ab9919061328f565b60606000611f138361157d565b90506000816001600160401b03811115611f2f57611f2f613785565b604051908082528060200260200182016040528015611f58578160200160208202803683370190505b50905060005b82811015611f9f57611f708582610ff0565b828281518110611f8257611f8261376f565b602090810291909101015280611f9781613714565b915050611f5e565b509392505050565b60026008541415611fca5760405162461bcd60e51b8152600401610bb5906135e4565b6002600855600c54600b54611fdf9190613696565b600054611fed90600261364b565b111561200b5760405162461bcd60e51b8152600401610bb590613497565b60105460ff161561202e5760405162461bcd60e51b8152600401610bb590613403565b60105462010000900460ff166120865760405162461bcd60e51b815260206004820181905260248201527f426c61636b6361726420526564656d7074696f6e206973206e6f74206c6976656044820152606401610bb5565b601483604051612096919061328f565b9081526040519081900360200190205460ff16156120c65760405162461bcd60e51b8152600401610bb590613430565b6120d1838383612a76565b6120ed5760405162461bcd60e51b8152600401610bb5906134fa565b600e543360009081526011602052604090205461210b90600261364b565b11156121595760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e7420666f7220426c61636b636172642069732032204e4654736044820152606401610bb5565b33600090815260116020526040812080546002929061217990849061364b565b9250508190555060016014846040516118f3919061328f565b6007546001600160a01b031633146121bc5760405162461bcd60e51b8152600401610bb590613525565b805161137790600a906020840190612da3565b6007546001600160a01b031633146121f95760405162461bcd60e51b8152600401610bb590613525565b6001600160a01b03811661225e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb5565b61226781612736565b50565b6007546001600160a01b031633146122945760405162461bcd60e51b8152600401610bb590613525565b600d55565b6007546001600160a01b031633146122c35760405162461bcd60e51b8152600401610bb590613525565b601955565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6113778282612abd565b600061233982612660565b80519091506000906001600160a01b0316336001600160a01b0316148061237057503361236584610bc3565b6001600160a01b0316145b806123825750815161238290336109c7565b9050806123ec5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bb5565b846001600160a01b031682600001516001600160a01b0316146124605760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bb5565b6001600160a01b0384166124c45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bb5565b6124d460008484600001516122c8565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b0316021790559086018083529120549091166125c75761257b816000541190565b156125c757825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600061265861261f85612ad7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b0792505050565b949350505050565b604080518082019091526000808252602082015261267f826000541190565b6126de5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610bb5565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561272c579392505050565b50600019016126e0565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061265861279685612ad7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b1692505050565b60006126586127dd85612ad7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b2592505050565b60006001600160a01b0384163b1561291857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061285a90339089908890889060040161336f565b602060405180830381600087803b15801561287457600080fd5b505af19250505080156128a4575060408051601f3d908101601f191682019092526128a191810190613133565b60015b6128fe573d8080156128d2576040519150601f19603f3d011682016040523d82523d6000602084013e6128d7565b606091505b5080516128f65760405162461bcd60e51b8152600401610bb590613591565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612658565b506001949350505050565b606060098054610b08906136d9565b6060816129565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612980578061296a81613714565b91506129799050600a83613663565b915061295a565b6000816001600160401b0381111561299a5761299a613785565b6040519080825280601f01601f1916602001820160405280156129c4576020820181803683370190505b5090505b8415612658576129d9600183613696565b91506129e6600a8661372f565b6129f190603061364b565b60f81b818381518110612a0657612a0661376f565b60200101906001600160f81b031916908160001a905350612a28600a86613663565b94506129c8565b6000612658612a3d85612ad7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b3492505050565b6000612658612a8485612ad7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250612b4392505050565b611377828260405180602001604052806000815250612b52565b600081604051602001612aea919061328f565b604051602081830303815290604052805190602001209050919050565b6000611d1482601c5485612b5f565b6000611d1482601b5485612b5f565b6000611d1482601a5485612b5f565b6000611d148260185485612b5f565b6000611d148260195485612b5f565b610d618383836001612b75565b600082612b6c8584612d37565b14949350505050565b6000546001600160a01b038516612bd85760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bb5565b83612c365760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610bb5565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b85811015612d2e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612d2257612d066000888488612816565b612d225760405162461bcd60e51b8152600401610bb590613591565b60019182019101612cb3565b5060005561260a565b600081815b8451811015611f9f576000858281518110612d5957612d5961376f565b60200260200101519050808311612d7f5760008381526020829052604090209250612d90565b600081815260208490526040902092505b5080612d9b81613714565b915050612d3c565b828054612daf906136d9565b90600052602060002090601f016020900481019282612dd15760008555612e17565b82601f10612dea57805160ff1916838001178555612e17565b82800160010185558215612e17579182015b82811115612e17578251825591602001919060010190612dfc565b506113369291505b808211156113365760008155600101612e1f565b60006001600160401b03831115612e4c57612e4c613785565b612e5f601f8401601f191660200161361b565b9050828152838383011115612e7357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612ea157600080fd5b919050565b80358015158114612ea157600080fd5b600082601f830112612ec757600080fd5b611d1483833560208501612e33565b600060208284031215612ee857600080fd5b611d1482612e8a565b60008060408385031215612f0457600080fd5b612f0d83612e8a565b9150612f1b60208401612e8a565b90509250929050565b600080600060608486031215612f3957600080fd5b612f4284612e8a565b9250612f5060208501612e8a565b9150604084013590509250925092565b60008060008060808587031215612f7657600080fd5b612f7f85612e8a565b9350612f8d60208601612e8a565b92506040850135915060608501356001600160401b03811115612faf57600080fd5b8501601f81018713612fc057600080fd5b612fcf87823560208401612e33565b91505092959194509250565b60008060408385031215612fee57600080fd5b612ff783612e8a565b9150612f1b60208401612ea6565b6000806040838503121561301857600080fd5b61302183612e8a565b946020939093013593505050565b6000602080838503121561304257600080fd5b82356001600160401b038082111561305957600080fd5b818501915085601f83011261306d57600080fd5b81358181111561307f5761307f613785565b8060051b915061309084830161361b565b8181528481019084860184860187018a10156130ab57600080fd5b600095505b838610156130d5576130c181612e8a565b8352600195909501949186019186016130b0565b5098975050505050505050565b6000602082840312156130f457600080fd5b611d1482612ea6565b60006020828403121561310f57600080fd5b5035919050565b60006020828403121561312857600080fd5b8135611d148161379b565b60006020828403121561314557600080fd5b8151611d148161379b565b60006020828403121561316257600080fd5b81356001600160401b0381111561317857600080fd5b61265884828501612eb6565b60008060006040848603121561319957600080fd5b83356001600160401b03808211156131b057600080fd5b6131bc87838801612eb6565b945060208601359150808211156131d257600080fd5b818601915086601f8301126131e657600080fd5b8135818111156131f557600080fd5b8760208260051b850101111561320a57600080fd5b6020830194508093505050509250925092565b6000806040838503121561323057600080fd5b82359150612f1b60208401612e8a565b60006020828403121561325257600080fd5b813560ff81168114611d1457600080fd5b6000815180845261327b8160208601602086016136ad565b601f01601f19169290920160200192915050565b600082516132a18184602087016136ad565b9190910192915050565b6000845160206132be8285838a016136ad565b8551918401916132d18184848a016136ad565b8554920191600090600181811c90808316806132ee57607f831692505b85831081141561330c57634e487b7160e01b85526022600452602485fd5b80801561332057600181146133315761335e565b60ff1985168852838801955061335e565b60008b81526020902060005b858110156133565781548a82015290840190880161333d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906133a290830184613263565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133e4578351835292840192918401916001016133c8565b50909695505050505050565b602081526000611d146020830184613263565b6020808252601390820152724d696e74696e67206973206e6f74206c69766560681b604082015260600190565b602080825260169082015275151bdad95b88185b1c9958591e481c995919595b595960521b604082015260600190565b6020808252601d908201527f486f6c64657220526564656d7074696f6e206973206e6f74206c697665000000604082015260600190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526017908201527f4578636565647320726573657276656420737570706c79000000000000000000604082015260600190565b602080825260119082015270496e76616c6964205369676e617475726560781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f4d6178206d696e7420666f7220486f6c646572732069732033204e4654730000604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561364357613643613785565b604052919050565b6000821982111561365e5761365e613743565b500190565b60008261367257613672613759565b500490565b600081600019048311821515161561369157613691613743565b500290565b6000828210156136a8576136a8613743565b500390565b60005b838110156136c85781810151838201526020016136b0565b83811115611c245750506000910152565b600181811c908216806136ed57607f821691505b6020821081141561370e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561372857613728613743565b5060010190565b60008261373e5761373e613759565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461226757600080fdfea2646970667358221220b952b75bdc1f459f704429396b3ec8ffedea107e7eda9057d8f4ace527cdf8c864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b474343207820424f4e49410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008474343424f4e49410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d55634d655a69724868523174326f6338557653584861676a556a79367766596f54614e34726d394c6a4871482f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): GCC x BONIA
Arg [1] : _symbol (string): GCCBONIA
Arg [2] : _initBaseURI (string): ipfs://QmUcMeZirHhR1t2oc8UvSXHagjUjy6wfYoTaN4rm9LjHqH/unrevealed.json

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 474343207820424f4e4941000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 474343424f4e4941000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [8] : 697066733a2f2f516d55634d655a69724868523174326f633855765358486167
Arg [9] : 6a556a79367766596f54614e34726d394c6a4871482f756e72657665616c6564
Arg [10] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

67241:10383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51283:372;;;;;;;;;;-1:-1:-1;51283:372:0;;;;;:::i;:::-;;:::i;:::-;;;10257:14:1;;10250:22;10232:41;;10220:2;10205:18;51283:372:0;;;;;;;;53169:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;69597:128::-;;;;;;;;;;-1:-1:-1;69597:128:0;;;;;:::i;:::-;;:::i;:::-;;54731:214;;;;;;;;;;-1:-1:-1;54731:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8918:32:1;;;8900:51;;8888:2;8873:18;54731:214:0;8754:203:1;54252:413:0;;;;;;;;;;-1:-1:-1;54252:413:0;;;;;:::i;:::-;;:::i;68031:54::-;;;;;;;;;;-1:-1:-1;68031:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76012:172;;;;;;;;;;-1:-1:-1;76012:172:0;;;;;:::i;:::-;;:::i;76205:77::-;;;;;;;;;;-1:-1:-1;76205:77:0;;;;;:::i;:::-;;:::i;49540:100::-;;;;;;;;;;-1:-1:-1;49593:7:0;49620:12;49540:100;;;23299:25:1;;;23287:2;23272:18;49540:100:0;23153:177:1;75114:398:0;;;;;;:::i;:::-;;:::i;55607:162::-;;;;;;;;;;-1:-1:-1;55607:162:0;;;;;:::i;:::-;;:::i;77276:96::-;;;;;;;;;;-1:-1:-1;77276:96:0;;;;;:::i;:::-;;:::i;50204:1007::-;;;;;;;;;;-1:-1:-1;50204:1007:0;;;;;:::i;:::-;;:::i;67973:53::-;;;;;;;;;;-1:-1:-1;67973:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76288:90;;;;;;;;;;-1:-1:-1;76288:90:0;;;;;:::i;:::-;;:::i;71046:134::-;;;;;;;;;;-1:-1:-1;71046:134:0;;;;;:::i;:::-;;:::i;76478:68::-;;;;;;;;;;;;;:::i;77478:143::-;;;;;;;;;;;;;:::i;55840:177::-;;;;;;;;;;-1:-1:-1;55840:177:0;;;;;:::i;:::-;;:::i;71537:134::-;;;;;;;;;;-1:-1:-1;71537:134:0;;;;;:::i;:::-;;:::i;67670:33::-;;;;;;;;;;-1:-1:-1;67670:33:0;;;;;;;;;;;67858:52;;;;;;;;;;-1:-1:-1;67858:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49717:187;;;;;;;;;;-1:-1:-1;49717:187:0;;;;;:::i;:::-;;:::i;76943:99::-;;;;;;;;;;-1:-1:-1;76943:99:0;;;;;:::i;:::-;;:::i;74449:659::-;;;;;;:::i;:::-;;:::i;52978:124::-;;;;;;;;;;-1:-1:-1;52978:124:0;;;;;:::i;:::-;;:::i;77378:94::-;;;;;;;;;;-1:-1:-1;77378:94:0;;;;;:::i;:::-;;:::i;51719:221::-;;;;;;;;;;-1:-1:-1;51719:221:0;;;;;:::i;:::-;;:::i;7450:103::-;;;;;;;;;;;;;:::i;70557:132::-;;;;;;;;;;-1:-1:-1;70557:132:0;;;;;:::i;:::-;;:::i;75518:193::-;;;;;;;;;;-1:-1:-1;75518:193:0;;;;;:::i;:::-;;:::i;75717:289::-;;;;;;;;;;-1:-1:-1;75717:289:0;;;;;:::i;:::-;;:::i;73784:659::-;;;;;;:::i;:::-;;:::i;6799:87::-;;;;;;;;;;-1:-1:-1;6872:6:0;;-1:-1:-1;;;;;6872:6:0;6799:87;;53338:104;;;;;;;;;;;;;:::i;73123:655::-;;;;;;:::i;:::-;;:::i;76384:88::-;;;;;;;;;;-1:-1:-1;76384:88:0;;;;;:::i;:::-;;:::i;67607:25::-;;;;;;;;;;-1:-1:-1;67607:25:0;;;;;;;;55017:288;;;;;;;;;;-1:-1:-1;55017:288:0;;;;;:::i;:::-;;:::i;67408:30::-;;;;;;;;;;;;;;;;56088:355;;;;;;;;;;-1:-1:-1;56088:355:0;;;;;:::i;:::-;;:::i;67915:53::-;;;;;;;;;;-1:-1:-1;67915:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68090:54;;;;;;;;;;-1:-1:-1;68090:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68663:445;;;;;;;;;;-1:-1:-1;68663:445:0;;;;;:::i;:::-;;:::i;71803:652::-;;;;;;:::i;:::-;;:::i;76574:349::-;;;;;;;;;;-1:-1:-1;76574:349:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;72461:656::-;;;;;;:::i;:::-;;:::i;77048:123::-;;;;;;;;;;-1:-1:-1;77048:123:0;;;;;:::i;:::-;;:::i;67637:28::-;;;;;;;;;;-1:-1:-1;67637:28:0;;;;;;;;;;;55376:164;;;;;;;;;;-1:-1:-1;55376:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;55497:25:0;;;55473:4;55497:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;55376:164;7708:201;;;;;;;;;;-1:-1:-1;7708:201:0;;;;;:::i;:::-;;:::i;77177:93::-;;;;;;;;;;-1:-1:-1;77177:93:0;;;;;:::i;:::-;;:::i;67443:29::-;;;;;;;;;;;;;;;;67708:30;;;;;;;;;;-1:-1:-1;67708:30:0;;;;;;;;;;;70074:130;;;;;;;;;;-1:-1:-1;70074:130:0;;;;;:::i;:::-;;:::i;51283:372::-;51385:4;-1:-1:-1;;;;;;51422:40:0;;-1:-1:-1;;;51422:40:0;;:105;;-1:-1:-1;;;;;;;51479:48:0;;-1:-1:-1;;;51479:48:0;51422:105;:172;;;-1:-1:-1;;;;;;;51544:50:0;;-1:-1:-1;;;51544:50:0;51422:172;:225;;;-1:-1:-1;;;;;;;;;;19715:40:0;;;51611:36;51402:245;51283:372;-1:-1:-1;;51283:372:0:o;53169:100::-;53223:13;53256:5;53249:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53169:100;:::o;69597:128::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;;;;;;;;;69682:20:::1;:37:::0;69597:128::o;54731:214::-;54799:7;54827:16;54835:7;56755:4;56789:12;-1:-1:-1;56779:22:0;56698:111;54827:16;54819:74;;;;-1:-1:-1;;;54819:74:0;;22941:2:1;54819:74:0;;;22923:21:1;22980:2;22960:18;;;22953:30;23019:34;22999:18;;;22992:62;-1:-1:-1;;;23070:18:1;;;23063:43;23123:19;;54819:74:0;22739:409:1;54819:74:0;-1:-1:-1;54913:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54913:24:0;;54731:214::o;54252:413::-;54325:13;54341:24;54357:7;54341:15;:24::i;:::-;54325:40;;54390:5;-1:-1:-1;;;;;54384:11:0;:2;-1:-1:-1;;;;;54384:11:0;;;54376:58;;;;-1:-1:-1;;;54376:58:0;;20116:2:1;54376:58:0;;;20098:21:1;20155:2;20135:18;;;20128:30;20194:34;20174:18;;;20167:62;-1:-1:-1;;;20245:18:1;;;20238:32;20287:19;;54376:58:0;19914:398:1;54376:58:0;5603:10;-1:-1:-1;;;;;54469:21:0;;;;:62;;-1:-1:-1;54494:37:0;54511:5;5603:10;55376:164;:::i;54494:37::-;54447:169;;;;-1:-1:-1;;;54447:169:0;;15206:2:1;54447:169:0;;;15188:21:1;15245:2;15225:18;;;15218:30;15284:34;15264:18;;;15257:62;15355:27;15335:18;;;15328:55;15400:19;;54447:169:0;15004:421:1;54447:169:0;54629:28;54638:2;54642:7;54651:5;54629:8;:28::i;:::-;54314:351;54252:413;;:::o;76012:172::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;76085:8:::1;;76077:4;:16;;76069:52;;;;-1:-1:-1::0;;;76069:52:0::1;;;;;;;:::i;:::-;76130:23;76136:10;76148:4;76130:5;:23::i;:::-;76174:4;76162:8;;:16;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;76012:172:0:o;76205:77::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;76261:6:::1;:15:::0;;-1:-1:-1;;76261:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76205:77::o;75114:398::-;66217:1;66815:7;;:19;;66807:63;;;;-1:-1:-1;;;66807:63:0;;;;;;;:::i;:::-;66217:1;66948:7;:18;75189:8:::1;::::0;::::1;75181:45;;;::::0;-1:-1:-1;;;75181:45:0;;11881:2:1;75181:45:0::1;::::0;::::1;11863:21:1::0;11920:2;11900:18;;;11893:30;11959:26;11939:18;;;11932:54;12003:18;;75181:45:0::1;11679:348:1::0;75181:45:0::1;75277:8;;75265:9;;:20;;;;:::i;:::-;75257:4;75241:20;;:13;49593:7:::0;49620:12;;49540:100;75241:13:::1;:20;;;;:::i;:::-;:44;;75233:75;;;;-1:-1:-1::0;;;75233:75:0::1;;;;;;;:::i;:::-;75324:6;::::0;::::1;;75323:7;75315:39;;;;-1:-1:-1::0;;;75315:39:0::1;;;;;;;:::i;:::-;75369:10;::::0;;;::::1;;;75361:46;;;::::0;-1:-1:-1;;;75361:46:0;;19764:2:1;75361:46:0::1;::::0;::::1;19746:21:1::0;19803:2;19783:18;;;19776:30;19842:25;19822:18;;;19815:53;19885:18;;75361:46:0::1;19562:347:1::0;75361:46:0::1;75443:9;75435:4;75422:17;;:10;;:17;;;;:::i;:::-;:30;;75414:61;;;::::0;-1:-1:-1;;;75414:61:0;;14147:2:1;75414:61:0::1;::::0;::::1;14129:21:1::0;14186:2;14166:18;;;14159:30;-1:-1:-1;;;14205:18:1;;;14198:48;14263:18;;75414:61:0::1;13945:342:1::0;75414:61:0::1;75483:23;75489:10;75501:4;75483:23;;:5;:23::i;:::-;-1:-1:-1::0;66173:1:0;67127:7;:22;75114:398::o;55607:162::-;55733:28;55743:4;55749:2;55753:7;55733:9;:28::i;77276:96::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;77343:8:::1;:23:::0;77276:96::o;50204:1007::-;50293:7;50329:16;50339:5;50329:9;:16::i;:::-;50321:5;:24;50313:71;;;;-1:-1:-1;;;50313:71:0;;10710:2:1;50313:71:0;;;10692:21:1;10749:2;10729:18;;;10722:30;10788:34;10768:18;;;10761:62;-1:-1:-1;;;10839:18:1;;;10832:32;10881:19;;50313:71:0;10508:398:1;50313:71:0;50395:22;49620:12;;;50395:22;;50658:466;50678:14;50674:1;:18;50658:466;;;50718:31;50752:14;;;:11;:14;;;;;;;;;50718:48;;;;;;;;;-1:-1:-1;;;;;50718:48:0;;;;;-1:-1:-1;;;50718:48:0;;;-1:-1:-1;;;;;50718:48:0;;;;;;;;50789:28;50785:111;;50862:14;;;-1:-1:-1;50785:111:0;50939:5;-1:-1:-1;;;;;50918:26:0;:17;-1:-1:-1;;;;;50918:26:0;;50914:195;;;50988:5;50973:11;:20;50969:85;;;-1:-1:-1;51029:1:0;-1:-1:-1;51022:8:0;;-1:-1:-1;;;51022:8:0;50969:85;51076:13;;;;;50914:195;-1:-1:-1;50694:3:0;;50658:466;;;-1:-1:-1;51147:56:0;;-1:-1:-1;;;51147:56:0;;21750:2:1;51147:56:0;;;21732:21:1;21789:2;21769:18;;;21762:30;21828:34;21808:18;;;21801:62;-1:-1:-1;;;21879:18:1;;;21872:44;21933:19;;51147:56:0;21548:410:1;76288:90:0;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;76350:13:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;76350:22:0;;::::1;::::0;;;::::1;::::0;;76288:90::o;71046:134::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;71135:22:::1;:39:::0;71046:134::o;76478:68::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;76525:8:::1;:15:::0;;-1:-1:-1;;76525:15:0::1;;;::::0;;76478:68::o;77478:143::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;6872:6;;77538:44:::1;::::0;-1:-1:-1;;;;;6872:6:0;;;;77560:21:::1;77538:44:::0;::::1;;;::::0;::::1;::::0;;;77560:21;6872:6;77538:44;::::1;;;;;;77522:93;;;::::0;-1:-1:-1;;;77522:93:0;;12645:2:1;77522:93:0::1;::::0;::::1;12627:21:1::0;12684:2;12664:18;;;12657:30;-1:-1:-1;;;12703:18:1;;;12696:45;12758:18;;77522:93:0::1;12443:339:1::0;77522:93:0::1;77478:143::o:0;55840:177::-;55970:39;55987:4;55993:2;55997:7;55970:39;;;;;;;;;;;;:16;:39::i;71537:134::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;71626:22:::1;:39:::0;71537:134::o;49717:187::-;49784:7;49620:12;;49812:5;:21;49804:69;;;;-1:-1:-1;;;49804:69:0;;12989:2:1;49804:69:0;;;12971:21:1;13028:2;13008:18;;;13001:30;13067:34;13047:18;;;13040:62;-1:-1:-1;;;13118:18:1;;;13111:33;13161:19;;49804:69:0;12787:399:1;49804:69:0;-1:-1:-1;49891:5:0;49717:187::o;76943:99::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;77014:22;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;76943:99:::0;:::o;74449:659::-;66217:1;66815:7;;:19;;66807:63;;;;-1:-1:-1;;;66807:63:0;;;;;;;:::i;:::-;66217:1;66948:7;:18;74599:8:::1;::::0;74587:9:::1;::::0;:20:::1;::::0;74599:8;74587:20:::1;:::i;:::-;49593:7:::0;49620:12;74566:17:::1;::::0;74582:1:::1;74566:17;:::i;:::-;:41;;74558:72;;;;-1:-1:-1::0;;;74558:72:0::1;;;;;;;:::i;:::-;74646:6;::::0;::::1;;74645:7;74637:39;;;;-1:-1:-1::0;;;74637:39:0::1;;;;;;;:::i;:::-;74692:13;::::0;;;::::1;;;74691:14;74683:56;;;;-1:-1:-1::0;;;74683:56:0::1;;;;;;;:::i;:::-;74755:23;74779:6;74755:31;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;74754:32;74746:67;;;;-1:-1:-1::0;;;74746:67:0::1;;;;;;;:::i;:::-;74828:36;74849:6;74857;;74828:20;:36::i;:::-;74820:66;;;;-1:-1:-1::0;;;74820:66:0::1;;;;;;;:::i;:::-;74937:18;::::0;74918:10:::1;74901:28;::::0;;;:16:::1;:28;::::0;;;;;:32:::1;::::0;74932:1:::1;74901:32;:::i;:::-;:54;;74893:97;;;;-1:-1:-1::0;;;74893:97:0::1;;;;;;;:::i;:::-;75014:10;74997:28;::::0;;;:16:::1;:28;::::0;;;;:33;;75029:1:::1;::::0;74997:28;:33:::1;::::0;75029:1;;74997:33:::1;:::i;:::-;;;;;;;;75071:4;75037:23;75061:6;75037:31;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:38;;;::::1;;-1:-1:-1::0;;75037:38:0;;::::1;::::0;;;::::1;::::0;;75082:20:::1;75088:10;75100:1;75082:5;:20::i;:::-;-1:-1:-1::0;;66173:1:0;67127:7;:22;-1:-1:-1;74449:659:0:o;52978:124::-;53042:7;53069:20;53081:7;53069:11;:20::i;:::-;:25;;52978:124;-1:-1:-1;;52978:124:0:o;77378:94::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;77444:9:::1;:22:::0;77378:94::o;51719:221::-;51783:7;-1:-1:-1;;;;;51811:19:0;;51803:75;;;;-1:-1:-1;;;51803:75:0;;16337:2:1;51803:75:0;;;16319:21:1;16376:2;16356:18;;;16349:30;16415:34;16395:18;;;16388:62;-1:-1:-1;;;16466:18:1;;;16459:41;16517:19;;51803:75:0;16135:407:1;51803:75:0;-1:-1:-1;;;;;;51904:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;51904:27:0;;51719:221::o;7450:103::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;7515:30:::1;7542:1;7515:18;:30::i;70557:132::-:0;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;70645:21:::1;:38:::0;70557:132::o;75518:193::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;75609:8:::1;;75601:4;:16;;75593:52;;;;-1:-1:-1::0;;;75593:52:0::1;;;;;;;:::i;:::-;75657:23;75663:10;75675:4;75657:5;:23::i;:::-;75701:4;75689:8;;:16;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;75518:193:0:o;75717:289::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;75823:8:::1;;75802:10;:17;:29;;75794:65;;;;-1:-1:-1::0;;;75794:65:0::1;;;;;;;:::i;:::-;75873:9;75868:133;75892:10;:17;75888:1;:21;75868:133;;;75922:25;75930:1;75933:10;75944:1;75933:13;;;;;;;;:::i;:::-;;;;;;;75922:7;:25::i;:::-;75981:3;;75868:133;;73784:659:::0;66217:1;66815:7;;:19;;66807:63;;;;-1:-1:-1;;;66807:63:0;;;;;;;:::i;:::-;66217:1;66948:7;:18;73934:8:::1;::::0;73922:9:::1;::::0;:20:::1;::::0;73934:8;73922:20:::1;:::i;:::-;49593:7:::0;49620:12;73901:17:::1;::::0;73917:1:::1;73901:17;:::i;:::-;:41;;73893:72;;;;-1:-1:-1::0;;;73893:72:0::1;;;;;;;:::i;:::-;73981:6;::::0;::::1;;73980:7;73972:39;;;;-1:-1:-1::0;;;73972:39:0::1;;;;;;;:::i;:::-;74027:13;::::0;;;::::1;;;74026:14;74018:56;;;;-1:-1:-1::0;;;74018:56:0::1;;;;;;;:::i;:::-;74090:23;74114:6;74090:31;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;74089:32;74081:67;;;;-1:-1:-1::0;;;74081:67:0::1;;;;;;;:::i;:::-;74163:36;74184:6;74192;;74163:20;:36::i;:::-;74155:66;;;;-1:-1:-1::0;;;74155:66:0::1;;;;;;;:::i;:::-;74272:18;::::0;74253:10:::1;74236:28;::::0;;;:16:::1;:28;::::0;;;;;:32:::1;::::0;74267:1:::1;74236:32;:::i;:::-;:54;;74228:97;;;;-1:-1:-1::0;;;74228:97:0::1;;;;;;;:::i;:::-;74349:10;74332:28;::::0;;;:16:::1;:28;::::0;;;;:33;;74364:1:::1;::::0;74332:28;:33:::1;::::0;74364:1;;74332:33:::1;:::i;:::-;;;;;;;;74406:4;74372:23;74396:6;74372:31;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:38;;;::::1;;-1:-1:-1::0;;74372:38:0;;::::1;::::0;;;::::1;::::0;;74417:20:::1;74423:10;74435:1;74417:5;:20::i;53338:104::-:0;53394:13;53427:7;53420:14;;;;;:::i;73123:655::-;66217:1;66815:7;;:19;;66807:63;;;;-1:-1:-1;;;66807:63:0;;;;;;;:::i;:::-;66217:1;66948:7;:18;73272:8:::1;::::0;73260:9:::1;::::0;:20:::1;::::0;73272:8;73260:20:::1;:::i;:::-;49593:7:::0;49620:12;73239:17:::1;::::0;73255:1:::1;73239:17;:::i;:::-;:41;;73231:72;;;;-1:-1:-1::0;;;73231:72:0::1;;;;;;;:::i;:::-;73319:6;::::0;::::1;;73318:7;73310:39;;;;-1:-1:-1::0;;;73310:39:0::1;;;;;;;:::i;:::-;73365:13;::::0;;;::::1;;;73364:14;73356:56;;;;-1:-1:-1::0;;;73356:56:0::1;;;;;;;:::i;:::-;73428:22;73451:6;73428:30;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;73427:31;73419:66;;;;-1:-1:-1::0;;;73419:66:0::1;;;;;;;:::i;:::-;73500:35;73520:6;73528;;73500:19;:35::i;:::-;73492:65;;;;-1:-1:-1::0;;;73492:65:0::1;;;;;;;:::i;:::-;73608:18;::::0;73589:10:::1;73572:28;::::0;;;:16:::1;:28;::::0;;;;;:32:::1;::::0;73603:1:::1;73572:32;:::i;:::-;:54;;73564:97;;;;-1:-1:-1::0;;;73564:97:0::1;;;;;;;:::i;:::-;73685:10;73668:28;::::0;;;:16:::1;:28;::::0;;;;:33;;73700:1:::1;::::0;73668:28;:33:::1;::::0;73700:1;;73668:33:::1;:::i;:::-;;;;;;;;73741:4;73708:22;73731:6;73708:30;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:37;;;::::1;;-1:-1:-1::0;;73708:37:0;;::::1;::::0;;;::::1;::::0;;73752:20:::1;73758:10;73708:37:::0;73752:5:::1;:20::i;76384:88::-:0;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;76447:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;76447:19:0;;::::1;::::0;;;::::1;::::0;;76384:88::o;55017:288::-;-1:-1:-1;;;;;55112:24:0;;5603:10;55112:24;;55104:63;;;;-1:-1:-1;;;55104:63:0;;18990:2:1;55104:63:0;;;18972:21:1;19029:2;19009:18;;;19002:30;19068:28;19048:18;;;19041:56;19114:18;;55104:63:0;18788:350:1;55104:63:0;5603:10;55180:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;55180:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;55180:53:0;;;;;;;;;;55249:48;;10232:41:1;;;55180:42:0;;5603:10;55249:48;;10205:18:1;55249:48:0;;;;;;;55017:288;;:::o;56088:355::-;56247:28;56257:4;56263:2;56267:7;56247:9;:28::i;:::-;56308:48;56331:4;56337:2;56341:7;56350:5;56308:22;:48::i;:::-;56286:149;;;;-1:-1:-1;;;56286:149:0;;;;;;;:::i;:::-;56088:355;;;;:::o;68663:445::-;68728:13;68761:16;68769:7;56755:4;56789:12;-1:-1:-1;56779:22:0;56698:111;68761:16;68753:76;;;;-1:-1:-1;;;68753:76:0;;18574:2:1;68753:76:0;;;18556:21:1;18613:2;18593:18;;;18586:30;18652:34;18632:18;;;18625:62;-1:-1:-1;;;18703:18:1;;;18696:45;18758:19;;68753:76:0;18372:411:1;68753:76:0;68842:8;;;;;;;68838:59;;68879:10;:8;:10::i;68838:59::-;68909:28;68940:10;:8;:10::i;:::-;68909:41;;68995:1;68970:14;68964:28;:32;:138;;;;;;;;;;;;;;;;;69032:14;69048:22;69049:9;:7;69057:1;69049:9;:::i;:::-;69048:20;:22::i;:::-;69072:14;69015:72;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68964:138;68957:145;68663:445;-1:-1:-1;;;68663:445:0:o;71803:652::-;66217:1;66815:7;;:19;;66807:63;;;;-1:-1:-1;;;66807:63:0;;;;;;;:::i;:::-;66217:1;66948:7;:18;71951:8:::1;::::0;71939:9:::1;::::0;:20:::1;::::0;71951:8;71939:20:::1;:::i;:::-;49593:7:::0;49620:12;71918:17:::1;::::0;71934:1:::1;71918:17;:::i;:::-;:41;;71910:72;;;;-1:-1:-1::0;;;71910:72:0::1;;;;;;;:::i;:::-;71998:6;::::0;::::1;;71997:7;71989:39;;;;-1:-1:-1::0;;;71989:39:0::1;;;;;;;:::i;:::-;72043:13;::::0;;;::::1;;;72035:58;;;::::0;-1:-1:-1;;;72035:58:0;;14845:2:1;72035:58:0::1;::::0;::::1;14827:21:1::0;;;14864:18;;;14857:30;14923:34;14903:18;;;14896:62;14975:18;;72035:58:0::1;14643:356:1::0;72035:58:0::1;72109:21;72131:6;72109:29;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;72108:30;72100:65;;;;-1:-1:-1::0;;;72100:65:0::1;;;;;;;:::i;:::-;72180:34;72199:6;72207;;72180:18;:34::i;:::-;72172:64;;;;-1:-1:-1::0;;;72172:64:0::1;;;;;;;:::i;:::-;72286:17;::::0;72267:10:::1;72251:27;::::0;;;:15:::1;:27;::::0;;;;;:31:::1;::::0;72281:1:::1;72251:31;:::i;:::-;:52;;72243:97;;;::::0;-1:-1:-1;;;72243:97:0;;11113:2:1;72243:97:0::1;::::0;::::1;11095:21:1::0;;;11132:18;;;11125:30;11191:34;11171:18;;;11164:62;11243:18;;72243:97:0::1;10911:356:1::0;72243:97:0::1;72363:10;72347:27;::::0;;;:15:::1;:27;::::0;;;;:32;;72378:1:::1;::::0;72347:27;:32:::1;::::0;72378:1;;72347:32:::1;:::i;:::-;;;;;;;;72418:4;72386:21;72408:6;72386:29;;;;;;:::i;76574:349::-:0;76650:16;76678:23;76704:17;76714:6;76704:9;:17::i;:::-;76678:43;;76728:25;76770:15;-1:-1:-1;;;;;76756:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76756:30:0;;76728:58;;76798:9;76793:103;76813:15;76809:1;:19;76793:103;;;76858:30;76878:6;76886:1;76858:19;:30::i;:::-;76844:8;76853:1;76844:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;76830:3;;;;:::i;:::-;;;;76793:103;;;-1:-1:-1;76909:8:0;76574:349;-1:-1:-1;;;76574:349:0:o;72461:656::-;66217:1;66815:7;;:19;;66807:63;;;;-1:-1:-1;;;66807:63:0;;;;;;;:::i;:::-;66217:1;66948:7;:18;72610:8:::1;::::0;72598:9:::1;::::0;:20:::1;::::0;72610:8;72598:20:::1;:::i;:::-;49593:7:::0;49620:12;72577:17:::1;::::0;72593:1:::1;72577:17;:::i;:::-;:41;;72569:72;;;;-1:-1:-1::0;;;72569:72:0::1;;;;;;;:::i;:::-;72657:6;::::0;::::1;;72656:7;72648:39;;;;-1:-1:-1::0;;;72648:39:0::1;;;;;;;:::i;:::-;72702:13;::::0;;;::::1;;;72694:58;;;::::0;-1:-1:-1;;;72694:58:0;;14845:2:1;72694:58:0::1;::::0;::::1;14827:21:1::0;;;14864:18;;;14857:30;14923:34;14903:18;;;14896:62;14975:18;;72694:58:0::1;14643:356:1::0;72694:58:0::1;72768:22;72791:6;72768:30;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;72767:31;72759:66;;;;-1:-1:-1::0;;;72759:66:0::1;;;;;;;:::i;:::-;72840:35;72860:6;72868;;72840:19;:35::i;:::-;72832:65;;;;-1:-1:-1::0;;;72832:65:0::1;;;;;;;:::i;:::-;72947:17;::::0;72928:10:::1;72912:27;::::0;;;:15:::1;:27;::::0;;;;;:31:::1;::::0;72942:1:::1;72912:31;:::i;:::-;:52;;72904:97;;;::::0;-1:-1:-1;;;72904:97:0;;11113:2:1;72904:97:0::1;::::0;::::1;11095:21:1::0;;;11132:18;;;11125:30;11191:34;11171:18;;;11164:62;11243:18;;72904:97:0::1;10911:356:1::0;72904:97:0::1;73024:10;73008:27;::::0;;;:15:::1;:27;::::0;;;;:32;;73039:1:::1;::::0;73008:27;:32:::1;::::0;73039:1;;73008:32:::1;:::i;:::-;;;;;;;;73080:4;73047:22;73070:6;73047:30;;;;;;:::i;77048:123::-:0;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;77131:34;;::::1;::::0;:14:::1;::::0;:34:::1;::::0;::::1;::::0;::::1;:::i;7708:201::-:0;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7797:22:0;::::1;7789:73;;;::::0;-1:-1:-1;;;7789:73:0;;11474:2:1;7789:73:0::1;::::0;::::1;11456:21:1::0;11513:2;11493:18;;;11486:30;11552:34;11532:18;;;11525:62;-1:-1:-1;;;11603:18:1;;;11596:36;11649:19;;7789:73:0::1;11272:402:1::0;7789:73:0::1;7873:28;7892:8;7873:18;:28::i;:::-;7708:201:::0;:::o;77177:93::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;77242:10:::1;:22:::0;77177:93::o;70074:130::-;6872:6;;-1:-1:-1;;;;;6872:6:0;5603:10;7019:23;7011:68;;;;-1:-1:-1;;;7011:68:0;;;;;;;:::i;:::-;70160:21:::1;:38:::0;70074:130::o;61618:196::-;61733:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;61733:29:0;-1:-1:-1;;;;;61733:29:0;;;;;;;;;61778:28;;61733:24;;61778:28;;;;;;;61618:196;;;:::o;71693:104::-;71761:30;71771:9;71782:8;71761:9;:30::i;59498:2002::-;59613:35;59651:20;59663:7;59651:11;:20::i;:::-;59726:18;;59613:58;;-1:-1:-1;59684:22:0;;-1:-1:-1;;;;;59710:34:0;5603:10;-1:-1:-1;;;;;59710:34:0;;:87;;;-1:-1:-1;5603:10:0;59761:20;59773:7;59761:11;:20::i;:::-;-1:-1:-1;;;;;59761:36:0;;59710:87;:154;;;-1:-1:-1;59831:18:0;;59814:50;;5603:10;55376:164;:::i;59814:50::-;59684:181;;59886:17;59878:80;;;;-1:-1:-1;;;59878:80:0;;19345:2:1;59878:80:0;;;19327:21:1;19384:2;19364:18;;;19357:30;19423:34;19403:18;;;19396:62;-1:-1:-1;;;19474:18:1;;;19467:48;19532:19;;59878:80:0;19143:414:1;59878:80:0;60001:4;-1:-1:-1;;;;;59979:26:0;:13;:18;;;-1:-1:-1;;;;;59979:26:0;;59971:77;;;;-1:-1:-1;;;59971:77:0;;17101:2:1;59971:77:0;;;17083:21:1;17140:2;17120:18;;;17113:30;17179:34;17159:18;;;17152:62;-1:-1:-1;;;17230:18:1;;;17223:36;17276:19;;59971:77:0;16899:402:1;59971:77:0;-1:-1:-1;;;;;60067:16:0;;60059:66;;;;-1:-1:-1;;;60059:66:0;;13393:2:1;60059:66:0;;;13375:21:1;13432:2;13412:18;;;13405:30;13471:34;13451:18;;;13444:62;-1:-1:-1;;;13522:18:1;;;13515:35;13567:19;;60059:66:0;13191:401:1;60059:66:0;60246:49;60263:1;60267:7;60276:13;:18;;;60246:8;:49::i;:::-;-1:-1:-1;;;;;60591:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;60591:31:0;;;-1:-1:-1;;;;;60591:31:0;;;-1:-1:-1;;60591:31:0;;;;;;;60637:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;60637:29:0;;;;;;;;;;;;;60683:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;60728:61:0;;;;-1:-1:-1;;;60773:15:0;-1:-1:-1;;;;;60728:61:0;;;;;61063:11;;;61093:24;;;;;:29;61063:11;;61093:29;61089:295;;61161:20;61169:11;56755:4;56789:12;-1:-1:-1;56779:22:0;56698:111;61161:20;61157:212;;;61238:18;;;61206:24;;;:11;:24;;;;;;;;:50;;61321:28;;;;-1:-1:-1;;;;;61279:70:0;-1:-1:-1;;;61279:70:0;-1:-1:-1;;;;;;61279:70:0;;;-1:-1:-1;;;;;61206:50:0;;;61279:70;;;;;;;61157:212;60566:829;61431:7;61427:2;-1:-1:-1;;;;;61412:27:0;61421:4;-1:-1:-1;;;;;61412:27:0;;;;;;;;;;;61450:42;59602:1898;;59498:2002;;;:::o;71365:166::-;71465:4;71485:40;71504:13;71510:6;71504:5;:13::i;:::-;71519:5;;71485:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71485:18:0;;-1:-1:-1;;;71485:40:0:i;:::-;71478:47;71365:166;-1:-1:-1;;;;71365:166:0:o;52379:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;52482:16:0;52490:7;56755:4;56789:12;-1:-1:-1;56779:22:0;56698:111;52482:16;52474:71;;;;-1:-1:-1;;;52474:71:0;;12234:2:1;52474:71:0;;;12216:21:1;12273:2;12253:18;;;12246:30;12312:34;12292:18;;;12285:62;-1:-1:-1;;;12363:18:1;;;12356:40;12413:19;;52474:71:0;12032:406:1;52474:71:0;52603:7;52583:245;52650:31;52684:17;;;:11;:17;;;;;;;;;52650:51;;;;;;;;;-1:-1:-1;;;;;52650:51:0;;;;;-1:-1:-1;;;52650:51:0;;;-1:-1:-1;;;;;52650:51:0;;;;;;;;52724:28;52720:93;;52784:9;52379:537;-1:-1:-1;;;52379:537:0:o;52720:93::-;-1:-1:-1;;;52623:6:0;52583:245;;8069:191;8162:6;;;-1:-1:-1;;;;;8179:17:0;;;-1:-1:-1;;;;;;8179:17:0;;;;;;;8212:40;;8162:6;;;8179:17;8162:6;;8212:40;;8143:16;;8212:40;8132:128;8069:191;:::o;70874:166::-;70974:4;70994:40;71013:13;71019:6;71013:5;:13::i;:::-;71028:5;;70994:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70994:18:0;;-1:-1:-1;;;70994:40:0:i;70387:164::-;70486:4;70506:39;70524:13;70530:6;70524:5;:13::i;:::-;70539:5;;70506:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70506:17:0;;-1:-1:-1;;;70506:39:0:i;62379:804::-;62534:4;-1:-1:-1;;;;;62555:13:0;;9795:19;:23;62551:625;;62591:72;;-1:-1:-1;;;62591:72:0;;-1:-1:-1;;;;;62591:36:0;;;;;:72;;5603:10;;62642:4;;62648:7;;62657:5;;62591:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62591:72:0;;;;;;;;-1:-1:-1;;62591:72:0;;;;;;;;;;;;:::i;:::-;;;62587:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62837:13:0;;62833:273;;62880:61;;-1:-1:-1;;;62880:61:0;;;;;;;:::i;62833:273::-;63056:6;63050:13;63041:6;63037:2;63033:15;63026:38;62587:534;-1:-1:-1;;;;;;62714:55:0;-1:-1:-1;;;62714:55:0;;-1:-1:-1;62707:62:0;;62551:625;-1:-1:-1;63160:4:0;62379:804;;;;;;:::o;68554:103::-;68614:13;68643:8;68636:15;;;;;:::i;3085:723::-;3141:13;3362:10;3358:53;;-1:-1:-1;;3389:10:0;;;;;;;;;;;;-1:-1:-1;;;3389:10:0;;;;;3085:723::o;3358:53::-;3436:5;3421:12;3477:78;3484:9;;3477:78;;3510:8;;;;:::i;:::-;;-1:-1:-1;3533:10:0;;-1:-1:-1;3541:2:0;3533:10;;:::i;:::-;;;3477:78;;;3565:19;3597:6;-1:-1:-1;;;;;3587:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3587:17:0;;3565:39;;3615:154;3622:10;;3615:154;;3649:11;3659:1;3649:11;;:::i;:::-;;-1:-1:-1;3718:10:0;3726:2;3718:5;:10;:::i;:::-;3705:24;;:2;:24;:::i;:::-;3692:39;;3675:6;3682;3675:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3675:56:0;;;;;;;;-1:-1:-1;3746:11:0;3755:2;3746:11;;:::i;:::-;;;3615:154;;69429:162;69527:4;69547:38;69564:13;69570:6;69564:5;:13::i;:::-;69579:5;;69547:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69547:16:0;;-1:-1:-1;;;69547:38:0:i;69904:164::-;70003:4;70023:39;70041:13;70047:6;70041:5;:13::i;:::-;70056:5;;70023:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70023:17:0;;-1:-1:-1;;;70023:39:0:i;56817:104::-;56886:27;56896:2;56900:8;56886:27;;;;;;;;;;;;:9;:27::i;69129:123::-;69188:7;69238:6;69221:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;69211:35;;;;;;69204:42;;69129:123;;;:::o;71186:173::-;71274:4;71298:55;71317:5;71324:22;;71348:4;71298:18;:55::i;70695:173::-;70783:4;70807:55;70826:5;70833:22;;70857:4;70807:18;:55::i;70210:171::-;70297:4;70321:54;70340:5;70347:21;;70370:4;70321:18;:54::i;69258:165::-;69344:4;69364:53;69383:5;69390:20;;69412:4;69364:18;:53::i;69731:167::-;69818:4;69838:54;69857:5;69864:21;;69887:4;69838:18;:54::i;57284:163::-;57407:32;57413:2;57417:8;57427:5;57434:4;57407:5;:32::i;1255:190::-;1380:4;1433;1404:25;1417:5;1424:4;1404:12;:25::i;:::-;:33;;1255:190;-1:-1:-1;;;;1255:190:0:o;57706:1538::-;57845:20;57868:12;-1:-1:-1;;;;;57899:16:0;;57891:62;;;;-1:-1:-1;;;57891:62:0;;20939:2:1;57891:62:0;;;20921:21:1;20978:2;20958:18;;;20951:30;21017:34;20997:18;;;20990:62;-1:-1:-1;;;21068:18:1;;;21061:31;21109:19;;57891:62:0;20737:397:1;57891:62:0;57972:13;57964:66;;;;-1:-1:-1;;;57964:66:0;;21341:2:1;57964:66:0;;;21323:21:1;21380:2;21360:18;;;21353:30;21419:34;21399:18;;;21392:62;-1:-1:-1;;;21470:18:1;;;21463:38;21518:19;;57964:66:0;21139:404:1;57964:66:0;-1:-1:-1;;;;;58382:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;58382:45:0;;-1:-1:-1;;;;;58382:45:0;;;;;;;;;;58442:50;;;;;;;;;;;;;;58509:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;58559:66:0;;;;-1:-1:-1;;;58609:15:0;-1:-1:-1;;;;;58559:66:0;;;;;;58509:25;;58694:415;58714:8;58710:1;:12;58694:415;;;58753:38;;58778:12;;-1:-1:-1;;;;;58753:38:0;;;58770:1;;58753:38;;58770:1;;58753:38;58814:4;58810:249;;;58877:59;58908:1;58912:2;58916:12;58930:5;58877:22;:59::i;:::-;58843:196;;;;-1:-1:-1;;;58843:196:0;;;;;;;:::i;:::-;59079:14;;;;;58724:3;58694:415;;;-1:-1:-1;59125:12:0;:27;59176:60;56088:355;1806:675;1889:7;1932:4;1889:7;1947:497;1971:5;:12;1967:1;:16;1947:497;;;2005:20;2028:5;2034:1;2028:8;;;;;;;;:::i;:::-;;;;;;;2005:31;;2071:12;2055;:28;2051:382;;2557:13;2607:15;;;2643:4;2636:15;;;2690:4;2674:21;;2183:57;;2051:382;;;2557:13;2607:15;;;2643:4;2636:15;;;2690:4;2674:21;;2360:57;;2051:382;-1:-1:-1;1985:3:0;;;;:::i;:::-;;;;1947:497;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:221;811:5;864:3;857:4;849:6;845:17;841:27;831:55;;882:1;879;872:12;831:55;904:79;979:3;970:6;957:20;950:4;942:6;938:17;904:79;:::i;994:186::-;1053:6;1106:2;1094:9;1085:7;1081:23;1077:32;1074:52;;;1122:1;1119;1112:12;1074:52;1145:29;1164:9;1145:29;:::i;1185:260::-;1253:6;1261;1314:2;1302:9;1293:7;1289:23;1285:32;1282:52;;;1330:1;1327;1320:12;1282:52;1353:29;1372:9;1353:29;:::i;:::-;1343:39;;1401:38;1435:2;1424:9;1420:18;1401:38;:::i;:::-;1391:48;;1185:260;;;;;:::o;1450:328::-;1527:6;1535;1543;1596:2;1584:9;1575:7;1571:23;1567:32;1564:52;;;1612:1;1609;1602:12;1564:52;1635:29;1654:9;1635:29;:::i;:::-;1625:39;;1683:38;1717:2;1706:9;1702:18;1683:38;:::i;:::-;1673:48;;1768:2;1757:9;1753:18;1740:32;1730:42;;1450:328;;;;;:::o;1783:666::-;1878:6;1886;1894;1902;1955:3;1943:9;1934:7;1930:23;1926:33;1923:53;;;1972:1;1969;1962:12;1923:53;1995:29;2014:9;1995:29;:::i;:::-;1985:39;;2043:38;2077:2;2066:9;2062:18;2043:38;:::i;:::-;2033:48;;2128:2;2117:9;2113:18;2100:32;2090:42;;2183:2;2172:9;2168:18;2155:32;-1:-1:-1;;;;;2202:6:1;2199:30;2196:50;;;2242:1;2239;2232:12;2196:50;2265:22;;2318:4;2310:13;;2306:27;-1:-1:-1;2296:55:1;;2347:1;2344;2337:12;2296:55;2370:73;2435:7;2430:2;2417:16;2412:2;2408;2404:11;2370:73;:::i;:::-;2360:83;;;1783:666;;;;;;;:::o;2454:254::-;2519:6;2527;2580:2;2568:9;2559:7;2555:23;2551:32;2548:52;;;2596:1;2593;2586:12;2548:52;2619:29;2638:9;2619:29;:::i;:::-;2609:39;;2667:35;2698:2;2687:9;2683:18;2667:35;:::i;2713:254::-;2781:6;2789;2842:2;2830:9;2821:7;2817:23;2813:32;2810:52;;;2858:1;2855;2848:12;2810:52;2881:29;2900:9;2881:29;:::i;:::-;2871:39;2957:2;2942:18;;;;2929:32;;-1:-1:-1;;;2713:254:1:o;2972:963::-;3056:6;3087:2;3130;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3186:9;3173:23;-1:-1:-1;;;;;3256:2:1;3248:6;3245:14;3242:34;;;3272:1;3269;3262:12;3242:34;3310:6;3299:9;3295:22;3285:32;;3355:7;3348:4;3344:2;3340:13;3336:27;3326:55;;3377:1;3374;3367:12;3326:55;3413:2;3400:16;3435:2;3431;3428:10;3425:36;;;3441:18;;:::i;:::-;3487:2;3484:1;3480:10;3470:20;;3510:28;3534:2;3530;3526:11;3510:28;:::i;:::-;3572:15;;;3603:12;;;;3635:11;;;3665;;;3661:20;;3658:33;-1:-1:-1;3655:53:1;;;3704:1;3701;3694:12;3655:53;3726:1;3717:10;;3736:169;3750:2;3747:1;3744:9;3736:169;;;3807:23;3826:3;3807:23;:::i;:::-;3795:36;;3768:1;3761:9;;;;;3851:12;;;;3883;;3736:169;;;-1:-1:-1;3924:5:1;2972:963;-1:-1:-1;;;;;;;;2972:963:1:o;3940:180::-;3996:6;4049:2;4037:9;4028:7;4024:23;4020:32;4017:52;;;4065:1;4062;4055:12;4017:52;4088:26;4104:9;4088:26;:::i;4125:180::-;4184:6;4237:2;4225:9;4216:7;4212:23;4208:32;4205:52;;;4253:1;4250;4243:12;4205:52;-1:-1:-1;4276:23:1;;4125:180;-1:-1:-1;4125:180:1:o;4310:245::-;4368:6;4421:2;4409:9;4400:7;4396:23;4392:32;4389:52;;;4437:1;4434;4427:12;4389:52;4476:9;4463:23;4495:30;4519:5;4495:30;:::i;4560:249::-;4629:6;4682:2;4670:9;4661:7;4657:23;4653:32;4650:52;;;4698:1;4695;4688:12;4650:52;4730:9;4724:16;4749:30;4773:5;4749:30;:::i;4814:322::-;4883:6;4936:2;4924:9;4915:7;4911:23;4907:32;4904:52;;;4952:1;4949;4942:12;4904:52;4992:9;4979:23;-1:-1:-1;;;;;5017:6:1;5014:30;5011:50;;;5057:1;5054;5047:12;5011:50;5080;5122:7;5113:6;5102:9;5098:22;5080:50;:::i;5141:815::-;5246:6;5254;5262;5315:2;5303:9;5294:7;5290:23;5286:32;5283:52;;;5331:1;5328;5321:12;5283:52;5371:9;5358:23;-1:-1:-1;;;;;5441:2:1;5433:6;5430:14;5427:34;;;5457:1;5454;5447:12;5427:34;5480:50;5522:7;5513:6;5502:9;5498:22;5480:50;:::i;:::-;5470:60;;5583:2;5572:9;5568:18;5555:32;5539:48;;5612:2;5602:8;5599:16;5596:36;;;5628:1;5625;5618:12;5596:36;5666:8;5655:9;5651:24;5641:34;;5713:7;5706:4;5702:2;5698:13;5694:27;5684:55;;5735:1;5732;5725:12;5684:55;5775:2;5762:16;5801:2;5793:6;5790:14;5787:34;;;5817:1;5814;5807:12;5787:34;5870:7;5865:2;5855:6;5852:1;5848:14;5844:2;5840:23;5836:32;5833:45;5830:65;;;5891:1;5888;5881:12;5830:65;5922:2;5918;5914:11;5904:21;;5944:6;5934:16;;;;;5141:815;;;;;:::o;6146:254::-;6214:6;6222;6275:2;6263:9;6254:7;6250:23;6246:32;6243:52;;;6291:1;6288;6281:12;6243:52;6327:9;6314:23;6304:33;;6356:38;6390:2;6379:9;6375:18;6356:38;:::i;6405:269::-;6462:6;6515:2;6503:9;6494:7;6490:23;6486:32;6483:52;;;6531:1;6528;6521:12;6483:52;6570:9;6557:23;6620:4;6613:5;6609:16;6602:5;6599:27;6589:55;;6640:1;6637;6630:12;6679:257;6720:3;6758:5;6752:12;6785:6;6780:3;6773:19;6801:63;6857:6;6850:4;6845:3;6841:14;6834:4;6827:5;6823:16;6801:63;:::i;:::-;6918:2;6897:15;-1:-1:-1;;6893:29:1;6884:39;;;;6925:4;6880:50;;6679:257;-1:-1:-1;;6679:257:1:o;6941:276::-;7072:3;7110:6;7104:13;7126:53;7172:6;7167:3;7160:4;7152:6;7148:17;7126:53;:::i;:::-;7195:16;;;;;6941:276;-1:-1:-1;;6941:276:1:o;7222:1527::-;7446:3;7484:6;7478:13;7510:4;7523:51;7567:6;7562:3;7557:2;7549:6;7545:15;7523:51;:::i;:::-;7637:13;;7596:16;;;;7659:55;7637:13;7596:16;7681:15;;;7659:55;:::i;:::-;7803:13;;7736:20;;;7776:1;;7863;7885:18;;;;7938;;;;7965:93;;8043:4;8033:8;8029:19;8017:31;;7965:93;8106:2;8096:8;8093:16;8073:18;8070:40;8067:167;;;-1:-1:-1;;;8133:33:1;;8189:4;8186:1;8179:15;8219:4;8140:3;8207:17;8067:167;8250:18;8277:110;;;;8401:1;8396:328;;;;8243:481;;8277:110;-1:-1:-1;;8312:24:1;;8298:39;;8357:20;;;;-1:-1:-1;8277:110:1;;8396:328;23688:1;23681:14;;;23725:4;23712:18;;8491:1;8505:169;8519:8;8516:1;8513:15;8505:169;;;8601:14;;8586:13;;;8579:37;8644:16;;;;8536:10;;8505:169;;;8509:3;;8705:8;8698:5;8694:20;8687:27;;8243:481;-1:-1:-1;8740:3:1;;7222:1527;-1:-1:-1;;;;;;;;;;;7222:1527:1:o;8962:488::-;-1:-1:-1;;;;;9231:15:1;;;9213:34;;9283:15;;9278:2;9263:18;;9256:43;9330:2;9315:18;;9308:34;;;9378:3;9373:2;9358:18;;9351:31;;;9156:4;;9399:45;;9424:19;;9416:6;9399:45;:::i;:::-;9391:53;8962:488;-1:-1:-1;;;;;;8962:488:1:o;9455:632::-;9626:2;9678:21;;;9748:13;;9651:18;;;9770:22;;;9597:4;;9626:2;9849:15;;;;9823:2;9808:18;;;9597:4;9892:169;9906:6;9903:1;9900:13;9892:169;;;9967:13;;9955:26;;10036:15;;;;10001:12;;;;9928:1;9921:9;9892:169;;;-1:-1:-1;10078:3:1;;9455:632;-1:-1:-1;;;;;;9455:632:1:o;10284:219::-;10433:2;10422:9;10415:21;10396:4;10453:44;10493:2;10482:9;10478:18;10470:6;10453:44;:::i;13597:343::-;13799:2;13781:21;;;13838:2;13818:18;;;13811:30;-1:-1:-1;;;13872:2:1;13857:18;;13850:49;13931:2;13916:18;;13597:343::o;14292:346::-;14494:2;14476:21;;;14533:2;14513:18;;;14506:30;-1:-1:-1;;;14567:2:1;14552:18;;14545:52;14629:2;14614:18;;14292:346::o;15430:353::-;15632:2;15614:21;;;15671:2;15651:18;;;15644:30;15710:31;15705:2;15690:18;;15683:59;15774:2;15759:18;;15430:353::o;15788:342::-;15990:2;15972:21;;;16029:2;16009:18;;;16002:30;-1:-1:-1;;;16063:2:1;16048:18;;16041:48;16121:2;16106:18;;15788:342::o;16547:347::-;16749:2;16731:21;;;16788:2;16768:18;;;16761:30;16827:25;16822:2;16807:18;;16800:53;16885:2;16870:18;;16547:347::o;17306:341::-;17508:2;17490:21;;;17547:2;17527:18;;;17520:30;-1:-1:-1;;;17581:2:1;17566:18;;17559:47;17638:2;17623:18;;17306:341::o;17652:356::-;17854:2;17836:21;;;17873:18;;;17866:30;17932:34;17927:2;17912:18;;17905:62;17999:2;17984:18;;17652:356::o;18013:354::-;18215:2;18197:21;;;18254:2;18234:18;;;18227:30;18293:32;18288:2;18273:18;;18266:60;18358:2;18343:18;;18013:354::o;20317:415::-;20519:2;20501:21;;;20558:2;20538:18;;;20531:30;20597:34;20592:2;20577:18;;20570:62;-1:-1:-1;;;20663:2:1;20648:18;;20641:49;20722:3;20707:19;;20317:415::o;21963:355::-;22165:2;22147:21;;;22204:2;22184:18;;;22177:30;22243:33;22238:2;22223:18;;22216:61;22309:2;22294:18;;21963:355::o;23335:275::-;23406:2;23400:9;23471:2;23452:13;;-1:-1:-1;;23448:27:1;23436:40;;-1:-1:-1;;;;;23491:34:1;;23527:22;;;23488:62;23485:88;;;23553:18;;:::i;:::-;23589:2;23582:22;23335:275;;-1:-1:-1;23335:275:1:o;23741:128::-;23781:3;23812:1;23808:6;23805:1;23802:13;23799:39;;;23818:18;;:::i;:::-;-1:-1:-1;23854:9:1;;23741:128::o;23874:120::-;23914:1;23940;23930:35;;23945:18;;:::i;:::-;-1:-1:-1;23979:9:1;;23874:120::o;23999:168::-;24039:7;24105:1;24101;24097:6;24093:14;24090:1;24087:21;24082:1;24075:9;24068:17;24064:45;24061:71;;;24112:18;;:::i;:::-;-1:-1:-1;24152:9:1;;23999:168::o;24172:125::-;24212:4;24240:1;24237;24234:8;24231:34;;;24245:18;;:::i;:::-;-1:-1:-1;24282:9:1;;24172:125::o;24302:258::-;24374:1;24384:113;24398:6;24395:1;24392:13;24384:113;;;24474:11;;;24468:18;24455:11;;;24448:39;24420:2;24413:10;24384:113;;;24515:6;24512:1;24509:13;24506:48;;;-1:-1:-1;;24550:1:1;24532:16;;24525:27;24302:258::o;24565:380::-;24644:1;24640:12;;;;24687;;;24708:61;;24762:4;24754:6;24750:17;24740:27;;24708:61;24815:2;24807:6;24804:14;24784:18;24781:38;24778:161;;;24861:10;24856:3;24852:20;24849:1;24842:31;24896:4;24893:1;24886:15;24924:4;24921:1;24914:15;24778:161;;24565:380;;;:::o;24950:135::-;24989:3;-1:-1:-1;;25010:17:1;;25007:43;;;25030:18;;:::i;:::-;-1:-1:-1;25077:1:1;25066:13;;24950:135::o;25090:112::-;25122:1;25148;25138:35;;25153:18;;:::i;:::-;-1:-1:-1;25187:9:1;;25090:112::o;25207:127::-;25268:10;25263:3;25259:20;25256:1;25249:31;25299:4;25296:1;25289:15;25323:4;25320:1;25313:15;25339:127;25400:10;25395:3;25391:20;25388:1;25381:31;25431:4;25428:1;25421:15;25455:4;25452:1;25445:15;25471:127;25532:10;25527:3;25523:20;25520:1;25513:31;25563:4;25560:1;25553:15;25587:4;25584:1;25577:15;25603:127;25664:10;25659:3;25655:20;25652:1;25645:31;25695:4;25692:1;25685:15;25719:4;25716:1;25709:15;25735:131;-1:-1:-1;;;;;;25809:32:1;;25799:43;;25789:71;;25856:1;25853;25846:12

Swarm Source

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