ETH Price: $3,388.83 (-1.54%)
Gas: 2 Gwei

Token

MeatCube (MEAT)
 

Overview

Max Total Supply

856 MEAT

Holders

442

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fezbayc.eth
Balance
1 MEAT
0x59547d1673f04609dba8cb9d9d3102abec4317af
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MeatCubes are a generative collection of 6,969 NFTs on the Ethereum blockchain. Each MeatCube is assembled from over 150+ randomly chosen parts!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
meatcubes

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-22
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;


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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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




pragma solidity ^0.8.0;

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

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

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

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

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



pragma solidity ^0.8.0;



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



pragma solidity ^0.8.0;



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

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




pragma solidity ^0.8.0;



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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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




pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}




pragma solidity ^0.8.0;



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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}




pragma solidity ^0.8.4;

/*
MEATCUBES!

*/


contract meatcubes is ERC721Enumerable, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    uint256 public constant MeatCube_PRIVATE = 1400;
    uint256 public constant MeatCube_PUBLIC = 5569;
    uint256 public constant MeatCube_MAX = MeatCube_PRIVATE + MeatCube_PUBLIC;
    uint256 public constant MeatCube_PRICE = 0.08 ether;
    uint256 public constant MeatCube_PER_MINT = 10;


    mapping(address => bool) public presalerList;
    mapping(address => uint256) public presalerListPurchases;


    string private _tokenBaseURI = "http://api.cubes.wtf/";



    uint256 public publicAmountMinted;
    uint256 public privateAmountMinted;
    uint256 public presalePurchaseLimit = 2;
    bool public presaleLive;
    bool public saleLive;
    bool public locked;

    address cm = 0xA0FBaDc4e39783b5DDB34179dc37B5a8C573DD23;
    address dv = 0xd7DBe51f9EBf734A5fd55C18002a063c6881d8b4;
    address kn = 0x435E6ef5310319353962A03F53A3d6823087e6A9;

    constructor() ERC721("MeatCube", "MEAT") { }

    modifier notLocked {
        require(!locked, "Contract metadata methods are locked");
        _;
    }
    function reserveMeatCube() public onlyOwner {
        uint supply= totalSupply();
        uint i;
        for (i = 1; i < 26; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function addToPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            require(!presalerList[entry], "DUPLICATE_ENTRY");

            presalerList[entry] = true;
        }
    }

    function removeFromPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");

            presalerList[entry] = false;
        }
    }


   //DM @Bennagins and ask him how much fun VUE routing is :)

    function buy(uint256 tokenQuantity) external payable {
        require(saleLive, "Sale is closed");
        require(!presaleLive, "Presale Only");
        require(totalSupply() < MeatCube_MAX, "All Meat Cubes have been minted");
        //require(publicAmountMinted + tokenQuantity <= MeatCube_PUBLIC, "EXCEED_PUBLIC"); People can buy as many as they want
        require(tokenQuantity <= MeatCube_PER_MINT, "Can not mint more than 10 meat cubes at a time");
        require(MeatCube_PRICE * tokenQuantity <= msg.value, "Not enough ETH");

        for(uint256 i = 0; i < tokenQuantity; i++) {
            publicAmountMinted++;
            _safeMint(msg.sender, totalSupply() + 1);
        }


    }

    function presaleBuy(uint256 tokenQuantity) external payable {
        require(!saleLive && presaleLive, "Presale is closed");
        require(presalerList[msg.sender], "ETH Address is not on the presale list");
        require(totalSupply() < MeatCube_MAX, "All Meat Cubes have been minted");
        require(privateAmountMinted + tokenQuantity <= MeatCube_PRIVATE, "Can only mint 2");
        require(presalerListPurchases[msg.sender] + tokenQuantity <= presalePurchaseLimit, "You already minted your 2 presale mints");
        require(MeatCube_PRICE * tokenQuantity <= msg.value, "Not enough ETH");

        for (uint256 i = 0; i < tokenQuantity; i++) {
            privateAmountMinted++;
            presalerListPurchases[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }



    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        payable(kn).transfer((balance*40)/100);
        payable(dv).transfer((balance*47)/100);
        payable(cm).transfer((balance*13)/100);
        payable(msg.sender).transfer(address(this).balance);
    }


    function isPresaler(address addr) external view returns (bool) {
        return presalerList[addr];
    }

    function presalePurchasedCount(address addr) external view returns (uint256) {
        return presalerListPurchases[addr];
    }

    // Owner functions for enabling presale, sale, revealing and setting the provenance hash
    function lockMetadata() external onlyOwner {
        locked = true;
    }

    function togglePresaleStatus() external onlyOwner {
        presaleLive = !presaleLive;
    }

    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }

    function setBaseURI(string calldata URI) external onlyOwner notLocked {
        _tokenBaseURI = URI;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");

        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }
}

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":"MeatCube_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MeatCube_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MeatCube_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MeatCube_PRIVATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MeatCube_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"isPresaler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"presalePurchasedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMeatCube","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":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052601560808190527f687474703a2f2f6170692e63756265732e7774662f000000000000000000000060a09081526200004091600d9190620001a5565b5060026010556011805476a0fbadc4e39783b5ddb34179dc37b5a8c573dd230000006301000000600160b81b0319909116179055601280546001600160a01b031990811673d7dbe51f9ebf734a5fd55c18002a063c6881d8b4179091556013805490911673435e6ef5310319353962a03f53a3d6823087e6a9179055348015620000c957600080fd5b5060408051808201825260088152674d6561744375626560c01b6020808301918252835180850190945260048452631351505560e21b9084015281519192916200011691600091620001a5565b5080516200012c906001906020840190620001a5565b50505062000149620001436200014f60201b60201c565b62000153565b62000288565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b3906200024b565b90600052602060002090601f016020900481019282620001d7576000855562000222565b82601f10620001f257805160ff191683800117855562000222565b8280016001018555821562000222579182015b828111156200022257825182559160200191906001019062000205565b506200023092915062000234565b5090565b5b8082111562000230576000815560010162000235565b600181811c908216806200026057607f821691505b602082108114156200028257634e487b7160e01b600052602260045260246000fd5b50919050565b612a6880620002986000396000f3fe6080604052600436106102675760003560e01c806383a9e04911610144578063b179e060116100b6578063d96a094a1161007a578063d96a094a14610712578063df9902b914610725578063e081b7811461073b578063e985e9c51461075a578063f2fde38b146107a3578063f4743070146107c357600080fd5b8063b179e0601461067d578063b88d4fde1461069d578063c87b56dd146106bd578063c8bf341a146106dd578063cf309012146106f257600080fd5b8063989bdbb611610108578063989bdbb61461059c5780639bf80316146105b15780639cf2e8d6146105de5780639e273b2f1461060e578063a22cb46514610647578063aff567361461066757600080fd5b806383a9e0491461051d5780638b055733146105375780638da5cb5b14610553578063940f1ada1461057157806395d89b411461058757600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e1461048057806370a08231146104a0578063715018a6146104c05780637204a3c9146104d55780637bffb4ce146104f5578063815f7bbd1461050a57600080fd5b806342842e0e146103d45780634f6ccce7146103f457806355f804b31461041457806359a12ad5146104345780635ce7af1f1461044a57600080fd5b8063152db76e1161022f578063152db76e1461033257806318160ddd1461035557806323b872dd1461036a5780632a1f43981461038a5780632f745c591461039f5780633ccfd60b146103bf57600080fd5b806301ffc9a71461026c578063049c5c49146102a157806306fdde03146102b8578063081812fc146102da578063095ea7b314610312575b600080fd5b34801561027857600080fd5b5061028c610287366004612621565b6107d9565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610804565b005b3480156102c457600080fd5b506102cd610854565b60405161029891906127f7565b3480156102e657600080fd5b506102fa6102f53660046126b4565b6108e6565b6040516001600160a01b039091168152602001610298565b34801561031e57600080fd5b506102b661032d366004612588565b61097b565b34801561033e57600080fd5b50610347600a81565b604051908152602001610298565b34801561036157600080fd5b50600854610347565b34801561037657600080fd5b506102b661038536600461243e565b610a91565b34801561039657600080fd5b50610347610ac2565b3480156103ab57600080fd5b506103476103ba366004612588565b610ad3565b3480156103cb57600080fd5b506102b6610b69565b3480156103e057600080fd5b506102b66103ef36600461243e565b610cb9565b34801561040057600080fd5b5061034761040f3660046126b4565b610cd4565b34801561042057600080fd5b506102b661042f366004612659565b610d75565b34801561044057600080fd5b50610347600f5481565b34801561045657600080fd5b506103476104653660046123eb565b6001600160a01b03166000908152600c602052604090205490565b34801561048c57600080fd5b506102fa61049b3660046126b4565b610e10565b3480156104ac57600080fd5b506103476104bb3660046123eb565b610e87565b3480156104cc57600080fd5b506102b6610f0e565b3480156104e157600080fd5b506102b66104f03660046125b1565b610f44565b34801561050157600080fd5b506102b6611086565b6102b66105183660046126b4565b6110c4565b34801561052957600080fd5b5060115461028c9060ff1681565b34801561054357600080fd5b5061034767011c37937e08000081565b34801561055f57600080fd5b50600a546001600160a01b03166102fa565b34801561057d57600080fd5b50610347600e5481565b34801561059357600080fd5b506102cd611378565b3480156105a857600080fd5b506102b6611387565b3480156105bd57600080fd5b506103476105cc3660046123eb565b600c6020526000908152604090205481565b3480156105ea57600080fd5b5061028c6105f93660046123eb565b600b6020526000908152604090205460ff1681565b34801561061a57600080fd5b5061028c6106293660046123eb565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561065357600080fd5b506102b661066236600461254e565b6113c4565b34801561067357600080fd5b5061034761057881565b34801561068957600080fd5b506102b66106983660046125b1565b611489565b3480156106a957600080fd5b506102b66106b8366004612479565b61156d565b3480156106c957600080fd5b506102cd6106d83660046126b4565b6115a5565b3480156106e957600080fd5b506102b661163e565b3480156106fe57600080fd5b5060115461028c9062010000900460ff1681565b6102b66107203660046126b4565b6116a1565b34801561073157600080fd5b506103476115c181565b34801561074757600080fd5b5060115461028c90610100900460ff1681565b34801561076657600080fd5b5061028c61077536600461240c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107af57600080fd5b506102b66107be3660046123eb565b611882565b3480156107cf57600080fd5b5061034760105481565b60006001600160e01b0319821663780e9d6360e01b14806107fe57506107fe8261191d565b92915050565b600a546001600160a01b031633146108375760405162461bcd60e51b815260040161082e9061285c565b60405180910390fd5b6011805461ff001981166101009182900460ff1615909102179055565b60606000805461086390612970565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90612970565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082e565b506000908152600460205260409020546001600160a01b031690565b600061098682610e10565b9050806001600160a01b0316836001600160a01b031614156109f45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082e565b336001600160a01b0382161480610a105750610a108133610775565b610a825760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082e565b610a8c838361196d565b505050565b610a9b33826119db565b610ab75760405162461bcd60e51b815260040161082e90612891565b610a8c838383611ad2565b610ad06115c16105786128e2565b81565b6000610ade83610e87565b8210610b405760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161082e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b935760405162461bcd60e51b815260040161082e9061285c565b60135447906001600160a01b03166108fc6064610bb184602861290e565b610bbb91906128fa565b6040518115909202916000818181858888f19350505050158015610be3573d6000803e3d6000fd5b506012546001600160a01b03166108fc6064610c0084602f61290e565b610c0a91906128fa565b6040518115909202916000818181858888f19350505050158015610c32573d6000803e3d6000fd5b50601154630100000090046001600160a01b03166108fc6064610c5684600d61290e565b610c6091906128fa565b6040518115909202916000818181858888f19350505050158015610c88573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610cb5573d6000803e3d6000fd5b5050565b610a8c8383836040518060200160405280600081525061156d565b6000610cdf60085490565b8210610d425760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161082e565b60088281548110610d6357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610d9f5760405162461bcd60e51b815260040161082e9061285c565b60115462010000900460ff1615610e045760405162461bcd60e51b8152602060048201526024808201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60448201526318dad95960e21b606482015260840161082e565b610a8c600d8383612336565b6000818152600260205260408120546001600160a01b0316806107fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082e565b60006001600160a01b038216610ef25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f385760405162461bcd60e51b815260040161082e9061285c565b610f426000611c7d565b565b600a546001600160a01b03163314610f6e5760405162461bcd60e51b815260040161082e9061285c565b60005b81811015610a8c576000838383818110610f9b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610fb091906123eb565b90506001600160a01b038116610ff75760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015260640161082e565b6001600160a01b0381166000908152600b602052604090205460ff16156110525760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff191660011790558061107e816129ab565b915050610f71565b600a546001600160a01b031633146110b05760405162461bcd60e51b815260040161082e9061285c565b6011805460ff19811660ff90911615179055565b601154610100900460ff161580156110de575060115460ff165b61111e5760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a5cc818db1bdcd959607a1b604482015260640161082e565b336000908152600b602052604090205460ff1661118c5760405162461bcd60e51b815260206004820152602660248201527f4554482041646472657373206973206e6f74206f6e207468652070726573616c60448201526519481b1a5cdd60d21b606482015260840161082e565b61119a6115c16105786128e2565b600854106111ea5760405162461bcd60e51b815260206004820152601f60248201527f416c6c204d6561742043756265732068617665206265656e206d696e74656400604482015260640161082e565b61057881600f546111fb91906128e2565b111561123b5760405162461bcd60e51b815260206004820152600f60248201526e21b0b71037b7363c9036b4b73a101960891b604482015260640161082e565b601054336000908152600c60205260409020546112599083906128e2565b11156112b75760405162461bcd60e51b815260206004820152602760248201527f596f7520616c7265616479206d696e74656420796f757220322070726573616c60448201526665206d696e747360c81b606482015260840161082e565b346112ca8267011c37937e08000061290e565b11156113095760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015260640161082e565b60005b81811015610cb557600f8054906000611324836129ab565b9091555050336000908152600c60205260408120805491611344836129ab565b91905055506113663361135660085490565b6113619060016128e2565b611ccf565b80611370816129ab565b91505061130c565b60606001805461086390612970565b600a546001600160a01b031633146113b15760405162461bcd60e51b815260040161082e9061285c565b6011805462ff0000191662010000179055565b6001600160a01b03821633141561141d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114b35760405162461bcd60e51b815260040161082e9061285c565b60005b81811015610a8c5760008383838181106114e057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906114f591906123eb565b90506001600160a01b03811661153c5760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff1916905580611565816129ab565b9150506114b6565b61157733836119db565b6115935760405162461bcd60e51b815260040161082e90612891565b61159f84848484611ce9565b50505050565b6000818152600260205260409020546060906001600160a01b031661160c5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00604482015260640161082e565b600d61161783611d1c565b604051602001611628929190612714565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146116685760405162461bcd60e51b815260040161082e9061285c565b600061167360085490565b905060015b601a811015610cb55761168f3361136183856128e2565b80611699816129ab565b915050611678565b601154610100900460ff166116e95760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc818db1bdcd95960921b604482015260640161082e565b60115460ff161561172b5760405162461bcd60e51b815260206004820152600c60248201526b50726573616c65204f6e6c7960a01b604482015260640161082e565b6117396115c16105786128e2565b600854106117895760405162461bcd60e51b815260206004820152601f60248201527f416c6c204d6561742043756265732068617665206265656e206d696e74656400604482015260640161082e565b600a8111156117f15760405162461bcd60e51b815260206004820152602e60248201527f43616e206e6f74206d696e74206d6f7265207468616e203130206d656174206360448201526d7562657320617420612074696d6560901b606482015260840161082e565b346118048267011c37937e08000061290e565b11156118435760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015260640161082e565b60005b81811015610cb557600e805490600061185e836129ab565b91905055506118703361135660085490565b8061187a816129ab565b915050611846565b600a546001600160a01b031633146118ac5760405162461bcd60e51b815260040161082e9061285c565b6001600160a01b0381166119115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082e565b61191a81611c7d565b50565b60006001600160e01b031982166380ac58cd60e01b148061194e57506001600160e01b03198216635b5e139f60e01b145b806107fe57506301ffc9a760e01b6001600160e01b03198316146107fe565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119a282610e10565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082e565b6000611a5f83610e10565b9050806001600160a01b0316846001600160a01b03161480611a9a5750836001600160a01b0316611a8f846108e6565b6001600160a01b0316145b80611aca57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ae582610e10565b6001600160a01b031614611b4d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082e565b6001600160a01b038216611baf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082e565b611bba838383611e36565b611bc560008261196d565b6001600160a01b0383166000908152600360205260408120805460019290611bee90849061292d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c1c9084906128e2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cb5828260405180602001604052806000815250611eee565b611cf4848484611ad2565b611d0084848484611f21565b61159f5760405162461bcd60e51b815260040161082e9061280a565b606081611d405750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d6a5780611d54816129ab565b9150611d639050600a836128fa565b9150611d44565b60008167ffffffffffffffff811115611d9357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611dbd576020820181803683370190505b5090505b8415611aca57611dd260018361292d565b9150611ddf600a866129c6565b611dea9060306128e2565b60f81b818381518110611e0d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e2f600a866128fa565b9450611dc1565b6001600160a01b038316611e9157611e8c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611eb4565b816001600160a01b0316836001600160a01b031614611eb457611eb4838261202e565b6001600160a01b038216611ecb57610a8c816120cb565b826001600160a01b0316826001600160a01b031614610a8c57610a8c82826121a4565b611ef883836121e8565b611f056000848484611f21565b610a8c5760405162461bcd60e51b815260040161082e9061280a565b60006001600160a01b0384163b1561202357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f659033908990889088906004016127ba565b602060405180830381600087803b158015611f7f57600080fd5b505af1925050508015611faf575060408051601f3d908101601f19168201909252611fac9181019061263d565b60015b612009573d808015611fdd576040519150601f19603f3d011682016040523d82523d6000602084013e611fe2565b606091505b5080516120015760405162461bcd60e51b815260040161082e9061280a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aca565b506001949350505050565b6000600161203b84610e87565b612045919061292d565b600083815260076020526040902054909150808214612098576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120dd9060019061292d565b6000838152600960205260408120546008805493945090928490811061211357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061214257634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061218857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006121af83610e87565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661223e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082e565b6000818152600260205260409020546001600160a01b0316156122a35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082e565b6122af60008383611e36565b6001600160a01b03821660009081526003602052604081208054600192906122d89084906128e2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461234290612970565b90600052602060002090601f01602090048101928261236457600085556123aa565b82601f1061237d5782800160ff198235161785556123aa565b828001600101855582156123aa579182015b828111156123aa57823582559160200191906001019061238f565b506123b69291506123ba565b5090565b5b808211156123b657600081556001016123bb565b80356001600160a01b03811681146123e657600080fd5b919050565b6000602082840312156123fc578081fd5b612405826123cf565b9392505050565b6000806040838503121561241e578081fd5b612427836123cf565b9150612435602084016123cf565b90509250929050565b600080600060608486031215612452578081fd5b61245b846123cf565b9250612469602085016123cf565b9150604084013590509250925092565b6000806000806080858703121561248e578081fd5b612497856123cf565b93506124a5602086016123cf565b925060408501359150606085013567ffffffffffffffff808211156124c8578283fd5b818701915087601f8301126124db578283fd5b8135818111156124ed576124ed612a06565b604051601f8201601f19908116603f0116810190838211818310171561251557612515612a06565b816040528281528a602084870101111561252d578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612560578182fd5b612569836123cf565b91506020830135801515811461257d578182fd5b809150509250929050565b6000806040838503121561259a578182fd5b6125a3836123cf565b946020939093013593505050565b600080602083850312156125c3578182fd5b823567ffffffffffffffff808211156125da578384fd5b818501915085601f8301126125ed578384fd5b8135818111156125fb578485fd5b8660208260051b850101111561260f578485fd5b60209290920196919550909350505050565b600060208284031215612632578081fd5b813561240581612a1c565b60006020828403121561264e578081fd5b815161240581612a1c565b6000806020838503121561266b578182fd5b823567ffffffffffffffff80821115612682578384fd5b818501915085601f830112612695578384fd5b8135818111156126a3578485fd5b86602082850101111561260f578485fd5b6000602082840312156126c5578081fd5b5035919050565b600081518084526126e4816020860160208601612944565b601f01601f19169290920160200192915050565b6000815161270a818560208601612944565b9290920192915050565b600080845482600182811c91508083168061273057607f831692505b602080841082141561275057634e487b7160e01b87526022600452602487fd5b8180156127645760018114612775576127a1565b60ff198616895284890196506127a1565b60008b815260209020885b868110156127995781548b820152908501908301612780565b505084890196505b5050505050506127b181856126f8565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ed908301846126cc565b9695505050505050565b60208152600061240560208301846126cc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128f5576128f56129da565b500190565b600082612909576129096129f0565b500490565b6000816000190483118215151615612928576129286129da565b500290565b60008282101561293f5761293f6129da565b500390565b60005b8381101561295f578181015183820152602001612947565b8381111561159f5750506000910152565b600181811c9082168061298457607f821691505b602082108114156129a557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129bf576129bf6129da565b5060010190565b6000826129d5576129d56129f0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461191a57600080fdfea26469706673582212208db3ac9d1ef55c641a3c31c0fd866a47307b7ad3a8569c711a96c44469064c5b64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102675760003560e01c806383a9e04911610144578063b179e060116100b6578063d96a094a1161007a578063d96a094a14610712578063df9902b914610725578063e081b7811461073b578063e985e9c51461075a578063f2fde38b146107a3578063f4743070146107c357600080fd5b8063b179e0601461067d578063b88d4fde1461069d578063c87b56dd146106bd578063c8bf341a146106dd578063cf309012146106f257600080fd5b8063989bdbb611610108578063989bdbb61461059c5780639bf80316146105b15780639cf2e8d6146105de5780639e273b2f1461060e578063a22cb46514610647578063aff567361461066757600080fd5b806383a9e0491461051d5780638b055733146105375780638da5cb5b14610553578063940f1ada1461057157806395d89b411461058757600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e1461048057806370a08231146104a0578063715018a6146104c05780637204a3c9146104d55780637bffb4ce146104f5578063815f7bbd1461050a57600080fd5b806342842e0e146103d45780634f6ccce7146103f457806355f804b31461041457806359a12ad5146104345780635ce7af1f1461044a57600080fd5b8063152db76e1161022f578063152db76e1461033257806318160ddd1461035557806323b872dd1461036a5780632a1f43981461038a5780632f745c591461039f5780633ccfd60b146103bf57600080fd5b806301ffc9a71461026c578063049c5c49146102a157806306fdde03146102b8578063081812fc146102da578063095ea7b314610312575b600080fd5b34801561027857600080fd5b5061028c610287366004612621565b6107d9565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610804565b005b3480156102c457600080fd5b506102cd610854565b60405161029891906127f7565b3480156102e657600080fd5b506102fa6102f53660046126b4565b6108e6565b6040516001600160a01b039091168152602001610298565b34801561031e57600080fd5b506102b661032d366004612588565b61097b565b34801561033e57600080fd5b50610347600a81565b604051908152602001610298565b34801561036157600080fd5b50600854610347565b34801561037657600080fd5b506102b661038536600461243e565b610a91565b34801561039657600080fd5b50610347610ac2565b3480156103ab57600080fd5b506103476103ba366004612588565b610ad3565b3480156103cb57600080fd5b506102b6610b69565b3480156103e057600080fd5b506102b66103ef36600461243e565b610cb9565b34801561040057600080fd5b5061034761040f3660046126b4565b610cd4565b34801561042057600080fd5b506102b661042f366004612659565b610d75565b34801561044057600080fd5b50610347600f5481565b34801561045657600080fd5b506103476104653660046123eb565b6001600160a01b03166000908152600c602052604090205490565b34801561048c57600080fd5b506102fa61049b3660046126b4565b610e10565b3480156104ac57600080fd5b506103476104bb3660046123eb565b610e87565b3480156104cc57600080fd5b506102b6610f0e565b3480156104e157600080fd5b506102b66104f03660046125b1565b610f44565b34801561050157600080fd5b506102b6611086565b6102b66105183660046126b4565b6110c4565b34801561052957600080fd5b5060115461028c9060ff1681565b34801561054357600080fd5b5061034767011c37937e08000081565b34801561055f57600080fd5b50600a546001600160a01b03166102fa565b34801561057d57600080fd5b50610347600e5481565b34801561059357600080fd5b506102cd611378565b3480156105a857600080fd5b506102b6611387565b3480156105bd57600080fd5b506103476105cc3660046123eb565b600c6020526000908152604090205481565b3480156105ea57600080fd5b5061028c6105f93660046123eb565b600b6020526000908152604090205460ff1681565b34801561061a57600080fd5b5061028c6106293660046123eb565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561065357600080fd5b506102b661066236600461254e565b6113c4565b34801561067357600080fd5b5061034761057881565b34801561068957600080fd5b506102b66106983660046125b1565b611489565b3480156106a957600080fd5b506102b66106b8366004612479565b61156d565b3480156106c957600080fd5b506102cd6106d83660046126b4565b6115a5565b3480156106e957600080fd5b506102b661163e565b3480156106fe57600080fd5b5060115461028c9062010000900460ff1681565b6102b66107203660046126b4565b6116a1565b34801561073157600080fd5b506103476115c181565b34801561074757600080fd5b5060115461028c90610100900460ff1681565b34801561076657600080fd5b5061028c61077536600461240c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107af57600080fd5b506102b66107be3660046123eb565b611882565b3480156107cf57600080fd5b5061034760105481565b60006001600160e01b0319821663780e9d6360e01b14806107fe57506107fe8261191d565b92915050565b600a546001600160a01b031633146108375760405162461bcd60e51b815260040161082e9061285c565b60405180910390fd5b6011805461ff001981166101009182900460ff1615909102179055565b60606000805461086390612970565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90612970565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082e565b506000908152600460205260409020546001600160a01b031690565b600061098682610e10565b9050806001600160a01b0316836001600160a01b031614156109f45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082e565b336001600160a01b0382161480610a105750610a108133610775565b610a825760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082e565b610a8c838361196d565b505050565b610a9b33826119db565b610ab75760405162461bcd60e51b815260040161082e90612891565b610a8c838383611ad2565b610ad06115c16105786128e2565b81565b6000610ade83610e87565b8210610b405760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161082e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b935760405162461bcd60e51b815260040161082e9061285c565b60135447906001600160a01b03166108fc6064610bb184602861290e565b610bbb91906128fa565b6040518115909202916000818181858888f19350505050158015610be3573d6000803e3d6000fd5b506012546001600160a01b03166108fc6064610c0084602f61290e565b610c0a91906128fa565b6040518115909202916000818181858888f19350505050158015610c32573d6000803e3d6000fd5b50601154630100000090046001600160a01b03166108fc6064610c5684600d61290e565b610c6091906128fa565b6040518115909202916000818181858888f19350505050158015610c88573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610cb5573d6000803e3d6000fd5b5050565b610a8c8383836040518060200160405280600081525061156d565b6000610cdf60085490565b8210610d425760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161082e565b60088281548110610d6357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610d9f5760405162461bcd60e51b815260040161082e9061285c565b60115462010000900460ff1615610e045760405162461bcd60e51b8152602060048201526024808201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60448201526318dad95960e21b606482015260840161082e565b610a8c600d8383612336565b6000818152600260205260408120546001600160a01b0316806107fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082e565b60006001600160a01b038216610ef25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f385760405162461bcd60e51b815260040161082e9061285c565b610f426000611c7d565b565b600a546001600160a01b03163314610f6e5760405162461bcd60e51b815260040161082e9061285c565b60005b81811015610a8c576000838383818110610f9b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610fb091906123eb565b90506001600160a01b038116610ff75760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015260640161082e565b6001600160a01b0381166000908152600b602052604090205460ff16156110525760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff191660011790558061107e816129ab565b915050610f71565b600a546001600160a01b031633146110b05760405162461bcd60e51b815260040161082e9061285c565b6011805460ff19811660ff90911615179055565b601154610100900460ff161580156110de575060115460ff165b61111e5760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a5cc818db1bdcd959607a1b604482015260640161082e565b336000908152600b602052604090205460ff1661118c5760405162461bcd60e51b815260206004820152602660248201527f4554482041646472657373206973206e6f74206f6e207468652070726573616c60448201526519481b1a5cdd60d21b606482015260840161082e565b61119a6115c16105786128e2565b600854106111ea5760405162461bcd60e51b815260206004820152601f60248201527f416c6c204d6561742043756265732068617665206265656e206d696e74656400604482015260640161082e565b61057881600f546111fb91906128e2565b111561123b5760405162461bcd60e51b815260206004820152600f60248201526e21b0b71037b7363c9036b4b73a101960891b604482015260640161082e565b601054336000908152600c60205260409020546112599083906128e2565b11156112b75760405162461bcd60e51b815260206004820152602760248201527f596f7520616c7265616479206d696e74656420796f757220322070726573616c60448201526665206d696e747360c81b606482015260840161082e565b346112ca8267011c37937e08000061290e565b11156113095760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015260640161082e565b60005b81811015610cb557600f8054906000611324836129ab565b9091555050336000908152600c60205260408120805491611344836129ab565b91905055506113663361135660085490565b6113619060016128e2565b611ccf565b80611370816129ab565b91505061130c565b60606001805461086390612970565b600a546001600160a01b031633146113b15760405162461bcd60e51b815260040161082e9061285c565b6011805462ff0000191662010000179055565b6001600160a01b03821633141561141d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114b35760405162461bcd60e51b815260040161082e9061285c565b60005b81811015610a8c5760008383838181106114e057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906114f591906123eb565b90506001600160a01b03811661153c5760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015260640161082e565b6001600160a01b03166000908152600b60205260409020805460ff1916905580611565816129ab565b9150506114b6565b61157733836119db565b6115935760405162461bcd60e51b815260040161082e90612891565b61159f84848484611ce9565b50505050565b6000818152600260205260409020546060906001600160a01b031661160c5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00604482015260640161082e565b600d61161783611d1c565b604051602001611628929190612714565b6040516020818303038152906040529050919050565b600a546001600160a01b031633146116685760405162461bcd60e51b815260040161082e9061285c565b600061167360085490565b905060015b601a811015610cb55761168f3361136183856128e2565b80611699816129ab565b915050611678565b601154610100900460ff166116e95760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc818db1bdcd95960921b604482015260640161082e565b60115460ff161561172b5760405162461bcd60e51b815260206004820152600c60248201526b50726573616c65204f6e6c7960a01b604482015260640161082e565b6117396115c16105786128e2565b600854106117895760405162461bcd60e51b815260206004820152601f60248201527f416c6c204d6561742043756265732068617665206265656e206d696e74656400604482015260640161082e565b600a8111156117f15760405162461bcd60e51b815260206004820152602e60248201527f43616e206e6f74206d696e74206d6f7265207468616e203130206d656174206360448201526d7562657320617420612074696d6560901b606482015260840161082e565b346118048267011c37937e08000061290e565b11156118435760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b604482015260640161082e565b60005b81811015610cb557600e805490600061185e836129ab565b91905055506118703361135660085490565b8061187a816129ab565b915050611846565b600a546001600160a01b031633146118ac5760405162461bcd60e51b815260040161082e9061285c565b6001600160a01b0381166119115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082e565b61191a81611c7d565b50565b60006001600160e01b031982166380ac58cd60e01b148061194e57506001600160e01b03198216635b5e139f60e01b145b806107fe57506301ffc9a760e01b6001600160e01b03198316146107fe565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119a282610e10565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082e565b6000611a5f83610e10565b9050806001600160a01b0316846001600160a01b03161480611a9a5750836001600160a01b0316611a8f846108e6565b6001600160a01b0316145b80611aca57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ae582610e10565b6001600160a01b031614611b4d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082e565b6001600160a01b038216611baf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082e565b611bba838383611e36565b611bc560008261196d565b6001600160a01b0383166000908152600360205260408120805460019290611bee90849061292d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c1c9084906128e2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cb5828260405180602001604052806000815250611eee565b611cf4848484611ad2565b611d0084848484611f21565b61159f5760405162461bcd60e51b815260040161082e9061280a565b606081611d405750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d6a5780611d54816129ab565b9150611d639050600a836128fa565b9150611d44565b60008167ffffffffffffffff811115611d9357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611dbd576020820181803683370190505b5090505b8415611aca57611dd260018361292d565b9150611ddf600a866129c6565b611dea9060306128e2565b60f81b818381518110611e0d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e2f600a866128fa565b9450611dc1565b6001600160a01b038316611e9157611e8c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611eb4565b816001600160a01b0316836001600160a01b031614611eb457611eb4838261202e565b6001600160a01b038216611ecb57610a8c816120cb565b826001600160a01b0316826001600160a01b031614610a8c57610a8c82826121a4565b611ef883836121e8565b611f056000848484611f21565b610a8c5760405162461bcd60e51b815260040161082e9061280a565b60006001600160a01b0384163b1561202357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f659033908990889088906004016127ba565b602060405180830381600087803b158015611f7f57600080fd5b505af1925050508015611faf575060408051601f3d908101601f19168201909252611fac9181019061263d565b60015b612009573d808015611fdd576040519150601f19603f3d011682016040523d82523d6000602084013e611fe2565b606091505b5080516120015760405162461bcd60e51b815260040161082e9061280a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aca565b506001949350505050565b6000600161203b84610e87565b612045919061292d565b600083815260076020526040902054909150808214612098576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120dd9060019061292d565b6000838152600960205260408120546008805493945090928490811061211357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061214257634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061218857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006121af83610e87565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661223e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082e565b6000818152600260205260409020546001600160a01b0316156122a35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082e565b6122af60008383611e36565b6001600160a01b03821660009081526003602052604081208054600192906122d89084906128e2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461234290612970565b90600052602060002090601f01602090048101928261236457600085556123aa565b82601f1061237d5782800160ff198235161785556123aa565b828001600101855582156123aa579182015b828111156123aa57823582559160200191906001019061238f565b506123b69291506123ba565b5090565b5b808211156123b657600081556001016123bb565b80356001600160a01b03811681146123e657600080fd5b919050565b6000602082840312156123fc578081fd5b612405826123cf565b9392505050565b6000806040838503121561241e578081fd5b612427836123cf565b9150612435602084016123cf565b90509250929050565b600080600060608486031215612452578081fd5b61245b846123cf565b9250612469602085016123cf565b9150604084013590509250925092565b6000806000806080858703121561248e578081fd5b612497856123cf565b93506124a5602086016123cf565b925060408501359150606085013567ffffffffffffffff808211156124c8578283fd5b818701915087601f8301126124db578283fd5b8135818111156124ed576124ed612a06565b604051601f8201601f19908116603f0116810190838211818310171561251557612515612a06565b816040528281528a602084870101111561252d578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612560578182fd5b612569836123cf565b91506020830135801515811461257d578182fd5b809150509250929050565b6000806040838503121561259a578182fd5b6125a3836123cf565b946020939093013593505050565b600080602083850312156125c3578182fd5b823567ffffffffffffffff808211156125da578384fd5b818501915085601f8301126125ed578384fd5b8135818111156125fb578485fd5b8660208260051b850101111561260f578485fd5b60209290920196919550909350505050565b600060208284031215612632578081fd5b813561240581612a1c565b60006020828403121561264e578081fd5b815161240581612a1c565b6000806020838503121561266b578182fd5b823567ffffffffffffffff80821115612682578384fd5b818501915085601f830112612695578384fd5b8135818111156126a3578485fd5b86602082850101111561260f578485fd5b6000602082840312156126c5578081fd5b5035919050565b600081518084526126e4816020860160208601612944565b601f01601f19169290920160200192915050565b6000815161270a818560208601612944565b9290920192915050565b600080845482600182811c91508083168061273057607f831692505b602080841082141561275057634e487b7160e01b87526022600452602487fd5b8180156127645760018114612775576127a1565b60ff198616895284890196506127a1565b60008b815260209020885b868110156127995781548b820152908501908301612780565b505084890196505b5050505050506127b181856126f8565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127ed908301846126cc565b9695505050505050565b60208152600061240560208301846126cc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128f5576128f56129da565b500190565b600082612909576129096129f0565b500490565b6000816000190483118215151615612928576129286129da565b500290565b60008282101561293f5761293f6129da565b500390565b60005b8381101561295f578181015183820152602001612947565b8381111561159f5750506000910152565b600181811c9082168061298457607f821691505b602082108114156129a557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129bf576129bf6129da565b5060010190565b6000826129d5576129d56129f0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461191a57600080fdfea26469706673582212208db3ac9d1ef55c641a3c31c0fd866a47307b7ad3a8569c711a96c44469064c5b64736f6c63430008040033

Deployed Bytecode Sourcemap

51361:4969:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33986:224;;;;;;;;;;-1:-1:-1;33986:224:0;;;;;:::i;:::-;;:::i;:::-;;;7377:14:1;;7370:22;7352:41;;7340:2;7325:18;33986:224:0;;;;;;;;55871:86;;;;;;;;;;;;;:::i;:::-;;21957:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23516:221::-;;;;;;;;;;-1:-1:-1;23516:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6675:32:1;;;6657:51;;6645:2;6630:18;23516:221:0;6612:102:1;23039:411:0;;;;;;;;;;-1:-1:-1;23039:411:0;;;;;:::i;:::-;;:::i;51725:46::-;;;;;;;;;;;;51769:2;51725:46;;;;;19322:25:1;;;19310:2;19295:18;51725:46:0;19277:76:1;34626:113:0;;;;;;;;;;-1:-1:-1;34714:10:0;:17;34626:113;;24406:339;;;;;;;;;;-1:-1:-1;24406:339:0;;;;;:::i;:::-;;:::i;51587:73::-;;;;;;;;;;;;;:::i;34294:256::-;;;;;;;;;;-1:-1:-1;34294:256:0;;;;;:::i;:::-;;:::i;55025:303::-;;;;;;;;;;;;;:::i;24816:185::-;;;;;;;;;;-1:-1:-1;24816:185:0;;;;;:::i;:::-;;:::i;34816:233::-;;;;;;;;;;-1:-1:-1;34816:233:0;;;;;:::i;:::-;;:::i;55965:108::-;;;;;;;;;;-1:-1:-1;55965:108:0;;;;;:::i;:::-;;:::i;52007:34::-;;;;;;;;;;;;;;;;55453:130;;;;;;;;;;-1:-1:-1;55453:130:0;;;;;:::i;:::-;-1:-1:-1;;;;;55548:27:0;55521:7;55548:27;;;:21;:27;;;;;;;55453:130;21651:239;;;;;;;;;;-1:-1:-1;21651:239:0;;;;;:::i;:::-;;:::i;21381:208::-;;;;;;;;;;-1:-1:-1;21381:208:0;;;;;:::i;:::-;;:::i;41732:94::-;;;;;;;;;;;;;:::i;52739:353::-;;;;;;;;;;-1:-1:-1;52739:353:0;;;;;:::i;:::-;;:::i;55768:95::-;;;;;;;;;;;;;:::i;54191:822::-;;;;;;:::i;:::-;;:::i;52094:23::-;;;;;;;;;;-1:-1:-1;52094:23:0;;;;;;;;51667:51;;;;;;;;;;;;51708:10;51667:51;;41081:87;;;;;;;;;;-1:-1:-1;41154:6:0;;-1:-1:-1;;;;;41154:6:0;41081:87;;51967:33;;;;;;;;;;;;;;;;22126:104;;;;;;;;;;;;;:::i;55685:75::-;;;;;;;;;;;;;:::i;51833:56::-;;;;;;;;;;-1:-1:-1;51833:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;51782:44;;;;;;;;;;-1:-1:-1;51782:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;55338:107;;;;;;;;;;-1:-1:-1;55338:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;55419:18:0;55395:4;55419:18;;;:12;:18;;;;;;;;;55338:107;23809:295;;;;;;;;;;-1:-1:-1;23809:295:0;;;;;:::i;:::-;;:::i;51480:47::-;;;;;;;;;;;;51523:4;51480:47;;53100:296;;;;;;;;;;-1:-1:-1;53100:296:0;;;;;:::i;:::-;;:::i;25072:328::-;;;;;;;;;;-1:-1:-1;25072:328:0;;;;;:::i;:::-;;:::i;56081:246::-;;;;;;;;;;-1:-1:-1;56081:246:0;;;;;:::i;:::-;;:::i;52530:201::-;;;;;;;;;;;;;:::i;52151:18::-;;;;;;;;;;-1:-1:-1;52151:18:0;;;;;;;;;;;53471:712;;;;;;:::i;:::-;;:::i;51534:46::-;;;;;;;;;;;;51576:4;51534:46;;52124:20;;;;;;;;;;-1:-1:-1;52124:20:0;;;;;;;;;;;24175:164;;;;;;;;;;-1:-1:-1;24175:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24296:25:0;;;24272:4;24296:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24175:164;41981:192;;;;;;;;;;-1:-1:-1;41981:192:0;;;;;:::i;:::-;;:::i;52048:39::-;;;;;;;;;;;;;;;;33986:224;34088:4;-1:-1:-1;;;;;;34112:50:0;;-1:-1:-1;;;34112:50:0;;:90;;;34166:36;34190:11;34166:23;:36::i;:::-;34105:97;33986:224;-1:-1:-1;;33986:224:0:o;55871:86::-;41154:6;;-1:-1:-1;;;;;41154:6:0;15788:10;41301:23;41293:68;;;;-1:-1:-1;;;41293:68:0;;;;;;;:::i;:::-;;;;;;;;;55941:8:::1;::::0;;-1:-1:-1;;55929:20:0;::::1;55941:8;::::0;;;::::1;;;55940:9;55929:20:::0;;::::1;;::::0;;55871:86::o;21957:100::-;22011:13;22044:5;22037:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21957:100;:::o;23516:221::-;23592:7;26999:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26999:16:0;23612:73;;;;-1:-1:-1;;;23612:73:0;;15511:2:1;23612:73:0;;;15493:21:1;15550:2;15530:18;;;15523:30;15589:34;15569:18;;;15562:62;-1:-1:-1;;;15640:18:1;;;15633:42;15692:19;;23612:73:0;15483:234:1;23612:73:0;-1:-1:-1;23705:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23705:24:0;;23516:221::o;23039:411::-;23120:13;23136:23;23151:7;23136:14;:23::i;:::-;23120:39;;23184:5;-1:-1:-1;;;;;23178:11:0;:2;-1:-1:-1;;;;;23178:11:0;;;23170:57;;;;-1:-1:-1;;;23170:57:0;;18145:2:1;23170:57:0;;;18127:21:1;18184:2;18164:18;;;18157:30;18223:34;18203:18;;;18196:62;-1:-1:-1;;;18274:18:1;;;18267:31;18315:19;;23170:57:0;18117:223:1;23170:57:0;15788:10;-1:-1:-1;;;;;23262:21:0;;;;:62;;-1:-1:-1;23287:37:0;23304:5;15788:10;24175:164;:::i;23287:37::-;23240:168;;;;-1:-1:-1;;;23240:168:0;;13154:2:1;23240:168:0;;;13136:21:1;13193:2;13173:18;;;13166:30;13232:34;13212:18;;;13205:62;13303:26;13283:18;;;13276:54;13347:19;;23240:168:0;13126:246:1;23240:168:0;23421:21;23430:2;23434:7;23421:8;:21::i;:::-;23039:411;;;:::o;24406:339::-;24601:41;15788:10;24634:7;24601:18;:41::i;:::-;24593:103;;;;-1:-1:-1;;;24593:103:0;;;;;;;:::i;:::-;24709:28;24719:4;24725:2;24729:7;24709:9;:28::i;51587:73::-;51626:34;51576:4;51523;51626:34;:::i;:::-;51587:73;:::o;34294:256::-;34391:7;34427:23;34444:5;34427:16;:23::i;:::-;34419:5;:31;34411:87;;;;-1:-1:-1;;;34411:87:0;;8514:2:1;34411:87:0;;;8496:21:1;8553:2;8533:18;;;8526:30;8592:34;8572:18;;;8565:62;-1:-1:-1;;;8643:18:1;;;8636:41;8694:19;;34411:87:0;8486:233:1;34411:87:0;-1:-1:-1;;;;;;34516:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34294:256::o;55025:303::-;41154:6;;-1:-1:-1;;;;;41154:6:0;15788:10;41301:23;41293:68;;;;-1:-1:-1;;;41293:68:0;;;;;;;:::i;:::-;55130:2:::1;::::0;55090:21:::1;::::0;-1:-1:-1;;;;;55130:2:0::1;55122:38;55156:3;55144:10;55090:21:::0;55152:2:::1;55144:10;:::i;:::-;55143:16;;;;:::i;:::-;55122:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;55179:2:0::1;::::0;-1:-1:-1;;;;;55179:2:0::1;55171:38;55205:3;55193:10;:7:::0;55201:2:::1;55193:10;:::i;:::-;55192:16;;;;:::i;:::-;55171:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;55228:2:0::1;::::0;;;::::1;-1:-1:-1::0;;;;;55228:2:0::1;55220:38;55254:3;55242:10;:7:::0;55250:2:::1;55242:10;:::i;:::-;55241:16;;;;:::i;:::-;55220:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;55269:51:0::1;::::0;55277:10:::1;::::0;55298:21:::1;55269:51:::0;::::1;;;::::0;::::1;::::0;;;55298:21;55277:10;55269:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41372:1;55025:303::o:0;24816:185::-;24954:39;24971:4;24977:2;24981:7;24954:39;;;;;;;;;;;;:16;:39::i;34816:233::-;34891:7;34927:30;34714:10;:17;;34626:113;34927:30;34919:5;:38;34911:95;;;;-1:-1:-1;;;34911:95:0;;18965:2:1;34911:95:0;;;18947:21:1;19004:2;18984:18;;;18977:30;19043:34;19023:18;;;19016:62;-1:-1:-1;;;19094:18:1;;;19087:42;19146:19;;34911:95:0;18937:234:1;34911:95:0;35024:10;35035:5;35024:17;;;;;;-1:-1:-1;;;35024:17:0;;;;;;;;;;;;;;;;;35017:24;;34816:233;;;:::o;55965:108::-;41154:6;;-1:-1:-1;;;;;41154:6:0;15788:10;41301:23;41293:68;;;;-1:-1:-1;;;41293:68:0;;;;;;;:::i;:::-;52457:6:::1;::::0;;;::::1;;;52456:7;52448:56;;;::::0;-1:-1:-1;;;52448:56:0;;17039:2:1;52448:56:0::1;::::0;::::1;17021:21:1::0;17078:2;17058:18;;;17051:30;17117:34;17097:18;;;17090:62;-1:-1:-1;;;17168:18:1;;;17161:34;17212:19;;52448:56:0::1;17011:226:1::0;52448:56:0::1;56046:19:::2;:13;56062:3:::0;;56046:19:::2;:::i;21651:239::-:0;21723:7;21759:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21759:16:0;21794:19;21786:73;;;;-1:-1:-1;;;21786:73:0;;13990:2:1;21786:73:0;;;13972:21:1;14029:2;14009:18;;;14002:30;14068:34;14048:18;;;14041:62;-1:-1:-1;;;14119:18:1;;;14112:39;14168:19;;21786:73:0;13962:231:1;21381:208:0;21453:7;-1:-1:-1;;;;;21481:19:0;;21473:74;;;;-1:-1:-1;;;21473:74:0;;13579:2:1;21473:74:0;;;13561:21:1;13618:2;13598:18;;;13591:30;13657:34;13637:18;;;13630:62;-1:-1:-1;;;13708:18:1;;;13701:40;13758:19;;21473:74:0;13551:232:1;21473:74:0;-1:-1:-1;;;;;;21565:16:0;;;;;:9;:16;;;;;;;21381:208::o;41732:94::-;41154:6;;-1:-1:-1;;;;;41154:6:0;15788:10;41301:23;41293:68;;;;-1:-1:-1;;;41293:68:0;;;;;;;:::i;:::-;41797:21:::1;41815:1;41797:9;:21::i;:::-;41732:94::o:0;52739:353::-;41154:6;;-1:-1:-1;;;;;41154:6:0;15788:10;41301:23;41293:68;;;;-1:-1:-1;;;41293:68:0;;;;;;;:::i;:::-;52827:9:::1;52823:262;52842:18:::0;;::::1;52823:262;;;52882:13;52898:7;;52906:1;52898:10;;;;;-1:-1:-1::0;;;52898:10:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52882:26:::0;-1:-1:-1;;;;;;52931:19:0;::::1;52923:44;;;::::0;-1:-1:-1;;;52923:44:0;;7830:2:1;52923:44:0::1;::::0;::::1;7812:21:1::0;7869:2;7849:18;;;7842:30;-1:-1:-1;;;7888:18:1;;;7881:42;7940:18;;52923:44:0::1;7802:162:1::0;52923:44:0::1;-1:-1:-1::0;;;;;52991:19:0;::::1;;::::0;;;:12:::1;:19;::::0;;;;;::::1;;52990:20;52982:48;;;::::0;-1:-1:-1;;;52982:48:0;;12810:2:1;52982:48:0::1;::::0;::::1;12792:21:1::0;12849:2;12829:18;;;12822:30;-1:-1:-1;;;12868:18:1;;;12861:45;12923:18;;52982:48:0::1;12782:165:1::0;52982:48:0::1;-1:-1:-1::0;;;;;53047:19:0::1;;::::0;;;:12:::1;:19;::::0;;;;:26;;-1:-1:-1;;53047:26:0::1;53069:4;53047:26;::::0;;52862:3;::::1;::::0;::::1;:::i;:::-;;;;52823:262;;55768:95:::0;41154:6;;-1:-1:-1;;;;;41154:6:0;15788:10;41301:23;41293:68;;;;-1:-1:-1;;;41293:68:0;;;;;;;:::i;:::-;55844:11:::1;::::0;;-1:-1:-1;;55829:26:0;::::1;55844:11;::::0;;::::1;55843:12;55829:26;::::0;;55768:95::o;54191:822::-;54271:8;;;;;;;54270:9;:24;;;;-1:-1:-1;54283:11:0;;;;54270:24;54262:54;;;;-1:-1:-1;;;54262:54:0;;10932:2:1;54262:54:0;;;10914:21:1;10971:2;10951:18;;;10944:30;-1:-1:-1;;;10990:18:1;;;10983:47;11047:18;;54262:54:0;10904:167:1;54262:54:0;54348:10;54335:24;;;;:12;:24;;;;;;;;54327:75;;;;-1:-1:-1;;;54327:75:0;;14400:2:1;54327:75:0;;;14382:21:1;14439:2;14419:18;;;14412:30;14478:34;14458:18;;;14451:62;-1:-1:-1;;;14529:18:1;;;14522:36;14575:19;;54327:75:0;14372:228:1;54327:75:0;51626:34;51576:4;51523;51626:34;:::i;:::-;34714:10;:17;54421:28;54413:72;;;;-1:-1:-1;;;54413:72:0;;12037:2:1;54413:72:0;;;12019:21:1;12076:2;12056:18;;;12049:30;12115:33;12095:18;;;12088:61;12166:18;;54413:72:0;12009:181:1;54413:72:0;51523:4;54526:13;54504:19;;:35;;;;:::i;:::-;:55;;54496:83;;;;-1:-1:-1;;;54496:83:0;;16695:2:1;54496:83:0;;;16677:21:1;16734:2;16714:18;;;16707:30;-1:-1:-1;;;16753:18:1;;;16746:45;16808:18;;54496:83:0;16667:165:1;54496:83:0;54651:20;;54620:10;54598:33;;;;:21;:33;;;;;;:49;;54634:13;;54598:49;:::i;:::-;:73;;54590:125;;;;-1:-1:-1;;;54590:125:0;;10524:2:1;54590:125:0;;;10506:21:1;10563:2;10543:18;;;10536:30;10602:34;10582:18;;;10575:62;-1:-1:-1;;;10653:18:1;;;10646:37;10700:19;;54590:125:0;10496:229:1;54590:125:0;54768:9;54734:30;54751:13;51708:10;54734:30;:::i;:::-;:43;;54726:70;;;;-1:-1:-1;;;54726:70:0;;15168:2:1;54726:70:0;;;15150:21:1;15207:2;15187:18;;;15180:30;-1:-1:-1;;;15226:18:1;;;15219:44;15280:18;;54726:70:0;15140:164:1;54726:70:0;54814:9;54809:197;54833:13;54829:1;:17;54809:197;;;54868:19;:21;;;:19;:21;;;:::i;:::-;;;;-1:-1:-1;;54926:10:0;54904:33;;;;:21;:33;;;;;:35;;;;;;:::i;:::-;;;;;;54954:40;54964:10;54976:13;34714:10;:17;;34626:113;54976:13;:17;;54992:1;54976:17;:::i;:::-;54954:9;:40::i;:::-;54848:3;;;;:::i;:::-;;;;54809:197;;22126:104;22182:13;22215:7;22208:14;;;;;:::i;55685:75::-;41154:6;;-1:-1:-1;;;;;41154:6:0;15788:10;41301:23;41293:68;;;;-1:-1:-1;;;41293:68:0;;;;;;;:::i;:::-;55739:6:::1;:13:::0;;-1:-1:-1;;55739:13:0::1;::::0;::::1;::::0;;55685:75::o;23809:295::-;-1:-1:-1;;;;;23912:24:0;;15788:10;23912:24;;23904:62;;;;-1:-1:-1;;;23904:62:0;;11683:2:1;23904:62:0;;;11665:21:1;11722:2;11702:18;;;11695:30;11761:27;11741:18;;;11734:55;11806:18;;23904:62:0;11655:175:1;23904:62:0;15788:10;23979:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23979:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23979:53:0;;;;;;;;;;24048:48;;7352:41:1;;;23979:42:0;;15788:10;24048:48;;7325:18:1;24048:48:0;;;;;;;23809:295;;:::o;53100:296::-;41154:6;;-1:-1:-1;;;;;41154:6:0;15788:10;41301:23;41293:68;;;;-1:-1:-1;;;41293:68:0;;;;;;;:::i;:::-;53193:9:::1;53189:200;53208:18:::0;;::::1;53189:200;;;53248:13;53264:7;;53272:1;53264:10;;;;;-1:-1:-1::0;;;53264:10:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53248:26:::0;-1:-1:-1;;;;;;53297:19:0;::::1;53289:44;;;::::0;-1:-1:-1;;;53289:44:0;;7830:2:1;53289:44:0::1;::::0;::::1;7812:21:1::0;7869:2;7849:18;;;7842:30;-1:-1:-1;;;7888:18:1;;;7881:42;7940:18;;53289:44:0::1;7802:162:1::0;53289:44:0::1;-1:-1:-1::0;;;;;53350:19:0::1;53372:5;53350:19:::0;;;:12:::1;:19;::::0;;;;:27;;-1:-1:-1;;53350:27:0::1;::::0;;53228:3;::::1;::::0;::::1;:::i;:::-;;;;53189:200;;25072:328:::0;25247:41;15788:10;25280:7;25247:18;:41::i;:::-;25239:103;;;;-1:-1:-1;;;25239:103:0;;;;;;;:::i;:::-;25353:39;25367:4;25373:2;25377:7;25386:5;25353:13;:39::i;:::-;25072:328;;;;:::o;56081:246::-;26975:4;26999:16;;;:7;:16;;;;;;56154:13;;-1:-1:-1;;;;;26999:16:0;56180:60;;;;-1:-1:-1;;;56180:60:0;;17444:2:1;56180:60:0;;;17426:21:1;17483:2;17463:18;;;17456:30;17522:33;17502:18;;;17495:61;17573:18;;56180:60:0;17416:181:1;56180:60:0;56284:13;56299:18;:7;:16;:18::i;:::-;56267:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56253:66;;56081:246;;;:::o;52530:201::-;41154:6;;-1:-1:-1;;;;;41154:6:0;15788:10;41301:23;41293:68;;;;-1:-1:-1;;;41293:68:0;;;;;;;:::i;:::-;52585:11:::1;52598:13;34714:10:::0;:17;;34626:113;52598:13:::1;52585:26:::0;-1:-1:-1;52648:1:0::1;52639:85;52655:2;52651:1;:6;52639:85;;;52679:33;52689:10;52701;52710:1:::0;52701:6;:10:::1;:::i;52679:33::-;52659:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52639:85;;53471:712:::0;53543:8;;;;;;;53535:35;;;;-1:-1:-1;;;53535:35:0;;8171:2:1;53535:35:0;;;8153:21:1;8210:2;8190:18;;;8183:30;-1:-1:-1;;;8229:18:1;;;8222:44;8283:18;;53535:35:0;8143:164:1;53535:35:0;53590:11;;;;53589:12;53581:37;;;;-1:-1:-1;;;53581:37:0;;17804:2:1;53581:37:0;;;17786:21:1;17843:2;17823:18;;;17816:30;-1:-1:-1;;;17862:18:1;;;17855:42;17914:18;;53581:37:0;17776:162:1;53581:37:0;51626:34;51576:4;51523;51626:34;:::i;:::-;34714:10;:17;53637:28;53629:72;;;;-1:-1:-1;;;53629:72:0;;12037:2:1;53629:72:0;;;12019:21:1;12076:2;12056:18;;;12049:30;12115:33;12095:18;;;12088:61;12166:18;;53629:72:0;12009:181:1;53629:72:0;51769:2;53848:13;:34;;53840:93;;;;-1:-1:-1;;;53840:93:0;;10109:2:1;53840:93:0;;;10091:21:1;10148:2;10128:18;;;10121:30;10187:34;10167:18;;;10160:62;-1:-1:-1;;;10238:18:1;;;10231:44;10292:19;;53840:93:0;10081:236:1;53840:93:0;53986:9;53952:30;53969:13;51708:10;53952:30;:::i;:::-;:43;;53944:70;;;;-1:-1:-1;;;53944:70:0;;15168:2:1;53944:70:0;;;15150:21:1;15207:2;15187:18;;;15180:30;-1:-1:-1;;;15226:18:1;;;15219:44;15280:18;;53944:70:0;15140:164:1;53944:70:0;54031:9;54027:145;54050:13;54046:1;:17;54027:145;;;54085:18;:20;;;:18;:20;;;:::i;:::-;;;;;;54120:40;54130:10;54142:13;34714:10;:17;;34626:113;54120:40;54065:3;;;;:::i;:::-;;;;54027:145;;41981:192;41154:6;;-1:-1:-1;;;;;41154:6:0;15788:10;41301:23;41293:68;;;;-1:-1:-1;;;41293:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42070:22:0;::::1;42062:73;;;::::0;-1:-1:-1;;;42062:73:0;;9345:2:1;42062:73:0::1;::::0;::::1;9327:21:1::0;9384:2;9364:18;;;9357:30;9423:34;9403:18;;;9396:62;-1:-1:-1;;;9474:18:1;;;9467:36;9520:19;;42062:73:0::1;9317:228:1::0;42062:73:0::1;42146:19;42156:8;42146:9;:19::i;:::-;41981:192:::0;:::o;21012:305::-;21114:4;-1:-1:-1;;;;;;21151:40:0;;-1:-1:-1;;;21151:40:0;;:105;;-1:-1:-1;;;;;;;21208:48:0;;-1:-1:-1;;;21208:48:0;21151:105;:158;;;-1:-1:-1;;;;;;;;;;18782:40:0;;;21273:36;18673:157;30892:174;30967:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30967:29:0;-1:-1:-1;;;;;30967:29:0;;;;;;;;:24;;31021:23;30967:24;31021:14;:23::i;:::-;-1:-1:-1;;;;;31012:46:0;;;;;;;;;;;30892:174;;:::o;27204:348::-;27297:4;26999:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26999:16:0;27314:73;;;;-1:-1:-1;;;27314:73:0;;12397:2:1;27314:73:0;;;12379:21:1;12436:2;12416:18;;;12409:30;12475:34;12455:18;;;12448:62;-1:-1:-1;;;12526:18:1;;;12519:42;12578:19;;27314:73:0;12369:234:1;27314:73:0;27398:13;27414:23;27429:7;27414:14;:23::i;:::-;27398:39;;27467:5;-1:-1:-1;;;;;27456:16:0;:7;-1:-1:-1;;;;;27456:16:0;;:51;;;;27500:7;-1:-1:-1;;;;;27476:31:0;:20;27488:7;27476:11;:20::i;:::-;-1:-1:-1;;;;;27476:31:0;;27456:51;:87;;;-1:-1:-1;;;;;;24296:25:0;;;24272:4;24296:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27511:32;27448:96;27204:348;-1:-1:-1;;;;27204:348:0:o;30196:578::-;30355:4;-1:-1:-1;;;;;30328:31:0;:23;30343:7;30328:14;:23::i;:::-;-1:-1:-1;;;;;30328:31:0;;30320:85;;;;-1:-1:-1;;;30320:85:0;;16285:2:1;30320:85:0;;;16267:21:1;16324:2;16304:18;;;16297:30;16363:34;16343:18;;;16336:62;-1:-1:-1;;;16414:18:1;;;16407:39;16463:19;;30320:85:0;16257:231:1;30320:85:0;-1:-1:-1;;;;;30424:16:0;;30416:65;;;;-1:-1:-1;;;30416:65:0;;11278:2:1;30416:65:0;;;11260:21:1;11317:2;11297:18;;;11290:30;11356:34;11336:18;;;11329:62;-1:-1:-1;;;11407:18:1;;;11400:34;11451:19;;30416:65:0;11250:226:1;30416:65:0;30494:39;30515:4;30521:2;30525:7;30494:20;:39::i;:::-;30598:29;30615:1;30619:7;30598:8;:29::i;:::-;-1:-1:-1;;;;;30640:15:0;;;;;;:9;:15;;;;;:20;;30659:1;;30640:15;:20;;30659:1;;30640:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30671:13:0;;;;;;:9;:13;;;;;:18;;30688:1;;30671:13;:18;;30688:1;;30671:18;:::i;:::-;;;;-1:-1:-1;;30700:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30700:21:0;-1:-1:-1;;;;;30700:21:0;;;;;;;;;30739:27;;30700:16;;30739:27;;;;;;;30196:578;;;:::o;42181:173::-;42256:6;;;-1:-1:-1;;;;;42273:17:0;;;-1:-1:-1;;;;;;42273:17:0;;;;;;;42306:40;;42256:6;;;42273:17;42256:6;;42306:40;;42237:16;;42306:40;42181:173;;:::o;27894:110::-;27970:26;27980:2;27984:7;27970:26;;;;;;;;;;;;:9;:26::i;26282:315::-;26439:28;26449:4;26455:2;26459:7;26439:9;:28::i;:::-;26486:48;26509:4;26515:2;26519:7;26528:5;26486:22;:48::i;:::-;26478:111;;;;-1:-1:-1;;;26478:111:0;;;;;;;:::i;16181:723::-;16237:13;16458:10;16454:53;;-1:-1:-1;;16485:10:0;;;;;;;;;;;;-1:-1:-1;;;16485:10:0;;;;;16181:723::o;16454:53::-;16532:5;16517:12;16573:78;16580:9;;16573:78;;16606:8;;;;:::i;:::-;;-1:-1:-1;16629:10:0;;-1:-1:-1;16637:2:0;16629:10;;:::i;:::-;;;16573:78;;;16661:19;16693:6;16683:17;;;;;;-1:-1:-1;;;16683:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16683:17:0;;16661:39;;16711:154;16718:10;;16711:154;;16745:11;16755:1;16745:11;;:::i;:::-;;-1:-1:-1;16814:10:0;16822:2;16814:5;:10;:::i;:::-;16801:24;;:2;:24;:::i;:::-;16788:39;;16771:6;16778;16771:14;;;;;;-1:-1:-1;;;16771:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;16771:56:0;;;;;;;;-1:-1:-1;16842:11:0;16851:2;16842:11;;:::i;:::-;;;16711:154;;35662:589;-1:-1:-1;;;;;35868:18:0;;35864:187;;35903:40;35935:7;37078:10;:17;;37051:24;;;;:15;:24;;;;;:44;;;37106:24;;;;;;;;;;;;36974:164;35903:40;35864:187;;;35973:2;-1:-1:-1;;;;;35965:10:0;:4;-1:-1:-1;;;;;35965:10:0;;35961:90;;35992:47;36025:4;36031:7;35992:32;:47::i;:::-;-1:-1:-1;;;;;36065:16:0;;36061:183;;36098:45;36135:7;36098:36;:45::i;36061:183::-;36171:4;-1:-1:-1;;;;;36165:10:0;:2;-1:-1:-1;;;;;36165:10:0;;36161:83;;36192:40;36220:2;36224:7;36192:27;:40::i;28231:321::-;28361:18;28367:2;28371:7;28361:5;:18::i;:::-;28412:54;28443:1;28447:2;28451:7;28460:5;28412:22;:54::i;:::-;28390:154;;;;-1:-1:-1;;;28390:154:0;;;;;;;:::i;31631:799::-;31786:4;-1:-1:-1;;;;;31807:13:0;;8129:20;8177:8;31803:620;;31843:72;;-1:-1:-1;;;31843:72:0;;-1:-1:-1;;;;;31843:36:0;;;;;:72;;15788:10;;31894:4;;31900:7;;31909:5;;31843:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31843:72:0;;;;;;;;-1:-1:-1;;31843:72:0;;;;;;;;;;;;:::i;:::-;;;31839:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32085:13:0;;32081:272;;32128:60;;-1:-1:-1;;;32128:60:0;;;;;;;:::i;32081:272::-;32303:6;32297:13;32288:6;32284:2;32280:15;32273:38;31839:529;-1:-1:-1;;;;;;31966:51:0;-1:-1:-1;;;31966:51:0;;-1:-1:-1;31959:58:0;;31803:620;-1:-1:-1;32407:4:0;31631:799;;;;;;:::o;37765:988::-;38031:22;38081:1;38056:22;38073:4;38056:16;:22::i;:::-;:26;;;;:::i;:::-;38093:18;38114:26;;;:17;:26;;;;;;38031:51;;-1:-1:-1;38247:28:0;;;38243:328;;-1:-1:-1;;;;;38314:18:0;;38292:19;38314:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38365:30;;;;;;:44;;;38482:30;;:17;:30;;;;;:43;;;38243:328;-1:-1:-1;38667:26:0;;;;:17;:26;;;;;;;;38660:33;;;-1:-1:-1;;;;;38711:18:0;;;;;:12;:18;;;;;:34;;;;;;;38704:41;37765:988::o;39048:1079::-;39326:10;:17;39301:22;;39326:21;;39346:1;;39326:21;:::i;:::-;39358:18;39379:24;;;:15;:24;;;;;;39752:10;:26;;39301:46;;-1:-1:-1;39379:24:0;;39301:46;;39752:26;;;;-1:-1:-1;;;39752:26:0;;;;;;;;;;;;;;;;;39730:48;;39816:11;39791:10;39802;39791:22;;;;;;-1:-1:-1;;;39791:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;39896:28;;;:15;:28;;;;;;;:41;;;40068:24;;;;;40061:31;40103:10;:16;;;;;-1:-1:-1;;;40103:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39048:1079;;;;:::o;36552:221::-;36637:14;36654:20;36671:2;36654:16;:20::i;:::-;-1:-1:-1;;;;;36685:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36730:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36552:221:0:o;28888:382::-;-1:-1:-1;;;;;28968:16:0;;28960:61;;;;-1:-1:-1;;;28960:61:0;;14807:2:1;28960:61:0;;;14789:21:1;;;14826:18;;;14819:30;14885:34;14865:18;;;14858:62;14937:18;;28960:61:0;14779:182:1;28960:61:0;26975:4;26999:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26999:16:0;:30;29032:58;;;;-1:-1:-1;;;29032:58:0;;9752:2:1;29032:58:0;;;9734:21:1;9791:2;9771:18;;;9764:30;9830;9810:18;;;9803:58;9878:18;;29032:58:0;9724:178:1;29032:58:0;29103:45;29132:1;29136:2;29140:7;29103:20;:45::i;:::-;-1:-1:-1;;;;;29161:13:0;;;;;;:9;:13;;;;;:18;;29178:1;;29161:13;:18;;29178:1;;29161:18;:::i;:::-;;;;-1:-1:-1;;29190:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29190:21:0;-1:-1:-1;;;;;29190:21:0;;;;;;;;29229:33;;29190:16;;;29229:33;;29190:16;;29229:33;28888:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:665::-;2926:6;2934;2987:2;2975:9;2966:7;2962:23;2958:32;2955:2;;;3008:6;3000;2993:22;2955:2;3053:9;3040:23;3082:18;3123:2;3115:6;3112:14;3109:2;;;3144:6;3136;3129:22;3109:2;3187:6;3176:9;3172:22;3162:32;;3232:7;3225:4;3221:2;3217:13;3213:27;3203:2;;3259:6;3251;3244:22;3203:2;3304;3291:16;3330:2;3322:6;3319:14;3316:2;;;3351:6;3343;3336:22;3316:2;3409:7;3404:2;3394:6;3391:1;3387:14;3383:2;3379:23;3375:32;3372:45;3369:2;;;3435:6;3427;3420:22;3369:2;3471;3463:11;;;;;3493:6;;-1:-1:-1;2945:560:1;;-1:-1:-1;;;;2945:560:1:o;3510:255::-;3568:6;3621:2;3609:9;3600:7;3596:23;3592:32;3589:2;;;3642:6;3634;3627:22;3589:2;3686:9;3673:23;3705:30;3729:5;3705:30;:::i;3770:259::-;3839:6;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3950:9;3944:16;3969:30;3993:5;3969:30;:::i;4034:642::-;4105:6;4113;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;4187:6;4179;4172:22;4134:2;4232:9;4219:23;4261:18;4302:2;4294:6;4291:14;4288:2;;;4323:6;4315;4308:22;4288:2;4366:6;4355:9;4351:22;4341:32;;4411:7;4404:4;4400:2;4396:13;4392:27;4382:2;;4438:6;4430;4423:22;4382:2;4483;4470:16;4509:2;4501:6;4498:14;4495:2;;;4530:6;4522;4515:22;4495:2;4580:7;4575:2;4566:6;4562:2;4558:15;4554:24;4551:37;4548:2;;;4606:6;4598;4591:22;4681:190;4740:6;4793:2;4781:9;4772:7;4768:23;4764:32;4761:2;;;4814:6;4806;4799:22;4761:2;-1:-1:-1;4842:23:1;;4751:120;-1:-1:-1;4751:120:1:o;4876:257::-;4917:3;4955:5;4949:12;4982:6;4977:3;4970:19;4998:63;5054:6;5047:4;5042:3;5038:14;5031:4;5024:5;5020:16;4998:63;:::i;:::-;5115:2;5094:15;-1:-1:-1;;5090:29:1;5081:39;;;;5122:4;5077:50;;4925:208;-1:-1:-1;;4925:208:1:o;5138:185::-;5180:3;5218:5;5212:12;5233:52;5278:6;5273:3;5266:4;5259:5;5255:16;5233:52;:::i;:::-;5301:16;;;;;5188:135;-1:-1:-1;;5188:135:1:o;5328:1178::-;5504:3;5533;5568:6;5562:13;5598:3;5620:1;5648:9;5644:2;5640:18;5630:28;;5708:2;5697:9;5693:18;5730;5720:2;;5774:4;5766:6;5762:17;5752:27;;5720:2;5800;5848;5840:6;5837:14;5817:18;5814:38;5811:2;;;-1:-1:-1;;;5875:33:1;;5931:4;5928:1;5921:15;5961:4;5882:3;5949:17;5811:2;5992:18;6019:104;;;;6137:1;6132:322;;;;5985:469;;6019:104;-1:-1:-1;;6052:24:1;;6040:37;;6097:16;;;;-1:-1:-1;6019:104:1;;6132:322;19405:4;19424:17;;;19474:4;19458:21;;6227:3;6243:165;6257:6;6254:1;6251:13;6243:165;;;6335:14;;6322:11;;;6315:35;6378:16;;;;6272:10;;6243:165;;;6247:3;;6437:6;6432:3;6428:16;6421:23;;5985:469;;;;;;;6470:30;6496:3;6488:6;6470:30;:::i;:::-;6463:37;5512:994;-1:-1:-1;;;;;5512:994:1:o;6719:488::-;-1:-1:-1;;;;;6988:15:1;;;6970:34;;7040:15;;7035:2;7020:18;;7013:43;7087:2;7072:18;;7065:34;;;7135:3;7130:2;7115:18;;7108:31;;;6913:4;;7156:45;;7181:19;;7173:6;7156:45;:::i;:::-;7148:53;6922:285;-1:-1:-1;;;;;;6922:285:1:o;7404:219::-;7553:2;7542:9;7535:21;7516:4;7573:44;7613:2;7602:9;7598:18;7590:6;7573:44;:::i;8724:414::-;8926:2;8908:21;;;8965:2;8945:18;;;8938:30;9004:34;8999:2;8984:18;;8977:62;-1:-1:-1;;;9070:2:1;9055:18;;9048:48;9128:3;9113:19;;8898:240::o;15722:356::-;15924:2;15906:21;;;15943:18;;;15936:30;16002:34;15997:2;15982:18;;15975:62;16069:2;16054:18;;15896:182::o;18345:413::-;18547:2;18529:21;;;18586:2;18566:18;;;18559:30;18625:34;18620:2;18605:18;;18598:62;-1:-1:-1;;;18691:2:1;18676:18;;18669:47;18748:3;18733:19;;18519:239::o;19490:128::-;19530:3;19561:1;19557:6;19554:1;19551:13;19548:2;;;19567:18;;:::i;:::-;-1:-1:-1;19603:9:1;;19538:80::o;19623:120::-;19663:1;19689;19679:2;;19694:18;;:::i;:::-;-1:-1:-1;19728:9:1;;19669:74::o;19748:168::-;19788:7;19854:1;19850;19846:6;19842:14;19839:1;19836:21;19831:1;19824:9;19817:17;19813:45;19810:2;;;19861:18;;:::i;:::-;-1:-1:-1;19901:9:1;;19800:116::o;19921:125::-;19961:4;19989:1;19986;19983:8;19980:2;;;19994:18;;:::i;:::-;-1:-1:-1;20031:9:1;;19970:76::o;20051:258::-;20123:1;20133:113;20147:6;20144:1;20141:13;20133:113;;;20223:11;;;20217:18;20204:11;;;20197:39;20169:2;20162:10;20133:113;;;20264:6;20261:1;20258:13;20255:2;;;-1:-1:-1;;20299:1:1;20281:16;;20274:27;20104:205::o;20314:380::-;20393:1;20389:12;;;;20436;;;20457:2;;20511:4;20503:6;20499:17;20489:27;;20457:2;20564;20556:6;20553:14;20533:18;20530:38;20527:2;;;20610:10;20605:3;20601:20;20598:1;20591:31;20645:4;20642:1;20635:15;20673:4;20670:1;20663:15;20527:2;;20369:325;;;:::o;20699:135::-;20738:3;-1:-1:-1;;20759:17:1;;20756:2;;;20779:18;;:::i;:::-;-1:-1:-1;20826:1:1;20815:13;;20746:88::o;20839:112::-;20871:1;20897;20887:2;;20902:18;;:::i;:::-;-1:-1:-1;20936:9:1;;20877:74::o;20956:127::-;21017:10;21012:3;21008:20;21005:1;20998:31;21048:4;21045:1;21038:15;21072:4;21069:1;21062:15;21088:127;21149:10;21144:3;21140:20;21137:1;21130:31;21180:4;21177:1;21170:15;21204:4;21201:1;21194:15;21220:127;21281:10;21276:3;21272:20;21269:1;21262:31;21312:4;21309:1;21302:15;21336:4;21333:1;21326:15;21352:131;-1:-1:-1;;;;;;21426:32:1;;21416:43;;21406:2;;21473:1;21470;21463:12

Swarm Source

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