ETH Price: $3,521.74 (+0.45%)
Gas: 2 Gwei

Token

THE AVOCADOODZ (AVO)
 

Overview

Max Total Supply

444 AVO

Holders

193

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 AVO
0x5fccfbcc517edbd785858afb4ec28353ae0dc3ae
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:
THE_AVOCADOODZ

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-02-09
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: contracts/THE_AVOCADOODZ.sol



pragma solidity >=0.7.0 <0.9.0;





struct PresaleConfig {
  uint32 startTime;
  uint32 endTime;
  uint32 maxMintPerWhitelistWallet;
}

contract THE_AVOCADOODZ is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  bytes32 public merkleRoot = 0x99ff1bb8a900d118931659ee58d24fa99a67486e30ee4d3238b0fbf1cb7cf54a;

  Counters.Counter private supply;

  string public uriPrefix = ""; // BaseURI
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint32 publicSaleStartTime;

  uint256 public cost = 0.001 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public maxMintPerWallet = 5;

  PresaleConfig public presaleConfig;

  bool public presaleOn = true;
  bool public paused = false; // Only for public sale.
  bool public revealed;

  mapping(address => uint256) public userWallets;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _hiddenMetadataUri,
    string memory initialBaseUri
  ) ERC721(_name, _symbol) {
    presaleConfig = PresaleConfig({
      startTime: 1644350400, // Tuesday, February 8, 2022 8:00:00 PM GMT
      endTime: 1644523200, //	Wednesday, February 9, 2022 8:00:00 PM GMT
      maxMintPerWhitelistWallet: 3
    });
    publicSaleStartTime = 1644523200; // Wednesday, February 9, 2022 8:00:00 PM GMT
    hiddenMetadataUri = _hiddenMetadataUri;
    uriPrefix = initialBaseUri;
}

  modifier mintCompliance(uint256 _mintAmount) {
    require(msg.sender == tx.origin, "Can't mint through another contract"); // Bot mitigation 101
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount. Should be less than or equal to 5!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    require(userWallets[msg.sender] + _mintAmount <= maxMintPerWallet, "User exceeds max mint limit per wallet!");
    _;
  }

  function whitelistMint(bytes32[] calldata _merkleProof, uint256 _mintAmount) external payable mintCompliance(_mintAmount) {
    PresaleConfig memory config_ = presaleConfig;

    require(presaleOn, "Presale Not Yet Live");
    require(block.timestamp >= config_.startTime && block.timestamp < config_.endTime, "Presale is not active!");
    require(userWallets[msg.sender] + _mintAmount <= config_.maxMintPerWhitelistWallet, "User exceeds max mint per whitelisted wallet!");
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid Proof.");
  
    _mintLoop(msg.sender, _mintAmount);
  }  

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "Public minting is paused. Presale is probably going on.");
    require(publicSaleStartTime <= block.timestamp, "Public sale is not active.");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setPresaleOn(bool _state) public onlyOwner {
    presaleOn = _state;
  }

  function emergencyOverridePublicSaleStartTime(uint32 startTime_) public onlyOwner {
    publicSaleStartTime = startTime_;
  }

  function emergencyOverridePresaleTimings(uint32 startTime_, uint32 endTime_) public onlyOwner {
    presaleConfig.startTime = startTime_;
    presaleConfig.endTime = endTime_;
  }

  function setMerkleRoot(bytes32 merkleRoot_) public onlyOwner {
    merkleRoot = merkleRoot_;
  }

  function withdraw() public onlyOwner {
    (bool ada, ) = payable(0x184b4274671213C843baA9539caBBF50d5290bA9).call{value: address(this).balance * 8 / 100}("");
    require(ada);
    (bool adb, ) = payable(0xE2D9871835441739B73a7A4D46E7dA2981740029).call{value: address(this).balance * 6 / 100}("");
    require(adb);
    (bool adc, ) = payable(0x144720e2677FCAAB73C63229E3D1Eb6CA4a3C56C).call{value: address(this).balance * 6 / 100}("");
    require(adc);
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      userWallets[msg.sender]++;
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"},{"internalType":"string","name":"initialBaseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"},{"internalType":"uint32","name":"endTime_","type":"uint32"}],"name":"emergencyOverridePresaleTimings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"}],"name":"emergencyOverridePublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleConfig","outputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint32","name":"maxMintPerWhitelistWallet","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

7f99ff1bb8a900d118931659ee58d24fa99a67486e30ee4d3238b0fbf1cb7cf54a60075560a06040819052600060808190526200003f91600991620001f2565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006e91600a91620001f2565b5066038d7ea4c68000600d55611388600e556005600f8190556010556012805461ffff19166001179055348015620000a557600080fd5b506040516200315d3803806200315d833981016040819052620000c8916200034f565b835184908490620000e1906000906020850190620001f2565b508051620000f7906001906020840190620001f2565b505050620001146200010e6200019c60201b60201c565b620001a0565b60408051606081018252636202cbc081526362056ec0602080830182905260039290930191909152601180546001600160601b031916680362056ec06202cbc0179055600c805463ffffffff1916909117905582516200017b91600b9190850190620001f2565b50805162000191906009906020840190620001f2565b50505050506200045b565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002009062000408565b90600052602060002090601f0160209004810192826200022457600085556200026f565b82601f106200023f57805160ff19168380011785556200026f565b828001600101855582156200026f579182015b828111156200026f57825182559160200191906001019062000252565b506200027d92915062000281565b5090565b5b808211156200027d576000815560010162000282565b600082601f830112620002aa57600080fd5b81516001600160401b0380821115620002c757620002c762000445565b604051601f8301601f19908116603f01168101908282118183101715620002f257620002f262000445565b816040528381526020925086838588010111156200030f57600080fd5b600091505b8382101562000333578582018301518183018401529082019062000314565b83821115620003455760008385830101525b9695505050505050565b600080600080608085870312156200036657600080fd5b84516001600160401b03808211156200037e57600080fd5b6200038c8883890162000298565b95506020870151915080821115620003a357600080fd5b620003b18883890162000298565b94506040870151915080821115620003c857600080fd5b620003d68883890162000298565b93506060870151915080821115620003ed57600080fd5b50620003fc8782880162000298565b91505092959194509250565b600181811c908216806200041d57607f821691505b602082108114156200043f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612cf2806200046b6000396000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063a0712d68116100c1578063c87b56dd1161007a578063c87b56dd14610738578063d5abeb0114610758578063e985e9c51461076e578063efbd73f4146107b7578063f2fde38b146107d7578063fd88fa69146107f757600080fd5b8063a0712d681461069a578063a22cb465146106ad578063a45ba8e7146106cd578063b071401b146106e2578063b228d92514610702578063b88d4fde1461071857600080fd5b80637cb64759116101135780637cb64759146105f15780637ec4a659146106115780638da5cb5b146106315780639423ad261461064f57806394354fd01461066f57806395d89b411461068557600080fd5b80636352211e1461054f57806363e6ffdd1461056f57806370a082311461059c578063715018a6146105bc5780637699cb91146105d157600080fd5b80632eb4a7ab116101f357806345696963116101ac57806345696963146104a65780634fdd43cb146104c657806351830227146104e65780635503a0e8146105065780635c975abb1461051b57806362b99ad41461053a57600080fd5b80632eb4a7ab146103f95780633bd649681461040f5780633ccfd60b1461042457806342842e0e14610439578063438b63001461045957806344a0d68a1461048657600080fd5b806316ba10e01161024557806316ba10e01461035757806316c38b3c1461037757806318160ddd146103975780631ad874b4146103ac57806323b872dd146103c65780632904e6d9146103e657600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157806313faede614610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004612728565b610852565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc6108a4565b6040516102ae9190612984565b3480156102e557600080fd5b506102f96102f436600461270f565b610936565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c36600461264f565b6109d0565b005b34801561033f57600080fd5b50610349600d5481565b6040519081526020016102ae565b34801561036357600080fd5b50610331610372366004612762565b610ae6565b34801561038357600080fd5b506103316103923660046126f4565b610b27565b3480156103a357600080fd5b50610349610b6b565b3480156103b857600080fd5b506012546102a29060ff1681565b3480156103d257600080fd5b506103316103e136600461256d565b610b7b565b6103316103f4366004612679565b610bac565b34801561040557600080fd5b5061034960075481565b34801561041b57600080fd5b50610331610f20565b34801561043057600080fd5b50610331610f5d565b34801561044557600080fd5b5061033161045436600461256d565b611175565b34801561046557600080fd5b5061047961047436600461251f565b611190565b6040516102ae9190612940565b34801561049257600080fd5b506103316104a136600461270f565b611271565b3480156104b257600080fd5b506103316104c13660046127ce565b6112a0565b3480156104d257600080fd5b506103316104e1366004612762565b6112e6565b3480156104f257600080fd5b506012546102a29062010000900460ff1681565b34801561051257600080fd5b506102cc611323565b34801561052757600080fd5b506012546102a290610100900460ff1681565b34801561054657600080fd5b506102cc6113b1565b34801561055b57600080fd5b506102f961056a36600461270f565b6113be565b34801561057b57600080fd5b5061034961058a36600461251f565b60136020526000908152604090205481565b3480156105a857600080fd5b506103496105b736600461251f565b611435565b3480156105c857600080fd5b506103316114bc565b3480156105dd57600080fd5b506103316105ec3660046127e9565b6114f2565b3480156105fd57600080fd5b5061033161060c36600461270f565b61154c565b34801561061d57600080fd5b5061033161062c366004612762565b61157b565b34801561063d57600080fd5b506006546001600160a01b03166102f9565b34801561065b57600080fd5b5061033161066a3660046126f4565b6115b8565b34801561067b57600080fd5b50610349600f5481565b34801561069157600080fd5b506102cc6115f5565b6103316106a836600461270f565b611604565b3480156106b957600080fd5b506103316106c8366004612625565b61181f565b3480156106d957600080fd5b506102cc61182a565b3480156106ee57600080fd5b506103316106fd36600461270f565b611837565b34801561070e57600080fd5b5061034960105481565b34801561072457600080fd5b506103316107333660046125a9565b611866565b34801561074457600080fd5b506102cc61075336600461270f565b611898565b34801561076457600080fd5b50610349600e5481565b34801561077a57600080fd5b506102a261078936600461253a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107c357600080fd5b506103316107d23660046127ab565b611a18565b3480156107e357600080fd5b506103316107f236600461251f565b611a4c565b34801561080357600080fd5b5060115461082b9063ffffffff808216916401000000008104821691600160401b9091041683565b6040805163ffffffff948516815292841660208401529216918101919091526060016102ae565b60006001600160e01b031982166380ac58cd60e01b148061088357506001600160e01b03198216635b5e139f60e01b145b8061089e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108b390612be4565b80601f01602080910402602001604051908101604052809291908181526020018280546108df90612be4565b801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109db826113be565b9050806001600160a01b0316836001600160a01b03161415610a495760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109ab565b336001600160a01b0382161480610a655750610a658133610789565b610ad75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109ab565b610ae18383611ae7565b505050565b6006546001600160a01b03163314610b105760405162461bcd60e51b81526004016109ab906129e9565b8051610b2390600a9060208401906123d0565b5050565b6006546001600160a01b03163314610b515760405162461bcd60e51b81526004016109ab906129e9565b601280549115156101000261ff0019909216919091179055565b6000610b7660085490565b905090565b610b853382611b55565b610ba15760405162461bcd60e51b81526004016109ab90612a7b565b610ae1838383611c4c565b80333214610bcc5760405162461bcd60e51b81526004016109ab90612b13565b600081118015610bde5750600f548111155b610bfa5760405162461bcd60e51b81526004016109ab90612a1e565b600e5481610c0760085490565b610c119190612b56565b1115610c565760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109ab565b80600d54610c649190612b82565b341015610ca95760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109ab565b60105433600090815260136020526040902054610cc7908390612b56565b1115610ce55760405162461bcd60e51b81526004016109ab90612acc565b6040805160608101825260115463ffffffff8082168352640100000000820481166020840152600160401b909104169181019190915260125460ff16610d645760405162461bcd60e51b815260206004820152601460248201527350726573616c65204e6f7420596574204c69766560601b60448201526064016109ab565b805163ffffffff164210801590610d845750806020015163ffffffff1642105b610dc95760405162461bcd60e51b815260206004820152601660248201527550726573616c65206973206e6f74206163746976652160501b60448201526064016109ab565b6040808201513360009081526013602052919091205463ffffffff90911690610df3908590612b56565b1115610e575760405162461bcd60e51b815260206004820152602d60248201527f557365722065786365656473206d6178206d696e74207065722077686974656c60448201526c69737465642077616c6c65742160981b60648201526084016109ab565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610ed1868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506007549150849050611dec565b610f0e5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210283937b7b31760911b60448201526064016109ab565b610f183385611e02565b505050505050565b6006546001600160a01b03163314610f4a5760405162461bcd60e51b81526004016109ab906129e9565b6012805462ff0000191662010000179055565b6006546001600160a01b03163314610f875760405162461bcd60e51b81526004016109ab906129e9565b600073184b4274671213c843baa9539cabbf50d5290ba96064610fab476008612b82565b610fb59190612b6e565b604051600081818185875af1925050503d8060008114610ff1576040519150601f19603f3d011682016040523d82523d6000602084013e610ff6565b606091505b505090508061100457600080fd5b600073e2d9871835441739b73a7a4d46e7da29817400296064611028476006612b82565b6110329190612b6e565b604051600081818185875af1925050503d806000811461106e576040519150601f19603f3d011682016040523d82523d6000602084013e611073565b606091505b505090508061108157600080fd5b600073144720e2677fcaab73c63229e3d1eb6ca4a3c56c60646110a5476006612b82565b6110af9190612b6e565b604051600081818185875af1925050503d80600081146110eb576040519150601f19603f3d011682016040523d82523d6000602084013e6110f0565b606091505b50509050806110fe57600080fd5b60006111126006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461115c576040519150601f19603f3d011682016040523d82523d6000602084013e611161565b606091505b505090508061116f57600080fd5b50505050565b610ae183838360405180602001604052806000815250611866565b6060600061119d83611435565b905060008167ffffffffffffffff8111156111ba576111ba612c90565b6040519080825280602002602001820160405280156111e3578160200160208202803683370190505b509050600160005b83811080156111fc5750600e548211155b1561126757600061120c836113be565b9050866001600160a01b0316816001600160a01b03161415611254578284838151811061123b5761123b612c7a565b60209081029190910101528161125081612c1f565b9250505b8261125e81612c1f565b935050506111eb565b5090949350505050565b6006546001600160a01b0316331461129b5760405162461bcd60e51b81526004016109ab906129e9565b600d55565b6006546001600160a01b031633146112ca5760405162461bcd60e51b81526004016109ab906129e9565b600c805463ffffffff191663ffffffff92909216919091179055565b6006546001600160a01b031633146113105760405162461bcd60e51b81526004016109ab906129e9565b8051610b2390600b9060208401906123d0565b600a805461133090612be4565b80601f016020809104026020016040519081016040528092919081815260200182805461135c90612be4565b80156113a95780601f1061137e576101008083540402835291602001916113a9565b820191906000526020600020905b81548152906001019060200180831161138c57829003601f168201915b505050505081565b6009805461133090612be4565b6000818152600260205260408120546001600160a01b03168061089e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109ab565b60006001600160a01b0382166114a05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109ab565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146114e65760405162461bcd60e51b81526004016109ab906129e9565b6114f06000611e5f565b565b6006546001600160a01b0316331461151c5760405162461bcd60e51b81526004016109ab906129e9565b6011805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b6006546001600160a01b031633146115765760405162461bcd60e51b81526004016109ab906129e9565b600755565b6006546001600160a01b031633146115a55760405162461bcd60e51b81526004016109ab906129e9565b8051610b239060099060208401906123d0565b6006546001600160a01b031633146115e25760405162461bcd60e51b81526004016109ab906129e9565b6012805460ff1916911515919091179055565b6060600180546108b390612be4565b803332146116245760405162461bcd60e51b81526004016109ab90612b13565b6000811180156116365750600f548111155b6116525760405162461bcd60e51b81526004016109ab90612a1e565b600e548161165f60085490565b6116699190612b56565b11156116ae5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109ab565b80600d546116bc9190612b82565b3410156117015760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109ab565b6010543360009081526013602052604090205461171f908390612b56565b111561173d5760405162461bcd60e51b81526004016109ab90612acc565b601254610100900460ff16156117bb5760405162461bcd60e51b815260206004820152603760248201527f5075626c6963206d696e74696e67206973207061757365642e2050726573616c60448201527f652069732070726f6261626c7920676f696e67206f6e2e00000000000000000060648201526084016109ab565b600c544263ffffffff90911611156118155760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e00000000000060448201526064016109ab565b610b233383611e02565b610b23338383611eb1565b600b805461133090612be4565b6006546001600160a01b031633146118615760405162461bcd60e51b81526004016109ab906129e9565b600f55565b6118703383611b55565b61188c5760405162461bcd60e51b81526004016109ab90612a7b565b61116f84848484611f80565b6000818152600260205260409020546060906001600160a01b03166119175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ab565b60125462010000900460ff166119b957600b805461193490612be4565b80601f016020809104026020016040519081016040528092919081815260200182805461196090612be4565b80156119ad5780601f10611982576101008083540402835291602001916119ad565b820191906000526020600020905b81548152906001019060200180831161199057829003601f168201915b50505050509050919050565b60006119c3611fb3565b905060008151116119e35760405180602001604052806000815250611a11565b806119ed84611fc2565b600a604051602001611a019392919061283f565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611a425760405162461bcd60e51b81526004016109ab906129e9565b610b238183611e02565b6006546001600160a01b03163314611a765760405162461bcd60e51b81526004016109ab906129e9565b6001600160a01b038116611adb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ab565b611ae481611e5f565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b1c826113be565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bce5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109ab565b6000611bd9836113be565b9050806001600160a01b0316846001600160a01b03161480611c145750836001600160a01b0316611c0984610936565b6001600160a01b0316145b80611c4457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c5f826113be565b6001600160a01b031614611cc75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109ab565b6001600160a01b038216611d295760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109ab565b611d34600082611ae7565b6001600160a01b0383166000908152600360205260408120805460019290611d5d908490612ba1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d8b908490612b56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611df985846120c0565b14949350505050565b60005b81811015610ae157336000908152601360205260408120805491611e2883612c1f565b9190505550611e3b600880546001019055565b611e4d83611e4860085490565b612134565b80611e5781612c1f565b915050611e05565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109ab565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f8b848484611c4c565b611f978484848461214e565b61116f5760405162461bcd60e51b81526004016109ab90612997565b6060600980546108b390612be4565b606081611fe65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120105780611ffa81612c1f565b91506120099050600a83612b6e565b9150611fea565b60008167ffffffffffffffff81111561202b5761202b612c90565b6040519080825280601f01601f191660200182016040528015612055576020820181803683370190505b5090505b8415611c445761206a600183612ba1565b9150612077600a86612c3a565b612082906030612b56565b60f81b81838151811061209757612097612c7a565b60200101906001600160f81b031916908160001a9053506120b9600a86612b6e565b9450612059565b600081815b845181101561212c5760008582815181106120e2576120e2612c7a565b602002602001015190508083116121085760008381526020829052604090209250612119565b600081815260208490526040902092505b508061212481612c1f565b9150506120c5565b509392505050565b610b2382826040518060200160405280600081525061225b565b60006001600160a01b0384163b1561225057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612192903390899088908890600401612903565b602060405180830381600087803b1580156121ac57600080fd5b505af19250505080156121dc575060408051601f3d908101601f191682019092526121d991810190612745565b60015b612236573d80801561220a576040519150601f19603f3d011682016040523d82523d6000602084013e61220f565b606091505b50805161222e5760405162461bcd60e51b81526004016109ab90612997565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c44565b506001949350505050565b612265838361228e565b612272600084848461214e565b610ae15760405162461bcd60e51b81526004016109ab90612997565b6001600160a01b0382166122e45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109ab565b6000818152600260205260409020546001600160a01b0316156123495760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109ab565b6001600160a01b0382166000908152600360205260408120805460019290612372908490612b56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546123dc90612be4565b90600052602060002090601f0160209004810192826123fe5760008555612444565b82601f1061241757805160ff1916838001178555612444565b82800160010185558215612444579182015b82811115612444578251825591602001919060010190612429565b50612450929150612454565b5090565b5b808211156124505760008155600101612455565b600067ffffffffffffffff8084111561248457612484612c90565b604051601f8501601f19908116603f011681019082821181831017156124ac576124ac612c90565b816040528093508581528686860111156124c557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146124f657600080fd5b919050565b803580151581146124f657600080fd5b803563ffffffff811681146124f657600080fd5b60006020828403121561253157600080fd5b611a11826124df565b6000806040838503121561254d57600080fd5b612556836124df565b9150612564602084016124df565b90509250929050565b60008060006060848603121561258257600080fd5b61258b846124df565b9250612599602085016124df565b9150604084013590509250925092565b600080600080608085870312156125bf57600080fd5b6125c8856124df565b93506125d6602086016124df565b925060408501359150606085013567ffffffffffffffff8111156125f957600080fd5b8501601f8101871361260a57600080fd5b61261987823560208401612469565b91505092959194509250565b6000806040838503121561263857600080fd5b612641836124df565b9150612564602084016124fb565b6000806040838503121561266257600080fd5b61266b836124df565b946020939093013593505050565b60008060006040848603121561268e57600080fd5b833567ffffffffffffffff808211156126a657600080fd5b818601915086601f8301126126ba57600080fd5b8135818111156126c957600080fd5b8760208260051b85010111156126de57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561270657600080fd5b611a11826124fb565b60006020828403121561272157600080fd5b5035919050565b60006020828403121561273a57600080fd5b8135611a1181612ca6565b60006020828403121561275757600080fd5b8151611a1181612ca6565b60006020828403121561277457600080fd5b813567ffffffffffffffff81111561278b57600080fd5b8201601f8101841361279c57600080fd5b611c4484823560208401612469565b600080604083850312156127be57600080fd5b82359150612564602084016124df565b6000602082840312156127e057600080fd5b611a118261250b565b600080604083850312156127fc57600080fd5b6128058361250b565b91506125646020840161250b565b6000815180845261282b816020860160208601612bb8565b601f01601f19169290920160200192915050565b6000845160206128528285838a01612bb8565b8551918401916128658184848a01612bb8565b8554920191600090600181811c908083168061288257607f831692505b8583108114156128a057634e487b7160e01b85526022600452602485fd5b8080156128b457600181146128c5576128f2565b60ff198516885283880195506128f2565b60008b81526020902060005b858110156128ea5781548a8201529084019088016128d1565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061293690830184612813565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129785783518352928401929184019160010161295c565b50909695505050505050565b602081526000611a116020830184612813565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526037908201527f496e76616c6964206d696e7420616d6f756e742e2053686f756c64206265206c60408201527f657373207468616e206f7220657175616c20746f203521000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f557365722065786365656473206d6178206d696e74206c696d6974207065722060408201526677616c6c65742160c81b606082015260800190565b60208082526023908201527f43616e2774206d696e74207468726f75676820616e6f7468657220636f6e74726040820152621858dd60ea1b606082015260800190565b60008219821115612b6957612b69612c4e565b500190565b600082612b7d57612b7d612c64565b500490565b6000816000190483118215151615612b9c57612b9c612c4e565b500290565b600082821015612bb357612bb3612c4e565b500390565b60005b83811015612bd3578181015183820152602001612bbb565b8381111561116f5750506000910152565b600181811c90821680612bf857607f821691505b60208210811415612c1957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c3357612c33612c4e565b5060010190565b600082612c4957612c49612c64565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ae457600080fdfea26469706673582212205b88a83335e6d3985689e11537576ad1436288d4f2b574cce8880c16e4b29fe464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000e5448452041564f4341444f4f445a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341564f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d64455164574572766846413553534e68454478614245354e53596157683553326b69596d47353761637742532f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d504b774555505943444a6d4c65315342454134535a6739364d7379733636386555643979594e5757686e65612f00000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636352211e1161014f578063a0712d68116100c1578063c87b56dd1161007a578063c87b56dd14610738578063d5abeb0114610758578063e985e9c51461076e578063efbd73f4146107b7578063f2fde38b146107d7578063fd88fa69146107f757600080fd5b8063a0712d681461069a578063a22cb465146106ad578063a45ba8e7146106cd578063b071401b146106e2578063b228d92514610702578063b88d4fde1461071857600080fd5b80637cb64759116101135780637cb64759146105f15780637ec4a659146106115780638da5cb5b146106315780639423ad261461064f57806394354fd01461066f57806395d89b411461068557600080fd5b80636352211e1461054f57806363e6ffdd1461056f57806370a082311461059c578063715018a6146105bc5780637699cb91146105d157600080fd5b80632eb4a7ab116101f357806345696963116101ac57806345696963146104a65780634fdd43cb146104c657806351830227146104e65780635503a0e8146105065780635c975abb1461051b57806362b99ad41461053a57600080fd5b80632eb4a7ab146103f95780633bd649681461040f5780633ccfd60b1461042457806342842e0e14610439578063438b63001461045957806344a0d68a1461048657600080fd5b806316ba10e01161024557806316ba10e01461035757806316c38b3c1461037757806318160ddd146103975780631ad874b4146103ac57806323b872dd146103c65780632904e6d9146103e657600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b31461031157806313faede614610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004612728565b610852565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc6108a4565b6040516102ae9190612984565b3480156102e557600080fd5b506102f96102f436600461270f565b610936565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c36600461264f565b6109d0565b005b34801561033f57600080fd5b50610349600d5481565b6040519081526020016102ae565b34801561036357600080fd5b50610331610372366004612762565b610ae6565b34801561038357600080fd5b506103316103923660046126f4565b610b27565b3480156103a357600080fd5b50610349610b6b565b3480156103b857600080fd5b506012546102a29060ff1681565b3480156103d257600080fd5b506103316103e136600461256d565b610b7b565b6103316103f4366004612679565b610bac565b34801561040557600080fd5b5061034960075481565b34801561041b57600080fd5b50610331610f20565b34801561043057600080fd5b50610331610f5d565b34801561044557600080fd5b5061033161045436600461256d565b611175565b34801561046557600080fd5b5061047961047436600461251f565b611190565b6040516102ae9190612940565b34801561049257600080fd5b506103316104a136600461270f565b611271565b3480156104b257600080fd5b506103316104c13660046127ce565b6112a0565b3480156104d257600080fd5b506103316104e1366004612762565b6112e6565b3480156104f257600080fd5b506012546102a29062010000900460ff1681565b34801561051257600080fd5b506102cc611323565b34801561052757600080fd5b506012546102a290610100900460ff1681565b34801561054657600080fd5b506102cc6113b1565b34801561055b57600080fd5b506102f961056a36600461270f565b6113be565b34801561057b57600080fd5b5061034961058a36600461251f565b60136020526000908152604090205481565b3480156105a857600080fd5b506103496105b736600461251f565b611435565b3480156105c857600080fd5b506103316114bc565b3480156105dd57600080fd5b506103316105ec3660046127e9565b6114f2565b3480156105fd57600080fd5b5061033161060c36600461270f565b61154c565b34801561061d57600080fd5b5061033161062c366004612762565b61157b565b34801561063d57600080fd5b506006546001600160a01b03166102f9565b34801561065b57600080fd5b5061033161066a3660046126f4565b6115b8565b34801561067b57600080fd5b50610349600f5481565b34801561069157600080fd5b506102cc6115f5565b6103316106a836600461270f565b611604565b3480156106b957600080fd5b506103316106c8366004612625565b61181f565b3480156106d957600080fd5b506102cc61182a565b3480156106ee57600080fd5b506103316106fd36600461270f565b611837565b34801561070e57600080fd5b5061034960105481565b34801561072457600080fd5b506103316107333660046125a9565b611866565b34801561074457600080fd5b506102cc61075336600461270f565b611898565b34801561076457600080fd5b50610349600e5481565b34801561077a57600080fd5b506102a261078936600461253a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107c357600080fd5b506103316107d23660046127ab565b611a18565b3480156107e357600080fd5b506103316107f236600461251f565b611a4c565b34801561080357600080fd5b5060115461082b9063ffffffff808216916401000000008104821691600160401b9091041683565b6040805163ffffffff948516815292841660208401529216918101919091526060016102ae565b60006001600160e01b031982166380ac58cd60e01b148061088357506001600160e01b03198216635b5e139f60e01b145b8061089e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108b390612be4565b80601f01602080910402602001604051908101604052809291908181526020018280546108df90612be4565b801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109db826113be565b9050806001600160a01b0316836001600160a01b03161415610a495760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109ab565b336001600160a01b0382161480610a655750610a658133610789565b610ad75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109ab565b610ae18383611ae7565b505050565b6006546001600160a01b03163314610b105760405162461bcd60e51b81526004016109ab906129e9565b8051610b2390600a9060208401906123d0565b5050565b6006546001600160a01b03163314610b515760405162461bcd60e51b81526004016109ab906129e9565b601280549115156101000261ff0019909216919091179055565b6000610b7660085490565b905090565b610b853382611b55565b610ba15760405162461bcd60e51b81526004016109ab90612a7b565b610ae1838383611c4c565b80333214610bcc5760405162461bcd60e51b81526004016109ab90612b13565b600081118015610bde5750600f548111155b610bfa5760405162461bcd60e51b81526004016109ab90612a1e565b600e5481610c0760085490565b610c119190612b56565b1115610c565760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109ab565b80600d54610c649190612b82565b341015610ca95760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109ab565b60105433600090815260136020526040902054610cc7908390612b56565b1115610ce55760405162461bcd60e51b81526004016109ab90612acc565b6040805160608101825260115463ffffffff8082168352640100000000820481166020840152600160401b909104169181019190915260125460ff16610d645760405162461bcd60e51b815260206004820152601460248201527350726573616c65204e6f7420596574204c69766560601b60448201526064016109ab565b805163ffffffff164210801590610d845750806020015163ffffffff1642105b610dc95760405162461bcd60e51b815260206004820152601660248201527550726573616c65206973206e6f74206163746976652160501b60448201526064016109ab565b6040808201513360009081526013602052919091205463ffffffff90911690610df3908590612b56565b1115610e575760405162461bcd60e51b815260206004820152602d60248201527f557365722065786365656473206d6178206d696e74207065722077686974656c60448201526c69737465642077616c6c65742160981b60648201526084016109ab565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610ed1868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506007549150849050611dec565b610f0e5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210283937b7b31760911b60448201526064016109ab565b610f183385611e02565b505050505050565b6006546001600160a01b03163314610f4a5760405162461bcd60e51b81526004016109ab906129e9565b6012805462ff0000191662010000179055565b6006546001600160a01b03163314610f875760405162461bcd60e51b81526004016109ab906129e9565b600073184b4274671213c843baa9539cabbf50d5290ba96064610fab476008612b82565b610fb59190612b6e565b604051600081818185875af1925050503d8060008114610ff1576040519150601f19603f3d011682016040523d82523d6000602084013e610ff6565b606091505b505090508061100457600080fd5b600073e2d9871835441739b73a7a4d46e7da29817400296064611028476006612b82565b6110329190612b6e565b604051600081818185875af1925050503d806000811461106e576040519150601f19603f3d011682016040523d82523d6000602084013e611073565b606091505b505090508061108157600080fd5b600073144720e2677fcaab73c63229e3d1eb6ca4a3c56c60646110a5476006612b82565b6110af9190612b6e565b604051600081818185875af1925050503d80600081146110eb576040519150601f19603f3d011682016040523d82523d6000602084013e6110f0565b606091505b50509050806110fe57600080fd5b60006111126006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461115c576040519150601f19603f3d011682016040523d82523d6000602084013e611161565b606091505b505090508061116f57600080fd5b50505050565b610ae183838360405180602001604052806000815250611866565b6060600061119d83611435565b905060008167ffffffffffffffff8111156111ba576111ba612c90565b6040519080825280602002602001820160405280156111e3578160200160208202803683370190505b509050600160005b83811080156111fc5750600e548211155b1561126757600061120c836113be565b9050866001600160a01b0316816001600160a01b03161415611254578284838151811061123b5761123b612c7a565b60209081029190910101528161125081612c1f565b9250505b8261125e81612c1f565b935050506111eb565b5090949350505050565b6006546001600160a01b0316331461129b5760405162461bcd60e51b81526004016109ab906129e9565b600d55565b6006546001600160a01b031633146112ca5760405162461bcd60e51b81526004016109ab906129e9565b600c805463ffffffff191663ffffffff92909216919091179055565b6006546001600160a01b031633146113105760405162461bcd60e51b81526004016109ab906129e9565b8051610b2390600b9060208401906123d0565b600a805461133090612be4565b80601f016020809104026020016040519081016040528092919081815260200182805461135c90612be4565b80156113a95780601f1061137e576101008083540402835291602001916113a9565b820191906000526020600020905b81548152906001019060200180831161138c57829003601f168201915b505050505081565b6009805461133090612be4565b6000818152600260205260408120546001600160a01b03168061089e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109ab565b60006001600160a01b0382166114a05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109ab565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146114e65760405162461bcd60e51b81526004016109ab906129e9565b6114f06000611e5f565b565b6006546001600160a01b0316331461151c5760405162461bcd60e51b81526004016109ab906129e9565b6011805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b6006546001600160a01b031633146115765760405162461bcd60e51b81526004016109ab906129e9565b600755565b6006546001600160a01b031633146115a55760405162461bcd60e51b81526004016109ab906129e9565b8051610b239060099060208401906123d0565b6006546001600160a01b031633146115e25760405162461bcd60e51b81526004016109ab906129e9565b6012805460ff1916911515919091179055565b6060600180546108b390612be4565b803332146116245760405162461bcd60e51b81526004016109ab90612b13565b6000811180156116365750600f548111155b6116525760405162461bcd60e51b81526004016109ab90612a1e565b600e548161165f60085490565b6116699190612b56565b11156116ae5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109ab565b80600d546116bc9190612b82565b3410156117015760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109ab565b6010543360009081526013602052604090205461171f908390612b56565b111561173d5760405162461bcd60e51b81526004016109ab90612acc565b601254610100900460ff16156117bb5760405162461bcd60e51b815260206004820152603760248201527f5075626c6963206d696e74696e67206973207061757365642e2050726573616c60448201527f652069732070726f6261626c7920676f696e67206f6e2e00000000000000000060648201526084016109ab565b600c544263ffffffff90911611156118155760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e00000000000060448201526064016109ab565b610b233383611e02565b610b23338383611eb1565b600b805461133090612be4565b6006546001600160a01b031633146118615760405162461bcd60e51b81526004016109ab906129e9565b600f55565b6118703383611b55565b61188c5760405162461bcd60e51b81526004016109ab90612a7b565b61116f84848484611f80565b6000818152600260205260409020546060906001600160a01b03166119175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ab565b60125462010000900460ff166119b957600b805461193490612be4565b80601f016020809104026020016040519081016040528092919081815260200182805461196090612be4565b80156119ad5780601f10611982576101008083540402835291602001916119ad565b820191906000526020600020905b81548152906001019060200180831161199057829003601f168201915b50505050509050919050565b60006119c3611fb3565b905060008151116119e35760405180602001604052806000815250611a11565b806119ed84611fc2565b600a604051602001611a019392919061283f565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611a425760405162461bcd60e51b81526004016109ab906129e9565b610b238183611e02565b6006546001600160a01b03163314611a765760405162461bcd60e51b81526004016109ab906129e9565b6001600160a01b038116611adb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ab565b611ae481611e5f565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b1c826113be565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bce5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109ab565b6000611bd9836113be565b9050806001600160a01b0316846001600160a01b03161480611c145750836001600160a01b0316611c0984610936565b6001600160a01b0316145b80611c4457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c5f826113be565b6001600160a01b031614611cc75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109ab565b6001600160a01b038216611d295760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109ab565b611d34600082611ae7565b6001600160a01b0383166000908152600360205260408120805460019290611d5d908490612ba1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d8b908490612b56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611df985846120c0565b14949350505050565b60005b81811015610ae157336000908152601360205260408120805491611e2883612c1f565b9190505550611e3b600880546001019055565b611e4d83611e4860085490565b612134565b80611e5781612c1f565b915050611e05565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109ab565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f8b848484611c4c565b611f978484848461214e565b61116f5760405162461bcd60e51b81526004016109ab90612997565b6060600980546108b390612be4565b606081611fe65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120105780611ffa81612c1f565b91506120099050600a83612b6e565b9150611fea565b60008167ffffffffffffffff81111561202b5761202b612c90565b6040519080825280601f01601f191660200182016040528015612055576020820181803683370190505b5090505b8415611c445761206a600183612ba1565b9150612077600a86612c3a565b612082906030612b56565b60f81b81838151811061209757612097612c7a565b60200101906001600160f81b031916908160001a9053506120b9600a86612b6e565b9450612059565b600081815b845181101561212c5760008582815181106120e2576120e2612c7a565b602002602001015190508083116121085760008381526020829052604090209250612119565b600081815260208490526040902092505b508061212481612c1f565b9150506120c5565b509392505050565b610b2382826040518060200160405280600081525061225b565b60006001600160a01b0384163b1561225057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612192903390899088908890600401612903565b602060405180830381600087803b1580156121ac57600080fd5b505af19250505080156121dc575060408051601f3d908101601f191682019092526121d991810190612745565b60015b612236573d80801561220a576040519150601f19603f3d011682016040523d82523d6000602084013e61220f565b606091505b50805161222e5760405162461bcd60e51b81526004016109ab90612997565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c44565b506001949350505050565b612265838361228e565b612272600084848461214e565b610ae15760405162461bcd60e51b81526004016109ab90612997565b6001600160a01b0382166122e45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109ab565b6000818152600260205260409020546001600160a01b0316156123495760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109ab565b6001600160a01b0382166000908152600360205260408120805460019290612372908490612b56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546123dc90612be4565b90600052602060002090601f0160209004810192826123fe5760008555612444565b82601f1061241757805160ff1916838001178555612444565b82800160010185558215612444579182015b82811115612444578251825591602001919060010190612429565b50612450929150612454565b5090565b5b808211156124505760008155600101612455565b600067ffffffffffffffff8084111561248457612484612c90565b604051601f8501601f19908116603f011681019082821181831017156124ac576124ac612c90565b816040528093508581528686860111156124c557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146124f657600080fd5b919050565b803580151581146124f657600080fd5b803563ffffffff811681146124f657600080fd5b60006020828403121561253157600080fd5b611a11826124df565b6000806040838503121561254d57600080fd5b612556836124df565b9150612564602084016124df565b90509250929050565b60008060006060848603121561258257600080fd5b61258b846124df565b9250612599602085016124df565b9150604084013590509250925092565b600080600080608085870312156125bf57600080fd5b6125c8856124df565b93506125d6602086016124df565b925060408501359150606085013567ffffffffffffffff8111156125f957600080fd5b8501601f8101871361260a57600080fd5b61261987823560208401612469565b91505092959194509250565b6000806040838503121561263857600080fd5b612641836124df565b9150612564602084016124fb565b6000806040838503121561266257600080fd5b61266b836124df565b946020939093013593505050565b60008060006040848603121561268e57600080fd5b833567ffffffffffffffff808211156126a657600080fd5b818601915086601f8301126126ba57600080fd5b8135818111156126c957600080fd5b8760208260051b85010111156126de57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561270657600080fd5b611a11826124fb565b60006020828403121561272157600080fd5b5035919050565b60006020828403121561273a57600080fd5b8135611a1181612ca6565b60006020828403121561275757600080fd5b8151611a1181612ca6565b60006020828403121561277457600080fd5b813567ffffffffffffffff81111561278b57600080fd5b8201601f8101841361279c57600080fd5b611c4484823560208401612469565b600080604083850312156127be57600080fd5b82359150612564602084016124df565b6000602082840312156127e057600080fd5b611a118261250b565b600080604083850312156127fc57600080fd5b6128058361250b565b91506125646020840161250b565b6000815180845261282b816020860160208601612bb8565b601f01601f19169290920160200192915050565b6000845160206128528285838a01612bb8565b8551918401916128658184848a01612bb8565b8554920191600090600181811c908083168061288257607f831692505b8583108114156128a057634e487b7160e01b85526022600452602485fd5b8080156128b457600181146128c5576128f2565b60ff198516885283880195506128f2565b60008b81526020902060005b858110156128ea5781548a8201529084019088016128d1565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061293690830184612813565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156129785783518352928401929184019160010161295c565b50909695505050505050565b602081526000611a116020830184612813565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526037908201527f496e76616c6964206d696e7420616d6f756e742e2053686f756c64206265206c60408201527f657373207468616e206f7220657175616c20746f203521000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f557365722065786365656473206d6178206d696e74206c696d6974207065722060408201526677616c6c65742160c81b606082015260800190565b60208082526023908201527f43616e2774206d696e74207468726f75676820616e6f7468657220636f6e74726040820152621858dd60ea1b606082015260800190565b60008219821115612b6957612b69612c4e565b500190565b600082612b7d57612b7d612c64565b500490565b6000816000190483118215151615612b9c57612b9c612c4e565b500290565b600082821015612bb357612bb3612c4e565b500390565b60005b83811015612bd3578181015183820152602001612bbb565b8381111561116f5750506000910152565b600181811c90821680612bf857607f821691505b60208210811415612c1957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c3357612c33612c4e565b5060010190565b600082612c4957612c49612c64565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ae457600080fdfea26469706673582212205b88a83335e6d3985689e11537576ad1436288d4f2b574cce8880c16e4b29fe464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000e5448452041564f4341444f4f445a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341564f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d64455164574572766846413553534e68454478614245354e53596157683553326b69596d47353761637742532f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d504b774555505943444a6d4c65315342454134535a6739364d7379733636386555643979594e5757686e65612f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): THE AVOCADOODZ
Arg [1] : _symbol (string): AVO
Arg [2] : _hiddenMetadataUri (string): ipfs://QmdEQdWErvhFA5SSNhEDxaBE5NSYaWh5S2kiYmG57acwBS/hidden.json
Arg [3] : initialBaseUri (string): ipfs://QmPKwEUPYCDJmLe1SBEA4SZg96Msys668eUd9yYNWWhnea/

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 5448452041564f4341444f4f445a000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 41564f0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [9] : 697066733a2f2f516d64455164574572766846413553534e6845447861424535
Arg [10] : 4e53596157683553326b69596d47353761637742532f68696464656e2e6a736f
Arg [11] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [13] : 697066733a2f2f516d504b774555505943444a6d4c65315342454134535a6739
Arg [14] : 364d7379733636386555643979594e5757686e65612f00000000000000000000


Deployed Bytecode Sourcemap

40564:6420:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27930:305;;;;;;;;;;-1:-1:-1;27930:305:0;;;;;:::i;:::-;;:::i;:::-;;;9797:14:1;;9790:22;9772:41;;9760:2;9745:18;27930:305:0;;;;;;;;28875:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30434:221::-;;;;;;;;;;-1:-1:-1;30434:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8458:32:1;;;8440:51;;8428:2;8413:18;30434:221:0;8294:203:1;29957:411:0;;;;;;;;;;-1:-1:-1;29957:411:0;;;;;:::i;:::-;;:::i;:::-;;40978:33;;;;;;;;;;;;;;;;;;;9970:25:1;;;9958:2;9943:18;40978:33:0;9824:177:1;45364:100:0;;;;;;;;;;-1:-1:-1;45364:100:0;;;;;:::i;:::-;;:::i;45470:77::-;;;;;;;;;;-1:-1:-1;45470:77:0;;;;;:::i;:::-;;:::i;43160:89::-;;;;;;;;;;;;;:::i;41177:28::-;;;;;;;;;;-1:-1:-1;41177:28:0;;;;;;;;31184:339;;;;;;;;;;-1:-1:-1;31184:339:0;;;;;:::i;:::-;;:::i;42478:674::-;;;;;;:::i;:::-;;:::i;40684:94::-;;;;;;;;;;;;;;;;44830:68;;;;;;;;;;;;;:::i;46067:560::-;;;;;;;;;;;;;:::i;31594:185::-;;;;;;;;;;-1:-1:-1;31594:185:0;;;;;:::i;:::-;;:::i;43689:635::-;;;;;;;;;;-1:-1:-1;43689:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44904:74::-;;;;;;;;;;-1:-1:-1;44904:74:0;;;;;:::i;:::-;;:::i;45642:127::-;;;;;;;;;;-1:-1:-1;45642:127:0;;;;;:::i;:::-;;:::i;45120:132::-;;;;;;;;;;-1:-1:-1;45120:132:0;;;;;:::i;:::-;;:::i;41266:20::-;;;;;;;;;;-1:-1:-1;41266:20:0;;;;;;;;;;;40867:33;;;;;;;;;;;;;:::i;41210:26::-;;;;;;;;;;-1:-1:-1;41210:26:0;;;;;;;;;;;40823:28;;;;;;;;;;;;;:::i;28569:239::-;;;;;;;;;;-1:-1:-1;28569:239:0;;;;;:::i;:::-;;:::i;41293:46::-;;;;;;;;;;-1:-1:-1;41293:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;28299:208;;;;;;;;;;-1:-1:-1;28299:208:0;;;;;:::i;:::-;;:::i;8918:103::-;;;;;;;;;;;;;:::i;45775:182::-;;;;;;;;;;-1:-1:-1;45775:182:0;;;;;:::i;:::-;;:::i;45963:98::-;;;;;;;;;;-1:-1:-1;45963:98:0;;;;;:::i;:::-;;:::i;45258:100::-;;;;;;;;;;-1:-1:-1;45258:100:0;;;;;:::i;:::-;;:::i;8267:87::-;;;;;;;;;;-1:-1:-1;8340:6:0;;-1:-1:-1;;;;;8340:6:0;8267:87;;45553:83;;;;;;;;;;-1:-1:-1;45553:83:0;;;;;:::i;:::-;;:::i;41052:37::-;;;;;;;;;;;;;;;;29044:104;;;;;;;;;;;;;:::i;43255:293::-;;;;;;:::i;:::-;;:::i;30727:155::-;;;;;;;;;;-1:-1:-1;30727:155:0;;;;;:::i;:::-;;:::i;40905:31::-;;;;;;;;;;;;;:::i;44984:130::-;;;;;;;;;;-1:-1:-1;44984:130:0;;;;;:::i;:::-;;:::i;41094:35::-;;;;;;;;;;;;;;;;31850:328;;;;;;;;;;-1:-1:-1;31850:328:0;;;;;:::i;:::-;;:::i;44330:494::-;;;;;;;;;;-1:-1:-1;44330:494:0;;;;;:::i;:::-;;:::i;41016:31::-;;;;;;;;;;;;;;;;30953:164;;;;;;;;;;-1:-1:-1;30953:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31074:25:0;;;31050:4;31074:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30953:164;43556:127;;;;;;;;;;-1:-1:-1;43556:127:0;;;;;:::i;:::-;;:::i;9176:201::-;;;;;;;;;;-1:-1:-1;9176:201:0;;;;;:::i;:::-;;:::i;41136:34::-;;;;;;;;;;-1:-1:-1;41136:34:0;;;;;;;;;;;;;;;-1:-1:-1;;;41136:34:0;;;;;;;;;;21169:10:1;21206:15;;;21188:34;;21258:15;;;21253:2;21238:18;;21231:43;21310:15;;21290:18;;;21283:43;;;;21147:2;21132:18;41136:34:0;20963:369:1;27930:305:0;28032:4;-1:-1:-1;;;;;;28069:40:0;;-1:-1:-1;;;28069:40:0;;:105;;-1:-1:-1;;;;;;;28126:48:0;;-1:-1:-1;;;28126:48:0;28069:105;:158;;;-1:-1:-1;;;;;;;;;;20808:40:0;;;28191:36;28049:178;27930:305;-1:-1:-1;;27930:305:0:o;28875:100::-;28929:13;28962:5;28955:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28875:100;:::o;30434:221::-;30510:7;33777:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33777:16:0;30530:73;;;;-1:-1:-1;;;30530:73:0;;15792:2:1;30530:73:0;;;15774:21:1;15831:2;15811:18;;;15804:30;15870:34;15850:18;;;15843:62;-1:-1:-1;;;15921:18:1;;;15914:42;15973:19;;30530:73:0;;;;;;;;;-1:-1:-1;30623:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30623:24:0;;30434:221::o;29957:411::-;30038:13;30054:23;30069:7;30054:14;:23::i;:::-;30038:39;;30102:5;-1:-1:-1;;;;;30096:11:0;:2;-1:-1:-1;;;;;30096:11:0;;;30088:57;;;;-1:-1:-1;;;30088:57:0;;17816:2:1;30088:57:0;;;17798:21:1;17855:2;17835:18;;;17828:30;17894:34;17874:18;;;17867:62;-1:-1:-1;;;17945:18:1;;;17938:31;17986:19;;30088:57:0;17614:397:1;30088:57:0;7071:10;-1:-1:-1;;;;;30180:21:0;;;;:62;;-1:-1:-1;30205:37:0;30222:5;7071:10;30953:164;:::i;30205:37::-;30158:168;;;;-1:-1:-1;;;30158:168:0;;13836:2:1;30158:168:0;;;13818:21:1;13875:2;13855:18;;;13848:30;13914:34;13894:18;;;13887:62;13985:26;13965:18;;;13958:54;14029:19;;30158:168:0;13634:420:1;30158:168:0;30339:21;30348:2;30352:7;30339:8;:21::i;:::-;30027:341;29957:411;;:::o;45364:100::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;45436:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45364:100:::0;:::o;45470:77::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;45526:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;45526:15:0;;::::1;::::0;;;::::1;::::0;;45470:77::o;43160:89::-;43204:7;43227:16;:6;3687:14;;3595:114;43227:16;43220:23;;43160:89;:::o;31184:339::-;31379:41;7071:10;31412:7;31379:18;:41::i;:::-;31371:103;;;;-1:-1:-1;;;31371:103:0;;;;;;;:::i;:::-;31487:28;31497:4;31503:2;31507:7;31487:9;:28::i;42478:674::-;42587:11;41977:10;41991:9;41977:23;41969:71;;;;-1:-1:-1;;;41969:71:0;;;;;;;:::i;:::-;42091:1;42077:11;:15;:52;;;;;42111:18;;42096:11;:33;;42077:52;42069:120;;;;-1:-1:-1;;;42069:120:0;;;;;;;:::i;:::-;42238:9;;42223:11;42204:16;:6;3687:14;;3595:114;42204:16;:30;;;;:::i;:::-;:43;;42196:76;;;;-1:-1:-1;;;42196:76:0;;18632:2:1;42196:76:0;;;18614:21:1;18671:2;18651:18;;;18644:30;-1:-1:-1;;;18690:18:1;;;18683:50;18750:18;;42196:76:0;18430:344:1;42196:76:0;42307:11;42300:4;;:18;;;;:::i;:::-;42287:9;:31;;42279:63;;;;-1:-1:-1;;;42279:63:0;;20635:2:1;42279:63:0;;;20617:21:1;20674:2;20654:18;;;20647:30;-1:-1:-1;;;20693:18:1;;;20686:49;20752:18;;42279:63:0;20433:343:1;42279:63:0;42398:16;;42369:10;42357:23;;;;:11;:23;;;;;;:37;;42383:11;;42357:37;:::i;:::-;:57;;42349:109;;;;-1:-1:-1;;;42349:109:0;;;;;;;:::i;:::-;42607:44:::1;::::0;;::::1;::::0;::::1;::::0;;42638:13:::1;42607:44:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;::::1;::::0;-1:-1:-1;;;42607:44:0;;::::1;;::::0;;;;;;;42668:9:::1;::::0;::::1;;42660:42;;;::::0;-1:-1:-1;;;42660:42:0;;15082:2:1;42660:42:0::1;::::0;::::1;15064:21:1::0;15121:2;15101:18;;;15094:30;-1:-1:-1;;;15140:18:1;;;15133:50;15200:18;;42660:42:0::1;14880:344:1::0;42660:42:0::1;42736:17:::0;;42717:36:::1;;:15;:36;::::0;::::1;::::0;:73:::1;;;42775:7;:15;;;42757:33;;:15;:33;42717:73;42709:108;;;::::0;-1:-1:-1;;;42709:108:0;;13142:2:1;42709:108:0::1;::::0;::::1;13124:21:1::0;13181:2;13161:18;;;13154:30;-1:-1:-1;;;13200:18:1;;;13193:52;13262:18;;42709:108:0::1;12940:346:1::0;42709:108:0::1;42873:33;::::0;;::::1;::::0;42844:10:::1;42832:23;::::0;;;:11:::1;:23;::::0;;;;;;:74:::1;::::0;;::::1;::::0;:37:::1;::::0;42858:11;;42832:37:::1;:::i;:::-;:74;;42824:132;;;::::0;-1:-1:-1;;;42824:132:0;;18218:2:1;42824:132:0::1;::::0;::::1;18200:21:1::0;18257:2;18237:18;;;18230:30;18296:34;18276:18;;;18269:62;-1:-1:-1;;;18347:18:1;;;18340:43;18400:19;;42824:132:0::1;18016:409:1::0;42824:132:0::1;42988:28;::::0;-1:-1:-1;;43005:10:0::1;6467:2:1::0;6463:15;6459:53;42988:28:0::1;::::0;::::1;6447:66:1::0;42963:12:0::1;::::0;6529::1;;42988:28:0::1;;;;;;;;;;;;42978:39;;;;;;42963:54;;43032:50;43051:12;;43032:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;43065:10:0::1;::::0;;-1:-1:-1;43077:4:0;;-1:-1:-1;43032:18:0::1;:50::i;:::-;43024:77;;;::::0;-1:-1:-1;;;43024:77:0;;13493:2:1;43024:77:0::1;::::0;::::1;13475:21:1::0;13532:2;13512:18;;;13505:30;-1:-1:-1;;;13551:18:1;;;13544:44;13605:18;;43024:77:0::1;13291:338:1::0;43024:77:0::1;43112:34;43122:10;43134:11;43112:9;:34::i;:::-;42600:552;;42478:674:::0;;;;:::o;44830:68::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;44877:8:::1;:15:::0;;-1:-1:-1;;44877:15:0::1;::::0;::::1;::::0;;44830:68::o;46067:560::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;46112:8:::1;46134:42;46218:3;46190:25;:21;46214:1;46190:25;:::i;:::-;:31;;;;:::i;:::-;46126:100;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46111:115;;;46241:3;46233:12;;;::::0;::::1;;46253:8;46275:42;46359:3;46331:25;:21;46355:1;46331:25;:::i;:::-;:31;;;;:::i;:::-;46267:100;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46252:115;;;46382:3;46374:12;;;::::0;::::1;;46394:8;46416:42;46500:3;46472:25;:21;46496:1;46472:25;:::i;:::-;:31;;;;:::i;:::-;46408:100;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46393:115;;;46523:3;46515:12;;;::::0;::::1;;46535:7;46556;8340:6:::0;;-1:-1:-1;;;;;8340:6:0;;8267:87;46556:7:::1;-1:-1:-1::0;;;;;46548:21:0::1;46577;46548:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46534:69;;;46618:2;46610:11;;;::::0;::::1;;46104:523;;;;46067:560::o:0;31594:185::-;31732:39;31749:4;31755:2;31759:7;31732:39;;;;;;;;;;;;:16;:39::i;43689:635::-;43764:16;43792:23;43818:17;43828:6;43818:9;:17::i;:::-;43792:43;;43842:30;43889:15;43875:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43875:30:0;-1:-1:-1;43842:63:0;-1:-1:-1;43937:1:0;43912:22;43981:309;44006:15;43988;:33;:64;;;;;44043:9;;44025:14;:27;;43988:64;43981:309;;;44063:25;44091:23;44099:14;44091:7;:23::i;:::-;44063:51;;44150:6;-1:-1:-1;;;;;44129:27:0;:17;-1:-1:-1;;;;;44129:27:0;;44125:131;;;44202:14;44169:13;44183:15;44169:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;44229:17;;;;:::i;:::-;;;;44125:131;44266:16;;;;:::i;:::-;;;;44054:236;43981:309;;;-1:-1:-1;44305:13:0;;43689:635;-1:-1:-1;;;;43689:635:0:o;44904:74::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;44960:4:::1;:12:::0;44904:74::o;45642:127::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;45731:19:::1;:32:::0;;-1:-1:-1;;45731:32:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;45642:127::o;45120:132::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;45208:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;40867:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40823:28::-;;;;;;;:::i;28569:239::-;28641:7;28677:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28677:16:0;28712:19;28704:73;;;;-1:-1:-1;;;28704:73:0;;14672:2:1;28704:73:0;;;14654:21:1;14711:2;14691:18;;;14684:30;14750:34;14730:18;;;14723:62;-1:-1:-1;;;14801:18:1;;;14794:39;14850:19;;28704:73:0;14470:405:1;28299:208:0;28371:7;-1:-1:-1;;;;;28399:19:0;;28391:74;;;;-1:-1:-1;;;28391:74:0;;14261:2:1;28391:74:0;;;14243:21:1;14300:2;14280:18;;;14273:30;14339:34;14319:18;;;14312:62;-1:-1:-1;;;14390:18:1;;;14383:40;14440:19;;28391:74:0;14059:406:1;28391:74:0;-1:-1:-1;;;;;;28483:16:0;;;;;:9;:16;;;;;;;28299:208::o;8918:103::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;8983:30:::1;9010:1;8983:18;:30::i;:::-;8918:103::o:0;45775:182::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;45876:13:::1;:36:::0;;::::1;45919:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;45919:32:0;;;45876:36;;;::::1;45919:32:::0;;;;;;;::::1;::::0;;45775:182::o;45963:98::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;46031:10:::1;:24:::0;45963:98::o;45258:100::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;45330:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;45553:83::-:0;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;45612:9:::1;:18:::0;;-1:-1:-1;;45612:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45553:83::o;29044:104::-;29100:13;29133:7;29126:14;;;;;:::i;43255:293::-;43320:11;41977:10;41991:9;41977:23;41969:71;;;;-1:-1:-1;;;41969:71:0;;;;;;;:::i;:::-;42091:1;42077:11;:15;:52;;;;;42111:18;;42096:11;:33;;42077:52;42069:120;;;;-1:-1:-1;;;42069:120:0;;;;;;;:::i;:::-;42238:9;;42223:11;42204:16;:6;3687:14;;3595:114;42204:16;:30;;;;:::i;:::-;:43;;42196:76;;;;-1:-1:-1;;;42196:76:0;;18632:2:1;42196:76:0;;;18614:21:1;18671:2;18651:18;;;18644:30;-1:-1:-1;;;18690:18:1;;;18683:50;18750:18;;42196:76:0;18430:344:1;42196:76:0;42307:11;42300:4;;:18;;;;:::i;:::-;42287:9;:31;;42279:63;;;;-1:-1:-1;;;42279:63:0;;20635:2:1;42279:63:0;;;20617:21:1;20674:2;20654:18;;;20647:30;-1:-1:-1;;;20693:18:1;;;20686:49;20752:18;;42279:63:0;20433:343:1;42279:63:0;42398:16;;42369:10;42357:23;;;;:11;:23;;;;;;:37;;42383:11;;42357:37;:::i;:::-;:57;;42349:109;;;;-1:-1:-1;;;42349:109:0;;;;;;;:::i;:::-;43349:6:::1;::::0;::::1;::::0;::::1;;;43348:7;43340:75;;;::::0;-1:-1:-1;;;43340:75:0;;19399:2:1;43340:75:0::1;::::0;::::1;19381:21:1::0;19438:2;19418:18;;;19411:30;19477:34;19457:18;;;19450:62;19548:25;19528:18;;;19521:53;19591:19;;43340:75:0::1;19197:419:1::0;43340:75:0::1;43430:19;::::0;43453:15:::1;43430:19;::::0;;::::1;:38;;43422:77;;;::::0;-1:-1:-1;;;43422:77:0;;11615:2:1;43422:77:0::1;::::0;::::1;11597:21:1::0;11654:2;11634:18;;;11627:30;11693:28;11673:18;;;11666:56;11739:18;;43422:77:0::1;11413:350:1::0;43422:77:0::1;43508:34;43518:10;43530:11;43508:9;:34::i;30727:155::-:0;30822:52;7071:10;30855:8;30865;30822:18;:52::i;40905:31::-;;;;;;;:::i;44984:130::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;45068:18:::1;:40:::0;44984:130::o;31850:328::-;32025:41;7071:10;32058:7;32025:18;:41::i;:::-;32017:103;;;;-1:-1:-1;;;32017:103:0;;;;;;;:::i;:::-;32131:39;32145:4;32151:2;32155:7;32164:5;32131:13;:39::i;44330:494::-;33753:4;33777:16;;;:7;:16;;;;;;44429:13;;-1:-1:-1;;;;;33777:16:0;44454:98;;;;-1:-1:-1;;;44454:98:0;;16976:2:1;44454:98:0;;;16958:21:1;17015:2;16995:18;;;16988:30;17054:34;17034:18;;;17027:62;-1:-1:-1;;;17105:18:1;;;17098:45;17160:19;;44454:98:0;16774:411:1;44454:98:0;44565:8;;;;;;;44561:64;;44600:17;44593:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44330:494;;;:::o;44561:64::-;44633:28;44664:10;:8;:10::i;:::-;44633:41;;44719:1;44694:14;44688:28;:32;:130;;;;;;;;;;;;;;;;;44756:14;44772:19;:8;:17;:19::i;:::-;44793:9;44739:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44688:130;44681:137;44330:494;-1:-1:-1;;;44330:494:0:o;43556:127::-;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;43644:33:::1;43654:9;43665:11;43644:9;:33::i;9176:201::-:0;8340:6;;-1:-1:-1;;;;;8340:6:0;7071:10;8487:23;8479:68;;;;-1:-1:-1;;;8479:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9265:22:0;::::1;9257:73;;;::::0;-1:-1:-1;;;9257:73:0;;10851:2:1;9257:73:0::1;::::0;::::1;10833:21:1::0;10890:2;10870:18;;;10863:30;10929:34;10909:18;;;10902:62;-1:-1:-1;;;10980:18:1;;;10973:36;11026:19;;9257:73:0::1;10649:402:1::0;9257:73:0::1;9341:28;9360:8;9341:18;:28::i;:::-;9176:201:::0;:::o;37670:174::-;37745:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37745:29:0;-1:-1:-1;;;;;37745:29:0;;;;;;;;:24;;37799:23;37745:24;37799:14;:23::i;:::-;-1:-1:-1;;;;;37790:46:0;;;;;;;;;;;37670:174;;:::o;33982:348::-;34075:4;33777:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33777:16:0;34092:73;;;;-1:-1:-1;;;34092:73:0;;12729:2:1;34092:73:0;;;12711:21:1;12768:2;12748:18;;;12741:30;12807:34;12787:18;;;12780:62;-1:-1:-1;;;12858:18:1;;;12851:42;12910:19;;34092:73:0;12527:408:1;34092:73:0;34176:13;34192:23;34207:7;34192:14;:23::i;:::-;34176:39;;34245:5;-1:-1:-1;;;;;34234:16:0;:7;-1:-1:-1;;;;;34234:16:0;;:51;;;;34278:7;-1:-1:-1;;;;;34254:31:0;:20;34266:7;34254:11;:20::i;:::-;-1:-1:-1;;;;;34254:31:0;;34234:51;:87;;;-1:-1:-1;;;;;;31074:25:0;;;31050:4;31074:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34289:32;34226:96;33982:348;-1:-1:-1;;;;33982:348:0:o;36974:578::-;37133:4;-1:-1:-1;;;;;37106:31:0;:23;37121:7;37106:14;:23::i;:::-;-1:-1:-1;;;;;37106:31:0;;37098:85;;;;-1:-1:-1;;;37098:85:0;;16566:2:1;37098:85:0;;;16548:21:1;16605:2;16585:18;;;16578:30;16644:34;16624:18;;;16617:62;-1:-1:-1;;;16695:18:1;;;16688:39;16744:19;;37098:85:0;16364:405:1;37098:85:0;-1:-1:-1;;;;;37202:16:0;;37194:65;;;;-1:-1:-1;;;37194:65:0;;11970:2:1;37194:65:0;;;11952:21:1;12009:2;11989:18;;;11982:30;12048:34;12028:18;;;12021:62;-1:-1:-1;;;12099:18:1;;;12092:34;12143:19;;37194:65:0;11768:400:1;37194:65:0;37376:29;37393:1;37397:7;37376:8;:29::i;:::-;-1:-1:-1;;;;;37418:15:0;;;;;;:9;:15;;;;;:20;;37437:1;;37418:15;:20;;37437:1;;37418:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37449:13:0;;;;;;:9;:13;;;;;:18;;37466:1;;37449:13;:18;;37466:1;;37449:18;:::i;:::-;;;;-1:-1:-1;;37478:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37478:21:0;-1:-1:-1;;;;;37478:21:0;;;;;;;;;37517:27;;37478:16;;37517:27;;;;;;;36974:578;;;:::o;1258:190::-;1383:4;1436;1407:25;1420:5;1427:4;1407:12;:25::i;:::-;:33;;1258:190;-1:-1:-1;;;;1258:190:0:o;46633:238::-;46713:9;46708:158;46732:11;46728:1;:15;46708:158;;;46771:10;46759:23;;;;:11;:23;;;;;:25;;;;;;:::i;:::-;;;;;;46793:18;:6;3806:19;;3824:1;3806:19;;;3717:127;46793:18;46820:38;46830:9;46841:16;:6;3687:14;;3595:114;46841:16;46820:9;:38::i;:::-;46745:3;;;;:::i;:::-;;;;46708:158;;9537:191;9630:6;;;-1:-1:-1;;;;;9647:17:0;;;-1:-1:-1;;;;;;9647:17:0;;;;;;;9680:40;;9630:6;;;9647:17;9630:6;;9680:40;;9611:16;;9680:40;9600:128;9537:191;:::o;37986:315::-;38141:8;-1:-1:-1;;;;;38132:17:0;:5;-1:-1:-1;;;;;38132:17:0;;;38124:55;;;;-1:-1:-1;;;38124:55:0;;12375:2:1;38124:55:0;;;12357:21:1;12414:2;12394:18;;;12387:30;12453:27;12433:18;;;12426:55;12498:18;;38124:55:0;12173:349:1;38124:55:0;-1:-1:-1;;;;;38190:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38190:46:0;;;;;;;;;;38252:41;;9772::1;;;38252::0;;9745:18:1;38252:41:0;;;;;;;37986:315;;;:::o;33060:::-;33217:28;33227:4;33233:2;33237:7;33217:9;:28::i;:::-;33264:48;33287:4;33293:2;33297:7;33306:5;33264:22;:48::i;:::-;33256:111;;;;-1:-1:-1;;;33256:111:0;;;;;;;:::i;46877:104::-;46937:13;46966:9;46959:16;;;;;:::i;4553:723::-;4609:13;4830:10;4826:53;;-1:-1:-1;;4857:10:0;;;;;;;;;;;;-1:-1:-1;;;4857:10:0;;;;;4553:723::o;4826:53::-;4904:5;4889:12;4945:78;4952:9;;4945:78;;4978:8;;;;:::i;:::-;;-1:-1:-1;5001:10:0;;-1:-1:-1;5009:2:0;5001:10;;:::i;:::-;;;4945:78;;;5033:19;5065:6;5055:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5055:17:0;;5033:39;;5083:154;5090:10;;5083:154;;5117:11;5127:1;5117:11;;:::i;:::-;;-1:-1:-1;5186:10:0;5194:2;5186:5;:10;:::i;:::-;5173:24;;:2;:24;:::i;:::-;5160:39;;5143:6;5150;5143:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5143:56:0;;;;;;;;-1:-1:-1;5214:11:0;5223:2;5214:11;;:::i;:::-;;;5083:154;;1809:675;1892:7;1935:4;1892:7;1950:497;1974:5;:12;1970:1;:16;1950:497;;;2008:20;2031:5;2037:1;2031:8;;;;;;;;:::i;:::-;;;;;;;2008:31;;2074:12;2058;:28;2054:382;;2560:13;2610:15;;;2646:4;2639:15;;;2693:4;2677:21;;2186:57;;2054:382;;;2560:13;2610:15;;;2646:4;2639:15;;;2693:4;2677:21;;2363:57;;2054:382;-1:-1:-1;1988:3:0;;;;:::i;:::-;;;;1950:497;;;-1:-1:-1;2464:12:0;1809:675;-1:-1:-1;;;1809:675:0:o;34672:110::-;34748:26;34758:2;34762:7;34748:26;;;;;;;;;;;;:9;:26::i;38866:799::-;39021:4;-1:-1:-1;;;;;39042:13:0;;10878:20;10926:8;39038:620;;39078:72;;-1:-1:-1;;;39078:72:0;;-1:-1:-1;;;;;39078:36:0;;;;;:72;;7071:10;;39129:4;;39135:7;;39144:5;;39078:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39078:72:0;;;;;;;;-1:-1:-1;;39078:72:0;;;;;;;;;;;;:::i;:::-;;;39074:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39320:13:0;;39316:272;;39363:60;;-1:-1:-1;;;39363:60:0;;;;;;;:::i;39316:272::-;39538:6;39532:13;39523:6;39519:2;39515:15;39508:38;39074:529;-1:-1:-1;;;;;;39201:51:0;-1:-1:-1;;;39201:51:0;;-1:-1:-1;39194:58:0;;39038:620;-1:-1:-1;39642:4:0;38866:799;;;;;;:::o;35009:321::-;35139:18;35145:2;35149:7;35139:5;:18::i;:::-;35190:54;35221:1;35225:2;35229:7;35238:5;35190:22;:54::i;:::-;35168:154;;;;-1:-1:-1;;;35168:154:0;;;;;;;:::i;35666:382::-;-1:-1:-1;;;;;35746:16:0;;35738:61;;;;-1:-1:-1;;;35738:61:0;;15431:2:1;35738:61:0;;;15413:21:1;;;15450:18;;;15443:30;15509:34;15489:18;;;15482:62;15561:18;;35738:61:0;15229:356:1;35738:61:0;33753:4;33777:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33777:16:0;:30;35810:58;;;;-1:-1:-1;;;35810:58:0;;11258:2:1;35810:58:0;;;11240:21:1;11297:2;11277:18;;;11270:30;11336;11316:18;;;11309:58;11384:18;;35810:58:0;11056:352:1;35810:58:0;-1:-1:-1;;;;;35939:13:0;;;;;;:9;:13;;;;;:18;;35956:1;;35939:13;:18;;35956:1;;35939:18;:::i;:::-;;;;-1:-1:-1;;35968:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35968:21:0;-1:-1:-1;;;;;35968:21:0;;;;;;;;36007:33;;35968:16;;;36007:33;;35968:16;;36007:33;35666:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:163;1060:20;;1120:10;1109:22;;1099:33;;1089:61;;1146:1;1143;1136:12;1161:186;1220:6;1273:2;1261:9;1252:7;1248:23;1244:32;1241:52;;;1289:1;1286;1279:12;1241:52;1312:29;1331:9;1312:29;:::i;1352:260::-;1420:6;1428;1481:2;1469:9;1460:7;1456:23;1452:32;1449:52;;;1497:1;1494;1487:12;1449:52;1520:29;1539:9;1520:29;:::i;:::-;1510:39;;1568:38;1602:2;1591:9;1587:18;1568:38;:::i;:::-;1558:48;;1352:260;;;;;:::o;1617:328::-;1694:6;1702;1710;1763:2;1751:9;1742:7;1738:23;1734:32;1731:52;;;1779:1;1776;1769:12;1731:52;1802:29;1821:9;1802:29;:::i;:::-;1792:39;;1850:38;1884:2;1873:9;1869:18;1850:38;:::i;:::-;1840:48;;1935:2;1924:9;1920:18;1907:32;1897:42;;1617:328;;;;;:::o;1950:666::-;2045:6;2053;2061;2069;2122:3;2110:9;2101:7;2097:23;2093:33;2090:53;;;2139:1;2136;2129:12;2090:53;2162:29;2181:9;2162:29;:::i;:::-;2152:39;;2210:38;2244:2;2233:9;2229:18;2210:38;:::i;:::-;2200:48;;2295:2;2284:9;2280:18;2267:32;2257:42;;2350:2;2339:9;2335:18;2322:32;2377:18;2369:6;2366:30;2363:50;;;2409:1;2406;2399:12;2363:50;2432:22;;2485:4;2477:13;;2473:27;-1:-1:-1;2463:55:1;;2514:1;2511;2504:12;2463:55;2537:73;2602:7;2597:2;2584:16;2579:2;2575;2571:11;2537:73;:::i;:::-;2527:83;;;1950:666;;;;;;;:::o;2621:254::-;2686:6;2694;2747:2;2735:9;2726:7;2722:23;2718:32;2715:52;;;2763:1;2760;2753:12;2715:52;2786:29;2805:9;2786:29;:::i;:::-;2776:39;;2834:35;2865:2;2854:9;2850:18;2834:35;:::i;2880:254::-;2948:6;2956;3009:2;2997:9;2988:7;2984:23;2980:32;2977:52;;;3025:1;3022;3015:12;2977:52;3048:29;3067:9;3048:29;:::i;:::-;3038:39;3124:2;3109:18;;;;3096:32;;-1:-1:-1;;;2880:254:1:o;3139:689::-;3234:6;3242;3250;3303:2;3291:9;3282:7;3278:23;3274:32;3271:52;;;3319:1;3316;3309:12;3271:52;3359:9;3346:23;3388:18;3429:2;3421:6;3418:14;3415:34;;;3445:1;3442;3435:12;3415:34;3483:6;3472:9;3468:22;3458:32;;3528:7;3521:4;3517:2;3513:13;3509:27;3499:55;;3550:1;3547;3540:12;3499:55;3590:2;3577:16;3616:2;3608:6;3605:14;3602:34;;;3632:1;3629;3622:12;3602:34;3687:7;3680:4;3670:6;3667:1;3663:14;3659:2;3655:23;3651:34;3648:47;3645:67;;;3708:1;3705;3698:12;3645:67;3739:4;3731:13;;;;3763:6;;-1:-1:-1;3801:20:1;;;;3788:34;;3139:689;-1:-1:-1;;;;3139:689:1:o;3833:180::-;3889:6;3942:2;3930:9;3921:7;3917:23;3913:32;3910:52;;;3958:1;3955;3948:12;3910:52;3981:26;3997:9;3981:26;:::i;4018:180::-;4077:6;4130:2;4118:9;4109:7;4105:23;4101:32;4098:52;;;4146:1;4143;4136:12;4098:52;-1:-1:-1;4169:23:1;;4018:180;-1:-1:-1;4018:180:1:o;4203:245::-;4261:6;4314:2;4302:9;4293:7;4289:23;4285:32;4282:52;;;4330:1;4327;4320:12;4282:52;4369:9;4356:23;4388:30;4412:5;4388:30;:::i;4453:249::-;4522:6;4575:2;4563:9;4554:7;4550:23;4546:32;4543:52;;;4591:1;4588;4581:12;4543:52;4623:9;4617:16;4642:30;4666:5;4642:30;:::i;4707:450::-;4776:6;4829:2;4817:9;4808:7;4804:23;4800:32;4797:52;;;4845:1;4842;4835:12;4797:52;4885:9;4872:23;4918:18;4910:6;4907:30;4904:50;;;4950:1;4947;4940:12;4904:50;4973:22;;5026:4;5018:13;;5014:27;-1:-1:-1;5004:55:1;;5055:1;5052;5045:12;5004:55;5078:73;5143:7;5138:2;5125:16;5120:2;5116;5112:11;5078:73;:::i;5347:254::-;5415:6;5423;5476:2;5464:9;5455:7;5451:23;5447:32;5444:52;;;5492:1;5489;5482:12;5444:52;5528:9;5515:23;5505:33;;5557:38;5591:2;5580:9;5576:18;5557:38;:::i;5606:184::-;5664:6;5717:2;5705:9;5696:7;5692:23;5688:32;5685:52;;;5733:1;5730;5723:12;5685:52;5756:28;5774:9;5756:28;:::i;5795:256::-;5861:6;5869;5922:2;5910:9;5901:7;5897:23;5893:32;5890:52;;;5938:1;5935;5928:12;5890:52;5961:28;5979:9;5961:28;:::i;:::-;5951:38;;6008:37;6041:2;6030:9;6026:18;6008:37;:::i;6056:257::-;6097:3;6135:5;6129:12;6162:6;6157:3;6150:19;6178:63;6234:6;6227:4;6222:3;6218:14;6211:4;6204:5;6200:16;6178:63;:::i;:::-;6295:2;6274:15;-1:-1:-1;;6270:29:1;6261:39;;;;6302:4;6257:50;;6056:257;-1:-1:-1;;6056:257:1:o;6552:1527::-;6776:3;6814:6;6808:13;6840:4;6853:51;6897:6;6892:3;6887:2;6879:6;6875:15;6853:51;:::i;:::-;6967:13;;6926:16;;;;6989:55;6967:13;6926:16;7011:15;;;6989:55;:::i;:::-;7133:13;;7066:20;;;7106:1;;7193;7215:18;;;;7268;;;;7295:93;;7373:4;7363:8;7359:19;7347:31;;7295:93;7436:2;7426:8;7423:16;7403:18;7400:40;7397:167;;;-1:-1:-1;;;7463:33:1;;7519:4;7516:1;7509:15;7549:4;7470:3;7537:17;7397:167;7580:18;7607:110;;;;7731:1;7726:328;;;;7573:481;;7607:110;-1:-1:-1;;7642:24:1;;7628:39;;7687:20;;;;-1:-1:-1;7607:110:1;;7726:328;21410:1;21403:14;;;21447:4;21434:18;;7821:1;7835:169;7849:8;7846:1;7843:15;7835:169;;;7931:14;;7916:13;;;7909:37;7974:16;;;;7866:10;;7835:169;;;7839:3;;8035:8;8028:5;8024:20;8017:27;;7573:481;-1:-1:-1;8070:3:1;;6552:1527;-1:-1:-1;;;;;;;;;;;6552:1527:1:o;8502:488::-;-1:-1:-1;;;;;8771:15:1;;;8753:34;;8823:15;;8818:2;8803:18;;8796:43;8870:2;8855:18;;8848:34;;;8918:3;8913:2;8898:18;;8891:31;;;8696:4;;8939:45;;8964:19;;8956:6;8939:45;:::i;:::-;8931:53;8502:488;-1:-1:-1;;;;;;8502:488:1:o;8995:632::-;9166:2;9218:21;;;9288:13;;9191:18;;;9310:22;;;9137:4;;9166:2;9389:15;;;;9363:2;9348:18;;;9137:4;9432:169;9446:6;9443:1;9440:13;9432:169;;;9507:13;;9495:26;;9576:15;;;;9541:12;;;;9468:1;9461:9;9432:169;;;-1:-1:-1;9618:3:1;;8995:632;-1:-1:-1;;;;;;8995:632:1:o;10006:219::-;10155:2;10144:9;10137:21;10118:4;10175:44;10215:2;10204:9;10200:18;10192:6;10175:44;:::i;10230:414::-;10432:2;10414:21;;;10471:2;10451:18;;;10444:30;10510:34;10505:2;10490:18;;10483:62;-1:-1:-1;;;10576:2:1;10561:18;;10554:48;10634:3;10619:19;;10230:414::o;16003:356::-;16205:2;16187:21;;;16224:18;;;16217:30;16283:34;16278:2;16263:18;;16256:62;16350:2;16335:18;;16003:356::o;17190:419::-;17392:2;17374:21;;;17431:2;17411:18;;;17404:30;17470:34;17465:2;17450:18;;17443:62;17541:25;17536:2;17521:18;;17514:53;17599:3;17584:19;;17190:419::o;18779:413::-;18981:2;18963:21;;;19020:2;19000:18;;;18993:30;19059:34;19054:2;19039:18;;19032:62;-1:-1:-1;;;19125:2:1;19110:18;;19103:47;19182:3;19167:19;;18779:413::o;19621:403::-;19823:2;19805:21;;;19862:2;19842:18;;;19835:30;19901:34;19896:2;19881:18;;19874:62;-1:-1:-1;;;19967:2:1;19952:18;;19945:37;20014:3;19999:19;;19621:403::o;20029:399::-;20231:2;20213:21;;;20270:2;20250:18;;;20243:30;20309:34;20304:2;20289:18;;20282:62;-1:-1:-1;;;20375:2:1;20360:18;;20353:33;20418:3;20403:19;;20029:399::o;21463:128::-;21503:3;21534:1;21530:6;21527:1;21524:13;21521:39;;;21540:18;;:::i;:::-;-1:-1:-1;21576:9:1;;21463:128::o;21596:120::-;21636:1;21662;21652:35;;21667:18;;:::i;:::-;-1:-1:-1;21701:9:1;;21596:120::o;21721:168::-;21761:7;21827:1;21823;21819:6;21815:14;21812:1;21809:21;21804:1;21797:9;21790:17;21786:45;21783:71;;;21834:18;;:::i;:::-;-1:-1:-1;21874:9:1;;21721:168::o;21894:125::-;21934:4;21962:1;21959;21956:8;21953:34;;;21967:18;;:::i;:::-;-1:-1:-1;22004:9:1;;21894:125::o;22024:258::-;22096:1;22106:113;22120:6;22117:1;22114:13;22106:113;;;22196:11;;;22190:18;22177:11;;;22170:39;22142:2;22135:10;22106:113;;;22237:6;22234:1;22231:13;22228:48;;;-1:-1:-1;;22272:1:1;22254:16;;22247:27;22024:258::o;22287:380::-;22366:1;22362:12;;;;22409;;;22430:61;;22484:4;22476:6;22472:17;22462:27;;22430:61;22537:2;22529:6;22526:14;22506:18;22503:38;22500:161;;;22583:10;22578:3;22574:20;22571:1;22564:31;22618:4;22615:1;22608:15;22646:4;22643:1;22636:15;22500:161;;22287:380;;;:::o;22672:135::-;22711:3;-1:-1:-1;;22732:17:1;;22729:43;;;22752:18;;:::i;:::-;-1:-1:-1;22799:1:1;22788:13;;22672:135::o;22812:112::-;22844:1;22870;22860:35;;22875:18;;:::i;:::-;-1:-1:-1;22909:9:1;;22812:112::o;22929:127::-;22990:10;22985:3;22981:20;22978:1;22971:31;23021:4;23018:1;23011:15;23045:4;23042:1;23035:15;23061:127;23122:10;23117:3;23113:20;23110:1;23103:31;23153:4;23150:1;23143:15;23177:4;23174:1;23167:15;23193:127;23254:10;23249:3;23245:20;23242:1;23235:31;23285:4;23282:1;23275:15;23309:4;23306:1;23299:15;23325:127;23386:10;23381:3;23377:20;23374:1;23367:31;23417:4;23414:1;23407:15;23441:4;23438:1;23431:15;23457:131;-1:-1:-1;;;;;;23531:32:1;;23521:43;;23511:71;;23578:1;23575;23568:12

Swarm Source

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