ETH Price: $3,099.02 (-0.40%)
Gas: 2 Gwei

Token

Zombified (ZOMBIFIED)
 

Overview

Max Total Supply

444 ZOMBIFIED

Holders

258

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
Zombified

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-30
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// 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/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

error NotWhitelisted();

contract Zombified is ERC721A, Ownable {
    bytes32 public root;
	using Strings for uint;

	uint public WL_MINT_PRICE = 0.009 ether;
	uint public MAX_NFT_PER_TRAN = 1;
    uint public MAX_PER_WALLET = 1;
	uint public maxSupply = 444;

    string public cpuPhase = "Unreleased";

    bool public isWhitelistMint = false;
    bool public isMetadataFinal;
    string public _baseURL = "ipfs://bafybeifietfaeutoxzjesncc3wpflfqos247zwyzkfzvivo5kb4qkil6ra/";
	string public prerevealURL = "";
	mapping(address => uint) private _walletMintedCount;

    // Name
	constructor()
	ERC721A('Zombified', 'ZOMBIFIED') {
    }

    function advancePhase(string calldata newPhase) external onlyOwner {
		cpuPhase = newPhase;
	}

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

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function finalizeMetadata() external onlyOwner {
        isMetadataFinal = true;
    }

	function reveal(string memory url) external onlyOwner {
        require(!isMetadataFinal, "Metadata is finalized");
		_baseURL = url;
	}

    function setPrereveal(string memory url) external onlyOwner {
		prerevealURL = url;
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

    function setRoot(bytes32 _root) external onlyOwner {
		root = _root;
	}

	function setPrice(uint newPrice) external onlyOwner {
		WL_MINT_PRICE = newPrice;
	}

    function setWhitelistState(bool value) external onlyOwner {
		isWhitelistMint = value;
	}


    // Splitter
    
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;

        //Dev Wallet
        address _wallet1 = 0xd6e67ce446dC04dcF3F3556B8150F370D4c52A62;
        uint _payable1 = balance * 30 / 100; // 30%
        payable(_wallet1).transfer(_payable1);

        //Founder Wallet
        address _wallet2 = 0x54d2B7Ee2A0A5F27C41d4dC36349de82D57CFa69;
        uint _payable2 = balance * 70 / 100; // 70%
        payable(_wallet2).transfer(_payable2);
    }

    // function withdraw() public onlyOwner {
    //     uint256 balance = address(this).balance;
    //     payable(msg.sender).transfer(balance);
    // }

	function reserveMint(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			'Exceeds max supply'
		);
		_safeMint(to, count);
	}

	function reduceSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

    function setMaxMints(uint newMaxMints) external onlyOwner {
		MAX_PER_WALLET = newMaxMints;
	}

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

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

	function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    function zombifyHuman(bytes32[] memory proof) external payable {
        uint count = 1;
        
        //require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "You are not on the allowlist");
        if (!( isValid( proof, keccak256(abi.encodePacked(msg.sender)) ) )) {
            revert NotWhitelisted();
        }

		require(isWhitelistMint, "Whitelist mint has not started");
		require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit');
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet');

		require(
			msg.value >= count * WL_MINT_PRICE,
			'Ether value sent is not sufficient'
		);

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotWhitelisted","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_PER_TRAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newPhase","type":"string"}],"name":"advancePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"cpuPhase","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalizeMetadata","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":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"uint256","name":"newMaxMints","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setPrereveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"zombifyHuman","outputs":[],"stateMutability":"payable","type":"function"}]

661ff973cafa8000600a9081556001600b819055600c556101bc600d5560c0604052608081905269155b9c995b19585cd95960b21b60a09081526200004891600e91906200018f565b50600f805460ff19169055604080516080810190915260438082526200265e6020830139805162000082916010916020909101906200018f565b50604080516020810191829052600090819052620000a3916011916200018f565b50348015620000b157600080fd5b5060405180604001604052806009815260200168169bdb589a599a595960ba1b815250604051806040016040528060098152602001681693d350925192515160ba1b81525081600290805190602001906200010e9291906200018f565b508051620001249060039060208401906200018f565b505060016000555062000137336200013d565b62000272565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019d9062000235565b90600052602060002090601f016020900481019282620001c157600085556200020c565b82601f10620001dc57805160ff19168380011785556200020c565b828001600101855582156200020c579182015b828111156200020c578251825591602001919060010190620001ef565b506200021a9291506200021e565b5090565b5b808211156200021a57600081556001016200021f565b600181811c908216806200024a57607f821691505b602082108114156200026c57634e487b7160e01b600052602260045260246000fd5b50919050565b6123dc80620002826000396000f3fe6080604052600436106102515760003560e01c806391b7f5ed11610139578063d5abeb01116100b6578063e985e9c51161007a578063e985e9c51461069e578063ebf0c717146106e7578063f2fde38b146106fd578063f4a560a51461071d578063f9e0edae14610732578063fddcb5ea1461074757600080fd5b8063d5abeb011461061c578063d821048214610632578063dab5f34014610647578063e193e7e214610667578063e8a3d4851461067d57600080fd5b8063b3773584116100fd578063b377358414610582578063b88d4fde146105a2578063b8a20ed0146105c2578063c754da33146105e2578063c87b56dd146105fc57600080fd5b806391b7f5ed146104fa57806395d89b411461051a578063a22cb4651461052f578063a3cac7b81461054f578063b0ea18021461056257600080fd5b806342842e0e116101d2578063715018a611610196578063715018a61461045157806379c9cb7b14610466578063806234441461048657806386ffb1bb146104a657806388089f0b146104c65780638da5cb5b146104dc57600080fd5b806342842e0e146103bc5780634c261247146103dc578063616ede45146103fc5780636352211e1461041157806370a082311461043157600080fd5b80630f2cdd6c116102195780630f2cdd6c1461032657806318160ddd1461034a5780631df0bb8a1461036757806323b872dd146103875780633ccfd60b146103a757600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e55780630de76de414610307575b600080fd5b34801561026257600080fd5b5061027661027136600461202d565b61077d565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107cf565b60405161028291906121c8565b3480156102b957600080fd5b506102cd6102c8366004612014565b610861565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004611f57565b6108a5565b005b34801561031357600080fd5b50600f5461027690610100900460ff1681565b34801561033257600080fd5b5061033c600c5481565b604051908152602001610282565b34801561035657600080fd5b50600154600054036000190161033c565b34801561037357600080fd5b50610305610382366004611ff9565b61092c565b34801561039357600080fd5b506103056103a2366004611e76565b610972565b3480156103b357600080fd5b5061030561097d565b3480156103c857600080fd5b506103056103d7366004611e76565b610a7f565b3480156103e857600080fd5b506103056103f73660046120d8565b610a9a565b34801561040857600080fd5b506102a0610b2b565b34801561041d57600080fd5b506102cd61042c366004612014565b610bb9565b34801561043d57600080fd5b5061033c61044c366004611e28565b610bcb565b34801561045d57600080fd5b50610305610c19565b34801561047257600080fd5b50610305610481366004612014565b610c4f565b34801561049257600080fd5b506103056104a1366004612014565b610c7e565b3480156104b257600080fd5b506103056104c13660046120d8565b610cad565b3480156104d257600080fd5b5061033c600a5481565b3480156104e857600080fd5b506008546001600160a01b03166102cd565b34801561050657600080fd5b50610305610515366004612014565b610cea565b34801561052657600080fd5b506102a0610d19565b34801561053b57600080fd5b5061030561054a366004611f2d565b610d28565b61030561055d366004611f81565b610dbe565b34801561056e57600080fd5b5061030561057d366004611f57565b611024565b34801561058e57600080fd5b5061030561059d366004612067565b6110b6565b3480156105ae57600080fd5b506103056105bd366004611eb2565b6110ec565b3480156105ce57600080fd5b506102766105dd366004611fb5565b611136565b3480156105ee57600080fd5b50600f546102769060ff1681565b34801561060857600080fd5b506102a0610617366004612014565b61114c565b34801561062857600080fd5b5061033c600d5481565b34801561063e57600080fd5b506102a0611292565b34801561065357600080fd5b50610305610662366004612014565b61129f565b34801561067357600080fd5b5061033c600b5481565b34801561068957600080fd5b506040805160208101909152600081526102a0565b3480156106aa57600080fd5b506102766106b9366004611e43565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106f357600080fd5b5061033c60095481565b34801561070957600080fd5b50610305610718366004611e28565b6112ce565b34801561072957600080fd5b50610305611369565b34801561073e57600080fd5b506102a06113a4565b34801561075357600080fd5b5061033c610762366004611e28565b6001600160a01b031660009081526012602052604090205490565b60006001600160e01b031982166380ac58cd60e01b14806107ae57506001600160e01b03198216635b5e139f60e01b145b806107c957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107de906122ce565b80601f016020809104026020016040519081016040528092919081815260200182805461080a906122ce565b80156108575780601f1061082c57610100808354040283529160200191610857565b820191906000526020600020905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b600061086c826113b1565b610889576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b082610bb9565b9050806001600160a01b0316836001600160a01b031614156108e55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461091c576108ff81336106b9565b61091c576040516367d9dca160e11b815260040160405180910390fd5b6109278383836113ea565b505050565b6008546001600160a01b0316331461095f5760405162461bcd60e51b8152600401610956906121db565b60405180910390fd5b600f805460ff1916911515919091179055565b610927838383611446565b6008546001600160a01b031633146109a75760405162461bcd60e51b8152600401610956906121db565b4773d6e67ce446dc04dcf3f3556b8150f370d4c52a62600060646109cc84601e61226c565b6109d69190612258565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a0f573d6000803e3d6000fd5b507354d2b7ee2a0a5f27c41d4dc36349de82d57cfa6960006064610a3486604661226c565b610a3e9190612258565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a77573d6000803e3d6000fd5b505050505050565b610927838383604051806020016040528060008152506110ec565b6008546001600160a01b03163314610ac45760405162461bcd60e51b8152600401610956906121db565b600f54610100900460ff1615610b145760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b6044820152606401610956565b8051610b27906010906020840190611c13565b5050565b600e8054610b38906122ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610b64906122ce565b8015610bb15780601f10610b8657610100808354040283529160200191610bb1565b820191906000526020600020905b815481529060010190602001808311610b9457829003601f168201915b505050505081565b6000610bc482611633565b5192915050565b60006001600160a01b038216610bf4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c435760405162461bcd60e51b8152600401610956906121db565b610c4d6000611755565b565b6008546001600160a01b03163314610c795760405162461bcd60e51b8152600401610956906121db565b600c55565b6008546001600160a01b03163314610ca85760405162461bcd60e51b8152600401610956906121db565b600d55565b6008546001600160a01b03163314610cd75760405162461bcd60e51b8152600401610956906121db565b8051610b27906011906020840190611c13565b6008546001600160a01b03163314610d145760405162461bcd60e51b8152600401610956906121db565b600a55565b6060600380546107de906122ce565b6001600160a01b038216331415610d525760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040516bffffffffffffffffffffffff193360601b166020820152600190610e0090839060340160405160208183030381529060405280519060200120611136565b610e1d57604051630b094f2760e31b815260040160405180910390fd5b600f5460ff16610e6f5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f74207374617274656400006044820152606401610956565b600b54811115610ecb5760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b6064820152608401610956565b600d5481610edc6000546000190190565b610ee69190612240565b1115610f295760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610956565b600c5433600090815260126020526040902054610f47908390612240565b1115610f8e5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610956565b600a54610f9b908261226c565b341015610ff55760405162461bcd60e51b815260206004820152602260248201527f45746865722076616c75652073656e74206973206e6f742073756666696369656044820152611b9d60f21b6064820152608401610956565b3360009081526012602052604081208054839290611014908490612240565b90915550610b27905033826117a7565b6008546001600160a01b0316331461104e5760405162461bcd60e51b8152600401610956906121db565b600d548161105f6000546000190190565b6110699190612240565b11156110ac5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610956565b610b2782826117a7565b6008546001600160a01b031633146110e05760405162461bcd60e51b8152600401610956906121db565b610927600e8383611c97565b6110f7848484611446565b6001600160a01b0383163b1561113057611113848484846117c1565b611130576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600061114583600954846118b9565b9392505050565b6060611157826113b1565b6111bb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610956565b60006111c56118cf565b511161125b57601180546111d8906122ce565b80601f0160208091040260200160405190810160405280929190818152602001828054611204906122ce565b80156112515780601f1061122657610100808354040283529160200191611251565b820191906000526020600020905b81548152906001019060200180831161123457829003601f168201915b50505050506107c9565b6112636118cf565b61126c836118de565b60405160200161127d92919061214c565b60405160208183030381529060405292915050565b60118054610b38906122ce565b6008546001600160a01b031633146112c95760405162461bcd60e51b8152600401610956906121db565b600955565b6008546001600160a01b031633146112f85760405162461bcd60e51b8152600401610956906121db565b6001600160a01b03811661135d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610956565b61136681611755565b50565b6008546001600160a01b031633146113935760405162461bcd60e51b8152600401610956906121db565b600f805461ff001916610100179055565b60108054610b38906122ce565b6000816001111580156113c5575060005482105b80156107c9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061145182611633565b9050836001600160a01b031681600001516001600160a01b0316146114885760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114a657506114a685336106b9565b806114c15750336114b684610861565b6001600160a01b0316145b9050806114e157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661150857604051633a954ecd60e21b815260040160405180910390fd5b611514600084876113ea565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115e85760005482146115e857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152818060011161173c5760005481101561173c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061173a5780516001600160a01b0316156116d1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611735579392505050565b6116d1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b278282604051806020016040528060008152506119db565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117f690339089908890889060040161218b565b602060405180830381600087803b15801561181057600080fd5b505af1925050508015611840575060408051601f3d908101601f1916820190925261183d9181019061204a565b60015b61189b573d80801561186e576040519150601f19603f3d011682016040523d82523d6000602084013e611873565b606091505b508051611893576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826118c68584611b9f565b14949350505050565b6060601080546107de906122ce565b6060816119025750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192c578061191681612309565b91506119259050600a83612258565b9150611906565b6000816001600160401b038111156119465761194661237a565b6040519080825280601f01601f191660200182016040528015611970576020820181803683370190505b5090505b84156118b15761198560018361228b565b9150611992600a86612324565b61199d906030612240565b60f81b8183815181106119b2576119b2612364565b60200101906001600160f81b031916908160001a9053506119d4600a86612258565b9450611974565b6000546001600160a01b038416611a0457604051622e076360e81b815260040160405180910390fd5b82611a225760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611b4a575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b1360008784806001019550876117c1565b611b30576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ac8578260005414611b4557600080fd5b611b8f565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b4b575b5060009081556111309085838684565b600081815b8451811015611c0b576000858281518110611bc157611bc1612364565b60200260200101519050808311611be75760008381526020829052604090209250611bf8565b600081815260208490526040902092505b5080611c0381612309565b915050611ba4565b509392505050565b828054611c1f906122ce565b90600052602060002090601f016020900481019282611c415760008555611c87565b82601f10611c5a57805160ff1916838001178555611c87565b82800160010185558215611c87579182015b82811115611c87578251825591602001919060010190611c6c565b50611c93929150611d0b565b5090565b828054611ca3906122ce565b90600052602060002090601f016020900481019282611cc55760008555611c87565b82601f10611cde5782800160ff19823516178555611c87565b82800160010185558215611c87579182015b82811115611c87578235825591602001919060010190611cf0565b5b80821115611c935760008155600101611d0c565b60006001600160401b03831115611d3957611d3961237a565b611d4c601f8401601f1916602001612210565b9050828152838383011115611d6057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611d8e57600080fd5b919050565b600082601f830112611da457600080fd5b813560206001600160401b03821115611dbf57611dbf61237a565b8160051b611dce828201612210565b838152828101908684018388018501891015611de957600080fd5b600093505b85841015611e0c578035835260019390930192918401918401611dee565b50979650505050505050565b80358015158114611d8e57600080fd5b600060208284031215611e3a57600080fd5b61114582611d77565b60008060408385031215611e5657600080fd5b611e5f83611d77565b9150611e6d60208401611d77565b90509250929050565b600080600060608486031215611e8b57600080fd5b611e9484611d77565b9250611ea260208501611d77565b9150604084013590509250925092565b60008060008060808587031215611ec857600080fd5b611ed185611d77565b9350611edf60208601611d77565b92506040850135915060608501356001600160401b03811115611f0157600080fd5b8501601f81018713611f1257600080fd5b611f2187823560208401611d20565b91505092959194509250565b60008060408385031215611f4057600080fd5b611f4983611d77565b9150611e6d60208401611e18565b60008060408385031215611f6a57600080fd5b611f7383611d77565b946020939093013593505050565b600060208284031215611f9357600080fd5b81356001600160401b03811115611fa957600080fd5b6118b184828501611d93565b60008060408385031215611fc857600080fd5b82356001600160401b03811115611fde57600080fd5b611fea85828601611d93565b95602094909401359450505050565b60006020828403121561200b57600080fd5b61114582611e18565b60006020828403121561202657600080fd5b5035919050565b60006020828403121561203f57600080fd5b813561114581612390565b60006020828403121561205c57600080fd5b815161114581612390565b6000806020838503121561207a57600080fd5b82356001600160401b038082111561209157600080fd5b818501915085601f8301126120a557600080fd5b8135818111156120b457600080fd5b8660208285010111156120c657600080fd5b60209290920196919550909350505050565b6000602082840312156120ea57600080fd5b81356001600160401b0381111561210057600080fd5b8201601f8101841361211157600080fd5b6118b184823560208401611d20565b600081518084526121388160208601602086016122a2565b601f01601f19169290920160200192915050565b6000835161215e8184602088016122a2565b8351908301906121728183602088016122a2565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121be90830184612120565b9695505050505050565b6020815260006111456020830184612120565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156122385761223861237a565b604052919050565b6000821982111561225357612253612338565b500190565b6000826122675761226761234e565b500490565b600081600019048311821515161561228657612286612338565b500290565b60008282101561229d5761229d612338565b500390565b60005b838110156122bd5781810151838201526020016122a5565b838111156111305750506000910152565b600181811c908216806122e257607f821691505b6020821081141561230357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561231d5761231d612338565b5060010190565b6000826123335761233361234e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461136657600080fdfea26469706673582212202d5316dd8c6a21c7b43734401d630ebc29fe3cdebea18b93f701f7969eb5abb664736f6c63430008070033697066733a2f2f626166796265696669657466616575746f787a6a65736e6363337770666c66716f733234377a77797a6b667a7669766f356b6234716b696c3672612f

Deployed Bytecode

0x6080604052600436106102515760003560e01c806391b7f5ed11610139578063d5abeb01116100b6578063e985e9c51161007a578063e985e9c51461069e578063ebf0c717146106e7578063f2fde38b146106fd578063f4a560a51461071d578063f9e0edae14610732578063fddcb5ea1461074757600080fd5b8063d5abeb011461061c578063d821048214610632578063dab5f34014610647578063e193e7e214610667578063e8a3d4851461067d57600080fd5b8063b3773584116100fd578063b377358414610582578063b88d4fde146105a2578063b8a20ed0146105c2578063c754da33146105e2578063c87b56dd146105fc57600080fd5b806391b7f5ed146104fa57806395d89b411461051a578063a22cb4651461052f578063a3cac7b81461054f578063b0ea18021461056257600080fd5b806342842e0e116101d2578063715018a611610196578063715018a61461045157806379c9cb7b14610466578063806234441461048657806386ffb1bb146104a657806388089f0b146104c65780638da5cb5b146104dc57600080fd5b806342842e0e146103bc5780634c261247146103dc578063616ede45146103fc5780636352211e1461041157806370a082311461043157600080fd5b80630f2cdd6c116102195780630f2cdd6c1461032657806318160ddd1461034a5780631df0bb8a1461036757806323b872dd146103875780633ccfd60b146103a757600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e55780630de76de414610307575b600080fd5b34801561026257600080fd5b5061027661027136600461202d565b61077d565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107cf565b60405161028291906121c8565b3480156102b957600080fd5b506102cd6102c8366004612014565b610861565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004611f57565b6108a5565b005b34801561031357600080fd5b50600f5461027690610100900460ff1681565b34801561033257600080fd5b5061033c600c5481565b604051908152602001610282565b34801561035657600080fd5b50600154600054036000190161033c565b34801561037357600080fd5b50610305610382366004611ff9565b61092c565b34801561039357600080fd5b506103056103a2366004611e76565b610972565b3480156103b357600080fd5b5061030561097d565b3480156103c857600080fd5b506103056103d7366004611e76565b610a7f565b3480156103e857600080fd5b506103056103f73660046120d8565b610a9a565b34801561040857600080fd5b506102a0610b2b565b34801561041d57600080fd5b506102cd61042c366004612014565b610bb9565b34801561043d57600080fd5b5061033c61044c366004611e28565b610bcb565b34801561045d57600080fd5b50610305610c19565b34801561047257600080fd5b50610305610481366004612014565b610c4f565b34801561049257600080fd5b506103056104a1366004612014565b610c7e565b3480156104b257600080fd5b506103056104c13660046120d8565b610cad565b3480156104d257600080fd5b5061033c600a5481565b3480156104e857600080fd5b506008546001600160a01b03166102cd565b34801561050657600080fd5b50610305610515366004612014565b610cea565b34801561052657600080fd5b506102a0610d19565b34801561053b57600080fd5b5061030561054a366004611f2d565b610d28565b61030561055d366004611f81565b610dbe565b34801561056e57600080fd5b5061030561057d366004611f57565b611024565b34801561058e57600080fd5b5061030561059d366004612067565b6110b6565b3480156105ae57600080fd5b506103056105bd366004611eb2565b6110ec565b3480156105ce57600080fd5b506102766105dd366004611fb5565b611136565b3480156105ee57600080fd5b50600f546102769060ff1681565b34801561060857600080fd5b506102a0610617366004612014565b61114c565b34801561062857600080fd5b5061033c600d5481565b34801561063e57600080fd5b506102a0611292565b34801561065357600080fd5b50610305610662366004612014565b61129f565b34801561067357600080fd5b5061033c600b5481565b34801561068957600080fd5b506040805160208101909152600081526102a0565b3480156106aa57600080fd5b506102766106b9366004611e43565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106f357600080fd5b5061033c60095481565b34801561070957600080fd5b50610305610718366004611e28565b6112ce565b34801561072957600080fd5b50610305611369565b34801561073e57600080fd5b506102a06113a4565b34801561075357600080fd5b5061033c610762366004611e28565b6001600160a01b031660009081526012602052604090205490565b60006001600160e01b031982166380ac58cd60e01b14806107ae57506001600160e01b03198216635b5e139f60e01b145b806107c957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107de906122ce565b80601f016020809104026020016040519081016040528092919081815260200182805461080a906122ce565b80156108575780601f1061082c57610100808354040283529160200191610857565b820191906000526020600020905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b600061086c826113b1565b610889576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b082610bb9565b9050806001600160a01b0316836001600160a01b031614156108e55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461091c576108ff81336106b9565b61091c576040516367d9dca160e11b815260040160405180910390fd5b6109278383836113ea565b505050565b6008546001600160a01b0316331461095f5760405162461bcd60e51b8152600401610956906121db565b60405180910390fd5b600f805460ff1916911515919091179055565b610927838383611446565b6008546001600160a01b031633146109a75760405162461bcd60e51b8152600401610956906121db565b4773d6e67ce446dc04dcf3f3556b8150f370d4c52a62600060646109cc84601e61226c565b6109d69190612258565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a0f573d6000803e3d6000fd5b507354d2b7ee2a0a5f27c41d4dc36349de82d57cfa6960006064610a3486604661226c565b610a3e9190612258565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a77573d6000803e3d6000fd5b505050505050565b610927838383604051806020016040528060008152506110ec565b6008546001600160a01b03163314610ac45760405162461bcd60e51b8152600401610956906121db565b600f54610100900460ff1615610b145760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b6044820152606401610956565b8051610b27906010906020840190611c13565b5050565b600e8054610b38906122ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610b64906122ce565b8015610bb15780601f10610b8657610100808354040283529160200191610bb1565b820191906000526020600020905b815481529060010190602001808311610b9457829003601f168201915b505050505081565b6000610bc482611633565b5192915050565b60006001600160a01b038216610bf4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c435760405162461bcd60e51b8152600401610956906121db565b610c4d6000611755565b565b6008546001600160a01b03163314610c795760405162461bcd60e51b8152600401610956906121db565b600c55565b6008546001600160a01b03163314610ca85760405162461bcd60e51b8152600401610956906121db565b600d55565b6008546001600160a01b03163314610cd75760405162461bcd60e51b8152600401610956906121db565b8051610b27906011906020840190611c13565b6008546001600160a01b03163314610d145760405162461bcd60e51b8152600401610956906121db565b600a55565b6060600380546107de906122ce565b6001600160a01b038216331415610d525760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040516bffffffffffffffffffffffff193360601b166020820152600190610e0090839060340160405160208183030381529060405280519060200120611136565b610e1d57604051630b094f2760e31b815260040160405180910390fd5b600f5460ff16610e6f5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f74207374617274656400006044820152606401610956565b600b54811115610ecb5760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b6064820152608401610956565b600d5481610edc6000546000190190565b610ee69190612240565b1115610f295760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610956565b600c5433600090815260126020526040902054610f47908390612240565b1115610f8e5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610956565b600a54610f9b908261226c565b341015610ff55760405162461bcd60e51b815260206004820152602260248201527f45746865722076616c75652073656e74206973206e6f742073756666696369656044820152611b9d60f21b6064820152608401610956565b3360009081526012602052604081208054839290611014908490612240565b90915550610b27905033826117a7565b6008546001600160a01b0316331461104e5760405162461bcd60e51b8152600401610956906121db565b600d548161105f6000546000190190565b6110699190612240565b11156110ac5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610956565b610b2782826117a7565b6008546001600160a01b031633146110e05760405162461bcd60e51b8152600401610956906121db565b610927600e8383611c97565b6110f7848484611446565b6001600160a01b0383163b1561113057611113848484846117c1565b611130576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600061114583600954846118b9565b9392505050565b6060611157826113b1565b6111bb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610956565b60006111c56118cf565b511161125b57601180546111d8906122ce565b80601f0160208091040260200160405190810160405280929190818152602001828054611204906122ce565b80156112515780601f1061122657610100808354040283529160200191611251565b820191906000526020600020905b81548152906001019060200180831161123457829003601f168201915b50505050506107c9565b6112636118cf565b61126c836118de565b60405160200161127d92919061214c565b60405160208183030381529060405292915050565b60118054610b38906122ce565b6008546001600160a01b031633146112c95760405162461bcd60e51b8152600401610956906121db565b600955565b6008546001600160a01b031633146112f85760405162461bcd60e51b8152600401610956906121db565b6001600160a01b03811661135d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610956565b61136681611755565b50565b6008546001600160a01b031633146113935760405162461bcd60e51b8152600401610956906121db565b600f805461ff001916610100179055565b60108054610b38906122ce565b6000816001111580156113c5575060005482105b80156107c9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061145182611633565b9050836001600160a01b031681600001516001600160a01b0316146114885760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114a657506114a685336106b9565b806114c15750336114b684610861565b6001600160a01b0316145b9050806114e157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661150857604051633a954ecd60e21b815260040160405180910390fd5b611514600084876113ea565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115e85760005482146115e857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152818060011161173c5760005481101561173c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061173a5780516001600160a01b0316156116d1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611735579392505050565b6116d1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b278282604051806020016040528060008152506119db565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117f690339089908890889060040161218b565b602060405180830381600087803b15801561181057600080fd5b505af1925050508015611840575060408051601f3d908101601f1916820190925261183d9181019061204a565b60015b61189b573d80801561186e576040519150601f19603f3d011682016040523d82523d6000602084013e611873565b606091505b508051611893576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826118c68584611b9f565b14949350505050565b6060601080546107de906122ce565b6060816119025750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192c578061191681612309565b91506119259050600a83612258565b9150611906565b6000816001600160401b038111156119465761194661237a565b6040519080825280601f01601f191660200182016040528015611970576020820181803683370190505b5090505b84156118b15761198560018361228b565b9150611992600a86612324565b61199d906030612240565b60f81b8183815181106119b2576119b2612364565b60200101906001600160f81b031916908160001a9053506119d4600a86612258565b9450611974565b6000546001600160a01b038416611a0457604051622e076360e81b815260040160405180910390fd5b82611a225760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611b4a575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b1360008784806001019550876117c1565b611b30576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ac8578260005414611b4557600080fd5b611b8f565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b4b575b5060009081556111309085838684565b600081815b8451811015611c0b576000858281518110611bc157611bc1612364565b60200260200101519050808311611be75760008381526020829052604090209250611bf8565b600081815260208490526040902092505b5080611c0381612309565b915050611ba4565b509392505050565b828054611c1f906122ce565b90600052602060002090601f016020900481019282611c415760008555611c87565b82601f10611c5a57805160ff1916838001178555611c87565b82800160010185558215611c87579182015b82811115611c87578251825591602001919060010190611c6c565b50611c93929150611d0b565b5090565b828054611ca3906122ce565b90600052602060002090601f016020900481019282611cc55760008555611c87565b82601f10611cde5782800160ff19823516178555611c87565b82800160010185558215611c87579182015b82811115611c87578235825591602001919060010190611cf0565b5b80821115611c935760008155600101611d0c565b60006001600160401b03831115611d3957611d3961237a565b611d4c601f8401601f1916602001612210565b9050828152838383011115611d6057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611d8e57600080fd5b919050565b600082601f830112611da457600080fd5b813560206001600160401b03821115611dbf57611dbf61237a565b8160051b611dce828201612210565b838152828101908684018388018501891015611de957600080fd5b600093505b85841015611e0c578035835260019390930192918401918401611dee565b50979650505050505050565b80358015158114611d8e57600080fd5b600060208284031215611e3a57600080fd5b61114582611d77565b60008060408385031215611e5657600080fd5b611e5f83611d77565b9150611e6d60208401611d77565b90509250929050565b600080600060608486031215611e8b57600080fd5b611e9484611d77565b9250611ea260208501611d77565b9150604084013590509250925092565b60008060008060808587031215611ec857600080fd5b611ed185611d77565b9350611edf60208601611d77565b92506040850135915060608501356001600160401b03811115611f0157600080fd5b8501601f81018713611f1257600080fd5b611f2187823560208401611d20565b91505092959194509250565b60008060408385031215611f4057600080fd5b611f4983611d77565b9150611e6d60208401611e18565b60008060408385031215611f6a57600080fd5b611f7383611d77565b946020939093013593505050565b600060208284031215611f9357600080fd5b81356001600160401b03811115611fa957600080fd5b6118b184828501611d93565b60008060408385031215611fc857600080fd5b82356001600160401b03811115611fde57600080fd5b611fea85828601611d93565b95602094909401359450505050565b60006020828403121561200b57600080fd5b61114582611e18565b60006020828403121561202657600080fd5b5035919050565b60006020828403121561203f57600080fd5b813561114581612390565b60006020828403121561205c57600080fd5b815161114581612390565b6000806020838503121561207a57600080fd5b82356001600160401b038082111561209157600080fd5b818501915085601f8301126120a557600080fd5b8135818111156120b457600080fd5b8660208285010111156120c657600080fd5b60209290920196919550909350505050565b6000602082840312156120ea57600080fd5b81356001600160401b0381111561210057600080fd5b8201601f8101841361211157600080fd5b6118b184823560208401611d20565b600081518084526121388160208601602086016122a2565b601f01601f19169290920160200192915050565b6000835161215e8184602088016122a2565b8351908301906121728183602088016122a2565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121be90830184612120565b9695505050505050565b6020815260006111456020830184612120565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156122385761223861237a565b604052919050565b6000821982111561225357612253612338565b500190565b6000826122675761226761234e565b500490565b600081600019048311821515161561228657612286612338565b500290565b60008282101561229d5761229d612338565b500390565b60005b838110156122bd5781810151838201526020016122a5565b838111156111305750506000910152565b600181811c908216806122e257607f821691505b6020821081141561230357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561231d5761231d612338565b5060010190565b6000826123335761233361234e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461136657600080fdfea26469706673582212202d5316dd8c6a21c7b43734401d630ebc29fe3cdebea18b93f701f7969eb5abb664736f6c63430008070033

Deployed Bytecode Sourcemap

49795:4146:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28393:305;;;;;;;;;;-1:-1:-1;28393:305:0;;;;;:::i;:::-;;:::i;:::-;;;8363:14:1;;8356:22;8338:41;;8326:2;8311:18;28393:305:0;;;;;;;;31508:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33012:204::-;;;;;;;;;;-1:-1:-1;33012:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7661:32:1;;;7643:51;;7631:2;7616:18;33012:204:0;7497:203:1;32574:372:0;;;;;;;;;;-1:-1:-1;32574:372:0;;;;;:::i;:::-;;:::i;:::-;;50132:27;;;;;;;;;;-1:-1:-1;50132:27:0;;;;;;;;;;;49974:30;;;;;;;;;;;;;;;;;;;8536:25:1;;;8524:2;8509:18;49974:30:0;8390:177:1;27633:312:0;;;;;;;;;;-1:-1:-1;50708:1:0;27896:12;27686:7;27880:13;:28;-1:-1:-1;;27880:46:0;27633:312;;51437:91;;;;;;;;;;-1:-1:-1;51437:91:0;;;;;:::i;:::-;;:::i;33877:170::-;;;;;;;;;;-1:-1:-1;33877:170:0;;;;;:::i;:::-;;:::i;51561:493::-;;;;;;;;;;;;;:::i;34118:185::-;;;;;;;;;;-1:-1:-1;34118:185:0;;;;;:::i;:::-;;:::i;50898:139::-;;;;;;;;;;-1:-1:-1;50898:139:0;;;;;:::i;:::-;;:::i;50044:37::-;;;;;;;;;;;;;:::i;31316:125::-;;;;;;;;;;-1:-1:-1;31316:125:0;;;;;:::i;:::-;;:::i;28762:206::-;;;;;;;;;;-1:-1:-1;28762:206:0;;;;;:::i;:::-;;:::i;48920:103::-;;;;;;;;;;;;;:::i;52507:96::-;;;;;;;;;;-1:-1:-1;52507:96:0;;;;;:::i;:::-;;:::i;52405:94::-;;;;;;;;;;-1:-1:-1;52405:94:0;;;;;:::i;:::-;;:::i;51045:88::-;;;;;;;;;;-1:-1:-1;51045:88:0;;;;;:::i;:::-;;:::i;49892:39::-;;;;;;;;;;;;;;;;48269:87;;;;;;;;;;-1:-1:-1;48342:6:0;;-1:-1:-1;;;;;48342:6:0;48269:87;;51343:86;;;;;;;;;;-1:-1:-1;51343:86:0;;;;;:::i;:::-;;:::i;31677:104::-;;;;;;;;;;;;;:::i;33288:287::-;;;;;;;;;;-1:-1:-1;33288:287:0;;;;;:::i;:::-;;:::i;53107:831::-;;;;;;:::i;:::-;;:::i;52222:178::-;;;;;;;;;;-1:-1:-1;52222:178:0;;;;;:::i;:::-;;:::i;50435:96::-;;;;;;;;;;-1:-1:-1;50435:96:0;;;;;:::i;:::-;;:::i;34374:370::-;;;;;;;;;;-1:-1:-1;34374:370:0;;;;;:::i;:::-;;:::i;52954:145::-;;;;;;;;;;-1:-1:-1;52954:145:0;;;;;:::i;:::-;;:::i;50090:35::-;;;;;;;;;;-1:-1:-1;50090:35:0;;;;;;;;52608:341;;;;;;;;;;-1:-1:-1;52608:341:0;;;;;:::i;:::-;;:::i;50008:27::-;;;;;;;;;;;;;;;;50264:31;;;;;;;;;;;;;:::i;51265:73::-;;;;;;;;;;-1:-1:-1;51265:73:0;;;;;:::i;:::-;;:::i;49935:32::-;;;;;;;;;;;;;;;;50719:78;;;;;;;;;;-1:-1:-1;50783:9:0;;;;;;;;;-1:-1:-1;50783:9:0;;50719:78;;33646:164;;;;;;;;;;-1:-1:-1;33646:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33767:25:0;;;33743:4;33767:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33646:164;49841:19;;;;;;;;;;;;;;;;49178:201;;;;;;;;;;-1:-1:-1;49178:201:0;;;;;:::i;:::-;;:::i;50805:88::-;;;;;;;;;;;;;:::i;50166:94::-;;;;;;;;;;;;;:::i;51141:116::-;;;;;;;;;;-1:-1:-1;51141:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;51224:25:0;51200:4;51224:25;;;:18;:25;;;;;;;51141:116;28393:305;28495:4;-1:-1:-1;;;;;;28532:40:0;;-1:-1:-1;;;28532:40:0;;:105;;-1:-1:-1;;;;;;;28589:48:0;;-1:-1:-1;;;28589:48:0;28532:105;:158;;;-1:-1:-1;;;;;;;;;;15950:40:0;;;28654:36;28512:178;28393:305;-1:-1:-1;;28393:305:0:o;31508:100::-;31562:13;31595:5;31588:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31508:100;:::o;33012:204::-;33080:7;33105:16;33113:7;33105;:16::i;:::-;33100:64;;33130:34;;-1:-1:-1;;;33130:34:0;;;;;;;;;;;33100:64;-1:-1:-1;33184:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33184:24:0;;33012:204::o;32574:372::-;32647:13;32663:24;32679:7;32663:15;:24::i;:::-;32647:40;;32708:5;-1:-1:-1;;;;;32702:11:0;:2;-1:-1:-1;;;;;32702:11:0;;32698:48;;;32722:24;;-1:-1:-1;;;32722:24:0;;;;;;;;;;;32698:48;25410:10;-1:-1:-1;;;;;32763:21:0;;;32759:139;;32790:37;32807:5;25410:10;33646:164;:::i;32790:37::-;32786:112;;32851:35;;-1:-1:-1;;;32851:35:0;;;;;;;;;;;32786:112;32910:28;32919:2;32923:7;32932:5;32910:8;:28::i;:::-;32636:310;32574:372;;:::o;51437:91::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;;;;;;;;;51500:15:::1;:23:::0;;-1:-1:-1;;51500:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51437:91::o;33877:170::-;34011:28;34021:4;34027:2;34031:7;34011:9;:28::i;51561:493::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;51627:21:::1;51702:42;51609:15;51787:3;51772:12;51627:21:::0;51782:2:::1;51772:12;:::i;:::-;:18;;;;:::i;:::-;51808:37;::::0;51755:35;;-1:-1:-1;;;;;;51808:26:0;::::1;::::0;:37;::::1;;;::::0;51755:35;;51808:37:::1;::::0;;;51755:35;51808:26;:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;51903:42:0::1;51884:16;51988:3;51973:12;:7:::0;51983:2:::1;51973:12;:::i;:::-;:18;;;;:::i;:::-;52009:37;::::0;51956:35;;-1:-1:-1;;;;;;52009:26:0;::::1;::::0;:37;::::1;;;::::0;51956:35;;52009:37:::1;::::0;;;51956:35;52009:26;:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51598:456;;;;;51561:493::o:0;34118:185::-;34256:39;34273:4;34279:2;34283:7;34256:39;;;;;;;;;;;;:16;:39::i;50898:139::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;50972:15:::1;::::0;::::1;::::0;::::1;;;50971:16;50963:50;;;::::0;-1:-1:-1;;;50963:50:0;;8998:2:1;50963:50:0::1;::::0;::::1;8980:21:1::0;9037:2;9017:18;;;9010:30;-1:-1:-1;;;9056:18:1;;;9049:51;9117:18;;50963:50:0::1;8796:345:1::0;50963:50:0::1;51018:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50898:139:::0;:::o;50044:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31316:125::-;31380:7;31407:21;31420:7;31407:12;:21::i;:::-;:26;;31316:125;-1:-1:-1;;31316:125:0:o;28762:206::-;28826:7;-1:-1:-1;;;;;28850:19:0;;28846:60;;28878:28;;-1:-1:-1;;;28878:28:0;;;;;;;;;;;28846:60;-1:-1:-1;;;;;;28932:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28932:27:0;;28762:206::o;48920:103::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;48985:30:::1;49012:1;48985:18;:30::i;:::-;48920:103::o:0;52507:96::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;52570:14:::1;:28:::0;52507:96::o;52405:94::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;52470:9:::1;:24:::0;52405:94::o;51045:88::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;51110:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;51343:86::-:0;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;51400:13:::1;:24:::0;51343:86::o;31677:104::-;31733:13;31766:7;31759:14;;;;;:::i;33288:287::-;-1:-1:-1;;;;;33387:24:0;;25410:10;33387:24;33383:54;;;33420:17;;-1:-1:-1;;;33420:17:0;;;;;;;;;;;33383:54;25410:10;33450:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33450:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33450:53:0;;;;;;;;;;33519:48;;8338:41:1;;;33450:42:0;;25410:10;33519:48;;8311:18:1;33519:48:0;;;;;;;33288:287;;:::o;53107:831::-;53358:28;;-1:-1:-1;;53375:10:0;6770:2:1;6766:15;6762:53;53358:28:0;;;6750:66:1;53194:1:0;;53332:57;;53341:5;;6832:12:1;;53358:28:0;;;;;;;;;;;;53348:39;;;;;;53332:7;:57::i;:::-;53325:118;;53415:16;;-1:-1:-1;;;53415:16:0;;;;;;;;;;;53325:118;53457:15;;;;53449:58;;;;-1:-1:-1;;;53449:58:0;;9755:2:1;53449:58:0;;;9737:21:1;9794:2;9774:18;;;9767:30;9833:32;9813:18;;;9806:60;9883:18;;53449:58:0;9553:354:1;53449:58:0;53529:16;;53520:5;:25;;53512:70;;;;-1:-1:-1;;;53512:70:0;;10114:2:1;53512:70:0;;;10096:21:1;10153:2;10133:18;;;10126:30;10192:34;10172:18;;;10165:62;-1:-1:-1;;;10243:18:1;;;10236:31;10284:19;;53512:70:0;9912:397:1;53512:70:0;53621:9;;53612:5;53595:14;28085:7;28271:13;-1:-1:-1;;28271:31:0;;28038:283;53595:14;:22;;;;:::i;:::-;:35;;53587:65;;;;-1:-1:-1;;;53587:65:0;;10516:2:1;53587:65:0;;;10498:21:1;10555:2;10535:18;;;10528:30;-1:-1:-1;;;10574:18:1;;;10567:48;10632:18;;53587:65:0;10314:342:1;53587:65:0;53713:14;;53690:10;53671:30;;;;:18;:30;;;;;;:38;;53704:5;;53671:38;:::i;:::-;:56;;53663:90;;;;-1:-1:-1;;;53663:90:0;;12043:2:1;53663:90:0;;;12025:21:1;12082:2;12062:18;;;12055:30;-1:-1:-1;;;12101:18:1;;;12094:52;12163:18;;53663:90:0;11841:346:1;53663:90:0;53794:13;;53786:21;;:5;:21;:::i;:::-;53773:9;:34;;53760:94;;;;-1:-1:-1;;;53760:94:0;;10863:2:1;53760:94:0;;;10845:21:1;10902:2;10882:18;;;10875:30;10941:34;10921:18;;;10914:62;-1:-1:-1;;;10992:18:1;;;10985:32;11034:19;;53760:94:0;10661:398:1;53760:94:0;53880:10;53861:30;;;;:18;:30;;;;;:39;;53895:5;;53861:30;:39;;53895:5;;53861:39;:::i;:::-;;;;-1:-1:-1;53905:28:0;;-1:-1:-1;53915:10:0;53927:5;53905:9;:28::i;52222:178::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;52330:9:::1;;52321:5;52304:14;28085:7:::0;28271:13;-1:-1:-1;;28271:31:0;;28038:283;52304:14:::1;:22;;;;:::i;:::-;:35;;52291:79;;;::::0;-1:-1:-1;;;52291:79:0;;10516:2:1;52291:79:0::1;::::0;::::1;10498:21:1::0;10555:2;10535:18;;;10528:30;-1:-1:-1;;;10574:18:1;;;10567:48;10632:18;;52291:79:0::1;10314:342:1::0;52291:79:0::1;52375:20;52385:2;52389:5;52375:9;:20::i;50435:96::-:0;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;50507:19:::1;:8;50518::::0;;50507:19:::1;:::i;34374:370::-:0;34541:28;34551:4;34557:2;34561:7;34541:9;:28::i;:::-;-1:-1:-1;;;;;34584:13:0;;6030:19;:23;34580:157;;34605:56;34636:4;34642:2;34646:7;34655:5;34605:30;:56::i;:::-;34601:136;;34685:40;;-1:-1:-1;;;34685:40:0;;;;;;;;;;;34601:136;34374:370;;;;:::o;52954:145::-;53030:4;53054:37;53073:5;53080:4;;53086;53054:18;:37::i;:::-;53047:44;52954:145;-1:-1:-1;;;52954:145:0:o;52608:341::-;52682:13;52718:16;52726:7;52718;:16::i;:::-;52710:76;;;;-1:-1:-1;;;52710:76:0;;11627:2:1;52710:76:0;;;11609:21:1;11666:2;11646:18;;;11639:30;11705:34;11685:18;;;11678:62;-1:-1:-1;;;11756:18:1;;;11749:45;11811:19;;52710:76:0;11425:411:1;52710:76:0;52833:1;52812:10;:8;:10::i;:::-;52806:24;:28;:138;;52932:12;52806:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52875:10;:8;:10::i;:::-;52887:18;:7;:16;:18::i;:::-;52858:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52799:145;52608:341;-1:-1:-1;;52608:341:0:o;50264:31::-;;;;;;;:::i;51265:73::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;51321:4:::1;:12:::0;51265:73::o;49178:201::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49267:22:0;::::1;49259:73;;;::::0;-1:-1:-1;;;49259:73:0;;9348:2:1;49259:73:0::1;::::0;::::1;9330:21:1::0;9387:2;9367:18;;;9360:30;9426:34;9406:18;;;9399:62;-1:-1:-1;;;9477:18:1;;;9470:36;9523:19;;49259:73:0::1;9146:402:1::0;49259:73:0::1;49343:28;49362:8;49343:18;:28::i;:::-;49178:201:::0;:::o;50805:88::-;48342:6;;-1:-1:-1;;;;;48342:6:0;25410:10;48489:23;48481:68;;;;-1:-1:-1;;;48481:68:0;;;;;;;:::i;:::-;50863:15:::1;:22:::0;;-1:-1:-1;;50863:22:0::1;;;::::0;;50805:88::o;50166:94::-;;;;;;;:::i;34999:174::-;35056:4;35099:7;50708:1;35080:26;;:53;;;;;35120:13;;35110:7;:23;35080:53;:85;;;;-1:-1:-1;;35138:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35138:27:0;;;;35137:28;;34999:174::o;44221:196::-;44336:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44336:29:0;-1:-1:-1;;;;;44336:29:0;;;;;;;;;44381:28;;44336:24;;44381:28;;;;;;;44221:196;;;:::o;39169:2130::-;39284:35;39322:21;39335:7;39322:12;:21::i;:::-;39284:59;;39382:4;-1:-1:-1;;;;;39360:26:0;:13;:18;;;-1:-1:-1;;;;;39360:26:0;;39356:67;;39395:28;;-1:-1:-1;;;39395:28:0;;;;;;;;;;;39356:67;39436:22;25410:10;-1:-1:-1;;;;;39462:20:0;;;;:73;;-1:-1:-1;39499:36:0;39516:4;25410:10;33646:164;:::i;39499:36::-;39462:126;;;-1:-1:-1;25410:10:0;39552:20;39564:7;39552:11;:20::i;:::-;-1:-1:-1;;;;;39552:36:0;;39462:126;39436:153;;39607:17;39602:66;;39633:35;;-1:-1:-1;;;39633:35:0;;;;;;;;;;;39602:66;-1:-1:-1;;;;;39683:16:0;;39679:52;;39708:23;;-1:-1:-1;;;39708:23:0;;;;;;;;;;;39679:52;39852:35;39869:1;39873:7;39882:4;39852:8;:35::i;:::-;-1:-1:-1;;;;;40183:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40183:31:0;;;-1:-1:-1;;;;;40183:31:0;;;-1:-1:-1;;40183:31:0;;;;;;;40229:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40229:29:0;;;;;;;;;;;40309:20;;;:11;:20;;;;;;40344:18;;-1:-1:-1;;;;;;40377:49:0;;;;-1:-1:-1;;;40410:15:0;40377:49;;;;;;;;;;40700:11;;40760:24;;;;;40803:13;;40309:20;;40760:24;;40803:13;40799:384;;41013:13;;40998:11;:28;40994:174;;41051:20;;41120:28;;;;-1:-1:-1;;;;;41094:54:0;-1:-1:-1;;;41094:54:0;-1:-1:-1;;;;;;41094:54:0;;;-1:-1:-1;;;;;41051:20:0;;41094:54;;;;40994:174;40158:1036;;;41230:7;41226:2;-1:-1:-1;;;;;41211:27:0;41220:4;-1:-1:-1;;;;;41211:27:0;;;;;;;;;;;39273:2026;;39169:2130;;;:::o;30143:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30254:7:0;;50708:1;30303:23;30299:888;;30339:13;;30332:4;:20;30328:859;;;30373:31;30407:17;;;:11;:17;;;;;;;;;30373:51;;;;;;;;;-1:-1:-1;;;;;30373:51:0;;;;-1:-1:-1;;;30373:51:0;;-1:-1:-1;;;;;30373:51:0;;;;;;;;-1:-1:-1;;;30373:51:0;;;;;;;;;;;;;;30443:729;;30493:14;;-1:-1:-1;;;;;30493:28:0;;30489:101;;30557:9;30143:1111;-1:-1:-1;;;30143:1111:0:o;30489:101::-;-1:-1:-1;;;30932:6:0;30977:17;;;;:11;:17;;;;;;;;;30965:29;;;;;;;;;-1:-1:-1;;;;;30965:29:0;;;;;-1:-1:-1;;;30965:29:0;;-1:-1:-1;;;;;30965:29:0;;;;;;;;-1:-1:-1;;;30965:29:0;;;;;;;;;;;;;31025:28;31021:109;;31093:9;30143:1111;-1:-1:-1;;;30143:1111:0:o;31021:109::-;30892:261;;;30354:833;30328:859;31215:31;;-1:-1:-1;;;31215:31:0;;;;;;;;;;;49539:191;49632:6;;;-1:-1:-1;;;;;49649:17:0;;;-1:-1:-1;;;;;;49649:17:0;;;;;;;49682:40;;49632:6;;;49649:17;49632:6;;49682:40;;49613:16;;49682:40;49602:128;49539:191;:::o;35257:104::-;35326:27;35336:2;35340:8;35326:27;;;;;;;;;;;;:9;:27::i;44909:667::-;45093:72;;-1:-1:-1;;;45093:72:0;;45072:4;;-1:-1:-1;;;;;45093:36:0;;;;;:72;;25410:10;;45144:4;;45150:7;;45159:5;;45093:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45093:72:0;;;;;;;;-1:-1:-1;;45093:72:0;;;;;;;;;;;;:::i;:::-;;;45089:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45327:13:0;;45323:235;;45373:40;;-1:-1:-1;;;45373:40:0;;;;;;;;;;;45323:235;45516:6;45510:13;45501:6;45497:2;45493:15;45486:38;45089:480;-1:-1:-1;;;;;;45212:55:0;-1:-1:-1;;;45212:55:0;;-1:-1:-1;45089:480:0;44909:667;;;;;;:::o;910:190::-;1035:4;1088;1059:25;1072:5;1079:4;1059:12;:25::i;:::-;:33;;910:190;-1:-1:-1;;;;910:190:0:o;50536:92::-;50588:13;50615:8;50608:15;;;;;:::i;2743:723::-;2799:13;3020:10;3016:53;;-1:-1:-1;;3047:10:0;;;;;;;;;;;;-1:-1:-1;;;3047:10:0;;;;;2743:723::o;3016:53::-;3094:5;3079:12;3135:78;3142:9;;3135:78;;3168:8;;;;:::i;:::-;;-1:-1:-1;3191:10:0;;-1:-1:-1;3199:2:0;3191:10;;:::i;:::-;;;3135:78;;;3223:19;3255:6;-1:-1:-1;;;;;3245:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3245:17:0;;3223:39;;3273:154;3280:10;;3273:154;;3307:11;3317:1;3307:11;;:::i;:::-;;-1:-1:-1;3376:10:0;3384:2;3376:5;:10;:::i;:::-;3363:24;;:2;:24;:::i;:::-;3350:39;;3333:6;3340;3333:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3333:56:0;;;;;;;;-1:-1:-1;3404:11:0;3413:2;3404:11;;:::i;:::-;;;3273:154;;35734:1749;35857:20;35880:13;-1:-1:-1;;;;;35908:16:0;;35904:48;;35933:19;;-1:-1:-1;;;35933:19:0;;;;;;;;;;;35904:48;35967:13;35963:44;;35989:18;;-1:-1:-1;;;35989:18:0;;;;;;;;;;;35963:44;-1:-1:-1;;;;;36358:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36417:49:0;;-1:-1:-1;;;;;36358:44:0;;;;;;;36417:49;;;;-1:-1:-1;;36358:44:0;;;;;;36417:49;;;;;;;;;;;;;;;;36483:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36533:66:0;;;-1:-1:-1;;;36583:15:0;36533:66;;;;;;;;;;;;;36483:25;;36680:23;;;;6030:19;:23;36720:631;;36760:313;36791:38;;36816:12;;-1:-1:-1;;;;;36791:38:0;;;36808:1;;36791:38;;36808:1;;36791:38;36857:69;36896:1;36900:2;36904:14;;;;;;36920:5;36857:30;:69::i;:::-;36852:174;;36962:40;;-1:-1:-1;;;36962:40:0;;;;;;;;;;;36852:174;37068:3;37053:12;:18;36760:313;;37154:12;37137:13;;:29;37133:43;;37168:8;;;37133:43;36720:631;;;37217:119;37248:40;;37273:14;;;;;-1:-1:-1;;;;;37248:40:0;;;37265:1;;37248:40;;37265:1;;37248:40;37331:3;37316:12;:18;37217:119;;36720:631;-1:-1:-1;37365:13:0;:28;;;37415:60;;37448:2;37452:12;37466:8;37415:60;:::i;1462:675::-;1545:7;1588:4;1545:7;1603:497;1627:5;:12;1623:1;:16;1603:497;;;1661:20;1684:5;1690:1;1684:8;;;;;;;;:::i;:::-;;;;;;;1661:31;;1727:12;1711;:28;1707:382;;2213:13;2263:15;;;2299:4;2292:15;;;2346:4;2330:21;;1839:57;;1707:382;;;2213:13;2263:15;;;2299:4;2292:15;;;2346:4;2330:21;;2016:57;;1707:382;-1:-1:-1;1641:3:0;;;;:::i;:::-;;;;1603:497;;;-1:-1:-1;2117:12:0;1462:675;-1:-1:-1;;;1462:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:348::-;3558:6;3611:2;3599:9;3590:7;3586:23;3582:32;3579:52;;;3627:1;3624;3617:12;3579:52;3667:9;3654:23;-1:-1:-1;;;;;3692:6:1;3689:30;3686:50;;;3732:1;3729;3722:12;3686:50;3755:61;3808:7;3799:6;3788:9;3784:22;3755:61;:::i;3827:416::-;3920:6;3928;3981:2;3969:9;3960:7;3956:23;3952:32;3949:52;;;3997:1;3994;3987:12;3949:52;4037:9;4024:23;-1:-1:-1;;;;;4062:6:1;4059:30;4056:50;;;4102:1;4099;4092:12;4056:50;4125:61;4178:7;4169:6;4158:9;4154:22;4125:61;:::i;:::-;4115:71;4233:2;4218:18;;;;4205:32;;-1:-1:-1;;;;3827:416:1:o;4248:180::-;4304:6;4357:2;4345:9;4336:7;4332:23;4328:32;4325:52;;;4373:1;4370;4363:12;4325:52;4396:26;4412:9;4396:26;:::i;4433:180::-;4492:6;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;-1:-1:-1;4584:23:1;;4433:180;-1:-1:-1;4433:180:1:o;4618:245::-;4676:6;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4784:9;4771:23;4803:30;4827:5;4803:30;:::i;4868:249::-;4937:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:52;;;5006:1;5003;4996:12;4958:52;5038:9;5032:16;5057:30;5081:5;5057:30;:::i;5122:592::-;5193:6;5201;5254:2;5242:9;5233:7;5229:23;5225:32;5222:52;;;5270:1;5267;5260:12;5222:52;5310:9;5297:23;-1:-1:-1;;;;;5380:2:1;5372:6;5369:14;5366:34;;;5396:1;5393;5386:12;5366:34;5434:6;5423:9;5419:22;5409:32;;5479:7;5472:4;5468:2;5464:13;5460:27;5450:55;;5501:1;5498;5491:12;5450:55;5541:2;5528:16;5567:2;5559:6;5556:14;5553:34;;;5583:1;5580;5573:12;5553:34;5628:7;5623:2;5614:6;5610:2;5606:15;5602:24;5599:37;5596:57;;;5649:1;5646;5639:12;5596:57;5680:2;5672:11;;;;;5702:6;;-1:-1:-1;5122:592:1;;-1:-1:-1;;;;5122:592:1:o;5719:450::-;5788:6;5841:2;5829:9;5820:7;5816:23;5812:32;5809:52;;;5857:1;5854;5847:12;5809:52;5897:9;5884:23;-1:-1:-1;;;;;5922:6:1;5919:30;5916:50;;;5962:1;5959;5952:12;5916:50;5985:22;;6038:4;6030:13;;6026:27;-1:-1:-1;6016:55:1;;6067:1;6064;6057:12;6016:55;6090:73;6155:7;6150:2;6137:16;6132:2;6128;6124:11;6090:73;:::i;6359:257::-;6400:3;6438:5;6432:12;6465:6;6460:3;6453:19;6481:63;6537:6;6530:4;6525:3;6521:14;6514:4;6507:5;6503:16;6481:63;:::i;:::-;6598:2;6577:15;-1:-1:-1;;6573:29:1;6564:39;;;;6605:4;6560:50;;6359:257;-1:-1:-1;;6359:257:1:o;6855:637::-;7135:3;7173:6;7167:13;7189:53;7235:6;7230:3;7223:4;7215:6;7211:17;7189:53;:::i;:::-;7305:13;;7264:16;;;;7327:57;7305:13;7264:16;7361:4;7349:17;;7327:57;:::i;:::-;-1:-1:-1;;;7406:20:1;;7435:22;;;7484:1;7473:13;;6855:637;-1:-1:-1;;;;6855:637:1:o;7705:488::-;-1:-1:-1;;;;;7974:15:1;;;7956:34;;8026:15;;8021:2;8006:18;;7999:43;8073:2;8058:18;;8051:34;;;8121:3;8116:2;8101:18;;8094:31;;;7899:4;;8142:45;;8167:19;;8159:6;8142:45;:::i;:::-;8134:53;7705:488;-1:-1:-1;;;;;;7705:488:1:o;8572:219::-;8721:2;8710:9;8703:21;8684:4;8741:44;8781:2;8770:9;8766:18;8758:6;8741:44;:::i;11064:356::-;11266:2;11248:21;;;11285:18;;;11278:30;11344:34;11339:2;11324:18;;11317:62;11411:2;11396:18;;11064:356::o;12374:275::-;12445:2;12439:9;12510:2;12491:13;;-1:-1:-1;;12487:27:1;12475:40;;-1:-1:-1;;;;;12530:34:1;;12566:22;;;12527:62;12524:88;;;12592:18;;:::i;:::-;12628:2;12621:22;12374:275;;-1:-1:-1;12374:275:1:o;12654:128::-;12694:3;12725:1;12721:6;12718:1;12715:13;12712:39;;;12731:18;;:::i;:::-;-1:-1:-1;12767:9:1;;12654:128::o;12787:120::-;12827:1;12853;12843:35;;12858:18;;:::i;:::-;-1:-1:-1;12892:9:1;;12787:120::o;12912:168::-;12952:7;13018:1;13014;13010:6;13006:14;13003:1;13000:21;12995:1;12988:9;12981:17;12977:45;12974:71;;;13025:18;;:::i;:::-;-1:-1:-1;13065:9:1;;12912:168::o;13085:125::-;13125:4;13153:1;13150;13147:8;13144:34;;;13158:18;;:::i;:::-;-1:-1:-1;13195:9:1;;13085:125::o;13215:258::-;13287:1;13297:113;13311:6;13308:1;13305:13;13297:113;;;13387:11;;;13381:18;13368:11;;;13361:39;13333:2;13326:10;13297:113;;;13428:6;13425:1;13422:13;13419:48;;;-1:-1:-1;;13463:1:1;13445:16;;13438:27;13215:258::o;13478:380::-;13557:1;13553:12;;;;13600;;;13621:61;;13675:4;13667:6;13663:17;13653:27;;13621:61;13728:2;13720:6;13717:14;13697:18;13694:38;13691:161;;;13774:10;13769:3;13765:20;13762:1;13755:31;13809:4;13806:1;13799:15;13837:4;13834:1;13827:15;13691:161;;13478:380;;;:::o;13863:135::-;13902:3;-1:-1:-1;;13923:17:1;;13920:43;;;13943:18;;:::i;:::-;-1:-1:-1;13990:1:1;13979:13;;13863:135::o;14003:112::-;14035:1;14061;14051:35;;14066:18;;:::i;:::-;-1:-1:-1;14100:9:1;;14003:112::o;14120:127::-;14181:10;14176:3;14172:20;14169:1;14162:31;14212:4;14209:1;14202:15;14236:4;14233:1;14226:15;14252:127;14313:10;14308:3;14304:20;14301:1;14294:31;14344:4;14341:1;14334:15;14368:4;14365:1;14358:15;14384:127;14445:10;14440:3;14436:20;14433:1;14426:31;14476:4;14473:1;14466:15;14500:4;14497:1;14490:15;14516:127;14577:10;14572:3;14568:20;14565:1;14558:31;14608:4;14605:1;14598:15;14632:4;14629:1;14622:15;14648:131;-1:-1:-1;;;;;;14722:32:1;;14712:43;;14702:71;;14769:1;14766;14759:12

Swarm Source

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