ETH Price: $2,286.22 (-2.46%)

Token

Super Women (Super Women)
 

Overview

Max Total Supply

12 Super Women

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Super Women
0xE14B40c23F0974550E810841ab9cf5B1b378748D
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:
SuperWomen

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-06-28
*/

// SPDX-License-Identifier: MIT

/**
   _____                        __          __                        
  / ____|                       \ \        / /                        
 | (___  _   _ _ __   ___ _ __   \ \  /\  / /__  _ __ ___   ___ _ __  
  \___ \| | | | '_ \ / _ \ '__|   \ \/  \/ / _ \| '_ ` _ \ / _ \ '_ \ 
  ____) | |_| | |_) |  __/ |       \  /\  / (_) | | | | | |  __/ | | |
 |_____/ \__,_| .__/ \___|_|        \/  \/ \___/|_| |_| |_|\___|_| |_|
              | |                                                     
              |_|                                                    
*/

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/erc721a.sol



// Creator: Chiru Labs



pragma solidity ^0.8.4;










error ApprovalCallerNotOwnerNorApproved();

error ApprovalQueryForNonexistentToken();

error ApproveToCaller();

error ApprovalToCurrentOwner();

error BalanceQueryForZeroAddress();

error MintToZeroAddress();

error MintZeroQuantity();

error OwnerQueryForNonexistentToken();

error TransferCallerNotOwnerNorApproved();

error TransferFromIncorrectOwner();

error TransferToNonERC721ReceiverImplementer();

error TransferToZeroAddress();

error URIQueryForNonexistentToken();



/**

 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including

 * the Metadata extension. Built to optimize for lower gas during batch mints.

 *

 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).

 *

 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.

 *

 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).

 */

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {

    using Address for address;

    using Strings for uint256;



    // Compiler will pack this into a single 256bit word.

    struct TokenOwnership {

        // The address of the owner.

        address addr;

        // Keeps track of the start time of ownership with minimal overhead for tokenomics.

        uint64 startTimestamp;

        // Whether the token has been burned.

        bool burned;

    }



    // Compiler will pack this into a single 256bit word.

    struct AddressData {

        // Realistically, 2**64-1 is more than enough.

        uint64 balance;

        // Keeps track of mint count with minimal overhead for tokenomics.

        uint64 numberMinted;

        // Keeps track of burn count with minimal overhead for tokenomics.

        uint64 numberBurned;

        // For miscellaneous variable(s) pertaining to the address

        // (e.g. number of whitelist mint slots used).

        // If there are multiple variables, please pack them into a uint64.

        uint64 aux;

    }



    // The tokenId of the next token to be minted.

    uint256 internal _currentIndex;



    // The number of tokens burned.

    uint256 internal _burnCounter;



    // Token name

    string private _name;



    // Token symbol

    string private _symbol;



    // Mapping from token ID to ownership details

    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.

    mapping(uint256 => TokenOwnership) internal _ownerships;



    // Mapping owner address to address data

    mapping(address => AddressData) private _addressData;



    // Mapping from token ID to approved address

    mapping(uint256 => address) private _tokenApprovals;



    // Mapping from owner to operator approvals

    mapping(address => mapping(address => bool)) private _operatorApprovals;



    constructor(string memory name_, string memory symbol_) {

        _name = name_;

        _symbol = symbol_;

        _currentIndex = _startTokenId();

    }



    /**

     * To change the starting tokenId, please override this function.

     */

    function _startTokenId() internal view virtual returns (uint256) {

        return 1;

    }



    /**

     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.

     */

    function totalSupply() public view returns (uint256) {

        // Counter underflow is impossible as _burnCounter cannot be incremented

        // more than _currentIndex - _startTokenId() times

        unchecked {

            return _currentIndex - _burnCounter - _startTokenId();

        }

    }



    /**

     * Returns the total amount of tokens minted in the contract.

     */

    function _totalMinted() internal view returns (uint256) {

        // Counter underflow is impossible as _currentIndex does not decrement,

        // and it is initialized to _startTokenId()

        unchecked {

            return _currentIndex - _startTokenId();

        }

    }



    /**

     * @dev See {IERC165-supportsInterface}.

     */

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {

        return

            interfaceId == type(IERC721).interfaceId ||

            interfaceId == type(IERC721Metadata).interfaceId ||

            super.supportsInterface(interfaceId);

    }



    /**

     * @dev See {IERC721-balanceOf}.

     */

    function balanceOf(address owner) public view override returns (uint256) {

        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        return uint256(_addressData[owner].balance);

    }



    /**

     * Returns the number of tokens minted by `owner`.

     */

    function _numberMinted(address owner) internal view returns (uint256) {

        return uint256(_addressData[owner].numberMinted);

    }



    /**

     * Returns the number of tokens burned by or on behalf of `owner`.

     */

    function _numberBurned(address owner) internal view returns (uint256) {

        return uint256(_addressData[owner].numberBurned);

    }



    /**

     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     */

    function _getAux(address owner) internal view returns (uint64) {

        return _addressData[owner].aux;

    }



    /**

     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     * If there are multiple variables, please pack them into a uint64.

     */

    function _setAux(address owner, uint64 aux) internal {

        _addressData[owner].aux = aux;

    }



    /**

     * Gas spent here starts off proportional to the maximum mint batch size.

     * It gradually moves to O(1) as tokens get transferred around in the collection over time.

     */

    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {

        uint256 curr = tokenId;



        unchecked {

            if (_startTokenId() <= curr && curr < _currentIndex) {

                TokenOwnership memory ownership = _ownerships[curr];

                if (!ownership.burned) {

                    if (ownership.addr != address(0)) {

                        return ownership;

                    }

                    // Invariant:

                    // There will always be an ownership that has an address and is not burned

                    // before an ownership that does not have an address and is not burned.

                    // Hence, curr will not underflow.

                    while (true) {

                        curr--;

                        ownership = _ownerships[curr];

                        if (ownership.addr != address(0)) {

                            return ownership;

                        }

                    }

                }

            }

        }

        revert OwnerQueryForNonexistentToken();

    }



    /**

     * @dev See {IERC721-ownerOf}.

     */

    function ownerOf(uint256 tokenId) public view override returns (address) {

        return _ownershipOf(tokenId).addr;

    }



    /**

     * @dev See {IERC721Metadata-name}.

     */

    function name() public view virtual override returns (string memory) {

        return _name;

    }



    /**

     * @dev See {IERC721Metadata-symbol}.

     */

    function symbol() public view virtual override returns (string memory) {

        return _symbol;

    }



    /**

     * @dev See {IERC721Metadata-tokenURI}.

     */

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {

        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();



        string memory baseURI = _baseURI();

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

    }



    /**

     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each

     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty

     * by default, can be overriden in child contracts.

     */

    function _baseURI() internal view virtual returns (string memory) {

        return '';

    }



    /**

     * @dev See {IERC721-approve}.

     */

    function approve(address to, uint256 tokenId) public override {

        address owner = ERC721A.ownerOf(tokenId);

        if (to == owner) revert ApprovalToCurrentOwner();



        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {

            revert ApprovalCallerNotOwnerNorApproved();

        }



        _approve(to, tokenId, owner);

    }



    /**

     * @dev See {IERC721-getApproved}.

     */

    function getApproved(uint256 tokenId) public view override returns (address) {

        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();



        return _tokenApprovals[tokenId];

    }



    /**

     * @dev See {IERC721-setApprovalForAll}.

     */

    function setApprovalForAll(address operator, bool approved) public virtual override {

        if (operator == _msgSender()) revert ApproveToCaller();



        _operatorApprovals[_msgSender()][operator] = approved;

        emit ApprovalForAll(_msgSender(), operator, approved);

    }



    /**

     * @dev See {IERC721-isApprovedForAll}.

     */

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {

        return _operatorApprovals[owner][operator];

    }



    /**

     * @dev See {IERC721-transferFrom}.

     */

    function transferFrom(

        address from,

        address to,

        uint256 tokenId

    ) public virtual override {

        _transfer(from, to, tokenId);

    }



    /**

     * @dev See {IERC721-safeTransferFrom}.

     */

    function safeTransferFrom(

        address from,

        address to,

        uint256 tokenId

    ) public virtual override {

        safeTransferFrom(from, to, tokenId, '');

    }



    /**

     * @dev See {IERC721-safeTransferFrom}.

     */

    function safeTransferFrom(

        address from,

        address to,

        uint256 tokenId,

        bytes memory _data

    ) public virtual override {

        _transfer(from, to, tokenId);

        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {

            revert TransferToNonERC721ReceiverImplementer();

        }

    }



    /**

     * @dev Returns whether `tokenId` exists.

     *

     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.

     *

     * Tokens start existing when they are minted (`_mint`),

     */

    function _exists(uint256 tokenId) internal view returns (bool) {

        return _startTokenId() <= tokenId && tokenId < _currentIndex &&

            !_ownerships[tokenId].burned;

    }



    function _safeMint(address to, uint256 quantity) internal {

        _safeMint(to, quantity, '');

    }



    /**

     * @dev Safely mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _safeMint(

        address to,

        uint256 quantity,

        bytes memory _data

    ) internal {

        _mint(to, quantity, _data, true);

    }



    /**

     * @dev Mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _mint(

        address to,

        uint256 quantity,

        bytes memory _data,

        bool safe

    ) internal {

        uint256 startTokenId = _currentIndex;

        if (to == address(0)) revert MintToZeroAddress();

        if (quantity == 0) revert MintZeroQuantity();



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



        // Overflows are incredibly unrealistic.

        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1

        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1

        unchecked {

            _addressData[to].balance += uint64(quantity);

            _addressData[to].numberMinted += uint64(quantity);



            _ownerships[startTokenId].addr = to;

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



            uint256 updatedIndex = startTokenId;

            uint256 end = updatedIndex + quantity;



            if (safe && to.isContract()) {

                do {

                    emit Transfer(address(0), to, updatedIndex);

                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {

                        revert TransferToNonERC721ReceiverImplementer();

                    }

                } while (updatedIndex != end);

                // Reentrancy protection

                if (_currentIndex != startTokenId) revert();

            } else {

                do {

                    emit Transfer(address(0), to, updatedIndex++);

                } while (updatedIndex != end);

            }

            _currentIndex = updatedIndex;

        }

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

    }



    /**

     * @dev Transfers `tokenId` from `from` to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `tokenId` token must be owned by `from`.

     *

     * Emits a {Transfer} event.

     */

    function _transfer(

        address from,

        address to,

        uint256 tokenId

    ) private {

        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);



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



        bool isApprovedOrOwner = (_msgSender() == from ||

            isApprovedForAll(from, _msgSender()) ||

            getApproved(tokenId) == _msgSender());



        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();



        _beforeTokenTransfers(from, to, tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, from);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {

            _addressData[from].balance -= 1;

            _addressData[to].balance += 1;



            TokenOwnership storage currSlot = _ownerships[tokenId];

            currSlot.addr = to;

            currSlot.startTimestamp = uint64(block.timestamp);



            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            TokenOwnership storage nextSlot = _ownerships[nextTokenId];

            if (nextSlot.addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId != _currentIndex) {

                    nextSlot.addr = from;

                    nextSlot.startTimestamp = prevOwnership.startTimestamp;

                }

            }

        }



        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);

    }



    /**

     * @dev This is equivalent to _burn(tokenId, false)

     */

    function _burn(uint256 tokenId) internal virtual {

        _burn(tokenId, false);

    }



    /**

     * @dev Destroys `tokenId`.

     * The approval is cleared when the token is burned.

     *

     * Requirements:

     *

     * - `tokenId` must exist.

     *

     * Emits a {Transfer} event.

     */

    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {

        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);



        address from = prevOwnership.addr;



        if (approvalCheck) {

            bool isApprovedOrOwner = (_msgSender() == from ||

                isApprovedForAll(from, _msgSender()) ||

                getApproved(tokenId) == _msgSender());



            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        }



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



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, from);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {

            AddressData storage addressData = _addressData[from];

            addressData.balance -= 1;

            addressData.numberBurned += 1;



            // Keep track of who burned the token, and the timestamp of burning.

            TokenOwnership storage currSlot = _ownerships[tokenId];

            currSlot.addr = from;

            currSlot.startTimestamp = uint64(block.timestamp);

            currSlot.burned = true;



            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            TokenOwnership storage nextSlot = _ownerships[nextTokenId];

            if (nextSlot.addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId != _currentIndex) {

                    nextSlot.addr = from;

                    nextSlot.startTimestamp = prevOwnership.startTimestamp;

                }

            }

        }



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

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



        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.

        unchecked {

            _burnCounter++;

        }

    }



    /**

     * @dev Approve `to` to operate on `tokenId`

     *

     * Emits a {Approval} event.

     */

    function _approve(

        address to,

        uint256 tokenId,

        address owner

    ) private {

        _tokenApprovals[tokenId] = to;

        emit Approval(owner, to, tokenId);

    }



    /**

     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.

     *

     * @param from address representing the previous owner of the given token ID

     * @param to target address that will receive the tokens

     * @param tokenId uint256 ID of the token to be transferred

     * @param _data bytes optional data to send along with the call

     * @return bool whether the call correctly returned the expected magic value

     */

    function _checkContractOnERC721Received(

        address from,

        address to,

        uint256 tokenId,

        bytes memory _data

    ) private returns (bool) {

        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {

            return retval == IERC721Receiver(to).onERC721Received.selector;

        } catch (bytes memory reason) {

            if (reason.length == 0) {

                revert TransferToNonERC721ReceiverImplementer();

            } else {

                assembly {

                    revert(add(32, reason), mload(reason))

                }

            }

        }

    }



    /**

     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.

     * And also called before burning one token.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be

     * transferred to `to`.

     * - When `from` is zero, `tokenId` will be minted for `to`.

     * - When `to` is zero, `tokenId` will be burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _beforeTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}



    /**

     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes

     * minting.

     * And also called after one token has been burned.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been

     * transferred to `to`.

     * - When `from` is zero, `tokenId` has been minted for `to`.

     * - When `to` is zero, `tokenId` has been burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _afterTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/contract.sol


pragma solidity ^0.8.4;


contract SuperWomen is Ownable, ERC721A  {

    using Strings for uint256;

    string private _baseTokenURI;

    uint256 public presaleCost = 0.08 ether;
    uint256 public publicSaleCost = 0.1 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmountPerPublicAccount = 10;
    uint256 public maxMintAmountPerPresaleAccount = 10;

    bool public paused = true;
    bool public presaleActive = true;

    bytes32 public merkleRoot = 0x0de6c9f4b501d88b442db96c4f3653e394ef2ce0c67fc9d33527d625663f633c;

    constructor() ERC721A("Super Women", "Super Women") {}

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 , "Invalid mint amount!");
        require(totalMinted() + _mintAmount <= maxSupply, "Max supply exceeded!");
        _;
    }

    function mint(bytes32[] calldata _merkleProof, uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(!paused, "The contract is paused!");
        if(presaleActive==true){
            require(msg.value >= presaleCost * _mintAmount, "Insufficient funds!");
            require(balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerPresaleAccount, "Mint limit exceeded." );
            //verify the provided _merkleProof
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Not part of the Presale whitelist.");
        }
        else{
            require(msg.value >= publicSaleCost * _mintAmount, "Insufficient funds!");
            require(balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerPublicAccount, "Mint limit exceeded." );
        }
        _safeMint(msg.sender, _mintAmount);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
        _safeMint(_receiver, _mintAmount);
    }

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

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

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

        currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)

        public
        view
        virtual
        override
        returns (string memory)

    {

        require(
        _exists(_tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();

        return bytes(currentBaseURI).length > 0

            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json"))

            : "";
    }

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

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

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

    function burn(uint256 tokenId, bool approvalCheck) public {
        _burn(tokenId, approvalCheck);
    }

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

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

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

    function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner {
        publicSaleCost = _publicSaleCost;
    }

    function setPresaleCost(uint256 _presaleCost) public onlyOwner {
        presaleCost = _presaleCost;
    }

    function setMaxMintPerPresaleAccount(uint256 _maxMintPerPresaleAccount) public onlyOwner {
        maxMintAmountPerPresaleAccount = _maxMintPerPresaleAccount;
    }
   
    function setMaxMintPerPublicAccount(uint256 _maxMintAmountPerPublicAccount) public onlyOwner {
        maxMintAmountPerPublicAccount = _maxMintAmountPerPublicAccount;
    }
    
    function endPresale() public onlyOwner {
        presaleActive=false;
    }


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

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

}

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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"approvalCheck","type":"bool"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerPresaleAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerPublicAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerPresaleAccount","type":"uint256"}],"name":"setMaxMintPerPresaleAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerPublicAccount","type":"uint256"}],"name":"setMaxMintPerPublicAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267011c37937e080000600a90815567016345785d8a0000600b55612710600c55600d819055600e55600f805461ffff19166101011790557f0de6c9f4b501d88b442db96c4f3653e394ef2ce0c67fc9d33527d625663f633c6010553480156200006c57600080fd5b506040518060400160405280600b81526020016a29bab832b9102bb7b6b2b760a91b8152506040518060400160405280600b81526020016a29bab832b9102bb7b6b2b760a91b815250620000cf620000c96200010760201b60201c565b6200010b565b8151620000e49060039060208501906200015b565b508051620000fa9060049060208401906200015b565b505060018055506200023e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001699062000201565b90600052602060002090601f0160209004810192826200018d5760008555620001d8565b82601f10620001a857805160ff1916838001178555620001d8565b82800160010185558215620001d8579182015b82811115620001d8578251825591602001919060010190620001bb565b50620001e6929150620001ea565b5090565b5b80821115620001e65760008155600101620001eb565b600181811c908216806200021657607f821691505b602082108114156200023857634e487b7160e01b600052602260045260246000fd5b50919050565b6124a6806200024e6000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb011461067f578063dc33e68114610695578063e985e9c5146106b5578063efbd73f4146106fe578063f2f4e8241461071e578063f2fde38b1461073457600080fd5b8063a22cb465146105f5578063a2309ff814610615578063a43be57b1461062a578063b88d4fde1461063f578063c87b56dd1461065f57600080fd5b80638da5cb5b116100fd5780638da5cb5b146105625780638dbb7c06146105805780638fdcf942146105a057806395d89b41146105c05780639fac68cb146105d557600080fd5b806370a08231146104cd578063715018a6146104ed578063718cd674146105025780637cb64759146105225780637d0a75291461054257600080fd5b80633ccfd60b116101c75780634f558e791161018b5780634f558e791461043457806353135ca01461045457806355f804b3146104735780635c975abb146104935780636352211e146104ad57600080fd5b80633ccfd60b146103a957806342842e0e146103be578063438b6300146103de578063453afb0f1461040b57806345de0d9b1461042157600080fd5b806316c38b3c1161020e57806316c38b3c1461032057806318160ddd1461034057806323b872dd1461035d5780632a23d07d1461037d5780632eb4a7ab1461039357600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630b85d4ef146102fc575b600080fd5b34801561025757600080fd5b5061026b6102663660046120c5565b610754565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107a6565b60405161027791906122a2565b3480156102ae57600080fd5b506102c26102bd3660046120ac565b610838565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611fed565b61087c565b005b34801561030857600080fd5b50610312600d5481565b604051908152602001610277565b34801561032c57600080fd5b506102fa61033b366004612091565b61090a565b34801561034c57600080fd5b506002546001540360001901610312565b34801561036957600080fd5b506102fa610378366004611eac565b610950565b34801561038957600080fd5b50610312600a5481565b34801561039f57600080fd5b5061031260105481565b3480156103b557600080fd5b506102fa61095b565b3480156103ca57600080fd5b506102fa6103d9366004611eac565b6109e8565b3480156103ea57600080fd5b506103fe6103f9366004611e5e565b610a03565b604051610277919061225e565b34801561041757600080fd5b50610312600b5481565b6102fa61042f366004612017565b610ae3565b34801561044057600080fd5b5061026b61044f3660046120ac565b610e34565b34801561046057600080fd5b50600f5461026b90610100900460ff1681565b34801561047f57600080fd5b506102fa61048e3660046120ff565b610e3f565b34801561049f57600080fd5b50600f5461026b9060ff1681565b3480156104b957600080fd5b506102c26104c83660046120ac565b610e75565b3480156104d957600080fd5b506103126104e8366004611e5e565b610e87565b3480156104f957600080fd5b506102fa610ed5565b34801561050e57600080fd5b506102fa61051d3660046120ac565b610f0b565b34801561052e57600080fd5b506102fa61053d3660046120ac565b610f3a565b34801561054e57600080fd5b506102fa61055d3660046120ac565b610f69565b34801561056e57600080fd5b506000546001600160a01b03166102c2565b34801561058c57600080fd5b506102fa61059b3660046120ac565b610f98565b3480156105ac57600080fd5b506102fa6105bb3660046120ac565b610fc7565b3480156105cc57600080fd5b50610295610ff6565b3480156105e157600080fd5b506102fa6105f0366004612193565b611005565b34801561060157600080fd5b506102fa610610366004611fc3565b611013565b34801561062157600080fd5b506103126110a9565b34801561063657600080fd5b506102fa6110bd565b34801561064b57600080fd5b506102fa61065a366004611ee8565b6110f4565b34801561066b57600080fd5b5061029561067a3660046120ac565b61113f565b34801561068b57600080fd5b50610312600c5481565b3480156106a157600080fd5b506103126106b0366004611e5e565b61120a565b3480156106c157600080fd5b5061026b6106d0366004611e79565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561070a57600080fd5b506102fa610719366004612170565b611238565b34801561072a57600080fd5b50610312600e5481565b34801561074057600080fd5b506102fa61074f366004611e5e565b61130f565b60006001600160e01b031982166380ac58cd60e01b148061078557506001600160e01b03198216635b5e139f60e01b145b806107a057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107b590612378565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190612378565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b6000610843826113a7565b610860576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061088782610e75565b9050806001600160a01b0316836001600160a01b031614156108bc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108dc57506108da81336106d0565b155b156108fa576040516367d9dca160e11b815260040160405180910390fd5b6109058383836113e0565b505050565b6000546001600160a01b0316331461093d5760405162461bcd60e51b8152600401610934906122b5565b60405180910390fd5b600f805460ff1916911515919091179055565b61090583838361143c565b6000546001600160a01b031633146109855760405162461bcd60e51b8152600401610934906122b5565b600080546040516001600160a01b039091169047908381818185875af1925050503d80600081146109d2576040519150601f19603f3d011682016040523d82523d6000602084013e6109d7565b606091505b50509050806109e557600080fd5b50565b610905838383604051806020016040528060008152506110f4565b60606000610a1083610e87565b90506000816001600160401b03811115610a2c57610a2c612424565b604051908082528060200260200182016040528015610a55578160200160208202803683370190505b509050600160005b8381108015610a6e5750600c548211155b15610ad9576000610a7e83610e75565b9050866001600160a01b0316816001600160a01b03161415610ac65782848381518110610aad57610aad61240e565b602090810291909101015281610ac2816123b3565b9250505b82610ad0816123b3565b93505050610a5d565b5090949350505050565b8060008111610b2b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610934565b600c5481610b376110a9565b610b4191906122ea565b1115610b865760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610934565b600f5460ff1615610bd95760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610934565b600f5460ff61010090910416151560011415610d755781600a54610bfd9190612316565b341015610c425760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610934565b600e5482610c4f33610e87565b610c5991906122ea565b1115610c9e5760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b6044820152606401610934565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d18858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150849050611618565b610d6f5760405162461bcd60e51b815260206004820152602260248201527f4e6f742070617274206f66207468652050726573616c652077686974656c69736044820152613a1760f11b6064820152608401610934565b50610e24565b81600b54610d839190612316565b341015610dc85760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610934565b600d5482610dd533610e87565b610ddf91906122ea565b1115610e245760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b6044820152606401610934565b610e2e338361162e565b50505050565b60006107a0826113a7565b6000546001600160a01b03163314610e695760405162461bcd60e51b8152600401610934906122b5565b61090560098383611d99565b6000610e8082611648565b5192915050565b60006001600160a01b038216610eb0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610eff5760405162461bcd60e51b8152600401610934906122b5565b610f09600061176f565b565b6000546001600160a01b03163314610f355760405162461bcd60e51b8152600401610934906122b5565b600d55565b6000546001600160a01b03163314610f645760405162461bcd60e51b8152600401610934906122b5565b601055565b6000546001600160a01b03163314610f935760405162461bcd60e51b8152600401610934906122b5565b600e55565b6000546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610934906122b5565b600b55565b6000546001600160a01b03163314610ff15760405162461bcd60e51b8152600401610934906122b5565b600a55565b6060600480546107b590612378565b61100f82826117bf565b5050565b6001600160a01b03821633141561103d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006110b86001546000190190565b905090565b6000546001600160a01b031633146110e75760405162461bcd60e51b8152600401610934906122b5565b600f805461ff0019169055565b6110ff84848461143c565b6001600160a01b0383163b15158015611121575061111f84848484611973565b155b15610e2e576040516368d2bf6b60e11b815260040160405180910390fd5b606061114a826113a7565b6111ae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610934565b60006111b8611a6b565b905060008151116111d85760405180602001604052806000815250611203565b806111e284611a7a565b6040516020016111f39291906121e2565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b03166107a0565b81600081116112805760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610934565b600c548161128c6110a9565b61129691906122ea565b11156112db5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610934565b6000546001600160a01b031633146113055760405162461bcd60e51b8152600401610934906122b5565b610905828461162e565b6000546001600160a01b031633146113395760405162461bcd60e51b8152600401610934906122b5565b6001600160a01b03811661139e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610934565b6109e58161176f565b6000816001111580156113bb575060015482105b80156107a0575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061144782611648565b9050836001600160a01b031681600001516001600160a01b03161461147e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061149c575061149c85336106d0565b806114b75750336114ac84610838565b6001600160a01b0316145b9050806114d757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114fe57604051633a954ecd60e21b815260040160405180910390fd5b61150a600084876113e0565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115de5760015482146115de57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061245183398151915260405160405180910390a45b5050505050565b6000826116258584611b77565b14949350505050565b61100f828260405180602001604052806000815250611beb565b60408051606081018252600080825260208201819052918101919091528180600111158015611678575060015481105b1561175657600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117545780516001600160a01b0316156116eb579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561174f579392505050565b6116eb565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006117ca83611648565b80519091508215611830576000336001600160a01b03831614806117f357506117f382336106d0565b8061180e57503361180386610838565b6001600160a01b0316145b90508061182e57604051632ce44b5f60e11b815260040160405180910390fd5b505b61183c600085836113e0565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661193a57600154821461193a57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612451833981519152908390a450506002805460010190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119a8903390899088908890600401612221565b602060405180830381600087803b1580156119c257600080fd5b505af19250505080156119f2575060408051601f3d908101601f191682019092526119ef918101906120e2565b60015b611a4d573d808015611a20576040519150601f19603f3d011682016040523d82523d6000602084013e611a25565b606091505b508051611a45576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107b590612378565b606081611a9e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ac85780611ab2816123b3565b9150611ac19050600a83612302565b9150611aa2565b6000816001600160401b03811115611ae257611ae2612424565b6040519080825280601f01601f191660200182016040528015611b0c576020820181803683370190505b5090505b8415611a6357611b21600183612335565b9150611b2e600a866123ce565b611b399060306122ea565b60f81b818381518110611b4e57611b4e61240e565b60200101906001600160f81b031916908160001a905350611b70600a86612302565b9450611b10565b600081815b8451811015611be3576000858281518110611b9957611b9961240e565b60200260200101519050808311611bbf5760008381526020829052604090209250611bd0565b600081815260208490526040902092505b5080611bdb816123b3565b915050611b7c565b509392505050565b610905838383600180546001600160a01b038516611c1b57604051622e076360e81b815260040160405180910390fd5b83611c395760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ce557506001600160a01b0387163b15155b15611d5c575b60405182906001600160a01b03891690600090600080516020612451833981519152908290a4611d246000888480600101955088611973565b611d41576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ceb578260015414611d5757600080fd5b611d90565b5b6040516001830192906001600160a01b03891690600090600080516020612451833981519152908290a480821415611d5d575b50600155611611565b828054611da590612378565b90600052602060002090601f016020900481019282611dc75760008555611e0d565b82601f10611de05782800160ff19823516178555611e0d565b82800160010185558215611e0d579182015b82811115611e0d578235825591602001919060010190611df2565b50611e19929150611e1d565b5090565b5b80821115611e195760008155600101611e1e565b80356001600160a01b0381168114611e4957600080fd5b919050565b80358015158114611e4957600080fd5b600060208284031215611e7057600080fd5b61120382611e32565b60008060408385031215611e8c57600080fd5b611e9583611e32565b9150611ea360208401611e32565b90509250929050565b600080600060608486031215611ec157600080fd5b611eca84611e32565b9250611ed860208501611e32565b9150604084013590509250925092565b60008060008060808587031215611efe57600080fd5b611f0785611e32565b9350611f1560208601611e32565b92506040850135915060608501356001600160401b0380821115611f3857600080fd5b818701915087601f830112611f4c57600080fd5b813581811115611f5e57611f5e612424565b604051601f8201601f19908116603f01168101908382118183101715611f8657611f86612424565b816040528281528a6020848701011115611f9f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fd657600080fd5b611fdf83611e32565b9150611ea360208401611e4e565b6000806040838503121561200057600080fd5b61200983611e32565b946020939093013593505050565b60008060006040848603121561202c57600080fd5b83356001600160401b038082111561204357600080fd5b818601915086601f83011261205757600080fd5b81358181111561206657600080fd5b8760208260051b850101111561207b57600080fd5b6020928301989097509590910135949350505050565b6000602082840312156120a357600080fd5b61120382611e4e565b6000602082840312156120be57600080fd5b5035919050565b6000602082840312156120d757600080fd5b81356112038161243a565b6000602082840312156120f457600080fd5b81516112038161243a565b6000806020838503121561211257600080fd5b82356001600160401b038082111561212957600080fd5b818501915085601f83011261213d57600080fd5b81358181111561214c57600080fd5b86602082850101111561215e57600080fd5b60209290920196919550909350505050565b6000806040838503121561218357600080fd5b82359150611ea360208401611e32565b600080604083850312156121a657600080fd5b82359150611ea360208401611e4e565b600081518084526121ce81602086016020860161234c565b601f01601f19169290920160200192915050565b600083516121f481846020880161234c565b83519083019061220881836020880161234c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612254908301846121b6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122965783518352928401929184019160010161227a565b50909695505050505050565b60208152600061120360208301846121b6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156122fd576122fd6123e2565b500190565b600082612311576123116123f8565b500490565b6000816000190483118215151615612330576123306123e2565b500290565b600082821015612347576123476123e2565b500390565b60005b8381101561236757818101518382015260200161234f565b83811115610e2e5750506000910152565b600181811c9082168061238c57607f821691505b602082108114156123ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123c7576123c76123e2565b5060010190565b6000826123dd576123dd6123f8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109e557600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220da3fc5e941f64c04e878a17dfd2300e49d2f9e6f8b67ed7f354352f5bea6b3dc64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb011461067f578063dc33e68114610695578063e985e9c5146106b5578063efbd73f4146106fe578063f2f4e8241461071e578063f2fde38b1461073457600080fd5b8063a22cb465146105f5578063a2309ff814610615578063a43be57b1461062a578063b88d4fde1461063f578063c87b56dd1461065f57600080fd5b80638da5cb5b116100fd5780638da5cb5b146105625780638dbb7c06146105805780638fdcf942146105a057806395d89b41146105c05780639fac68cb146105d557600080fd5b806370a08231146104cd578063715018a6146104ed578063718cd674146105025780637cb64759146105225780637d0a75291461054257600080fd5b80633ccfd60b116101c75780634f558e791161018b5780634f558e791461043457806353135ca01461045457806355f804b3146104735780635c975abb146104935780636352211e146104ad57600080fd5b80633ccfd60b146103a957806342842e0e146103be578063438b6300146103de578063453afb0f1461040b57806345de0d9b1461042157600080fd5b806316c38b3c1161020e57806316c38b3c1461032057806318160ddd1461034057806323b872dd1461035d5780632a23d07d1461037d5780632eb4a7ab1461039357600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630b85d4ef146102fc575b600080fd5b34801561025757600080fd5b5061026b6102663660046120c5565b610754565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107a6565b60405161027791906122a2565b3480156102ae57600080fd5b506102c26102bd3660046120ac565b610838565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611fed565b61087c565b005b34801561030857600080fd5b50610312600d5481565b604051908152602001610277565b34801561032c57600080fd5b506102fa61033b366004612091565b61090a565b34801561034c57600080fd5b506002546001540360001901610312565b34801561036957600080fd5b506102fa610378366004611eac565b610950565b34801561038957600080fd5b50610312600a5481565b34801561039f57600080fd5b5061031260105481565b3480156103b557600080fd5b506102fa61095b565b3480156103ca57600080fd5b506102fa6103d9366004611eac565b6109e8565b3480156103ea57600080fd5b506103fe6103f9366004611e5e565b610a03565b604051610277919061225e565b34801561041757600080fd5b50610312600b5481565b6102fa61042f366004612017565b610ae3565b34801561044057600080fd5b5061026b61044f3660046120ac565b610e34565b34801561046057600080fd5b50600f5461026b90610100900460ff1681565b34801561047f57600080fd5b506102fa61048e3660046120ff565b610e3f565b34801561049f57600080fd5b50600f5461026b9060ff1681565b3480156104b957600080fd5b506102c26104c83660046120ac565b610e75565b3480156104d957600080fd5b506103126104e8366004611e5e565b610e87565b3480156104f957600080fd5b506102fa610ed5565b34801561050e57600080fd5b506102fa61051d3660046120ac565b610f0b565b34801561052e57600080fd5b506102fa61053d3660046120ac565b610f3a565b34801561054e57600080fd5b506102fa61055d3660046120ac565b610f69565b34801561056e57600080fd5b506000546001600160a01b03166102c2565b34801561058c57600080fd5b506102fa61059b3660046120ac565b610f98565b3480156105ac57600080fd5b506102fa6105bb3660046120ac565b610fc7565b3480156105cc57600080fd5b50610295610ff6565b3480156105e157600080fd5b506102fa6105f0366004612193565b611005565b34801561060157600080fd5b506102fa610610366004611fc3565b611013565b34801561062157600080fd5b506103126110a9565b34801561063657600080fd5b506102fa6110bd565b34801561064b57600080fd5b506102fa61065a366004611ee8565b6110f4565b34801561066b57600080fd5b5061029561067a3660046120ac565b61113f565b34801561068b57600080fd5b50610312600c5481565b3480156106a157600080fd5b506103126106b0366004611e5e565b61120a565b3480156106c157600080fd5b5061026b6106d0366004611e79565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561070a57600080fd5b506102fa610719366004612170565b611238565b34801561072a57600080fd5b50610312600e5481565b34801561074057600080fd5b506102fa61074f366004611e5e565b61130f565b60006001600160e01b031982166380ac58cd60e01b148061078557506001600160e01b03198216635b5e139f60e01b145b806107a057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107b590612378565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190612378565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b6000610843826113a7565b610860576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061088782610e75565b9050806001600160a01b0316836001600160a01b031614156108bc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108dc57506108da81336106d0565b155b156108fa576040516367d9dca160e11b815260040160405180910390fd5b6109058383836113e0565b505050565b6000546001600160a01b0316331461093d5760405162461bcd60e51b8152600401610934906122b5565b60405180910390fd5b600f805460ff1916911515919091179055565b61090583838361143c565b6000546001600160a01b031633146109855760405162461bcd60e51b8152600401610934906122b5565b600080546040516001600160a01b039091169047908381818185875af1925050503d80600081146109d2576040519150601f19603f3d011682016040523d82523d6000602084013e6109d7565b606091505b50509050806109e557600080fd5b50565b610905838383604051806020016040528060008152506110f4565b60606000610a1083610e87565b90506000816001600160401b03811115610a2c57610a2c612424565b604051908082528060200260200182016040528015610a55578160200160208202803683370190505b509050600160005b8381108015610a6e5750600c548211155b15610ad9576000610a7e83610e75565b9050866001600160a01b0316816001600160a01b03161415610ac65782848381518110610aad57610aad61240e565b602090810291909101015281610ac2816123b3565b9250505b82610ad0816123b3565b93505050610a5d565b5090949350505050565b8060008111610b2b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610934565b600c5481610b376110a9565b610b4191906122ea565b1115610b865760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610934565b600f5460ff1615610bd95760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610934565b600f5460ff61010090910416151560011415610d755781600a54610bfd9190612316565b341015610c425760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610934565b600e5482610c4f33610e87565b610c5991906122ea565b1115610c9e5760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b6044820152606401610934565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d18858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150849050611618565b610d6f5760405162461bcd60e51b815260206004820152602260248201527f4e6f742070617274206f66207468652050726573616c652077686974656c69736044820152613a1760f11b6064820152608401610934565b50610e24565b81600b54610d839190612316565b341015610dc85760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610934565b600d5482610dd533610e87565b610ddf91906122ea565b1115610e245760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b6044820152606401610934565b610e2e338361162e565b50505050565b60006107a0826113a7565b6000546001600160a01b03163314610e695760405162461bcd60e51b8152600401610934906122b5565b61090560098383611d99565b6000610e8082611648565b5192915050565b60006001600160a01b038216610eb0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610eff5760405162461bcd60e51b8152600401610934906122b5565b610f09600061176f565b565b6000546001600160a01b03163314610f355760405162461bcd60e51b8152600401610934906122b5565b600d55565b6000546001600160a01b03163314610f645760405162461bcd60e51b8152600401610934906122b5565b601055565b6000546001600160a01b03163314610f935760405162461bcd60e51b8152600401610934906122b5565b600e55565b6000546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610934906122b5565b600b55565b6000546001600160a01b03163314610ff15760405162461bcd60e51b8152600401610934906122b5565b600a55565b6060600480546107b590612378565b61100f82826117bf565b5050565b6001600160a01b03821633141561103d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006110b86001546000190190565b905090565b6000546001600160a01b031633146110e75760405162461bcd60e51b8152600401610934906122b5565b600f805461ff0019169055565b6110ff84848461143c565b6001600160a01b0383163b15158015611121575061111f84848484611973565b155b15610e2e576040516368d2bf6b60e11b815260040160405180910390fd5b606061114a826113a7565b6111ae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610934565b60006111b8611a6b565b905060008151116111d85760405180602001604052806000815250611203565b806111e284611a7a565b6040516020016111f39291906121e2565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b03166107a0565b81600081116112805760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610934565b600c548161128c6110a9565b61129691906122ea565b11156112db5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610934565b6000546001600160a01b031633146113055760405162461bcd60e51b8152600401610934906122b5565b610905828461162e565b6000546001600160a01b031633146113395760405162461bcd60e51b8152600401610934906122b5565b6001600160a01b03811661139e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610934565b6109e58161176f565b6000816001111580156113bb575060015482105b80156107a0575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061144782611648565b9050836001600160a01b031681600001516001600160a01b03161461147e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061149c575061149c85336106d0565b806114b75750336114ac84610838565b6001600160a01b0316145b9050806114d757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114fe57604051633a954ecd60e21b815260040160405180910390fd5b61150a600084876113e0565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115de5760015482146115de57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061245183398151915260405160405180910390a45b5050505050565b6000826116258584611b77565b14949350505050565b61100f828260405180602001604052806000815250611beb565b60408051606081018252600080825260208201819052918101919091528180600111158015611678575060015481105b1561175657600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117545780516001600160a01b0316156116eb579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561174f579392505050565b6116eb565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006117ca83611648565b80519091508215611830576000336001600160a01b03831614806117f357506117f382336106d0565b8061180e57503361180386610838565b6001600160a01b0316145b90508061182e57604051632ce44b5f60e11b815260040160405180910390fd5b505b61183c600085836113e0565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661193a57600154821461193a57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612451833981519152908390a450506002805460010190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119a8903390899088908890600401612221565b602060405180830381600087803b1580156119c257600080fd5b505af19250505080156119f2575060408051601f3d908101601f191682019092526119ef918101906120e2565b60015b611a4d573d808015611a20576040519150601f19603f3d011682016040523d82523d6000602084013e611a25565b606091505b508051611a45576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107b590612378565b606081611a9e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ac85780611ab2816123b3565b9150611ac19050600a83612302565b9150611aa2565b6000816001600160401b03811115611ae257611ae2612424565b6040519080825280601f01601f191660200182016040528015611b0c576020820181803683370190505b5090505b8415611a6357611b21600183612335565b9150611b2e600a866123ce565b611b399060306122ea565b60f81b818381518110611b4e57611b4e61240e565b60200101906001600160f81b031916908160001a905350611b70600a86612302565b9450611b10565b600081815b8451811015611be3576000858281518110611b9957611b9961240e565b60200260200101519050808311611bbf5760008381526020829052604090209250611bd0565b600081815260208490526040902092505b5080611bdb816123b3565b915050611b7c565b509392505050565b610905838383600180546001600160a01b038516611c1b57604051622e076360e81b815260040160405180910390fd5b83611c395760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ce557506001600160a01b0387163b15155b15611d5c575b60405182906001600160a01b03891690600090600080516020612451833981519152908290a4611d246000888480600101955088611973565b611d41576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ceb578260015414611d5757600080fd5b611d90565b5b6040516001830192906001600160a01b03891690600090600080516020612451833981519152908290a480821415611d5d575b50600155611611565b828054611da590612378565b90600052602060002090601f016020900481019282611dc75760008555611e0d565b82601f10611de05782800160ff19823516178555611e0d565b82800160010185558215611e0d579182015b82811115611e0d578235825591602001919060010190611df2565b50611e19929150611e1d565b5090565b5b80821115611e195760008155600101611e1e565b80356001600160a01b0381168114611e4957600080fd5b919050565b80358015158114611e4957600080fd5b600060208284031215611e7057600080fd5b61120382611e32565b60008060408385031215611e8c57600080fd5b611e9583611e32565b9150611ea360208401611e32565b90509250929050565b600080600060608486031215611ec157600080fd5b611eca84611e32565b9250611ed860208501611e32565b9150604084013590509250925092565b60008060008060808587031215611efe57600080fd5b611f0785611e32565b9350611f1560208601611e32565b92506040850135915060608501356001600160401b0380821115611f3857600080fd5b818701915087601f830112611f4c57600080fd5b813581811115611f5e57611f5e612424565b604051601f8201601f19908116603f01168101908382118183101715611f8657611f86612424565b816040528281528a6020848701011115611f9f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fd657600080fd5b611fdf83611e32565b9150611ea360208401611e4e565b6000806040838503121561200057600080fd5b61200983611e32565b946020939093013593505050565b60008060006040848603121561202c57600080fd5b83356001600160401b038082111561204357600080fd5b818601915086601f83011261205757600080fd5b81358181111561206657600080fd5b8760208260051b850101111561207b57600080fd5b6020928301989097509590910135949350505050565b6000602082840312156120a357600080fd5b61120382611e4e565b6000602082840312156120be57600080fd5b5035919050565b6000602082840312156120d757600080fd5b81356112038161243a565b6000602082840312156120f457600080fd5b81516112038161243a565b6000806020838503121561211257600080fd5b82356001600160401b038082111561212957600080fd5b818501915085601f83011261213d57600080fd5b81358181111561214c57600080fd5b86602082850101111561215e57600080fd5b60209290920196919550909350505050565b6000806040838503121561218357600080fd5b82359150611ea360208401611e32565b600080604083850312156121a657600080fd5b82359150611ea360208401611e4e565b600081518084526121ce81602086016020860161234c565b601f01601f19169290920160200192915050565b600083516121f481846020880161234c565b83519083019061220881836020880161234c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612254908301846121b6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122965783518352928401929184019160010161227a565b50909695505050505050565b60208152600061120360208301846121b6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156122fd576122fd6123e2565b500190565b600082612311576123116123f8565b500490565b6000816000190483118215151615612330576123306123e2565b500290565b600082821015612347576123476123e2565b500390565b60005b8381101561236757818101518382015260200161234f565b83811115610e2e5750506000910152565b600181811c9082168061238c57607f821691505b602082108114156123ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123c7576123c76123e2565b5060010190565b6000826123dd576123dd6123f8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109e557600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220da3fc5e941f64c04e878a17dfd2300e49d2f9e6f8b67ed7f354352f5bea6b3dc64736f6c63430008070033

Deployed Bytecode Sourcemap

49381:4851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28033:315;;;;;;;;;;-1:-1:-1;28033:315:0;;;;;:::i;:::-;;:::i;:::-;;;8520:14:1;;8513:22;8495:41;;8483:2;8468:18;28033:315:0;;;;;;;;31316:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32913:212::-;;;;;;;;;;-1:-1:-1;32913:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7181:32:1;;;7163:51;;7151:2;7136:18;32913:212:0;7017:203:1;32448:389:0;;;;;;;;;;-1:-1:-1;32448:389:0;;;;;:::i;:::-;;:::i;:::-;;49635:49;;;;;;;;;;;;;;;;;;;8693:25:1;;;8681:2;8666:18;49635:49:0;8547:177:1;53183:83:0;;;;;;;;;;-1:-1:-1;53183:83:0;;;;;:::i;:::-;;:::i;27238:315::-;;;;;;;;;;-1:-1:-1;27500:12:0;;27083:1;27484:13;:28;-1:-1:-1;;27484:46:0;27238:315;;33830:182;;;;;;;;;;-1:-1:-1;33830:182:0;;;;;:::i;:::-;;:::i;49502:39::-;;;;;;;;;;;;;;;;49823:94;;;;;;;;;;;;;;;;54080:147;;;;;;;;;;;;;:::i;34093:197::-;;;;;;;;;;-1:-1:-1;34093:197:0;;;;;:::i;:::-;;:::i;51308:693::-;;;;;;;;;;-1:-1:-1;51308:693:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49548:41::-;;;;;;;;;;;;;;;;50205:926;;;;;;:::i;:::-;;:::i;52723:102::-;;;;;;;;;;-1:-1:-1;52723:102:0;;;;;:::i;:::-;;:::i;49782:32::-;;;;;;;;;;-1:-1:-1;49782:32:0;;;;;;;;;;;53069:106;;;;;;;;;;-1:-1:-1;53069:106:0;;;;;:::i;:::-;;:::i;49750:25::-;;;;;;;;;;-1:-1:-1;49750:25:0;;;;;;;;31110:129;;;;;;;;;;-1:-1:-1;31110:129:0;;;;;:::i;:::-;;:::i;28422:212::-;;;;;;;;;;-1:-1:-1;28422:212:0;;;;;:::i;:::-;;:::i;48498:103::-;;;;;;;;;;;;;:::i;53695:174::-;;;;;;;;;;-1:-1:-1;53695:174:0;;;;;:::i;:::-;;:::i;53968:104::-;;;;;;;;;;-1:-1:-1;53968:104:0;;;;;:::i;:::-;;:::i;53518:166::-;;;;;;;;;;-1:-1:-1;53518:166:0;;;;;:::i;:::-;;:::i;47847:87::-;;;;;;;;;;-1:-1:-1;47893:7:0;47920:6;-1:-1:-1;;;;;47920:6:0;47847:87;;53274:120;;;;;;;;;;-1:-1:-1;53274:120:0;;;;;:::i;:::-;;:::i;53402:108::-;;;;;;;;;;-1:-1:-1;53402:108:0;;;;;:::i;:::-;;:::i;31499:::-;;;;;;;;;;;;;:::i;52833:106::-;;;;;;;;;;-1:-1:-1;52833:106:0;;;;;:::i;:::-;;:::i;33207:297::-;;;;;;;;;;-1:-1:-1;33207:297:0;;;;;:::i;:::-;;:::i;52622:93::-;;;;;;;;;;;;;:::i;53881:77::-;;;;;;;;;;;;;:::i;34371:389::-;;;;;;;;;;-1:-1:-1;34371:389:0;;;;;:::i;:::-;;:::i;52009:484::-;;;;;;;;;;-1:-1:-1;52009:484:0;;;;;:::i;:::-;;:::i;49596:32::-;;;;;;;;;;;;;;;;52501:113;;;;;;;;;;-1:-1:-1;52501:113:0;;;;;:::i;:::-;;:::i;33585:168::-;;;;;;;;;;-1:-1:-1;33585:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;33708:25:0;;;33682:4;33708:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33585:168;51139:161;;;;;;;;;;-1:-1:-1;51139:161:0;;;;;:::i;:::-;;:::i;49691:50::-;;;;;;;;;;;;;;;;48756:201;;;;;;;;;;-1:-1:-1;48756:201:0;;;;;:::i;:::-;;:::i;28033:315::-;28135:4;-1:-1:-1;;;;;;28176:40:0;;-1:-1:-1;;;28176:40:0;;:107;;-1:-1:-1;;;;;;;28235:48:0;;-1:-1:-1;;;28235:48:0;28176:107;:162;;;-1:-1:-1;;;;;;;;;;16908:40:0;;;28302:36;28154:184;28033:315;-1:-1:-1;;28033:315:0:o;31316:104::-;31370:13;31405:5;31398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31316:104;:::o;32913:212::-;32981:7;33008:16;33016:7;33008;:16::i;:::-;33003:64;;33033:34;;-1:-1:-1;;;33033:34:0;;;;;;;;;;;33003:64;-1:-1:-1;33091:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33091:24:0;;32913:212::o;32448:389::-;32523:13;32539:24;32555:7;32539:15;:24::i;:::-;32523:40;;32586:5;-1:-1:-1;;;;;32580:11:0;:2;-1:-1:-1;;;;;32580:11:0;;32576:48;;;32600:24;;-1:-1:-1;;;32600:24:0;;;;;;;;;;;32576:48;23397:10;-1:-1:-1;;;;;32645:21:0;;;;;;:63;;-1:-1:-1;32671:37:0;32688:5;23397:10;33585:168;:::i;32671:37::-;32670:38;32645:63;32641:142;;;32734:35;;-1:-1:-1;;;32734:35:0;;;;;;;;;;;32641:142;32799:28;32808:2;32812:7;32821:5;32799:8;:28::i;:::-;32510:327;32448:389;;:::o;53183:83::-;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;;;;;;;;;53243:6:::1;:15:::0;;-1:-1:-1;;53243:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53183:83::o;33830:182::-;33974:28;33984:4;33990:2;33994:7;33974:9;:28::i;54080:147::-;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;54129:7:::1;47920:6:::0;;54142:55:::1;::::0;-1:-1:-1;;;;;47920:6:0;;;;54171:21:::1;::::0;54129:7;54142:55;54129:7;54142:55;54171:21;47920:6;54142:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54128:69;;;54216:2;54208:11;;;::::0;::::1;;54117:110;54080:147::o:0;34093:197::-;34241:39;34258:4;34264:2;34268:7;34241:39;;;;;;;;;;;;:16;:39::i;51308:693::-;51395:16;51429:23;51455:17;51465:6;51455:9;:17::i;:::-;51429:43;;51483:30;51530:15;-1:-1:-1;;;;;51516:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51516:30:0;-1:-1:-1;51483:63:0;-1:-1:-1;51582:1:0;51557:22;51634:327;51659:15;51641;:33;:64;;;;;51696:9;;51678:14;:27;;51641:64;51634:327;;;51718:25;51746:23;51754:14;51746:7;:23::i;:::-;51718:51;;51807:6;-1:-1:-1;;;;;51786:27:0;:17;-1:-1:-1;;;;;51786:27:0;;51782:139;;;51863:14;51830:13;51844:15;51830:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;51892:17;;;;:::i;:::-;;;;51782:139;51933:16;;;;:::i;:::-;;;;51707:254;51634:327;;;-1:-1:-1;51980:13:0;;51308:693;-1:-1:-1;;;;51308:693:0:o;50205:926::-;50303:11;50066:1;50052:11;:15;50044:49;;;;-1:-1:-1;;;50044:49:0;;9911:2:1;50044:49:0;;;9893:21:1;9950:2;9930:18;;;9923:30;-1:-1:-1;;;9969:18:1;;;9962:50;10029:18;;50044:49:0;9709:344:1;50044:49:0;50143:9;;50128:11;50112:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50104:73;;;;-1:-1:-1;;;50104:73:0;;11792:2:1;50104:73:0;;;11774:21:1;11831:2;11811:18;;;11804:30;-1:-1:-1;;;11850:18:1;;;11843:50;11910:18;;50104:73:0;11590:344:1;50104:73:0;50336:6:::1;::::0;::::1;;50335:7;50327:43;;;::::0;-1:-1:-1;;;50327:43:0;;11024:2:1;50327:43:0::1;::::0;::::1;11006:21:1::0;11063:2;11043:18;;;11036:30;11102:25;11082:18;;;11075:53;11145:18;;50327:43:0::1;10822:347:1::0;50327:43:0::1;50384:13;::::0;::::1;;::::0;;::::1;;:19;;:13;:19;50381:698;;;50454:11;50440;;:25;;;;:::i;:::-;50427:9;:38;;50419:70;;;::::0;-1:-1:-1;;;50419:70:0;;12141:2:1;50419:70:0::1;::::0;::::1;12123:21:1::0;12180:2;12160:18;;;12153:30;-1:-1:-1;;;12199:18:1;;;12192:49;12258:18;;50419:70:0::1;11939:343:1::0;50419:70:0::1;50551:30;;50536:11;50512:21;50522:10;50512:9;:21::i;:::-;:35;;;;:::i;:::-;:69;;50504:103;;;::::0;-1:-1:-1;;;50504:103:0;;9155:2:1;50504:103:0::1;::::0;::::1;9137:21:1::0;9194:2;9174:18;;;9167:30;-1:-1:-1;;;9213:18:1;;;9206:50;9273:18;;50504:103:0::1;8953:344:1::0;50504:103:0::1;50695:28;::::0;-1:-1:-1;;50712:10:0::1;6080:2:1::0;6076:15;6072:53;50695:28:0::1;::::0;::::1;6060:66:1::0;50670:12:0::1;::::0;6142::1;;50695:28:0::1;;;;;;;;;;;;50685:39;;;;;;50670:54;;50747:50;50766:12;;50747:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;50780:10:0::1;::::0;;-1:-1:-1;50792:4:0;;-1:-1:-1;50747:18:0::1;:50::i;:::-;50739:97;;;::::0;-1:-1:-1;;;50739:97:0;;10260:2:1;50739:97:0::1;::::0;::::1;10242:21:1::0;10299:2;10279:18;;;10272:30;10338:34;10318:18;;;10311:62;-1:-1:-1;;;10389:18:1;;;10382:32;10431:19;;50739:97:0::1;10058:398:1::0;50739:97:0::1;50404:444;50381:698;;;50915:11;50898:14;;:28;;;;:::i;:::-;50885:9;:41;;50877:73;;;::::0;-1:-1:-1;;;50877:73:0;;12141:2:1;50877:73:0::1;::::0;::::1;12123:21:1::0;12180:2;12160:18;;;12153:30;-1:-1:-1;;;12199:18:1;;;12192:49;12258:18;;50877:73:0::1;11939:343:1::0;50877:73:0::1;51012:29;;50997:11;50973:21;50983:10;50973:9;:21::i;:::-;:35;;;;:::i;:::-;:68;;50965:102;;;::::0;-1:-1:-1;;;50965:102:0;;9155:2:1;50965:102:0::1;::::0;::::1;9137:21:1::0;9194:2;9174:18;;;9167:30;-1:-1:-1;;;9213:18:1;;;9206:50;9273:18;;50965:102:0::1;8953:344:1::0;50965:102:0::1;51089:34;51099:10;51111:11;51089:9;:34::i;:::-;50205:926:::0;;;;:::o;52723:102::-;52777:4;52801:16;52809:7;52801;:16::i;53069:106::-;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;53144:23:::1;:13;53160:7:::0;;53144:23:::1;:::i;31110:129::-:0;31174:7;31203:21;31216:7;31203:12;:21::i;:::-;:26;;31110:129;-1:-1:-1;;31110:129:0:o;28422:212::-;28486:7;-1:-1:-1;;;;;28512:19:0;;28508:60;;28540:28;;-1:-1:-1;;;28540:28:0;;;;;;;;;;;28508:60;-1:-1:-1;;;;;;28596:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28596:27:0;;28422:212::o;48498:103::-;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;48563:30:::1;48590:1;48563:18;:30::i;:::-;48498:103::o:0;53695:174::-;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;53799:29:::1;:62:::0;53695:174::o;53968:104::-;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;54040:10:::1;:24:::0;53968:104::o;53518:166::-;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;53618:30:::1;:58:::0;53518:166::o;53274:120::-;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;53354:14:::1;:32:::0;53274:120::o;53402:108::-;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;53476:11:::1;:26:::0;53402:108::o;31499:::-;31555:13;31590:7;31583:14;;;;;:::i;52833:106::-;52902:29;52908:7;52917:13;52902:5;:29::i;:::-;52833:106;;:::o;33207:297::-;-1:-1:-1;;;;;33308:24:0;;23397:10;33308:24;33304:54;;;33341:17;;-1:-1:-1;;;33341:17:0;;;;;;;;;;;33304:54;23397:10;33375:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33375:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33375:53:0;;;;;;;;;;33446:48;;8495:41:1;;;33375:42:0;;23397:10;33446:48;;8468:18:1;33446:48:0;;;;;;;33207:297;;:::o;52622:93::-;52666:7;52693:14;27083:1;27897:13;-1:-1:-1;;27897:31:0;;27656:295;52693:14;52686:21;;52622:93;:::o;53881:77::-;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;53931:13:::1;:19:::0;;-1:-1:-1;;53931:19:0::1;::::0;;53881:77::o;34371:389::-;34550:28;34560:4;34566:2;34570:7;34550:9;:28::i;:::-;-1:-1:-1;;;;;34595:13:0;;7011:19;:23;;34595:76;;;;;34615:56;34646:4;34652:2;34656:7;34665:5;34615:30;:56::i;:::-;34614:57;34595:76;34591:160;;;34697:40;;-1:-1:-1;;;34697:40:0;;;;;;;;;;;52009:484;52130:13;52183:17;52191:8;52183:7;:17::i;:::-;52165:106;;;;-1:-1:-1;;;52165:106:0;;11376:2:1;52165:106:0;;;11358:21:1;11415:2;11395:18;;;11388:30;11454:34;11434:18;;;11427:62;-1:-1:-1;;;11505:18:1;;;11498:45;11560:19;;52165:106:0;11174:411:1;52165:106:0;52284:28;52315:10;:8;:10::i;:::-;52284:41;;52376:1;52351:14;52345:28;:32;:140;;;;;;;;;;;;;;;;;52419:14;52435:19;:8;:17;:19::i;:::-;52402:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52345:140;52338:147;52009:484;-1:-1:-1;;;52009:484:0:o;52501:113::-;-1:-1:-1;;;;;28824:19:0;;52559:7;28824:19;;;:12;:19;;;;;:32;-1:-1:-1;;;28824:32:0;;-1:-1:-1;;;;;28824:32:0;52586:20;28726:141;51139:161;51225:11;50066:1;50052:11;:15;50044:49;;;;-1:-1:-1;;;50044:49:0;;9911:2:1;50044:49:0;;;9893:21:1;9950:2;9930:18;;;9923:30;-1:-1:-1;;;9969:18:1;;;9962:50;10029:18;;50044:49:0;9709:344:1;50044:49:0;50143:9;;50128:11;50112:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50104:73;;;;-1:-1:-1;;;50104:73:0;;11792:2:1;50104:73:0;;;11774:21:1;11831:2;11811:18;;;11804:30;-1:-1:-1;;;11850:18:1;;;11843:50;11910:18;;50104:73:0;11590:344:1;50104:73:0;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23:::1;48059:68;;;;-1:-1:-1::0;;;48059:68:0::1;;;;;;;:::i;:::-;51259:33:::2;51269:9;51280:11;51259:9;:33::i;48756:201::-:0;47893:7;47920:6;-1:-1:-1;;;;;47920:6:0;23397:10;48067:23;48059:68;;;;-1:-1:-1;;;48059:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48845:22:0;::::1;48837:73;;;::::0;-1:-1:-1;;;48837:73:0;;9504:2:1;48837:73:0::1;::::0;::::1;9486:21:1::0;9543:2;9523:18;;;9516:30;9582:34;9562:18;;;9555:62;-1:-1:-1;;;9633:18:1;;;9626:36;9679:19;;48837:73:0::1;9302:402:1::0;48837:73:0::1;48921:28;48940:8;48921:18;:28::i;35033:193::-:0;35090:4;35135:7;27083:1;35116:26;;:53;;;;;35156:13;;35146:7;:23;35116:53;:100;;;;-1:-1:-1;;35189:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35189:27:0;;;;35188:28;;35033:193::o;43639:210::-;43764:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43764:29:0;-1:-1:-1;;;;;43764:29:0;;;;;;;;;43811:28;;43764:24;;43811:28;;;;;;;43639:210;;;:::o;38328:2226::-;38453:35;38491:21;38504:7;38491:12;:21::i;:::-;38453:59;;38555:4;-1:-1:-1;;;;;38533:26:0;:13;:18;;;-1:-1:-1;;;;;38533:26:0;;38529:67;;38568:28;;-1:-1:-1;;;38568:28:0;;;;;;;;;;;38529:67;38613:22;23397:10;-1:-1:-1;;;;;38639:20:0;;;;:75;;-1:-1:-1;38678:36:0;38695:4;23397:10;33585:168;:::i;38678:36::-;38639:130;;;-1:-1:-1;23397:10:0;38733:20;38745:7;38733:11;:20::i;:::-;-1:-1:-1;;;;;38733:36:0;;38639:130;38613:157;;38792:17;38787:66;;38818:35;;-1:-1:-1;;;38818:35:0;;;;;;;;;;;38787:66;-1:-1:-1;;;;;38870:16:0;;38866:52;;38895:23;;-1:-1:-1;;;38895:23:0;;;;;;;;;;;38866:52;39049:35;39066:1;39070:7;39079:4;39049:8;:35::i;:::-;-1:-1:-1;;;;;39392:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39392:31:0;;;-1:-1:-1;;;;;39392:31:0;;;-1:-1:-1;;39392:31:0;;;;;;;39440:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39440:29:0;;;;;;;;;;;39524:20;;;:11;:20;;;;;;39561:18;;-1:-1:-1;;;;;;39596:49:0;;;;-1:-1:-1;;;39629:15:0;39596:49;;;;;;;;;;39927:11;;39989:24;;;;;40034:13;;39524:20;;39989:24;;40034:13;40030:398;;40250:13;;40235:11;:28;40231:180;;40290:20;;40361:28;;;;-1:-1:-1;;;;;40335:54:0;-1:-1:-1;;;40335:54:0;-1:-1:-1;;;;;;40335:54:0;;;-1:-1:-1;;;;;40290:20:0;;40335:54;;;;40231:180;39365:1076;;;40481:7;40477:2;-1:-1:-1;;;;;40462:27:0;40471:4;-1:-1:-1;;;;;40462:27:0;-1:-1:-1;;;;;;;;;;;40462:27:0;;;;;;;;;40502:42;38440:2114;;38328:2226;;;:::o;1894:190::-;2019:4;2072;2043:25;2056:5;2063:4;2043:12;:25::i;:::-;:33;;1894:190;-1:-1:-1;;;;1894:190:0:o;35238:108::-;35309:27;35319:2;35323:8;35309:27;;;;;;;;;;;;:9;:27::i;29879:1159::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29992:7:0;;27083:1;30047:23;;:47;;;;;30081:13;;30074:4;:20;30047:47;30043:922;;;30117:31;30151:17;;;:11;:17;;;;;;;;;30117:51;;;;;;;;;-1:-1:-1;;;;;30117:51:0;;;;-1:-1:-1;;;30117:51:0;;-1:-1:-1;;;;;30117:51:0;;;;;;;;-1:-1:-1;;;30117:51:0;;;;;;;;;;;;;;30189:759;;30241:14;;-1:-1:-1;;;;;30241:28:0;;30237:105;;30307:9;29879:1159;-1:-1:-1;;;29879:1159:0:o;30237:105::-;-1:-1:-1;;;30696:6:0;30743:17;;;;:11;:17;;;;;;;;;30731:29;;;;;;;;;-1:-1:-1;;;;;30731:29:0;;;;;-1:-1:-1;;;30731:29:0;;-1:-1:-1;;;;;30731:29:0;;;;;;;;-1:-1:-1;;;30731:29:0;;;;;;;;;;;;;30793:28;30789:113;;30863:9;29879:1159;-1:-1:-1;;;29879:1159:0:o;30789:113::-;30654:273;;;30096:869;30043:922;30997:31;;-1:-1:-1;;;30997:31:0;;;;;;;;;;;49117:191;49191:16;49210:6;;-1:-1:-1;;;;;49227:17:0;;;-1:-1:-1;;;;;;49227:17:0;;;;;;49260:40;;49210:6;;;;;;;49260:40;;49191:16;49260:40;49180:128;49117:191;:::o;40993:2514::-;41075:35;41113:21;41126:7;41113:12;:21::i;:::-;41166:18;;41075:59;;-1:-1:-1;41201:302:0;;;;41237:22;23397:10;-1:-1:-1;;;;;41263:20:0;;;;:79;;-1:-1:-1;41306:36:0;41323:4;23397:10;33585:168;:::i;41306:36::-;41263:138;;;-1:-1:-1;23397:10:0;41365:20;41377:7;41365:11;:20::i;:::-;-1:-1:-1;;;;;41365:36:0;;41263:138;41237:165;;41428:17;41423:66;;41454:35;;-1:-1:-1;;;41454:35:0;;;;;;;;;;;41423:66;41220:283;41201:302;41641:35;41658:1;41662:7;41671:4;41641:8;:35::i;:::-;-1:-1:-1;;;;;42018:18:0;;;41984:31;42018:18;;;:12;:18;;;;;;;;42053:24;;-1:-1:-1;;;;;;;;;;42053:24:0;;;;;;;;;-1:-1:-1;;42053:24:0;;;;42094:29;;;;;42076:1;42094:29;;;;;;;;-1:-1:-1;;42094:29:0;;;;;;;;;;42262:20;;;:11;:20;;;;;;42299;;-1:-1:-1;;;;42369:15:0;42336:49;;;-1:-1:-1;;;42336:49:0;-1:-1:-1;;;;;;42336:49:0;;;;;;;;;;42402:22;-1:-1:-1;;;42402:22:0;;;42702:11;;;42764:24;;;;;42809:13;;42018:18;;42764:24;;42809:13;42805:398;;43025:13;;43010:11;:28;43006:180;;43065:20;;43136:28;;;;-1:-1:-1;;;;;43110:54:0;-1:-1:-1;;;43110:54:0;-1:-1:-1;;;;;;43110:54:0;;;-1:-1:-1;;;;;43065:20:0;;43110:54;;;;43006:180;-1:-1:-1;;43237:35:0;;43264:7;;-1:-1:-1;43260:1:0;;-1:-1:-1;;;;;;43237:35:0;;;-1:-1:-1;;;;;;;;;;;43237:35:0;43260:1;;43237:35;-1:-1:-1;;43470:12:0;:14;;;;;;-1:-1:-1;;40993:2514:0:o;44363:701::-;44559:72;;-1:-1:-1;;;44559:72:0;;44536:4;;-1:-1:-1;;;;;44559:36:0;;;;;:72;;23397:10;;44610:4;;44616:7;;44625:5;;44559:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44559:72:0;;;;;;;;-1:-1:-1;;44559:72:0;;;;;;;;;;;;:::i;:::-;;;44555:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44799:13:0;;44795:247;;44847:40;;-1:-1:-1;;;44847:40:0;;;;;;;;;;;44795:247;44996:6;44990:13;44981:6;44977:2;44973:15;44966:38;44555:500;-1:-1:-1;;;;;;44680:55:0;-1:-1:-1;;;44680:55:0;;-1:-1:-1;44555:500:0;44363:701;;;;;;:::o;52947:114::-;53007:13;53040;53033:20;;;;;:::i;3724:723::-;3780:13;4001:10;3997:53;;-1:-1:-1;;4028:10:0;;;;;;;;;;;;-1:-1:-1;;;4028:10:0;;;;;3724:723::o;3997:53::-;4075:5;4060:12;4116:78;4123:9;;4116:78;;4149:8;;;;:::i;:::-;;-1:-1:-1;4172:10:0;;-1:-1:-1;4180:2:0;4172:10;;:::i;:::-;;;4116:78;;;4204:19;4236:6;-1:-1:-1;;;;;4226:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4226:17:0;;4204:39;;4254:154;4261:10;;4254:154;;4288:11;4298:1;4288:11;;:::i;:::-;;-1:-1:-1;4357:10:0;4365:2;4357:5;:10;:::i;:::-;4344:24;;:2;:24;:::i;:::-;4331:39;;4314:6;4321;4314:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4314:56:0;;;;;;;;-1:-1:-1;4385:11:0;4394:2;4385:11;;:::i;:::-;;;4254:154;;2445:675;2528:7;2571:4;2528:7;2586:497;2610:5;:12;2606:1;:16;2586:497;;;2644:20;2667:5;2673:1;2667:8;;;;;;;;:::i;:::-;;;;;;;2644:31;;2710:12;2694;:28;2690:382;;3196:13;3246:15;;;3282:4;3275:15;;;3329:4;3313:21;;2822:57;;2690:382;;;3196:13;3246:15;;;3282:4;3275:15;;;3329:4;3313:21;;2999:57;;2690:382;-1:-1:-1;2624:3:0;;;;:::i;:::-;;;;2586:497;;;-1:-1:-1;3100:12:0;2445:675;-1:-1:-1;;;2445:675:0:o;35733:175::-;35866:32;35872:2;35876:8;35886:5;35893:4;36365:13;;-1:-1:-1;;;;;36395:16:0;;36391:48;;36420:19;;-1:-1:-1;;;36420:19:0;;;;;;;;;;;36391:48;36456:13;36452:44;;36478:18;;-1:-1:-1;;;36478:18:0;;;;;;;;;;;36452:44;-1:-1:-1;;;;;36863:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36924:49:0;;-1:-1:-1;;;;;36863:44:0;;;;;;;36924:49;;;-1:-1:-1;;;;;36863:44:0;;;;;;36924:49;;;;;;;;;;;;;;;;36994:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37046:66:0;;;;-1:-1:-1;;;37096:15:0;37046:66;;;;;;;;;;36994:25;37199:23;;;37247:4;:23;;;;-1:-1:-1;;;;;;37255:13:0;;7011:19;:23;;37255:15;37243:667;;;37293:324;37326:38;;37351:12;;-1:-1:-1;;;;;37326:38:0;;;37343:1;;-1:-1:-1;;;;;;;;;;;37326:38:0;37343:1;;37326:38;37394:69;37433:1;37437:2;37441:14;;;;;;37457:5;37394:30;:69::i;:::-;37389:178;;37501:40;;-1:-1:-1;;;37501:40:0;;;;;;;;;;;37389:178;37612:3;37596:12;:19;;37293:324;;37702:12;37685:13;;:29;37681:43;;37716:8;;;37681:43;37243:667;;;37769:124;37802:40;;37827:14;;;;;-1:-1:-1;;;;;37802:40:0;;;37819:1;;-1:-1:-1;;;;;;;;;;;37802:40:0;37819:1;;37802:40;37888:3;37872:12;:19;;37769:124;;37243:667;-1:-1:-1;37926:13:0;:28;37980:60;50205:926;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;-1:-1:-1;;;;;1610:2:1;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:689::-;2902:6;2910;2918;2971:2;2959:9;2950:7;2946:23;2942:32;2939:52;;;2987:1;2984;2977:12;2939:52;3027:9;3014:23;-1:-1:-1;;;;;3097:2:1;3089:6;3086:14;3083:34;;;3113:1;3110;3103:12;3083:34;3151:6;3140:9;3136:22;3126:32;;3196:7;3189:4;3185:2;3181:13;3177:27;3167:55;;3218:1;3215;3208:12;3167:55;3258:2;3245:16;3284:2;3276:6;3273:14;3270:34;;;3300:1;3297;3290:12;3270:34;3355:7;3348:4;3338:6;3335:1;3331:14;3327:2;3323:23;3319:34;3316:47;3313:67;;;3376:1;3373;3366:12;3313:67;3407:4;3399:13;;;;3431:6;;-1:-1:-1;3469:20:1;;;;3456:34;;2807:689;-1:-1:-1;;;;2807:689:1:o;3501:180::-;3557:6;3610:2;3598:9;3589:7;3585:23;3581:32;3578:52;;;3626:1;3623;3616:12;3578:52;3649:26;3665:9;3649:26;:::i;3686:180::-;3745:6;3798:2;3786:9;3777:7;3773:23;3769:32;3766:52;;;3814:1;3811;3804:12;3766:52;-1:-1:-1;3837:23:1;;3686:180;-1:-1:-1;3686:180:1:o;3871:245::-;3929:6;3982:2;3970:9;3961:7;3957:23;3953:32;3950:52;;;3998:1;3995;3988:12;3950:52;4037:9;4024:23;4056:30;4080:5;4056:30;:::i;4121:249::-;4190:6;4243:2;4231:9;4222:7;4218:23;4214:32;4211:52;;;4259:1;4256;4249:12;4211:52;4291:9;4285:16;4310:30;4334:5;4310:30;:::i;4375:592::-;4446:6;4454;4507:2;4495:9;4486:7;4482:23;4478:32;4475:52;;;4523:1;4520;4513:12;4475:52;4563:9;4550:23;-1:-1:-1;;;;;4633:2:1;4625:6;4622:14;4619:34;;;4649:1;4646;4639:12;4619:34;4687:6;4676:9;4672:22;4662:32;;4732:7;4725:4;4721:2;4717:13;4713:27;4703:55;;4754:1;4751;4744:12;4703:55;4794:2;4781:16;4820:2;4812:6;4809:14;4806:34;;;4836:1;4833;4826:12;4806:34;4881:7;4876:2;4867:6;4863:2;4859:15;4855:24;4852:37;4849:57;;;4902:1;4899;4892:12;4849:57;4933:2;4925:11;;;;;4955:6;;-1:-1:-1;4375:592:1;;-1:-1:-1;;;;4375:592:1:o;5157:254::-;5225:6;5233;5286:2;5274:9;5265:7;5261:23;5257:32;5254:52;;;5302:1;5299;5292:12;5254:52;5338:9;5325:23;5315:33;;5367:38;5401:2;5390:9;5386:18;5367:38;:::i;5416:248::-;5481:6;5489;5542:2;5530:9;5521:7;5517:23;5513:32;5510:52;;;5558:1;5555;5548:12;5510:52;5594:9;5581:23;5571:33;;5623:35;5654:2;5643:9;5639:18;5623:35;:::i;5669:257::-;5710:3;5748:5;5742:12;5775:6;5770:3;5763:19;5791:63;5847:6;5840:4;5835:3;5831:14;5824:4;5817:5;5813:16;5791:63;:::i;:::-;5908:2;5887:15;-1:-1:-1;;5883:29:1;5874:39;;;;5915:4;5870:50;;5669:257;-1:-1:-1;;5669:257:1:o;6165:637::-;6445:3;6483:6;6477:13;6499:53;6545:6;6540:3;6533:4;6525:6;6521:17;6499:53;:::i;:::-;6615:13;;6574:16;;;;6637:57;6615:13;6574:16;6671:4;6659:17;;6637:57;:::i;:::-;-1:-1:-1;;;6716:20:1;;6745:22;;;6794:1;6783:13;;6165:637;-1:-1:-1;;;;6165:637:1:o;7225:488::-;-1:-1:-1;;;;;7494:15:1;;;7476:34;;7546:15;;7541:2;7526:18;;7519:43;7593:2;7578:18;;7571:34;;;7641:3;7636:2;7621:18;;7614:31;;;7419:4;;7662:45;;7687:19;;7679:6;7662:45;:::i;:::-;7654:53;7225:488;-1:-1:-1;;;;;;7225:488:1:o;7718:632::-;7889:2;7941:21;;;8011:13;;7914:18;;;8033:22;;;7860:4;;7889:2;8112:15;;;;8086:2;8071:18;;;7860:4;8155:169;8169:6;8166:1;8163:13;8155:169;;;8230:13;;8218:26;;8299:15;;;;8264:12;;;;8191:1;8184:9;8155:169;;;-1:-1:-1;8341:3:1;;7718:632;-1:-1:-1;;;;;;7718:632:1:o;8729:219::-;8878:2;8867:9;8860:21;8841:4;8898:44;8938:2;8927:9;8923:18;8915:6;8898:44;:::i;10461:356::-;10663:2;10645:21;;;10682:18;;;10675:30;10741:34;10736:2;10721:18;;10714:62;10808:2;10793:18;;10461:356::o;12469:128::-;12509:3;12540:1;12536:6;12533:1;12530:13;12527:39;;;12546:18;;:::i;:::-;-1:-1:-1;12582:9:1;;12469:128::o;12602:120::-;12642:1;12668;12658:35;;12673:18;;:::i;:::-;-1:-1:-1;12707:9:1;;12602:120::o;12727:168::-;12767:7;12833:1;12829;12825:6;12821:14;12818:1;12815:21;12810:1;12803:9;12796:17;12792:45;12789:71;;;12840:18;;:::i;:::-;-1:-1:-1;12880:9:1;;12727:168::o;12900:125::-;12940:4;12968:1;12965;12962:8;12959:34;;;12973:18;;:::i;:::-;-1:-1:-1;13010:9:1;;12900:125::o;13030:258::-;13102:1;13112:113;13126:6;13123:1;13120:13;13112:113;;;13202:11;;;13196:18;13183:11;;;13176:39;13148:2;13141:10;13112:113;;;13243:6;13240:1;13237:13;13234:48;;;-1:-1:-1;;13278:1:1;13260:16;;13253:27;13030:258::o;13293:380::-;13372:1;13368:12;;;;13415;;;13436:61;;13490:4;13482:6;13478:17;13468:27;;13436:61;13543:2;13535:6;13532:14;13512:18;13509:38;13506:161;;;13589:10;13584:3;13580:20;13577:1;13570:31;13624:4;13621:1;13614:15;13652:4;13649:1;13642:15;13506:161;;13293:380;;;:::o;13678:135::-;13717:3;-1:-1:-1;;13738:17:1;;13735:43;;;13758:18;;:::i;:::-;-1:-1:-1;13805:1:1;13794:13;;13678:135::o;13818:112::-;13850:1;13876;13866:35;;13881:18;;:::i;:::-;-1:-1:-1;13915:9:1;;13818:112::o;13935:127::-;13996:10;13991:3;13987:20;13984:1;13977:31;14027:4;14024:1;14017:15;14051:4;14048:1;14041:15;14067:127;14128:10;14123:3;14119:20;14116:1;14109:31;14159:4;14156:1;14149:15;14183:4;14180:1;14173:15;14199:127;14260:10;14255:3;14251:20;14248:1;14241:31;14291:4;14288:1;14281:15;14315:4;14312:1;14305:15;14331:127;14392:10;14387:3;14383:20;14380:1;14373:31;14423:4;14420:1;14413:15;14447:4;14444:1;14437:15;14463:131;-1:-1:-1;;;;;;14537:32:1;;14527:43;;14517:71;;14584:1;14581;14574:12

Swarm Source

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