ETH Price: $3,459.20 (+1.50%)
Gas: 7 Gwei

Token

Metabay (MB)
 

Overview

Max Total Supply

430 MB

Holders

140

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
mdrfkr.eth
Balance
4 MB
0x60314c86b99a2a108e5097fc2688aa1e3c30be30
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Metabay

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 2022-07-29
*/

/**
 *Submitted for verification at Etherscan.io on 2022-04-17
*/

// File lib/utils/introspection/IERC165.sol

// SPDX-License-Identifier: MIT

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


// File lib/token/ERC721/IERC721.sol


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

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

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

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

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

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

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

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

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

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

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

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


// File lib/token/ERC721/IERC721Receiver.sol


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


// File lib/token/ERC721/extensions/IERC721Metadata.sol

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

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

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


// File lib/utils/Address.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File lib/utils/Context.sol


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

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


// File lib/utils/Strings.sol


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

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

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

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

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


// File lib/utils/introspection/ERC165.sol


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


// File lib/token/ERC721A.sol









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


// File lib/token/ERC721AOwnersExplicit.sol


error AllOwnershipsHaveBeenSet();
error QuantityMustBeNonZero();
error NoTokensMintedYet();

abstract contract ERC721AOwnersExplicit is ERC721A {
    uint256 public nextOwnerToExplicitlySet;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        if (quantity == 0) revert QuantityMustBeNonZero();
        if (_currentIndex == _startTokenId()) revert NoTokensMintedYet();
        uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
        if (_nextOwnerToExplicitlySet == 0) {
            _nextOwnerToExplicitlySet = _startTokenId();
        }
        if (_nextOwnerToExplicitlySet >= _currentIndex) revert AllOwnershipsHaveBeenSet();

        // Index underflow is impossible.
        // Counter or index overflow is incredibly unrealistic.
        unchecked {
            uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

            // Set the end index to be the last token index
            if (endIndex + 1 > _currentIndex) {
                endIndex = _currentIndex - 1;
            }

            for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
                if (_ownerships[i].addr == address(0) && !_ownerships[i].burned) {
                    TokenOwnership memory ownership = _ownershipOf(i);
                    _ownerships[i].addr = ownership.addr;
                    _ownerships[i].startTimestamp = ownership.startTimestamp;
                }
            }

            nextOwnerToExplicitlySet = endIndex + 1;
        }
    }
}


// File lib/token/ERC721/extensions/ERC721Ownable.sol


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

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

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

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

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

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

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

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


// File lib/utils/cryptography/MerkleProof.sol


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

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


// File contracts/Erc721amb.sol



// import "../lib/utils/ReentrancyGuard.sol";

contract ERC721AMB is ERC721AOwnersExplicit, Ownable {
    uint16 public airdropsClaimed;
    uint16 public maxAirdropClaims = 0;
    struct AirdropClaim {
        address user;
        uint256 amount;
    }

    // Mint Sale dates
    uint32 private wlSaleStartTime;
    uint32 private publicSaleStartTime;

    // Max Supply
    uint16 public maxSupply = 300;

    // Mint config
    uint16 private constant maxBatchSize = 20;
    uint16 private constant maxWlMintNumber = 12;
    uint16 private constant maxMintTx = 12;


    bytes32 private rootmt;

    // Mint Price
    uint256 public mintPrice = 0.16 ether;
    uint256 public wlMintPrice = 0.12 ether;

    // Metadata URI
    string private _baseTokenURI;

    constructor(string memory name_, string memory symbol_)
        ERC721A(name_, symbol_)
    {}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    event MintInitiated(
        uint256 mintPrice,
        uint256 wlMintPrice,
        uint16 maxAirdropClaims,
        uint16 maxSupply
    );

    function initiateMint(
        uint256 _mintPrice,
        uint256 _wlMintPrice,
        uint16 _maxAirdropClaims,
        uint16 _maxSupply
    ) external onlyOwner {
        require(
            _mintPrice != 0
            && _wlMintPrice != 0,
            "Metabay::initiateMint: wrong prices provided"
        );

        require(
            _maxAirdropClaims >= airdropsClaimed
            && _maxSupply >= totalSupply(),
            "Metabay::initiate: wrong supplies provided"
        );

        mintPrice = _mintPrice;
        wlMintPrice = _wlMintPrice;
        maxAirdropClaims = _maxAirdropClaims;
        maxSupply = _maxSupply;

        emit MintInitiated(
            _mintPrice,
            _wlMintPrice,
            _maxAirdropClaims,
            _maxSupply
        );
    }

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

    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

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

    function exists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }

    // Verifying whitelist spot
    function checkValidity(bytes32[] calldata _merkleProof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(
            MerkleProof.verify(_merkleProof, rootmt, leaf),
            "Incorrect proof"
        );
        return true;
    }

    function setRootMerkleHash(bytes32 _rootmt) external onlyOwner {
        rootmt = _rootmt;
    }

    // Mint dates could be set to a distant future to stop the mint
    function setMintDates(uint32 wlDate, uint32 publicDate) external onlyOwner {
        require(wlDate != 0 && publicDate != 0, "dates must be defined");
        wlSaleStartTime = wlDate;
        publicSaleStartTime = publicDate;
    }

    function publicMint(address to, uint256 quantity)
        external
        payable
        callerIsUser
    {
        require(isPublicSaleOn(), "public sale has not started yet");
        require(quantity <= maxMintTx, "can not mint this many at once");
        require(msg.value >= mintPrice * quantity, "need to send more ETH");
        safeMint(to, quantity);
    }

    // Only whitelisted addresses are authorized to mint during the Whitelist Mint
    function whitelistMint(
        address to,
        uint256 quantity,
        bytes32[] calldata _merkleProof
    ) external payable {
        require(isWlSaleOn(), "whitelist sale has not started yet");
        require(
            numberMinted(to) + quantity <= maxWlMintNumber,
            "can not mint this many"
        );
        // Checking address to instead of _msgSender()
        bytes32 leaf = keccak256(abi.encodePacked(to));
        require(
            MerkleProof.verify(_merkleProof, rootmt, leaf),
            "Incorrect proof"
        );
        require(msg.value >= wlMintPrice * quantity, "need to send more ETH");
        safeMint(to, quantity);
    }

    function safeMint(address to, uint256 quantity) private {
        require(
            totalSupply() + quantity <= maxSupply,
            "insufficient remaining supply for desired mint amount"
        );
        require(
            quantity > 0 && quantity <= maxBatchSize,
            "incorrect mint quantity"
        );

        _safeMint(to, quantity);
    }

    receive() external payable {}

    function isWlSaleOn() public view returns (bool) {
        uint256 _wlSaleStartTime = uint256(wlSaleStartTime);
        return _wlSaleStartTime != 0 && block.timestamp >= _wlSaleStartTime;
    }

    function isPublicSaleOn() public view returns (bool) {
        uint256 _publicSaleStartTime = uint256(publicSaleStartTime);
        return
            _publicSaleStartTime != 0 &&
            block.timestamp >= _publicSaleStartTime;
    }

    function airdropClaims(
        AirdropClaim[] calldata airdropClaimList
    ) external onlyOwner {
        uint256 tokensBeingClaimed;
        for (uint256 i = 0; i < airdropClaimList.length; i++)
            tokensBeingClaimed += airdropClaimList[i].amount;

        require(
            tokensBeingClaimed + airdropsClaimed <= maxAirdropClaims,
            "cannot mint"
        );

        airdropsClaimed += uint16(tokensBeingClaimed);

        for (uint256 i = 0; i < airdropClaimList.length; i++)
            _safeMint(airdropClaimList[i].user, airdropClaimList[i].amount);
    }

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

    function setBaseURI(string calldata baseURIValue) external onlyOwner {
        _baseTokenURI = baseURIValue;
    }

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

    function setOwnersExplicit(uint256 quantity) external onlyOwner {
        _setOwnersExplicit(quantity);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return _ownershipOf(tokenId);
    }
}


// File contracts/MP.sol



contract Metabay is ERC721AMB {
  constructor() ERC721AMB("Metabay", "MB") {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllOwnershipsHaveBeenSet","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoTokensMintedYet","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"QuantityMustBeNonZero","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"mintPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wlMintPrice","type":"uint256"},{"indexed":false,"internalType":"uint16","name":"maxAirdropClaims","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"maxSupply","type":"uint16"}],"name":"MintInitiated","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":[{"components":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ERC721AMB.AirdropClaim[]","name":"airdropClaimList","type":"tuple[]"}],"name":"airdropClaims","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropsClaimed","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"checkValidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_wlMintPrice","type":"uint256"},{"internalType":"uint16","name":"_maxAirdropClaims","type":"uint16"},{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"initiateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWlSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAirdropClaims","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURIValue","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"wlDate","type":"uint32"},{"internalType":"uint32","name":"publicDate","type":"uint32"}],"name":"setMintDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootmt","type":"bytes32"}],"name":"setRootMerkleHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526009805461ffff60b01b19169055600a805461ffff191661012c1790556702386f26fc100000600c556701aa535d3d0c0000600d553480156200004657600080fd5b50604051806040016040528060078152602001664d65746162617960c81b8152506040518060400160405280600281526020016126a160f11b815250818181600290805190602001906200009c9291906200011e565b508051620000b29060039060208401906200011e565b50506000805550620000c433620000cc565b505062000201565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012c90620001c4565b90600052602060002090601f0160209004810192826200015057600085556200019b565b82601f106200016b57805160ff19168380011785556200019b565b828001600101855582156200019b579182015b828111156200019b5782518255916020019190600101906200017e565b50620001a9929150620001ad565b5090565b5b80821115620001a95760008155600101620001ae565b600181811c90821680620001d957607f821691505b60208210811415620001fb57634e487b7160e01b600052602260045260246000fd5b50919050565b61286e80620002116000396000f3fe60806040526004361061023f5760003560e01c80636c0360eb1161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb01146106af578063d7224ba0146106ca578063dc33e681146106e0578063e985e9c514610700578063f2fde38b1461074957600080fd5b8063b88d4fde14610627578063c507b80614610647578063c87b56dd14610667578063ce6df2b914610687578063d334c54f1461069a57600080fd5b80639231ab2a116100f25780639231ab2a14610567578063954d90d0146105bd57806395d89b41146105dd578063a22cb465146105f2578063a2309ff81461061257600080fd5b80636c0360eb146104dd57806370a08231146104f2578063715018a6146105125780638da5cb5b146105275780639028241b1461054557600080fd5b80633ccfd60b116101bc57806355f804b31161018057806355f804b31461043257806362d5d3f0146104525780636352211e14610487578063645eb7b8146104a75780636817c76c146104c757600080fd5b80633ccfd60b146103b55780633f5e4741146103ca57806342842e0e146103df5780634b11faaf146103ff5780634f558e791461041257600080fd5b806318160ddd1161020357806318160ddd1461031c57806323b872dd1461033f5780632c4e9fc61461035f5780632d20fb60146103755780632d4d87651461039557600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a25780630829ea90146102da578063095ea7b3146102fc57600080fd5b3661024657005b600080fd5b34801561025757600080fd5b5061026b6102663660046124eb565b610769565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107bb565b6040516102779190612683565b3480156102ae57600080fd5b506102c26102bd3660046124d3565b61084d565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004612464565b610891565b005b34801561030857600080fd5b506102fa6103173660046123a5565b610a3d565b34801561032857600080fd5b50600154600054035b604051908152602001610277565b34801561034b57600080fd5b506102fa61035a36600461225c565b610acb565b34801561036b57600080fd5b50610331600d5481565b34801561038157600080fd5b506102fa6103903660046124d3565b610ad6565b3480156103a157600080fd5b506102fa6103b03660046124d3565b610b0c565b3480156103c157600080fd5b506102fa610b3b565b3480156103d657600080fd5b5061026b610bf0565b3480156103eb57600080fd5b506102fa6103fa36600461225c565b610c18565b6102fa61040d3660046123ce565b610c33565b34801561041e57600080fd5b5061026b61042d3660046124d3565b610e0e565b34801561043e57600080fd5b506102fa61044d366004612523565b610e19565b34801561045e57600080fd5b5060095461047490600160b01b900461ffff1681565b60405161ffff9091168152602001610277565b34801561049357600080fd5b506102c26104a23660046124d3565b610e4f565b3480156104b357600080fd5b506102fa6104c236600461257d565b610e61565b3480156104d357600080fd5b50610331600c5481565b3480156104e957600080fd5b5061029561100d565b3480156104fe57600080fd5b5061033161050d366004612210565b61101c565b34801561051e57600080fd5b506102fa61106a565b34801561053357600080fd5b506009546001600160a01b03166102c2565b34801561055157600080fd5b5060095461047490600160a01b900461ffff1681565b34801561057357600080fd5b506105876105823660046124d3565b6110a0565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610277565b3480156105c957600080fd5b5061026b6105d8366004612425565b6110c6565b3480156105e957600080fd5b5061029561118a565b3480156105fe57600080fd5b506102fa61060d36600461236b565b611199565b34801561061e57600080fd5b50600054610331565b34801561063357600080fd5b506102fa610642366004612297565b61122f565b34801561065357600080fd5b506102fa6106623660046125c2565b61127a565b34801561067357600080fd5b506102956106823660046124d3565b61133c565b6102fa6106953660046123a5565b6113c1565b3480156106a657600080fd5b5061026b611518565b3480156106bb57600080fd5b50600a546104749061ffff1681565b3480156106d657600080fd5b5061033160085481565b3480156106ec57600080fd5b506103316106fb366004612210565b61153d565b34801561070c57600080fd5b5061026b61071b36600461222a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075557600080fd5b506102fa610764366004612210565b61156b565b60006001600160e01b031982166380ac58cd60e01b148061079a57506001600160e01b03198216635b5e139f60e01b145b806107b557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107ca90612776565b80601f01602080910402602001604051908101604052809291908181526020018280546107f690612776565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b600061085882611603565b610875576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6009546001600160a01b031633146108c45760405162461bcd60e51b81526004016108bb90612696565b60405180910390fd5b6000805b82811015610919578383828181106108f057634e487b7160e01b600052603260045260246000fd5b905060400201602001358261090591906126e8565b915080610911816127b1565b9150506108c8565b5060095461ffff600160b01b820481169161093d91600160a01b90910416836126e8565b11156109795760405162461bcd60e51b815260206004820152600b60248201526a18d85b9b9bdd081b5a5b9d60aa1b60448201526064016108bb565b80600960148282829054906101000a900461ffff1661099891906126cb565b92506101000a81548161ffff021916908361ffff16021790555060005b82811015610a3757610a258484838181106109e057634e487b7160e01b600052603260045260246000fd5b6109f69260206040909202019081019150612210565b858584818110610a1657634e487b7160e01b600052603260045260246000fd5b9050604002016020013561162e565b80610a2f816127b1565b9150506109b5565b50505050565b6000610a4882610e4f565b9050806001600160a01b0316836001600160a01b03161415610a7d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a9d5750610a9b813361071b565b155b15610abb576040516367d9dca160e11b815260040160405180910390fd5b610ac6838383611648565b505050565b610ac68383836116a4565b6009546001600160a01b03163314610b005760405162461bcd60e51b81526004016108bb90612696565b610b098161188f565b50565b6009546001600160a01b03163314610b365760405162461bcd60e51b81526004016108bb90612696565b600b55565b6009546001600160a01b03163314610b655760405162461bcd60e51b81526004016108bb90612696565b604051600090339047908381818185875af1925050503d8060008114610ba7576040519150601f19603f3d011682016040523d82523d6000602084013e610bac565b606091505b5050905080610b095760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108bb565b600954600090600160e01b900463ffffffff168015801590610c125750804210155b91505090565b610ac68383836040518060200160405280600081525061122f565b610c3b611518565b610c925760405162461bcd60e51b815260206004820152602260248201527f77686974656c6973742073616c6520686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016108bb565b600c83610c9e8661153d565b610ca891906126e8565b1115610cef5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108bb565b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050610d6a83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508490506119c6565b610da85760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b60448201526064016108bb565b83600d54610db69190612714565b341015610dfd5760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b60448201526064016108bb565b610e0785856119dc565b5050505050565b60006107b582611603565b6009546001600160a01b03163314610e435760405162461bcd60e51b81526004016108bb90612696565b610ac6600e83836120ec565b6000610e5a82611ace565b5192915050565b6009546001600160a01b03163314610e8b5760405162461bcd60e51b81526004016108bb90612696565b8315801590610e9957508215155b610efa5760405162461bcd60e51b815260206004820152602c60248201527f4d6574616261793a3a696e6974696174654d696e743a2077726f6e672070726960448201526b18d95cc81c1c9bdd9a59195960a21b60648201526084016108bb565b60095461ffff600160a01b909104811690831610801590610f255750600154600054038161ffff1610155b610f845760405162461bcd60e51b815260206004820152602a60248201527f4d6574616261793a3a696e6974696174653a2077726f6e6720737570706c69656044820152691cc81c1c9bdd9a59195960b21b60648201526084016108bb565b600c849055600d8390556009805461ffff60b01b1916600160b01b61ffff85811691820292909217909255600a805461ffff1916918416918217905560408051878152602081018790529081019290925260608201527f5292d4cf9a529b61fb8831a8378588433abfa9931c4c15938d37072af0ad82a29060800160405180910390a150505050565b6060611017611be8565b905090565b60006001600160a01b038216611045576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b031633146110945760405162461bcd60e51b81526004016108bb90612696565b61109e6000611bf7565b565b60408051606081018252600080825260208201819052918101919091526107b582611ace565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061114284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508490506119c6565b6111805760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b60448201526064016108bb565b5060019392505050565b6060600380546107ca90612776565b6001600160a01b0382163314156111c35760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61123a8484846116a4565b6001600160a01b0383163b1515801561125c575061125a84848484611c49565b155b15610a37576040516368d2bf6b60e11b815260040160405180910390fd5b6009546001600160a01b031633146112a45760405162461bcd60e51b81526004016108bb90612696565b63ffffffff8216158015906112be575063ffffffff811615155b6113025760405162461bcd60e51b815260206004820152601560248201527419185d195cc81b5d5cdd081899481919599a5b9959605a1b60448201526064016108bb565b600980546001600160c01b0316600160c01b63ffffffff948516026001600160e01b031617600160e01b9290931691909102919091179055565b606061134782611603565b61136457604051630a14c4b560e41b815260040160405180910390fd5b600061136e611be8565b905080516000141561138f57604051806020016040528060008152506113ba565b8061139984611d41565b6040516020016113aa929190612617565b6040516020818303038152906040525b9392505050565b3233146114105760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108bb565b611418610bf0565b6114645760405162461bcd60e51b815260206004820152601f60248201527f7075626c69632073616c6520686173206e6f742073746172746564207965740060448201526064016108bb565b600c8111156114b55760405162461bcd60e51b815260206004820152601e60248201527f63616e206e6f74206d696e742074686973206d616e79206174206f6e6365000060448201526064016108bb565b80600c546114c39190612714565b34101561150a5760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b60448201526064016108bb565b61151482826119dc565b5050565b600954600090600160c01b900463ffffffff168015801590610c125750421015919050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b03166107b5565b6009546001600160a01b031633146115955760405162461bcd60e51b81526004016108bb90612696565b6001600160a01b0381166115fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bb565b610b0981611bf7565b60008054821080156107b5575050600090815260046020526040902054600160e01b900460ff161590565b611514828260405180602001604052806000815250611e5a565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116af82611ace565b9050836001600160a01b031681600001516001600160a01b0316146116e65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117045750611704853361071b565b8061171f5750336117148461084d565b6001600160a01b0316145b90508061173f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661176657604051633a954ecd60e21b815260040160405180910390fd5b61177260008487611648565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661184657600054821461184657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e07565b806118ad576040516356be441560e01b815260040160405180910390fd5b6000546118cd5760405163c0367cab60e01b815260040160405180910390fd5b600854806118d9575060005b60005481106118fb576040516370e89b1b60e01b815260040160405180910390fd5b60005482820160001981019110156119165750600054600019015b815b8181116119bb576000818152600460205260409020546001600160a01b031615801561195a5750600081815260046020526040902054600160e01b900460ff16155b156119b357600061196a82611ace565b80516000848152600460209081526040909120805491909301516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611918565b506001016008555050565b6000826119d38584611e67565b14949350505050565b600a5461ffff16816119f16001546000540390565b6119fb91906126e8565b1115611a675760405162461bcd60e51b815260206004820152603560248201527f696e73756666696369656e742072656d61696e696e6720737570706c7920666f6044820152741c8819195cda5c9959081b5a5b9d08185b5bdd5b9d605a1b60648201526084016108bb565b600081118015611a78575060148111155b611ac45760405162461bcd60e51b815260206004820152601760248201527f696e636f7272656374206d696e74207175616e7469747900000000000000000060448201526064016108bb565b611514828261162e565b604080516060810182526000808252602082018190529181019190915281600054811015611bcf57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611bcd5780516001600160a01b031615611b64579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611bc8579392505050565b611b64565b505b604051636f96cda160e11b815260040160405180910390fd5b6060600e80546107ca90612776565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c7e903390899088908890600401612646565b602060405180830381600087803b158015611c9857600080fd5b505af1925050508015611cc8575060408051601f3d908101601f19168201909252611cc591810190612507565b60015b611d23573d808015611cf6576040519150601f19603f3d011682016040523d82523d6000602084013e611cfb565b606091505b508051611d1b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611d655750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d8f5780611d79816127b1565b9150611d889050600a83612700565b9150611d69565b6000816001600160401b03811115611db757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611de1576020820181803683370190505b5090505b8415611d3957611df6600183612733565b9150611e03600a866127cc565b611e0e9060306126e8565b60f81b818381518110611e3157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e53600a86612700565b9450611de5565b610ac68383836001611f21565b600081815b8451811015611f19576000858281518110611e9757634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611ed9576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f06565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f11816127b1565b915050611e6c565b509392505050565b6000546001600160a01b038516611f4a57604051622e076360e81b815260040160405180910390fd5b83611f685760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561201457506001600160a01b0387163b15155b1561209d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120656000888480600101955088611c49565b612082576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561201a57826000541461209857600080fd5b6120e3565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561209e575b50600055610e07565b8280546120f890612776565b90600052602060002090601f01602090048101928261211a5760008555612160565b82601f106121335782800160ff19823516178555612160565b82800160010185558215612160579182015b82811115612160578235825591602001919060010190612145565b5061216c929150612170565b5090565b5b8082111561216c5760008155600101612171565b80356001600160a01b038116811461219c57600080fd5b919050565b60008083601f8401126121b2578081fd5b5081356001600160401b038111156121c8578182fd5b6020830191508360208260051b85010111156121e357600080fd5b9250929050565b803561ffff8116811461219c57600080fd5b803563ffffffff8116811461219c57600080fd5b600060208284031215612221578081fd5b6113ba82612185565b6000806040838503121561223c578081fd5b61224583612185565b915061225360208401612185565b90509250929050565b600080600060608486031215612270578081fd5b61227984612185565b925061228760208501612185565b9150604084013590509250925092565b600080600080608085870312156122ac578081fd5b6122b585612185565b93506122c360208601612185565b92506040850135915060608501356001600160401b03808211156122e5578283fd5b818701915087601f8301126122f8578283fd5b81358181111561230a5761230a61280c565b604051601f8201601f19908116603f011681019083821181831017156123325761233261280c565b816040528281528a602084870101111561234a578586fd5b82602086016020830137918201602001949094529598949750929550505050565b6000806040838503121561237d578182fd5b61238683612185565b91506020830135801515811461239a578182fd5b809150509250929050565b600080604083850312156123b7578182fd5b6123c083612185565b946020939093013593505050565b600080600080606085870312156123e3578384fd5b6123ec85612185565b93506020850135925060408501356001600160401b0381111561240d578283fd5b612419878288016121a1565b95989497509550505050565b60008060208385031215612437578182fd5b82356001600160401b0381111561244c578283fd5b612458858286016121a1565b90969095509350505050565b60008060208385031215612476578182fd5b82356001600160401b038082111561248c578384fd5b818501915085601f83011261249f578384fd5b8135818111156124ad578485fd5b8660208260061b85010111156124c1578485fd5b60209290920196919550909350505050565b6000602082840312156124e4578081fd5b5035919050565b6000602082840312156124fc578081fd5b81356113ba81612822565b600060208284031215612518578081fd5b81516113ba81612822565b60008060208385031215612535578182fd5b82356001600160401b038082111561254b578384fd5b818501915085601f83011261255e578384fd5b81358181111561256c578485fd5b8660208285010111156124c1578485fd5b60008060008060808587031215612592578182fd5b84359350602085013592506125a9604086016121ea565b91506125b7606086016121ea565b905092959194509250565b600080604083850312156125d4578182fd5b6125dd836121fc565b9150612253602084016121fc565b6000815180845261260381602086016020860161274a565b601f01601f19169290920160200192915050565b6000835161262981846020880161274a565b83519083019061263d81836020880161274a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612679908301846125eb565b9695505050505050565b6020815260006113ba60208301846125eb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681851680830382111561263d5761263d6127e0565b600082198211156126fb576126fb6127e0565b500190565b60008261270f5761270f6127f6565b500490565b600081600019048311821515161561272e5761272e6127e0565b500290565b600082821015612745576127456127e0565b500390565b60005b8381101561276557818101518382015260200161274d565b83811115610a375750506000910152565b600181811c9082168061278a57607f821691505b602082108114156127ab57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127c5576127c56127e0565b5060010190565b6000826127db576127db6127f6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0957600080fdfea2646970667358221220f30c72f9da80196fe7c27fee23af6a0c8e138eceaca5f25d31197961d87200be64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c80636c0360eb1161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb01146106af578063d7224ba0146106ca578063dc33e681146106e0578063e985e9c514610700578063f2fde38b1461074957600080fd5b8063b88d4fde14610627578063c507b80614610647578063c87b56dd14610667578063ce6df2b914610687578063d334c54f1461069a57600080fd5b80639231ab2a116100f25780639231ab2a14610567578063954d90d0146105bd57806395d89b41146105dd578063a22cb465146105f2578063a2309ff81461061257600080fd5b80636c0360eb146104dd57806370a08231146104f2578063715018a6146105125780638da5cb5b146105275780639028241b1461054557600080fd5b80633ccfd60b116101bc57806355f804b31161018057806355f804b31461043257806362d5d3f0146104525780636352211e14610487578063645eb7b8146104a75780636817c76c146104c757600080fd5b80633ccfd60b146103b55780633f5e4741146103ca57806342842e0e146103df5780634b11faaf146103ff5780634f558e791461041257600080fd5b806318160ddd1161020357806318160ddd1461031c57806323b872dd1461033f5780632c4e9fc61461035f5780632d20fb60146103755780632d4d87651461039557600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a25780630829ea90146102da578063095ea7b3146102fc57600080fd5b3661024657005b600080fd5b34801561025757600080fd5b5061026b6102663660046124eb565b610769565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107bb565b6040516102779190612683565b3480156102ae57600080fd5b506102c26102bd3660046124d3565b61084d565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004612464565b610891565b005b34801561030857600080fd5b506102fa6103173660046123a5565b610a3d565b34801561032857600080fd5b50600154600054035b604051908152602001610277565b34801561034b57600080fd5b506102fa61035a36600461225c565b610acb565b34801561036b57600080fd5b50610331600d5481565b34801561038157600080fd5b506102fa6103903660046124d3565b610ad6565b3480156103a157600080fd5b506102fa6103b03660046124d3565b610b0c565b3480156103c157600080fd5b506102fa610b3b565b3480156103d657600080fd5b5061026b610bf0565b3480156103eb57600080fd5b506102fa6103fa36600461225c565b610c18565b6102fa61040d3660046123ce565b610c33565b34801561041e57600080fd5b5061026b61042d3660046124d3565b610e0e565b34801561043e57600080fd5b506102fa61044d366004612523565b610e19565b34801561045e57600080fd5b5060095461047490600160b01b900461ffff1681565b60405161ffff9091168152602001610277565b34801561049357600080fd5b506102c26104a23660046124d3565b610e4f565b3480156104b357600080fd5b506102fa6104c236600461257d565b610e61565b3480156104d357600080fd5b50610331600c5481565b3480156104e957600080fd5b5061029561100d565b3480156104fe57600080fd5b5061033161050d366004612210565b61101c565b34801561051e57600080fd5b506102fa61106a565b34801561053357600080fd5b506009546001600160a01b03166102c2565b34801561055157600080fd5b5060095461047490600160a01b900461ffff1681565b34801561057357600080fd5b506105876105823660046124d3565b6110a0565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610277565b3480156105c957600080fd5b5061026b6105d8366004612425565b6110c6565b3480156105e957600080fd5b5061029561118a565b3480156105fe57600080fd5b506102fa61060d36600461236b565b611199565b34801561061e57600080fd5b50600054610331565b34801561063357600080fd5b506102fa610642366004612297565b61122f565b34801561065357600080fd5b506102fa6106623660046125c2565b61127a565b34801561067357600080fd5b506102956106823660046124d3565b61133c565b6102fa6106953660046123a5565b6113c1565b3480156106a657600080fd5b5061026b611518565b3480156106bb57600080fd5b50600a546104749061ffff1681565b3480156106d657600080fd5b5061033160085481565b3480156106ec57600080fd5b506103316106fb366004612210565b61153d565b34801561070c57600080fd5b5061026b61071b36600461222a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075557600080fd5b506102fa610764366004612210565b61156b565b60006001600160e01b031982166380ac58cd60e01b148061079a57506001600160e01b03198216635b5e139f60e01b145b806107b557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107ca90612776565b80601f01602080910402602001604051908101604052809291908181526020018280546107f690612776565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b600061085882611603565b610875576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6009546001600160a01b031633146108c45760405162461bcd60e51b81526004016108bb90612696565b60405180910390fd5b6000805b82811015610919578383828181106108f057634e487b7160e01b600052603260045260246000fd5b905060400201602001358261090591906126e8565b915080610911816127b1565b9150506108c8565b5060095461ffff600160b01b820481169161093d91600160a01b90910416836126e8565b11156109795760405162461bcd60e51b815260206004820152600b60248201526a18d85b9b9bdd081b5a5b9d60aa1b60448201526064016108bb565b80600960148282829054906101000a900461ffff1661099891906126cb565b92506101000a81548161ffff021916908361ffff16021790555060005b82811015610a3757610a258484838181106109e057634e487b7160e01b600052603260045260246000fd5b6109f69260206040909202019081019150612210565b858584818110610a1657634e487b7160e01b600052603260045260246000fd5b9050604002016020013561162e565b80610a2f816127b1565b9150506109b5565b50505050565b6000610a4882610e4f565b9050806001600160a01b0316836001600160a01b03161415610a7d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a9d5750610a9b813361071b565b155b15610abb576040516367d9dca160e11b815260040160405180910390fd5b610ac6838383611648565b505050565b610ac68383836116a4565b6009546001600160a01b03163314610b005760405162461bcd60e51b81526004016108bb90612696565b610b098161188f565b50565b6009546001600160a01b03163314610b365760405162461bcd60e51b81526004016108bb90612696565b600b55565b6009546001600160a01b03163314610b655760405162461bcd60e51b81526004016108bb90612696565b604051600090339047908381818185875af1925050503d8060008114610ba7576040519150601f19603f3d011682016040523d82523d6000602084013e610bac565b606091505b5050905080610b095760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108bb565b600954600090600160e01b900463ffffffff168015801590610c125750804210155b91505090565b610ac68383836040518060200160405280600081525061122f565b610c3b611518565b610c925760405162461bcd60e51b815260206004820152602260248201527f77686974656c6973742073616c6520686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016108bb565b600c83610c9e8661153d565b610ca891906126e8565b1115610cef5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108bb565b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050610d6a83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508490506119c6565b610da85760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b60448201526064016108bb565b83600d54610db69190612714565b341015610dfd5760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b60448201526064016108bb565b610e0785856119dc565b5050505050565b60006107b582611603565b6009546001600160a01b03163314610e435760405162461bcd60e51b81526004016108bb90612696565b610ac6600e83836120ec565b6000610e5a82611ace565b5192915050565b6009546001600160a01b03163314610e8b5760405162461bcd60e51b81526004016108bb90612696565b8315801590610e9957508215155b610efa5760405162461bcd60e51b815260206004820152602c60248201527f4d6574616261793a3a696e6974696174654d696e743a2077726f6e672070726960448201526b18d95cc81c1c9bdd9a59195960a21b60648201526084016108bb565b60095461ffff600160a01b909104811690831610801590610f255750600154600054038161ffff1610155b610f845760405162461bcd60e51b815260206004820152602a60248201527f4d6574616261793a3a696e6974696174653a2077726f6e6720737570706c69656044820152691cc81c1c9bdd9a59195960b21b60648201526084016108bb565b600c849055600d8390556009805461ffff60b01b1916600160b01b61ffff85811691820292909217909255600a805461ffff1916918416918217905560408051878152602081018790529081019290925260608201527f5292d4cf9a529b61fb8831a8378588433abfa9931c4c15938d37072af0ad82a29060800160405180910390a150505050565b6060611017611be8565b905090565b60006001600160a01b038216611045576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b031633146110945760405162461bcd60e51b81526004016108bb90612696565b61109e6000611bf7565b565b60408051606081018252600080825260208201819052918101919091526107b582611ace565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061114284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508490506119c6565b6111805760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b60448201526064016108bb565b5060019392505050565b6060600380546107ca90612776565b6001600160a01b0382163314156111c35760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61123a8484846116a4565b6001600160a01b0383163b1515801561125c575061125a84848484611c49565b155b15610a37576040516368d2bf6b60e11b815260040160405180910390fd5b6009546001600160a01b031633146112a45760405162461bcd60e51b81526004016108bb90612696565b63ffffffff8216158015906112be575063ffffffff811615155b6113025760405162461bcd60e51b815260206004820152601560248201527419185d195cc81b5d5cdd081899481919599a5b9959605a1b60448201526064016108bb565b600980546001600160c01b0316600160c01b63ffffffff948516026001600160e01b031617600160e01b9290931691909102919091179055565b606061134782611603565b61136457604051630a14c4b560e41b815260040160405180910390fd5b600061136e611be8565b905080516000141561138f57604051806020016040528060008152506113ba565b8061139984611d41565b6040516020016113aa929190612617565b6040516020818303038152906040525b9392505050565b3233146114105760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108bb565b611418610bf0565b6114645760405162461bcd60e51b815260206004820152601f60248201527f7075626c69632073616c6520686173206e6f742073746172746564207965740060448201526064016108bb565b600c8111156114b55760405162461bcd60e51b815260206004820152601e60248201527f63616e206e6f74206d696e742074686973206d616e79206174206f6e6365000060448201526064016108bb565b80600c546114c39190612714565b34101561150a5760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b60448201526064016108bb565b61151482826119dc565b5050565b600954600090600160c01b900463ffffffff168015801590610c125750421015919050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b03166107b5565b6009546001600160a01b031633146115955760405162461bcd60e51b81526004016108bb90612696565b6001600160a01b0381166115fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bb565b610b0981611bf7565b60008054821080156107b5575050600090815260046020526040902054600160e01b900460ff161590565b611514828260405180602001604052806000815250611e5a565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116af82611ace565b9050836001600160a01b031681600001516001600160a01b0316146116e65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117045750611704853361071b565b8061171f5750336117148461084d565b6001600160a01b0316145b90508061173f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661176657604051633a954ecd60e21b815260040160405180910390fd5b61177260008487611648565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661184657600054821461184657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e07565b806118ad576040516356be441560e01b815260040160405180910390fd5b6000546118cd5760405163c0367cab60e01b815260040160405180910390fd5b600854806118d9575060005b60005481106118fb576040516370e89b1b60e01b815260040160405180910390fd5b60005482820160001981019110156119165750600054600019015b815b8181116119bb576000818152600460205260409020546001600160a01b031615801561195a5750600081815260046020526040902054600160e01b900460ff16155b156119b357600061196a82611ace565b80516000848152600460209081526040909120805491909301516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611918565b506001016008555050565b6000826119d38584611e67565b14949350505050565b600a5461ffff16816119f16001546000540390565b6119fb91906126e8565b1115611a675760405162461bcd60e51b815260206004820152603560248201527f696e73756666696369656e742072656d61696e696e6720737570706c7920666f6044820152741c8819195cda5c9959081b5a5b9d08185b5bdd5b9d605a1b60648201526084016108bb565b600081118015611a78575060148111155b611ac45760405162461bcd60e51b815260206004820152601760248201527f696e636f7272656374206d696e74207175616e7469747900000000000000000060448201526064016108bb565b611514828261162e565b604080516060810182526000808252602082018190529181019190915281600054811015611bcf57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611bcd5780516001600160a01b031615611b64579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611bc8579392505050565b611b64565b505b604051636f96cda160e11b815260040160405180910390fd5b6060600e80546107ca90612776565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c7e903390899088908890600401612646565b602060405180830381600087803b158015611c9857600080fd5b505af1925050508015611cc8575060408051601f3d908101601f19168201909252611cc591810190612507565b60015b611d23573d808015611cf6576040519150601f19603f3d011682016040523d82523d6000602084013e611cfb565b606091505b508051611d1b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611d655750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d8f5780611d79816127b1565b9150611d889050600a83612700565b9150611d69565b6000816001600160401b03811115611db757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611de1576020820181803683370190505b5090505b8415611d3957611df6600183612733565b9150611e03600a866127cc565b611e0e9060306126e8565b60f81b818381518110611e3157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e53600a86612700565b9450611de5565b610ac68383836001611f21565b600081815b8451811015611f19576000858281518110611e9757634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611ed9576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f06565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f11816127b1565b915050611e6c565b509392505050565b6000546001600160a01b038516611f4a57604051622e076360e81b815260040160405180910390fd5b83611f685760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561201457506001600160a01b0387163b15155b1561209d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120656000888480600101955088611c49565b612082576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561201a57826000541461209857600080fd5b6120e3565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561209e575b50600055610e07565b8280546120f890612776565b90600052602060002090601f01602090048101928261211a5760008555612160565b82601f106121335782800160ff19823516178555612160565b82800160010185558215612160579182015b82811115612160578235825591602001919060010190612145565b5061216c929150612170565b5090565b5b8082111561216c5760008155600101612171565b80356001600160a01b038116811461219c57600080fd5b919050565b60008083601f8401126121b2578081fd5b5081356001600160401b038111156121c8578182fd5b6020830191508360208260051b85010111156121e357600080fd5b9250929050565b803561ffff8116811461219c57600080fd5b803563ffffffff8116811461219c57600080fd5b600060208284031215612221578081fd5b6113ba82612185565b6000806040838503121561223c578081fd5b61224583612185565b915061225360208401612185565b90509250929050565b600080600060608486031215612270578081fd5b61227984612185565b925061228760208501612185565b9150604084013590509250925092565b600080600080608085870312156122ac578081fd5b6122b585612185565b93506122c360208601612185565b92506040850135915060608501356001600160401b03808211156122e5578283fd5b818701915087601f8301126122f8578283fd5b81358181111561230a5761230a61280c565b604051601f8201601f19908116603f011681019083821181831017156123325761233261280c565b816040528281528a602084870101111561234a578586fd5b82602086016020830137918201602001949094529598949750929550505050565b6000806040838503121561237d578182fd5b61238683612185565b91506020830135801515811461239a578182fd5b809150509250929050565b600080604083850312156123b7578182fd5b6123c083612185565b946020939093013593505050565b600080600080606085870312156123e3578384fd5b6123ec85612185565b93506020850135925060408501356001600160401b0381111561240d578283fd5b612419878288016121a1565b95989497509550505050565b60008060208385031215612437578182fd5b82356001600160401b0381111561244c578283fd5b612458858286016121a1565b90969095509350505050565b60008060208385031215612476578182fd5b82356001600160401b038082111561248c578384fd5b818501915085601f83011261249f578384fd5b8135818111156124ad578485fd5b8660208260061b85010111156124c1578485fd5b60209290920196919550909350505050565b6000602082840312156124e4578081fd5b5035919050565b6000602082840312156124fc578081fd5b81356113ba81612822565b600060208284031215612518578081fd5b81516113ba81612822565b60008060208385031215612535578182fd5b82356001600160401b038082111561254b578384fd5b818501915085601f83011261255e578384fd5b81358181111561256c578485fd5b8660208285010111156124c1578485fd5b60008060008060808587031215612592578182fd5b84359350602085013592506125a9604086016121ea565b91506125b7606086016121ea565b905092959194509250565b600080604083850312156125d4578182fd5b6125dd836121fc565b9150612253602084016121fc565b6000815180845261260381602086016020860161274a565b601f01601f19169290920160200192915050565b6000835161262981846020880161274a565b83519083019061263d81836020880161274a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612679908301846125eb565b9695505050505050565b6020815260006113ba60208301846125eb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681851680830382111561263d5761263d6127e0565b600082198211156126fb576126fb6127e0565b500190565b60008261270f5761270f6127f6565b500490565b600081600019048311821515161561272e5761272e6127e0565b500290565b600082821015612745576127456127e0565b500390565b60005b8381101561276557818101518382015260200161274d565b83811115610a375750506000910152565b600181811c9082168061278a57607f821691505b602082108114156127ab57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127c5576127c56127e0565b5060010190565b6000826127db576127db6127f6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0957600080fdfea2646970667358221220f30c72f9da80196fe7c27fee23af6a0c8e138eceaca5f25d31197961d87200be64736f6c63430008040033

Deployed Bytecode Sourcemap

53887:81:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23257:305;;;;;;;;;;-1:-1:-1;23257:305:0;;;;;:::i;:::-;;:::i;:::-;;;9875:14:1;;9868:22;9850:41;;9838:2;9823:18;23257:305:0;;;;;;;;26370:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27873:204::-;;;;;;;;;;-1:-1:-1;27873:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9173:32:1;;;9155:51;;9143:2;9128:18;27873:204:0;9110:102:1;52522:602:0;;;;;;;;;;-1:-1:-1;52522:602:0;;;;;:::i;:::-;;:::i;:::-;;27436:371;;;;;;;;;;-1:-1:-1;27436:371:0;;;;;:::i;:::-;;:::i;22506:303::-;;;;;;;;;;-1:-1:-1;22760:12:0;;22550:7;22744:13;:28;22506:303;;;16836:25:1;;;16824:2;16809:18;22506:303:0;16791:76:1;28738:170:0;;;;;;;;;;-1:-1:-1;28738:170:0;;;;;:::i;:::-;;:::i;47930:39::-;;;;;;;;;;;;;;;;53559:111;;;;;;;;;;-1:-1:-1;53559:111:0;;;;;:::i;:::-;;:::i;50058:98::-;;;;;;;;;;-1:-1:-1;50058:98:0;;;;;:::i;:::-;;:::i;53378:173::-;;;;;;;;;;;;;:::i;52271:243::-;;;;;;;;;;;;;:::i;28979:185::-;;;;;;;;;;-1:-1:-1;28979:185:0;;;;;:::i;:::-;;:::i;50946:692::-;;;;;;:::i;:::-;;:::i;49573:102::-;;;;;;;;;;-1:-1:-1;49573:102:0;;;;;:::i;:::-;;:::i;53254:116::-;;;;;;;;;;-1:-1:-1;53254:116:0;;;;;:::i;:::-;;:::i;47382:34::-;;;;;;;;;;-1:-1:-1;47382:34:0;;;;-1:-1:-1;;;47382:34:0;;;;;;;;;16671:6:1;16659:19;;;16641:38;;16629:2;16614:18;47382:34:0;16596:89:1;26178:125:0;;;;;;;;;;-1:-1:-1;26178:125:0;;;;;:::i;:::-;;:::i;48423:821::-;;;;;;;;;;-1:-1:-1;48423:821:0;;;;;:::i;:::-;;:::i;47886:37::-;;;;;;;;;;;;;;;;49474:91;;;;;;;;;;;;;:::i;23626:206::-;;;;;;;;;;-1:-1:-1;23626:206:0;;;;;:::i;:::-;;:::i;44330:103::-;;;;;;;;;;;;;:::i;43679:87::-;;;;;;;;;;-1:-1:-1;43752:6:0;;-1:-1:-1;;;;;43752:6:0;43679:87;;47346:29;;;;;;;;;;-1:-1:-1;47346:29:0;;;;-1:-1:-1;;;47346:29:0;;;;;;53678:168;;;;;;;;;;-1:-1:-1;53678:168:0;;;;;:::i;:::-;;:::i;:::-;;;;16283:13:1;;-1:-1:-1;;;;;16279:39:1;16261:58;;16379:4;16367:17;;;16361:24;-1:-1:-1;;;;;16357:49:1;16335:20;;;16328:79;16465:17;;;16459:24;16452:32;16445:40;16423:20;;;16416:70;16249:2;16234:18;53678:168:0;16216:276:1;49716:334:0;;;;;;;;;;-1:-1:-1;49716:334:0;;;;;:::i;:::-;;:::i;26539:104::-;;;;;;;;;;;;;:::i;28149:287::-;;;;;;;;;;-1:-1:-1;28149:287:0;;;;;:::i;:::-;;:::i;49373:93::-;;;;;;;;;;-1:-1:-1;49417:7:0;23135:13;49373:93;49474:91;29235:369;;;;;;;;;;-1:-1:-1;29235:369:0;;;;;:::i;:::-;;:::i;50233:236::-;;;;;;;;;;-1:-1:-1;50233:236:0;;;;;:::i;:::-;;:::i;26714:318::-;;;;;;;;;;-1:-1:-1;26714:318:0;;;;;:::i;:::-;;:::i;50477:377::-;;;;;;:::i;:::-;;:::i;52066:197::-;;;;;;;;;;;;;:::i;47630:29::-;;;;;;;;;;-1:-1:-1;47630:29:0;;;;;;;;41208:39;;;;;;;;;;;;;;;;49252:113;;;;;;;;;;-1:-1:-1;49252:113:0;;;;;:::i;:::-;;:::i;28507:164::-;;;;;;;;;;-1:-1:-1;28507:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28628:25:0;;;28604:4;28628:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28507:164;44588:201;;;;;;;;;;-1:-1:-1;44588:201:0;;;;;:::i;:::-;;:::i;23257:305::-;23359:4;-1:-1:-1;;;;;;23396:40:0;;-1:-1:-1;;;23396:40:0;;:105;;-1:-1:-1;;;;;;;23453:48:0;;-1:-1:-1;;;23453:48:0;23396:105;:158;;;-1:-1:-1;;;;;;;;;;18992:40:0;;;23518:36;23376:178;23257:305;-1:-1:-1;;23257:305:0:o;26370:100::-;26424:13;26457:5;26450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26370:100;:::o;27873:204::-;27941:7;27966:16;27974:7;27966;:16::i;:::-;27961:64;;27991:34;;-1:-1:-1;;;27991:34:0;;;;;;;;;;;27961:64;-1:-1:-1;28045:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28045:24:0;;27873:204::o;52522:602::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;;;;;;;;;52633:26:::1;::::0;52670:115:::1;52690:27:::0;;::::1;52670:115;;;52759:16;;52776:1;52759:19;;;;;-1:-1:-1::0;;;52759:19:0::1;;;;;;;;;;;;;;:26;;;52737:48;;;;;:::i;:::-;::::0;-1:-1:-1;52719:3:0;::::1;::::0;::::1;:::i;:::-;;;;52670:115;;;-1:-1:-1::0;52860:16:0::1;::::0;::::1;-1:-1:-1::0;;;52860:16:0;::::1;::::0;::::1;::::0;52820:36:::1;::::0;-1:-1:-1;;;52841:15:0;;::::1;;52820:18:::0;:36:::1;:::i;:::-;:56;;52798:117;;;::::0;-1:-1:-1;;;52798:117:0;;14164:2:1;52798:117:0::1;::::0;::::1;14146:21:1::0;14203:2;14183:18;;;14176:30;-1:-1:-1;;;14222:18:1;;;14215:41;14273:18;;52798:117:0::1;14136:161:1::0;52798:117:0::1;52954:18;52928:15;;:45;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52991:9;52986:130;53006:27:::0;;::::1;52986:130;;;53053:63;53063:16;;53080:1;53063:19;;;;;-1:-1:-1::0;;;53063:19:0::1;;;;;;;;;:24;::::0;::::1;:19;::::0;;::::1;;:24:::0;;::::1;::::0;-1:-1:-1;53063:24:0::1;:::i;:::-;53089:16;;53106:1;53089:19;;;;;-1:-1:-1::0;;;53089:19:0::1;;;;;;;;;;;;;;:26;;;53053:9;:63::i;:::-;53035:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52986:130;;;;43970:1;52522:602:::0;;:::o;27436:371::-;27509:13;27525:24;27541:7;27525:15;:24::i;:::-;27509:40;;27570:5;-1:-1:-1;;;;;27564:11:0;:2;-1:-1:-1;;;;;27564:11:0;;27560:48;;;27584:24;;-1:-1:-1;;;27584:24:0;;;;;;;;;;;27560:48;15979:10;-1:-1:-1;;;;;27625:21:0;;;;;;:63;;-1:-1:-1;27651:37:0;27668:5;15979:10;28507:164;:::i;27651:37::-;27650:38;27625:63;27621:138;;;27712:35;;-1:-1:-1;;;27712:35:0;;;;;;;;;;;27621:138;27771:28;27780:2;27784:7;27793:5;27771:8;:28::i;:::-;27436:371;;;:::o;28738:170::-;28872:28;28882:4;28888:2;28892:7;28872:9;:28::i;53559:111::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;53634:28:::1;53653:8;53634:18;:28::i;:::-;53559:111:::0;:::o;50058:98::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;50132:6:::1;:16:::0;50058:98::o;53378:173::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;53447:49:::1;::::0;53429:12:::1;::::0;53447:10:::1;::::0;53470:21:::1;::::0;53429:12;53447:49;53429:12;53447:49;53470:21;53447:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53428:68;;;53515:7;53507:36;;;::::0;-1:-1:-1;;;53507:36:0;;15209:2:1;53507:36:0::1;::::0;::::1;15191:21:1::0;15248:2;15228:18;;;15221:30;-1:-1:-1;;;15267:18:1;;;15260:46;15323:18;;53507:36:0::1;15181:166:1::0;52271:243:0;52374:19;;52318:4;;-1:-1:-1;;;52374:19:0;;;;52425:25;;;;;:81;;;52486:20;52467:15;:39;;52425:81;52405:101;;;52271:243;:::o;28979:185::-;29117:39;29134:4;29140:2;29144:7;29117:39;;;;;;;;;;;;:16;:39::i;50946:692::-;51102:12;:10;:12::i;:::-;51094:59;;;;-1:-1:-1;;;51094:59:0;;10680:2:1;51094:59:0;;;10662:21:1;10719:2;10699:18;;;10692:30;10758:34;10738:18;;;10731:62;-1:-1:-1;;;10809:18:1;;;10802:32;10851:19;;51094:59:0;10652:224:1;51094:59:0;47778:2;51205:8;51186:16;51199:2;51186:12;:16::i;:::-;:27;;;;:::i;:::-;:46;;51164:118;;;;-1:-1:-1;;;51164:118:0;;15554:2:1;51164:118:0;;;15536:21:1;15593:2;15573:18;;;15566:30;-1:-1:-1;;;15612:18:1;;;15605:52;15674:18;;51164:118:0;15526:172:1;51164:118:0;51374:20;;-1:-1:-1;;7987:2:1;7983:15;;;7979:53;51374:20:0;;;7967:66:1;51349:12:0;;8049::1;;51374:20:0;;;;;;;;;;;;51364:31;;;;;;51349:46;;51428;51447:12;;51428:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51461:6:0;;;-1:-1:-1;51469:4:0;;-1:-1:-1;51428:18:0;:46::i;:::-;51406:111;;;;-1:-1:-1;;;51406:111:0;;14865:2:1;51406:111:0;;;14847:21:1;14904:2;14884:18;;;14877:30;-1:-1:-1;;;14923:18:1;;;14916:45;14978:18;;51406:111:0;14837:165:1;51406:111:0;51563:8;51549:11;;:22;;;;:::i;:::-;51536:9;:35;;51528:69;;;;-1:-1:-1;;;51528:69:0;;12682:2:1;51528:69:0;;;12664:21:1;12721:2;12701:18;;;12694:30;-1:-1:-1;;;12740:18:1;;;12733:51;12801:18;;51528:69:0;12654:171:1;51528:69:0;51608:22;51617:2;51621:8;51608;:22::i;:::-;50946:692;;;;;:::o;49573:102::-;49627:4;49651:16;49659:7;49651;:16::i;53254:116::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;53334:28:::1;:13;53350:12:::0;;53334:28:::1;:::i;26178:125::-:0;26242:7;26269:21;26282:7;26269:12;:21::i;:::-;:26;;26178:125;-1:-1:-1;;26178:125:0:o;48423:821::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;48627:15;;;::::1;::::0;:49:::1;;-1:-1:-1::0;48659:17:0;;::::1;48627:49;48605:143;;;::::0;-1:-1:-1;;;48605:143:0;;13032:2:1;48605:143:0::1;::::0;::::1;13014:21:1::0;13071:2;13051:18;;;13044:30;13110:34;13090:18;;;13083:62;-1:-1:-1;;;13161:18:1;;;13154:42;13213:19;;48605:143:0::1;13004:234:1::0;48605:143:0::1;48804:15;::::0;::::1;-1:-1:-1::0;;;48804:15:0;;::::1;::::0;::::1;48783:36:::0;;::::1;;::::0;::::1;::::0;:80:::1;;-1:-1:-1::0;22760:12:0;;22550:7;22744:13;:28;48836:10:::1;:27;;;;48783:80;48761:172;;;::::0;-1:-1:-1;;;48761:172:0;;11490:2:1;48761:172:0::1;::::0;::::1;11472:21:1::0;11529:2;11509:18;;;11502:30;11568:34;11548:18;;;11541:62;-1:-1:-1;;;11619:18:1;;;11612:40;11669:19;;48761:172:0::1;11462:232:1::0;48761:172:0::1;48946:9;:22:::0;;;48979:11:::1;:26:::0;;;49016:16:::1;:36:::0;;-1:-1:-1;;;;49016:36:0::1;-1:-1:-1::0;;;49016:36:0::1;::::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;49063:9:::1;:22:::0;;-1:-1:-1;;49063:22:0::1;::::0;;::::1;::::0;;::::1;::::0;;49103:133:::1;::::0;;17099:25:1;;;17155:2;17140:18;;17133:34;;;17208:18;;;17201:43;;;;17275:2;17260:18;;17253:43;49103:133:0::1;::::0;17086:3:1;17071:19;49103:133:0::1;;;;;;;48423:821:::0;;;;:::o;49474:91::-;49514:13;49547:10;:8;:10::i;:::-;49540:17;;49474:91;:::o;23626:206::-;23690:7;-1:-1:-1;;;;;23714:19:0;;23710:60;;23742:28;;-1:-1:-1;;;23742:28:0;;;;;;;;;;;23710:60;-1:-1:-1;;;;;;23796:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23796:27:0;;23626:206::o;44330:103::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;44395:30:::1;44422:1;44395:18;:30::i;:::-;44330:103::o:0;53678:168::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;53817:21:0;53830:7;53817:12;:21::i;49716:334::-;49867:30;;-1:-1:-1;;15979:10:0;7987:2:1;7983:15;7979:53;49867:30:0;;;7967:66:1;49820:4:0;;;;8049:12:1;;49867:30:0;;;;;;;;;;;;49857:41;;;;;;49842:56;;49931:46;49950:12;;49931:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49964:6:0;;;-1:-1:-1;49972:4:0;;-1:-1:-1;49931:18:0;:46::i;:::-;49909:111;;;;-1:-1:-1;;;49909:111:0;;14865:2:1;49909:111:0;;;14847:21:1;14904:2;14884:18;;;14877:30;-1:-1:-1;;;14923:18:1;;;14916:45;14978:18;;49909:111:0;14837:165:1;49909:111:0;-1:-1:-1;50038:4:0;;49716:334;-1:-1:-1;;;49716:334:0:o;26539:104::-;26595:13;26628:7;26621:14;;;;;:::i;28149:287::-;-1:-1:-1;;;;;28248:24:0;;15979:10;28248:24;28244:54;;;28281:17;;-1:-1:-1;;;28281:17:0;;;;;;;;;;;28244:54;15979:10;28311:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28311:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28311:53:0;;;;;;;;;;28380:48;;9850:41:1;;;28311:42:0;;15979:10;28380:48;;9823:18:1;28380:48:0;;;;;;;28149:287;;:::o;29235:369::-;29402:28;29412:4;29418:2;29422:7;29402:9;:28::i;:::-;-1:-1:-1;;;;;29445:13:0;;8314:20;8362:8;;29445:76;;;;;29465:56;29496:4;29502:2;29506:7;29515:5;29465:30;:56::i;:::-;29464:57;29445:76;29441:156;;;29545:40;;-1:-1:-1;;;29545:40:0;;;;;;;;;;;50233:236;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;50327:11:::1;::::0;::::1;::::0;;::::1;::::0;:30:::1;;-1:-1:-1::0;50342:15:0::1;::::0;::::1;::::0;::::1;50327:30;50319:64;;;::::0;-1:-1:-1;;;50319:64:0;;15905:2:1;50319:64:0::1;::::0;::::1;15887:21:1::0;15944:2;15924:18;;;15917:30;-1:-1:-1;;;15963:18:1;;;15956:51;16024:18;;50319:64:0::1;15877:171:1::0;50319:64:0::1;50394:15;:24:::0;;-1:-1:-1;;;;;50429:32:0;-1:-1:-1;;;50394:24:0::1;::::0;;::::1;;-1:-1:-1::0;;;;;50429:32:0;;-1:-1:-1;;;50429:32:0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;50233:236::o;26714:318::-;26787:13;26818:16;26826:7;26818;:16::i;:::-;26813:59;;26843:29;;-1:-1:-1;;;26843:29:0;;;;;;;;;;;26813:59;26885:21;26909:10;:8;:10::i;:::-;26885:34;;26943:7;26937:21;26962:1;26937:26;;:87;;;;;;;;;;;;;;;;;26990:7;26999:18;:7;:16;:18::i;:::-;26973:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26937:87;26930:94;26714:318;-1:-1:-1;;;26714:318:0:o;50477:377::-;48183:9;48196:10;48183:23;48175:66;;;;-1:-1:-1;;;48175:66:0;;13805:2:1;48175:66:0;;;13787:21:1;13844:2;13824:18;;;13817:30;13883:32;13863:18;;;13856:60;13933:18;;48175:66:0;13777:180:1;48175:66:0;50608:16:::1;:14;:16::i;:::-;50600:60;;;::::0;-1:-1:-1;;;50600:60:0;;13445:2:1;50600:60:0::1;::::0;::::1;13427:21:1::0;13484:2;13464:18;;;13457:30;13523:33;13503:18;;;13496:61;13574:18;;50600:60:0::1;13417:181:1::0;50600:60:0::1;47823:2;50679:21:::0;::::1;;50671:64;;;::::0;-1:-1:-1;;;50671:64:0;;12323:2:1;50671:64:0::1;::::0;::::1;12305:21:1::0;12362:2;12342:18;;;12335:30;12401:32;12381:18;;;12374:60;12451:18;;50671:64:0::1;12295:180:1::0;50671:64:0::1;50779:8;50767:9;;:20;;;;:::i;:::-;50754:9;:33;;50746:67;;;::::0;-1:-1:-1;;;50746:67:0;;12682:2:1;50746:67:0::1;::::0;::::1;12664:21:1::0;12721:2;12701:18;;;12694:30;-1:-1:-1;;;12740:18:1;;;12733:51;12801:18;;50746:67:0::1;12654:171:1::0;50746:67:0::1;50824:22;50833:2;50837:8;50824;:22::i;:::-;50477:377:::0;;:::o;52066:197::-;52161:15;;52109:4;;-1:-1:-1;;;52161:15:0;;;;52195:21;;;;;:60;;-1:-1:-1;52220:15:0;:35;;;52066:197;-1:-1:-1;52066:197:0:o;49252:113::-;-1:-1:-1;;;;;24010:19:0;;49310:7;24010:19;;;:12;:19;;;;;:32;-1:-1:-1;;;24010:32:0;;-1:-1:-1;;;;;24010:32:0;49337:20;23914:137;44588:201;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44677:22:0;::::1;44669:73;;;::::0;-1:-1:-1;;;44669:73:0;;11083:2:1;44669:73:0::1;::::0;::::1;11065:21:1::0;11122:2;11102:18;;;11095:30;11161:34;11141:18;;;11134:62;-1:-1:-1;;;11212:18:1;;;11205:36;11258:19;;44669:73:0::1;11055:228:1::0;44669:73:0::1;44753:28;44772:8;44753:18;:28::i;29859:174::-:0;29916:4;29980:13;;29970:7;:23;29940:85;;;;-1:-1:-1;;29998:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;29998:27:0;;;;29997:28;;29859:174::o;30041:104::-;30110:27;30120:2;30124:8;30110:27;;;;;;;;;;;;:9;:27::i;38016:196::-;38131:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38131:29:0;-1:-1:-1;;;;;38131:29:0;;;;;;;;;38176:28;;38131:24;;38176:28;;;;;;;38016:196;;;:::o;32959:2130::-;33074:35;33112:21;33125:7;33112:12;:21::i;:::-;33074:59;;33172:4;-1:-1:-1;;;;;33150:26:0;:13;:18;;;-1:-1:-1;;;;;33150:26:0;;33146:67;;33185:28;;-1:-1:-1;;;33185:28:0;;;;;;;;;;;33146:67;33226:22;15979:10;-1:-1:-1;;;;;33252:20:0;;;;:73;;-1:-1:-1;33289:36:0;33306:4;15979:10;28507:164;:::i;33289:36::-;33252:126;;;-1:-1:-1;15979:10:0;33342:20;33354:7;33342:11;:20::i;:::-;-1:-1:-1;;;;;33342:36:0;;33252:126;33226:153;;33397:17;33392:66;;33423:35;;-1:-1:-1;;;33423:35:0;;;;;;;;;;;33392:66;-1:-1:-1;;;;;33473:16:0;;33469:52;;33498:23;;-1:-1:-1;;;33498:23:0;;;;;;;;;;;33469:52;33642:35;33659:1;33663:7;33672:4;33642:8;:35::i;:::-;-1:-1:-1;;;;;33973:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;33973:31:0;;;-1:-1:-1;;;;;33973:31:0;;;-1:-1:-1;;33973:31:0;;;;;;;34019:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34019:29:0;;;;;;;;;;;34099:20;;;:11;:20;;;;;;34134:18;;-1:-1:-1;;;;;;34167:49:0;;;;-1:-1:-1;;;34200:15:0;34167:49;;;;;;;;;;34490:11;;34550:24;;;;;34593:13;;34099:20;;34550:24;;34593:13;34589:384;;34803:13;;34788:11;:28;34784:174;;34841:20;;34910:28;;;;-1:-1:-1;;;;;34884:54:0;-1:-1:-1;;;34884:54:0;-1:-1:-1;;;;;;34884:54:0;;;-1:-1:-1;;;;;34841:20:0;;34884:54;;;;34784:174;32959:2130;;;35020:7;35016:2;-1:-1:-1;;;;;35001:27:0;35010:4;-1:-1:-1;;;;;35001:27:0;;;;;;;;;;;35039:42;52522:602;41360:1332;41430:13;41426:49;;41452:23;;-1:-1:-1;;;41452:23:0;;;;;;;;;;;41426:49;22336:7;41490:13;41486:64;;41531:19;;-1:-1:-1;;;41531:19:0;;;;;;;;;;;41486:64;41597:24;;41636:30;41632:106;;-1:-1:-1;22336:7:0;41632:106;41781:13;;41752:25;:42;41748:81;;41803:26;;-1:-1:-1;;;41803:26:0;;;;;;;;;;;41748:81;41975:16;42131:13;41994:36;;;-1:-1:-1;;41994:40:0;;;-1:-1:-1;42112:97:0;;;-1:-1:-1;42176:13:0;;-1:-1:-1;;42176:17:0;42112:97;42242:25;42225:393;42274:8;42269:1;:13;42225:393;;42343:1;42312:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;42312:19:0;:33;:59;;;;-1:-1:-1;42350:14:0;;;;:11;:14;;;;;:21;-1:-1:-1;;;42350:21:0;;;;42349:22;42312:59;42308:295;;;42396:31;42430:15;42443:1;42430:12;:15::i;:::-;42490:14;;;42468;;;:11;:14;;;;;;;;:36;;42559:24;;;;;-1:-1:-1;;;;;42527:56:0;-1:-1:-1;;;42527:56:0;-1:-1:-1;;;;;;42527:56:0;;;-1:-1:-1;;;;;42468:36:0;;;42527:56;;;;;;;-1:-1:-1;42308:295:0;42284:3;;42225:393;;;-1:-1:-1;42672:1:0;42661:12;42634:24;:39;-1:-1:-1;;41360:1332:0:o;45936:190::-;46061:4;46114;46085:25;46098:5;46105:4;46085:12;:25::i;:::-;:33;;45936:190;-1:-1:-1;;;;45936:190:0:o;51646:375::-;51763:9;;;;51751:8;51735:13;22760:12;;22550:7;22744:13;:28;;22506:303;51735:13;:24;;;;:::i;:::-;:37;;51713:140;;;;-1:-1:-1;;;51713:140:0;;11901:2:1;51713:140:0;;;11883:21:1;11940:2;11920:18;;;11913:30;11979:34;11959:18;;;11952:62;-1:-1:-1;;;12030:18:1;;;12023:51;12091:19;;51713:140:0;11873:243:1;51713:140:0;51897:1;51886:8;:12;:40;;;;-1:-1:-1;47727:2:0;51902:24;;;51886:40;51864:113;;;;-1:-1:-1;;;51864:113:0;;10328:2:1;51864:113:0;;;10310:21:1;10367:2;10347:18;;;10340:30;10406:25;10386:18;;;10379:53;10449:18;;51864:113:0;10300:173:1;51864:113:0;51990:23;52000:2;52004:8;51990:9;:23::i;25007:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;25118:7:0;25201:13;;25194:4;:20;25163:886;;;25235:31;25269:17;;;:11;:17;;;;;;;;;25235:51;;;;;;;;;-1:-1:-1;;;;;25235:51:0;;;;-1:-1:-1;;;25235:51:0;;-1:-1:-1;;;;;25235:51:0;;;;;;;;-1:-1:-1;;;25235:51:0;;;;;;;;;;;;;;25305:729;;25355:14;;-1:-1:-1;;;;;25355:28:0;;25351:101;;25419:9;25007:1109;-1:-1:-1;;;25007:1109:0:o;25351:101::-;-1:-1:-1;;;25794:6:0;25839:17;;;;:11;:17;;;;;;;;;25827:29;;;;;;;;;-1:-1:-1;;;;;25827:29:0;;;;;-1:-1:-1;;;25827:29:0;;-1:-1:-1;;;;;25827:29:0;;;;;;;;-1:-1:-1;;;25827:29:0;;;;;;;;;;;;;25887:28;25883:109;;25955:9;25007:1109;-1:-1:-1;;;25007:1109:0:o;25883:109::-;25754:261;;;25163:886;;26077:31;;-1:-1:-1;;;26077:31:0;;;;;;;;;;;53132:114;53192:13;53225;53218:20;;;;;:::i;44949:191::-;45042:6;;;-1:-1:-1;;;;;45059:17:0;;;-1:-1:-1;;;;;;45059:17:0;;;;;;;45092:40;;45042:6;;;45059:17;45042:6;;45092:40;;45023:16;;45092:40;44949:191;;:::o;38704:667::-;38888:72;;-1:-1:-1;;;38888:72:0;;38867:4;;-1:-1:-1;;;;;38888:36:0;;;;;:72;;15979:10;;38939:4;;38945:7;;38954:5;;38888:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38888:72:0;;;;;;;;-1:-1:-1;;38888:72:0;;;;;;;;;;;;:::i;:::-;;;38884:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39122:13:0;;39118:235;;39168:40;;-1:-1:-1;;;39168:40:0;;;;;;;;;;;39118:235;39311:6;39305:13;39296:6;39292:2;39288:15;39281:38;38884:480;-1:-1:-1;;;;;;39007:55:0;-1:-1:-1;;;39007:55:0;;-1:-1:-1;38884:480:0;38704:667;;;;;;:::o;16376:723::-;16432:13;16653:10;16649:53;;-1:-1:-1;;16680:10:0;;;;;;;;;;;;-1:-1:-1;;;16680:10:0;;;;;16376:723::o;16649:53::-;16727:5;16712:12;16768:78;16775:9;;16768:78;;16801:8;;;;:::i;:::-;;-1:-1:-1;16824:10:0;;-1:-1:-1;16832:2:0;16824:10;;:::i;:::-;;;16768:78;;;16856:19;16888:6;-1:-1:-1;;;;;16878:17:0;;;;;-1:-1:-1;;;16878:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16878:17:0;;16856:39;;16906:154;16913:10;;16906:154;;16940:11;16950:1;16940:11;;:::i;:::-;;-1:-1:-1;17009:10:0;17017:2;17009:5;:10;:::i;:::-;16996:24;;:2;:24;:::i;:::-;16983:39;;16966:6;16973;16966:14;;;;;;-1:-1:-1;;;16966:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;16966:56:0;;;;;;;;-1:-1:-1;17037:11:0;17046:2;17037:11;;:::i;:::-;;;16906:154;;30508:163;30631:32;30637:2;30641:8;30651:5;30658:4;30631:5;:32::i;46488:701::-;46571:7;46614:4;46571:7;46629:523;46653:5;:12;46649:1;:16;46629:523;;;46687:20;46710:5;46716:1;46710:8;;;;;;-1:-1:-1;;;46710:8:0;;;;;;;;;;;;;;;46687:31;;46753:12;46737;:28;46733:408;;46890:44;;;;;;8229:19:1;;;8264:12;;;8257:28;;;8301:12;;46890:44:0;;;;;;;;;;;;46880:55;;;;;;46865:70;;46733:408;;;47080:44;;;;;;8229:19:1;;;8264:12;;;8257:28;;;8301:12;;47080:44:0;;;;;;;;;;;;47070:55;;;;;;47055:70;;46733:408;-1:-1:-1;46667:3:0;;;;:::i;:::-;;;;46629:523;;;-1:-1:-1;47169:12:0;46488:701;-1:-1:-1;;;46488:701:0:o;30930:1775::-;31069:20;31092:13;-1:-1:-1;;;;;31120:16:0;;31116:48;;31145:19;;-1:-1:-1;;;31145:19:0;;;;;;;;;;;31116:48;31179:13;31175:44;;31201:18;;-1:-1:-1;;;31201:18:0;;;;;;;;;;;31175:44;-1:-1:-1;;;;;31570:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;31629:49:0;;-1:-1:-1;;;;;31570:44:0;;;;;;;31629:49;;;-1:-1:-1;;;;;31570:44:0;;;;;;31629:49;;;;;;;;;;;;;;;;31695:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;31745:66:0;;;;-1:-1:-1;;;31795:15:0;31745:66;;;;;;;;;;31695:25;31892:23;;;31936:4;:23;;;;-1:-1:-1;;;;;;31944:13:0;;8314:20;8362:8;;31944:15;31932:641;;;31980:314;32011:38;;32036:12;;-1:-1:-1;;;;;32011:38:0;;;32028:1;;32011:38;;32028:1;;32011:38;32077:69;32116:1;32120:2;32124:14;;;;;;32140:5;32077:30;:69::i;:::-;32072:174;;32182:40;;-1:-1:-1;;;32182:40:0;;;;;;;;;;;32072:174;32289:3;32273:12;:19;;31980:314;;32375:12;32358:13;;:29;32354:43;;32389:8;;;32354:43;31932:641;;;32438:120;32469:40;;32494:14;;;;;-1:-1:-1;;;;;32469:40:0;;;32486:1;;32469:40;;32486:1;;32469:40;32553:3;32537:12;:19;;32438:120;;31932:641;-1:-1:-1;32587:13:0;:28;32637:60;52522:602;-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:391::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:2;;342:6;334;327:22;286:2;-1:-1:-1;370:20:1;;-1:-1:-1;;;;;402:30:1;;399:2;;;452:8;442;435:26;399:2;496:4;488:6;484:17;472:29;;556:3;549:4;539:6;536:1;532:14;524:6;520:27;516:38;513:47;510:2;;;573:1;570;563:12;510:2;276:307;;;;;:::o;588:159::-;655:20;;715:6;704:18;;694:29;;684:2;;737:1;734;727:12;752:163;819:20;;879:10;868:22;;858:33;;848:2;;905:1;902;895:12;920:196;979:6;1032:2;1020:9;1011:7;1007:23;1003:32;1000:2;;;1053:6;1045;1038:22;1000:2;1081:29;1100:9;1081:29;:::i;1121:270::-;1189:6;1197;1250:2;1238:9;1229:7;1225:23;1221:32;1218:2;;;1271:6;1263;1256:22;1218:2;1299:29;1318:9;1299:29;:::i;:::-;1289:39;;1347:38;1381:2;1370:9;1366:18;1347:38;:::i;:::-;1337:48;;1208:183;;;;;:::o;1396:338::-;1473:6;1481;1489;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1563:6;1555;1548:22;1510:2;1591:29;1610:9;1591:29;:::i;:::-;1581:39;;1639:38;1673:2;1662:9;1658:18;1639:38;:::i;:::-;1629:48;;1724:2;1713:9;1709:18;1696:32;1686:42;;1500:234;;;;;:::o;1739:1183::-;1834:6;1842;1850;1858;1911:3;1899:9;1890:7;1886:23;1882:33;1879:2;;;1933:6;1925;1918:22;1879:2;1961:29;1980:9;1961:29;:::i;:::-;1951:39;;2009:38;2043:2;2032:9;2028:18;2009:38;:::i;:::-;1999:48;;2094:2;2083:9;2079:18;2066:32;2056:42;;2149:2;2138:9;2134:18;2121:32;-1:-1:-1;;;;;2213:2:1;2205:6;2202:14;2199:2;;;2234:6;2226;2219:22;2199:2;2277:6;2266:9;2262:22;2252:32;;2322:7;2315:4;2311:2;2307:13;2303:27;2293:2;;2349:6;2341;2334:22;2293:2;2390;2377:16;2412:2;2408;2405:10;2402:2;;;2418:18;;:::i;:::-;2493:2;2487:9;2461:2;2547:13;;-1:-1:-1;;2543:22:1;;;2567:2;2539:31;2535:40;2523:53;;;2591:18;;;2611:22;;;2588:46;2585:2;;;2637:18;;:::i;:::-;2677:10;2673:2;2666:22;2712:2;2704:6;2697:18;2752:7;2747:2;2742;2738;2734:11;2730:20;2727:33;2724:2;;;2778:6;2770;2763:22;2724:2;2839;2834;2830;2826:11;2821:2;2813:6;2809:15;2796:46;2862:15;;;2879:2;2858:24;2851:40;;;;1869:1053;;;;-1:-1:-1;1869:1053:1;;-1:-1:-1;;;;1869:1053:1:o;2927:367::-;2992:6;3000;3053:2;3041:9;3032:7;3028:23;3024:32;3021:2;;;3074:6;3066;3059:22;3021:2;3102:29;3121:9;3102:29;:::i;:::-;3092:39;;3181:2;3170:9;3166:18;3153:32;3228:5;3221:13;3214:21;3207:5;3204:32;3194:2;;3255:6;3247;3240:22;3194:2;3283:5;3273:15;;;3011:283;;;;;:::o;3299:264::-;3367:6;3375;3428:2;3416:9;3407:7;3403:23;3399:32;3396:2;;;3449:6;3441;3434:22;3396:2;3477:29;3496:9;3477:29;:::i;:::-;3467:39;3553:2;3538:18;;;;3525:32;;-1:-1:-1;;;3386:177:1:o;3568:599::-;3672:6;3680;3688;3696;3749:2;3737:9;3728:7;3724:23;3720:32;3717:2;;;3770:6;3762;3755:22;3717:2;3798:29;3817:9;3798:29;:::i;:::-;3788:39;;3874:2;3863:9;3859:18;3846:32;3836:42;;3929:2;3918:9;3914:18;3901:32;-1:-1:-1;;;;;3948:6:1;3945:30;3942:2;;;3993:6;3985;3978:22;3942:2;4037:70;4099:7;4090:6;4079:9;4075:22;4037:70;:::i;:::-;3707:460;;;;-1:-1:-1;4126:8:1;-1:-1:-1;;;;3707:460:1:o;4172:457::-;4258:6;4266;4319:2;4307:9;4298:7;4294:23;4290:32;4287:2;;;4340:6;4332;4325:22;4287:2;4385:9;4372:23;-1:-1:-1;;;;;4410:6:1;4407:30;4404:2;;;4455:6;4447;4440:22;4404:2;4499:70;4561:7;4552:6;4541:9;4537:22;4499:70;:::i;:::-;4588:8;;4473:96;;-1:-1:-1;4277:352:1;-1:-1:-1;;;;4277:352:1:o;4634:697::-;4752:6;4760;4813:2;4801:9;4792:7;4788:23;4784:32;4781:2;;;4834:6;4826;4819:22;4781:2;4879:9;4866:23;-1:-1:-1;;;;;4949:2:1;4941:6;4938:14;4935:2;;;4970:6;4962;4955:22;4935:2;5013:6;5002:9;4998:22;4988:32;;5058:7;5051:4;5047:2;5043:13;5039:27;5029:2;;5085:6;5077;5070:22;5029:2;5130;5117:16;5156:2;5148:6;5145:14;5142:2;;;5177:6;5169;5162:22;5142:2;5235:7;5230:2;5220:6;5217:1;5213:14;5209:2;5205:23;5201:32;5198:45;5195:2;;;5261:6;5253;5246:22;5195:2;5297;5289:11;;;;;5319:6;;-1:-1:-1;4771:560:1;;-1:-1:-1;;;;4771:560:1:o;5336:190::-;5395:6;5448:2;5436:9;5427:7;5423:23;5419:32;5416:2;;;5469:6;5461;5454:22;5416:2;-1:-1:-1;5497:23:1;;5406:120;-1:-1:-1;5406:120:1:o;5531:255::-;5589:6;5642:2;5630:9;5621:7;5617:23;5613:32;5610:2;;;5663:6;5655;5648:22;5610:2;5707:9;5694:23;5726:30;5750:5;5726:30;:::i;5791:259::-;5860:6;5913:2;5901:9;5892:7;5888:23;5884:32;5881:2;;;5934:6;5926;5919:22;5881:2;5971:9;5965:16;5990:30;6014:5;5990:30;:::i;6055:642::-;6126:6;6134;6187:2;6175:9;6166:7;6162:23;6158:32;6155:2;;;6208:6;6200;6193:22;6155:2;6253:9;6240:23;-1:-1:-1;;;;;6323:2:1;6315:6;6312:14;6309:2;;;6344:6;6336;6329:22;6309:2;6387:6;6376:9;6372:22;6362:32;;6432:7;6425:4;6421:2;6417:13;6413:27;6403:2;;6459:6;6451;6444:22;6403:2;6504;6491:16;6530:2;6522:6;6519:14;6516:2;;;6551:6;6543;6536:22;6516:2;6601:7;6596:2;6587:6;6583:2;6579:15;6575:24;6572:37;6569:2;;;6627:6;6619;6612:22;6897:403;6981:6;6989;6997;7005;7058:3;7046:9;7037:7;7033:23;7029:33;7026:2;;;7080:6;7072;7065:22;7026:2;7121:9;7108:23;7098:33;;7178:2;7167:9;7163:18;7150:32;7140:42;;7201:37;7234:2;7223:9;7219:18;7201:37;:::i;:::-;7191:47;;7257:37;7290:2;7279:9;7275:18;7257:37;:::i;:::-;7247:47;;7016:284;;;;;;;:::o;7305:266::-;7371:6;7379;7432:2;7420:9;7411:7;7407:23;7403:32;7400:2;;;7453:6;7445;7438:22;7400:2;7481:28;7499:9;7481:28;:::i;:::-;7471:38;;7528:37;7561:2;7550:9;7546:18;7528:37;:::i;7576:257::-;7617:3;7655:5;7649:12;7682:6;7677:3;7670:19;7698:63;7754:6;7747:4;7742:3;7738:14;7731:4;7724:5;7720:16;7698:63;:::i;:::-;7815:2;7794:15;-1:-1:-1;;7790:29:1;7781:39;;;;7822:4;7777:50;;7625:208;-1:-1:-1;;7625:208:1:o;8324:470::-;8503:3;8541:6;8535:13;8557:53;8603:6;8598:3;8591:4;8583:6;8579:17;8557:53;:::i;:::-;8673:13;;8632:16;;;;8695:57;8673:13;8632:16;8729:4;8717:17;;8695:57;:::i;:::-;8768:20;;8511:283;-1:-1:-1;;;;8511:283:1:o;9217:488::-;-1:-1:-1;;;;;9486:15:1;;;9468:34;;9538:15;;9533:2;9518:18;;9511:43;9585:2;9570:18;;9563:34;;;9633:3;9628:2;9613:18;;9606:31;;;9411:4;;9654:45;;9679:19;;9671:6;9654:45;:::i;:::-;9646:53;9420:285;-1:-1:-1;;;;;;9420:285:1:o;9902:219::-;10051:2;10040:9;10033:21;10014:4;10071:44;10111:2;10100:9;10096:18;10088:6;10071:44;:::i;14302:356::-;14504:2;14486:21;;;14523:18;;;14516:30;14582:34;14577:2;14562:18;;14555:62;14649:2;14634:18;;14476:182::o;17307:224::-;17346:3;17374:6;17407:2;17404:1;17400:10;17437:2;17434:1;17430:10;17468:3;17464:2;17460:12;17455:3;17452:21;17449:2;;;17476:18;;:::i;17536:128::-;17576:3;17607:1;17603:6;17600:1;17597:13;17594:2;;;17613:18;;:::i;:::-;-1:-1:-1;17649:9:1;;17584:80::o;17669:120::-;17709:1;17735;17725:2;;17740:18;;:::i;:::-;-1:-1:-1;17774:9:1;;17715:74::o;17794:168::-;17834:7;17900:1;17896;17892:6;17888:14;17885:1;17882:21;17877:1;17870:9;17863:17;17859:45;17856:2;;;17907:18;;:::i;:::-;-1:-1:-1;17947:9:1;;17846:116::o;17967:125::-;18007:4;18035:1;18032;18029:8;18026:2;;;18040:18;;:::i;:::-;-1:-1:-1;18077:9:1;;18016:76::o;18097:258::-;18169:1;18179:113;18193:6;18190:1;18187:13;18179:113;;;18269:11;;;18263:18;18250:11;;;18243:39;18215:2;18208:10;18179:113;;;18310:6;18307:1;18304:13;18301:2;;;-1:-1:-1;;18345:1:1;18327:16;;18320:27;18150:205::o;18360:380::-;18439:1;18435:12;;;;18482;;;18503:2;;18557:4;18549:6;18545:17;18535:27;;18503:2;18610;18602:6;18599:14;18579:18;18576:38;18573:2;;;18656:10;18651:3;18647:20;18644:1;18637:31;18691:4;18688:1;18681:15;18719:4;18716:1;18709:15;18573:2;;18415:325;;;:::o;18745:135::-;18784:3;-1:-1:-1;;18805:17:1;;18802:2;;;18825:18;;:::i;:::-;-1:-1:-1;18872:1:1;18861:13;;18792:88::o;18885:112::-;18917:1;18943;18933:2;;18948:18;;:::i;:::-;-1:-1:-1;18982:9:1;;18923:74::o;19002:127::-;19063:10;19058:3;19054:20;19051:1;19044:31;19094:4;19091:1;19084:15;19118:4;19115:1;19108:15;19134:127;19195:10;19190:3;19186:20;19183:1;19176:31;19226:4;19223:1;19216:15;19250:4;19247:1;19240:15;19266:127;19327:10;19322:3;19318:20;19315:1;19308:31;19358:4;19355:1;19348:15;19382:4;19379:1;19372:15;19398:131;-1:-1:-1;;;;;;19472:32:1;;19462:43;;19452:2;;19519:1;19516;19509:12

Swarm Source

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