ETH Price: $3,090.16 (-0.42%)
Gas: 3 Gwei

Token

MeemosWorld (MW)
 

Overview

Max Total Supply

6,666 MW

Holders

2,736

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MW
0x978A53D5aD779406c6ab3308da28641E22bf9c46
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A collection of 6,666 NFTs gamifying therapy through the Meemo app. Clinician-led, Meemo's World aims to improve the accessibility and stickiness of digital mental health solutions, while building a safe community for those in the space .

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MeemosWorld

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-14
*/

// File @openzeppelin/contracts/utils/cryptography/[email protected]

// SPDX-License-Identifier: MIT
// 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.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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


// File @openzeppelin/contracts/utils/[email protected]


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



/**
 * @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/[email protected]


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



/**
 * @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/[email protected]


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



/**
 * @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/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



/**
 * @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/[email protected]


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



/**
 * @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/token/ERC721/extensions/[email protected]


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



/**
 * @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/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



/**
 * @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/utils/introspection/[email protected]


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



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


// Creator: Chiru Labs


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

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

        uint256 updatedIndex = startTokenId;

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

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

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

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

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


// File contracts/MeemosWorld.sol


/**
$$\      $$\                                           $$\               $$\      $$\                     $$\       $$\
$$$\    $$$ |                                          $  |              $$ | $\  $$ |                    $$ |      $$ |
$$$$\  $$$$ | $$$$$$\   $$$$$$\  $$$$$$\$$$$\   $$$$$$\\_/$$$$$$$\       $$ |$$$\ $$ | $$$$$$\   $$$$$$\  $$ | $$$$$$$ |
$$\$$\$$ $$ |$$  __$$\ $$  __$$\ $$  _$$  _$$\ $$  __$$\ $$  _____|      $$ $$ $$\$$ |$$  __$$\ $$  __$$\ $$ |$$  __$$ |
$$ \$$$  $$ |$$$$$$$$ |$$$$$$$$ |$$ / $$ / $$ |$$ /  $$ |\$$$$$$\        $$$$  _$$$$ |$$ /  $$ |$$ |  \__|$$ |$$ /  $$ |
$$ |\$  /$$ |$$   ____|$$   ____|$$ | $$ | $$ |$$ |  $$ | \____$$\       $$$  / \$$$ |$$ |  $$ |$$ |      $$ |$$ |  $$ |
$$ | \_/ $$ |\$$$$$$$\ \$$$$$$$\ $$ | $$ | $$ |\$$$$$$  |$$$$$$$  |      $$  /   \$$ |\$$$$$$  |$$ |      $$ |\$$$$$$$ |
\__|     \__| \_______| \_______|\__| \__| \__| \______/ \_______/       \__/     \__| \______/ \__|      \__| \_______|
**/

interface IERC20 {
    function balanceOf(address account) external view returns (uint256);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    function transfer(address recipient, uint256 amount) external returns (bool);
}

contract MeemosWorld is ERC721A, Ownable {

    string public baseURI = "ipfs://QmPy95f9sUv5DcMTy7koxQhDzWLzC2DnkvciJEx167oAws/";
    string public contractURI = "ipfs://QmYpYeFLYJzb96RmgvC6Qn8g1Mnh1Vn1NAw4rYUg77TeBo";
    string public constant baseExtension = ".json";
    bytes32 public merkleRoot = 0x1db1ef3dbf045e962d6d48a27c27b2797cc991082e2037021f68af3b5246f7b5;
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    IERC20 public constant SOSContract = IERC20(0x3b484b82567a09e2588A13D54D032153f0c0aEe0);

    uint256 public MAX_SUPPLY = 6666;

    uint256 public constant MAX_PER_TX_WL = 2;
    uint256 public constant MAX_PER_TX_PUBLIC = 5;
    uint256 public constant MAX_PER_WALLET = 5;
    uint256 public price = 0.06 ether;
    uint256 public sos_price = 1000000000 ether;
    uint256 public DEVS_AIRDROP = 172;

    bool public whiteListSale = false;
    bool public publicSale = false;

    constructor() ERC721A("MeemosWorld", "MW") {}

    function mint(uint256 _amount, bool _mintWithEther) external payable {
        address _caller = _msgSender();
        require(publicSale == true && whiteListSale == false, "Public sale not active");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX_PUBLIC >= _amount , "Excess max per public tx");
        require(MAX_PER_WALLET >= _numberMinted(_caller) + _amount, "Max mints per wallet");

        if(_mintWithEther){
            require(_amount * price == msg.value, "Invalid funds provided");
        }else{
            require(SOSContract.transferFrom(_caller, address(this), _amount * sos_price), "Invalid sos funds provided");
        }

        _safeMint(_caller, _amount);
    }

    function whitelistMint(uint256 _amount, bool _mintWithEther, bytes32[] calldata _merkleProof) external payable {
        address _caller = _msgSender();
        require(whiteListSale == true, "Whitelist sale not active");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX_WL >= _amount , "Excess max per whitelist tx");
        require(MAX_PER_TX_WL >= _numberMinted(_caller) + _amount, "Max mints per whitelist wallet");

        if(_mintWithEther){
            require(_amount * price == msg.value, "Invalid funds provided");
        }else{
            require(SOSContract.transferFrom(_caller, address(this), _amount * sos_price), "Invalid sos funds provided");
        }

        bytes32 leaf = keccak256(abi.encodePacked(_caller));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof");

        _safeMint(_caller, _amount);
    }

    function reservedDevsMint(uint256 _amount, address _to) external onlyOwner {
        require(DEVS_AIRDROP >= _amount, "Exceeds airdrop for devs");
        DEVS_AIRDROP -= _amount;
        _safeMint(_to, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function withdrawToken(IERC20 token) external onlyOwner {
        uint256 funds = token.balanceOf(address(this));
        require(funds > 0, "No balance token");
        token.transfer(_msgSender(), funds);
    }

    function reduceSupply(uint256 _MAX_SUPPLY) external onlyOwner {
        require(_MAX_SUPPLY >= totalSupply(), "Error reducing supply");
        MAX_SUPPLY = _MAX_SUPPLY;
    }

    function setRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setPublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }

    function setWhitelistSale(bool _state) external onlyOwner {
        whiteListSale = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setSOSPrice(uint256 _price) external onlyOwner {
        sos_price = _price;
    }

    function walletMints(address owner) public view returns(uint256) {
       return _numberMinted(owner);
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEVS_AIRDROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SOSContract","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_mintWithEther","type":"bool"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"reservedDevsMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSOSPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sos_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_mintWithEther","type":"bool"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000805560e06040526036608081815290620033e760a03980516200002d916008916020909101906200019e565b50604051806060016040528060358152602001620033b26035913980516200005e916009916020909101906200019e565b507f1db1ef3dbf045e962d6d48a27c27b2797cc991082e2037021f68af3b5246f7b5600a55611a0a600b5566d529ae9e860000600c556b033b2e3c9fd0803ce8000000600d5560ac600e55600f805461ffff19169055348015620000c157600080fd5b50604080518082018252600b81526a1359595b5bdcd5dbdc9b1960aa1b6020808301918252835180850190945260028452614d5760f01b9084015281519192916200010f916001916200019e565b508051620001259060029060208401906200019e565b505050620001426200013c6200014860201b60201c565b6200014c565b62000281565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ac9062000244565b90600052602060002090601f016020900481019282620001d057600085556200021b565b82601f10620001eb57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021b578251825591602001919060010190620001fe565b50620002299291506200022d565b5090565b5b808211156200022957600081556001016200022e565b600181811c908216806200025957607f821691505b602082108114156200027b57634e487b7160e01b600052602260045260246000fd5b50919050565b61312180620002916000396000f3fe6080604052600436106102935760003560e01c8063715018a61161015a578063b88d4fde116100c1578063da312e1f1161007a578063da312e1f14610776578063dab5f34014610796578063e8a3d485146107b6578063e985e9c5146107cb578063f0293fd3146107eb578063f2fde38b1461080b57600080fd5b8063b88d4fde146106a7578063c6682862146106c7578063c87b56dd146106f8578063ca7ce3ec14610718578063cd7c032614610738578063d7abd1e71461076057600080fd5b8063938e3d7b11610113578063938e3d7b146105f457806395d89b41146106145780639ab768e814610629578063a035b1fe14610649578063a22cb4651461065f578063a8d123b81461067f57600080fd5b8063715018a614610547578063806234441461055c57806386a173ee1461057c57806389476069146105965780638da5cb5b146105b657806391b7f5ed146105d457600080fd5b80632f745c59116101fe57806355f804b3116101b757806355f804b31461049f5780635aca1bb6146104bf5780636352211e146104df57806367f68fac146104ff5780636c0360eb1461051257806370a082311461052757600080fd5b80632f745c59146103f557806332cb6b0c1461041557806333bc1c5c1461042b5780633ccfd60b1461044a57806342842e0e1461045f5780634f6ccce71461047f57600080fd5b806310cf8e6a1161025057806310cf8e6a1461037f57806317ca13231461035c57806318160ddd1461039457806323b872dd146103a957806325bd3fc2146103c95780632eb4a7ab146103df57600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b3146103275780630a8e5489146103495780630f2cdd6c1461035c575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612bca565b61082b565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610898565b6040516102c49190612e85565b3480156102fb57600080fd5b5061030f61030a366004612bb1565b61092a565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612b4b565b6109ba565b005b610347610357366004612ccd565b610ad2565b34801561036857600080fd5b50610371600581565b6040519081526020016102c4565b34801561038b57600080fd5b50610371600281565b3480156103a057600080fd5b50600054610371565b3480156103b557600080fd5b506103476103c4366004612a5c565b610eed565b3480156103d557600080fd5b50610371600d5481565b3480156103eb57600080fd5b50610371600a5481565b34801561040157600080fd5b50610371610410366004612b4b565b610ef8565b34801561042157600080fd5b50610371600b5481565b34801561043757600080fd5b50600f546102b890610100900460ff1681565b34801561045657600080fd5b50610347611066565b34801561046b57600080fd5b5061034761047a366004612a5c565b61111f565b34801561048b57600080fd5b5061037161049a366004612bb1565b61113a565b3480156104ab57600080fd5b506103476104ba366004612c21565b61119c565b3480156104cb57600080fd5b506103476104da366004612b77565b6111d9565b3480156104eb57600080fd5b5061030f6104fa366004612bb1565b61121d565b61034761050d366004612ca8565b61122f565b34801561051e57600080fd5b506102e2611590565b34801561053357600080fd5b506103716105423660046129ff565b61161e565b34801561055357600080fd5b506103476116af565b34801561056857600080fd5b50610347610577366004612bb1565b6116e5565b34801561058857600080fd5b50600f546102b89060ff1681565b3480156105a257600080fd5b506103476105b13660046129ff565b61175e565b3480156105c257600080fd5b506007546001600160a01b031661030f565b3480156105e057600080fd5b506103476105ef366004612bb1565b6118d7565b34801561060057600080fd5b5061034761060f366004612c21565b611906565b34801561062057600080fd5b506102e2611943565b34801561063557600080fd5b50610347610644366004612c83565b611952565b34801561065557600080fd5b50610371600c5481565b34801561066b57600080fd5b5061034761067a366004612b1d565b6119f0565b34801561068b57600080fd5b5061030f733b484b82567a09e2588a13d54d032153f0c0aee081565b3480156106b357600080fd5b506103476106c2366004612a9d565b611ab5565b3480156106d357600080fd5b506102e260405180604001604052806005815260200164173539b7b760d91b81525081565b34801561070457600080fd5b506102e2610713366004612bb1565b611aee565b34801561072457600080fd5b50610347610733366004612b77565b611bba565b34801561074457600080fd5b5061030f73a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561076c57600080fd5b50610371600e5481565b34801561078257600080fd5b50610347610791366004612bb1565b611bf7565b3480156107a257600080fd5b506103476107b1366004612bb1565b611c26565b3480156107c257600080fd5b506102e2611c55565b3480156107d757600080fd5b506102b86107e6366004612a23565b611c62565b3480156107f757600080fd5b506103716108063660046129ff565b611d41565b34801561081757600080fd5b506103476108263660046129ff565b611d4c565b60006001600160e01b031982166380ac58cd60e01b148061085c57506001600160e01b03198216635b5e139f60e01b145b8061087757506001600160e01b0319821663780e9d6360e01b145b8061089257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108a790612ff0565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390612ff0565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905090565b6000610937826000541190565b61099e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109c58261121d565b9050806001600160a01b0316836001600160a01b03161415610a345760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610995565b336001600160a01b0382161480610a505750610a508133611c62565b610ac25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610995565b610acd838383611de7565b505050565b600f54339060ff161515600114610b2b5760405162461bcd60e51b815260206004820152601960248201527f57686974656c6973742073616c65206e6f7420616374697665000000000000006044820152606401610995565b84610b3560005490565b610b3f9190612f4b565b600b541015610b855760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610995565b60008511610bc25760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610995565b326001600160a01b03821614610c095760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610995565b8460021015610c5a5760405162461bcd60e51b815260206004820152601b60248201527f457863657373206d6178207065722077686974656c69737420747800000000006044820152606401610995565b84610c6482611e43565b610c6e9190612f4b565b60021015610cbe5760405162461bcd60e51b815260206004820152601e60248201527f4d6178206d696e7473207065722077686974656c6973742077616c6c657400006044820152606401610995565b8315610d1e5734600c5486610cd39190612f77565b14610d195760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610995565b610e24565b733b484b82567a09e2588a13d54d032153f0c0aee06001600160a01b03166323b872dd8230600d5489610d519190612f77565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b158015610da057600080fd5b505af1158015610db4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd89190612b94565b610e245760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420736f732066756e64732070726f76696465640000000000006044820152606401610995565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050610e9f84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611ee1565b610edb5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610995565b610ee58287611ef7565b505050505050565b610acd838383611f11565b6000610f038361161e565b8210610f5c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610995565b600080549080805b83811015611006576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610fb757805192505b876001600160a01b0316836001600160a01b03161415610ff35786841415610fe55750935061089292505050565b83610fef8161302b565b9450505b5080610ffe8161302b565b915050610f64565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610995565b6007546001600160a01b031633146110905760405162461bcd60e51b815260040161099590612e98565b6040514790600090339083908381818185875af1925050503d80600081146110d4576040519150601f19603f3d011682016040523d82523d6000602084013e6110d9565b606091505b505090508061111b5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610995565b5050565b610acd83838360405180602001604052806000815250611ab5565b6000805482106111985760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610995565b5090565b6007546001600160a01b031633146111c65760405162461bcd60e51b815260040161099590612e98565b805161111b9060089060208401906128f9565b6007546001600160a01b031633146112035760405162461bcd60e51b815260040161099590612e98565b600f80549115156101000261ff0019909216919091179055565b600061122882612254565b5192915050565b600f543390600161010090910460ff1615151480156112515750600f5460ff16155b6112965760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b6044820152606401610995565b826112a060005490565b6112aa9190612f4b565b600b5410156112f05760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610995565b6000831161132d5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610995565b326001600160a01b038216146113745760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610995565b82600510156113c55760405162461bcd60e51b815260206004820152601860248201527f457863657373206d617820706572207075626c696320747800000000000000006044820152606401610995565b826113cf82611e43565b6113d99190612f4b565b600510156114205760405162461bcd60e51b815260206004820152601460248201527313585e081b5a5b9d1cc81c195c881dd85b1b195d60621b6044820152606401610995565b81156114805734600c54846114359190612f77565b1461147b5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610995565b611586565b733b484b82567a09e2588a13d54d032153f0c0aee06001600160a01b03166323b872dd8230600d54876114b39190612f77565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b15801561150257600080fd5b505af1158015611516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153a9190612b94565b6115865760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420736f732066756e64732070726f76696465640000000000006044820152606401610995565b610acd8184611ef7565b6008805461159d90612ff0565b80601f01602080910402602001604051908101604052809291908181526020018280546115c990612ff0565b80156116165780601f106115eb57610100808354040283529160200191611616565b820191906000526020600020905b8154815290600101906020018083116115f957829003601f168201915b505050505081565b60006001600160a01b03821661168a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610995565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146116d95760405162461bcd60e51b815260040161099590612e98565b6116e36000612334565b565b6007546001600160a01b0316331461170f5760405162461bcd60e51b815260040161099590612e98565b6000548110156117595760405162461bcd60e51b81526020600482015260156024820152744572726f72207265647563696e6720737570706c7960581b6044820152606401610995565b600b55565b6007546001600160a01b031633146117885760405162461bcd60e51b815260040161099590612e98565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b1580156117ca57600080fd5b505afa1580156117de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118029190612c6a565b9050600081116118475760405162461bcd60e51b815260206004820152601060248201526f2737903130b630b731b2903a37b5b2b760811b6044820152606401610995565b6001600160a01b03821663a9059cbb336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561189f57600080fd5b505af11580156118b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acd9190612b94565b6007546001600160a01b031633146119015760405162461bcd60e51b815260040161099590612e98565b600c55565b6007546001600160a01b031633146119305760405162461bcd60e51b815260040161099590612e98565b805161111b9060099060208401906128f9565b6060600280546108a790612ff0565b6007546001600160a01b0316331461197c5760405162461bcd60e51b815260040161099590612e98565b81600e5410156119ce5760405162461bcd60e51b815260206004820152601860248201527f457863656564732061697264726f7020666f72206465767300000000000000006044820152606401610995565b81600e60008282546119e09190612f96565b9091555061111b90508183611ef7565b6001600160a01b038216331415611a495760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610995565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611ac0848484611f11565b611acc84848484612386565b611ae85760405162461bcd60e51b815260040161099590612ecd565b50505050565b6060611afb826000541190565b611b3f5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610995565b600060088054611b4e90612ff0565b905011611b6a5760405180602001604052806000815250610892565b6008611b7583612493565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611ba593929190612da1565b60405160208183030381529060405292915050565b6007546001600160a01b03163314611be45760405162461bcd60e51b815260040161099590612e98565b600f805460ff1916911515919091179055565b6007546001600160a01b03163314611c215760405162461bcd60e51b815260040161099590612e98565b600d55565b6007546001600160a01b03163314611c505760405162461bcd60e51b815260040161099590612e98565b600a55565b6009805461159d90612ff0565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b158015611cbe57600080fd5b505afa158015611cd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf69190612c04565b6001600160a01b03161415611d0f576001915050610892565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b600061089282611e43565b6007546001600160a01b03163314611d765760405162461bcd60e51b815260040161099590612e98565b6001600160a01b038116611ddb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610995565b611de481612334565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006001600160a01b038216611eb55760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610995565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b600082611eee8584612591565b14949350505050565b61111b82826040518060200160405280600081525061263d565b6000611f1c82612254565b80519091506000906001600160a01b0316336001600160a01b03161480611f53575033611f488461092a565b6001600160a01b0316145b80611f6557508151611f659033611c62565b905080611fcf5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610995565b846001600160a01b031682600001516001600160a01b0316146120435760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610995565b6001600160a01b0384166120a75760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610995565b6120b76000848460000151611de7565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061217c908590612f4b565b6000818152600360205260409020549091506001600160a01b031661220e576121a6816000541190565b1561220e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee5565b6040805180820190915260008082526020820152612273826000541190565b6122d25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610995565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612321579392505050565b508061232c81612fd9565b9150506122d4565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561248857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123ca903390899088908890600401612e52565b602060405180830381600087803b1580156123e457600080fd5b505af1925050508015612414575060408051601f3d908101601f1916820190925261241191810190612be7565b60015b61246e573d808015612442576040519150601f19603f3d011682016040523d82523d6000602084013e612447565b606091505b5080516124665760405162461bcd60e51b815260040161099590612ecd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d39565b506001949350505050565b6060816124b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124e157806124cb8161302b565b91506124da9050600a83612f63565b91506124bb565b60008167ffffffffffffffff8111156124fc576124fc61309c565b6040519080825280601f01601f191660200182016040528015612526576020820181803683370190505b5090505b8415611d395761253b600183612f96565b9150612548600a86613046565b612553906030612f4b565b60f81b81838151811061256857612568613086565b60200101906001600160f81b031916908160001a90535061258a600a86612f63565b945061252a565b600081815b84518110156126355760008582815181106125b3576125b3613086565b602002602001015190508083116125f5576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612622565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061262d8161302b565b915050612596565b509392505050565b6000546001600160a01b0384166126a05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610995565b6126ab816000541190565b156126f85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610995565b600083116127545760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610995565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906127b0908790612f20565b6001600160801b031681526020018583602001516127ce9190612f20565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128ee5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128b26000888488612386565b6128ce5760405162461bcd60e51b815260040161099590612ecd565b816128d88161302b565b92505080806128e69061302b565b915050612865565b506000819055610ee5565b82805461290590612ff0565b90600052602060002090601f016020900481019282612927576000855561296d565b82601f1061294057805160ff191683800117855561296d565b8280016001018555821561296d579182015b8281111561296d578251825591602001919060010190612952565b506111989291505b808211156111985760008155600101612975565b600067ffffffffffffffff808411156129a4576129a461309c565b604051601f8501601f19908116603f011681019082821181831017156129cc576129cc61309c565b816040528093508581528686860111156129e557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612a1157600080fd5b8135612a1c816130b2565b9392505050565b60008060408385031215612a3657600080fd5b8235612a41816130b2565b91506020830135612a51816130b2565b809150509250929050565b600080600060608486031215612a7157600080fd5b8335612a7c816130b2565b92506020840135612a8c816130b2565b929592945050506040919091013590565b60008060008060808587031215612ab357600080fd5b8435612abe816130b2565b93506020850135612ace816130b2565b925060408501359150606085013567ffffffffffffffff811115612af157600080fd5b8501601f81018713612b0257600080fd5b612b1187823560208401612989565b91505092959194509250565b60008060408385031215612b3057600080fd5b8235612b3b816130b2565b91506020830135612a51816130c7565b60008060408385031215612b5e57600080fd5b8235612b69816130b2565b946020939093013593505050565b600060208284031215612b8957600080fd5b8135612a1c816130c7565b600060208284031215612ba657600080fd5b8151612a1c816130c7565b600060208284031215612bc357600080fd5b5035919050565b600060208284031215612bdc57600080fd5b8135612a1c816130d5565b600060208284031215612bf957600080fd5b8151612a1c816130d5565b600060208284031215612c1657600080fd5b8151612a1c816130b2565b600060208284031215612c3357600080fd5b813567ffffffffffffffff811115612c4a57600080fd5b8201601f81018413612c5b57600080fd5b611d3984823560208401612989565b600060208284031215612c7c57600080fd5b5051919050565b60008060408385031215612c9657600080fd5b823591506020830135612a51816130b2565b60008060408385031215612cbb57600080fd5b823591506020830135612a51816130c7565b60008060008060608587031215612ce357600080fd5b843593506020850135612cf5816130c7565b9250604085013567ffffffffffffffff80821115612d1257600080fd5b818701915087601f830112612d2657600080fd5b813581811115612d3557600080fd5b8860208260051b8501011115612d4a57600080fd5b95989497505060200194505050565b60008151808452612d71816020860160208601612fad565b601f01601f19169290920160200192915050565b60008151612d97818560208601612fad565b9290920192915050565b600080855481600182811c915080831680612dbd57607f831692505b6020808410821415612ddd57634e487b7160e01b86526022600452602486fd5b818015612df15760018114612e0257612e2f565b60ff19861689528489019650612e2f565b60008c81526020902060005b86811015612e275781548b820152908501908301612e0e565b505084890196505b505050505050612e48612e428287612d85565b85612d85565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e4890830184612d59565b602081526000612a1c6020830184612d59565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612f4257612f4261305a565b01949350505050565b60008219821115612f5e57612f5e61305a565b500190565b600082612f7257612f72613070565b500490565b6000816000190483118215151615612f9157612f9161305a565b500290565b600082821015612fa857612fa861305a565b500390565b60005b83811015612fc8578181015183820152602001612fb0565b83811115611ae85750506000910152565b600081612fe857612fe861305a565b506000190190565b600181811c9082168061300457607f821691505b6020821081141561302557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561303f5761303f61305a565b5060010190565b60008261305557613055613070565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611de457600080fd5b8015158114611de457600080fd5b6001600160e01b031981168114611de457600080fdfea26469706673582212206b0218ad070008e65bcf05e045ce09021a916dc6ba584662f5c8b89db957e7dd64736f6c63430008070033697066733a2f2f516d59705965464c594a7a623936526d67764336516e3867314d6e6831566e314e4177347259556737375465426f697066733a2f2f516d5079393566397355763544634d5479376b6f785168447a574c7a4332446e6b7663694a45783136376f4177732f

Deployed Bytecode

0x6080604052600436106102935760003560e01c8063715018a61161015a578063b88d4fde116100c1578063da312e1f1161007a578063da312e1f14610776578063dab5f34014610796578063e8a3d485146107b6578063e985e9c5146107cb578063f0293fd3146107eb578063f2fde38b1461080b57600080fd5b8063b88d4fde146106a7578063c6682862146106c7578063c87b56dd146106f8578063ca7ce3ec14610718578063cd7c032614610738578063d7abd1e71461076057600080fd5b8063938e3d7b11610113578063938e3d7b146105f457806395d89b41146106145780639ab768e814610629578063a035b1fe14610649578063a22cb4651461065f578063a8d123b81461067f57600080fd5b8063715018a614610547578063806234441461055c57806386a173ee1461057c57806389476069146105965780638da5cb5b146105b657806391b7f5ed146105d457600080fd5b80632f745c59116101fe57806355f804b3116101b757806355f804b31461049f5780635aca1bb6146104bf5780636352211e146104df57806367f68fac146104ff5780636c0360eb1461051257806370a082311461052757600080fd5b80632f745c59146103f557806332cb6b0c1461041557806333bc1c5c1461042b5780633ccfd60b1461044a57806342842e0e1461045f5780634f6ccce71461047f57600080fd5b806310cf8e6a1161025057806310cf8e6a1461037f57806317ca13231461035c57806318160ddd1461039457806323b872dd146103a957806325bd3fc2146103c95780632eb4a7ab146103df57600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b3146103275780630a8e5489146103495780630f2cdd6c1461035c575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612bca565b61082b565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610898565b6040516102c49190612e85565b3480156102fb57600080fd5b5061030f61030a366004612bb1565b61092a565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612b4b565b6109ba565b005b610347610357366004612ccd565b610ad2565b34801561036857600080fd5b50610371600581565b6040519081526020016102c4565b34801561038b57600080fd5b50610371600281565b3480156103a057600080fd5b50600054610371565b3480156103b557600080fd5b506103476103c4366004612a5c565b610eed565b3480156103d557600080fd5b50610371600d5481565b3480156103eb57600080fd5b50610371600a5481565b34801561040157600080fd5b50610371610410366004612b4b565b610ef8565b34801561042157600080fd5b50610371600b5481565b34801561043757600080fd5b50600f546102b890610100900460ff1681565b34801561045657600080fd5b50610347611066565b34801561046b57600080fd5b5061034761047a366004612a5c565b61111f565b34801561048b57600080fd5b5061037161049a366004612bb1565b61113a565b3480156104ab57600080fd5b506103476104ba366004612c21565b61119c565b3480156104cb57600080fd5b506103476104da366004612b77565b6111d9565b3480156104eb57600080fd5b5061030f6104fa366004612bb1565b61121d565b61034761050d366004612ca8565b61122f565b34801561051e57600080fd5b506102e2611590565b34801561053357600080fd5b506103716105423660046129ff565b61161e565b34801561055357600080fd5b506103476116af565b34801561056857600080fd5b50610347610577366004612bb1565b6116e5565b34801561058857600080fd5b50600f546102b89060ff1681565b3480156105a257600080fd5b506103476105b13660046129ff565b61175e565b3480156105c257600080fd5b506007546001600160a01b031661030f565b3480156105e057600080fd5b506103476105ef366004612bb1565b6118d7565b34801561060057600080fd5b5061034761060f366004612c21565b611906565b34801561062057600080fd5b506102e2611943565b34801561063557600080fd5b50610347610644366004612c83565b611952565b34801561065557600080fd5b50610371600c5481565b34801561066b57600080fd5b5061034761067a366004612b1d565b6119f0565b34801561068b57600080fd5b5061030f733b484b82567a09e2588a13d54d032153f0c0aee081565b3480156106b357600080fd5b506103476106c2366004612a9d565b611ab5565b3480156106d357600080fd5b506102e260405180604001604052806005815260200164173539b7b760d91b81525081565b34801561070457600080fd5b506102e2610713366004612bb1565b611aee565b34801561072457600080fd5b50610347610733366004612b77565b611bba565b34801561074457600080fd5b5061030f73a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561076c57600080fd5b50610371600e5481565b34801561078257600080fd5b50610347610791366004612bb1565b611bf7565b3480156107a257600080fd5b506103476107b1366004612bb1565b611c26565b3480156107c257600080fd5b506102e2611c55565b3480156107d757600080fd5b506102b86107e6366004612a23565b611c62565b3480156107f757600080fd5b506103716108063660046129ff565b611d41565b34801561081757600080fd5b506103476108263660046129ff565b611d4c565b60006001600160e01b031982166380ac58cd60e01b148061085c57506001600160e01b03198216635b5e139f60e01b145b8061087757506001600160e01b0319821663780e9d6360e01b145b8061089257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108a790612ff0565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390612ff0565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905090565b6000610937826000541190565b61099e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109c58261121d565b9050806001600160a01b0316836001600160a01b03161415610a345760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610995565b336001600160a01b0382161480610a505750610a508133611c62565b610ac25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610995565b610acd838383611de7565b505050565b600f54339060ff161515600114610b2b5760405162461bcd60e51b815260206004820152601960248201527f57686974656c6973742073616c65206e6f7420616374697665000000000000006044820152606401610995565b84610b3560005490565b610b3f9190612f4b565b600b541015610b855760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610995565b60008511610bc25760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610995565b326001600160a01b03821614610c095760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610995565b8460021015610c5a5760405162461bcd60e51b815260206004820152601b60248201527f457863657373206d6178207065722077686974656c69737420747800000000006044820152606401610995565b84610c6482611e43565b610c6e9190612f4b565b60021015610cbe5760405162461bcd60e51b815260206004820152601e60248201527f4d6178206d696e7473207065722077686974656c6973742077616c6c657400006044820152606401610995565b8315610d1e5734600c5486610cd39190612f77565b14610d195760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610995565b610e24565b733b484b82567a09e2588a13d54d032153f0c0aee06001600160a01b03166323b872dd8230600d5489610d519190612f77565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b158015610da057600080fd5b505af1158015610db4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd89190612b94565b610e245760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420736f732066756e64732070726f76696465640000000000006044820152606401610995565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050610e9f84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611ee1565b610edb5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610995565b610ee58287611ef7565b505050505050565b610acd838383611f11565b6000610f038361161e565b8210610f5c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610995565b600080549080805b83811015611006576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610fb757805192505b876001600160a01b0316836001600160a01b03161415610ff35786841415610fe55750935061089292505050565b83610fef8161302b565b9450505b5080610ffe8161302b565b915050610f64565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610995565b6007546001600160a01b031633146110905760405162461bcd60e51b815260040161099590612e98565b6040514790600090339083908381818185875af1925050503d80600081146110d4576040519150601f19603f3d011682016040523d82523d6000602084013e6110d9565b606091505b505090508061111b5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610995565b5050565b610acd83838360405180602001604052806000815250611ab5565b6000805482106111985760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610995565b5090565b6007546001600160a01b031633146111c65760405162461bcd60e51b815260040161099590612e98565b805161111b9060089060208401906128f9565b6007546001600160a01b031633146112035760405162461bcd60e51b815260040161099590612e98565b600f80549115156101000261ff0019909216919091179055565b600061122882612254565b5192915050565b600f543390600161010090910460ff1615151480156112515750600f5460ff16155b6112965760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b6044820152606401610995565b826112a060005490565b6112aa9190612f4b565b600b5410156112f05760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610995565b6000831161132d5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610995565b326001600160a01b038216146113745760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610995565b82600510156113c55760405162461bcd60e51b815260206004820152601860248201527f457863657373206d617820706572207075626c696320747800000000000000006044820152606401610995565b826113cf82611e43565b6113d99190612f4b565b600510156114205760405162461bcd60e51b815260206004820152601460248201527313585e081b5a5b9d1cc81c195c881dd85b1b195d60621b6044820152606401610995565b81156114805734600c54846114359190612f77565b1461147b5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610995565b611586565b733b484b82567a09e2588a13d54d032153f0c0aee06001600160a01b03166323b872dd8230600d54876114b39190612f77565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b15801561150257600080fd5b505af1158015611516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153a9190612b94565b6115865760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420736f732066756e64732070726f76696465640000000000006044820152606401610995565b610acd8184611ef7565b6008805461159d90612ff0565b80601f01602080910402602001604051908101604052809291908181526020018280546115c990612ff0565b80156116165780601f106115eb57610100808354040283529160200191611616565b820191906000526020600020905b8154815290600101906020018083116115f957829003601f168201915b505050505081565b60006001600160a01b03821661168a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610995565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146116d95760405162461bcd60e51b815260040161099590612e98565b6116e36000612334565b565b6007546001600160a01b0316331461170f5760405162461bcd60e51b815260040161099590612e98565b6000548110156117595760405162461bcd60e51b81526020600482015260156024820152744572726f72207265647563696e6720737570706c7960581b6044820152606401610995565b600b55565b6007546001600160a01b031633146117885760405162461bcd60e51b815260040161099590612e98565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b1580156117ca57600080fd5b505afa1580156117de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118029190612c6a565b9050600081116118475760405162461bcd60e51b815260206004820152601060248201526f2737903130b630b731b2903a37b5b2b760811b6044820152606401610995565b6001600160a01b03821663a9059cbb336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561189f57600080fd5b505af11580156118b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acd9190612b94565b6007546001600160a01b031633146119015760405162461bcd60e51b815260040161099590612e98565b600c55565b6007546001600160a01b031633146119305760405162461bcd60e51b815260040161099590612e98565b805161111b9060099060208401906128f9565b6060600280546108a790612ff0565b6007546001600160a01b0316331461197c5760405162461bcd60e51b815260040161099590612e98565b81600e5410156119ce5760405162461bcd60e51b815260206004820152601860248201527f457863656564732061697264726f7020666f72206465767300000000000000006044820152606401610995565b81600e60008282546119e09190612f96565b9091555061111b90508183611ef7565b6001600160a01b038216331415611a495760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610995565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611ac0848484611f11565b611acc84848484612386565b611ae85760405162461bcd60e51b815260040161099590612ecd565b50505050565b6060611afb826000541190565b611b3f5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610995565b600060088054611b4e90612ff0565b905011611b6a5760405180602001604052806000815250610892565b6008611b7583612493565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611ba593929190612da1565b60405160208183030381529060405292915050565b6007546001600160a01b03163314611be45760405162461bcd60e51b815260040161099590612e98565b600f805460ff1916911515919091179055565b6007546001600160a01b03163314611c215760405162461bcd60e51b815260040161099590612e98565b600d55565b6007546001600160a01b03163314611c505760405162461bcd60e51b815260040161099590612e98565b600a55565b6009805461159d90612ff0565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b158015611cbe57600080fd5b505afa158015611cd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf69190612c04565b6001600160a01b03161415611d0f576001915050610892565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b600061089282611e43565b6007546001600160a01b03163314611d765760405162461bcd60e51b815260040161099590612e98565b6001600160a01b038116611ddb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610995565b611de481612334565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006001600160a01b038216611eb55760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610995565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b600082611eee8584612591565b14949350505050565b61111b82826040518060200160405280600081525061263d565b6000611f1c82612254565b80519091506000906001600160a01b0316336001600160a01b03161480611f53575033611f488461092a565b6001600160a01b0316145b80611f6557508151611f659033611c62565b905080611fcf5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610995565b846001600160a01b031682600001516001600160a01b0316146120435760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610995565b6001600160a01b0384166120a75760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610995565b6120b76000848460000151611de7565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061217c908590612f4b565b6000818152600360205260409020549091506001600160a01b031661220e576121a6816000541190565b1561220e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee5565b6040805180820190915260008082526020820152612273826000541190565b6122d25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610995565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612321579392505050565b508061232c81612fd9565b9150506122d4565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561248857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123ca903390899088908890600401612e52565b602060405180830381600087803b1580156123e457600080fd5b505af1925050508015612414575060408051601f3d908101601f1916820190925261241191810190612be7565b60015b61246e573d808015612442576040519150601f19603f3d011682016040523d82523d6000602084013e612447565b606091505b5080516124665760405162461bcd60e51b815260040161099590612ecd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d39565b506001949350505050565b6060816124b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124e157806124cb8161302b565b91506124da9050600a83612f63565b91506124bb565b60008167ffffffffffffffff8111156124fc576124fc61309c565b6040519080825280601f01601f191660200182016040528015612526576020820181803683370190505b5090505b8415611d395761253b600183612f96565b9150612548600a86613046565b612553906030612f4b565b60f81b81838151811061256857612568613086565b60200101906001600160f81b031916908160001a90535061258a600a86612f63565b945061252a565b600081815b84518110156126355760008582815181106125b3576125b3613086565b602002602001015190508083116125f5576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612622565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061262d8161302b565b915050612596565b509392505050565b6000546001600160a01b0384166126a05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610995565b6126ab816000541190565b156126f85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610995565b600083116127545760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610995565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906127b0908790612f20565b6001600160801b031681526020018583602001516127ce9190612f20565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156128ee5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128b26000888488612386565b6128ce5760405162461bcd60e51b815260040161099590612ecd565b816128d88161302b565b92505080806128e69061302b565b915050612865565b506000819055610ee5565b82805461290590612ff0565b90600052602060002090601f016020900481019282612927576000855561296d565b82601f1061294057805160ff191683800117855561296d565b8280016001018555821561296d579182015b8281111561296d578251825591602001919060010190612952565b506111989291505b808211156111985760008155600101612975565b600067ffffffffffffffff808411156129a4576129a461309c565b604051601f8501601f19908116603f011681019082821181831017156129cc576129cc61309c565b816040528093508581528686860111156129e557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612a1157600080fd5b8135612a1c816130b2565b9392505050565b60008060408385031215612a3657600080fd5b8235612a41816130b2565b91506020830135612a51816130b2565b809150509250929050565b600080600060608486031215612a7157600080fd5b8335612a7c816130b2565b92506020840135612a8c816130b2565b929592945050506040919091013590565b60008060008060808587031215612ab357600080fd5b8435612abe816130b2565b93506020850135612ace816130b2565b925060408501359150606085013567ffffffffffffffff811115612af157600080fd5b8501601f81018713612b0257600080fd5b612b1187823560208401612989565b91505092959194509250565b60008060408385031215612b3057600080fd5b8235612b3b816130b2565b91506020830135612a51816130c7565b60008060408385031215612b5e57600080fd5b8235612b69816130b2565b946020939093013593505050565b600060208284031215612b8957600080fd5b8135612a1c816130c7565b600060208284031215612ba657600080fd5b8151612a1c816130c7565b600060208284031215612bc357600080fd5b5035919050565b600060208284031215612bdc57600080fd5b8135612a1c816130d5565b600060208284031215612bf957600080fd5b8151612a1c816130d5565b600060208284031215612c1657600080fd5b8151612a1c816130b2565b600060208284031215612c3357600080fd5b813567ffffffffffffffff811115612c4a57600080fd5b8201601f81018413612c5b57600080fd5b611d3984823560208401612989565b600060208284031215612c7c57600080fd5b5051919050565b60008060408385031215612c9657600080fd5b823591506020830135612a51816130b2565b60008060408385031215612cbb57600080fd5b823591506020830135612a51816130c7565b60008060008060608587031215612ce357600080fd5b843593506020850135612cf5816130c7565b9250604085013567ffffffffffffffff80821115612d1257600080fd5b818701915087601f830112612d2657600080fd5b813581811115612d3557600080fd5b8860208260051b8501011115612d4a57600080fd5b95989497505060200194505050565b60008151808452612d71816020860160208601612fad565b601f01601f19169290920160200192915050565b60008151612d97818560208601612fad565b9290920192915050565b600080855481600182811c915080831680612dbd57607f831692505b6020808410821415612ddd57634e487b7160e01b86526022600452602486fd5b818015612df15760018114612e0257612e2f565b60ff19861689528489019650612e2f565b60008c81526020902060005b86811015612e275781548b820152908501908301612e0e565b505084890196505b505050505050612e48612e428287612d85565b85612d85565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e4890830184612d59565b602081526000612a1c6020830184612d59565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612f4257612f4261305a565b01949350505050565b60008219821115612f5e57612f5e61305a565b500190565b600082612f7257612f72613070565b500490565b6000816000190483118215151615612f9157612f9161305a565b500290565b600082821015612fa857612fa861305a565b500390565b60005b83811015612fc8578181015183820152602001612fb0565b83811115611ae85750506000910152565b600081612fe857612fe861305a565b506000190190565b600181811c9082168061300457607f821691505b6020821081141561302557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561303f5761303f61305a565b5060010190565b60008261305557613055613070565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611de457600080fd5b8015158114611de457600080fd5b6001600160e01b031981168114611de457600080fdfea26469706673582212206b0218ad070008e65bcf05e045ce09021a916dc6ba584662f5c8b89db957e7dd64736f6c63430008070033

Deployed Bytecode Sourcemap

42101:5476:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28800:372;;;;;;;;;;-1:-1:-1;28800:372:0;;;;;:::i;:::-;;:::i;:::-;;;11206:14:1;;11199:22;11181:41;;11169:2;11154:18;28800:372:0;;;;;;;;30427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31988:214::-;;;;;;;;;;-1:-1:-1;31988:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9845:32:1;;;9827:51;;9815:2;9800:18;31988:214:0;9681:203:1;31509:413:0;;;;;;;;;;-1:-1:-1;31509:413:0;;;;;:::i;:::-;;:::i;:::-;;43994:1039;;;;;;:::i;:::-;;:::i;42815:42::-;;;;;;;;;;;;42856:1;42815:42;;;;;11379:25:1;;;11367:2;11352:18;42815:42:0;11233:177:1;42715:41:0;;;;;;;;;;;;42755:1;42715:41;;27241:100;;;;;;;;;;-1:-1:-1;27294:7:0;27321:12;27241:100;;32864:162;;;;;;;;;;-1:-1:-1;32864:162:0;;;;;:::i;:::-;;:::i;42904:43::-;;;;;;;;;;;;;;;;42381:94;;;;;;;;;;;;;;;;27905:823;;;;;;;;;;-1:-1:-1;27905:823:0;;;;;:::i;:::-;;:::i;42674:32::-;;;;;;;;;;;;;;;;43036:30;;;;;;;;;;-1:-1:-1;43036:30:0;;;;;;;;;;;45724:209;;;;;;;;;;;;;:::i;33097:177::-;;;;;;;;;;-1:-1:-1;33097:177:0;;;;;:::i;:::-;;:::i;27418:187::-;;;;;;;;;;-1:-1:-1;27418:187:0;;;;;:::i;:::-;;:::i;46667:100::-;;;;;;;;;;-1:-1:-1;46667:100:0;;;;;:::i;:::-;;:::i;46459:93::-;;;;;;;;;;-1:-1:-1;46459:93:0;;;;;:::i;:::-;;:::i;30236:124::-;;;;;;;;;;-1:-1:-1;30236:124:0;;;;;:::i;:::-;;:::i;43128:858::-;;;;;;:::i;:::-;;:::i;42151:80::-;;;;;;;;;;;;;:::i;29236:221::-;;;;;;;;;;-1:-1:-1;29236:221:0;;;;;:::i;:::-;;:::i;4779:103::-;;;;;;;;;;;;;:::i;46165:178::-;;;;;;;;;;-1:-1:-1;46165:178:0;;;;;:::i;:::-;;:::i;42996:33::-;;;;;;;;;;-1:-1:-1;42996:33:0;;;;;;;;45941:216;;;;;;;;;;-1:-1:-1;45941:216:0;;;;;:::i;:::-;;:::i;4128:87::-;;;;;;;;;;-1:-1:-1;4201:6:0;;-1:-1:-1;;;;;4201:6:0;4128:87;;46899:86;;;;;;;;;;-1:-1:-1;46899:86:0;;;;;:::i;:::-;;:::i;46775:116::-;;;;;;;;;;-1:-1:-1;46775:116:0;;;;;:::i;:::-;;:::i;30596:104::-;;;;;;;;;;;;;:::i;45041:222::-;;;;;;;;;;-1:-1:-1;45041:222:0;;;;;:::i;:::-;;:::i;42864:33::-;;;;;;;;;;;;;;;;32274:288;;;;;;;;;;-1:-1:-1;32274:288:0;;;;;:::i;:::-;;:::i;42578:87::-;;;;;;;;;;;;42622:42;42578:87;;33345:355;;;;;;;;;;-1:-1:-1;33345:355:0;;;;;:::i;:::-;;:::i;42328:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;42328:46:0;;;;;47212:362;;;;;;;;;;-1:-1:-1;47212:362:0;;;;;:::i;:::-;;:::i;46560:99::-;;;;;;;;;;-1:-1:-1;46560:99:0;;;;;:::i;:::-;;:::i;42482:89::-;;;;;;;;;;;;42529:42;42482:89;;42954:33;;;;;;;;;;;;;;;;46993:93;;;;;;;;;;-1:-1:-1;46993:93:0;;;;;:::i;:::-;;:::i;46351:100::-;;;;;;;;;;-1:-1:-1;46351:100:0;;;;;:::i;:::-;;:::i;42238:83::-;;;;;;;;;;;;;:::i;45271:445::-;;;;;;;;;;-1:-1:-1;45271:445:0;;;;;:::i;:::-;;:::i;47094:110::-;;;;;;;;;;-1:-1:-1;47094:110:0;;;;;:::i;:::-;;:::i;5037:201::-;;;;;;;;;;-1:-1:-1;5037:201:0;;;;;:::i;:::-;;:::i;28800:372::-;28902:4;-1:-1:-1;;;;;;28939:40:0;;-1:-1:-1;;;28939:40:0;;:105;;-1:-1:-1;;;;;;;28996:48:0;;-1:-1:-1;;;28996:48:0;28939:105;:172;;;-1:-1:-1;;;;;;;29061:50:0;;-1:-1:-1;;;29061:50:0;28939:172;:225;;;-1:-1:-1;;;;;;;;;;25413:40:0;;;29128:36;28919:245;28800:372;-1:-1:-1;;28800:372:0:o;30427:100::-;30481:13;30514:5;30507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30427:100;:::o;31988:214::-;32056:7;32084:16;32092:7;34012:4;34046:12;-1:-1:-1;34036:22:0;33955:111;32084:16;32076:74;;;;-1:-1:-1;;;32076:74:0;;25308:2:1;32076:74:0;;;25290:21:1;25347:2;25327:18;;;25320:30;25386:34;25366:18;;;25359:62;-1:-1:-1;;;25437:18:1;;;25430:43;25490:19;;32076:74:0;;;;;;;;;-1:-1:-1;32170:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32170:24:0;;31988:214::o;31509:413::-;31582:13;31598:24;31614:7;31598:15;:24::i;:::-;31582:40;;31647:5;-1:-1:-1;;;;;31641:11:0;:2;-1:-1:-1;;;;;31641:11:0;;;31633:58;;;;-1:-1:-1;;;31633:58:0;;20401:2:1;31633:58:0;;;20383:21:1;20440:2;20420:18;;;20413:30;20479:34;20459:18;;;20452:62;-1:-1:-1;;;20530:18:1;;;20523:32;20572:19;;31633:58:0;20199:398:1;31633:58:0;2949:10;-1:-1:-1;;;;;31726:21:0;;;;:62;;-1:-1:-1;31751:37:0;31768:5;2949:10;45271:445;:::i;31751:37::-;31704:169;;;;-1:-1:-1;;;31704:169:0;;16622:2:1;31704:169:0;;;16604:21:1;16661:2;16641:18;;;16634:30;16700:34;16680:18;;;16673:62;16771:27;16751:18;;;16744:55;16816:19;;31704:169:0;16420:421:1;31704:169:0;31886:28;31895:2;31899:7;31908:5;31886:8;:28::i;:::-;31571:351;31509:413;;:::o;43994:1039::-;44165:13;;2949:10;;44165:13;;:21;;:13;:21;44157:59;;;;-1:-1:-1;;;44157:59:0;;13638:2:1;44157:59:0;;;13620:21:1;13677:2;13657:18;;;13650:30;13716:27;13696:18;;;13689:55;13761:18;;44157:59:0;13436:349:1;44157:59:0;44265:7;44249:13;27294:7;27321:12;;27241:100;44249:13;:23;;;;:::i;:::-;44235:10;;:37;;44227:68;;;;-1:-1:-1;;;44227:68:0;;17048:2:1;44227:68:0;;;17030:21:1;17087:2;17067:18;;;17060:30;-1:-1:-1;;;17106:18:1;;;17099:48;17164:18;;44227:68:0;16846:342:1;44227:68:0;44324:1;44314:7;:11;44306:34;;;;-1:-1:-1;;;44306:34:0;;14347:2:1;44306:34:0;;;14329:21:1;14386:2;14366:18;;;14359:30;-1:-1:-1;;;14405:18:1;;;14398:40;14455:18;;44306:34:0;14145:334:1;44306:34:0;44359:9;-1:-1:-1;;;;;44359:20:0;;;44351:45;;;;-1:-1:-1;;;44351:45:0;;25722:2:1;44351:45:0;;;25704:21:1;25761:2;25741:18;;;25734:30;-1:-1:-1;;;25780:18:1;;;25773:42;25832:18;;44351:45:0;25520:336:1;44351:45:0;44432:7;42755:1;44415:24;;44407:65;;;;-1:-1:-1;;;44407:65:0;;20804:2:1;44407:65:0;;;20786:21:1;20843:2;20823:18;;;20816:30;20882:29;20862:18;;;20855:57;20929:18;;44407:65:0;20602:351:1;44407:65:0;44533:7;44508:22;44522:7;44508:13;:22::i;:::-;:32;;;;:::i;:::-;42755:1;44491:49;;44483:92;;;;-1:-1:-1;;;44483:92:0;;15496:2:1;44483:92:0;;;15478:21:1;15535:2;15515:18;;;15508:30;15574:32;15554:18;;;15547:60;15624:18;;44483:92:0;15294:354:1;44483:92:0;44591:14;44588:247;;;44648:9;44639:5;;44629:7;:15;;;;:::i;:::-;:28;44621:63;;;;-1:-1:-1;;;44621:63:0;;20050:2:1;44621:63:0;;;20032:21:1;20089:2;20069:18;;;20062:30;-1:-1:-1;;;20108:18:1;;;20101:52;20170:18;;44621:63:0;19848:346:1;44621:63:0;44588:247;;;42622:42;-1:-1:-1;;;;;44723:24:0;;44748:7;44765:4;44782:9;;44772:7;:19;;;;:::i;:::-;44723:69;;-1:-1:-1;;;;;;44723:69:0;;;;;;;-1:-1:-1;;;;;10147:15:1;;;44723:69:0;;;10129:34:1;10199:15;;;;10179:18;;;10172:43;10231:18;;;10224:34;10064:18;;44723:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44715:108;;;;-1:-1:-1;;;44715:108:0;;13992:2:1;44715:108:0;;;13974:21:1;14031:2;14011:18;;;14004:30;14070:28;14050:18;;;14043:56;14116:18;;44715:108:0;13790:350:1;44715:108:0;44872:25;;-1:-1:-1;;7880:2:1;7876:15;;;7872:53;44872:25:0;;;7860:66:1;44847:12:0;;7942::1;;44872:25:0;;;;;;;;;;;;44862:36;;;;;;44847:51;;44917:50;44936:12;;44917:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44950:10:0;;;-1:-1:-1;44962:4:0;;-1:-1:-1;44917:18:0;:50::i;:::-;44909:76;;;;-1:-1:-1;;;44909:76:0;;23097:2:1;44909:76:0;;;23079:21:1;23136:2;23116:18;;;23109:30;-1:-1:-1;;;23155:18:1;;;23148:43;23208:18;;44909:76:0;22895:337:1;44909:76:0;44998:27;45008:7;45017;44998:9;:27::i;:::-;44105:928;;43994:1039;;;;:::o;32864:162::-;32990:28;33000:4;33006:2;33010:7;32990:9;:28::i;27905:823::-;27994:7;28030:16;28040:5;28030:9;:16::i;:::-;28022:5;:24;28014:71;;;;-1:-1:-1;;;28014:71:0;;12417:2:1;28014:71:0;;;12399:21:1;12456:2;12436:18;;;12429:30;12495:34;12475:18;;;12468:62;-1:-1:-1;;;12546:18:1;;;12539:32;12588:19;;28014:71:0;12215:398:1;28014:71:0;28096:22;27321:12;;;28096:22;;28228:426;28252:14;28248:1;:18;28228:426;;;28288:31;28322:14;;;:11;:14;;;;;;;;;28288:48;;;;;;;;;-1:-1:-1;;;;;28288:48:0;;;;;-1:-1:-1;;;28288:48:0;;;;;;;;;;;;28355:28;28351:103;;28424:14;;;-1:-1:-1;28351:103:0;28493:5;-1:-1:-1;;;;;28472:26:0;:17;-1:-1:-1;;;;;28472:26:0;;28468:175;;;28538:5;28523:11;:20;28519:77;;;-1:-1:-1;28575:1:0;-1:-1:-1;28568:8:0;;-1:-1:-1;;;28568:8:0;28519:77;28614:13;;;;:::i;:::-;;;;28468:175;-1:-1:-1;28268:3:0;;;;:::i;:::-;;;;28228:426;;;-1:-1:-1;28664:56:0;;-1:-1:-1;;;28664:56:0;;24132:2:1;28664:56:0;;;24114:21:1;24171:2;24151:18;;;24144:30;24210:34;24190:18;;;24183:62;-1:-1:-1;;;24261:18:1;;;24254:44;24315:19;;28664:56:0;23930:410:1;45724:209:0;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;45843:37:::1;::::0;45792:21:::1;::::0;45774:15:::1;::::0;2949:10;;45792:21;;45774:15;45843:37;45774:15;45843:37;45792:21;2949:10;45843:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45824:56;;;45899:7;45891:34;;;::::0;-1:-1:-1;;;45891:34:0;;23789:2:1;45891:34:0::1;::::0;::::1;23771:21:1::0;23828:2;23808:18;;;23801:30;-1:-1:-1;;;23847:18:1;;;23840:44;23901:18;;45891:34:0::1;23587:338:1::0;45891:34:0::1;45763:170;;45724:209::o:0;33097:177::-;33227:39;33244:4;33250:2;33254:7;33227:39;;;;;;;;;;;;:16;:39::i;27418:187::-;27485:7;27321:12;;27513:5;:21;27505:69;;;;-1:-1:-1;;;27505:69:0;;14686:2:1;27505:69:0;;;14668:21:1;14725:2;14705:18;;;14698:30;14764:34;14744:18;;;14737:62;-1:-1:-1;;;14815:18:1;;;14808:33;14858:19;;27505:69:0;14484:399:1;27505:69:0;-1:-1:-1;27592:5:0;27418:187::o;46667:100::-;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;46741:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;46459:93::-:0;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;46525:10:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;46525:19:0;;::::1;::::0;;;::::1;::::0;;46459:93::o;30236:124::-;30300:7;30327:20;30339:7;30327:11;:20::i;:::-;:25;;30236:124;-1:-1:-1;;30236:124:0:o;43128:858::-;43257:10;;2949;;43257;;;;;;;:18;;;:44;;;;-1:-1:-1;43279:13:0;;;;:22;43257:44;43249:79;;;;-1:-1:-1;;;43249:79:0;;18564:2:1;43249:79:0;;;18546:21:1;18603:2;18583:18;;;18576:30;-1:-1:-1;;;18622:18:1;;;18615:52;18684:18;;43249:79:0;18362:346:1;43249:79:0;43377:7;43361:13;27294:7;27321:12;;27241:100;43361:13;:23;;;;:::i;:::-;43347:10;;:37;;43339:68;;;;-1:-1:-1;;;43339:68:0;;17048:2:1;43339:68:0;;;17030:21:1;17087:2;17067:18;;;17060:30;-1:-1:-1;;;17106:18:1;;;17099:48;17164:18;;43339:68:0;16846:342:1;43339:68:0;43436:1;43426:7;:11;43418:34;;;;-1:-1:-1;;;43418:34:0;;14347:2:1;43418:34:0;;;14329:21:1;14386:2;14366:18;;;14359:30;-1:-1:-1;;;14405:18:1;;;14398:40;14455:18;;43418:34:0;14145:334:1;43418:34:0;43471:9;-1:-1:-1;;;;;43471:20:0;;;43463:45;;;;-1:-1:-1;;;43463:45:0;;25722:2:1;43463:45:0;;;25704:21:1;25761:2;25741:18;;;25734:30;-1:-1:-1;;;25780:18:1;;;25773:42;25832:18;;43463:45:0;25520:336:1;43463:45:0;43548:7;42807:1;43527:28;;43519:66;;;;-1:-1:-1;;;43519:66:0;;21564:2:1;43519:66:0;;;21546:21:1;21603:2;21583:18;;;21576:30;21642:26;21622:18;;;21615:54;21686:18;;43519:66:0;21362:348:1;43519:66:0;43647:7;43622:22;43636:7;43622:13;:22::i;:::-;:32;;;;:::i;:::-;42856:1;43604:50;;43596:83;;;;-1:-1:-1;;;43596:83:0;;16273:2:1;43596:83:0;;;16255:21:1;16312:2;16292:18;;;16285:30;-1:-1:-1;;;16331:18:1;;;16324:50;16391:18;;43596:83:0;16071:344:1;43596:83:0;43695:14;43692:247;;;43752:9;43743:5;;43733:7;:15;;;;:::i;:::-;:28;43725:63;;;;-1:-1:-1;;;43725:63:0;;20050:2:1;43725:63:0;;;20032:21:1;20089:2;20069:18;;;20062:30;-1:-1:-1;;;20108:18:1;;;20101:52;20170:18;;43725:63:0;19848:346:1;43725:63:0;43692:247;;;42622:42;-1:-1:-1;;;;;43827:24:0;;43852:7;43869:4;43886:9;;43876:7;:19;;;;:::i;:::-;43827:69;;-1:-1:-1;;;;;;43827:69:0;;;;;;;-1:-1:-1;;;;;10147:15:1;;;43827:69:0;;;10129:34:1;10199:15;;;;10179:18;;;10172:43;10231:18;;;10224:34;10064:18;;43827:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43819:108;;;;-1:-1:-1;;;43819:108:0;;13992:2:1;43819:108:0;;;13974:21:1;14031:2;14011:18;;;14004:30;14070:28;14050:18;;;14043:56;14116:18;;43819:108:0;13790:350:1;43819:108:0;43951:27;43961:7;43970;43951:9;:27::i;42151:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29236:221::-;29300:7;-1:-1:-1;;;;;29328:19:0;;29320:75;;;;-1:-1:-1;;;29320:75:0;;17395:2:1;29320:75:0;;;17377:21:1;17434:2;17414:18;;;17407:30;17473:34;17453:18;;;17446:62;-1:-1:-1;;;17524:18:1;;;17517:41;17575:19;;29320:75:0;17193:407:1;29320:75:0;-1:-1:-1;;;;;;29421:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29421:27:0;;29236:221::o;4779:103::-;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;4844:30:::1;4871:1;4844:18;:30::i;:::-;4779:103::o:0;46165:178::-;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;27294:7;27321:12;46246:11:::1;:28;;46238:62;;;::::0;-1:-1:-1;;;46238:62:0;;23439:2:1;46238:62:0::1;::::0;::::1;23421:21:1::0;23478:2;23458:18;;;23451:30;-1:-1:-1;;;23497:18:1;;;23490:51;23558:18;;46238:62:0::1;23237:345:1::0;46238:62:0::1;46311:10;:24:::0;46165:178::o;45941:216::-;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;46024:30:::1;::::0;-1:-1:-1;;;46024:30:0;;46048:4:::1;46024:30;::::0;::::1;9827:51:1::0;46008:13:0::1;::::0;-1:-1:-1;;;;;46024:15:0;::::1;::::0;::::1;::::0;9800:18:1;;46024:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46008:46;;46081:1;46073:5;:9;46065:38;;;::::0;-1:-1:-1;;;46065:38:0;;24547:2:1;46065:38:0::1;::::0;::::1;24529:21:1::0;24586:2;24566:18;;;24559:30;-1:-1:-1;;;24605:18:1;;;24598:46;24661:18;;46065:38:0::1;24345:340:1::0;46065:38:0::1;-1:-1:-1::0;;;;;46114:14:0;::::1;;2949:10:::0;46114:35:::1;::::0;-1:-1:-1;;;;;;46114:35:0::1;::::0;;;;;;-1:-1:-1;;;;;10954:32:1;;;46114:35:0::1;::::0;::::1;10936:51:1::0;11003:18;;;10996:34;;;10909:18;;46114:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;46899:86::-:0;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;46963:5:::1;:14:::0;46899:86::o;46775:116::-;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;46857:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;30596:104::-:0;30652:13;30685:7;30678:14;;;;;:::i;45041:222::-;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;45151:7:::1;45135:12;;:23;;45127:60;;;::::0;-1:-1:-1;;;45127:60:0;;12064:2:1;45127:60:0::1;::::0;::::1;12046:21:1::0;12103:2;12083:18;;;12076:30;12142:26;12122:18;;;12115:54;12186:18;;45127:60:0::1;11862:348:1::0;45127:60:0::1;45214:7;45198:12;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;45232:23:0::1;::::0;-1:-1:-1;45242:3:0;45247:7;45232:9:::1;:23::i;32274:288::-:0;-1:-1:-1;;;;;32369:24:0;;2949:10;32369:24;;32361:63;;;;-1:-1:-1;;;32361:63:0;;19276:2:1;32361:63:0;;;19258:21:1;19315:2;19295:18;;;19288:30;19354:28;19334:18;;;19327:56;19400:18;;32361:63:0;19074:350:1;32361:63:0;2949:10;32437:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32437:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32437:53:0;;;;;;;;;;32506:48;;11181:41:1;;;32437:42:0;;2949:10;32506:48;;11154:18:1;32506:48:0;;;;;;;32274:288;;:::o;33345:355::-;33504:28;33514:4;33520:2;33524:7;33504:9;:28::i;:::-;33565:48;33588:4;33594:2;33598:7;33607:5;33565:22;:48::i;:::-;33543:149;;;;-1:-1:-1;;;33543:149:0;;;;;;;:::i;:::-;33345:355;;;;:::o;47212:362::-;47278:13;47312:17;47320:8;34012:4;34046:12;-1:-1:-1;34036:22:0;33955:111;47312:17;47304:51;;;;-1:-1:-1;;;47304:51:0;;17807:2:1;47304:51:0;;;17789:21:1;17846:2;17826:18;;;17819:30;-1:-1:-1;;;17865:18:1;;;17858:51;17926:18;;47304:51:0;17605:345:1;47304:51:0;47397:1;47379:7;47373:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;47455:7;47479:26;47496:8;47479:16;:26::i;:::-;47522:13;;;;;;;;;;;;;-1:-1:-1;;;47522:13:0;;;47422:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47366:200;47212:362;-1:-1:-1;;47212:362:0:o;46560:99::-;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;46629:13:::1;:22:::0;;-1:-1:-1;;46629:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46560:99::o;46993:93::-;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;47060:9:::1;:18:::0;46993:93::o;46351:100::-;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;46419:10:::1;:24:::0;46351:100::o;42238:83::-;;;;;;;:::i;45271:445::-;45569:28;;-1:-1:-1;;;45569:28:0;;-1:-1:-1;;;;;9845:32:1;;;45569:28:0;;;9827:51:1;45396:4:0;;42529:42;;45561:49;;;42529:42;;45569:21;;9800:18:1;;45569:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;45561:49:0;;45557:93;;;45634:4;45627:11;;;;;45557:93;-1:-1:-1;;;;;32754:25:0;;;32730:4;32754:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;45669:39;45662:46;45271:445;-1:-1:-1;;;;45271:445:0:o;47094:110::-;47150:7;47176:20;47190:5;47176:13;:20::i;5037:201::-;4201:6;;-1:-1:-1;;;;;4201:6:0;2949:10;4348:23;4340:68;;;;-1:-1:-1;;;4340:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5126:22:0;::::1;5118:73;;;::::0;-1:-1:-1;;;5118:73:0;;12820:2:1;5118:73:0::1;::::0;::::1;12802:21:1::0;12859:2;12839:18;;;12832:30;12898:34;12878:18;;;12871:62;-1:-1:-1;;;12949:18:1;;;12942:36;12995:19;;5118:73:0::1;12618:402:1::0;5118:73:0::1;5202:28;5221:8;5202:18;:28::i;:::-;5037:201:::0;:::o;37999:196::-;38114:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38114:29:0;-1:-1:-1;;;;;38114:29:0;;;;;;;;;38159:28;;38114:24;;38159:28;;;;;;;37999:196;;;:::o;29465:229::-;29526:7;-1:-1:-1;;;;;29554:19:0;;29546:81;;;;-1:-1:-1;;;29546:81:0;;15855:2:1;29546:81:0;;;15837:21:1;15894:2;15874:18;;;15867:30;15933:34;15913:18;;;15906:62;-1:-1:-1;;;15984:18:1;;;15977:47;16041:19;;29546:81:0;15653:413:1;29546:81:0;-1:-1:-1;;;;;;29653:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;29653:32:0;;-1:-1:-1;;;;;29653:32:0;;29465:229::o;945:190::-;1070:4;1123;1094:25;1107:5;1114:4;1094:12;:25::i;:::-;:33;;945:190;-1:-1:-1;;;;945:190:0:o;34074:104::-;34143:27;34153:2;34157:8;34143:27;;;;;;;;;;;;:9;:27::i;36098:1783::-;36213:35;36251:20;36263:7;36251:11;:20::i;:::-;36326:18;;36213:58;;-1:-1:-1;36284:22:0;;-1:-1:-1;;;;;36310:34:0;2949:10;-1:-1:-1;;;;;36310:34:0;;:87;;;-1:-1:-1;2949:10:0;36361:20;36373:7;36361:11;:20::i;:::-;-1:-1:-1;;;;;36361:36:0;;36310:87;:154;;;-1:-1:-1;36431:18:0;;36414:50;;2949:10;45271:445;:::i;36414:50::-;36284:181;;36486:17;36478:80;;;;-1:-1:-1;;;36478:80:0;;19631:2:1;36478:80:0;;;19613:21:1;19670:2;19650:18;;;19643:30;19709:34;19689:18;;;19682:62;-1:-1:-1;;;19760:18:1;;;19753:48;19818:19;;36478:80:0;19429:414:1;36478:80:0;36601:4;-1:-1:-1;;;;;36579:26:0;:13;:18;;;-1:-1:-1;;;;;36579:26:0;;36571:77;;;;-1:-1:-1;;;36571:77:0;;18157:2:1;36571:77:0;;;18139:21:1;18196:2;18176:18;;;18169:30;18235:34;18215:18;;;18208:62;-1:-1:-1;;;18286:18:1;;;18279:36;18332:19;;36571:77:0;17955:402:1;36571:77:0;-1:-1:-1;;;;;36667:16:0;;36659:66;;;;-1:-1:-1;;;36659:66:0;;15090:2:1;36659:66:0;;;15072:21:1;15129:2;15109:18;;;15102:30;15168:34;15148:18;;;15141:62;-1:-1:-1;;;15219:18:1;;;15212:35;15264:19;;36659:66:0;14888:401:1;36659:66:0;36846:49;36863:1;36867:7;36876:13;:18;;;36846:8;:49::i;:::-;-1:-1:-1;;;;;37100:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37100:31:0;;;-1:-1:-1;;;;;37100:31:0;;;-1:-1:-1;;37100:31:0;;;;;;;37146:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37146:29:0;;;;;;;;;;;;;37222:43;;;;;;;;;;37248:15;37222:43;;;;;;;;;;37199:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;37199:66:0;;;;;;;-1:-1:-1;;;37199:66:0;;;;;;;;;;;;37100:18;37527:11;;37199:20;;37527:11;:::i;:::-;37594:1;37553:24;;;:11;:24;;;;;:29;37505:33;;-1:-1:-1;;;;;;37553:29:0;37549:227;;37617:20;37625:11;34012:4;34046:12;-1:-1:-1;34036:22:0;33955:111;37617:20;37613:152;;;37685:64;;;;;;;;37700:18;;-1:-1:-1;;;;;37685:64:0;;;;;;37720:28;;;;37685:64;;;;;;;;;;-1:-1:-1;37658:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;37658:91:0;-1:-1:-1;;;;;;37658:91:0;;;;;;;;;;;;37613:152;37812:7;37808:2;-1:-1:-1;;;;;37793:27:0;37802:4;-1:-1:-1;;;;;37793:27:0;;;;;;;;;;;37831:42;33345:355;29702:472;-1:-1:-1;;;;;;;;;;;;;;;;;29805:16:0;29813:7;34012:4;34046:12;-1:-1:-1;34036:22:0;33955:111;29805:16;29797:71;;;;-1:-1:-1;;;29797:71:0;;13227:2:1;29797:71:0;;;13209:21:1;13266:2;13246:18;;;13239:30;13305:34;13285:18;;;13278:62;-1:-1:-1;;;13356:18:1;;;13349:40;13406:19;;29797:71:0;13025:406:1;29797:71:0;29901:7;29881:216;29935:31;29969:17;;;:11;:17;;;;;;;;;29935:51;;;;;;;;;-1:-1:-1;;;;;29935:51:0;;;;;-1:-1:-1;;;29935:51:0;;;;;;;;;;;;30005:28;30001:85;;30061:9;29702:472;-1:-1:-1;;;29702:472:0:o;30001:85::-;-1:-1:-1;29912:6:0;;;;:::i;:::-;;;;29881:216;;5398:191;5491:6;;;-1:-1:-1;;;;;5508:17:0;;;-1:-1:-1;;;;;;5508:17:0;;;;;;;5541:40;;5491:6;;;5508:17;5491:6;;5541:40;;5472:16;;5541:40;5461:128;5398:191;:::o;38760:804::-;38915:4;-1:-1:-1;;;;;38936:13:0;;17448:20;17496:8;38932:625;;38972:72;;-1:-1:-1;;;38972:72:0;;-1:-1:-1;;;;;38972:36:0;;;;;:72;;2949:10;;39023:4;;39029:7;;39038:5;;38972:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38972:72:0;;;;;;;;-1:-1:-1;;38972:72:0;;;;;;;;;;;;:::i;:::-;;;38968:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39218:13:0;;39214:273;;39261:61;;-1:-1:-1;;;39261:61:0;;;;;;;:::i;39214:273::-;39437:6;39431:13;39422:6;39418:2;39414:15;39407:38;38968:534;-1:-1:-1;;;;;;39095:55:0;-1:-1:-1;;;39095:55:0;;-1:-1:-1;39088:62:0;;38932:625;-1:-1:-1;39541:4:0;38760:804;;;;;;:::o;5946:723::-;6002:13;6223:10;6219:53;;-1:-1:-1;;6250:10:0;;;;;;;;;;;;-1:-1:-1;;;6250:10:0;;;;;5946:723::o;6219:53::-;6297:5;6282:12;6338:78;6345:9;;6338:78;;6371:8;;;;:::i;:::-;;-1:-1:-1;6394:10:0;;-1:-1:-1;6402:2:0;6394:10;;:::i;:::-;;;6338:78;;;6426:19;6458:6;6448:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6448:17:0;;6426:39;;6476:154;6483:10;;6476:154;;6510:11;6520:1;6510:11;;:::i;:::-;;-1:-1:-1;6579:10:0;6587:2;6579:5;:10;:::i;:::-;6566:24;;:2;:24;:::i;:::-;6553:39;;6536:6;6543;6536:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6536:56:0;;;;;;;;-1:-1:-1;6607:11:0;6616:2;6607:11;;:::i;:::-;;;6476:154;;1497:701;1580:7;1623:4;1580:7;1638:523;1662:5;:12;1658:1;:16;1638:523;;;1696:20;1719:5;1725:1;1719:8;;;;;;;;:::i;:::-;;;;;;;1696:31;;1762:12;1746;:28;1742:408;;1899:44;;;;;;8122:19:1;;;8157:12;;;8150:28;;;8194:12;;1899:44:0;;;;;;;;;;;;1889:55;;;;;;1874:70;;1742:408;;;2089:44;;;;;;8122:19:1;;;8157:12;;;8150:28;;;8194:12;;2089:44:0;;;;;;;;;;;;2079:55;;;;;;2064:70;;1742:408;-1:-1:-1;1676:3:0;;;;:::i;:::-;;;;1638:523;;;-1:-1:-1;2178:12:0;1497:701;-1:-1:-1;;;1497:701:0:o;34455:1389::-;34578:20;34601:12;-1:-1:-1;;;;;34632:16:0;;34624:62;;;;-1:-1:-1;;;34624:62:0;;22695:2:1;34624:62:0;;;22677:21:1;22734:2;22714:18;;;22707:30;22773:34;22753:18;;;22746:62;-1:-1:-1;;;22824:18:1;;;22817:31;22865:19;;34624:62:0;22493:397:1;34624:62:0;34831:21;34839:12;34012:4;34046:12;-1:-1:-1;34036:22:0;33955:111;34831:21;34830:22;34822:64;;;;-1:-1:-1;;;34822:64:0;;22337:2:1;34822:64:0;;;22319:21:1;22376:2;22356:18;;;22349:30;22415:31;22395:18;;;22388:59;22464:18;;34822:64:0;22135:353:1;34822:64:0;34916:1;34905:8;:12;34897:60;;;;-1:-1:-1;;;34897:60:0;;21160:2:1;34897:60:0;;;21142:21:1;21199:2;21179:18;;;21172:30;21238:34;21218:18;;;21211:62;-1:-1:-1;;;21289:18:1;;;21282:33;21332:19;;34897:60:0;20958:399:1;34897:60:0;-1:-1:-1;;;;;35077:16:0;;35044:30;35077:16;;;:12;:16;;;;;;;;;35044:49;;;;;;;;;-1:-1:-1;;;;;35044:49:0;;;;;-1:-1:-1;;;35044:49:0;;;;;;;;;;;35123:135;;;;;;;;35149:19;;35044:49;;35123:135;;;35149:39;;35179:8;;35149:39;:::i;:::-;-1:-1:-1;;;;;35123:135:0;;;;;35238:8;35203:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;35123:135:0;;;;;;-1:-1:-1;;;;;35104:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;35104:154:0;;;;;;;;;;;;35297:43;;;;;;;;;;;35323:15;35297:43;;;;;;;;35269:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;35269:71:0;-1:-1:-1;;;;;;35269:71:0;;;;;;;;;;;;;;;;;;35281:12;;35401:325;35425:8;35421:1;:12;35401:325;;;35460:38;;35485:12;;-1:-1:-1;;;;;35460:38:0;;;35477:1;;35460:38;;35477:1;;35460:38;35539:59;35570:1;35574:2;35578:12;35592:5;35539:22;:59::i;:::-;35513:172;;;;-1:-1:-1;;;35513:172:0;;;;;;;:::i;:::-;35700:14;;;;:::i;:::-;;;;35435:3;;;;;:::i;:::-;;;;35401:325;;;-1:-1:-1;35738:12:0;:27;;;35776:60;33345:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;:::-;886:5;650:247;-1:-1:-1;;;650:247:1:o;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:382::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2875:30;2834:32;2875:30;:::i;2942:315::-;3010:6;3018;3071:2;3059:9;3050:7;3046:23;3042:32;3039:52;;;3087:1;3084;3077:12;3039:52;3126:9;3113:23;3145:31;3170:5;3145:31;:::i;:::-;3195:5;3247:2;3232:18;;;;3219:32;;-1:-1:-1;;;2942:315:1:o;3262:241::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3426:9;3413:23;3445:28;3467:5;3445:28;:::i;3508:245::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3676:9;3670:16;3695:28;3717:5;3695:28;:::i;3758:180::-;3817:6;3870:2;3858:9;3849:7;3845:23;3841:32;3838:52;;;3886:1;3883;3876:12;3838:52;-1:-1:-1;3909:23:1;;3758:180;-1:-1:-1;3758:180:1:o;3943:245::-;4001:6;4054:2;4042:9;4033:7;4029:23;4025:32;4022:52;;;4070:1;4067;4060:12;4022:52;4109:9;4096:23;4128:30;4152:5;4128:30;:::i;4193:249::-;4262:6;4315:2;4303:9;4294:7;4290:23;4286:32;4283:52;;;4331:1;4328;4321:12;4283:52;4363:9;4357:16;4382:30;4406:5;4382:30;:::i;4714:280::-;4813:6;4866:2;4854:9;4845:7;4841:23;4837:32;4834:52;;;4882:1;4879;4872:12;4834:52;4914:9;4908:16;4933:31;4958:5;4933:31;:::i;4999:450::-;5068:6;5121:2;5109:9;5100:7;5096:23;5092:32;5089:52;;;5137:1;5134;5127:12;5089:52;5177:9;5164:23;5210:18;5202:6;5199:30;5196:50;;;5242:1;5239;5232:12;5196:50;5265:22;;5318:4;5310:13;;5306:27;-1:-1:-1;5296:55:1;;5347:1;5344;5337:12;5296:55;5370:73;5435:7;5430:2;5417:16;5412:2;5408;5404:11;5370:73;:::i;5639:184::-;5709:6;5762:2;5750:9;5741:7;5737:23;5733:32;5730:52;;;5778:1;5775;5768:12;5730:52;-1:-1:-1;5801:16:1;;5639:184;-1:-1:-1;5639:184:1:o;5828:315::-;5896:6;5904;5957:2;5945:9;5936:7;5932:23;5928:32;5925:52;;;5973:1;5970;5963:12;5925:52;6009:9;5996:23;5986:33;;6069:2;6058:9;6054:18;6041:32;6082:31;6107:5;6082:31;:::i;6148:309::-;6213:6;6221;6274:2;6262:9;6253:7;6249:23;6245:32;6242:52;;;6290:1;6287;6280:12;6242:52;6326:9;6313:23;6303:33;;6386:2;6375:9;6371:18;6358:32;6399:28;6421:5;6399:28;:::i;6462:812::-;6563:6;6571;6579;6587;6640:2;6628:9;6619:7;6615:23;6611:32;6608:52;;;6656:1;6653;6646:12;6608:52;6692:9;6679:23;6669:33;;6752:2;6741:9;6737:18;6724:32;6765:28;6787:5;6765:28;:::i;:::-;6812:5;-1:-1:-1;6868:2:1;6853:18;;6840:32;6891:18;6921:14;;;6918:34;;;6948:1;6945;6938:12;6918:34;6986:6;6975:9;6971:22;6961:32;;7031:7;7024:4;7020:2;7016:13;7012:27;7002:55;;7053:1;7050;7043:12;7002:55;7093:2;7080:16;7119:2;7111:6;7108:14;7105:34;;;7135:1;7132;7125:12;7105:34;7188:7;7183:2;7173:6;7170:1;7166:14;7162:2;7158:23;7154:32;7151:45;7148:65;;;7209:1;7206;7199:12;7148:65;6462:812;;;;-1:-1:-1;;7240:2:1;7232:11;;-1:-1:-1;;;6462:812:1:o;7279:257::-;7320:3;7358:5;7352:12;7385:6;7380:3;7373:19;7401:63;7457:6;7450:4;7445:3;7441:14;7434:4;7427:5;7423:16;7401:63;:::i;:::-;7518:2;7497:15;-1:-1:-1;;7493:29:1;7484:39;;;;7525:4;7480:50;;7279:257;-1:-1:-1;;7279:257:1:o;7541:185::-;7583:3;7621:5;7615:12;7636:52;7681:6;7676:3;7669:4;7662:5;7658:16;7636:52;:::i;:::-;7704:16;;;;;7541:185;-1:-1:-1;;7541:185:1:o;8217:1249::-;8441:3;8470:1;8503:6;8497:13;8533:3;8555:1;8583:9;8579:2;8575:18;8565:28;;8643:2;8632:9;8628:18;8665;8655:61;;8709:4;8701:6;8697:17;8687:27;;8655:61;8735:2;8783;8775:6;8772:14;8752:18;8749:38;8746:165;;;-1:-1:-1;;;8810:33:1;;8866:4;8863:1;8856:15;8896:4;8817:3;8884:17;8746:165;8927:18;8954:104;;;;9072:1;9067:320;;;;8920:467;;8954:104;-1:-1:-1;;8987:24:1;;8975:37;;9032:16;;;;-1:-1:-1;8954:104:1;;9067:320;26116:1;26109:14;;;26153:4;26140:18;;9162:1;9176:165;9190:6;9187:1;9184:13;9176:165;;;9268:14;;9255:11;;;9248:35;9311:16;;;;9205:10;;9176:165;;;9180:3;;9370:6;9365:3;9361:16;9354:23;;8920:467;;;;;;;9403:57;9429:30;9455:3;9447:6;9429:30;:::i;:::-;9421:6;9403:57;:::i;:::-;9396:64;8217:1249;-1:-1:-1;;;;;;8217:1249:1:o;10269:488::-;-1:-1:-1;;;;;10538:15:1;;;10520:34;;10590:15;;10585:2;10570:18;;10563:43;10637:2;10622:18;;10615:34;;;10685:3;10680:2;10665:18;;10658:31;;;10463:4;;10706:45;;10731:19;;10723:6;10706:45;:::i;11638:219::-;11787:2;11776:9;11769:21;11750:4;11807:44;11847:2;11836:9;11832:18;11824:6;11807:44;:::i;18713:356::-;18915:2;18897:21;;;18934:18;;;18927:30;18993:34;18988:2;18973:18;;18966:62;19060:2;19045:18;;18713:356::o;21715:415::-;21917:2;21899:21;;;21956:2;21936:18;;;21929:30;21995:34;21990:2;21975:18;;21968:62;-1:-1:-1;;;22061:2:1;22046:18;;22039:49;22120:3;22105:19;;21715:415::o;26169:253::-;26209:3;-1:-1:-1;;;;;26298:2:1;26295:1;26291:10;26328:2;26325:1;26321:10;26359:3;26355:2;26351:12;26346:3;26343:21;26340:47;;;26367:18;;:::i;:::-;26403:13;;26169:253;-1:-1:-1;;;;26169:253:1:o;26427:128::-;26467:3;26498:1;26494:6;26491:1;26488:13;26485:39;;;26504:18;;:::i;:::-;-1:-1:-1;26540:9:1;;26427:128::o;26560:120::-;26600:1;26626;26616:35;;26631:18;;:::i;:::-;-1:-1:-1;26665:9:1;;26560:120::o;26685:168::-;26725:7;26791:1;26787;26783:6;26779:14;26776:1;26773:21;26768:1;26761:9;26754:17;26750:45;26747:71;;;26798:18;;:::i;:::-;-1:-1:-1;26838:9:1;;26685:168::o;26858:125::-;26898:4;26926:1;26923;26920:8;26917:34;;;26931:18;;:::i;:::-;-1:-1:-1;26968:9:1;;26858:125::o;26988:258::-;27060:1;27070:113;27084:6;27081:1;27078:13;27070:113;;;27160:11;;;27154:18;27141:11;;;27134:39;27106:2;27099:10;27070:113;;;27201:6;27198:1;27195:13;27192:48;;;-1:-1:-1;;27236:1:1;27218:16;;27211:27;26988:258::o;27251:136::-;27290:3;27318:5;27308:39;;27327:18;;:::i;:::-;-1:-1:-1;;;27363:18:1;;27251:136::o;27392:380::-;27471:1;27467:12;;;;27514;;;27535:61;;27589:4;27581:6;27577:17;27567:27;;27535:61;27642:2;27634:6;27631:14;27611:18;27608:38;27605:161;;;27688:10;27683:3;27679:20;27676:1;27669:31;27723:4;27720:1;27713:15;27751:4;27748:1;27741:15;27605:161;;27392:380;;;:::o;27777:135::-;27816:3;-1:-1:-1;;27837:17:1;;27834:43;;;27857:18;;:::i;:::-;-1:-1:-1;27904:1:1;27893:13;;27777:135::o;27917:112::-;27949:1;27975;27965:35;;27980:18;;:::i;:::-;-1:-1:-1;28014:9:1;;27917:112::o;28034:127::-;28095:10;28090:3;28086:20;28083:1;28076:31;28126:4;28123:1;28116:15;28150:4;28147:1;28140:15;28166:127;28227:10;28222:3;28218:20;28215:1;28208:31;28258:4;28255:1;28248:15;28282:4;28279:1;28272:15;28298:127;28359:10;28354:3;28350:20;28347:1;28340:31;28390:4;28387:1;28380:15;28414:4;28411:1;28404:15;28430:127;28491:10;28486:3;28482:20;28479:1;28472:31;28522:4;28519:1;28512:15;28546:4;28543:1;28536:15;28562:131;-1:-1:-1;;;;;28637:31:1;;28627:42;;28617:70;;28683:1;28680;28673:12;28698:118;28784:5;28777:13;28770:21;28763:5;28760:32;28750:60;;28806:1;28803;28796:12;28821:131;-1:-1:-1;;;;;;28895:32:1;;28885:43;;28875:71;;28942:1;28939;28932:12

Swarm Source

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