ETH Price: $3,024.09 (+3.17%)
Gas: 1 Gwei

Token

MutantFlies (MFLY)
 

Overview

Max Total Supply

4,464 MFLY

Holders

878

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MFLY
0x372c8ff76faa14ef10dc553340a60278548dd618
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:
MutantFlies

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: IBurnable.sol

//SPDX-License-Identifier: MIT
pragma solidity 0.8.10;

interface IBurnable {

    function burn(
        uint256 id
    ) external;

    function batchBurn(
        uint256[] memory ids
    ) external;

    function ownerOf(uint tokenId) external returns(address);

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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: ERC721A.sol


// Creator: Chiru Labs

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..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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: MutantFlies.sol

pragma solidity ^0.8.10;

contract MutantFlies is ERC721A, Ownable {

    address immutable canContract = 0xF26c762a9Fb1757050871DbDbd4fD6062eabFF5d;

    address immutable flyTrapContract = 0xF177e1cb08628e9338E01A3015F3ca8978413612;

    //BaseURI
    string public baseURI = "ipfs://default";

    //Max Public Supply
    uint public maxPublicMint = 1255;

    //Max Burn Supply
    uint public maxBurnMint = 4300;

    //Max Per TX
    uint public maxMintPerTxn = 50;

    //price
    uint256 public price = 0.06 ether;

    //TrackPublic
    uint public numPublicMinted = 0;

    //TrackBurned
    uint public numBurnMinted = 0;

    //public Active?
    bool public isPublicMint = false;

    //paused
    bool public paused = true;

    constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) {

    }

    /*--------------READ and WRITE FUNCTIONS--------------*/

    function burnMint(uint[] calldata nftTokenIds, bool _flyTrap) external {

        IBurnable burnableContract;
        uint amount;

        uint length = nftTokenIds.length;

        require(amount + numBurnMinted <= maxBurnMint, "All Mutation Burn Mints Claimed");

        require(paused == false, "Minting is paused");

        if(_flyTrap) {
            burnableContract = IBurnable(flyTrapContract);
            amount = (7 * length);
        } else {
            burnableContract = IBurnable(canContract);
            amount = length;
        }

        for(uint i = 0; i < length;) {

            require(burnableContract.ownerOf(nftTokenIds[i]) == msg.sender, "user doesn't own this nft");

            unchecked {
                ++i;
            }
        }

        burnableContract.batchBurn(nftTokenIds);

        numBurnMinted += amount;

        _safeMint(msg.sender, amount, "");

    }

    function publicMint(uint amount) external payable {

        require(isPublicMint == true, "Minting isn't public");

        require(paused == false, "Minting is paused");

        require(amount + numPublicMinted <= maxPublicMint, "Trying to mint more than max");

        require(amount < maxMintPerTxn, "Cant mint as much per txn");

        require(msg.value == price * amount, "Invalid amount sent");

        numPublicMinted += amount;

        _mint(msg.sender, amount, "", true);

    }

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

    function setBaseURI(string calldata _uri) external onlyOwner {

        baseURI = _uri;

    }

    function setPubicMint(bool _value) external onlyOwner {

        isPublicMint = _value;

    }

    function setPrice(uint256 _price) external onlyOwner {

        price = _price;

    }

    function setMaxPublicMint(uint256 _maxPublicMint) external onlyOwner {

        maxPublicMint = _maxPublicMint;

    }

    function setMaxBurnMint(uint256 _maxBurnMint) external onlyOwner {

        maxBurnMint = _maxBurnMint;

    }

    function setMaxMintPerTxn(uint256 _maxMintPerTxn) external onlyOwner {

        maxMintPerTxn = _maxMintPerTxn;

    }

    function pause(bool _paused) external onlyOwner {

        paused = _paused;

    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"nftTokenIds","type":"uint256[]"},{"internalType":"bool","name":"_flyTrap","type":"bool"}],"name":"burnMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBurnMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numBurnMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numPublicMinted","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":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBurnMint","type":"uint256"}],"name":"setMaxBurnMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTxn","type":"uint256"}],"name":"setMaxMintPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMint","type":"uint256"}],"name":"setMaxPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setPubicMint","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":"payable","type":"function"}]

73f26c762a9fb1757050871dbdbd4fd6062eabff5d60805273f177e1cb08628e9338e01a3015f3ca897841361260a052610100604052600e60c08190526d1a5c199cce8bcbd91959985d5b1d60921b60e090815262000062916008919062000172565b506104e76009556110cc600a556032600b5566d529ae9e860000600c556000600d819055600e55600f805461ffff1916610100179055348015620000a557600080fd5b50604051620028a0380380620028a0833981016040819052620000c891620002e5565b815182908290620000e190600190602085019062000172565b508051620000f790600290602084019062000172565b505050620001146200010e6200011c60201b60201c565b62000120565b50506200038c565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000180906200034f565b90600052602060002090601f016020900481019282620001a45760008555620001ef565b82601f10620001bf57805160ff1916838001178555620001ef565b82800160010185558215620001ef579182015b82811115620001ef578251825591602001919060010190620001d2565b50620001fd92915062000201565b5090565b5b80821115620001fd576000815560010162000202565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200024057600080fd5b81516001600160401b03808211156200025d576200025d62000218565b604051601f8301601f19908116603f0116810190828211818310171562000288576200028862000218565b81604052838152602092508683858801011115620002a557600080fd5b600091505b83821015620002c95785820183015181830184015290820190620002aa565b83821115620002db5760008385830101525b9695505050505050565b60008060408385031215620002f957600080fd5b82516001600160401b03808211156200031157600080fd5b6200031f868387016200022e565b935060208501519150808211156200033657600080fd5b5062000345858286016200022e565b9150509250929050565b600181811c908216806200036457607f821691505b602082108114156200038657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516124ee620003b26000396000610a9001526000610ac501526124ee6000f3fe6080604052600436106102255760003560e01c8063682a3ad611610123578063a210c804116100ab578063caa8078f1161006f578063caa8078f1461060d578063cabadaa014610623578063d133a9b814610639578063e985e9c51461064f578063f2fde38b1461069857600080fd5b8063a210c8041461056d578063a22cb4651461058d578063b88d4fde146105ad578063b8defa19146105cd578063c87b56dd146105ed57600080fd5b80638b3c72fc116100f25780638b3c72fc146104ee5780638da5cb5b1461050457806391b7f5ed1461052257806395d89b4114610542578063a035b1fe1461055757600080fd5b8063682a3ad61461048e5780636c0360eb146104a457806370a08231146104b9578063715018a6146104d957600080fd5b8063270ab52c116101b157806342842e0e1161017557806342842e0e146103ef5780634f6ccce71461040f57806355f804b31461042f5780635c975abb1461044f5780636352211e1461046e57600080fd5b8063270ab52c1461037a5780632db115441461039a5780632f745c59146103ad5780633057931f146103cd5780633ccfd60b146103e757600080fd5b8063081812fc116101f8578063081812fc146102c3578063095ea7b3146102fb57806311020a5d1461031b57806318160ddd1461033b57806323b872dd1461035a57600080fd5b806301ffc9a71461022a57806302329a291461025f57806305026cee1461028157806306fdde03146102a1575b600080fd5b34801561023657600080fd5b5061024a610245366004611e76565b6106b8565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a366004611ea8565b610725565b005b34801561028d57600080fd5b5061027f61029c366004611ec3565b610772565b3480156102ad57600080fd5b506102b66107a1565b6040516102569190611f34565b3480156102cf57600080fd5b506102e36102de366004611ec3565b610833565b6040516001600160a01b039091168152602001610256565b34801561030757600080fd5b5061027f610316366004611f5c565b6108be565b34801561032757600080fd5b5061027f610336366004611f88565b6109d6565b34801561034757600080fd5b506000545b604051908152602001610256565b34801561036657600080fd5b5061027f61037536600461200c565b610c79565b34801561038657600080fd5b5061027f610395366004611ec3565b610c84565b61027f6103a8366004611ec3565b610cb3565b3480156103b957600080fd5b5061034c6103c8366004611f5c565b610e86565b3480156103d957600080fd5b50600f5461024a9060ff1681565b61027f610fe3565b3480156103fb57600080fd5b5061027f61040a36600461200c565b611062565b34801561041b57600080fd5b5061034c61042a366004611ec3565b61107d565b34801561043b57600080fd5b5061027f61044a36600461204d565b6110df565b34801561045b57600080fd5b50600f5461024a90610100900460ff1681565b34801561047a57600080fd5b506102e3610489366004611ec3565b611115565b34801561049a57600080fd5b5061034c600a5481565b3480156104b057600080fd5b506102b6611127565b3480156104c557600080fd5b5061034c6104d43660046120bf565b6111b5565b3480156104e557600080fd5b5061027f611246565b3480156104fa57600080fd5b5061034c600e5481565b34801561051057600080fd5b506007546001600160a01b03166102e3565b34801561052e57600080fd5b5061027f61053d366004611ec3565b61127c565b34801561054e57600080fd5b506102b66112ab565b34801561056357600080fd5b5061034c600c5481565b34801561057957600080fd5b5061027f610588366004611ec3565b6112ba565b34801561059957600080fd5b5061027f6105a83660046120dc565b6112e9565b3480156105b957600080fd5b5061027f6105c8366004612127565b6113ae565b3480156105d957600080fd5b5061027f6105e8366004611ea8565b6113e7565b3480156105f957600080fd5b506102b6610608366004611ec3565b611424565b34801561061957600080fd5b5061034c600b5481565b34801561062f57600080fd5b5061034c60095481565b34801561064557600080fd5b5061034c600d5481565b34801561065b57600080fd5b5061024a61066a366004612207565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106a457600080fd5b5061027f6106b33660046120bf565b6114f2565b60006001600160e01b031982166380ac58cd60e01b14806106e957506001600160e01b03198216635b5e139f60e01b145b8061070457506001600160e01b0319821663780e9d6360e01b145b8061071f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107585760405162461bcd60e51b815260040161074f90612240565b60405180910390fd5b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b0316331461079c5760405162461bcd60e51b815260040161074f90612240565b600b55565b6060600180546107b090612275565b80601f01602080910402602001604051908101604052809291908181526020018280546107dc90612275565b80156108295780601f106107fe57610100808354040283529160200191610829565b820191906000526020600020905b81548152906001019060200180831161080c57829003601f168201915b5050505050905090565b6000610840826000541190565b6108a25760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161074f565b506000908152600560205260409020546001600160a01b031690565b60006108c982611115565b9050806001600160a01b0316836001600160a01b031614156109385760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161074f565b336001600160a01b03821614806109545750610954813361066a565b6109c65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161074f565b6109d183838361158a565b505050565b600a54600e5460009182918591906109ee90846122c6565b1115610a3c5760405162461bcd60e51b815260206004820152601f60248201527f416c6c204d75746174696f6e204275726e204d696e747320436c61696d656400604482015260640161074f565b600f54610100900460ff1615610a885760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161074f565b8315610ac3577f00000000000000000000000000000000000000000000000000000000000000009250610abc8160076122de565b9150610aea565b7f000000000000000000000000000000000000000000000000000000000000000092508091505b60005b81811015610bdd57336001600160a01b038516636352211e898985818110610b1757610b176122fd565b905060200201356040518263ffffffff1660e01b8152600401610b3c91815260200190565b6020604051808303816000875af1158015610b5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7f9190612313565b6001600160a01b031614610bd55760405162461bcd60e51b815260206004820152601960248201527f7573657220646f65736e2774206f776e2074686973206e667400000000000000604482015260640161074f565b600101610aed565b50604051636e47497560e11b81526001600160a01b0384169063dc8e92ea90610c0c9089908990600401612330565b600060405180830381600087803b158015610c2657600080fd5b505af1158015610c3a573d6000803e3d6000fd5b5050505081600e6000828254610c5091906122c6565b92505081905550610c713383604051806020016040528060008152506115e6565b505050505050565b6109d18383836115f3565b6007546001600160a01b03163314610cae5760405162461bcd60e51b815260040161074f90612240565b600955565b600f5460ff161515600114610d015760405162461bcd60e51b81526020600482015260146024820152734d696e74696e672069736e2774207075626c696360601b604482015260640161074f565b600f54610100900460ff1615610d4d5760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161074f565b600954600d54610d5d90836122c6565b1115610dab5760405162461bcd60e51b815260206004820152601c60248201527f547279696e6720746f206d696e74206d6f7265207468616e206d617800000000604482015260640161074f565b600b548110610dfc5760405162461bcd60e51b815260206004820152601960248201527f43616e74206d696e74206173206d756368207065722074786e00000000000000604482015260640161074f565b80600c54610e0a91906122de565b3414610e4e5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a5908185b5bdd5b9d081cd95b9d606a1b604482015260640161074f565b80600d6000828254610e6091906122c6565b92505081905550610e8333826040518060200160405280600081525060016118d8565b50565b6000610e91836111b5565b8210610eea5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161074f565b600080549080805b83811015610f83576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f4557805192505b876001600160a01b0316836001600160a01b03161415610f7a5786841415610f735750935061071f92505050565b6001909301925b50600101610ef2565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161074f565b6007546001600160a01b0316331461100d5760405162461bcd60e51b815260040161074f90612240565b604051600090339047908381818185875af1925050503d806000811461104f576040519150601f19603f3d011682016040523d82523d6000602084013e611054565b606091505b5050905080610e8357600080fd5b6109d1838383604051806020016040528060008152506113ae565b6000805482106110db5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161074f565b5090565b6007546001600160a01b031633146111095760405162461bcd60e51b815260040161074f90612240565b6109d160088383611dd0565b600061112082611a9b565b5192915050565b6008805461113490612275565b80601f016020809104026020016040519081016040528092919081815260200182805461116090612275565b80156111ad5780601f10611182576101008083540402835291602001916111ad565b820191906000526020600020905b81548152906001019060200180831161119057829003601f168201915b505050505081565b60006001600160a01b0382166112215760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161074f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112705760405162461bcd60e51b815260040161074f90612240565b61127a6000611b72565b565b6007546001600160a01b031633146112a65760405162461bcd60e51b815260040161074f90612240565b600c55565b6060600280546107b090612275565b6007546001600160a01b031633146112e45760405162461bcd60e51b815260040161074f90612240565b600a55565b6001600160a01b0382163314156113425760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161074f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113b98484846115f3565b6113c584848484611bc4565b6113e15760405162461bcd60e51b815260040161074f9061236c565b50505050565b6007546001600160a01b031633146114115760405162461bcd60e51b815260040161074f90612240565b600f805460ff1916911515919091179055565b6060611431826000541190565b6114955760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161074f565b600061149f611cc3565b90508051600014156114c057604051806020016040528060008152506114eb565b806114ca84611cd2565b6040516020016114db9291906123bf565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461151c5760405162461bcd60e51b815260040161074f90612240565b6001600160a01b0381166115815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074f565b610e8381611b72565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109d183838360016118d8565b60006115fe82611a9b565b80519091506000906001600160a01b0316336001600160a01b0316148061163557503361162a84610833565b6001600160a01b0316145b8061164757508151611647903361066a565b9050806116b15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161074f565b846001600160a01b031682600001516001600160a01b0316146117255760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161074f565b6001600160a01b0384166117895760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161074f565b611799600084846000015161158a565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661188e57611841816000541190565b1561188e578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000546001600160a01b03851661193b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161074f565b836119995760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161074f565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611a925760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611a8657611a6a6000888488611bc4565b611a865760405162461bcd60e51b815260040161074f9061236c565b60019182019101611a17565b506000556118d1565b6040805180820190915260008082526020820152611aba826000541190565b611b195760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161074f565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b68579392505050565b5060001901611b1b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611cb757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c089033908990889088906004016123ee565b6020604051808303816000875af1925050508015611c43575060408051601f3d908101601f19168201909252611c409181019061242b565b60015b611c9d573d808015611c71576040519150601f19603f3d011682016040523d82523d6000602084013e611c76565b606091505b508051611c955760405162461bcd60e51b815260040161074f9061236c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cbb565b5060015b949350505050565b6060600880546107b090612275565b606081611cf65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d205780611d0a81612448565b9150611d199050600a83612479565b9150611cfa565b60008167ffffffffffffffff811115611d3b57611d3b612111565b6040519080825280601f01601f191660200182016040528015611d65576020820181803683370190505b5090505b8415611cbb57611d7a60018361248d565b9150611d87600a866124a4565b611d929060306122c6565b60f81b818381518110611da757611da76122fd565b60200101906001600160f81b031916908160001a905350611dc9600a86612479565b9450611d69565b828054611ddc90612275565b90600052602060002090601f016020900481019282611dfe5760008555611e44565b82601f10611e175782800160ff19823516178555611e44565b82800160010185558215611e44579182015b82811115611e44578235825591602001919060010190611e29565b506110db9291505b808211156110db5760008155600101611e4c565b6001600160e01b031981168114610e8357600080fd5b600060208284031215611e8857600080fd5b81356114eb81611e60565b80358015158114611ea357600080fd5b919050565b600060208284031215611eba57600080fd5b6114eb82611e93565b600060208284031215611ed557600080fd5b5035919050565b60005b83811015611ef7578181015183820152602001611edf565b838111156113e15750506000910152565b60008151808452611f20816020860160208601611edc565b601f01601f19169290920160200192915050565b6020815260006114eb6020830184611f08565b6001600160a01b0381168114610e8357600080fd5b60008060408385031215611f6f57600080fd5b8235611f7a81611f47565b946020939093013593505050565b600080600060408486031215611f9d57600080fd5b833567ffffffffffffffff80821115611fb557600080fd5b818601915086601f830112611fc957600080fd5b813581811115611fd857600080fd5b8760208260051b8501011115611fed57600080fd5b6020928301955093506120039186019050611e93565b90509250925092565b60008060006060848603121561202157600080fd5b833561202c81611f47565b9250602084013561203c81611f47565b929592945050506040919091013590565b6000806020838503121561206057600080fd5b823567ffffffffffffffff8082111561207857600080fd5b818501915085601f83011261208c57600080fd5b81358181111561209b57600080fd5b8660208285010111156120ad57600080fd5b60209290920196919550909350505050565b6000602082840312156120d157600080fd5b81356114eb81611f47565b600080604083850312156120ef57600080fd5b82356120fa81611f47565b915061210860208401611e93565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561213d57600080fd5b843561214881611f47565b9350602085013561215881611f47565b925060408501359150606085013567ffffffffffffffff8082111561217c57600080fd5b818701915087601f83011261219057600080fd5b8135818111156121a2576121a2612111565b604051601f8201601f19908116603f011681019083821181831017156121ca576121ca612111565b816040528281528a60208487010111156121e357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561221a57600080fd5b823561222581611f47565b9150602083013561223581611f47565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061228957607f821691505b602082108114156122aa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122d9576122d96122b0565b500190565b60008160001904831182151516156122f8576122f86122b0565b500290565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561232557600080fd5b81516114eb81611f47565b6020808252810182905260006001600160fb1b0383111561235057600080fd5b8260051b80856040850137600092016040019182525092915050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516123d1818460208801611edc565b8351908301906123e5818360208801611edc565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061242190830184611f08565b9695505050505050565b60006020828403121561243d57600080fd5b81516114eb81611e60565b600060001982141561245c5761245c6122b0565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261248857612488612463565b500490565b60008282101561249f5761249f6122b0565b500390565b6000826124b3576124b3612463565b50069056fea2646970667358221220b9e6281aaa033573aff903c7824fc7c55a8bb1311e5724c5e62595dc29afe55e64736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b4d7574616e74466c69657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d464c5900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063682a3ad611610123578063a210c804116100ab578063caa8078f1161006f578063caa8078f1461060d578063cabadaa014610623578063d133a9b814610639578063e985e9c51461064f578063f2fde38b1461069857600080fd5b8063a210c8041461056d578063a22cb4651461058d578063b88d4fde146105ad578063b8defa19146105cd578063c87b56dd146105ed57600080fd5b80638b3c72fc116100f25780638b3c72fc146104ee5780638da5cb5b1461050457806391b7f5ed1461052257806395d89b4114610542578063a035b1fe1461055757600080fd5b8063682a3ad61461048e5780636c0360eb146104a457806370a08231146104b9578063715018a6146104d957600080fd5b8063270ab52c116101b157806342842e0e1161017557806342842e0e146103ef5780634f6ccce71461040f57806355f804b31461042f5780635c975abb1461044f5780636352211e1461046e57600080fd5b8063270ab52c1461037a5780632db115441461039a5780632f745c59146103ad5780633057931f146103cd5780633ccfd60b146103e757600080fd5b8063081812fc116101f8578063081812fc146102c3578063095ea7b3146102fb57806311020a5d1461031b57806318160ddd1461033b57806323b872dd1461035a57600080fd5b806301ffc9a71461022a57806302329a291461025f57806305026cee1461028157806306fdde03146102a1575b600080fd5b34801561023657600080fd5b5061024a610245366004611e76565b6106b8565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a366004611ea8565b610725565b005b34801561028d57600080fd5b5061027f61029c366004611ec3565b610772565b3480156102ad57600080fd5b506102b66107a1565b6040516102569190611f34565b3480156102cf57600080fd5b506102e36102de366004611ec3565b610833565b6040516001600160a01b039091168152602001610256565b34801561030757600080fd5b5061027f610316366004611f5c565b6108be565b34801561032757600080fd5b5061027f610336366004611f88565b6109d6565b34801561034757600080fd5b506000545b604051908152602001610256565b34801561036657600080fd5b5061027f61037536600461200c565b610c79565b34801561038657600080fd5b5061027f610395366004611ec3565b610c84565b61027f6103a8366004611ec3565b610cb3565b3480156103b957600080fd5b5061034c6103c8366004611f5c565b610e86565b3480156103d957600080fd5b50600f5461024a9060ff1681565b61027f610fe3565b3480156103fb57600080fd5b5061027f61040a36600461200c565b611062565b34801561041b57600080fd5b5061034c61042a366004611ec3565b61107d565b34801561043b57600080fd5b5061027f61044a36600461204d565b6110df565b34801561045b57600080fd5b50600f5461024a90610100900460ff1681565b34801561047a57600080fd5b506102e3610489366004611ec3565b611115565b34801561049a57600080fd5b5061034c600a5481565b3480156104b057600080fd5b506102b6611127565b3480156104c557600080fd5b5061034c6104d43660046120bf565b6111b5565b3480156104e557600080fd5b5061027f611246565b3480156104fa57600080fd5b5061034c600e5481565b34801561051057600080fd5b506007546001600160a01b03166102e3565b34801561052e57600080fd5b5061027f61053d366004611ec3565b61127c565b34801561054e57600080fd5b506102b66112ab565b34801561056357600080fd5b5061034c600c5481565b34801561057957600080fd5b5061027f610588366004611ec3565b6112ba565b34801561059957600080fd5b5061027f6105a83660046120dc565b6112e9565b3480156105b957600080fd5b5061027f6105c8366004612127565b6113ae565b3480156105d957600080fd5b5061027f6105e8366004611ea8565b6113e7565b3480156105f957600080fd5b506102b6610608366004611ec3565b611424565b34801561061957600080fd5b5061034c600b5481565b34801561062f57600080fd5b5061034c60095481565b34801561064557600080fd5b5061034c600d5481565b34801561065b57600080fd5b5061024a61066a366004612207565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106a457600080fd5b5061027f6106b33660046120bf565b6114f2565b60006001600160e01b031982166380ac58cd60e01b14806106e957506001600160e01b03198216635b5e139f60e01b145b8061070457506001600160e01b0319821663780e9d6360e01b145b8061071f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107585760405162461bcd60e51b815260040161074f90612240565b60405180910390fd5b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b0316331461079c5760405162461bcd60e51b815260040161074f90612240565b600b55565b6060600180546107b090612275565b80601f01602080910402602001604051908101604052809291908181526020018280546107dc90612275565b80156108295780601f106107fe57610100808354040283529160200191610829565b820191906000526020600020905b81548152906001019060200180831161080c57829003601f168201915b5050505050905090565b6000610840826000541190565b6108a25760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161074f565b506000908152600560205260409020546001600160a01b031690565b60006108c982611115565b9050806001600160a01b0316836001600160a01b031614156109385760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161074f565b336001600160a01b03821614806109545750610954813361066a565b6109c65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161074f565b6109d183838361158a565b505050565b600a54600e5460009182918591906109ee90846122c6565b1115610a3c5760405162461bcd60e51b815260206004820152601f60248201527f416c6c204d75746174696f6e204275726e204d696e747320436c61696d656400604482015260640161074f565b600f54610100900460ff1615610a885760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161074f565b8315610ac3577f000000000000000000000000f177e1cb08628e9338e01a3015f3ca89784136129250610abc8160076122de565b9150610aea565b7f000000000000000000000000f26c762a9fb1757050871dbdbd4fd6062eabff5d92508091505b60005b81811015610bdd57336001600160a01b038516636352211e898985818110610b1757610b176122fd565b905060200201356040518263ffffffff1660e01b8152600401610b3c91815260200190565b6020604051808303816000875af1158015610b5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7f9190612313565b6001600160a01b031614610bd55760405162461bcd60e51b815260206004820152601960248201527f7573657220646f65736e2774206f776e2074686973206e667400000000000000604482015260640161074f565b600101610aed565b50604051636e47497560e11b81526001600160a01b0384169063dc8e92ea90610c0c9089908990600401612330565b600060405180830381600087803b158015610c2657600080fd5b505af1158015610c3a573d6000803e3d6000fd5b5050505081600e6000828254610c5091906122c6565b92505081905550610c713383604051806020016040528060008152506115e6565b505050505050565b6109d18383836115f3565b6007546001600160a01b03163314610cae5760405162461bcd60e51b815260040161074f90612240565b600955565b600f5460ff161515600114610d015760405162461bcd60e51b81526020600482015260146024820152734d696e74696e672069736e2774207075626c696360601b604482015260640161074f565b600f54610100900460ff1615610d4d5760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604482015260640161074f565b600954600d54610d5d90836122c6565b1115610dab5760405162461bcd60e51b815260206004820152601c60248201527f547279696e6720746f206d696e74206d6f7265207468616e206d617800000000604482015260640161074f565b600b548110610dfc5760405162461bcd60e51b815260206004820152601960248201527f43616e74206d696e74206173206d756368207065722074786e00000000000000604482015260640161074f565b80600c54610e0a91906122de565b3414610e4e5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a5908185b5bdd5b9d081cd95b9d606a1b604482015260640161074f565b80600d6000828254610e6091906122c6565b92505081905550610e8333826040518060200160405280600081525060016118d8565b50565b6000610e91836111b5565b8210610eea5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161074f565b600080549080805b83811015610f83576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f4557805192505b876001600160a01b0316836001600160a01b03161415610f7a5786841415610f735750935061071f92505050565b6001909301925b50600101610ef2565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161074f565b6007546001600160a01b0316331461100d5760405162461bcd60e51b815260040161074f90612240565b604051600090339047908381818185875af1925050503d806000811461104f576040519150601f19603f3d011682016040523d82523d6000602084013e611054565b606091505b5050905080610e8357600080fd5b6109d1838383604051806020016040528060008152506113ae565b6000805482106110db5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161074f565b5090565b6007546001600160a01b031633146111095760405162461bcd60e51b815260040161074f90612240565b6109d160088383611dd0565b600061112082611a9b565b5192915050565b6008805461113490612275565b80601f016020809104026020016040519081016040528092919081815260200182805461116090612275565b80156111ad5780601f10611182576101008083540402835291602001916111ad565b820191906000526020600020905b81548152906001019060200180831161119057829003601f168201915b505050505081565b60006001600160a01b0382166112215760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161074f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112705760405162461bcd60e51b815260040161074f90612240565b61127a6000611b72565b565b6007546001600160a01b031633146112a65760405162461bcd60e51b815260040161074f90612240565b600c55565b6060600280546107b090612275565b6007546001600160a01b031633146112e45760405162461bcd60e51b815260040161074f90612240565b600a55565b6001600160a01b0382163314156113425760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161074f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113b98484846115f3565b6113c584848484611bc4565b6113e15760405162461bcd60e51b815260040161074f9061236c565b50505050565b6007546001600160a01b031633146114115760405162461bcd60e51b815260040161074f90612240565b600f805460ff1916911515919091179055565b6060611431826000541190565b6114955760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161074f565b600061149f611cc3565b90508051600014156114c057604051806020016040528060008152506114eb565b806114ca84611cd2565b6040516020016114db9291906123bf565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461151c5760405162461bcd60e51b815260040161074f90612240565b6001600160a01b0381166115815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074f565b610e8381611b72565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109d183838360016118d8565b60006115fe82611a9b565b80519091506000906001600160a01b0316336001600160a01b0316148061163557503361162a84610833565b6001600160a01b0316145b8061164757508151611647903361066a565b9050806116b15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161074f565b846001600160a01b031682600001516001600160a01b0316146117255760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161074f565b6001600160a01b0384166117895760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161074f565b611799600084846000015161158a565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661188e57611841816000541190565b1561188e578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000546001600160a01b03851661193b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161074f565b836119995760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161074f565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611a925760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611a8657611a6a6000888488611bc4565b611a865760405162461bcd60e51b815260040161074f9061236c565b60019182019101611a17565b506000556118d1565b6040805180820190915260008082526020820152611aba826000541190565b611b195760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161074f565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b68579392505050565b5060001901611b1b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611cb757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c089033908990889088906004016123ee565b6020604051808303816000875af1925050508015611c43575060408051601f3d908101601f19168201909252611c409181019061242b565b60015b611c9d573d808015611c71576040519150601f19603f3d011682016040523d82523d6000602084013e611c76565b606091505b508051611c955760405162461bcd60e51b815260040161074f9061236c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cbb565b5060015b949350505050565b6060600880546107b090612275565b606081611cf65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d205780611d0a81612448565b9150611d199050600a83612479565b9150611cfa565b60008167ffffffffffffffff811115611d3b57611d3b612111565b6040519080825280601f01601f191660200182016040528015611d65576020820181803683370190505b5090505b8415611cbb57611d7a60018361248d565b9150611d87600a866124a4565b611d929060306122c6565b60f81b818381518110611da757611da76122fd565b60200101906001600160f81b031916908160001a905350611dc9600a86612479565b9450611d69565b828054611ddc90612275565b90600052602060002090601f016020900481019282611dfe5760008555611e44565b82601f10611e175782800160ff19823516178555611e44565b82800160010185558215611e44579182015b82811115611e44578235825591602001919060010190611e29565b506110db9291505b808211156110db5760008155600101611e4c565b6001600160e01b031981168114610e8357600080fd5b600060208284031215611e8857600080fd5b81356114eb81611e60565b80358015158114611ea357600080fd5b919050565b600060208284031215611eba57600080fd5b6114eb82611e93565b600060208284031215611ed557600080fd5b5035919050565b60005b83811015611ef7578181015183820152602001611edf565b838111156113e15750506000910152565b60008151808452611f20816020860160208601611edc565b601f01601f19169290920160200192915050565b6020815260006114eb6020830184611f08565b6001600160a01b0381168114610e8357600080fd5b60008060408385031215611f6f57600080fd5b8235611f7a81611f47565b946020939093013593505050565b600080600060408486031215611f9d57600080fd5b833567ffffffffffffffff80821115611fb557600080fd5b818601915086601f830112611fc957600080fd5b813581811115611fd857600080fd5b8760208260051b8501011115611fed57600080fd5b6020928301955093506120039186019050611e93565b90509250925092565b60008060006060848603121561202157600080fd5b833561202c81611f47565b9250602084013561203c81611f47565b929592945050506040919091013590565b6000806020838503121561206057600080fd5b823567ffffffffffffffff8082111561207857600080fd5b818501915085601f83011261208c57600080fd5b81358181111561209b57600080fd5b8660208285010111156120ad57600080fd5b60209290920196919550909350505050565b6000602082840312156120d157600080fd5b81356114eb81611f47565b600080604083850312156120ef57600080fd5b82356120fa81611f47565b915061210860208401611e93565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561213d57600080fd5b843561214881611f47565b9350602085013561215881611f47565b925060408501359150606085013567ffffffffffffffff8082111561217c57600080fd5b818701915087601f83011261219057600080fd5b8135818111156121a2576121a2612111565b604051601f8201601f19908116603f011681019083821181831017156121ca576121ca612111565b816040528281528a60208487010111156121e357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561221a57600080fd5b823561222581611f47565b9150602083013561223581611f47565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061228957607f821691505b602082108114156122aa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122d9576122d96122b0565b500190565b60008160001904831182151516156122f8576122f86122b0565b500290565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561232557600080fd5b81516114eb81611f47565b6020808252810182905260006001600160fb1b0383111561235057600080fd5b8260051b80856040850137600092016040019182525092915050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516123d1818460208801611edc565b8351908301906123e5818360208801611edc565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061242190830184611f08565b9695505050505050565b60006020828403121561243d57600080fd5b81516114eb81611e60565b600060001982141561245c5761245c6122b0565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261248857612488612463565b500490565b60008282101561249f5761249f6122b0565b500390565b6000826124b3576124b3612463565b50069056fea2646970667358221220b9e6281aaa033573aff903c7824fc7c55a8bb1311e5724c5e62595dc29afe55e64736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b4d7574616e74466c69657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d464c5900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MutantFlies
Arg [1] : _symbol (string): MFLY

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 4d7574616e74466c696573000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4d464c5900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50214:3465:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32188:372;;;;;;;;;;-1:-1:-1;32188:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;32188:372:0;;;;;;;;53389:87;;;;;;;;;;-1:-1:-1;53389:87:0;;;;;:::i;:::-;;:::i;:::-;;53259:122;;;;;;;;;;-1:-1:-1;53259:122:0;;;;;:::i;:::-;;:::i;34074:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35636:214::-;;;;;;;;;;-1:-1:-1;35636:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;35636:214:0;1878:203:1;35157:413:0;;;;;;;;;;-1:-1:-1;35157:413:0;;;;;:::i;:::-;;:::i;51127:936::-;;;;;;;;;;-1:-1:-1;51127:936:0;;;;;:::i;:::-;;:::i;30445:100::-;;;;;;;;;;-1:-1:-1;30498:7:0;30525:12;30445:100;;;3382:25:1;;;3370:2;3355:18;30445:100:0;3236:177:1;36512:162:0;;;;;;;;;;-1:-1:-1;36512:162:0;;;;;:::i;:::-;;:::i;53007:122::-;;;;;;;;;;-1:-1:-1;53007:122:0;;;;;:::i;:::-;;:::i;52071:510::-;;;;;;:::i;:::-;;:::i;31109:1007::-;;;;;;;;;;-1:-1:-1;31109:1007:0;;;;;:::i;:::-;;:::i;50876:32::-;;;;;;;;;;-1:-1:-1;50876:32:0;;;;;;;;53484:192;;;:::i;36745:177::-;;;;;;;;;;-1:-1:-1;36745:177:0;;;;;:::i;:::-;;:::i;30622:187::-;;;;;;;;;;-1:-1:-1;30622:187:0;;;;;:::i;:::-;;:::i;52697:98::-;;;;;;;;;;-1:-1:-1;52697:98:0;;;;;:::i;:::-;;:::i;50931:25::-;;;;;;;;;;-1:-1:-1;50931:25:0;;;;;;;;;;;33883:124;;;;;;;;;;-1:-1:-1;33883:124:0;;;;;:::i;:::-;;:::i;50587:30::-;;;;;;;;;;;;;;;;50449:40;;;;;;;;;;;;;:::i;32624:221::-;;;;;;;;;;-1:-1:-1;32624:221:0;;;;;:::i;:::-;;:::i;49341:103::-;;;;;;;;;;;;;:::i;50816:29::-;;;;;;;;;;;;;;;;48690:87;;;;;;;;;;-1:-1:-1;48763:6:0;;-1:-1:-1;;;;;48763:6:0;48690:87;;52909:90;;;;;;;;;;-1:-1:-1;52909:90:0;;;;;:::i;:::-;;:::i;34243:104::-;;;;;;;;;;;;;:::i;50696:33::-;;;;;;;;;;;;;;;;53137:114;;;;;;;;;;-1:-1:-1;53137:114:0;;;;;:::i;:::-;;:::i;35922:288::-;;;;;;;;;;-1:-1:-1;35922:288:0;;;;;:::i;:::-;;:::i;36993:355::-;;;;;;;;;;-1:-1:-1;36993:355:0;;;;;:::i;:::-;;:::i;52803:98::-;;;;;;;;;;-1:-1:-1;52803:98:0;;;;;:::i;:::-;;:::i;34418:335::-;;;;;;;;;;-1:-1:-1;34418:335:0;;;;;:::i;:::-;;:::i;50644:30::-;;;;;;;;;;;;;;;;50523:32;;;;;;;;;;;;;;;;50757:31;;;;;;;;;;;;;;;;36281:164;;;;;;;;;;-1:-1:-1;36281:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36402:25:0;;;36378:4;36402:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36281:164;49599:201;;;;;;;;;;-1:-1:-1;49599:201:0;;;;;:::i;:::-;;:::i;32188:372::-;32290:4;-1:-1:-1;;;;;;32327:40:0;;-1:-1:-1;;;32327:40:0;;:105;;-1:-1:-1;;;;;;;32384:48:0;;-1:-1:-1;;;32384:48:0;32327:105;:172;;;-1:-1:-1;;;;;;;32449:50:0;;-1:-1:-1;;;32449:50:0;32327:172;:225;;;-1:-1:-1;;;;;;;;;;13883:40:0;;;32516:36;32307:245;32188:372;-1:-1:-1;;32188:372:0:o;53389:87::-;48763:6;;-1:-1:-1;;;;;48763:6:0;28508:10;48910:23;48902:68;;;;-1:-1:-1;;;48902:68:0;;;;;;;:::i;:::-;;;;;;;;;53450:6:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;53450:16:0;;::::1;::::0;;;::::1;::::0;;53389:87::o;53259:122::-;48763:6;;-1:-1:-1;;;;;48763:6:0;28508:10;48910:23;48902:68;;;;-1:-1:-1;;;48902:68:0;;;;;;;:::i;:::-;53341:13:::1;:30:::0;53259:122::o;34074:100::-;34128:13;34161:5;34154:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34074:100;:::o;35636:214::-;35704:7;35732:16;35740:7;37660:4;37694:12;-1:-1:-1;37684:22:0;37603:111;35732:16;35724:74;;;;-1:-1:-1;;;35724:74:0;;7792:2:1;35724:74:0;;;7774:21:1;7831:2;7811:18;;;7804:30;7870:34;7850:18;;;7843:62;-1:-1:-1;;;7921:18:1;;;7914:43;7974:19;;35724:74:0;7590:409:1;35724:74:0;-1:-1:-1;35818:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35818:24:0;;35636:214::o;35157:413::-;35230:13;35246:24;35262:7;35246:15;:24::i;:::-;35230:40;;35295:5;-1:-1:-1;;;;;35289:11:0;:2;-1:-1:-1;;;;;35289:11:0;;;35281:58;;;;-1:-1:-1;;;35281:58:0;;8206:2:1;35281:58:0;;;8188:21:1;8245:2;8225:18;;;8218:30;8284:34;8264:18;;;8257:62;-1:-1:-1;;;8335:18:1;;;8328:32;8377:19;;35281:58:0;8004:398:1;35281:58:0;28508:10;-1:-1:-1;;;;;35374:21:0;;;;:62;;-1:-1:-1;35399:37:0;35416:5;28508:10;36281:164;:::i;35399:37::-;35352:169;;;;-1:-1:-1;;;35352:169:0;;8609:2:1;35352:169:0;;;8591:21:1;8648:2;8628:18;;;8621:30;8687:34;8667:18;;;8660:62;8758:27;8738:18;;;8731:55;8803:19;;35352:169:0;8407:421:1;35352:169:0;35534:28;35543:2;35547:7;35556:5;35534:8;:28::i;:::-;35219:351;35157:413;;:::o;51127:936::-;51351:11;;51334:13;;51211:26;;;;51286:11;;51351;51325:22;;51211:26;51325:22;:::i;:::-;:37;;51317:81;;;;-1:-1:-1;;;51317:81:0;;9300:2:1;51317:81:0;;;9282:21:1;9339:2;9319:18;;;9312:30;9378:33;9358:18;;;9351:61;9429:18;;51317:81:0;9098:355:1;51317:81:0;51419:6;;;;;;;:15;51411:45;;;;-1:-1:-1;;;51411:45:0;;9660:2:1;51411:45:0;;;9642:21:1;9699:2;9679:18;;;9672:30;-1:-1:-1;;;9718:18:1;;;9711:47;9775:18;;51411:45:0;9458:341:1;51411:45:0;51472:8;51469:225;;;51526:15;;-1:-1:-1;51567:10:0;51571:6;51567:1;:10;:::i;:::-;51557:21;;51469:225;;;51640:11;51611:41;;51676:6;51667:15;;51469:225;51710:6;51706:214;51726:6;51722:1;:10;51706:214;;;51804:10;-1:-1:-1;;;;;51760:24:0;;;51785:11;;51797:1;51785:14;;;;;;;:::i;:::-;;;;;;;51760:40;;;;;;;;;;;;;3382:25:1;;3370:2;3355:18;;3236:177;51760:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51760:54:0;;51752:92;;;;-1:-1:-1;;;51752:92:0;;10567:2:1;51752:92:0;;;10549:21:1;10606:2;10586:18;;;10579:30;10645:27;10625:18;;;10618:55;10690:18;;51752:92:0;10365:349:1;51752:92:0;51890:3;;51706:214;;;-1:-1:-1;51932:39:0;;-1:-1:-1;;;51932:39:0;;-1:-1:-1;;;;;51932:26:0;;;;;:39;;51959:11;;;;51932:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52001:6;51984:13;;:23;;;;;;;:::i;:::-;;;;;;;;52020:33;52030:10;52042:6;52020:33;;;;;;;;;;;;:9;:33::i;:::-;51198:865;;;51127:936;;;:::o;36512:162::-;36638:28;36648:4;36654:2;36658:7;36638:9;:28::i;53007:122::-;48763:6;;-1:-1:-1;;;;;48763:6:0;28508:10;48910:23;48902:68;;;;-1:-1:-1;;;48902:68:0;;;;;;;:::i;:::-;53089:13:::1;:30:::0;53007:122::o;52071:510::-;52142:12;;;;:20;;:12;:20;52134:53;;;;-1:-1:-1;;;52134:53:0;;11412:2:1;52134:53:0;;;11394:21:1;11451:2;11431:18;;;11424:30;-1:-1:-1;;;11470:18:1;;;11463:50;11530:18;;52134:53:0;11210:344:1;52134:53:0;52208:6;;;;;;;:15;52200:45;;;;-1:-1:-1;;;52200:45:0;;9660:2:1;52200:45:0;;;9642:21:1;9699:2;9679:18;;;9672:30;-1:-1:-1;;;9718:18:1;;;9711:47;9775:18;;52200:45:0;9458:341:1;52200:45:0;52294:13;;52275:15;;52266:24;;:6;:24;:::i;:::-;:41;;52258:82;;;;-1:-1:-1;;;52258:82:0;;11761:2:1;52258:82:0;;;11743:21:1;11800:2;11780:18;;;11773:30;11839;11819:18;;;11812:58;11887:18;;52258:82:0;11559:352:1;52258:82:0;52370:13;;52361:6;:22;52353:60;;;;-1:-1:-1;;;52353:60:0;;12118:2:1;52353:60:0;;;12100:21:1;12157:2;12137:18;;;12130:30;12196:27;12176:18;;;12169:55;12241:18;;52353:60:0;11916:349:1;52353:60:0;52455:6;52447:5;;:14;;;;:::i;:::-;52434:9;:27;52426:59;;;;-1:-1:-1;;;52426:59:0;;12472:2:1;52426:59:0;;;12454:21:1;12511:2;12491:18;;;12484:30;-1:-1:-1;;;12530:18:1;;;12523:49;12589:18;;52426:59:0;12270:343:1;52426:59:0;52517:6;52498:15;;:25;;;;;;;:::i;:::-;;;;;;;;52536:35;52542:10;52554:6;52536:35;;;;;;;;;;;;52566:4;52536:5;:35::i;:::-;52071:510;:::o;31109:1007::-;31198:7;31234:16;31244:5;31234:9;:16::i;:::-;31226:5;:24;31218:71;;;;-1:-1:-1;;;31218:71:0;;12820:2:1;31218:71:0;;;12802:21:1;12859:2;12839:18;;;12832:30;12898:34;12878:18;;;12871:62;-1:-1:-1;;;12949:18:1;;;12942:32;12991:19;;31218:71:0;12618:398:1;31218:71:0;31300:22;30525:12;;;31300:22;;31563:466;31583:14;31579:1;:18;31563:466;;;31623:31;31657:14;;;:11;:14;;;;;;;;;31623:48;;;;;;;;;-1:-1:-1;;;;;31623:48:0;;;;;-1:-1:-1;;;31623:48:0;;;;;;;;;;;;31694:28;31690:111;;31767:14;;;-1:-1:-1;31690:111:0;31844:5;-1:-1:-1;;;;;31823:26:0;:17;-1:-1:-1;;;;;31823:26:0;;31819:195;;;31893:5;31878:11;:20;31874:85;;;-1:-1:-1;31934:1:0;-1:-1:-1;31927:8:0;;-1:-1:-1;;;31927:8:0;31874:85;31981:13;;;;;31819:195;-1:-1:-1;31599:3:0;;31563:466;;;-1:-1:-1;32052:56:0;;-1:-1:-1;;;32052:56:0;;13223:2:1;32052:56:0;;;13205:21:1;13262:2;13242:18;;;13235:30;13301:34;13281:18;;;13274:62;-1:-1:-1;;;13352:18:1;;;13345:44;13406:19;;32052:56:0;13021:410:1;53484:192:0;48763:6;;-1:-1:-1;;;;;48763:6:0;28508:10;48910:23;48902:68;;;;-1:-1:-1;;;48902:68:0;;;;;;;:::i;:::-;53559:82:::1;::::0;53541:12:::1;::::0;53567:10:::1;::::0;53605:21:::1;::::0;53541:12;53559:82;53541:12;53559:82;53605:21;53567:10;53559:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53540:101;;;53660:7;53652:16;;;::::0;::::1;36745:177:::0;36875:39;36892:4;36898:2;36902:7;36875:39;;;;;;;;;;;;:16;:39::i;30622:187::-;30689:7;30525:12;;30717:5;:21;30709:69;;;;-1:-1:-1;;;30709:69:0;;13848:2:1;30709:69:0;;;13830:21:1;13887:2;13867:18;;;13860:30;13926:34;13906:18;;;13899:62;-1:-1:-1;;;13977:18:1;;;13970:33;14020:19;;30709:69:0;13646:399:1;30709:69:0;-1:-1:-1;30796:5:0;30622:187::o;52697:98::-;48763:6;;-1:-1:-1;;;;;48763:6:0;28508:10;48910:23;48902:68;;;;-1:-1:-1;;;48902:68:0;;;;;;;:::i;:::-;52771:14:::1;:7;52781:4:::0;;52771:14:::1;:::i;33883:124::-:0;33947:7;33974:20;33986:7;33974:11;:20::i;:::-;:25;;33883:124;-1:-1:-1;;33883:124:0:o;50449:40::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32624:221::-;32688:7;-1:-1:-1;;;;;32716:19:0;;32708:75;;;;-1:-1:-1;;;32708:75:0;;14252:2:1;32708:75:0;;;14234:21:1;14291:2;14271:18;;;14264:30;14330:34;14310:18;;;14303:62;-1:-1:-1;;;14381:18:1;;;14374:41;14432:19;;32708:75:0;14050:407:1;32708:75:0;-1:-1:-1;;;;;;32809:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32809:27:0;;32624:221::o;49341:103::-;48763:6;;-1:-1:-1;;;;;48763:6:0;28508:10;48910:23;48902:68;;;;-1:-1:-1;;;48902:68:0;;;;;;;:::i;:::-;49406:30:::1;49433:1;49406:18;:30::i;:::-;49341:103::o:0;52909:90::-;48763:6;;-1:-1:-1;;;;;48763:6:0;28508:10;48910:23;48902:68;;;;-1:-1:-1;;;48902:68:0;;;;;;;:::i;:::-;52975:5:::1;:14:::0;52909:90::o;34243:104::-;34299:13;34332:7;34325:14;;;;;:::i;53137:114::-;48763:6;;-1:-1:-1;;;;;48763:6:0;28508:10;48910:23;48902:68;;;;-1:-1:-1;;;48902:68:0;;;;;;;:::i;:::-;53215:11:::1;:26:::0;53137:114::o;35922:288::-;-1:-1:-1;;;;;36017:24:0;;28508:10;36017:24;;36009:63;;;;-1:-1:-1;;;36009:63:0;;14664:2:1;36009:63:0;;;14646:21:1;14703:2;14683:18;;;14676:30;14742:28;14722:18;;;14715:56;14788:18;;36009:63:0;14462:350:1;36009:63:0;28508:10;36085:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36085:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36085:53:0;;;;;;;;;;36154:48;;540:41:1;;;36085:42:0;;28508:10;36154:48;;513:18:1;36154:48:0;;;;;;;35922:288;;:::o;36993:355::-;37152:28;37162:4;37168:2;37172:7;37152:9;:28::i;:::-;37213:48;37236:4;37242:2;37246:7;37255:5;37213:22;:48::i;:::-;37191:149;;;;-1:-1:-1;;;37191:149:0;;;;;;;:::i;:::-;36993:355;;;;:::o;52803:98::-;48763:6;;-1:-1:-1;;;;;48763:6:0;28508:10;48910:23;48902:68;;;;-1:-1:-1;;;48902:68:0;;;;;;;:::i;:::-;52870:12:::1;:21:::0;;-1:-1:-1;;52870:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52803:98::o;34418:335::-;34491:13;34525:16;34533:7;37660:4;37694:12;-1:-1:-1;37684:22:0;37603:111;34525:16;34517:76;;;;-1:-1:-1;;;34517:76:0;;15439:2:1;34517:76:0;;;15421:21:1;15478:2;15458:18;;;15451:30;15517:34;15497:18;;;15490:62;-1:-1:-1;;;15568:18:1;;;15561:45;15623:19;;34517:76:0;15237:411:1;34517:76:0;34606:21;34630:10;:8;:10::i;:::-;34606:34;;34664:7;34658:21;34683:1;34658:26;;:87;;;;;;;;;;;;;;;;;34711:7;34720:18;:7;:16;:18::i;:::-;34694:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34658:87;34651:94;34418:335;-1:-1:-1;;;34418:335:0:o;49599:201::-;48763:6;;-1:-1:-1;;;;;48763:6:0;28508:10;48910:23;48902:68;;;;-1:-1:-1;;;48902:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49688:22:0;::::1;49680:73;;;::::0;-1:-1:-1;;;49680:73:0;;16330:2:1;49680:73:0::1;::::0;::::1;16312:21:1::0;16369:2;16349:18;;;16342:30;16408:34;16388:18;;;16381:62;-1:-1:-1;;;16459:18:1;;;16452:36;16505:19;;49680:73:0::1;16128:402:1::0;49680:73:0::1;49764:28;49783:8;49764:18;:28::i;42523:196::-:0;42638:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42638:29:0;-1:-1:-1;;;;;42638:29:0;;;;;;;;;42683:28;;42638:24;;42683:28;;;;;;;42523:196;;;:::o;38189:163::-;38312:32;38318:2;38322:8;38332:5;38339:4;38312:5;:32::i;40403:2002::-;40518:35;40556:20;40568:7;40556:11;:20::i;:::-;40631:18;;40518:58;;-1:-1:-1;40589:22:0;;-1:-1:-1;;;;;40615:34:0;28508:10;-1:-1:-1;;;;;40615:34:0;;:87;;;-1:-1:-1;28508:10:0;40666:20;40678:7;40666:11;:20::i;:::-;-1:-1:-1;;;;;40666:36:0;;40615:87;:154;;;-1:-1:-1;40736:18:0;;40719:50;;28508:10;36281:164;:::i;40719:50::-;40589:181;;40791:17;40783:80;;;;-1:-1:-1;;;40783:80:0;;16737:2:1;40783:80:0;;;16719:21:1;16776:2;16756:18;;;16749:30;16815:34;16795:18;;;16788:62;-1:-1:-1;;;16866:18:1;;;16859:48;16924:19;;40783:80:0;16535:414:1;40783:80:0;40906:4;-1:-1:-1;;;;;40884:26:0;:13;:18;;;-1:-1:-1;;;;;40884:26:0;;40876:77;;;;-1:-1:-1;;;40876:77:0;;17156:2:1;40876:77:0;;;17138:21:1;17195:2;17175:18;;;17168:30;17234:34;17214:18;;;17207:62;-1:-1:-1;;;17285:18:1;;;17278:36;17331:19;;40876:77:0;16954:402:1;40876:77:0;-1:-1:-1;;;;;40972:16:0;;40964:66;;;;-1:-1:-1;;;40964:66:0;;17563:2:1;40964:66:0;;;17545:21:1;17602:2;17582:18;;;17575:30;17641:34;17621:18;;;17614:62;-1:-1:-1;;;17692:18:1;;;17685:35;17737:19;;40964:66:0;17361:401:1;40964:66:0;41151:49;41168:1;41172:7;41181:13;:18;;;41151:8;:49::i;:::-;-1:-1:-1;;;;;41496:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;41496:31:0;;;-1:-1:-1;;;;;41496:31:0;;;-1:-1:-1;;41496:31:0;;;;;;;41542:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41542:29:0;;;;;;;;;;;;;41588:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;41633:61:0;;;;-1:-1:-1;;;41678:15:0;41633:61;;;;;;41968:11;;;41998:24;;;;;:29;41968:11;;41998:29;41994:295;;42066:20;42074:11;37660:4;37694:12;-1:-1:-1;37684:22:0;37603:111;42066:20;42062:212;;;42143:18;;;42111:24;;;:11;:24;;;;;;;;:50;;42226:28;;;;42184:70;;-1:-1:-1;;;42184:70:0;-1:-1:-1;;;;;;42184:70:0;;;-1:-1:-1;;;;;42111:50:0;;;42184:70;;;;;;;42062:212;41471:829;42336:7;42332:2;-1:-1:-1;;;;;42317:27:0;42326:4;-1:-1:-1;;;;;42317:27:0;;;;;;;;;;;42355:42;40507:1898;;40403:2002;;;:::o;38611:1538::-;38750:20;38773:12;-1:-1:-1;;;;;38804:16:0;;38796:62;;;;-1:-1:-1;;;38796:62:0;;17969:2:1;38796:62:0;;;17951:21:1;18008:2;17988:18;;;17981:30;18047:34;18027:18;;;18020:62;-1:-1:-1;;;18098:18:1;;;18091:31;18139:19;;38796:62:0;17767:397:1;38796:62:0;38877:13;38869:66;;;;-1:-1:-1;;;38869:66:0;;18371:2:1;38869:66:0;;;18353:21:1;18410:2;18390:18;;;18383:30;18449:34;18429:18;;;18422:62;-1:-1:-1;;;18500:18:1;;;18493:38;18548:19;;38869:66:0;18169:404:1;38869:66:0;-1:-1:-1;;;;;39287:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;39287:45:0;;-1:-1:-1;;;;;39287:45:0;;;;;;;;;;39347:50;;;;;;;;;;;;;;39414:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;39464:66:0;;;;-1:-1:-1;;;39514:15:0;39464:66;;;;;;;39414:25;;39599:415;39619:8;39615:1;:12;39599:415;;;39658:38;;39683:12;;-1:-1:-1;;;;;39658:38:0;;;39675:1;;39658:38;;39675:1;;39658:38;39719:4;39715:249;;;39782:59;39813:1;39817:2;39821:12;39835:5;39782:22;:59::i;:::-;39748:196;;;;-1:-1:-1;;;39748:196:0;;;;;;;:::i;:::-;39984:14;;;;;39629:3;39599:415;;;-1:-1:-1;40030:12:0;:27;40081:60;36993:355;33284:537;-1:-1:-1;;;;;;;;;;;;;;;;;33387:16:0;33395:7;37660:4;37694:12;-1:-1:-1;37684:22:0;37603:111;33387:16;33379:71;;;;-1:-1:-1;;;33379:71:0;;18780:2:1;33379:71:0;;;18762:21:1;18819:2;18799:18;;;18792:30;18858:34;18838:18;;;18831:62;-1:-1:-1;;;18909:18:1;;;18902:40;18959:19;;33379:71:0;18578:406:1;33379:71:0;33508:7;33488:245;33555:31;33589:17;;;:11;:17;;;;;;;;;33555:51;;;;;;;;;-1:-1:-1;;;;;33555:51:0;;;;;-1:-1:-1;;;33555:51:0;;;;;;;;;;;;33629:28;33625:93;;33689:9;33284:537;-1:-1:-1;;;33284:537:0:o;33625:93::-;-1:-1:-1;;;33528:6:0;33488:245;;49960:191;50053:6;;;-1:-1:-1;;;;;50070:17:0;;;-1:-1:-1;;;;;;50070:17:0;;;;;;;50103:40;;50053:6;;;50070:17;50053:6;;50103:40;;50034:16;;50103:40;50023:128;49960:191;:::o;43284:804::-;43439:4;-1:-1:-1;;;;;43460:13:0;;3963:19;:23;43456:625;;43496:72;;-1:-1:-1;;;43496:72:0;;-1:-1:-1;;;;;43496:36:0;;;;;:72;;28508:10;;43547:4;;43553:7;;43562:5;;43496:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43496:72:0;;;;;;;;-1:-1:-1;;43496:72:0;;;;;;;;;;;;:::i;:::-;;;43492:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43742:13:0;;43738:273;;43785:61;;-1:-1:-1;;;43785:61:0;;;;;;;:::i;43738:273::-;43961:6;43955:13;43946:6;43942:2;43938:15;43931:38;43492:534;-1:-1:-1;;;;;;43619:55:0;-1:-1:-1;;;43619:55:0;;-1:-1:-1;43612:62:0;;43456:625;-1:-1:-1;44065:4:0;43456:625;43284:804;;;;;;:::o;52589:100::-;52641:13;52674:7;52667:14;;;;;:::i;676:723::-;732:13;953:10;949:53;;-1:-1:-1;;980:10:0;;;;;;;;;;;;-1:-1:-1;;;980:10:0;;;;;676:723::o;949:53::-;1027:5;1012:12;1068:78;1075:9;;1068:78;;1101:8;;;;:::i;:::-;;-1:-1:-1;1124:10:0;;-1:-1:-1;1132:2:0;1124:10;;:::i;:::-;;;1068:78;;;1156:19;1188:6;1178:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1178:17:0;;1156:39;;1206:154;1213:10;;1206:154;;1240:11;1250:1;1240:11;;:::i;:::-;;-1:-1:-1;1309:10:0;1317:2;1309:5;:10;:::i;:::-;1296:24;;:2;:24;:::i;:::-;1283:39;;1266:6;1273;1266:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1266:56:0;;;;;;;;-1:-1:-1;1337:11:0;1346:2;1337:11;;:::i;:::-;;;1206:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:180::-;1001:6;1054:2;1042:9;1033:7;1029:23;1025:32;1022:52;;;1070:1;1067;1060:12;1022:52;-1:-1:-1;1093:23:1;;942:180;-1:-1:-1;942:180:1:o;1127:258::-;1199:1;1209:113;1223:6;1220:1;1217:13;1209:113;;;1299:11;;;1293:18;1280:11;;;1273:39;1245:2;1238:10;1209:113;;;1340:6;1337:1;1334:13;1331:48;;;-1:-1:-1;;1375:1:1;1357:16;;1350:27;1127:258::o;1390:::-;1432:3;1470:5;1464:12;1497:6;1492:3;1485:19;1513:63;1569:6;1562:4;1557:3;1553:14;1546:4;1539:5;1535:16;1513:63;:::i;:::-;1630:2;1609:15;-1:-1:-1;;1605:29:1;1596:39;;;;1637:4;1592:50;;1390:258;-1:-1:-1;;1390:258:1:o;1653:220::-;1802:2;1791:9;1784:21;1765:4;1822:45;1863:2;1852:9;1848:18;1840:6;1822:45;:::i;2086:131::-;-1:-1:-1;;;;;2161:31:1;;2151:42;;2141:70;;2207:1;2204;2197:12;2222:315;2290:6;2298;2351:2;2339:9;2330:7;2326:23;2322:32;2319:52;;;2367:1;2364;2357:12;2319:52;2406:9;2393:23;2425:31;2450:5;2425:31;:::i;:::-;2475:5;2527:2;2512:18;;;;2499:32;;-1:-1:-1;;;2222:315:1:o;2542:689::-;2634:6;2642;2650;2703:2;2691:9;2682:7;2678:23;2674:32;2671:52;;;2719:1;2716;2709:12;2671:52;2759:9;2746:23;2788:18;2829:2;2821:6;2818:14;2815:34;;;2845:1;2842;2835:12;2815:34;2883:6;2872:9;2868:22;2858:32;;2928:7;2921:4;2917:2;2913:13;2909:27;2899:55;;2950:1;2947;2940:12;2899:55;2990:2;2977:16;3016:2;3008:6;3005:14;3002:34;;;3032:1;3029;3022:12;3002:34;3087:7;3080:4;3070:6;3067:1;3063:14;3059:2;3055:23;3051:34;3048:47;3045:67;;;3108:1;3105;3098:12;3045:67;3139:4;3131:13;;;;-1:-1:-1;3163:6:1;-1:-1:-1;3188:37:1;;3204:20;;;-1:-1:-1;3188:37:1;:::i;:::-;3178:47;;2542:689;;;;;:::o;3418:456::-;3495:6;3503;3511;3564:2;3552:9;3543:7;3539:23;3535:32;3532:52;;;3580:1;3577;3570:12;3532:52;3619:9;3606:23;3638:31;3663:5;3638:31;:::i;:::-;3688:5;-1:-1:-1;3745:2:1;3730:18;;3717:32;3758:33;3717:32;3758:33;:::i;:::-;3418:456;;3810:7;;-1:-1:-1;;;3864:2:1;3849:18;;;;3836:32;;3418:456::o;3879:592::-;3950:6;3958;4011:2;3999:9;3990:7;3986:23;3982:32;3979:52;;;4027:1;4024;4017:12;3979:52;4067:9;4054:23;4096:18;4137:2;4129:6;4126:14;4123:34;;;4153:1;4150;4143:12;4123:34;4191:6;4180:9;4176:22;4166:32;;4236:7;4229:4;4225:2;4221:13;4217:27;4207:55;;4258:1;4255;4248:12;4207:55;4298:2;4285:16;4324:2;4316:6;4313:14;4310:34;;;4340:1;4337;4330:12;4310:34;4385:7;4380:2;4371:6;4367:2;4363:15;4359:24;4356:37;4353:57;;;4406:1;4403;4396:12;4353:57;4437:2;4429:11;;;;;4459:6;;-1:-1:-1;3879:592:1;;-1:-1:-1;;;;3879:592:1:o;4476:247::-;4535:6;4588:2;4576:9;4567:7;4563:23;4559:32;4556:52;;;4604:1;4601;4594:12;4556:52;4643:9;4630:23;4662:31;4687:5;4662:31;:::i;4728:315::-;4793:6;4801;4854:2;4842:9;4833:7;4829:23;4825:32;4822:52;;;4870:1;4867;4860:12;4822:52;4909:9;4896:23;4928:31;4953:5;4928:31;:::i;:::-;4978:5;-1:-1:-1;5002:35:1;5033:2;5018:18;;5002:35;:::i;:::-;4992:45;;4728:315;;;;;:::o;5048:127::-;5109:10;5104:3;5100:20;5097:1;5090:31;5140:4;5137:1;5130:15;5164:4;5161:1;5154:15;5180:1266;5275:6;5283;5291;5299;5352:3;5340:9;5331:7;5327:23;5323:33;5320:53;;;5369:1;5366;5359:12;5320:53;5408:9;5395:23;5427:31;5452:5;5427:31;:::i;:::-;5477:5;-1:-1:-1;5534:2:1;5519:18;;5506:32;5547:33;5506:32;5547:33;:::i;:::-;5599:7;-1:-1:-1;5653:2:1;5638:18;;5625:32;;-1:-1:-1;5708:2:1;5693:18;;5680:32;5731:18;5761:14;;;5758:34;;;5788:1;5785;5778:12;5758:34;5826:6;5815:9;5811:22;5801:32;;5871:7;5864:4;5860:2;5856:13;5852:27;5842:55;;5893:1;5890;5883:12;5842:55;5929:2;5916:16;5951:2;5947;5944:10;5941:36;;;5957:18;;:::i;:::-;6032:2;6026:9;6000:2;6086:13;;-1:-1:-1;;6082:22:1;;;6106:2;6078:31;6074:40;6062:53;;;6130:18;;;6150:22;;;6127:46;6124:72;;;6176:18;;:::i;:::-;6216:10;6212:2;6205:22;6251:2;6243:6;6236:18;6291:7;6286:2;6281;6277;6273:11;6269:20;6266:33;6263:53;;;6312:1;6309;6302:12;6263:53;6368:2;6363;6359;6355:11;6350:2;6342:6;6338:15;6325:46;6413:1;6408:2;6403;6395:6;6391:15;6387:24;6380:35;6434:6;6424:16;;;;;;;5180:1266;;;;;;;:::o;6451:388::-;6519:6;6527;6580:2;6568:9;6559:7;6555:23;6551:32;6548:52;;;6596:1;6593;6586:12;6548:52;6635:9;6622:23;6654:31;6679:5;6654:31;:::i;:::-;6704:5;-1:-1:-1;6761:2:1;6746:18;;6733:32;6774:33;6733:32;6774:33;:::i;:::-;6826:7;6816:17;;;6451:388;;;;;:::o;6844:356::-;7046:2;7028:21;;;7065:18;;;7058:30;7124:34;7119:2;7104:18;;7097:62;7191:2;7176:18;;6844:356::o;7205:380::-;7284:1;7280:12;;;;7327;;;7348:61;;7402:4;7394:6;7390:17;7380:27;;7348:61;7455:2;7447:6;7444:14;7424:18;7421:38;7418:161;;;7501:10;7496:3;7492:20;7489:1;7482:31;7536:4;7533:1;7526:15;7564:4;7561:1;7554:15;7418:161;;7205:380;;;:::o;8833:127::-;8894:10;8889:3;8885:20;8882:1;8875:31;8925:4;8922:1;8915:15;8949:4;8946:1;8939:15;8965:128;9005:3;9036:1;9032:6;9029:1;9026:13;9023:39;;;9042:18;;:::i;:::-;-1:-1:-1;9078:9:1;;8965:128::o;9804:168::-;9844:7;9910:1;9906;9902:6;9898:14;9895:1;9892:21;9887:1;9880:9;9873:17;9869:45;9866:71;;;9917:18;;:::i;:::-;-1:-1:-1;9957:9:1;;9804:168::o;9977:127::-;10038:10;10033:3;10029:20;10026:1;10019:31;10069:4;10066:1;10059:15;10093:4;10090:1;10083:15;10109:251;10179:6;10232:2;10220:9;10211:7;10207:23;10203:32;10200:52;;;10248:1;10245;10238:12;10200:52;10280:9;10274:16;10299:31;10324:5;10299:31;:::i;10719:486::-;10908:2;10890:21;;;10927:18;;10920:34;;;-1:-1:-1;;;;;;10966:31:1;;10963:51;;;11010:1;11007;11000:12;10963:51;11044:6;11041:1;11037:14;11101:6;11093;11088:2;11077:9;11073:18;11060:48;11178:1;11131:22;;11155:2;11127:31;11167:13;;;-1:-1:-1;11127:31:1;10719:486;-1:-1:-1;;10719:486:1:o;14817:415::-;15019:2;15001:21;;;15058:2;15038:18;;;15031:30;15097:34;15092:2;15077:18;;15070:62;-1:-1:-1;;;15163:2:1;15148:18;;15141:49;15222:3;15207:19;;14817:415::o;15653:470::-;15832:3;15870:6;15864:13;15886:53;15932:6;15927:3;15920:4;15912:6;15908:17;15886:53;:::i;:::-;16002:13;;15961:16;;;;16024:57;16002:13;15961:16;16058:4;16046:17;;16024:57;:::i;:::-;16097:20;;15653:470;-1:-1:-1;;;;15653:470:1:o;19405:489::-;-1:-1:-1;;;;;19674:15:1;;;19656:34;;19726:15;;19721:2;19706:18;;19699:43;19773:2;19758:18;;19751:34;;;19821:3;19816:2;19801:18;;19794:31;;;19599:4;;19842:46;;19868:19;;19860:6;19842:46;:::i;:::-;19834:54;19405:489;-1:-1:-1;;;;;;19405:489:1:o;19899:249::-;19968:6;20021:2;20009:9;20000:7;19996:23;19992:32;19989:52;;;20037:1;20034;20027:12;19989:52;20069:9;20063:16;20088:30;20112:5;20088:30;:::i;20153:135::-;20192:3;-1:-1:-1;;20213:17:1;;20210:43;;;20233:18;;:::i;:::-;-1:-1:-1;20280:1:1;20269:13;;20153:135::o;20293:127::-;20354:10;20349:3;20345:20;20342:1;20335:31;20385:4;20382:1;20375:15;20409:4;20406:1;20399:15;20425:120;20465:1;20491;20481:35;;20496:18;;:::i;:::-;-1:-1:-1;20530:9:1;;20425:120::o;20550:125::-;20590:4;20618:1;20615;20612:8;20609:34;;;20623:18;;:::i;:::-;-1:-1:-1;20660:9:1;;20550:125::o;20680:112::-;20712:1;20738;20728:35;;20743:18;;:::i;:::-;-1:-1:-1;20777:9:1;;20680:112::o

Swarm Source

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