ETH Price: $1,936.77 (+2.22%)
 

Overview

Max Total Supply

24 SQUAD

Holders

7

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SQUAD
0x89Dcac9Ea90440d79DD6596d75Db9E13d21C47b1
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:
mutantsquadNFT

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-04-16
*/

// 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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// 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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// 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/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.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.
 */
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 Merklee 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/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: @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: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
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 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // 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) private _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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokxens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

    /**
     * @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(collectionSize). 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 = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; 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);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; 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 Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            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);

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(
                    prevOwnership.addr,
                    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);
    }

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @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/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: contracts/ERC721A-Merkle.sol



pragma solidity ^0.8.0;






contract mutantsquadNFT is Ownable, ERC721A, ReentrancyGuard {
    uint256 public immutable MAX_SUPPLY = 5555;
    uint256 public constant PRICE = 0.04 ether;
    uint256 public constant PRE_PRICE = 0.03 ether;
    uint256 public maxPresale = 5;
    uint256 public maxPublic = 100; //max total for public mint
    uint256 public maxPublicTx; //max per tx public mint

    uint256 public immutable amountForTeam;

    address constant ADDRESS_1 = 0x0Da7FE5f90d139567d8d80bEa4D98aA84Fa09AC7;

    bool public _isActive = false;
    bool public _presaleActive = false;
    bool public _freeActive = false;

    mapping(address => bool) public allowList;
    mapping(address => bool) public claimList;
    mapping(address => uint8) public _preSaleListCounter;
    mapping(address => uint256) public _publicCounter;
    mapping(address => uint256) public _teamCounter;

    // merkle root
    bytes32 public preSaleRoot;

    constructor(
        string memory name,
        string memory symbol,
        uint256 _amountForTeam,
        uint256 _maxPublicTx
    )
        ERC721A(name, symbol, _amountForTeam, _maxPublicTx)
    {
        maxPublicTx = _maxPublicTx;
        amountForTeam = _amountForTeam;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    //set variables
    function setActive(bool isActive) external onlyOwner {
        _isActive = isActive;
    }

    function presaleActive(bool isActive) external onlyOwner {
        _presaleActive = isActive;
    }

     function freeActive(bool isActive) external onlyOwner {
        _freeActive = isActive;
    }

    function setMaxPresale(uint256 _maxPresale) external onlyOwner {
        maxPresale = _maxPresale;
    }

    function setMaxMints(uint256 maxMints_) public onlyOwner {
        maxPublic = maxMints_;
    }

    function setPreSaleRoot(bytes32 _root) external onlyOwner {
        preSaleRoot = _root;
    }

    
    // Internal for marketing, devs, etc
    function internalMint(uint256 quantity, address to) external onlyOwner {
        require(
            _teamCounter[msg.sender] + quantity <= amountForTeam,
            "too many already minted for internal mint"
        );
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "would exceed max supply"
        );
        _safeMint(to, quantity);
        _teamCounter[msg.sender] = _teamCounter[msg.sender] + quantity;
    }

    // metadata URI
    string private _baseTokenURI;

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    // Presale
    function mintPreSaleTokens(uint8 quantity, bytes32[] calldata _merkleProof)
        external
        payable
        callerIsUser
        nonReentrant
    {
        require(_presaleActive, "Pre mint is not active");
        require(
            _preSaleListCounter[msg.sender] + quantity <= maxPresale,
            "Exceeded max available to purchase"
        );
        require(quantity > 0, "Must mint more than 0 tokens");
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "Purchase would exceed max supply of Tokens"
        );
        require(PRE_PRICE * quantity == msg.value, "Incorrect funds");

        // check proof & mint
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, preSaleRoot, leaf) ||
                allowList[msg.sender],
            "Invalid MerkleProof"
        );
        
        if(_freeActive && !claimList[msg.sender] && (totalSupply() + quantity + 1 <= MAX_SUPPLY)) {
            quantity++;
            claimList[msg.sender] = true;
        }  

        _safeMint(msg.sender, quantity);
        _preSaleListCounter[msg.sender] =
            _preSaleListCounter[msg.sender] +
            quantity;
    }

    function addToPreSaleOverflow(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            allowList[addresses[i]] = true;
        }
    }

    //withdraw to owner wallet
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(ADDRESS_1).transfer(balance);
    }

    // public mint
    function publicSaleMint(uint256 quantity)
        external
        payable
        nonReentrant
        callerIsUser
    {
        require(quantity > 0, "Must mint more than 0 tokens");
        require(_isActive, "public sale has not begun yet");
        require(PRICE * quantity == msg.value, "Incorrect funds");
        require(quantity <= maxPublicTx, "exceeds max per transaction");
        require(
            _publicCounter[msg.sender] + quantity <= maxPublic,
            "exceeds max per address"
        );
        require(totalSupply() + quantity <= MAX_SUPPLY, "reached max supply");

        if(_freeActive && !claimList[msg.sender] && (totalSupply() + quantity + 1 <= MAX_SUPPLY)) {
            quantity++;
            claimList[msg.sender] = true;
        } 

        _safeMint(msg.sender, quantity);
        _publicCounter[msg.sender] = _publicCounter[msg.sender] + quantity;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_amountForTeam","type":"uint256"},{"internalType":"uint256","name":"_maxPublicTx","type":"uint256"}],"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_freeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_preSaleListCounter","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_publicCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_teamCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPreSaleOverflow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"freeActive","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":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","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":"maxPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintPreSaleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"preSaleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"presaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","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":"bool","name":"isActive","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMints_","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPresale","type":"uint256"}],"name":"setMaxPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setPreSaleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052600060018190556008556115b360c0526005600a556064600b55600d805462ffffff191690553480156200003857600080fd5b50604051620034f7380380620034f78339810160408190526200005b9162000331565b838383836200006a3362000184565b60008111620000d75760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001395760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000ce565b83516200014e906002906020870190620001d4565b50825162000164906003906020860190620001d4565b5060a09190915260805250506001600955600c5560e05250620003fe9050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001e290620003ab565b90600052602060002090601f01602090048101928262000206576000855562000251565b82601f106200022157805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025157825182559160200191906001019062000234565b506200025f92915062000263565b5090565b5b808211156200025f576000815560010162000264565b600082601f8301126200028c57600080fd5b81516001600160401b0380821115620002a957620002a9620003e8565b604051601f8301601f19908116603f01168101908282118183101715620002d457620002d4620003e8565b81604052838152602092508683858801011115620002f157600080fd5b600091505b83821015620003155785820183015181830184015290820190620002f6565b83821115620003275760008385830101525b9695505050505050565b600080600080608085870312156200034857600080fd5b84516001600160401b03808211156200036057600080fd5b6200036e888389016200027a565b955060208701519150808211156200038557600080fd5b5062000394878288016200027a565b604087015160609097015195989097509350505050565b600181811c90821680620003c057607f821691505b60208210811415620003e257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e05161308a6200046d600039600081816106df01526116a7015260008181610436015281816113770152818161141e01528181611734015281816119b70152611ba90152600081816121a1015281816121cb015261262101526000505061308a6000f3fe6080604052600436106102935760003560e01c8063715018a61161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c5146107dd578063eb575afc14610826578063f2fde38b14610846578063fa4de74d14610866578063fd5df3c6146108a8578063fe042d49146108d557600080fd5b8063b88d4fde14610734578063c87b56dd14610754578063d7224ba014610774578063da22488c1461078a578063e32cb6d8146107aa578063e7661c78146107ca57600080fd5b806395d89b411161011357806395d89b411461068257806396ae80eb14610697578063a22cb465146106ad578063a69b1cd5146106cd578063acec338a14610701578063b3ab66b01461072157600080fd5b8063715018a6146105e457806379c9cb7b146105f95780637dc42975146106195780638d859f3e1461062f5780638da5cb5b1461064a5780638ec89e4f1461066857600080fd5b80633ccfd60b116101fe578063556fedd2116101b7578063556fedd21461052a57806355f804b3146105455780636352211e1461056557806364e26c43146105855780636b0a1176146105a557806370a08231146105c457600080fd5b80633ccfd60b1461045857806342842e0e1461046d57806343b6164d1461048d57806345f60e03146104ba57806347bf27f0146104ea5780634f6ccce71461050a57600080fd5b80632142ab29116102505780632142ab291461038857806323b872dd1461039e5780632848aeaf146103be5780632f745c59146103ee5780633154b9c21461040e57806332cb6b0c1461042457600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461032757806318160ddd146103495780631bbc1afa14610368575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612beb565b6108f5565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610962565b6040516102c49190612dad565b3480156102fb57600080fd5b5061030f61030a366004612bd2565b6109f4565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612b4b565b610a84565b005b34801561035557600080fd5b506001545b6040519081526020016102c4565b34801561037457600080fd5b50610347610383366004612bd2565b610b9c565b34801561039457600080fd5b5061035a600a5481565b3480156103aa57600080fd5b506103476103b9366004612a09565b610bcb565b3480156103ca57600080fd5b506102b86103d93660046129bb565b600e6020526000908152604090205460ff1681565b3480156103fa57600080fd5b5061035a610409366004612b4b565b610bd6565b34801561041a57600080fd5b5061035a60135481565b34801561043057600080fd5b5061035a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561046457600080fd5b50610347610d4f565b34801561047957600080fd5b50610347610488366004612a09565b610dc0565b34801561049957600080fd5b5061035a6104a83660046129bb565b60126020526000908152604090205481565b3480156104c657600080fd5b506102b86104d53660046129bb565b600f6020526000908152604090205460ff1681565b3480156104f657600080fd5b50610347610505366004612bb7565b610ddb565b34801561051657600080fd5b5061035a610525366004612bd2565b610e1f565b34801561053657600080fd5b5061035a666a94d74f43000081565b34801561055157600080fd5b50610347610560366004612c25565b610e88565b34801561057157600080fd5b5061030f610580366004612bd2565b610ebe565b34801561059157600080fd5b506103476105a0366004612bb7565b610ed0565b3480156105b157600080fd5b50600d546102b890610100900460ff1681565b3480156105d057600080fd5b5061035a6105df3660046129bb565b610f16565b3480156105f057600080fd5b50610347610fa7565b34801561060557600080fd5b50610347610614366004612bd2565b610fdd565b34801561062557600080fd5b5061035a600b5481565b34801561063b57600080fd5b5061035a668e1bc9bf04000081565b34801561065657600080fd5b506000546001600160a01b031661030f565b34801561067457600080fd5b50600d546102b89060ff1681565b34801561068e57600080fd5b506102e261100c565b3480156106a357600080fd5b5061035a600c5481565b3480156106b957600080fd5b506103476106c8366004612b21565b61101b565b3480156106d957600080fd5b5061035a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561070d57600080fd5b5061034761071c366004612bb7565b6110e0565b61034761072f366004612bd2565b61111d565b34801561074057600080fd5b5061034761074f366004612a45565b6114c9565b34801561076057600080fd5b506102e261076f366004612bd2565b611502565b34801561078057600080fd5b5061035a60085481565b34801561079657600080fd5b506103476107a5366004612b75565b6115cf565b3480156107b657600080fd5b506103476107c5366004612c97565b61166b565b6103476107d8366004612cba565b6117ee565b3480156107e957600080fd5b506102b86107f83660046129d6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561083257600080fd5b50600d546102b89062010000900460ff1681565b34801561085257600080fd5b506103476108613660046129bb565b611c71565b34801561087257600080fd5b506108966108813660046129bb565b60106020526000908152604090205460ff1681565b60405160ff90911681526020016102c4565b3480156108b457600080fd5b5061035a6108c33660046129bb565b60116020526000908152604090205481565b3480156108e157600080fd5b506103476108f0366004612bd2565b611d0c565b60006001600160e01b031982166380ac58cd60e01b148061092657506001600160e01b03198216635b5e139f60e01b145b8061094157506001600160e01b0319821663780e9d6360e01b145b8061095c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461097190612f5c565b80601f016020809104026020016040519081016040528092919081815260200182805461099d90612f5c565b80156109ea5780601f106109bf576101008083540402835291602001916109ea565b820191906000526020600020905b8154815290600101906020018083116109cd57829003601f168201915b5050505050905090565b6000610a01826001541190565b610a685760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a8f82610ebe565b9050806001600160a01b0316836001600160a01b03161415610afe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a5f565b336001600160a01b0382161480610b1a5750610b1a81336107f8565b610b8c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a5f565b610b97838383611d3b565b505050565b6000546001600160a01b03163314610bc65760405162461bcd60e51b8152600401610a5f90612dc0565b600a55565b610b97838383611d97565b6000610be183610f16565b8210610c3a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a5f565b6000610c4560015490565b905060008060005b83811015610cef576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ca057805192505b876001600160a01b0316836001600160a01b03161415610cdc5786841415610cce5750935061095c92505050565b83610cd881612f97565b9450505b5080610ce781612f97565b915050610c4d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a5f565b6000546001600160a01b03163314610d795760405162461bcd60e51b8152600401610a5f90612dc0565b6040514790730da7fe5f90d139567d8d80bea4d98aa84fa09ac79082156108fc029083906000818181858888f19350505050158015610dbc573d6000803e3d6000fd5b5050565b610b97838383604051806020016040528060008152506114c9565b6000546001600160a01b03163314610e055760405162461bcd60e51b8152600401610a5f90612dc0565b600d80549115156101000261ff0019909216919091179055565b6000610e2a60015490565b8210610e845760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a5f565b5090565b6000546001600160a01b03163314610eb25760405162461bcd60e51b8152600401610a5f90612dc0565b610b97601483836128b3565b6000610ec98261211f565b5192915050565b6000546001600160a01b03163314610efa5760405162461bcd60e51b8152600401610a5f90612dc0565b600d8054911515620100000262ff000019909216919091179055565b60006001600160a01b038216610f825760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a5f565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610fd15760405162461bcd60e51b8152600401610a5f90612dc0565b610fdb60006122c9565b565b6000546001600160a01b031633146110075760405162461bcd60e51b8152600401610a5f90612dc0565b600b55565b60606003805461097190612f5c565b6001600160a01b0382163314156110745760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a5f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461110a5760405162461bcd60e51b8152600401610a5f90612dc0565b600d805460ff1916911515919091179055565b600260095414156111705760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a5f565b60026009553233146111c45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a5f565b600081116112145760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610a5f565b600d5460ff166112665760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610a5f565b3461127882668e1bc9bf040000612ebb565b146112b75760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610a5f565b600c548111156113095760405162461bcd60e51b815260206004820152601b60248201527f65786365656473206d617820706572207472616e73616374696f6e00000000006044820152606401610a5f565b600b5433600090815260116020526040902054611327908390612e6a565b11156113755760405162461bcd60e51b815260206004820152601760248201527f65786365656473206d61782070657220616464726573730000000000000000006044820152606401610a5f565b7f0000000000000000000000000000000000000000000000000000000000000000816113a060015490565b6113aa9190612e6a565b11156113ed5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610a5f565b600d5462010000900460ff1680156114155750336000908152600f602052604090205460ff16155b801561145f57507f00000000000000000000000000000000000000000000000000000000000000008161144760015490565b6114519190612e6a565b61145c906001612e6a565b11155b1561148c578061146e81612f97565b336000908152600f60205260409020805460ff191660011790559150505b6114963382612319565b336000908152601160205260409020546114b1908290612e6a565b33600090815260116020526040902055506001600955565b6114d4848484611d97565b6114e084848484612333565b6114fc5760405162461bcd60e51b8152600401610a5f90612df5565b50505050565b606061150f826001541190565b6115735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a5f565b600061157d612441565b9050600081511161159d57604051806020016040528060008152506115c8565b806115a784612450565b6040516020016115b8929190612d41565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146115f95760405162461bcd60e51b8152600401610a5f90612dc0565b60005b81811015610b97576001600e600085858581811061161c5761161c613012565b905060200201602081019061163191906129bb565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061166381612f97565b9150506115fc565b6000546001600160a01b031633146116955760405162461bcd60e51b8152600401610a5f90612dc0565b336000908152601260205260409020547f0000000000000000000000000000000000000000000000000000000000000000906116d2908490612e6a565b11156117325760405162461bcd60e51b815260206004820152602960248201527f746f6f206d616e7920616c7265616479206d696e74656420666f7220696e74656044820152681c9b985b081b5a5b9d60ba1b6064820152608401610a5f565b7f00000000000000000000000000000000000000000000000000000000000000008261175d60015490565b6117679190612e6a565b11156117b55760405162461bcd60e51b815260206004820152601760248201527f776f756c6420657863656564206d617820737570706c790000000000000000006044820152606401610a5f565b6117bf8183612319565b336000908152601260205260409020546117da908390612e6a565b336000908152601260205260409020555050565b32331461183d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a5f565b600260095414156118905760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a5f565b6002600955600d54610100900460ff166118e55760405162461bcd60e51b8152602060048201526016602482015275507265206d696e74206973206e6f742061637469766560501b6044820152606401610a5f565b600a543360009081526010602052604090205461190690859060ff16612e82565b60ff1611156119625760405162461bcd60e51b815260206004820152602260248201527f4578636565646564206d617820617661696c61626c6520746f20707572636861604482015261736560f01b6064820152608401610a5f565b60008360ff16116119b55760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610a5f565b7f00000000000000000000000000000000000000000000000000000000000000008360ff166119e360015490565b6119ed9190612e6a565b1115611a4e5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620546f6b656e7360b01b6064820152608401610a5f565b34611a6360ff8516666a94d74f430000612ebb565b14611aa25760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610a5f565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b1c83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601354915084905061254e565b80611b365750336000908152600e602052604090205460ff165b611b785760405162461bcd60e51b815260206004820152601360248201527224b73b30b634b21026b2b935b632a83937b7b360691b6044820152606401610a5f565b600d5462010000900460ff168015611ba05750336000908152600f602052604090205460ff16155b8015611bed57507f00000000000000000000000000000000000000000000000000000000000000008460ff16611bd560015490565b611bdf9190612e6a565b611bea906001612e6a565b11155b15611c1a5783611bfc81612fb2565b336000908152600f60205260409020805460ff191660011790559450505b611c27338560ff16612319565b33600090815260106020526040902054611c4590859060ff16612e82565b336000908152601060205260409020805460ff191660ff92909216919091179055505060016009555050565b6000546001600160a01b03163314611c9b5760405162461bcd60e51b8152600401610a5f90612dc0565b6001600160a01b038116611d005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5f565b611d09816122c9565b50565b6000546001600160a01b03163314611d365760405162461bcd60e51b8152600401610a5f90612dc0565b601355565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611da28261211f565b80519091506000906001600160a01b0316336001600160a01b03161480611dd9575033611dce846109f4565b6001600160a01b0316145b80611deb57508151611deb90336107f8565b905080611e555760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a5f565b846001600160a01b031682600001516001600160a01b031614611ec95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a5f565b6001600160a01b038416611f2d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a5f565b611f3d6000848460000151611d3b565b6001600160a01b0385166000908152600560205260408120805460019290611f6f9084906001600160801b0316612eda565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611fbb91859116612e48565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612043846001612e6a565b6000818152600460205260409020549091506001600160a01b03166120d55761206d816001541190565b156120d55760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261213e826001541190565b61219d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a5f565b60007f000000000000000000000000000000000000000000000000000000000000000083106121fe576121f07f000000000000000000000000000000000000000000000000000000000000000084612f02565b6121fb906001612e6a565b90505b825b818110612268576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561225557949350505050565b508061226081612f45565b915050612200565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a5f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610dbc828260405180602001604052806000815250612564565b60006001600160a01b0384163b1561243557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612377903390899088908890600401612d70565b602060405180830381600087803b15801561239157600080fd5b505af19250505080156123c1575060408051601f3d908101601f191682019092526123be91810190612c08565b60015b61241b573d8080156123ef576040519150601f19603f3d011682016040523d82523d6000602084013e6123f4565b606091505b5080516124135760405162461bcd60e51b8152600401610a5f90612df5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612439565b5060015b949350505050565b60606014805461097190612f5c565b6060816124745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561249e578061248881612f97565b91506124979050600a83612ea7565b9150612478565b60008167ffffffffffffffff8111156124b9576124b9613028565b6040519080825280601f01601f1916602001820160405280156124e3576020820181803683370190505b5090505b8415612439576124f8600183612f02565b9150612505600a86612fd2565b612510906030612e6a565b60f81b81838151811061252557612525613012565b60200101906001600160f81b031916908160001a905350612547600a86612ea7565b94506124e7565b60008261255b858461283f565b14949350505050565b6001546001600160a01b0384166125c75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a5f565b6125d2816001541190565b1561261f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a5f565b7f000000000000000000000000000000000000000000000000000000000000000083111561269a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a5f565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126f6908790612e48565b6001600160801b031681526020018583602001516127149190612e48565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128345760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127f86000888488612333565b6128145760405162461bcd60e51b8152600401610a5f90612df5565b8161281e81612f97565b925050808061282c90612f97565b9150506127ab565b506001819055612117565b600081815b84518110156128ab57600085828151811061286157612861613012565b602002602001015190508083116128875760008381526020829052604090209250612898565b600081815260208490526040902092505b50806128a381612f97565b915050612844565b509392505050565b8280546128bf90612f5c565b90600052602060002090601f0160209004810192826128e15760008555612927565b82601f106128fa5782800160ff19823516178555612927565b82800160010185558215612927579182015b8281111561292757823582559160200191906001019061290c565b50610e849291505b80821115610e84576000815560010161292f565b80356001600160a01b038116811461295a57600080fd5b919050565b60008083601f84011261297157600080fd5b50813567ffffffffffffffff81111561298957600080fd5b6020830191508360208260051b85010111156129a457600080fd5b9250929050565b8035801515811461295a57600080fd5b6000602082840312156129cd57600080fd5b6115c882612943565b600080604083850312156129e957600080fd5b6129f283612943565b9150612a0060208401612943565b90509250929050565b600080600060608486031215612a1e57600080fd5b612a2784612943565b9250612a3560208501612943565b9150604084013590509250925092565b60008060008060808587031215612a5b57600080fd5b612a6485612943565b9350612a7260208601612943565b925060408501359150606085013567ffffffffffffffff80821115612a9657600080fd5b818701915087601f830112612aaa57600080fd5b813581811115612abc57612abc613028565b604051601f8201601f19908116603f01168101908382118183101715612ae457612ae4613028565b816040528281528a6020848701011115612afd57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612b3457600080fd5b612b3d83612943565b9150612a00602084016129ab565b60008060408385031215612b5e57600080fd5b612b6783612943565b946020939093013593505050565b60008060208385031215612b8857600080fd5b823567ffffffffffffffff811115612b9f57600080fd5b612bab8582860161295f565b90969095509350505050565b600060208284031215612bc957600080fd5b6115c8826129ab565b600060208284031215612be457600080fd5b5035919050565b600060208284031215612bfd57600080fd5b81356115c88161303e565b600060208284031215612c1a57600080fd5b81516115c88161303e565b60008060208385031215612c3857600080fd5b823567ffffffffffffffff80821115612c5057600080fd5b818501915085601f830112612c6457600080fd5b813581811115612c7357600080fd5b866020828501011115612c8557600080fd5b60209290920196919550909350505050565b60008060408385031215612caa57600080fd5b82359150612a0060208401612943565b600080600060408486031215612ccf57600080fd5b833560ff81168114612ce057600080fd5b9250602084013567ffffffffffffffff811115612cfc57600080fd5b612d088682870161295f565b9497909650939450505050565b60008151808452612d2d816020860160208601612f19565b601f01601f19169290920160200192915050565b60008351612d53818460208801612f19565b835190830190612d67818360208801612f19565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612da390830184612d15565b9695505050505050565b6020815260006115c86020830184612d15565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612d6757612d67612fe6565b60008219821115612e7d57612e7d612fe6565b500190565b600060ff821660ff84168060ff03821115612e9f57612e9f612fe6565b019392505050565b600082612eb657612eb6612ffc565b500490565b6000816000190483118215151615612ed557612ed5612fe6565b500290565b60006001600160801b0383811690831681811015612efa57612efa612fe6565b039392505050565b600082821015612f1457612f14612fe6565b500390565b60005b83811015612f34578181015183820152602001612f1c565b838111156114fc5750506000910152565b600081612f5457612f54612fe6565b506000190190565b600181811c90821680612f7057607f821691505b60208210811415612f9157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fab57612fab612fe6565b5060010190565b600060ff821660ff811415612fc957612fc9612fe6565b60010192915050565b600082612fe157612fe1612ffc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611d0957600080fdfea264697066735822122063de97ee24f8e0469757a71933e3ee7ac588622a7aa9aa074b199d7ee984331b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c4d7574616e74205371756164000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055351554144000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c8063715018a61161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c5146107dd578063eb575afc14610826578063f2fde38b14610846578063fa4de74d14610866578063fd5df3c6146108a8578063fe042d49146108d557600080fd5b8063b88d4fde14610734578063c87b56dd14610754578063d7224ba014610774578063da22488c1461078a578063e32cb6d8146107aa578063e7661c78146107ca57600080fd5b806395d89b411161011357806395d89b411461068257806396ae80eb14610697578063a22cb465146106ad578063a69b1cd5146106cd578063acec338a14610701578063b3ab66b01461072157600080fd5b8063715018a6146105e457806379c9cb7b146105f95780637dc42975146106195780638d859f3e1461062f5780638da5cb5b1461064a5780638ec89e4f1461066857600080fd5b80633ccfd60b116101fe578063556fedd2116101b7578063556fedd21461052a57806355f804b3146105455780636352211e1461056557806364e26c43146105855780636b0a1176146105a557806370a08231146105c457600080fd5b80633ccfd60b1461045857806342842e0e1461046d57806343b6164d1461048d57806345f60e03146104ba57806347bf27f0146104ea5780634f6ccce71461050a57600080fd5b80632142ab29116102505780632142ab291461038857806323b872dd1461039e5780632848aeaf146103be5780632f745c59146103ee5780633154b9c21461040e57806332cb6b0c1461042457600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461032757806318160ddd146103495780631bbc1afa14610368575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612beb565b6108f5565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610962565b6040516102c49190612dad565b3480156102fb57600080fd5b5061030f61030a366004612bd2565b6109f4565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612b4b565b610a84565b005b34801561035557600080fd5b506001545b6040519081526020016102c4565b34801561037457600080fd5b50610347610383366004612bd2565b610b9c565b34801561039457600080fd5b5061035a600a5481565b3480156103aa57600080fd5b506103476103b9366004612a09565b610bcb565b3480156103ca57600080fd5b506102b86103d93660046129bb565b600e6020526000908152604090205460ff1681565b3480156103fa57600080fd5b5061035a610409366004612b4b565b610bd6565b34801561041a57600080fd5b5061035a60135481565b34801561043057600080fd5b5061035a7f00000000000000000000000000000000000000000000000000000000000015b381565b34801561046457600080fd5b50610347610d4f565b34801561047957600080fd5b50610347610488366004612a09565b610dc0565b34801561049957600080fd5b5061035a6104a83660046129bb565b60126020526000908152604090205481565b3480156104c657600080fd5b506102b86104d53660046129bb565b600f6020526000908152604090205460ff1681565b3480156104f657600080fd5b50610347610505366004612bb7565b610ddb565b34801561051657600080fd5b5061035a610525366004612bd2565b610e1f565b34801561053657600080fd5b5061035a666a94d74f43000081565b34801561055157600080fd5b50610347610560366004612c25565b610e88565b34801561057157600080fd5b5061030f610580366004612bd2565b610ebe565b34801561059157600080fd5b506103476105a0366004612bb7565b610ed0565b3480156105b157600080fd5b50600d546102b890610100900460ff1681565b3480156105d057600080fd5b5061035a6105df3660046129bb565b610f16565b3480156105f057600080fd5b50610347610fa7565b34801561060557600080fd5b50610347610614366004612bd2565b610fdd565b34801561062557600080fd5b5061035a600b5481565b34801561063b57600080fd5b5061035a668e1bc9bf04000081565b34801561065657600080fd5b506000546001600160a01b031661030f565b34801561067457600080fd5b50600d546102b89060ff1681565b34801561068e57600080fd5b506102e261100c565b3480156106a357600080fd5b5061035a600c5481565b3480156106b957600080fd5b506103476106c8366004612b21565b61101b565b3480156106d957600080fd5b5061035a7f000000000000000000000000000000000000000000000000000000000000006481565b34801561070d57600080fd5b5061034761071c366004612bb7565b6110e0565b61034761072f366004612bd2565b61111d565b34801561074057600080fd5b5061034761074f366004612a45565b6114c9565b34801561076057600080fd5b506102e261076f366004612bd2565b611502565b34801561078057600080fd5b5061035a60085481565b34801561079657600080fd5b506103476107a5366004612b75565b6115cf565b3480156107b657600080fd5b506103476107c5366004612c97565b61166b565b6103476107d8366004612cba565b6117ee565b3480156107e957600080fd5b506102b86107f83660046129d6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561083257600080fd5b50600d546102b89062010000900460ff1681565b34801561085257600080fd5b506103476108613660046129bb565b611c71565b34801561087257600080fd5b506108966108813660046129bb565b60106020526000908152604090205460ff1681565b60405160ff90911681526020016102c4565b3480156108b457600080fd5b5061035a6108c33660046129bb565b60116020526000908152604090205481565b3480156108e157600080fd5b506103476108f0366004612bd2565b611d0c565b60006001600160e01b031982166380ac58cd60e01b148061092657506001600160e01b03198216635b5e139f60e01b145b8061094157506001600160e01b0319821663780e9d6360e01b145b8061095c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461097190612f5c565b80601f016020809104026020016040519081016040528092919081815260200182805461099d90612f5c565b80156109ea5780601f106109bf576101008083540402835291602001916109ea565b820191906000526020600020905b8154815290600101906020018083116109cd57829003601f168201915b5050505050905090565b6000610a01826001541190565b610a685760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a8f82610ebe565b9050806001600160a01b0316836001600160a01b03161415610afe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a5f565b336001600160a01b0382161480610b1a5750610b1a81336107f8565b610b8c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a5f565b610b97838383611d3b565b505050565b6000546001600160a01b03163314610bc65760405162461bcd60e51b8152600401610a5f90612dc0565b600a55565b610b97838383611d97565b6000610be183610f16565b8210610c3a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a5f565b6000610c4560015490565b905060008060005b83811015610cef576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ca057805192505b876001600160a01b0316836001600160a01b03161415610cdc5786841415610cce5750935061095c92505050565b83610cd881612f97565b9450505b5080610ce781612f97565b915050610c4d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a5f565b6000546001600160a01b03163314610d795760405162461bcd60e51b8152600401610a5f90612dc0565b6040514790730da7fe5f90d139567d8d80bea4d98aa84fa09ac79082156108fc029083906000818181858888f19350505050158015610dbc573d6000803e3d6000fd5b5050565b610b97838383604051806020016040528060008152506114c9565b6000546001600160a01b03163314610e055760405162461bcd60e51b8152600401610a5f90612dc0565b600d80549115156101000261ff0019909216919091179055565b6000610e2a60015490565b8210610e845760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a5f565b5090565b6000546001600160a01b03163314610eb25760405162461bcd60e51b8152600401610a5f90612dc0565b610b97601483836128b3565b6000610ec98261211f565b5192915050565b6000546001600160a01b03163314610efa5760405162461bcd60e51b8152600401610a5f90612dc0565b600d8054911515620100000262ff000019909216919091179055565b60006001600160a01b038216610f825760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a5f565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610fd15760405162461bcd60e51b8152600401610a5f90612dc0565b610fdb60006122c9565b565b6000546001600160a01b031633146110075760405162461bcd60e51b8152600401610a5f90612dc0565b600b55565b60606003805461097190612f5c565b6001600160a01b0382163314156110745760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a5f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461110a5760405162461bcd60e51b8152600401610a5f90612dc0565b600d805460ff1916911515919091179055565b600260095414156111705760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a5f565b60026009553233146111c45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a5f565b600081116112145760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610a5f565b600d5460ff166112665760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610a5f565b3461127882668e1bc9bf040000612ebb565b146112b75760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610a5f565b600c548111156113095760405162461bcd60e51b815260206004820152601b60248201527f65786365656473206d617820706572207472616e73616374696f6e00000000006044820152606401610a5f565b600b5433600090815260116020526040902054611327908390612e6a565b11156113755760405162461bcd60e51b815260206004820152601760248201527f65786365656473206d61782070657220616464726573730000000000000000006044820152606401610a5f565b7f00000000000000000000000000000000000000000000000000000000000015b3816113a060015490565b6113aa9190612e6a565b11156113ed5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610a5f565b600d5462010000900460ff1680156114155750336000908152600f602052604090205460ff16155b801561145f57507f00000000000000000000000000000000000000000000000000000000000015b38161144760015490565b6114519190612e6a565b61145c906001612e6a565b11155b1561148c578061146e81612f97565b336000908152600f60205260409020805460ff191660011790559150505b6114963382612319565b336000908152601160205260409020546114b1908290612e6a565b33600090815260116020526040902055506001600955565b6114d4848484611d97565b6114e084848484612333565b6114fc5760405162461bcd60e51b8152600401610a5f90612df5565b50505050565b606061150f826001541190565b6115735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a5f565b600061157d612441565b9050600081511161159d57604051806020016040528060008152506115c8565b806115a784612450565b6040516020016115b8929190612d41565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146115f95760405162461bcd60e51b8152600401610a5f90612dc0565b60005b81811015610b97576001600e600085858581811061161c5761161c613012565b905060200201602081019061163191906129bb565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061166381612f97565b9150506115fc565b6000546001600160a01b031633146116955760405162461bcd60e51b8152600401610a5f90612dc0565b336000908152601260205260409020547f0000000000000000000000000000000000000000000000000000000000000064906116d2908490612e6a565b11156117325760405162461bcd60e51b815260206004820152602960248201527f746f6f206d616e7920616c7265616479206d696e74656420666f7220696e74656044820152681c9b985b081b5a5b9d60ba1b6064820152608401610a5f565b7f00000000000000000000000000000000000000000000000000000000000015b38261175d60015490565b6117679190612e6a565b11156117b55760405162461bcd60e51b815260206004820152601760248201527f776f756c6420657863656564206d617820737570706c790000000000000000006044820152606401610a5f565b6117bf8183612319565b336000908152601260205260409020546117da908390612e6a565b336000908152601260205260409020555050565b32331461183d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a5f565b600260095414156118905760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a5f565b6002600955600d54610100900460ff166118e55760405162461bcd60e51b8152602060048201526016602482015275507265206d696e74206973206e6f742061637469766560501b6044820152606401610a5f565b600a543360009081526010602052604090205461190690859060ff16612e82565b60ff1611156119625760405162461bcd60e51b815260206004820152602260248201527f4578636565646564206d617820617661696c61626c6520746f20707572636861604482015261736560f01b6064820152608401610a5f565b60008360ff16116119b55760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e73000000006044820152606401610a5f565b7f00000000000000000000000000000000000000000000000000000000000015b38360ff166119e360015490565b6119ed9190612e6a565b1115611a4e5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620546f6b656e7360b01b6064820152608401610a5f565b34611a6360ff8516666a94d74f430000612ebb565b14611aa25760405162461bcd60e51b815260206004820152600f60248201526e496e636f72726563742066756e647360881b6044820152606401610a5f565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b1c83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601354915084905061254e565b80611b365750336000908152600e602052604090205460ff165b611b785760405162461bcd60e51b815260206004820152601360248201527224b73b30b634b21026b2b935b632a83937b7b360691b6044820152606401610a5f565b600d5462010000900460ff168015611ba05750336000908152600f602052604090205460ff16155b8015611bed57507f00000000000000000000000000000000000000000000000000000000000015b38460ff16611bd560015490565b611bdf9190612e6a565b611bea906001612e6a565b11155b15611c1a5783611bfc81612fb2565b336000908152600f60205260409020805460ff191660011790559450505b611c27338560ff16612319565b33600090815260106020526040902054611c4590859060ff16612e82565b336000908152601060205260409020805460ff191660ff92909216919091179055505060016009555050565b6000546001600160a01b03163314611c9b5760405162461bcd60e51b8152600401610a5f90612dc0565b6001600160a01b038116611d005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5f565b611d09816122c9565b50565b6000546001600160a01b03163314611d365760405162461bcd60e51b8152600401610a5f90612dc0565b601355565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611da28261211f565b80519091506000906001600160a01b0316336001600160a01b03161480611dd9575033611dce846109f4565b6001600160a01b0316145b80611deb57508151611deb90336107f8565b905080611e555760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a5f565b846001600160a01b031682600001516001600160a01b031614611ec95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a5f565b6001600160a01b038416611f2d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a5f565b611f3d6000848460000151611d3b565b6001600160a01b0385166000908152600560205260408120805460019290611f6f9084906001600160801b0316612eda565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611fbb91859116612e48565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612043846001612e6a565b6000818152600460205260409020549091506001600160a01b03166120d55761206d816001541190565b156120d55760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261213e826001541190565b61219d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a5f565b60007f000000000000000000000000000000000000000000000000000000000000006483106121fe576121f07f000000000000000000000000000000000000000000000000000000000000006484612f02565b6121fb906001612e6a565b90505b825b818110612268576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561225557949350505050565b508061226081612f45565b915050612200565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610a5f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610dbc828260405180602001604052806000815250612564565b60006001600160a01b0384163b1561243557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612377903390899088908890600401612d70565b602060405180830381600087803b15801561239157600080fd5b505af19250505080156123c1575060408051601f3d908101601f191682019092526123be91810190612c08565b60015b61241b573d8080156123ef576040519150601f19603f3d011682016040523d82523d6000602084013e6123f4565b606091505b5080516124135760405162461bcd60e51b8152600401610a5f90612df5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612439565b5060015b949350505050565b60606014805461097190612f5c565b6060816124745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561249e578061248881612f97565b91506124979050600a83612ea7565b9150612478565b60008167ffffffffffffffff8111156124b9576124b9613028565b6040519080825280601f01601f1916602001820160405280156124e3576020820181803683370190505b5090505b8415612439576124f8600183612f02565b9150612505600a86612fd2565b612510906030612e6a565b60f81b81838151811061252557612525613012565b60200101906001600160f81b031916908160001a905350612547600a86612ea7565b94506124e7565b60008261255b858461283f565b14949350505050565b6001546001600160a01b0384166125c75760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a5f565b6125d2816001541190565b1561261f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a5f565b7f000000000000000000000000000000000000000000000000000000000000006483111561269a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610a5f565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126f6908790612e48565b6001600160801b031681526020018583602001516127149190612e48565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128345760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127f86000888488612333565b6128145760405162461bcd60e51b8152600401610a5f90612df5565b8161281e81612f97565b925050808061282c90612f97565b9150506127ab565b506001819055612117565b600081815b84518110156128ab57600085828151811061286157612861613012565b602002602001015190508083116128875760008381526020829052604090209250612898565b600081815260208490526040902092505b50806128a381612f97565b915050612844565b509392505050565b8280546128bf90612f5c565b90600052602060002090601f0160209004810192826128e15760008555612927565b82601f106128fa5782800160ff19823516178555612927565b82800160010185558215612927579182015b8281111561292757823582559160200191906001019061290c565b50610e849291505b80821115610e84576000815560010161292f565b80356001600160a01b038116811461295a57600080fd5b919050565b60008083601f84011261297157600080fd5b50813567ffffffffffffffff81111561298957600080fd5b6020830191508360208260051b85010111156129a457600080fd5b9250929050565b8035801515811461295a57600080fd5b6000602082840312156129cd57600080fd5b6115c882612943565b600080604083850312156129e957600080fd5b6129f283612943565b9150612a0060208401612943565b90509250929050565b600080600060608486031215612a1e57600080fd5b612a2784612943565b9250612a3560208501612943565b9150604084013590509250925092565b60008060008060808587031215612a5b57600080fd5b612a6485612943565b9350612a7260208601612943565b925060408501359150606085013567ffffffffffffffff80821115612a9657600080fd5b818701915087601f830112612aaa57600080fd5b813581811115612abc57612abc613028565b604051601f8201601f19908116603f01168101908382118183101715612ae457612ae4613028565b816040528281528a6020848701011115612afd57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612b3457600080fd5b612b3d83612943565b9150612a00602084016129ab565b60008060408385031215612b5e57600080fd5b612b6783612943565b946020939093013593505050565b60008060208385031215612b8857600080fd5b823567ffffffffffffffff811115612b9f57600080fd5b612bab8582860161295f565b90969095509350505050565b600060208284031215612bc957600080fd5b6115c8826129ab565b600060208284031215612be457600080fd5b5035919050565b600060208284031215612bfd57600080fd5b81356115c88161303e565b600060208284031215612c1a57600080fd5b81516115c88161303e565b60008060208385031215612c3857600080fd5b823567ffffffffffffffff80821115612c5057600080fd5b818501915085601f830112612c6457600080fd5b813581811115612c7357600080fd5b866020828501011115612c8557600080fd5b60209290920196919550909350505050565b60008060408385031215612caa57600080fd5b82359150612a0060208401612943565b600080600060408486031215612ccf57600080fd5b833560ff81168114612ce057600080fd5b9250602084013567ffffffffffffffff811115612cfc57600080fd5b612d088682870161295f565b9497909650939450505050565b60008151808452612d2d816020860160208601612f19565b601f01601f19169290920160200192915050565b60008351612d53818460208801612f19565b835190830190612d67818360208801612f19565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612da390830184612d15565b9695505050505050565b6020815260006115c86020830184612d15565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612d6757612d67612fe6565b60008219821115612e7d57612e7d612fe6565b500190565b600060ff821660ff84168060ff03821115612e9f57612e9f612fe6565b019392505050565b600082612eb657612eb6612ffc565b500490565b6000816000190483118215151615612ed557612ed5612fe6565b500290565b60006001600160801b0383811690831681811015612efa57612efa612fe6565b039392505050565b600082821015612f1457612f14612fe6565b500390565b60005b83811015612f34578181015183820152602001612f1c565b838111156114fc5750506000910152565b600081612f5457612f54612fe6565b506000190190565b600181811c90821680612f7057607f821691505b60208210811415612f9157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fab57612fab612fe6565b5060010190565b600060ff821660ff811415612fc957612fc9612fe6565b60010192915050565b600082612fe157612fe1612ffc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611d0957600080fdfea264697066735822122063de97ee24f8e0469757a71933e3ee7ac588622a7aa9aa074b199d7ee984331b64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c4d7574616e74205371756164000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055351554144000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Mutant Squad
Arg [1] : symbol (string): SQUAD
Arg [2] : _amountForTeam (uint256): 100
Arg [3] : _maxPublicTx (uint256): 10

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 4d7574616e742053717561640000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 5351554144000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47046:5506:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30511:422;;;;;;;;;;-1:-1:-1;30511:422:0;;;;;:::i;:::-;;:::i;:::-;;;7972:14:1;;7965:22;7947:41;;7935:2;7920:18;30511:422:0;;;;;;;;32472:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34167:292::-;;;;;;;;;;-1:-1:-1;34167:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7270:32:1;;;7252:51;;7240:2;7225:18;34167:292:0;7106:203:1;33688:413:0;;;;;;;;;;-1:-1:-1;33688:413:0;;;;;:::i;:::-;;:::i;:::-;;28867:100;;;;;;;;;;-1:-1:-1;28947:12:0;;28867:100;;;8145:25:1;;;8133:2;8118:18;28867:100:0;7999:177:1;48758:106:0;;;;;;;;;;-1:-1:-1;48758:106:0;;;;;:::i;:::-;;:::i;47265:29::-;;;;;;;;;;;;;;;;35194:162;;;;;;;;;;-1:-1:-1;35194:162:0;;;;;:::i;:::-;;:::i;47670:41::-;;;;;;;;;;-1:-1:-1;47670:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29575:864;;;;;;;;;;-1:-1:-1;29575:864:0;;;;;:::i;:::-;;:::i;47957:26::-;;;;;;;;;;;;;;;;47114:42;;;;;;;;;;;;;;;51457:144;;;;;;;;;;;;;:::i;35427:177::-;;;;;;;;;;-1:-1:-1;35427:177:0;;;;;:::i;:::-;;:::i;47881:47::-;;;;;;;;;;-1:-1:-1;47881:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;47718:41;;;;;;;;;;-1:-1:-1;47718:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48545:101;;;;;;;;;;-1:-1:-1;48545:101:0;;;;;:::i;:::-;;:::i;29044:228::-;;;;;;;;;;-1:-1:-1;29044:228:0;;;;;:::i;:::-;;:::i;47212:46::-;;;;;;;;;;;;47248:10;47212:46;;49657:106;;;;;;;;;;-1:-1:-1;49657:106:0;;;;;:::i;:::-;;:::i;32281:124::-;;;;;;;;;;-1:-1:-1;32281:124:0;;;;;:::i;:::-;;:::i;48655:95::-;;;;;;;;;;-1:-1:-1;48655:95:0;;;;;:::i;:::-;;:::i;47589:34::-;;;;;;;;;;-1:-1:-1;47589:34:0;;;;;;;;;;;30997:258;;;;;;;;;;-1:-1:-1;30997:258:0;;;;;:::i;:::-;;:::i;46147:103::-;;;;;;;;;;;;;:::i;48872:97::-;;;;;;;;;;-1:-1:-1;48872:97:0;;;;;:::i;:::-;;:::i;47301:30::-;;;;;;;;;;;;;;;;47163:42;;;;;;;;;;;;47195:10;47163:42;;45496:87;;;;;;;;;;-1:-1:-1;45542:7:0;45569:6;-1:-1:-1;;;;;45569:6:0;45496:87;;47553:29;;;;;;;;;;-1:-1:-1;47553:29:0;;;;;;;;32641:104;;;;;;;;;;;;;:::i;47366:26::-;;;;;;;;;;;;;;;;34531:311;;;;;;;;;;-1:-1:-1;34531:311:0;;;;;:::i;:::-;;:::i;47426:38::-;;;;;;;;;;;;;;;48445:92;;;;;;;;;;-1:-1:-1;48445:92:0;;;;;:::i;:::-;;:::i;51629:920::-;;;;;;:::i;:::-;;:::i;35675:355::-;;;;;;;;;;-1:-1:-1;35675:355:0;;;;;:::i;:::-;;:::i;32816:468::-;;;;;;;;;;-1:-1:-1;32816:468:0;;;;;:::i;:::-;;:::i;40556:43::-;;;;;;;;;;;;;;;;51193:224;;;;;;;;;;-1:-1:-1;51193:224:0;;;;;:::i;:::-;;:::i;49129:462::-;;;;;;;;;;-1:-1:-1;49129:462:0;;;;;:::i;:::-;;:::i;49909:1276::-;;;;;;:::i;:::-;;:::i;34913:214::-;;;;;;;;;;-1:-1:-1;34913:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;35084:25:0;;;35055:4;35084:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34913:214;47630:31;;;;;;;;;;-1:-1:-1;47630:31:0;;;;;;;;;;;46405:201;;;;;;;;;;-1:-1:-1;46405:201:0;;;;;:::i;:::-;;:::i;47766:52::-;;;;;;;;;;-1:-1:-1;47766:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21925:4:1;21913:17;;;21895:36;;21883:2;21868:18;47766:52:0;21753:184:1;47825:49:0;;;;;;;;;;-1:-1:-1;47825:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;48977:96;;;;;;;;;;-1:-1:-1;48977:96:0;;;;;:::i;:::-;;:::i;30511:422::-;30658:4;-1:-1:-1;;;;;;30700:40:0;;-1:-1:-1;;;30700:40:0;;:105;;-1:-1:-1;;;;;;;30757:48:0;;-1:-1:-1;;;30757:48:0;30700:105;:172;;;-1:-1:-1;;;;;;;30822:50:0;;-1:-1:-1;;;30822:50:0;30700:172;:225;;;-1:-1:-1;;;;;;;;;;11425:40:0;;;30889:36;30680:245;30511:422;-1:-1:-1;;30511:422:0:o;32472:100::-;32526:13;32559:5;32552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32472:100;:::o;34167:292::-;34271:7;34318:16;34326:7;36376:12;;-1:-1:-1;36366:22:0;36285:111;34318:16;34296:111;;;;-1:-1:-1;;;34296:111:0;;20546:2:1;34296:111:0;;;20528:21:1;20585:2;20565:18;;;20558:30;20624:34;20604:18;;;20597:62;-1:-1:-1;;;20675:18:1;;;20668:43;20728:19;;34296:111:0;;;;;;;;;-1:-1:-1;34427:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34427:24:0;;34167:292::o;33688:413::-;33761:13;33777:24;33793:7;33777:15;:24::i;:::-;33761:40;;33826:5;-1:-1:-1;;;;;33820:11:0;:2;-1:-1:-1;;;;;33820:11:0;;;33812:58;;;;-1:-1:-1;;;33812:58:0;;16721:2:1;33812:58:0;;;16703:21:1;16760:2;16740:18;;;16733:30;16799:34;16779:18;;;16772:62;-1:-1:-1;;;16850:18:1;;;16843:32;16892:19;;33812:58:0;16519:398:1;33812:58:0;26266:10;-1:-1:-1;;;;;33905:21:0;;;;:62;;-1:-1:-1;33930:37:0;33947:5;26266:10;34913:214;:::i;33930:37::-;33883:169;;;;-1:-1:-1;;;33883:169:0;;12460:2:1;33883:169:0;;;12442:21:1;12499:2;12479:18;;;12472:30;12538:34;12518:18;;;12511:62;12609:27;12589:18;;;12582:55;12654:19;;33883:169:0;12258:421:1;33883:169:0;34065:28;34074:2;34078:7;34087:5;34065:8;:28::i;:::-;33750:351;33688:413;;:::o;48758:106::-;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;48832:10:::1;:24:::0;48758:106::o;35194:162::-;35320:28;35330:4;35336:2;35340:7;35320:9;:28::i;29575:864::-;29700:7;29741:16;29751:5;29741:9;:16::i;:::-;29733:5;:24;29725:71;;;;-1:-1:-1;;;29725:71:0;;8607:2:1;29725:71:0;;;8589:21:1;8646:2;8626:18;;;8619:30;8685:34;8665:18;;;8658:62;-1:-1:-1;;;8736:18:1;;;8729:32;8778:19;;29725:71:0;8405:398:1;29725:71:0;29807:22;29832:13;28947:12;;;28867:100;29832:13;29807:38;;29856:19;29890:25;29944:9;29939:426;29963:14;29959:1;:18;29939:426;;;29999:31;30033:14;;;:11;:14;;;;;;;;;29999:48;;;;;;;;;-1:-1:-1;;;;;29999:48:0;;;;;-1:-1:-1;;;29999:48:0;;;;;;;;;;;;30066:28;30062:103;;30135:14;;;-1:-1:-1;30062:103:0;30204:5;-1:-1:-1;;;;;30183:26:0;:17;-1:-1:-1;;;;;30183:26:0;;30179:175;;;30249:5;30234:11;:20;30230:77;;;-1:-1:-1;30286:1:0;-1:-1:-1;30279:8:0;;-1:-1:-1;;;30279:8:0;30230:77;30325:13;;;;:::i;:::-;;;;30179:175;-1:-1:-1;29979:3:0;;;;:::i;:::-;;;;29939:426;;;-1:-1:-1;30375:56:0;;-1:-1:-1;;;30375:56:0;;19004:2:1;30375:56:0;;;18986:21:1;19043:2;19023:18;;;19016:30;19082:34;19062:18;;;19055:62;-1:-1:-1;;;19133:18:1;;;19126:44;19187:19;;30375:56:0;18802:410:1;51457:144:0;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;51557:36:::1;::::0;51525:21:::1;::::0;47502:42:::1;::::0;51557:36;::::1;;;::::0;51525:21;;51507:15:::1;51557:36:::0;51507:15;51557:36;51525:21;47502:42;51557:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51496:105;51457:144::o:0;35427:177::-;35557:39;35574:4;35580:2;35584:7;35557:39;;;;;;;;;;;;:16;:39::i;48545:101::-;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;48613:14:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;48613:25:0;;::::1;::::0;;;::::1;::::0;;48545:101::o;29044:228::-;29147:7;29188:13;28947:12;;;28867:100;29188:13;29180:5;:21;29172:69;;;;-1:-1:-1;;;29172:69:0;;10239:2:1;29172:69:0;;;10221:21:1;10278:2;10258:18;;;10251:30;10317:34;10297:18;;;10290:62;-1:-1:-1;;;10368:18:1;;;10361:33;10411:19;;29172:69:0;10037:399:1;29172:69:0;-1:-1:-1;29259:5:0;29044:228::o;49657:106::-;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;49732:23:::1;:13;49748:7:::0;;49732:23:::1;:::i;32281:124::-:0;32345:7;32372:20;32384:7;32372:11;:20::i;:::-;:25;;32281:124;-1:-1:-1;;32281:124:0:o;48655:95::-;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;48720:11:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48720:22:0;;::::1;::::0;;;::::1;::::0;;48655:95::o;30997:258::-;31061:7;-1:-1:-1;;;;;31103:19:0;;31081:112;;;;-1:-1:-1;;;31081:112:0;;13243:2:1;31081:112:0;;;13225:21:1;13282:2;13262:18;;;13255:30;13321:34;13301:18;;;13294:62;-1:-1:-1;;;13372:18:1;;;13365:41;13423:19;;31081:112:0;13041:407:1;31081:112:0;-1:-1:-1;;;;;;31219:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31219:27:0;;30997:258::o;46147:103::-;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;46212:30:::1;46239:1;46212:18;:30::i;:::-;46147:103::o:0;48872:97::-;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;48940:9:::1;:21:::0;48872:97::o;32641:104::-;32697:13;32730:7;32723:14;;;;;:::i;34531:311::-;-1:-1:-1;;;;;34649:24:0;;26266:10;34649:24;;34641:63;;;;-1:-1:-1;;;34641:63:0;;15186:2:1;34641:63:0;;;15168:21:1;15225:2;15205:18;;;15198:30;15264:28;15244:18;;;15237:56;15310:18;;34641:63:0;14984:350:1;34641:63:0;26266:10;34717:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34717:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34717:53:0;;;;;;;;;;34786:48;;7947:41:1;;;34717:42:0;;26266:10;34786:48;;7920:18:1;34786:48:0;;;;;;;34531:311;;:::o;48445:92::-;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;48509:9:::1;:20:::0;;-1:-1:-1;;48509:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48445:92::o;51629:920::-;24560:1;25158:7;;:19;;25150:63;;;;-1:-1:-1;;;25150:63:0;;19419:2:1;25150:63:0;;;19401:21:1;19458:2;19438:18;;;19431:30;19497:33;19477:18;;;19470:61;19548:18;;25150:63:0;19217:355:1;25150:63:0;24560:1;25291:7;:18;48338:9:::1;48351:10;48338:23;48330:66;;;::::0;-1:-1:-1;;;48330:66:0;;12101:2:1;48330:66:0::1;::::0;::::1;12083:21:1::0;12140:2;12120:18;;;12113:30;12179:32;12159:18;;;12152:60;12229:18;;48330:66:0::1;11899:354:1::0;48330:66:0::1;51785:1:::2;51774:8;:12;51766:53;;;::::0;-1:-1:-1;;;51766:53:0;;12886:2:1;51766:53:0::2;::::0;::::2;12868:21:1::0;12925:2;12905:18;;;12898:30;12964;12944:18;;;12937:58;13012:18;;51766:53:0::2;12684:352:1::0;51766:53:0::2;51838:9;::::0;::::2;;51830:51;;;::::0;-1:-1:-1;;;51830:51:0;;16363:2:1;51830:51:0::2;::::0;::::2;16345:21:1::0;16402:2;16382:18;;;16375:30;16441:31;16421:18;;;16414:59;16490:18;;51830:51:0::2;16161:353:1::0;51830:51:0::2;51920:9;51900:16;51908:8:::0;47195:10:::2;51900:16;:::i;:::-;:29;51892:57;;;::::0;-1:-1:-1;;;51892:57:0;;17544:2:1;51892:57:0::2;::::0;::::2;17526:21:1::0;17583:2;17563:18;;;17556:30;-1:-1:-1;;;17602:18:1;;;17595:45;17657:18;;51892:57:0::2;17342:339:1::0;51892:57:0::2;51980:11;;51968:8;:23;;51960:63;;;::::0;-1:-1:-1;;;51960:63:0;;18246:2:1;51960:63:0::2;::::0;::::2;18228:21:1::0;18285:2;18265:18;;;18258:30;18324:29;18304:18;;;18297:57;18371:18;;51960:63:0::2;18044:351:1::0;51960:63:0::2;52097:9;::::0;52071:10:::2;52056:26;::::0;;;:14:::2;:26;::::0;;;;;:37:::2;::::0;52085:8;;52056:37:::2;:::i;:::-;:50;;52034:123;;;::::0;-1:-1:-1;;;52034:123:0;;11401:2:1;52034:123:0::2;::::0;::::2;11383:21:1::0;11440:2;11420:18;;;11413:30;11479:25;11459:18;;;11452:53;11522:18;;52034:123:0::2;11199:347:1::0;52034:123:0::2;52204:10;52192:8;52176:13;28947:12:::0;;;28867:100;52176:13:::2;:24;;;;:::i;:::-;:38;;52168:69;;;::::0;-1:-1:-1;;;52168:69:0;;13655:2:1;52168:69:0::2;::::0;::::2;13637:21:1::0;13694:2;13674:18;;;13667:30;-1:-1:-1;;;13713:18:1;;;13706:48;13771:18;;52168:69:0::2;13453:342:1::0;52168:69:0::2;52253:11;::::0;;;::::2;;;:37:::0;::::2;;;-1:-1:-1::0;52279:10:0::2;52269:21;::::0;;;:9:::2;:21;::::0;;;;;::::2;;52268:22;52253:37;:85;;;;;52327:10;52311:8;52295:13;28947:12:::0;;;28867:100;52295:13:::2;:24;;;;:::i;:::-;:28;::::0;52322:1:::2;52295:28;:::i;:::-;:42;;52253:85;52250:170;;;52355:10:::0;::::2;::::0;::::2;:::i;:::-;52390;52380:21;::::0;;;:9:::2;:21;::::0;;;;:28;;-1:-1:-1;;52380:28:0::2;52404:4;52380:28;::::0;;52355:10;-1:-1:-1;;52250:170:0::2;52433:31;52443:10;52455:8;52433:9;:31::i;:::-;52519:10;52504:26;::::0;;;:14:::2;:26;::::0;;;;;:37:::2;::::0;52533:8;;52504:37:::2;:::i;:::-;52490:10;52475:26;::::0;;;:14:::2;:26;::::0;;;;:66;-1:-1:-1;24516:1:0;25470:7;:22;51629:920::o;35675:355::-;35834:28;35844:4;35850:2;35854:7;35834:9;:28::i;:::-;35895:48;35918:4;35924:2;35928:7;35937:5;35895:22;:48::i;:::-;35873:149;;;;-1:-1:-1;;;35873:149:0;;;;;;;:::i;:::-;35675:355;;;;:::o;32816:468::-;32934:13;32987:16;32995:7;36376:12;;-1:-1:-1;36366:22:0;36285:111;32987:16;32965:113;;;;-1:-1:-1;;;32965:113:0;;14770:2:1;32965:113:0;;;14752:21:1;14809:2;14789:18;;;14782:30;14848:34;14828:18;;;14821:62;-1:-1:-1;;;14899:18:1;;;14892:45;14954:19;;32965:113:0;14568:411:1;32965:113:0;33091:21;33115:10;:8;:10::i;:::-;33091:34;;33180:1;33162:7;33156:21;:25;:120;;;;;;;;;;;;;;;;;33225:7;33234:18;:7;:16;:18::i;:::-;33208:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33156:120;33136:140;32816:468;-1:-1:-1;;;32816:468:0:o;51193:224::-;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;51311:9:::1;51306:104;51326:20:::0;;::::1;51306:104;;;51394:4;51368:9;:23;51378:9;;51388:1;51378:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51368:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;51368:23:0;:30;;-1:-1:-1;;51368:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51348:3;::::1;::::0;::::1;:::i;:::-;;;;51306:104;;49129:462:::0;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;49246:10:::1;49233:24;::::0;;;:12:::1;:24;::::0;;;;;49272:13:::1;::::0;49233:35:::1;::::0;49260:8;;49233:35:::1;:::i;:::-;:52;;49211:143;;;::::0;-1:-1:-1;;;49211:143:0;;21363:2:1;49211:143:0::1;::::0;::::1;21345:21:1::0;21402:2;21382:18;;;21375:30;21441:34;21421:18;;;21414:62;-1:-1:-1;;;21492:18:1;;;21485:39;21541:19;;49211:143:0::1;21161:405:1::0;49211:143:0::1;49415:10;49403:8;49387:13;28947:12:::0;;;28867:100;49387:13:::1;:24;;;;:::i;:::-;:38;;49365:111;;;::::0;-1:-1:-1;;;49365:111:0;;10643:2:1;49365:111:0::1;::::0;::::1;10625:21:1::0;10682:2;10662:18;;;10655:30;10721:25;10701:18;;;10694:53;10764:18;;49365:111:0::1;10441:347:1::0;49365:111:0::1;49487:23;49497:2;49501:8;49487:9;:23::i;:::-;49561:10;49548:24;::::0;;;:12:::1;:24;::::0;;;;;:35:::1;::::0;49575:8;;49548:35:::1;:::i;:::-;49534:10;49521:24;::::0;;;:12:::1;:24;::::0;;;;:62;-1:-1:-1;;49129:462:0:o;49909:1276::-;48338:9;48351:10;48338:23;48330:66;;;;-1:-1:-1;;;48330:66:0;;12101:2:1;48330:66:0;;;12083:21:1;12140:2;12120:18;;;12113:30;12179:32;12159:18;;;12152:60;12229:18;;48330:66:0;11899:354:1;48330:66:0;24560:1:::1;25158:7;;:19;;25150:63;;;::::0;-1:-1:-1;;;25150:63:0;;19419:2:1;25150:63:0::1;::::0;::::1;19401:21:1::0;19458:2;19438:18;;;19431:30;19497:33;19477:18;;;19470:61;19548:18;;25150:63:0::1;19217:355:1::0;25150:63:0::1;24560:1;25291:7;:18:::0;50088:14:::2;::::0;::::2;::::0;::::2;;;50080:49;;;::::0;-1:-1:-1;;;50080:49:0;;20195:2:1;50080:49:0::2;::::0;::::2;20177:21:1::0;20234:2;20214:18;;;20207:30;-1:-1:-1;;;20253:18:1;;;20246:52;20315:18;;50080:49:0::2;19993:346:1::0;50080:49:0::2;50208:10;::::0;50182::::2;50162:31;::::0;;;:19:::2;:31;::::0;;;;;:42:::2;::::0;50196:8;;50162:31:::2;;:42;:::i;:::-;:56;;;;50140:140;;;::::0;-1:-1:-1;;;50140:140:0;;15960:2:1;50140:140:0::2;::::0;::::2;15942:21:1::0;15999:2;15979:18;;;15972:30;16038:34;16018:18;;;16011:62;-1:-1:-1;;;16089:18:1;;;16082:32;16131:19;;50140:140:0::2;15758:398:1::0;50140:140:0::2;50310:1;50299:8;:12;;;50291:53;;;::::0;-1:-1:-1;;;50291:53:0;;12886:2:1;50291:53:0::2;::::0;::::2;12868:21:1::0;12925:2;12905:18;;;12898:30;12964;12944:18;;;12937:58;13012:18;;50291:53:0::2;12684:352:1::0;50291:53:0::2;50405:10;50393:8;50377:24;;:13;28947:12:::0;;;28867:100;50377:13:::2;:24;;;;:::i;:::-;:38;;50355:130;;;::::0;-1:-1:-1;;;50355:130:0;;9828:2:1;50355:130:0::2;::::0;::::2;9810:21:1::0;9867:2;9847:18;;;9840:30;9906:34;9886:18;;;9879:62;-1:-1:-1;;;9957:18:1;;;9950:40;10007:19;;50355:130:0::2;9626:406:1::0;50355:130:0::2;50528:9;50504:20;;::::0;::::2;47248:10;50504:20;:::i;:::-;:33;50496:61;;;::::0;-1:-1:-1;;;50496:61:0;;17544:2:1;50496:61:0::2;::::0;::::2;17526:21:1::0;17583:2;17563:18;;;17556:30;-1:-1:-1;;;17602:18:1;;;17595:45;17657:18;;50496:61:0::2;17342:339:1::0;50496:61:0::2;50626:28;::::0;-1:-1:-1;;50643:10:0::2;6546:2:1::0;6542:15;6538:53;50626:28:0::2;::::0;::::2;6526:66:1::0;50601:12:0::2;::::0;6608::1;;50626:28:0::2;;;;;;;;;;;;50616:39;;;;;;50601:54;;50688:51;50707:12;;50688:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;50721:11:0::2;::::0;;-1:-1:-1;50734:4:0;;-1:-1:-1;50688:18:0::2;:51::i;:::-;:93;;;-1:-1:-1::0;50770:10:0::2;50760:21;::::0;;;:9:::2;:21;::::0;;;;;::::2;;50688:93;50666:162;;;::::0;-1:-1:-1;;;50666:162:0;;11753:2:1;50666:162:0::2;::::0;::::2;11735:21:1::0;11792:2;11772:18;;;11765:30;-1:-1:-1;;;11811:18:1;;;11804:49;11870:18;;50666:162:0::2;11551:343:1::0;50666:162:0::2;50852:11;::::0;;;::::2;;;:37:::0;::::2;;;-1:-1:-1::0;50878:10:0::2;50868:21;::::0;;;:9:::2;:21;::::0;;;;;::::2;;50867:22;50852:37;:85;;;;;50926:10;50910:8;50894:24;;:13;28947:12:::0;;;28867:100;50894:13:::2;:24;;;;:::i;:::-;:28;::::0;50921:1:::2;50894:28;:::i;:::-;:42;;50852:85;50849:170;;;50954:10:::0;::::2;::::0;::::2;:::i;:::-;50989;50979:21;::::0;;;:9:::2;:21;::::0;;;;:28;;-1:-1:-1;;50979:28:0::2;51003:4;50979:28;::::0;;50954:10;-1:-1:-1;;50849:170:0::2;51033:31;51043:10;51055:8;51033:31;;:9;:31::i;:::-;51142:10;51122:31;::::0;;;:19:::2;:31;::::0;;;;;:55:::2;::::0;51169:8;;51122:31:::2;;:55;:::i;:::-;51095:10;51075:31;::::0;;;:19:::2;:31;::::0;;;;:102;;-1:-1:-1;;51075:102:0::2;;::::0;;;::::2;::::0;;;::::2;::::0;;-1:-1:-1;;;25470:7:0::1;:22:::0;-1:-1:-1;;49909:1276:0:o;46405:201::-;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46494:22:0;::::1;46486:73;;;::::0;-1:-1:-1;;;46486:73:0;;9010:2:1;46486:73:0::1;::::0;::::1;8992:21:1::0;9049:2;9029:18;;;9022:30;9088:34;9068:18;;;9061:62;-1:-1:-1;;;9139:18:1;;;9132:36;9185:19;;46486:73:0::1;8808:402:1::0;46486:73:0::1;46570:28;46589:8;46570:18;:28::i;:::-;46405:201:::0;:::o;48977:96::-;45542:7;45569:6;-1:-1:-1;;;;;45569:6:0;26266:10;45716:23;45708:68;;;;-1:-1:-1;;;45708:68:0;;;;;;;:::i;:::-;49046:11:::1;:19:::0;48977:96::o;40352:196::-;40467:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40467:29:0;-1:-1:-1;;;;;40467:29:0;;;;;;;;;40512:28;;40467:24;;40512:28;;;;;;;40352:196;;;:::o;38525:1709::-;38640:35;38678:20;38690:7;38678:11;:20::i;:::-;38753:18;;38640:58;;-1:-1:-1;38711:22:0;;-1:-1:-1;;;;;38737:34:0;26266:10;-1:-1:-1;;;;;38737:34:0;;:87;;;-1:-1:-1;26266:10:0;38788:20;38800:7;38788:11;:20::i;:::-;-1:-1:-1;;;;;38788:36:0;;38737:87;:154;;;-1:-1:-1;38858:18:0;;38841:50;;26266:10;34913:214;:::i;38841:50::-;38711:181;;38927:17;38905:117;;;;-1:-1:-1;;;38905:117:0;;15541:2:1;38905:117:0;;;15523:21:1;15580:2;15560:18;;;15553:30;15619:34;15599:18;;;15592:62;-1:-1:-1;;;15670:18:1;;;15663:48;15728:19;;38905:117:0;15339:414:1;38905:117:0;39079:4;-1:-1:-1;;;;;39057:26:0;:13;:18;;;-1:-1:-1;;;;;39057:26:0;;39035:114;;;;-1:-1:-1;;;39035:114:0;;14002:2:1;39035:114:0;;;13984:21:1;14041:2;14021:18;;;14014:30;14080:34;14060:18;;;14053:62;-1:-1:-1;;;14131:18:1;;;14124:36;14177:19;;39035:114:0;13800:402:1;39035:114:0;-1:-1:-1;;;;;39168:16:0;;39160:66;;;;-1:-1:-1;;;39160:66:0;;10995:2:1;39160:66:0;;;10977:21:1;11034:2;11014:18;;;11007:30;11073:34;11053:18;;;11046:62;-1:-1:-1;;;11124:18:1;;;11117:35;11169:19;;39160:66:0;10793:401:1;39160:66:0;39347:49;39364:1;39368:7;39377:13;:18;;;39347:8;:49::i;:::-;-1:-1:-1;;;;;39409:18:0;;;;;;:12;:18;;;;;:31;;39439:1;;39409:18;:31;;39439:1;;-1:-1:-1;;;;;39409:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;39409:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39451:16:0;;-1:-1:-1;39451:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;39451:16:0;;:29;;-1:-1:-1;;39451:29:0;;:::i;:::-;;;-1:-1:-1;;;;;39451:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39514:43:0;;;;;;;;-1:-1:-1;;;;;39514:43:0;;;;;;39540:15;39514:43;;;;;;;;;-1:-1:-1;39491:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;39491:66:0;-1:-1:-1;;;;;;39491:66:0;;;;;;;;;;;39819:11;39503:7;-1:-1:-1;39819:11:0;:::i;:::-;39886:1;39845:24;;;:11;:24;;;;;:29;39797:33;;-1:-1:-1;;;;;;39845:29:0;39841:288;;39909:20;39917:11;36376:12;;-1:-1:-1;36366:22:0;36285:111;39909:20;39905:213;;;39977:125;;;;;;;;40014:18;;-1:-1:-1;;;;;39977:125:0;;;;;;40055:28;;;;39977:125;;;;;;;;;;-1:-1:-1;39950:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;39950:152:0;-1:-1:-1;;;;;;39950:152:0;;;;;;;;;;;;39905:213;40165:7;40161:2;-1:-1:-1;;;;;40146:27:0;40155:4;-1:-1:-1;;;;;40146:27:0;;;;;;;;;;;40184:42;38629:1605;;;38525:1709;;;:::o;31537:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;31672:16:0;31680:7;36376:12;;-1:-1:-1;36366:22:0;36285:111;31672:16;31664:71;;;;-1:-1:-1;;;31664:71:0;;9417:2:1;31664:71:0;;;9399:21:1;9456:2;9436:18;;;9429:30;9495:34;9475:18;;;9468:62;-1:-1:-1;;;9546:18:1;;;9539:40;9596:19;;31664:71:0;9215:406:1;31664:71:0;31748:26;31800:12;31789:7;:23;31785:103;;31850:22;31860:12;31850:7;:22;:::i;:::-;:26;;31875:1;31850:26;:::i;:::-;31829:47;;31785:103;31920:7;31900:242;31937:18;31929:4;:26;31900:242;;31980:31;32014:17;;;:11;:17;;;;;;;;;31980:51;;;;;;;;;-1:-1:-1;;;;;31980:51:0;;;;;-1:-1:-1;;;31980:51:0;;;;;;;;;;;;32050:28;32046:85;;32106:9;31537:682;-1:-1:-1;;;;31537:682:0:o;32046:85::-;-1:-1:-1;31957:6:0;;;;:::i;:::-;;;;31900:242;;;-1:-1:-1;32154:57:0;;-1:-1:-1;;;32154:57:0;;19779:2:1;32154:57:0;;;19761:21:1;19818:2;19798:18;;;19791:30;19857:34;19837:18;;;19830:62;-1:-1:-1;;;19908:18:1;;;19901:45;19963:19;;32154:57:0;19577:411:1;46766:191:0;46840:16;46859:6;;-1:-1:-1;;;;;46876:17:0;;;-1:-1:-1;;;;;;46876:17:0;;;;;;46909:40;;46859:6;;;;;;;46909:40;;46840:16;46909:40;46829:128;46766:191;:::o;36404:104::-;36473:27;36483:2;36487:8;36473:27;;;;;;;;;;;;:9;:27::i;42227:985::-;42382:4;-1:-1:-1;;;;;42403:13:0;;1528:19;:23;42399:806;;42456:175;;-1:-1:-1;;;42456:175:0;;-1:-1:-1;;;;;42456:36:0;;;;;:175;;26266:10;;42550:4;;42577:7;;42607:5;;42456:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42456:175:0;;;;;;;;-1:-1:-1;;42456:175:0;;;;;;;;;;;;:::i;:::-;;;42435:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42818:13:0;;42814:321;;42861:109;;-1:-1:-1;;;42861:109:0;;;;;;;:::i;42814:321::-;43085:6;43079:13;43070:6;43066:2;43062:15;43055:38;42435:715;-1:-1:-1;;;;;;42695:55:0;-1:-1:-1;;;42695:55:0;;-1:-1:-1;42688:62:0;;42399:806;-1:-1:-1;43189:4:0;42399:806;42227:985;;;;;;:::o;49771:114::-;49831:13;49864;49857:20;;;;;:::i;20989:723::-;21045:13;21266:10;21262:53;;-1:-1:-1;;21293:10:0;;;;;;;;;;;;-1:-1:-1;;;21293:10:0;;;;;20989:723::o;21262:53::-;21340:5;21325:12;21381:78;21388:9;;21381:78;;21414:8;;;;:::i;:::-;;-1:-1:-1;21437:10:0;;-1:-1:-1;21445:2:0;21437:10;;:::i;:::-;;;21381:78;;;21469:19;21501:6;21491:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21491:17:0;;21469:39;;21519:154;21526:10;;21519:154;;21553:11;21563:1;21553:11;;:::i;:::-;;-1:-1:-1;21622:10:0;21630:2;21622:5;:10;:::i;:::-;21609:24;;:2;:24;:::i;:::-;21596:39;;21579:6;21586;21579:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21579:56:0;;;;;;;;-1:-1:-1;21650:11:0;21659:2;21650:11;;:::i;:::-;;;21519:154;;19158:190;19283:4;19336;19307:25;19320:5;19327:4;19307:12;:25::i;:::-;:33;;19158:190;-1:-1:-1;;;;19158:190:0:o;36871:1400::-;37017:12;;-1:-1:-1;;;;;37048:16:0;;37040:62;;;;-1:-1:-1;;;37040:62:0;;18602:2:1;37040:62:0;;;18584:21:1;18641:2;18621:18;;;18614:30;18680:34;18660:18;;;18653:62;-1:-1:-1;;;18731:18:1;;;18724:31;18772:19;;37040:62:0;18400:397:1;37040:62:0;37247:21;37255:12;36376;;-1:-1:-1;36366:22:0;36285:111;37247:21;37246:22;37238:64;;;;-1:-1:-1;;;37238:64:0;;17888:2:1;37238:64:0;;;17870:21:1;17927:2;17907:18;;;17900:30;17966:31;17946:18;;;17939:59;18015:18;;37238:64:0;17686:353:1;37238:64:0;37333:12;37321:8;:24;;37313:71;;;;-1:-1:-1;;;37313:71:0;;20960:2:1;37313:71:0;;;20942:21:1;20999:2;20979:18;;;20972:30;21038:34;21018:18;;;21011:62;-1:-1:-1;;;21089:18:1;;;21082:32;21131:19;;37313:71:0;20758:398:1;37313:71:0;-1:-1:-1;;;;;37504:16:0;;37471:30;37504:16;;;:12;:16;;;;;;;;;37471:49;;;;;;;;;-1:-1:-1;;;;;37471:49:0;;;;;-1:-1:-1;;;37471:49:0;;;;;;;;;;;37550:135;;;;;;;;37576:19;;37471:49;;37550:135;;;37576:39;;37606:8;;37576:39;:::i;:::-;-1:-1:-1;;;;;37550:135:0;;;;;37665:8;37630:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;37550:135:0;;;;;;-1:-1:-1;;;;;37531:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;37531:154:0;;;;;;;;;;;;37724:43;;;;;;;;;;;37750:15;37724:43;;;;;;;;37696:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;37696:71:0;-1:-1:-1;;;;;;37696:71:0;;;;;;;;;;;;;;;;;;37708:12;;37828:325;37852:8;37848:1;:12;37828:325;;;37887:38;;37912:12;;-1:-1:-1;;;;;37887:38:0;;;37904:1;;37887:38;;37904:1;;37887:38;37966:59;37997:1;38001:2;38005:12;38019:5;37966:22;:59::i;:::-;37940:172;;;;-1:-1:-1;;;37940:172:0;;;;;;;:::i;:::-;38127:14;;;;:::i;:::-;;;;37862:3;;;;;:::i;:::-;;;;37828:325;;;-1:-1:-1;38165:12:0;:27;;;38203:60;35675:355;19710:675;19793:7;19836:4;19793:7;19851:497;19875:5;:12;19871:1;:16;19851:497;;;19909:20;19932:5;19938:1;19932:8;;;;;;;;:::i;:::-;;;;;;;19909:31;;19975:12;19959;:28;19955:382;;20461:13;20511:15;;;20547:4;20540:15;;;20594:4;20578:21;;20087:57;;19955:382;;;20461:13;20511:15;;;20547:4;20540:15;;;20594:4;20578:21;;20264:57;;19955:382;-1:-1:-1;19889:3:0;;;;:::i;:::-;;;;19851:497;;;-1:-1:-1;20365:12:0;19710:675;-1:-1:-1;;;19710:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:160::-;629:20;;685:13;;678:21;668:32;;658:60;;714:1;711;704:12;729:186;788:6;841:2;829:9;820:7;816:23;812:32;809:52;;;857:1;854;847:12;809:52;880:29;899:9;880:29;:::i;920:260::-;988:6;996;1049:2;1037:9;1028:7;1024:23;1020:32;1017:52;;;1065:1;1062;1055:12;1017:52;1088:29;1107:9;1088:29;:::i;:::-;1078:39;;1136:38;1170:2;1159:9;1155:18;1136:38;:::i;:::-;1126:48;;920:260;;;;;:::o;1185:328::-;1262:6;1270;1278;1331:2;1319:9;1310:7;1306:23;1302:32;1299:52;;;1347:1;1344;1337:12;1299:52;1370:29;1389:9;1370:29;:::i;:::-;1360:39;;1418:38;1452:2;1441:9;1437:18;1418:38;:::i;:::-;1408:48;;1503:2;1492:9;1488:18;1475:32;1465:42;;1185:328;;;;;:::o;1518:1138::-;1613:6;1621;1629;1637;1690:3;1678:9;1669:7;1665:23;1661:33;1658:53;;;1707:1;1704;1697:12;1658:53;1730:29;1749:9;1730:29;:::i;:::-;1720:39;;1778:38;1812:2;1801:9;1797:18;1778:38;:::i;:::-;1768:48;;1863:2;1852:9;1848:18;1835:32;1825:42;;1918:2;1907:9;1903:18;1890:32;1941:18;1982:2;1974:6;1971:14;1968:34;;;1998:1;1995;1988:12;1968:34;2036:6;2025:9;2021:22;2011:32;;2081:7;2074:4;2070:2;2066:13;2062:27;2052:55;;2103:1;2100;2093:12;2052:55;2139:2;2126:16;2161:2;2157;2154:10;2151:36;;;2167:18;;:::i;:::-;2242:2;2236:9;2210:2;2296:13;;-1:-1:-1;;2292:22:1;;;2316:2;2288:31;2284:40;2272:53;;;2340:18;;;2360:22;;;2337:46;2334:72;;;2386:18;;:::i;:::-;2426:10;2422:2;2415:22;2461:2;2453:6;2446:18;2501:7;2496:2;2491;2487;2483:11;2479:20;2476:33;2473:53;;;2522:1;2519;2512:12;2473:53;2578:2;2573;2569;2565:11;2560:2;2552:6;2548:15;2535:46;2623:1;2618:2;2613;2605:6;2601:15;2597:24;2590:35;2644:6;2634:16;;;;;;;1518:1138;;;;;;;:::o;2661:254::-;2726:6;2734;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2826:29;2845:9;2826:29;:::i;:::-;2816:39;;2874:35;2905:2;2894:9;2890:18;2874:35;:::i;2920:254::-;2988:6;2996;3049:2;3037:9;3028:7;3024:23;3020:32;3017:52;;;3065:1;3062;3055:12;3017:52;3088:29;3107:9;3088:29;:::i;:::-;3078:39;3164:2;3149:18;;;;3136:32;;-1:-1:-1;;;2920:254:1:o;3179:437::-;3265:6;3273;3326:2;3314:9;3305:7;3301:23;3297:32;3294:52;;;3342:1;3339;3332:12;3294:52;3382:9;3369:23;3415:18;3407:6;3404:30;3401:50;;;3447:1;3444;3437:12;3401:50;3486:70;3548:7;3539:6;3528:9;3524:22;3486:70;:::i;:::-;3575:8;;3460:96;;-1:-1:-1;3179:437:1;-1:-1:-1;;;;3179:437:1:o;3621:180::-;3677:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:52;;;3746:1;3743;3736:12;3698:52;3769:26;3785:9;3769:26;:::i;3806:180::-;3865:6;3918:2;3906:9;3897:7;3893:23;3889:32;3886:52;;;3934:1;3931;3924:12;3886:52;-1:-1:-1;3957:23:1;;3806:180;-1:-1:-1;3806:180:1:o;3991:245::-;4049:6;4102:2;4090:9;4081:7;4077:23;4073:32;4070:52;;;4118:1;4115;4108:12;4070:52;4157:9;4144:23;4176:30;4200:5;4176:30;:::i;4241:249::-;4310:6;4363:2;4351:9;4342:7;4338:23;4334:32;4331:52;;;4379:1;4376;4369:12;4331:52;4411:9;4405:16;4430:30;4454:5;4430:30;:::i;4495:592::-;4566:6;4574;4627:2;4615:9;4606:7;4602:23;4598:32;4595:52;;;4643:1;4640;4633:12;4595:52;4683:9;4670:23;4712:18;4753:2;4745:6;4742:14;4739:34;;;4769:1;4766;4759:12;4739:34;4807:6;4796:9;4792:22;4782:32;;4852:7;4845:4;4841:2;4837:13;4833:27;4823:55;;4874:1;4871;4864:12;4823:55;4914:2;4901:16;4940:2;4932:6;4929:14;4926:34;;;4956:1;4953;4946:12;4926:34;5001:7;4996:2;4987:6;4983:2;4979:15;4975:24;4972:37;4969:57;;;5022:1;5019;5012:12;4969:57;5053:2;5045:11;;;;;5075:6;;-1:-1:-1;4495:592:1;;-1:-1:-1;;;;4495:592:1:o;5277:254::-;5345:6;5353;5406:2;5394:9;5385:7;5381:23;5377:32;5374:52;;;5422:1;5419;5412:12;5374:52;5458:9;5445:23;5435:33;;5487:38;5521:2;5510:9;5506:18;5487:38;:::i;5536:594::-;5629:6;5637;5645;5698:2;5686:9;5677:7;5673:23;5669:32;5666:52;;;5714:1;5711;5704:12;5666:52;5753:9;5740:23;5803:4;5796:5;5792:16;5785:5;5782:27;5772:55;;5823:1;5820;5813:12;5772:55;5846:5;-1:-1:-1;5902:2:1;5887:18;;5874:32;5929:18;5918:30;;5915:50;;;5961:1;5958;5951:12;5915:50;6000:70;6062:7;6053:6;6042:9;6038:22;6000:70;:::i;:::-;5536:594;;6089:8;;-1:-1:-1;5974:96:1;;-1:-1:-1;;;;5536:594:1:o;6135:257::-;6176:3;6214:5;6208:12;6241:6;6236:3;6229:19;6257:63;6313:6;6306:4;6301:3;6297:14;6290:4;6283:5;6279:16;6257:63;:::i;:::-;6374:2;6353:15;-1:-1:-1;;6349:29:1;6340:39;;;;6381:4;6336:50;;6135:257;-1:-1:-1;;6135:257:1:o;6631:470::-;6810:3;6848:6;6842:13;6864:53;6910:6;6905:3;6898:4;6890:6;6886:17;6864:53;:::i;:::-;6980:13;;6939:16;;;;7002:57;6980:13;6939:16;7036:4;7024:17;;7002:57;:::i;:::-;7075:20;;6631:470;-1:-1:-1;;;;6631:470:1:o;7314:488::-;-1:-1:-1;;;;;7583:15:1;;;7565:34;;7635:15;;7630:2;7615:18;;7608:43;7682:2;7667:18;;7660:34;;;7730:3;7725:2;7710:18;;7703:31;;;7508:4;;7751:45;;7776:19;;7768:6;7751:45;:::i;:::-;7743:53;7314:488;-1:-1:-1;;;;;;7314:488:1:o;8181:219::-;8330:2;8319:9;8312:21;8293:4;8350:44;8390:2;8379:9;8375:18;8367:6;8350:44;:::i;14207:356::-;14409:2;14391:21;;;14428:18;;;14421:30;14487:34;14482:2;14467:18;;14460:62;14554:2;14539:18;;14207:356::o;16922:415::-;17124:2;17106:21;;;17163:2;17143:18;;;17136:30;17202:34;17197:2;17182:18;;17175:62;-1:-1:-1;;;17268:2:1;17253:18;;17246:49;17327:3;17312:19;;16922:415::o;21942:253::-;21982:3;-1:-1:-1;;;;;22071:2:1;22068:1;22064:10;22101:2;22098:1;22094:10;22132:3;22128:2;22124:12;22119:3;22116:21;22113:47;;;22140:18;;:::i;22200:128::-;22240:3;22271:1;22267:6;22264:1;22261:13;22258:39;;;22277:18;;:::i;:::-;-1:-1:-1;22313:9:1;;22200:128::o;22333:204::-;22371:3;22407:4;22404:1;22400:12;22439:4;22436:1;22432:12;22474:3;22468:4;22464:14;22459:3;22456:23;22453:49;;;22482:18;;:::i;:::-;22518:13;;22333:204;-1:-1:-1;;;22333:204:1:o;22542:120::-;22582:1;22608;22598:35;;22613:18;;:::i;:::-;-1:-1:-1;22647:9:1;;22542:120::o;22667:168::-;22707:7;22773:1;22769;22765:6;22761:14;22758:1;22755:21;22750:1;22743:9;22736:17;22732:45;22729:71;;;22780:18;;:::i;:::-;-1:-1:-1;22820:9:1;;22667:168::o;22840:246::-;22880:4;-1:-1:-1;;;;;22993:10:1;;;;22963;;23015:12;;;23012:38;;;23030:18;;:::i;:::-;23067:13;;22840:246;-1:-1:-1;;;22840:246:1:o;23091:125::-;23131:4;23159:1;23156;23153:8;23150:34;;;23164:18;;:::i;:::-;-1:-1:-1;23201:9:1;;23091:125::o;23221:258::-;23293:1;23303:113;23317:6;23314:1;23311:13;23303:113;;;23393:11;;;23387:18;23374:11;;;23367:39;23339:2;23332:10;23303:113;;;23434:6;23431:1;23428:13;23425:48;;;-1:-1:-1;;23469:1:1;23451:16;;23444:27;23221:258::o;23484:136::-;23523:3;23551:5;23541:39;;23560:18;;:::i;:::-;-1:-1:-1;;;23596:18:1;;23484:136::o;23625:380::-;23704:1;23700:12;;;;23747;;;23768:61;;23822:4;23814:6;23810:17;23800:27;;23768:61;23875:2;23867:6;23864:14;23844:18;23841:38;23838:161;;;23921:10;23916:3;23912:20;23909:1;23902:31;23956:4;23953:1;23946:15;23984:4;23981:1;23974:15;23838:161;;23625:380;;;:::o;24010:135::-;24049:3;-1:-1:-1;;24070:17:1;;24067:43;;;24090:18;;:::i;:::-;-1:-1:-1;24137:1:1;24126:13;;24010:135::o;24150:175::-;24187:3;24231:4;24224:5;24220:16;24260:4;24251:7;24248:17;24245:43;;;24268:18;;:::i;:::-;24317:1;24304:15;;24150:175;-1:-1:-1;;24150:175:1:o;24330:112::-;24362:1;24388;24378:35;;24393:18;;:::i;:::-;-1:-1:-1;24427:9:1;;24330:112::o;24447:127::-;24508:10;24503:3;24499:20;24496:1;24489:31;24539:4;24536:1;24529:15;24563:4;24560:1;24553:15;24579:127;24640:10;24635:3;24631:20;24628:1;24621:31;24671:4;24668:1;24661:15;24695:4;24692:1;24685:15;24711:127;24772:10;24767:3;24763:20;24760:1;24753:31;24803:4;24800:1;24793:15;24827:4;24824:1;24817:15;24843:127;24904:10;24899:3;24895:20;24892:1;24885:31;24935:4;24932:1;24925:15;24959:4;24956:1;24949:15;24975:131;-1:-1:-1;;;;;;25049:32:1;;25039:43;;25029:71;;25096:1;25093;25086:12

Swarm Source

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