ETH Price: $3,430.55 (+7.47%)
Gas: 14 Gwei

Token

Legends of Atlantis (LOA)
 

Overview

Max Total Supply

2,835 LOA

Holders

978

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 LOA
0x4a0e1b08792b43bee0f85ac7e2509326bbf05a1e
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:
LegendsOfAtlantis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-06
*/

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



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



/**
 * @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);
    }
}



/**
 * @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;
}



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



/**
 * @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);
}



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

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

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



/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



/**
 * @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;
    }
}



/**
 * @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);
    }
}



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

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

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



/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}



/**
 * @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;
    }
}



error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 (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 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 (!_checkOnERC721Received(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 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * 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 {}
}



contract LegendsOfAtlantis is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string  public baseURI;
    string  public hiddenURI;
    string  public legendaryURI;
    bytes32 public whitelistMerkleRoot;

    uint256 public constant whitelistCost     = 0.099 ether;
    uint256 public          publicCost        = 0.125 ether;
    uint256 public constant maxSupply         = 7777;
    uint256 public          maxMintPerAddress = 3;

    bool public paused          = true;
    bool public revealed        = false;
    bool public onlyWhitelisted = true;

    mapping(address => uint256) addressAlreadyMinted;
    mapping(uint256 => bool) public isLegendary;

    constructor() ERC721A("Legends of Atlantis", "LOA") {}

    function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable nonReentrant {
        require(!paused, "Contract is paused!");
        require(totalSupply() + _mintAmount < maxSupply + 1, "Max supply exceeded!");
        require(addressAlreadyMinted[msg.sender] + _mintAmount < maxMintPerAddress + 1, "Max NFT per address exceeded!");

        if (onlyWhitelisted == true) {
            require(_isWhitelisted(msg.sender, _merkleProof), "Not a whitelisted user!");
            require(msg.value >= whitelistCost * _mintAmount, "Insufficient funds!");
        } else {
            require(msg.value >= publicCost * _mintAmount, "Insufficient funds!");
        }

        addressAlreadyMinted[msg.sender] += _mintAmount;
        _mint(msg.sender, _mintAmount, "", true);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(totalSupply() + _mintAmount < maxSupply + 1, "Max supply exceeded!");
        _mint(_receiver, _mintAmount, "", true);
    }

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

        if (revealed == false) {
            if (isLegendary[_tokenId] == true) {
                return legendaryURI;
            }
            return hiddenURI;
        }

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

    function getMintedCount(address _address) public view returns(uint256) {
        return addressAlreadyMinted[_address];
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setHiddenURI(string memory _newHiddenURI) public onlyOwner {
        hiddenURI = _newHiddenURI;
    }

    function setLegendaryURI(string memory _newLegendaryURI) public onlyOwner {
        legendaryURI = _newLegendaryURI;
    }

    function setLegendary(uint256 _id) public onlyOwner {
        isLegendary[_id] = true;
    }

    function setOnlyWhitelisted(bool _state) public onlyOwner {
        onlyWhitelisted = _state;
    }

    function setWhitelistMerkleRoot(bytes32 _root) public onlyOwner {
        whitelistMerkleRoot = _root;
    }

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

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setPublicCost(uint256 _price) public onlyOwner {
        publicCost = _price;
    }

    function setMaxMintPerAddress(uint256 _newLimit) public onlyOwner {
        maxMintPerAddress = _newLimit;
    }

    function withdraw() public {
        (bool os, ) = payable(0xC9f2bCEb813509e452FA8096ee2d9D93E21E31Ce).call{value: address(this).balance }("");
        require(os, "Withdraw failed!");
    }

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

    function _isWhitelisted(address _user, bytes32[] calldata _merkleProof) internal view returns (bool) {
        // get leaf 
        bytes32 leaf = keccak256(abi.encodePacked(_user));
        // verify using MerkleProof.sol
        require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid proof!"); // verify the proof
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isLegendary","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"legendaryURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newHiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"setLegendary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newLegendaryURI","type":"string"}],"name":"setLegendaryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setMaxMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526701bc16d674ec8000600e556003600f556010805462ffffff1916620100011790553480156200003357600080fd5b50604080518082018252601381527f4c6567656e6473206f662041746c616e746973000000000000000000000000006020808301918252835180850190945260038452624c4f4160e81b908401528151919291620000949160029162000128565b508051620000aa90600390602084019062000128565b505050620000c7620000c1620000d260201b60201c565b620000d6565b60016009556200020b565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013690620001ce565b90600052602060002090601f0160209004810192826200015a5760008555620001a5565b82601f106200017557805160ff1916838001178555620001a5565b82800160010185558215620001a5579182015b82811115620001a557825182559160200191906001019062000188565b50620001b3929150620001b7565b5090565b5b80821115620001b35760008155600101620001b8565b600181811c90821680620001e357607f821691505b602082108114156200020557634e487b7160e01b600052602260045260246000fd5b50919050565b6123cd806200021b6000396000f3fe60806040526004361061025c5760003560e01c80638693da2011610144578063bbaac02f116100b6578063e0a808531161007a578063e0a80853146106db578063e7b99ec7146106fb578063e985e9c514610717578063efbd73f414610760578063f2fde38b14610780578063f9664877146107a057600080fd5b8063bbaac02f14610635578063bd32fb6614610655578063c5a991f814610675578063c87b56dd146106a5578063d5abeb01146106c557600080fd5b806397d6696b1161010857806397d6696b146105765780639c70b512146105ac578063a22cb465146105cc578063aa98e0c6146105ec578063b88d4fde14610602578063ba41b0c61461062257600080fd5b80638693da2014610503578063876511c6146105195780638cc54e7f1461052e5780638da5cb5b1461054357806395d89b411461056157600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e146104595780636aeb4248146104795780636c0360eb1461049957806370a08231146104ae578063715018a6146104ce578063811d2437146104e357600080fd5b806342842e0e146103ca57806351830227146103ea57806355f804b314610409578063572849c4146104295780635c975abb1461043f57600080fd5b806318160ddd1161022457806318160ddd146103325780631e14d44b1461035557806323b872dd146103755780633c952764146103955780633ccfd60b146103b557600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806316c38b3c14610312575b600080fd5b34801561026d57600080fd5b5061028161027c36600461201c565b6107c0565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab610812565b60405161028d91906121e9565b3480156102c457600080fd5b506102d86102d3366004612003565b6108a4565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611fbe565b6108e8565b005b34801561031e57600080fd5b5061031061032d366004611fe8565b610976565b34801561033e57600080fd5b50600154600054035b60405190815260200161028d565b34801561036157600080fd5b50610310610370366004612003565b6109bc565b34801561038157600080fd5b50610310610390366004611edc565b6109eb565b3480156103a157600080fd5b506103106103b0366004611fe8565b6109f6565b3480156103c157600080fd5b50610310610a3c565b3480156103d657600080fd5b506103106103e5366004611edc565b610ade565b3480156103f657600080fd5b5060105461028190610100900460ff1681565b34801561041557600080fd5b50610310610424366004612056565b610af9565b34801561043557600080fd5b50610347600f5481565b34801561044b57600080fd5b506010546102819060ff1681565b34801561046557600080fd5b506102d8610474366004612003565b610b3a565b34801561048557600080fd5b50610310610494366004612056565b610b4c565b3480156104a557600080fd5b506102ab610b89565b3480156104ba57600080fd5b506103476104c9366004611e8e565b610c17565b3480156104da57600080fd5b50610310610c66565b3480156104ef57600080fd5b506103106104fe366004612003565b610c9c565b34801561050f57600080fd5b50610347600e5481565b34801561052557600080fd5b506102ab610ccb565b34801561053a57600080fd5b506102ab610cd8565b34801561054f57600080fd5b506008546001600160a01b03166102d8565b34801561056d57600080fd5b506102ab610ce5565b34801561058257600080fd5b50610347610591366004611e8e565b6001600160a01b031660009081526011602052604090205490565b3480156105b857600080fd5b506010546102819062010000900460ff1681565b3480156105d857600080fd5b506103106105e7366004611f94565b610cf4565b3480156105f857600080fd5b50610347600d5481565b34801561060e57600080fd5b5061031061061d366004611f18565b610d8a565b6103106106303660046120c2565b610dc4565b34801561064157600080fd5b50610310610650366004612056565b6110ac565b34801561066157600080fd5b50610310610670366004612003565b6110e9565b34801561068157600080fd5b50610281610690366004612003565b60126020526000908152604090205460ff1681565b3480156106b157600080fd5b506102ab6106c0366004612003565b611118565b3480156106d157600080fd5b50610347611e6181565b3480156106e757600080fd5b506103106106f6366004611fe8565b6112ad565b34801561070757600080fd5b5061034767015fb7f9b8c3800081565b34801561072357600080fd5b50610281610732366004611ea9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076c57600080fd5b5061031061077b36600461209f565b6112f1565b34801561078c57600080fd5b5061031061079b366004611e8e565b6113a0565b3480156107ac57600080fd5b506103106107bb366004612003565b611438565b60006001600160e01b031982166380ac58cd60e01b14806107f157506001600160e01b03198216635b5e139f60e01b145b8061080c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610821906122bf565b80601f016020809104026020016040519081016040528092919081815260200182805461084d906122bf565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b60006108af8261147d565b6108cc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f382610b3a565b9050806001600160a01b0316836001600160a01b031614156109285760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061094857506109468133610732565b155b15610966576040516367d9dca160e11b815260040160405180910390fd5b6109718383836114a8565b505050565b6008546001600160a01b031633146109a95760405162461bcd60e51b81526004016109a0906121fc565b60405180910390fd5b6010805460ff1916911515919091179055565b6008546001600160a01b031633146109e65760405162461bcd60e51b81526004016109a0906121fc565b600f55565b610971838383611504565b6008546001600160a01b03163314610a205760405162461bcd60e51b81526004016109a0906121fc565b60108054911515620100000262ff000019909216919091179055565b60405160009073c9f2bceb813509e452fa8096ee2d9d93e21e31ce9047908381818185875af1925050503d8060008114610a92576040519150601f19603f3d011682016040523d82523d6000602084013e610a97565b606091505b5050905080610adb5760405162461bcd60e51b815260206004820152601060248201526f5769746864726177206661696c65642160801b60448201526064016109a0565b50565b61097183838360405180602001604052806000815250610d8a565b6008546001600160a01b03163314610b235760405162461bcd60e51b81526004016109a0906121fc565b8051610b3690600a906020840190611d53565b5050565b6000610b458261171a565b5192915050565b6008546001600160a01b03163314610b765760405162461bcd60e51b81526004016109a0906121fc565b8051610b3690600c906020840190611d53565b600a8054610b96906122bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc2906122bf565b8015610c0f5780601f10610be457610100808354040283529160200191610c0f565b820191906000526020600020905b815481529060010190602001808311610bf257829003601f168201915b505050505081565b60006001600160a01b038216610c40576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c905760405162461bcd60e51b81526004016109a0906121fc565b610c9a6000611835565b565b6008546001600160a01b03163314610cc65760405162461bcd60e51b81526004016109a0906121fc565b600e55565b600c8054610b96906122bf565b600b8054610b96906122bf565b606060038054610821906122bf565b6001600160a01b038216331415610d1e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d95848484611504565b610da184848484611887565b610dbe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60026009541415610e175760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109a0565b600260095560105460ff1615610e655760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016109a0565b610e72611e616001612231565b83610e806001546000540390565b610e8a9190612231565b10610ece5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a0565b600f54610edc906001612231565b33600090815260116020526040902054610ef7908590612231565b10610f445760405162461bcd60e51b815260206004820152601d60248201527f4d6178204e46542070657220616464726573732065786365656465642100000060448201526064016109a0565b60105462010000900460ff1615156001141561100d57610f65338383611996565b610fb15760405162461bcd60e51b815260206004820152601760248201527f4e6f7420612077686974656c697374656420757365722100000000000000000060448201526064016109a0565b610fc38367015fb7f9b8c3800061225d565b3410156110085760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a0565b611060565b82600e5461101b919061225d565b3410156110605760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a0565b336000908152601160205260408120805485929061107f908490612231565b925050819055506110a23384604051806020016040528060008152506001611a50565b5050600160095550565b6008546001600160a01b031633146110d65760405162461bcd60e51b81526004016109a0906121fc565b8051610b3690600b906020840190611d53565b6008546001600160a01b031633146111135760405162461bcd60e51b81526004016109a0906121fc565b600d55565b60606111238261147d565b6111875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a0565b601054610100900460ff166112515760008281526012602052604090205460ff1615156001141561124457600c80546111bf906122bf565b80601f01602080910402602001604051908101604052809291908181526020018280546111eb906122bf565b80156112385780601f1061120d57610100808354040283529160200191611238565b820191906000526020600020905b81548152906001019060200180831161121b57829003601f168201915b50505050509050919050565b600b80546111bf906122bf565b600061125b611bbc565b9050600081511161127b57604051806020016040528060008152506112a6565b8061128584611bcb565b60405160200161129692919061216d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112d75760405162461bcd60e51b81526004016109a0906121fc565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b0316331461131b5760405162461bcd60e51b81526004016109a0906121fc565b611328611e616001612231565b826113366001546000540390565b6113409190612231565b106113845760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a0565b610b368183604051806020016040528060008152506001611a50565b6008546001600160a01b031633146113ca5760405162461bcd60e51b81526004016109a0906121fc565b6001600160a01b03811661142f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a0565b610adb81611835565b6008546001600160a01b031633146114625760405162461bcd60e51b81526004016109a0906121fc565b6000908152601260205260409020805460ff19166001179055565b600080548210801561080c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061150f8261171a565b80519091506000906001600160a01b0316336001600160a01b0316148061153d5750815161153d9033610732565b8061155857503361154d846108a4565b6001600160a01b0316145b90508061157857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146115ad5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166115d457604051633a954ecd60e21b815260040160405180910390fd5b6115e460008484600001516114a8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166116d0576000548110156116d0578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181018290529054829081101561181c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061181a5780516001600160a01b0316156117b0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611815579392505050565b6117b0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561198a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118cb9033908990889088906004016121ac565b602060405180830381600087803b1580156118e557600080fd5b505af1925050508015611915575060408051601f3d908101601f1916820190925261191291810190612039565b60015b611970573d808015611943576040519150601f19603f3d011682016040523d82523d6000602084013e611948565b606091505b508051611968576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061198e565b5060015b949350505050565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050611a1384848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611cc9565b61198a5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016109a0565b6000546001600160a01b038516611a7957604051622e076360e81b815260040160405180910390fd5b83611a975760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611bb35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611b895750611b876000888488611887565b155b15611ba7576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611b32565b50600055611713565b6060600a8054610821906122bf565b606081611bef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c195780611c03816122fa565b9150611c129050600a83612249565b9150611bf3565b60008167ffffffffffffffff811115611c3457611c3461236b565b6040519080825280601f01601f191660200182016040528015611c5e576020820181803683370190505b5090505b841561198e57611c7360018361227c565b9150611c80600a86612315565b611c8b906030612231565b60f81b818381518110611ca057611ca0612355565b60200101906001600160f81b031916908160001a905350611cc2600a86612249565b9450611c62565b600082611cd68584611cdf565b14949350505050565b600081815b8451811015611d4b576000858281518110611d0157611d01612355565b60200260200101519050808311611d275760008381526020829052604090209250611d38565b600081815260208490526040902092505b5080611d43816122fa565b915050611ce4565b509392505050565b828054611d5f906122bf565b90600052602060002090601f016020900481019282611d815760008555611dc7565b82601f10611d9a57805160ff1916838001178555611dc7565b82800160010185558215611dc7579182015b82811115611dc7578251825591602001919060010190611dac565b50611dd3929150611dd7565b5090565b5b80821115611dd35760008155600101611dd8565b600067ffffffffffffffff80841115611e0757611e0761236b565b604051601f8501601f19908116603f01168101908282118183101715611e2f57611e2f61236b565b81604052809350858152868686011115611e4857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e7957600080fd5b919050565b80358015158114611e7957600080fd5b600060208284031215611ea057600080fd5b6112a682611e62565b60008060408385031215611ebc57600080fd5b611ec583611e62565b9150611ed360208401611e62565b90509250929050565b600080600060608486031215611ef157600080fd5b611efa84611e62565b9250611f0860208501611e62565b9150604084013590509250925092565b60008060008060808587031215611f2e57600080fd5b611f3785611e62565b9350611f4560208601611e62565b925060408501359150606085013567ffffffffffffffff811115611f6857600080fd5b8501601f81018713611f7957600080fd5b611f8887823560208401611dec565b91505092959194509250565b60008060408385031215611fa757600080fd5b611fb083611e62565b9150611ed360208401611e7e565b60008060408385031215611fd157600080fd5b611fda83611e62565b946020939093013593505050565b600060208284031215611ffa57600080fd5b6112a682611e7e565b60006020828403121561201557600080fd5b5035919050565b60006020828403121561202e57600080fd5b81356112a681612381565b60006020828403121561204b57600080fd5b81516112a681612381565b60006020828403121561206857600080fd5b813567ffffffffffffffff81111561207f57600080fd5b8201601f8101841361209057600080fd5b61198e84823560208401611dec565b600080604083850312156120b257600080fd5b82359150611ed360208401611e62565b6000806000604084860312156120d757600080fd5b83359250602084013567ffffffffffffffff808211156120f657600080fd5b818601915086601f83011261210a57600080fd5b81358181111561211957600080fd5b8760208260051b850101111561212e57600080fd5b6020830194508093505050509250925092565b60008151808452612159816020860160208601612293565b601f01601f19169290920160200192915050565b6000835161217f818460208801612293565b835190830190612193818360208801612293565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121df90830184612141565b9695505050505050565b6020815260006112a66020830184612141565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561224457612244612329565b500190565b6000826122585761225861233f565b500490565b600081600019048311821515161561227757612277612329565b500290565b60008282101561228e5761228e612329565b500390565b60005b838110156122ae578181015183820152602001612296565b83811115610dbe5750506000910152565b600181811c908216806122d357607f821691505b602082108114156122f457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561230e5761230e612329565b5060010190565b6000826123245761232461233f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610adb57600080fdfea26469706673582212206e74421f185eea2acd2c04a9d0906922ed8cf929984cbd3ab34519f2206a4e5064736f6c63430008070033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80638693da2011610144578063bbaac02f116100b6578063e0a808531161007a578063e0a80853146106db578063e7b99ec7146106fb578063e985e9c514610717578063efbd73f414610760578063f2fde38b14610780578063f9664877146107a057600080fd5b8063bbaac02f14610635578063bd32fb6614610655578063c5a991f814610675578063c87b56dd146106a5578063d5abeb01146106c557600080fd5b806397d6696b1161010857806397d6696b146105765780639c70b512146105ac578063a22cb465146105cc578063aa98e0c6146105ec578063b88d4fde14610602578063ba41b0c61461062257600080fd5b80638693da2014610503578063876511c6146105195780638cc54e7f1461052e5780638da5cb5b1461054357806395d89b411461056157600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e146104595780636aeb4248146104795780636c0360eb1461049957806370a08231146104ae578063715018a6146104ce578063811d2437146104e357600080fd5b806342842e0e146103ca57806351830227146103ea57806355f804b314610409578063572849c4146104295780635c975abb1461043f57600080fd5b806318160ddd1161022457806318160ddd146103325780631e14d44b1461035557806323b872dd146103755780633c952764146103955780633ccfd60b146103b557600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806316c38b3c14610312575b600080fd5b34801561026d57600080fd5b5061028161027c36600461201c565b6107c0565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab610812565b60405161028d91906121e9565b3480156102c457600080fd5b506102d86102d3366004612003565b6108a4565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611fbe565b6108e8565b005b34801561031e57600080fd5b5061031061032d366004611fe8565b610976565b34801561033e57600080fd5b50600154600054035b60405190815260200161028d565b34801561036157600080fd5b50610310610370366004612003565b6109bc565b34801561038157600080fd5b50610310610390366004611edc565b6109eb565b3480156103a157600080fd5b506103106103b0366004611fe8565b6109f6565b3480156103c157600080fd5b50610310610a3c565b3480156103d657600080fd5b506103106103e5366004611edc565b610ade565b3480156103f657600080fd5b5060105461028190610100900460ff1681565b34801561041557600080fd5b50610310610424366004612056565b610af9565b34801561043557600080fd5b50610347600f5481565b34801561044b57600080fd5b506010546102819060ff1681565b34801561046557600080fd5b506102d8610474366004612003565b610b3a565b34801561048557600080fd5b50610310610494366004612056565b610b4c565b3480156104a557600080fd5b506102ab610b89565b3480156104ba57600080fd5b506103476104c9366004611e8e565b610c17565b3480156104da57600080fd5b50610310610c66565b3480156104ef57600080fd5b506103106104fe366004612003565b610c9c565b34801561050f57600080fd5b50610347600e5481565b34801561052557600080fd5b506102ab610ccb565b34801561053a57600080fd5b506102ab610cd8565b34801561054f57600080fd5b506008546001600160a01b03166102d8565b34801561056d57600080fd5b506102ab610ce5565b34801561058257600080fd5b50610347610591366004611e8e565b6001600160a01b031660009081526011602052604090205490565b3480156105b857600080fd5b506010546102819062010000900460ff1681565b3480156105d857600080fd5b506103106105e7366004611f94565b610cf4565b3480156105f857600080fd5b50610347600d5481565b34801561060e57600080fd5b5061031061061d366004611f18565b610d8a565b6103106106303660046120c2565b610dc4565b34801561064157600080fd5b50610310610650366004612056565b6110ac565b34801561066157600080fd5b50610310610670366004612003565b6110e9565b34801561068157600080fd5b50610281610690366004612003565b60126020526000908152604090205460ff1681565b3480156106b157600080fd5b506102ab6106c0366004612003565b611118565b3480156106d157600080fd5b50610347611e6181565b3480156106e757600080fd5b506103106106f6366004611fe8565b6112ad565b34801561070757600080fd5b5061034767015fb7f9b8c3800081565b34801561072357600080fd5b50610281610732366004611ea9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076c57600080fd5b5061031061077b36600461209f565b6112f1565b34801561078c57600080fd5b5061031061079b366004611e8e565b6113a0565b3480156107ac57600080fd5b506103106107bb366004612003565b611438565b60006001600160e01b031982166380ac58cd60e01b14806107f157506001600160e01b03198216635b5e139f60e01b145b8061080c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610821906122bf565b80601f016020809104026020016040519081016040528092919081815260200182805461084d906122bf565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b60006108af8261147d565b6108cc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f382610b3a565b9050806001600160a01b0316836001600160a01b031614156109285760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061094857506109468133610732565b155b15610966576040516367d9dca160e11b815260040160405180910390fd5b6109718383836114a8565b505050565b6008546001600160a01b031633146109a95760405162461bcd60e51b81526004016109a0906121fc565b60405180910390fd5b6010805460ff1916911515919091179055565b6008546001600160a01b031633146109e65760405162461bcd60e51b81526004016109a0906121fc565b600f55565b610971838383611504565b6008546001600160a01b03163314610a205760405162461bcd60e51b81526004016109a0906121fc565b60108054911515620100000262ff000019909216919091179055565b60405160009073c9f2bceb813509e452fa8096ee2d9d93e21e31ce9047908381818185875af1925050503d8060008114610a92576040519150601f19603f3d011682016040523d82523d6000602084013e610a97565b606091505b5050905080610adb5760405162461bcd60e51b815260206004820152601060248201526f5769746864726177206661696c65642160801b60448201526064016109a0565b50565b61097183838360405180602001604052806000815250610d8a565b6008546001600160a01b03163314610b235760405162461bcd60e51b81526004016109a0906121fc565b8051610b3690600a906020840190611d53565b5050565b6000610b458261171a565b5192915050565b6008546001600160a01b03163314610b765760405162461bcd60e51b81526004016109a0906121fc565b8051610b3690600c906020840190611d53565b600a8054610b96906122bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc2906122bf565b8015610c0f5780601f10610be457610100808354040283529160200191610c0f565b820191906000526020600020905b815481529060010190602001808311610bf257829003601f168201915b505050505081565b60006001600160a01b038216610c40576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c905760405162461bcd60e51b81526004016109a0906121fc565b610c9a6000611835565b565b6008546001600160a01b03163314610cc65760405162461bcd60e51b81526004016109a0906121fc565b600e55565b600c8054610b96906122bf565b600b8054610b96906122bf565b606060038054610821906122bf565b6001600160a01b038216331415610d1e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d95848484611504565b610da184848484611887565b610dbe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60026009541415610e175760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109a0565b600260095560105460ff1615610e655760405162461bcd60e51b8152602060048201526013602482015272436f6e7472616374206973207061757365642160681b60448201526064016109a0565b610e72611e616001612231565b83610e806001546000540390565b610e8a9190612231565b10610ece5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a0565b600f54610edc906001612231565b33600090815260116020526040902054610ef7908590612231565b10610f445760405162461bcd60e51b815260206004820152601d60248201527f4d6178204e46542070657220616464726573732065786365656465642100000060448201526064016109a0565b60105462010000900460ff1615156001141561100d57610f65338383611996565b610fb15760405162461bcd60e51b815260206004820152601760248201527f4e6f7420612077686974656c697374656420757365722100000000000000000060448201526064016109a0565b610fc38367015fb7f9b8c3800061225d565b3410156110085760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a0565b611060565b82600e5461101b919061225d565b3410156110605760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a0565b336000908152601160205260408120805485929061107f908490612231565b925050819055506110a23384604051806020016040528060008152506001611a50565b5050600160095550565b6008546001600160a01b031633146110d65760405162461bcd60e51b81526004016109a0906121fc565b8051610b3690600b906020840190611d53565b6008546001600160a01b031633146111135760405162461bcd60e51b81526004016109a0906121fc565b600d55565b60606111238261147d565b6111875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a0565b601054610100900460ff166112515760008281526012602052604090205460ff1615156001141561124457600c80546111bf906122bf565b80601f01602080910402602001604051908101604052809291908181526020018280546111eb906122bf565b80156112385780601f1061120d57610100808354040283529160200191611238565b820191906000526020600020905b81548152906001019060200180831161121b57829003601f168201915b50505050509050919050565b600b80546111bf906122bf565b600061125b611bbc565b9050600081511161127b57604051806020016040528060008152506112a6565b8061128584611bcb565b60405160200161129692919061216d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146112d75760405162461bcd60e51b81526004016109a0906121fc565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b0316331461131b5760405162461bcd60e51b81526004016109a0906121fc565b611328611e616001612231565b826113366001546000540390565b6113409190612231565b106113845760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a0565b610b368183604051806020016040528060008152506001611a50565b6008546001600160a01b031633146113ca5760405162461bcd60e51b81526004016109a0906121fc565b6001600160a01b03811661142f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a0565b610adb81611835565b6008546001600160a01b031633146114625760405162461bcd60e51b81526004016109a0906121fc565b6000908152601260205260409020805460ff19166001179055565b600080548210801561080c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061150f8261171a565b80519091506000906001600160a01b0316336001600160a01b0316148061153d5750815161153d9033610732565b8061155857503361154d846108a4565b6001600160a01b0316145b90508061157857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146115ad5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166115d457604051633a954ecd60e21b815260040160405180910390fd5b6115e460008484600001516114a8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166116d0576000548110156116d0578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181018290529054829081101561181c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061181a5780516001600160a01b0316156117b0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611815579392505050565b6117b0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561198a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118cb9033908990889088906004016121ac565b602060405180830381600087803b1580156118e557600080fd5b505af1925050508015611915575060408051601f3d908101601f1916820190925261191291810190612039565b60015b611970573d808015611943576040519150601f19603f3d011682016040523d82523d6000602084013e611948565b606091505b508051611968576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061198e565b5060015b949350505050565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050611a1384848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611cc9565b61198a5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016109a0565b6000546001600160a01b038516611a7957604051622e076360e81b815260040160405180910390fd5b83611a975760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611bb35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611b895750611b876000888488611887565b155b15611ba7576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611b32565b50600055611713565b6060600a8054610821906122bf565b606081611bef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c195780611c03816122fa565b9150611c129050600a83612249565b9150611bf3565b60008167ffffffffffffffff811115611c3457611c3461236b565b6040519080825280601f01601f191660200182016040528015611c5e576020820181803683370190505b5090505b841561198e57611c7360018361227c565b9150611c80600a86612315565b611c8b906030612231565b60f81b818381518110611ca057611ca0612355565b60200101906001600160f81b031916908160001a905350611cc2600a86612249565b9450611c62565b600082611cd68584611cdf565b14949350505050565b600081815b8451811015611d4b576000858281518110611d0157611d01612355565b60200260200101519050808311611d275760008381526020829052604090209250611d38565b600081815260208490526040902092505b5080611d43816122fa565b915050611ce4565b509392505050565b828054611d5f906122bf565b90600052602060002090601f016020900481019282611d815760008555611dc7565b82601f10611d9a57805160ff1916838001178555611dc7565b82800160010185558215611dc7579182015b82811115611dc7578251825591602001919060010190611dac565b50611dd3929150611dd7565b5090565b5b80821115611dd35760008155600101611dd8565b600067ffffffffffffffff80841115611e0757611e0761236b565b604051601f8501601f19908116603f01168101908282118183101715611e2f57611e2f61236b565b81604052809350858152868686011115611e4857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e7957600080fd5b919050565b80358015158114611e7957600080fd5b600060208284031215611ea057600080fd5b6112a682611e62565b60008060408385031215611ebc57600080fd5b611ec583611e62565b9150611ed360208401611e62565b90509250929050565b600080600060608486031215611ef157600080fd5b611efa84611e62565b9250611f0860208501611e62565b9150604084013590509250925092565b60008060008060808587031215611f2e57600080fd5b611f3785611e62565b9350611f4560208601611e62565b925060408501359150606085013567ffffffffffffffff811115611f6857600080fd5b8501601f81018713611f7957600080fd5b611f8887823560208401611dec565b91505092959194509250565b60008060408385031215611fa757600080fd5b611fb083611e62565b9150611ed360208401611e7e565b60008060408385031215611fd157600080fd5b611fda83611e62565b946020939093013593505050565b600060208284031215611ffa57600080fd5b6112a682611e7e565b60006020828403121561201557600080fd5b5035919050565b60006020828403121561202e57600080fd5b81356112a681612381565b60006020828403121561204b57600080fd5b81516112a681612381565b60006020828403121561206857600080fd5b813567ffffffffffffffff81111561207f57600080fd5b8201601f8101841361209057600080fd5b61198e84823560208401611dec565b600080604083850312156120b257600080fd5b82359150611ed360208401611e62565b6000806000604084860312156120d757600080fd5b83359250602084013567ffffffffffffffff808211156120f657600080fd5b818601915086601f83011261210a57600080fd5b81358181111561211957600080fd5b8760208260051b850101111561212e57600080fd5b6020830194508093505050509250925092565b60008151808452612159816020860160208601612293565b601f01601f19169290920160200192915050565b6000835161217f818460208801612293565b835190830190612193818360208801612293565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121df90830184612141565b9695505050505050565b6020815260006112a66020830184612141565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561224457612244612329565b500190565b6000826122585761225861233f565b500490565b600081600019048311821515161561227757612277612329565b500290565b60008282101561228e5761228e612329565b500390565b60005b838110156122ae578181015183820152602001612296565b83811115610dbe5750506000910152565b600181811c908216806122d357607f821691505b602082108114156122f457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561230e5761230e612329565b5060010190565b6000826123245761232461233f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610adb57600080fdfea26469706673582212206e74421f185eea2acd2c04a9d0906922ed8cf929984cbd3ab34519f2206a4e5064736f6c63430008070033

Deployed Bytecode Sourcemap

48167:4418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30961:305;;;;;;;;;;-1:-1:-1;30961:305:0;;;;;:::i;:::-;;:::i;:::-;;;7646:14:1;;7639:22;7621:41;;7609:2;7594:18;30961:305:0;;;;;;;;34321:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35824:204::-;;;;;;;;;;-1:-1:-1;35824:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6944:32:1;;;6926:51;;6914:2;6899:18;35824:204:0;6780:203:1;35387:371:0;;;;;;;;;;-1:-1:-1;35387:371:0;;;;;:::i;:::-;;:::i;:::-;;51484:83;;;;;;;;;;-1:-1:-1;51484:83:0;;;;;:::i;:::-;;:::i;30618:271::-;;;;;;;;;;-1:-1:-1;30854:12:0;;30662:7;30838:13;:28;30618:271;;;7819:25:1;;;7807:2;7792:18;30618:271:0;7673:177:1;51772:114:0;;;;;;;;;;-1:-1:-1;51772:114:0;;;;;:::i;:::-;;:::i;36681:170::-;;;;;;;;;;-1:-1:-1;36681:170:0;;;;;:::i;:::-;;:::i;51257:101::-;;;;;;;;;;-1:-1:-1;51257:101:0;;;;;:::i;:::-;;:::i;51894:193::-;;;;;;;;;;;;;:::i;36922:185::-;;;;;;;;;;-1:-1:-1;36922:185:0;;;;;:::i;:::-;;:::i;48683:35::-;;;;;;;;;;-1:-1:-1;48683:35:0;;;;;;;;;;;50791:104;;;;;;;;;;-1:-1:-1;50791:104:0;;;;;:::i;:::-;;:::i;48588:45::-;;;;;;;;;;;;;;;;48642:34;;;;;;;;;;-1:-1:-1;48642:34:0;;;;;;;;34130:124;;;;;;;;;;-1:-1:-1;34130:124:0;;;;;:::i;:::-;;:::i;51023:::-;;;;;;;;;;-1:-1:-1;51023:124:0;;;;;:::i;:::-;;:::i;48272:22::-;;;;;;;;;;;;;:::i;31330:206::-;;;;;;;;;;-1:-1:-1;31330:206:0;;;;;:::i;:::-;;:::i;20569:103::-;;;;;;;;;;;;;:::i;51670:94::-;;;;;;;;;;-1:-1:-1;51670:94:0;;;;;:::i;:::-;;:::i;48471:55::-;;;;;;;;;;;;;;;;48332:27;;;;;;;;;;;;;:::i;48301:24::-;;;;;;;;;;;;;:::i;19918:87::-;;;;;;;;;;-1:-1:-1;19991:6:0;;-1:-1:-1;;;;;19991:6:0;19918:87;;34490:104;;;;;;;;;;;;;:::i;50656:127::-;;;;;;;;;;-1:-1:-1;50656:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;50745:30:0;50718:7;50745:30;;;:20;:30;;;;;;;50656:127;48725:34;;;;;;;;;;-1:-1:-1;48725:34:0;;;;;;;;;;;36100:279;;;;;;;;;;-1:-1:-1;36100:279:0;;;;;:::i;:::-;;:::i;48366:34::-;;;;;;;;;;;;;;;;37178:342;;;;;;;;;;-1:-1:-1;37178:342:0;;;;;:::i;:::-;;:::i;48937:808::-;;;;;;:::i;:::-;;:::i;50903:112::-;;;;;;;;;;-1:-1:-1;50903:112:0;;;;;:::i;:::-;;:::i;51366:110::-;;;;;;;;;;-1:-1:-1;51366:110:0;;;;;:::i;:::-;;:::i;48823:43::-;;;;;;;;;;-1:-1:-1;48823:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49987:661;;;;;;;;;;-1:-1:-1;49987:661:0;;;;;:::i;:::-;;:::i;48533:48::-;;;;;;;;;;;;48577:4;48533:48;;51575:87;;;;;;;;;;-1:-1:-1;51575:87:0;;;;;:::i;:::-;;:::i;48409:55::-;;;;;;;;;;;;48453:11;48409:55;;36450:164;;;;;;;;;;-1:-1:-1;36450:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36571:25:0;;;36547:4;36571:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36450:164;49753:226;;;;;;;;;;-1:-1:-1;49753:226:0;;;;;:::i;:::-;;:::i;20827:201::-;;;;;;;;;;-1:-1:-1;20827:201:0;;;;;:::i;:::-;;:::i;51155:94::-;;;;;;;;;;-1:-1:-1;51155:94:0;;;;;:::i;:::-;;:::i;30961:305::-;31063:4;-1:-1:-1;;;;;;31100:40:0;;-1:-1:-1;;;31100:40:0;;:105;;-1:-1:-1;;;;;;;31157:48:0;;-1:-1:-1;;;31157:48:0;31100:105;:158;;;-1:-1:-1;;;;;;;;;;27300:40:0;;;31222:36;31080:178;30961:305;-1:-1:-1;;30961:305:0:o;34321:100::-;34375:13;34408:5;34401:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34321:100;:::o;35824:204::-;35892:7;35917:16;35925:7;35917;:16::i;:::-;35912:64;;35942:34;;-1:-1:-1;;;35942:34:0;;;;;;;;;;;35912:64;-1:-1:-1;35996:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35996:24:0;;35824:204::o;35387:371::-;35460:13;35476:24;35492:7;35476:15;:24::i;:::-;35460:40;;35521:5;-1:-1:-1;;;;;35515:11:0;:2;-1:-1:-1;;;;;35515:11:0;;35511:48;;;35535:24;;-1:-1:-1;;;35535:24:0;;;;;;;;;;;35511:48;18861:10;-1:-1:-1;;;;;35576:21:0;;;;;;:63;;-1:-1:-1;35602:37:0;35619:5;18861:10;36450:164;:::i;35602:37::-;35601:38;35576:63;35572:138;;;35663:35;;-1:-1:-1;;;35663:35:0;;;;;;;;;;;35572:138;35722:28;35731:2;35735:7;35744:5;35722:8;:28::i;:::-;35449:309;35387:371;;:::o;51484:83::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;;;;;;;;;51544:6:::1;:15:::0;;-1:-1:-1;;51544:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51484:83::o;51772:114::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;51849:17:::1;:29:::0;51772:114::o;36681:170::-;36815:28;36825:4;36831:2;36835:7;36815:9;:28::i;51257:101::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;51326:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;51326:24:0;;::::1;::::0;;;::::1;::::0;;51257:101::o;51894:193::-;51946:91;;51933:7;;51954:42;;52010:21;;51933:7;51946:91;51933:7;51946:91;52010:21;51954:42;51946:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51932:105;;;52056:2;52048:31;;;;-1:-1:-1;;;52048:31:0;;10089:2:1;52048:31:0;;;10071:21:1;10128:2;10108:18;;;10101:30;-1:-1:-1;;;10147:18:1;;;10140:46;10203:18;;52048:31:0;9887:340:1;52048:31:0;51921:166;51894:193::o;36922:185::-;37060:39;37077:4;37083:2;37087:7;37060:39;;;;;;;;;;;;:16;:39::i;50791:104::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;50866:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50791:104:::0;:::o;34130:124::-;34194:7;34221:20;34233:7;34221:11;:20::i;:::-;:25;;34130:124;-1:-1:-1;;34130:124:0:o;51023:::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;51108:31;;::::1;::::0;:12:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;48272:22::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31330:206::-;31394:7;-1:-1:-1;;;;;31418:19:0;;31414:60;;31446:28;;-1:-1:-1;;;31446:28:0;;;;;;;;;;;31414:60;-1:-1:-1;;;;;;31500:19:0;;;;;:12;:19;;;;;:27;;;;31330:206::o;20569:103::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;20634:30:::1;20661:1;20634:18;:30::i;:::-;20569:103::o:0;51670:94::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;51737:10:::1;:19:::0;51670:94::o;48332:27::-;;;;;;;:::i;48301:24::-;;;;;;;:::i;34490:104::-;34546:13;34579:7;34572:14;;;;;:::i;36100:279::-;-1:-1:-1;;;;;36191:24:0;;18861:10;36191:24;36187:54;;;36224:17;;-1:-1:-1;;;36224:17:0;;;;;;;;;;;36187:54;18861:10;36254:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36254:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36254:53:0;;;;;;;;;;36323:48;;7621:41:1;;;36254:42:0;;18861:10;36323:48;;7594:18:1;36323:48:0;;;;;;;36100:279;;:::o;37178:342::-;37345:28;37355:4;37361:2;37365:7;37345:9;:28::i;:::-;37389:48;37412:4;37418:2;37422:7;37431:5;37389:22;:48::i;:::-;37384:129;;37461:40;;-1:-1:-1;;;37461:40:0;;;;;;;;;;;37384:129;37178:342;;;;:::o;48937:808::-;25542:1;26140:7;;:19;;26132:63;;;;-1:-1:-1;;;26132:63:0;;11560:2:1;26132:63:0;;;11542:21:1;11599:2;11579:18;;;11572:30;11638:33;11618:18;;;11611:61;11689:18;;26132:63:0;11358:355:1;26132:63:0;25542:1;26273:7;:18;49053:6:::1;::::0;::::1;;49052:7;49044:39;;;::::0;-1:-1:-1;;;49044:39:0;;9741:2:1;49044:39:0::1;::::0;::::1;9723:21:1::0;9780:2;9760:18;;;9753:30;-1:-1:-1;;;9799:18:1;;;9792:49;9858:18;;49044:39:0::1;9539:343:1::0;49044:39:0::1;49132:13;48577:4;49144:1;49132:13;:::i;:::-;49118:11;49102:13;30854:12:::0;;30662:7;30838:13;:28;;30618:271;49102:13:::1;:27;;;;:::i;:::-;:43;49094:76;;;::::0;-1:-1:-1;;;49094:76:0;;11211:2:1;49094:76:0::1;::::0;::::1;11193:21:1::0;11250:2;11230:18;;;11223:30;-1:-1:-1;;;11269:18:1;;;11262:50;11329:18;;49094:76:0::1;11009:344:1::0;49094:76:0::1;49238:17;::::0;:21:::1;::::0;49258:1:::1;49238:21;:::i;:::-;49210:10;49189:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;49224:11;;49189:46:::1;:::i;:::-;:70;49181:112;;;::::0;-1:-1:-1;;;49181:112:0;;9031:2:1;49181:112:0::1;::::0;::::1;9013:21:1::0;9070:2;9050:18;;;9043:30;9109:31;9089:18;;;9082:59;9158:18;;49181:112:0::1;8829:353:1::0;49181:112:0::1;49310:15;::::0;;;::::1;;;:23;;49329:4;49310:23;49306:321;;;49358:40;49373:10;49385:12;;49358:14;:40::i;:::-;49350:76;;;::::0;-1:-1:-1;;;49350:76:0;;9389:2:1;49350:76:0::1;::::0;::::1;9371:21:1::0;9428:2;9408:18;;;9401:30;9467:25;9447:18;;;9440:53;9510:18;;49350:76:0::1;9187:347:1::0;49350:76:0::1;49462:27;49478:11:::0;48453::::1;49462:27;:::i;:::-;49449:9;:40;;49441:72;;;::::0;-1:-1:-1;;;49441:72:0;;11920:2:1;49441:72:0::1;::::0;::::1;11902:21:1::0;11959:2;11939:18;;;11932:30;-1:-1:-1;;;11978:18:1;;;11971:49;12037:18;;49441:72:0::1;11718:343:1::0;49441:72:0::1;49306:321;;;49580:11;49567:10;;:24;;;;:::i;:::-;49554:9;:37;;49546:69;;;::::0;-1:-1:-1;;;49546:69:0;;11920:2:1;49546:69:0::1;::::0;::::1;11902:21:1::0;11959:2;11939:18;;;11932:30;-1:-1:-1;;;11978:18:1;;;11971:49;12037:18;;49546:69:0::1;11718:343:1::0;49546:69:0::1;49660:10;49639:32;::::0;;;:20:::1;:32;::::0;;;;:47;;49675:11;;49639:32;:47:::1;::::0;49675:11;;49639:47:::1;:::i;:::-;;;;;;;;49697:40;49703:10;49715:11;49697:40;;;;;;;;;;;::::0;49732:4:::1;49697:5;:40::i;:::-;-1:-1:-1::0;;25498:1:0;26452:7;:22;-1:-1:-1;48937:808:0:o;50903:112::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;50982:25;;::::1;::::0;:9:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;51366:110::-:0;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;51441:19:::1;:27:::0;51366:110::o;49987:661::-;50106:13;50159:17;50167:8;50159:7;:17::i;:::-;50137:114;;;;-1:-1:-1;;;50137:114:0;;10795:2:1;50137:114:0;;;10777:21:1;10834:2;10814:18;;;10807:30;10873:34;10853:18;;;10846:62;-1:-1:-1;;;10924:18:1;;;10917:45;10979:19;;50137:114:0;10593:411:1;50137:114:0;50268:8;;;;;;;50264:169;;50306:21;;;;:11;:21;;;;;;;;:29;;:21;:29;50302:89;;;50363:12;50356:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49987:661;;;:::o;50302:89::-;50412:9;50405:16;;;;;:::i;50264:169::-;50445:28;50476:10;:8;:10::i;:::-;50445:41;;50535:1;50510:14;50504:28;:32;:136;;;;;;;;;;;;;;;;;50576:14;50592:19;:8;:17;:19::i;:::-;50559:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50504:136;50497:143;49987:661;-1:-1:-1;;;49987:661:0:o;51575:87::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;51637:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;51637:17:0;;::::1;::::0;;;::::1;::::0;;51575:87::o;49753:226::-;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;49883:13:::1;48577:4;49895:1;49883:13;:::i;:::-;49869:11;49853:13;30854:12:::0;;30662:7;30838:13;:28;;30618:271;49853:13:::1;:27;;;;:::i;:::-;:43;49845:76;;;::::0;-1:-1:-1;;;49845:76:0;;11211:2:1;49845:76:0::1;::::0;::::1;11193:21:1::0;11250:2;11230:18;;;11223:30;-1:-1:-1;;;11269:18:1;;;11262:50;11329:18;;49845:76:0::1;11009:344:1::0;49845:76:0::1;49932:39;49938:9;49949:11;49932:39;;;;;;;;;;;::::0;49966:4:::1;49932:5;:39::i;20827:201::-:0;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20916:22:0;::::1;20908:73;;;::::0;-1:-1:-1;;;20908:73:0;;8624:2:1;20908:73:0::1;::::0;::::1;8606:21:1::0;8663:2;8643:18;;;8636:30;8702:34;8682:18;;;8675:62;-1:-1:-1;;;8753:18:1;;;8746:36;8799:19;;20908:73:0::1;8422:402:1::0;20908:73:0::1;20992:28;21011:8;20992:18;:28::i;51155:94::-:0;19991:6;;-1:-1:-1;;;;;19991:6:0;18861:10;20138:23;20130:68;;;;-1:-1:-1;;;20130:68:0;;;;;;;:::i;:::-;51218:16:::1;::::0;;;:11:::1;:16;::::0;;;;:23;;-1:-1:-1;;51218:23:0::1;51237:4;51218:23;::::0;;51155:94::o;37775:144::-;37832:4;37866:13;;37856:7;:23;:55;;;;-1:-1:-1;;37884:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37884:27:0;;;;37883:28;;37775:144::o;44981:196::-;45096:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45096:29:0;-1:-1:-1;;;;;45096:29:0;;;;;;;;;45141:28;;45096:24;;45141:28;;;;;;;44981:196;;;:::o;40482:2112::-;40597:35;40635:20;40647:7;40635:11;:20::i;:::-;40710:18;;40597:58;;-1:-1:-1;40668:22:0;;-1:-1:-1;;;;;40694:34:0;18861:10;-1:-1:-1;;;;;40694:34:0;;:101;;;-1:-1:-1;40762:18:0;;40745:50;;18861:10;36450:164;:::i;40745:50::-;40694:154;;;-1:-1:-1;18861:10:0;40812:20;40824:7;40812:11;:20::i;:::-;-1:-1:-1;;;;;40812:36:0;;40694:154;40668:181;;40867:17;40862:66;;40893:35;;-1:-1:-1;;;40893:35:0;;;;;;;;;;;40862:66;40965:4;-1:-1:-1;;;;;40943:26:0;:13;:18;;;-1:-1:-1;;;;;40943:26:0;;40939:67;;40978:28;;-1:-1:-1;;;40978:28:0;;;;;;;;;;;40939:67;-1:-1:-1;;;;;41021:16:0;;41017:52;;41046:23;;-1:-1:-1;;;41046:23:0;;;;;;;;;;;41017:52;41190:49;41207:1;41211:7;41220:13;:18;;;41190:8;:49::i;:::-;-1:-1:-1;;;;;41535:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41535:31:0;;;;;;;-1:-1:-1;;41535:31:0;;;;;;;41581:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41581:29:0;;;;;;;;;;;41627:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;41672:61:0;;;;-1:-1:-1;;;41717:15:0;41672:61;;;;;;;;;;;42007:11;;;42037:24;;;;;:29;42007:11;;42037:29;42033:445;;42262:13;;42248:11;:27;42244:219;;;42332:18;;;42300:24;;;:11;:24;;;;;;;;:50;;42415:28;;;;42373:70;;-1:-1:-1;;;42373:70:0;-1:-1:-1;;;;;;42373:70:0;;;-1:-1:-1;;;;;42300:50:0;;;42373:70;;;;;;;42244:219;41510:979;42525:7;42521:2;-1:-1:-1;;;;;42506:27:0;42515:4;-1:-1:-1;;;;;42506:27:0;;;;;;;;;;;42544:42;40586:2008;;40482:2112;;;:::o;32985:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;33151:13:0;;33095:7;;33144:20;;33140:861;;;33185:31;33219:17;;;:11;:17;;;;;;;;;33185:51;;;;;;;;;-1:-1:-1;;;;;33185:51:0;;;;-1:-1:-1;;;33185:51:0;;;;;;;;;;;-1:-1:-1;;;33185:51:0;;;;;;;;;;;;;;33255:731;;33305:14;;-1:-1:-1;;;;;33305:28:0;;33301:101;;33369:9;32985:1083;-1:-1:-1;;;32985:1083:0:o;33301:101::-;-1:-1:-1;;;33746:6:0;33791:17;;;;:11;:17;;;;;;;;;33779:29;;;;;;;;;-1:-1:-1;;;;;33779:29:0;;;;;-1:-1:-1;;;33779:29:0;;;;;;;;;;;-1:-1:-1;;;33779:29:0;;;;;;;;;;;;;33839:28;33835:109;;33907:9;32985:1083;-1:-1:-1;;;32985:1083:0:o;33835:109::-;33706:261;;;33166:835;33140:861;34029:31;;-1:-1:-1;;;34029:31:0;;;;;;;;;;;21188:191;21281:6;;;-1:-1:-1;;;;;21298:17:0;;;-1:-1:-1;;;;;;21298:17:0;;;;;;;21331:40;;21281:6;;;21298:17;21281:6;;21331:40;;21262:16;;21331:40;21251:128;21188:191;:::o;45742:790::-;45897:4;-1:-1:-1;;;;;45918:13:0;;11262:19;:23;45914:611;;45954:72;;-1:-1:-1;;;45954:72:0;;-1:-1:-1;;;;;45954:36:0;;;;;:72;;18861:10;;46005:4;;46011:7;;46020:5;;45954:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45954:72:0;;;;;;;;-1:-1:-1;;45954:72:0;;;;;;;;;;;;:::i;:::-;;;45950:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46200:13:0;;46196:259;;46250:40;;-1:-1:-1;;;46250:40:0;;;;;;;;;;;46196:259;46405:6;46399:13;46390:6;46386:2;46382:15;46375:38;45950:520;-1:-1:-1;;;;;;46077:55:0;-1:-1:-1;;;46077:55:0;;-1:-1:-1;46070:62:0;;45914:611;-1:-1:-1;46509:4:0;45914:611;45742:790;;;;;;:::o;52211:371::-;52370:23;;-1:-1:-1;;5843:2:1;5839:15;;;5835:53;52370:23:0;;;5823:66:1;52306:4:0;;;;5905:12:1;;52370:23:0;;;;;;;;;;;;52360:34;;;;;;52345:49;;52454:59;52473:12;;52454:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52487:19:0;;;-1:-1:-1;52508:4:0;;-1:-1:-1;52454:18:0;:59::i;:::-;52446:86;;;;-1:-1:-1;;;52446:86:0;;8281:2:1;52446:86:0;;;8263:21:1;8320:2;8300:18;;;8293:30;-1:-1:-1;;;8339:18:1;;;8332:44;8393:18;;52446:86:0;8079:338:1;38816:1412:0;38955:20;38978:13;-1:-1:-1;;;;;39006:16:0;;39002:48;;39031:19;;-1:-1:-1;;;39031:19:0;;;;;;;;;;;39002:48;39065:13;39061:44;;39087:18;;-1:-1:-1;;;39087:18:0;;;;;;;;;;;39061:44;-1:-1:-1;;;;;39456:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39515:49:0;;39456:44;;;;;;;;39515:49;;;;-1:-1:-1;;39456:44:0;;;;;;39515:49;;;;;;;;;;;;;;;;39581:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;39631:66:0;;;;-1:-1:-1;;;39681:15:0;39631:66;;;;;;;;;;;39581:25;;39766:328;39786:8;39782:1;:12;39766:328;;;39825:38;;39850:12;;-1:-1:-1;;;;;39825:38:0;;;39842:1;;39825:38;;39842:1;;39825:38;39886:4;:68;;;;;39895:59;39926:1;39930:2;39934:12;39948:5;39895:22;:59::i;:::-;39894:60;39886:68;39882:164;;;39986:40;;-1:-1:-1;;;39986:40:0;;;;;;;;;;;39882:164;40064:14;;;;;39796:3;39766:328;;;-1:-1:-1;40110:13:0;:28;40160:60;37178:342;52095:108;52155:13;52188:7;52181:14;;;;;:::i;1044:723::-;1100:13;1321:10;1317:53;;-1:-1:-1;;1348:10:0;;;;;;;;;;;;-1:-1:-1;;;1348:10:0;;;;;1044:723::o;1317:53::-;1395:5;1380:12;1436:78;1443:9;;1436:78;;1469:8;;;;:::i;:::-;;-1:-1:-1;1492:10:0;;-1:-1:-1;1500:2:0;1492:10;;:::i;:::-;;;1436:78;;;1524:19;1556:6;1546:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1546:17:0;;1524:39;;1574:154;1581:10;;1574:154;;1608:11;1618:1;1608:11;;:::i;:::-;;-1:-1:-1;1677:10:0;1685:2;1677:5;:10;:::i;:::-;1664:24;;:2;:24;:::i;:::-;1651:39;;1634:6;1641;1634:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1634:56:0;;;;;;;;-1:-1:-1;1705:11:0;1714:2;1705:11;;:::i;:::-;;;1574:154;;22422:190;22547:4;22600;22571:25;22584:5;22591:4;22571:12;:25::i;:::-;:33;;22422:190;-1:-1:-1;;;;22422:190:0:o;22973:675::-;23056:7;23099:4;23056:7;23114:497;23138:5;:12;23134:1;:16;23114:497;;;23172:20;23195:5;23201:1;23195:8;;;;;;;;:::i;:::-;;;;;;;23172:31;;23238:12;23222;:28;23218:382;;23724:13;23774:15;;;23810:4;23803:15;;;23857:4;23841:21;;23350:57;;23218:382;;;23724:13;23774:15;;;23810:4;23803:15;;;23857:4;23841:21;;23527:57;;23218:382;-1:-1:-1;23152:3:0;;;;:::i;:::-;;;;23114:497;;;-1:-1:-1;23628:12:0;22973:675;-1:-1:-1;;;22973:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;-1:-1:-1;3307:23:1;;3156:180;-1:-1:-1;3156:180:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:450::-;3914:6;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4023:9;4010:23;4056:18;4048:6;4045:30;4042:50;;;4088:1;4085;4078:12;4042:50;4111:22;;4164:4;4156:13;;4152:27;-1:-1:-1;4142:55:1;;4193:1;4190;4183:12;4142:55;4216:73;4281:7;4276:2;4263:16;4258:2;4254;4250:11;4216:73;:::i;4485:254::-;4553:6;4561;4614:2;4602:9;4593:7;4589:23;4585:32;4582:52;;;4630:1;4627;4620:12;4582:52;4666:9;4653:23;4643:33;;4695:38;4729:2;4718:9;4714:18;4695:38;:::i;4744:683::-;4839:6;4847;4855;4908:2;4896:9;4887:7;4883:23;4879:32;4876:52;;;4924:1;4921;4914:12;4876:52;4960:9;4947:23;4937:33;;5021:2;5010:9;5006:18;4993:32;5044:18;5085:2;5077:6;5074:14;5071:34;;;5101:1;5098;5091:12;5071:34;5139:6;5128:9;5124:22;5114:32;;5184:7;5177:4;5173:2;5169:13;5165:27;5155:55;;5206:1;5203;5196:12;5155:55;5246:2;5233:16;5272:2;5264:6;5261:14;5258:34;;;5288:1;5285;5278:12;5258:34;5341:7;5336:2;5326:6;5323:1;5319:14;5315:2;5311:23;5307:32;5304:45;5301:65;;;5362:1;5359;5352:12;5301:65;5393:2;5389;5385:11;5375:21;;5415:6;5405:16;;;;;4744:683;;;;;:::o;5432:257::-;5473:3;5511:5;5505:12;5538:6;5533:3;5526:19;5554:63;5610:6;5603:4;5598:3;5594:14;5587:4;5580:5;5576:16;5554:63;:::i;:::-;5671:2;5650:15;-1:-1:-1;;5646:29:1;5637:39;;;;5678:4;5633:50;;5432:257;-1:-1:-1;;5432:257:1:o;5928:637::-;6208:3;6246:6;6240:13;6262:53;6308:6;6303:3;6296:4;6288:6;6284:17;6262:53;:::i;:::-;6378:13;;6337:16;;;;6400:57;6378:13;6337:16;6434:4;6422:17;;6400:57;:::i;:::-;-1:-1:-1;;;6479:20:1;;6508:22;;;6557:1;6546:13;;5928:637;-1:-1:-1;;;;5928:637:1:o;6988:488::-;-1:-1:-1;;;;;7257:15:1;;;7239:34;;7309:15;;7304:2;7289:18;;7282:43;7356:2;7341:18;;7334:34;;;7404:3;7399:2;7384:18;;7377:31;;;7182:4;;7425:45;;7450:19;;7442:6;7425:45;:::i;:::-;7417:53;6988:488;-1:-1:-1;;;;;;6988:488:1:o;7855:219::-;8004:2;7993:9;7986:21;7967:4;8024:44;8064:2;8053:9;8049:18;8041:6;8024:44;:::i;10232:356::-;10434:2;10416:21;;;10453:18;;;10446:30;10512:34;10507:2;10492:18;;10485:62;10579:2;10564:18;;10232:356::o;12248:128::-;12288:3;12319:1;12315:6;12312:1;12309:13;12306:39;;;12325:18;;:::i;:::-;-1:-1:-1;12361:9:1;;12248:128::o;12381:120::-;12421:1;12447;12437:35;;12452:18;;:::i;:::-;-1:-1:-1;12486:9:1;;12381:120::o;12506:168::-;12546:7;12612:1;12608;12604:6;12600:14;12597:1;12594:21;12589:1;12582:9;12575:17;12571:45;12568:71;;;12619:18;;:::i;:::-;-1:-1:-1;12659:9:1;;12506:168::o;12679:125::-;12719:4;12747:1;12744;12741:8;12738:34;;;12752:18;;:::i;:::-;-1:-1:-1;12789:9:1;;12679:125::o;12809:258::-;12881:1;12891:113;12905:6;12902:1;12899:13;12891:113;;;12981:11;;;12975:18;12962:11;;;12955:39;12927:2;12920:10;12891:113;;;13022:6;13019:1;13016:13;13013:48;;;-1:-1:-1;;13057:1:1;13039:16;;13032:27;12809:258::o;13072:380::-;13151:1;13147:12;;;;13194;;;13215:61;;13269:4;13261:6;13257:17;13247:27;;13215:61;13322:2;13314:6;13311:14;13291:18;13288:38;13285:161;;;13368:10;13363:3;13359:20;13356:1;13349:31;13403:4;13400:1;13393:15;13431:4;13428:1;13421:15;13285:161;;13072:380;;;:::o;13457:135::-;13496:3;-1:-1:-1;;13517:17:1;;13514:43;;;13537:18;;:::i;:::-;-1:-1:-1;13584:1:1;13573:13;;13457:135::o;13597:112::-;13629:1;13655;13645:35;;13660:18;;:::i;:::-;-1:-1:-1;13694:9:1;;13597:112::o;13714:127::-;13775:10;13770:3;13766:20;13763:1;13756:31;13806:4;13803:1;13796:15;13830:4;13827:1;13820:15;13846:127;13907:10;13902:3;13898:20;13895:1;13888:31;13938:4;13935:1;13928:15;13962:4;13959:1;13952:15;13978:127;14039:10;14034:3;14030:20;14027:1;14020:31;14070:4;14067:1;14060:15;14094:4;14091:1;14084:15;14110:127;14171:10;14166:3;14162:20;14159:1;14152:31;14202:4;14199:1;14192:15;14226:4;14223:1;14216:15;14242:131;-1:-1:-1;;;;;;14316:32:1;;14306:43;;14296:71;;14363:1;14360;14353:12

Swarm Source

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