ETH Price: $3,499.08 (+3.80%)
Gas: 4 Gwei

Token

Dawnscratchers (DAWN)
 

Overview

Max Total Supply

9,999 DAWN

Holders

2,430

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
11 DAWN
0xb919862472d1fa12a6edea891684d46fe28a61d6
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:
Dawnscratchers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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

// ........................................................................................................................
// ........................................................................................................................
// .....................................................%%%%%..............................................................
// ...................................................%%,,,%%..............................................................
// ................................................%%%,,%%%................................................................
// ..............................................%%***,,%%%................................................................
// ..............................................%%***,,%%%................................................................
// ..............................................%%***,,,,,%%..............................................................
// ..............................................%%***,,,,,,,%%,.........%%%%%.............................................
// ................................................%%%**,,,,,,,%%%%%%%%%%,,#%%.............................................
// ...................................................%%***,,,,,,,,,,,,,,%%*...............................................
// .....................................................%%%************%%..................................................
// .......................................................,%%%%%%%%%%%%....................................................
// ........................................................................................................................
// .......................................@@...............................................................................
// ....................................@@@((@@@............................................................................
// ..................................@@#####(((@@...............................@@@@@@@@@@.................................
// ..................................@@########((@@,.......................&@@@@(((((##@@@.................................
// ..................................@@##########((@@@...................@@#((((#######@@@.................................
// ..................................@@##########((###@@@@@@@@@@@@@@@@@@@(((((#######@@*...................................
// ..................................@@##########(((((###################(((((#######@@*...................................
// ..................................@@########(((((((((###############(((((((#######@@*...................................
// ....................................@@@((((((((((((((((((((((((((((((((((((((#####@@*...................................
// ....................................@@@(((((((((((((((((((((((((((((((((((((((((@@......................................
// ....................................@@@(((((#######%%%%%##((((((((((##%%%%%##(((@@......................................
// ..................................@@(((((#######%%%@@@@@%%##(((((###%%@@@@@%%###@@......................................
// ..................................@@(((((#####%%@@@**@@@  %%#####%%%@@@@.  @@%%%##@@*...................................
// ..................................@@(((#######%%@@@**@@@**%%#####%%%**@@(**@@%%%##@@*...................................
// ..................................@@(((#########%%%*******%%#####%%%*******%%#######@@@.................................
// ..................................@@(((############%%%%%%%##********%%%%%%%#########@@@.................................
// ..................................@@(((((#################************############((@@@.................................
// ..................................@@((((((((############****@@@@@@@@****(#######((@@*...................................
// ..................................@@(((((((((((((####*******/((@@@@@*******(((((((@@*...................................
// ..................................@@((((((((((     ************&&(((*******((     @@*...................................
// ..................................@@(((((     (((((*****&&*****&&*****&&/**  (((((  %@@.................................
// ..................................@@(((  (((((  /((*******&&&&&**&&&&&*******   ((((.  .................................
// ...............................,@@((((((((((  (((((((**********************(((((  (((((@@...............................
// ...............................,@@(((((((   (((((((((%%%%%************%%%%%((((((((((((@@...............................
// ...............................,@@(((((((((((((((((((#####%%%%%%%%%%%%#####((((((((((((((@@@............................
// .............................@@@((((((((((((((((((((((((###################((((((((((((((@@@............................
// .............................@@@((((((((((((((((((((((((################((((((((((((((((((((@@..........................
// .............................@@@((((((((((((((((((((((((################((((((((((((((((((((@@..........................
// ...........................@@(((((((((((((((((((((((((((###################(((((((((((((((((((@@*.......................
// ...........................@@((((((((((((((((((((((((########################(((((((((((((((((@@*.......................
// ...........................@@((((((((((((((((((((((((###########################((((((((((((((((&@@.....................
// ...........................@@((((((((((((((((((((((#############################((((((((((((((((&@@.....................
// ........................@@@((((((((((((((((((((((((###############################(((((((((((((((((@@,,,................
// ........................@@@(((((((((((((((((((((##################################(((((((((((((((((((@@@................

// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
// SPDX-License-Identifier: Unlicense

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/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: @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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev 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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

//newerc.sol
pragma solidity ^0.8.0;


contract Dawnscratchers is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.002 ether;
    uint256 public maxSupply = 9999;
    uint256 public maxFree = 1999;
    uint256 public maxperAddressFreeLimit = 2;
    uint256 public maxperAddressPublicMint = 9;

    mapping(address => uint256) public addressFreeMintedBalance;

    constructor() ERC721A("Dawnscratchers", "DAWN") {
        setBaseURI("");

    }

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

    function mintFree(uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "Max Dawnscratchers per address exceeded");
		require(_mintAmount > 0, "Cannot mint 0 Dawnscratchers" );
		require(s + _mintAmount <= maxFree, "Cannot exceed Dawnscratchers supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;

		}
        _safeMint(msg.sender, _mintAmount);
		delete s;
        delete addressFreeMintedCount;
	}


    function mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        require(_mintAmount > 0, "Cant mint 0 Dawnscratchers");
        require(_mintAmount <= maxperAddressPublicMint, "Cant mint more Dawnscratchers" );
        require(s + _mintAmount <= maxSupply, "Cant exceed Dawnscratchers supply");
        require(msg.value >= cost * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    function gift(uint256[] calldata quantity, address[] calldata recipient)
        external
        onlyOwner
    {
        require(
            quantity.length == recipient.length,
            "Provide quantities and recipients"
        );
        uint256 totalQuantity = 0;
        uint256 s = totalSupply();
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Too many Dawnscratchers");
        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            _safeMint(recipient[i], quantity[i]);
        }
        delete s;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
                : "";
    }



    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(_newMaxSupply <= maxSupply, "Cannot increase max supply");
        maxSupply = _newMaxSupply;
    }
     function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
               maxFree = _newMaxFreeSupply;
    }

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

    function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner {
        maxperAddressPublicMint = _amount;
    }

    function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{
        maxperAddressFreeLimit = _amount;
    }
    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function withdrawAny(uint256 _amount) public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: _amount}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","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":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600160005566071afd498d0000600a5561270f600b556107cf600c556002600d556009600e553480156200003757600080fd5b50604080518082018252600e81526d4461776e7363726174636865727360901b6020808301918252835180850190945260048452632220aba760e11b9084015281519192916200008a91600191620001bd565b508051620000a0906002906020840190620001bd565b505050620000bd620000b7620000ef60201b60201c565b620000f3565b6007805460ff60a01b191690556001600855604080516020810190915260008152620000e99062000145565b620002a0565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001a45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b9906009906020840190620001bd565b5050565b828054620001cb9062000263565b90600052602060002090601f016020900481019282620001ef57600085556200023a565b82601f106200020a57805160ff19168380011785556200023a565b828001600101855582156200023a579182015b828111156200023a5782518255916020019190600101906200021d565b50620002489291506200024c565b5090565b5b808211156200024857600081556001016200024d565b600181811c908216806200027857607f821691505b602082108114156200029a57634e487b7160e01b600052602260045260246000fd5b50919050565b6125cb80620002b06000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610600578063d5abeb0114610620578063dc4e66b514610636578063e985e9c514610656578063f2fde38b1461069f57600080fd5b8063a0712d681461057a578063a22cb4651461058d578063a4146733146105ad578063b88d4fde146105c0578063bde12d73146105e057600080fd5b806377ad99f0116100f257806377ad99f0146104e75780637c6b172d146104fa5780638da5cb5b1461052757806395d89b411461054557806396ea3a471461055a57600080fd5b80636352211e1461047d5780636c0360eb1461049d57806370a08231146104b2578063715018a6146104d257600080fd5b80632f745c59116101b1578063485a68a311610175578063485a68a3146103f25780634f6ccce71461040857806355f804b31461042857806356569a1d146104485780635c975abb1461045e57600080fd5b80632f745c591461037457806334c8fd75146103945780633ccfd60b146103aa57806342842e0e146103b257806344a0d68a146103d257600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806313faede6146102fb57806318160ddd1461031f578063228025e81461033457806323b872dd1461035457600080fd5b806301ffc9a71461022a578063022d67dd1461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004612250565b6106bf565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a3660046122d3565b61072c565b005b34801561028d57600080fd5b50610296610764565b6040516102569190612394565b3480156102af57600080fd5b506102c36102be3660046122d3565b6107f6565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f63660046121ba565b610881565b34801561030757600080fd5b50610311600a5481565b604051908152602001610256565b34801561032b57600080fd5b50600054610311565b34801561034057600080fd5b5061027f61034f3660046122d3565b610999565b34801561036057600080fd5b5061027f61036f3660046120c6565b610a1a565b34801561038057600080fd5b5061031161038f3660046121ba565b610a25565b3480156103a057600080fd5b50610311600e5481565b61027f610b82565b3480156103be57600080fd5b5061027f6103cd3660046120c6565b610c04565b3480156103de57600080fd5b5061027f6103ed3660046122d3565b610c1f565b3480156103fe57600080fd5b50610311600c5481565b34801561041457600080fd5b506103116104233660046122d3565b610c4e565b34801561043457600080fd5b5061027f61044336600461228a565b610cb0565b34801561045457600080fd5b50610311600d5481565b34801561046a57600080fd5b50600754600160a01b900460ff1661024a565b34801561048957600080fd5b506102c36104983660046122d3565b610cf1565b3480156104a957600080fd5b50610296610d03565b3480156104be57600080fd5b506103116104cd366004612078565b610d91565b3480156104de57600080fd5b5061027f610e22565b61027f6104f53660046122d3565b610e58565b34801561050657600080fd5b50610311610515366004612078565b600f6020526000908152604090205481565b34801561053357600080fd5b506007546001600160a01b03166102c3565b34801561055157600080fd5b50610296610ed7565b34801561056657600080fd5b5061027f6105753660046121e4565b610ee6565b61027f6105883660046122d3565b611084565b34801561059957600080fd5b5061027f6105a836600461217e565b611210565b61027f6105bb3660046122d3565b6112d5565b3480156105cc57600080fd5b5061027f6105db366004612102565b6114b2565b3480156105ec57600080fd5b5061027f6105fb3660046122d3565b6114eb565b34801561060c57600080fd5b5061029661061b3660046122d3565b61151a565b34801561062c57600080fd5b50610311600b5481565b34801561064257600080fd5b5061027f6106513660046122d3565b6115d9565b34801561066257600080fd5b5061024a610671366004612093565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106ab57600080fd5b5061027f6106ba366004612078565b611608565b60006001600160e01b031982166380ac58cd60e01b14806106f057506001600160e01b03198216635b5e139f60e01b145b8061070b57506001600160e01b0319821663780e9d6360e01b145b8061072657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461075f5760405162461bcd60e51b8152600401610756906123a7565b60405180910390fd5b600e55565b606060018054610773906124bd565b80601f016020809104026020016040519081016040528092919081815260200182805461079f906124bd565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b6000610803826000541190565b6108655760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610756565b506000908152600560205260409020546001600160a01b031690565b600061088c82610cf1565b9050806001600160a01b0316836001600160a01b031614156108fb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610756565b336001600160a01b038216148061091757506109178133610671565b6109895760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610756565b6109948383836116a0565b505050565b6007546001600160a01b031633146109c35760405162461bcd60e51b8152600401610756906123a7565b600b54811115610a155760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365206d617820737570706c790000000000006044820152606401610756565b600b55565b6109948383836116fc565b6000610a3083610d91565b8210610a895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610756565b600080549080805b83811015610b22576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ae457805192505b876001600160a01b0316836001600160a01b03161415610b195786841415610b125750935061072692505050565b6001909301925b50600101610a91565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610756565b6007546001600160a01b03163314610bac5760405162461bcd60e51b8152600401610756906123a7565b604051600090339047908381818185875af1925050503d8060008114610bee576040519150601f19603f3d011682016040523d82523d6000602084013e610bf3565b606091505b5050905080610c0157600080fd5b50565b610994838383604051806020016040528060008152506114b2565b6007546001600160a01b03163314610c495760405162461bcd60e51b8152600401610756906123a7565b600a55565b600080548210610cac5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610756565b5090565b6007546001600160a01b03163314610cda5760405162461bcd60e51b8152600401610756906123a7565b8051610ced906009906020840190611f0a565b5050565b6000610cfc826119e1565b5192915050565b60098054610d10906124bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3c906124bd565b8015610d895780601f10610d5e57610100808354040283529160200191610d89565b820191906000526020600020905b815481529060010190602001808311610d6c57829003601f168201915b505050505081565b60006001600160a01b038216610dfd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610756565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e4c5760405162461bcd60e51b8152600401610756906123a7565b610e566000611ab8565b565b6007546001600160a01b03163314610e825760405162461bcd60e51b8152600401610756906123a7565b604051600090339083908381818185875af1925050503d8060008114610ec4576040519150601f19603f3d011682016040523d82523d6000602084013e610ec9565b606091505b5050905080610ced57600080fd5b606060028054610773906124bd565b6007546001600160a01b03163314610f105760405162461bcd60e51b8152600401610756906123a7565b828114610f695760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610756565b600080610f7560005490565b905060005b85811015610fb857868682818110610f9457610f94612553565b9050602002013583610fa6919061242f565b9250610fb1816124f8565b9050610f7a565b50600b54610fc6838361242f565b11156110145760405162461bcd60e51b815260206004820152601760248201527f546f6f206d616e79204461776e736372617463686572730000000000000000006044820152606401610756565b6000915060005b8381101561107b5761106b85858381811061103857611038612553565b905060200201602081019061104d9190612078565b88888481811061105f5761105f612553565b90506020020135611b0a565b611074816124f8565b905061101b565b50505050505050565b600260085414156110d75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610756565b60026008556000548161112c5760405162461bcd60e51b815260206004820152601a60248201527f43616e74206d696e742030204461776e736372617463686572730000000000006044820152606401610756565b600e5482111561117e5760405162461bcd60e51b815260206004820152601d60248201527f43616e74206d696e74206d6f7265204461776e736372617463686572730000006044820152606401610756565b600b5461118b838361242f565b11156111e35760405162461bcd60e51b815260206004820152602160248201527f43616e7420657863656564204461776e7363726174636865727320737570706c6044820152607960f81b6064820152608401610756565b81600a546111f1919061245b565b3410156111fd57600080fd5b6112073383611b0a565b50506001600855565b6001600160a01b0382163314156112695760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610756565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600260085414156113285760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610756565b600260085560008054338252600f602052604090912054600d5461134c848361242f565b11156113aa5760405162461bcd60e51b815260206004820152602760248201527f4d6178204461776e7363726174636865727320706572206164647265737320656044820152661e18d95959195960ca1b6064820152608401610756565b600083116113fa5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e742030204461776e73637261746368657273000000006044820152606401610756565b600c54611407848461242f565b11156114615760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420657863656564204461776e7363726174636865727320737570604482015262706c7960e81b6064820152608401610756565b60005b8381101561149d57336000908152600f60205260408120805491611487836124f8565b919050555080611496906124f8565b9050611464565b506114a83384611b0a565b5050600160085550565b6114bd8484846116fc565b6114c984848484611b24565b6114e55760405162461bcd60e51b8152600401610756906123dc565b50505050565b6007546001600160a01b031633146115155760405162461bcd60e51b8152600401610756906123a7565b600c55565b6060611527826000541190565b61157d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610756565b6000611587611c32565b905060008151116115a757604051806020016040528060008152506115d2565b806115b184611c41565b6040516020016115c2929190612318565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146116035760405162461bcd60e51b8152600401610756906123a7565b600d55565b6007546001600160a01b031633146116325760405162461bcd60e51b8152600401610756906123a7565b6001600160a01b0381166116975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610756565b610c0181611ab8565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611707826119e1565b80519091506000906001600160a01b0316336001600160a01b0316148061173e575033611733846107f6565b6001600160a01b0316145b80611750575081516117509033610671565b9050806117ba5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610756565b846001600160a01b031682600001516001600160a01b03161461182e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610756565b6001600160a01b0384166118925760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610756565b6118a260008484600001516116a0565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119975761194a816000541190565b15611997578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611a00826000541190565b611a5f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610756565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611aae579392505050565b5060001901611a61565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ced828260405180602001604052806000815250611d3f565b60006001600160a01b0384163b15611c2657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b68903390899088908890600401612357565b602060405180830381600087803b158015611b8257600080fd5b505af1925050508015611bb2575060408051601f3d908101601f19168201909252611baf9181019061226d565b60015b611c0c573d808015611be0576040519150601f19603f3d011682016040523d82523d6000602084013e611be5565b606091505b508051611c045760405162461bcd60e51b8152600401610756906123dc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c2a565b5060015b949350505050565b606060098054610773906124bd565b606081611c655750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8f5780611c79816124f8565b9150611c889050600a83612447565b9150611c69565b60008167ffffffffffffffff811115611caa57611caa612569565b6040519080825280601f01601f191660200182016040528015611cd4576020820181803683370190505b5090505b8415611c2a57611ce960018361247a565b9150611cf6600a86612513565b611d0190603061242f565b60f81b818381518110611d1657611d16612553565b60200101906001600160f81b031916908160001a905350611d38600a86612447565b9450611cd8565b61099483838360016000546001600160a01b038516611daa5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610756565b83611e085760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610756565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611f015760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ef557611ed96000888488611b24565b611ef55760405162461bcd60e51b8152600401610756906123dc565b60019182019101611e86565b506000556119da565b828054611f16906124bd565b90600052602060002090601f016020900481019282611f385760008555611f7e565b82601f10611f5157805160ff1916838001178555611f7e565b82800160010185558215611f7e579182015b82811115611f7e578251825591602001919060010190611f63565b50610cac9291505b80821115610cac5760008155600101611f86565b600067ffffffffffffffff80841115611fb557611fb5612569565b604051601f8501601f19908116603f01168101908282118183101715611fdd57611fdd612569565b81604052809350858152868686011115611ff657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461202757600080fd5b919050565b60008083601f84011261203e57600080fd5b50813567ffffffffffffffff81111561205657600080fd5b6020830191508360208260051b850101111561207157600080fd5b9250929050565b60006020828403121561208a57600080fd5b6115d282612010565b600080604083850312156120a657600080fd5b6120af83612010565b91506120bd60208401612010565b90509250929050565b6000806000606084860312156120db57600080fd5b6120e484612010565b92506120f260208501612010565b9150604084013590509250925092565b6000806000806080858703121561211857600080fd5b61212185612010565b935061212f60208601612010565b925060408501359150606085013567ffffffffffffffff81111561215257600080fd5b8501601f8101871361216357600080fd5b61217287823560208401611f9a565b91505092959194509250565b6000806040838503121561219157600080fd5b61219a83612010565b9150602083013580151581146121af57600080fd5b809150509250929050565b600080604083850312156121cd57600080fd5b6121d683612010565b946020939093013593505050565b600080600080604085870312156121fa57600080fd5b843567ffffffffffffffff8082111561221257600080fd5b61221e8883890161202c565b9096509450602087013591508082111561223757600080fd5b506122448782880161202c565b95989497509550505050565b60006020828403121561226257600080fd5b81356115d28161257f565b60006020828403121561227f57600080fd5b81516115d28161257f565b60006020828403121561229c57600080fd5b813567ffffffffffffffff8111156122b357600080fd5b8201601f810184136122c457600080fd5b611c2a84823560208401611f9a565b6000602082840312156122e557600080fd5b5035919050565b60008151808452612304816020860160208601612491565b601f01601f19169290920160200192915050565b6000835161232a818460208801612491565b83519083019061233e818360208801612491565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238a908301846122ec565b9695505050505050565b6020815260006115d260208301846122ec565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561244257612442612527565b500190565b6000826124565761245661253d565b500490565b600081600019048311821515161561247557612475612527565b500290565b60008282101561248c5761248c612527565b500390565b60005b838110156124ac578181015183820152602001612494565b838111156114e55750506000910152565b600181811c908216806124d157607f821691505b602082108114156124f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561250c5761250c612527565b5060010190565b6000826125225761252261253d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0157600080fdfea26469706673582212207090a188af030b7c49b464d59ddcc39b377d355a333f7620aac4b829576a785c64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610600578063d5abeb0114610620578063dc4e66b514610636578063e985e9c514610656578063f2fde38b1461069f57600080fd5b8063a0712d681461057a578063a22cb4651461058d578063a4146733146105ad578063b88d4fde146105c0578063bde12d73146105e057600080fd5b806377ad99f0116100f257806377ad99f0146104e75780637c6b172d146104fa5780638da5cb5b1461052757806395d89b411461054557806396ea3a471461055a57600080fd5b80636352211e1461047d5780636c0360eb1461049d57806370a08231146104b2578063715018a6146104d257600080fd5b80632f745c59116101b1578063485a68a311610175578063485a68a3146103f25780634f6ccce71461040857806355f804b31461042857806356569a1d146104485780635c975abb1461045e57600080fd5b80632f745c591461037457806334c8fd75146103945780633ccfd60b146103aa57806342842e0e146103b257806344a0d68a146103d257600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806313faede6146102fb57806318160ddd1461031f578063228025e81461033457806323b872dd1461035457600080fd5b806301ffc9a71461022a578063022d67dd1461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004612250565b6106bf565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a3660046122d3565b61072c565b005b34801561028d57600080fd5b50610296610764565b6040516102569190612394565b3480156102af57600080fd5b506102c36102be3660046122d3565b6107f6565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f63660046121ba565b610881565b34801561030757600080fd5b50610311600a5481565b604051908152602001610256565b34801561032b57600080fd5b50600054610311565b34801561034057600080fd5b5061027f61034f3660046122d3565b610999565b34801561036057600080fd5b5061027f61036f3660046120c6565b610a1a565b34801561038057600080fd5b5061031161038f3660046121ba565b610a25565b3480156103a057600080fd5b50610311600e5481565b61027f610b82565b3480156103be57600080fd5b5061027f6103cd3660046120c6565b610c04565b3480156103de57600080fd5b5061027f6103ed3660046122d3565b610c1f565b3480156103fe57600080fd5b50610311600c5481565b34801561041457600080fd5b506103116104233660046122d3565b610c4e565b34801561043457600080fd5b5061027f61044336600461228a565b610cb0565b34801561045457600080fd5b50610311600d5481565b34801561046a57600080fd5b50600754600160a01b900460ff1661024a565b34801561048957600080fd5b506102c36104983660046122d3565b610cf1565b3480156104a957600080fd5b50610296610d03565b3480156104be57600080fd5b506103116104cd366004612078565b610d91565b3480156104de57600080fd5b5061027f610e22565b61027f6104f53660046122d3565b610e58565b34801561050657600080fd5b50610311610515366004612078565b600f6020526000908152604090205481565b34801561053357600080fd5b506007546001600160a01b03166102c3565b34801561055157600080fd5b50610296610ed7565b34801561056657600080fd5b5061027f6105753660046121e4565b610ee6565b61027f6105883660046122d3565b611084565b34801561059957600080fd5b5061027f6105a836600461217e565b611210565b61027f6105bb3660046122d3565b6112d5565b3480156105cc57600080fd5b5061027f6105db366004612102565b6114b2565b3480156105ec57600080fd5b5061027f6105fb3660046122d3565b6114eb565b34801561060c57600080fd5b5061029661061b3660046122d3565b61151a565b34801561062c57600080fd5b50610311600b5481565b34801561064257600080fd5b5061027f6106513660046122d3565b6115d9565b34801561066257600080fd5b5061024a610671366004612093565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106ab57600080fd5b5061027f6106ba366004612078565b611608565b60006001600160e01b031982166380ac58cd60e01b14806106f057506001600160e01b03198216635b5e139f60e01b145b8061070b57506001600160e01b0319821663780e9d6360e01b145b8061072657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461075f5760405162461bcd60e51b8152600401610756906123a7565b60405180910390fd5b600e55565b606060018054610773906124bd565b80601f016020809104026020016040519081016040528092919081815260200182805461079f906124bd565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b6000610803826000541190565b6108655760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610756565b506000908152600560205260409020546001600160a01b031690565b600061088c82610cf1565b9050806001600160a01b0316836001600160a01b031614156108fb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610756565b336001600160a01b038216148061091757506109178133610671565b6109895760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610756565b6109948383836116a0565b505050565b6007546001600160a01b031633146109c35760405162461bcd60e51b8152600401610756906123a7565b600b54811115610a155760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365206d617820737570706c790000000000006044820152606401610756565b600b55565b6109948383836116fc565b6000610a3083610d91565b8210610a895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610756565b600080549080805b83811015610b22576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ae457805192505b876001600160a01b0316836001600160a01b03161415610b195786841415610b125750935061072692505050565b6001909301925b50600101610a91565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610756565b6007546001600160a01b03163314610bac5760405162461bcd60e51b8152600401610756906123a7565b604051600090339047908381818185875af1925050503d8060008114610bee576040519150601f19603f3d011682016040523d82523d6000602084013e610bf3565b606091505b5050905080610c0157600080fd5b50565b610994838383604051806020016040528060008152506114b2565b6007546001600160a01b03163314610c495760405162461bcd60e51b8152600401610756906123a7565b600a55565b600080548210610cac5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610756565b5090565b6007546001600160a01b03163314610cda5760405162461bcd60e51b8152600401610756906123a7565b8051610ced906009906020840190611f0a565b5050565b6000610cfc826119e1565b5192915050565b60098054610d10906124bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3c906124bd565b8015610d895780601f10610d5e57610100808354040283529160200191610d89565b820191906000526020600020905b815481529060010190602001808311610d6c57829003601f168201915b505050505081565b60006001600160a01b038216610dfd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610756565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e4c5760405162461bcd60e51b8152600401610756906123a7565b610e566000611ab8565b565b6007546001600160a01b03163314610e825760405162461bcd60e51b8152600401610756906123a7565b604051600090339083908381818185875af1925050503d8060008114610ec4576040519150601f19603f3d011682016040523d82523d6000602084013e610ec9565b606091505b5050905080610ced57600080fd5b606060028054610773906124bd565b6007546001600160a01b03163314610f105760405162461bcd60e51b8152600401610756906123a7565b828114610f695760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610756565b600080610f7560005490565b905060005b85811015610fb857868682818110610f9457610f94612553565b9050602002013583610fa6919061242f565b9250610fb1816124f8565b9050610f7a565b50600b54610fc6838361242f565b11156110145760405162461bcd60e51b815260206004820152601760248201527f546f6f206d616e79204461776e736372617463686572730000000000000000006044820152606401610756565b6000915060005b8381101561107b5761106b85858381811061103857611038612553565b905060200201602081019061104d9190612078565b88888481811061105f5761105f612553565b90506020020135611b0a565b611074816124f8565b905061101b565b50505050505050565b600260085414156110d75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610756565b60026008556000548161112c5760405162461bcd60e51b815260206004820152601a60248201527f43616e74206d696e742030204461776e736372617463686572730000000000006044820152606401610756565b600e5482111561117e5760405162461bcd60e51b815260206004820152601d60248201527f43616e74206d696e74206d6f7265204461776e736372617463686572730000006044820152606401610756565b600b5461118b838361242f565b11156111e35760405162461bcd60e51b815260206004820152602160248201527f43616e7420657863656564204461776e7363726174636865727320737570706c6044820152607960f81b6064820152608401610756565b81600a546111f1919061245b565b3410156111fd57600080fd5b6112073383611b0a565b50506001600855565b6001600160a01b0382163314156112695760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610756565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600260085414156113285760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610756565b600260085560008054338252600f602052604090912054600d5461134c848361242f565b11156113aa5760405162461bcd60e51b815260206004820152602760248201527f4d6178204461776e7363726174636865727320706572206164647265737320656044820152661e18d95959195960ca1b6064820152608401610756565b600083116113fa5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e742030204461776e73637261746368657273000000006044820152606401610756565b600c54611407848461242f565b11156114615760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420657863656564204461776e7363726174636865727320737570604482015262706c7960e81b6064820152608401610756565b60005b8381101561149d57336000908152600f60205260408120805491611487836124f8565b919050555080611496906124f8565b9050611464565b506114a83384611b0a565b5050600160085550565b6114bd8484846116fc565b6114c984848484611b24565b6114e55760405162461bcd60e51b8152600401610756906123dc565b50505050565b6007546001600160a01b031633146115155760405162461bcd60e51b8152600401610756906123a7565b600c55565b6060611527826000541190565b61157d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610756565b6000611587611c32565b905060008151116115a757604051806020016040528060008152506115d2565b806115b184611c41565b6040516020016115c2929190612318565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146116035760405162461bcd60e51b8152600401610756906123a7565b600d55565b6007546001600160a01b031633146116325760405162461bcd60e51b8152600401610756906123a7565b6001600160a01b0381166116975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610756565b610c0181611ab8565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611707826119e1565b80519091506000906001600160a01b0316336001600160a01b0316148061173e575033611733846107f6565b6001600160a01b0316145b80611750575081516117509033610671565b9050806117ba5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610756565b846001600160a01b031682600001516001600160a01b03161461182e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610756565b6001600160a01b0384166118925760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610756565b6118a260008484600001516116a0565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119975761194a816000541190565b15611997578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611a00826000541190565b611a5f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610756565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611aae579392505050565b5060001901611a61565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ced828260405180602001604052806000815250611d3f565b60006001600160a01b0384163b15611c2657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b68903390899088908890600401612357565b602060405180830381600087803b158015611b8257600080fd5b505af1925050508015611bb2575060408051601f3d908101601f19168201909252611baf9181019061226d565b60015b611c0c573d808015611be0576040519150601f19603f3d011682016040523d82523d6000602084013e611be5565b606091505b508051611c045760405162461bcd60e51b8152600401610756906123dc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c2a565b5060015b949350505050565b606060098054610773906124bd565b606081611c655750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c8f5780611c79816124f8565b9150611c889050600a83612447565b9150611c69565b60008167ffffffffffffffff811115611caa57611caa612569565b6040519080825280601f01601f191660200182016040528015611cd4576020820181803683370190505b5090505b8415611c2a57611ce960018361247a565b9150611cf6600a86612513565b611d0190603061242f565b60f81b818381518110611d1657611d16612553565b60200101906001600160f81b031916908160001a905350611d38600a86612447565b9450611cd8565b61099483838360016000546001600160a01b038516611daa5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610756565b83611e085760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610756565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611f015760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ef557611ed96000888488611b24565b611ef55760405162461bcd60e51b8152600401610756906123dc565b60019182019101611e86565b506000556119da565b828054611f16906124bd565b90600052602060002090601f016020900481019282611f385760008555611f7e565b82601f10611f5157805160ff1916838001178555611f7e565b82800160010185558215611f7e579182015b82811115611f7e578251825591602001919060010190611f63565b50610cac9291505b80821115610cac5760008155600101611f86565b600067ffffffffffffffff80841115611fb557611fb5612569565b604051601f8501601f19908116603f01168101908282118183101715611fdd57611fdd612569565b81604052809350858152868686011115611ff657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461202757600080fd5b919050565b60008083601f84011261203e57600080fd5b50813567ffffffffffffffff81111561205657600080fd5b6020830191508360208260051b850101111561207157600080fd5b9250929050565b60006020828403121561208a57600080fd5b6115d282612010565b600080604083850312156120a657600080fd5b6120af83612010565b91506120bd60208401612010565b90509250929050565b6000806000606084860312156120db57600080fd5b6120e484612010565b92506120f260208501612010565b9150604084013590509250925092565b6000806000806080858703121561211857600080fd5b61212185612010565b935061212f60208601612010565b925060408501359150606085013567ffffffffffffffff81111561215257600080fd5b8501601f8101871361216357600080fd5b61217287823560208401611f9a565b91505092959194509250565b6000806040838503121561219157600080fd5b61219a83612010565b9150602083013580151581146121af57600080fd5b809150509250929050565b600080604083850312156121cd57600080fd5b6121d683612010565b946020939093013593505050565b600080600080604085870312156121fa57600080fd5b843567ffffffffffffffff8082111561221257600080fd5b61221e8883890161202c565b9096509450602087013591508082111561223757600080fd5b506122448782880161202c565b95989497509550505050565b60006020828403121561226257600080fd5b81356115d28161257f565b60006020828403121561227f57600080fd5b81516115d28161257f565b60006020828403121561229c57600080fd5b813567ffffffffffffffff8111156122b357600080fd5b8201601f810184136122c457600080fd5b611c2a84823560208401611f9a565b6000602082840312156122e557600080fd5b5035919050565b60008151808452612304816020860160208601612491565b601f01601f19169290920160200192915050565b6000835161232a818460208801612491565b83519083019061233e818360208801612491565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238a908301846122ec565b9695505050505050565b6020815260006115d260208301846122ec565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561244257612442612527565b500190565b6000826124565761245661253d565b500490565b600081600019048311821515161561247557612475612527565b500290565b60008282101561248c5761248c612527565b500390565b60005b838110156124ac578181015183820152602001612494565b838111156114e55750506000910152565b600181811c908216806124d157607f821691505b602082108114156124f257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561250c5761250c612527565b5060010190565b6000826125225761252261253d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0157600080fdfea26469706673582212207090a188af030b7c49b464d59ddcc39b377d355a333f7620aac4b829576a785c64736f6c63430008070033

Deployed Bytecode Sourcemap

51271:4063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30948:372;;;;;;;;;;-1:-1:-1;30948:372:0;;;;;:::i;:::-;;:::i;:::-;;;7173:14:1;;7166:22;7148:41;;7136:2;7121:18;30948:372:0;;;;;;;;54705:122;;;;;;;;;;-1:-1:-1;54705:122:0;;;;;:::i;:::-;;:::i;:::-;;32834:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34396:214::-;;;;;;;;;;-1:-1:-1;34396:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6471:32:1;;;6453:51;;6441:2;6426:18;34396:214:0;6307:203:1;33917:413:0;;;;;;;;;;-1:-1:-1;33917:413:0;;;;;:::i;:::-;;:::i;51409:33::-;;;;;;;;;;;;;;;;;;;19015:25:1;;;19003:2;18988:18;51409:33:0;18869:177:1;29205:100:0;;;;;;;;;;-1:-1:-1;29258:7:0;29285:12;29205:100;;54273:182;;;;;;;;;;-1:-1:-1;54273:182:0;;;;;:::i;:::-;;:::i;35272:162::-;;;;;;;;;;-1:-1:-1;35272:162:0;;;;;:::i;:::-;;:::i;29869:1007::-;;;;;;;;;;-1:-1:-1;29869:1007:0;;;;;:::i;:::-;;:::i;51571:42::-;;;;;;;;;;;;;;;;54959:192;;;:::i;35505:177::-;;;;;;;;;;-1:-1:-1;35505:177:0;;;;;:::i;:::-;;:::i;54179:86::-;;;;;;;;;;-1:-1:-1;54179:86:0;;;;;:::i;:::-;;:::i;51487:29::-;;;;;;;;;;;;;;;;29382:187;;;;;;;;;;-1:-1:-1;29382:187:0;;;;;:::i;:::-;;:::i;54593:104::-;;;;;;;;;;-1:-1:-1;54593:104:0;;;;;:::i;:::-;;:::i;51523:41::-;;;;;;;;;;;;;;;;45122:86;;;;;;;;;;-1:-1:-1;45193:7:0;;-1:-1:-1;;;45193:7:0;;;;45122:86;;32643:124;;;;;;;;;;-1:-1:-1;32643:124:0;;;;;:::i;:::-;;:::i;51381:21::-;;;;;;;;;;;;;:::i;31384:221::-;;;;;;;;;;-1:-1:-1;31384:221:0;;;;;:::i;:::-;;:::i;47939:94::-;;;;;;;;;;;;;:::i;55159:172::-;;;;;;:::i;:::-;;:::i;51622:59::-;;;;;;;;;;-1:-1:-1;51622:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;47288:87;;;;;;;;;;-1:-1:-1;47361:6:0;;-1:-1:-1;;;;;47361:6:0;47288:87;;33003:104;;;;;;;;;;;;;:::i;53032:682::-;;;;;;;;;;-1:-1:-1;53032:682:0;;;;;:::i;:::-;;:::i;52560:464::-;;;;;;:::i;:::-;;:::i;34682:288::-;;;;;;;;;;-1:-1:-1;34682:288:0;;;;;:::i;:::-;;:::i;51897:653::-;;;;;;:::i;:::-;;:::i;35753:355::-;;;;;;;;;;-1:-1:-1;35753:355:0;;;;;:::i;:::-;;:::i;54462:123::-;;;;;;;;;;-1:-1:-1;54462:123:0;;;;;:::i;:::-;;:::i;53722:445::-;;;;;;;;;;-1:-1:-1;53722:445:0;;;;;:::i;:::-;;:::i;51449:31::-;;;;;;;;;;;;;;;;54835:118;;;;;;;;;;-1:-1:-1;54835:118:0;;;;;:::i;:::-;;:::i;35041:164::-;;;;;;;;;;-1:-1:-1;35041:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35162:25:0;;;35138:4;35162:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35041:164;48188:229;;;;;;;;;;-1:-1:-1;48188:229:0;;;;;:::i;:::-;;:::i;30948:372::-;31050:4;-1:-1:-1;;;;;;31087:40:0;;-1:-1:-1;;;31087:40:0;;:105;;-1:-1:-1;;;;;;;31144:48:0;;-1:-1:-1;;;31144:48:0;31087:105;:172;;;-1:-1:-1;;;;;;;31209:50:0;;-1:-1:-1;;;31209:50:0;31087:172;:225;;;-1:-1:-1;;;;;;;;;;20573:40:0;;;31276:36;31067:245;30948:372;-1:-1:-1;;30948:372:0:o;54705:122::-;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;;;;;;;;;54786:23:::1;:33:::0;54705:122::o;32834:100::-;32888:13;32921:5;32914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32834:100;:::o;34396:214::-;34464:7;34492:16;34500:7;36420:4;36454:12;-1:-1:-1;36444:22:0;36363:111;34492:16;34484:74;;;;-1:-1:-1;;;34484:74:0;;18657:2:1;34484:74:0;;;18639:21:1;18696:2;18676:18;;;18669:30;18735:34;18715:18;;;18708:62;-1:-1:-1;;;18786:18:1;;;18779:43;18839:19;;34484:74:0;18455:409:1;34484:74:0;-1:-1:-1;34578:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34578:24:0;;34396:214::o;33917:413::-;33990:13;34006:24;34022:7;34006:15;:24::i;:::-;33990:40;;34055:5;-1:-1:-1;;;;;34049:11:0;:2;-1:-1:-1;;;;;34049:11:0;;;34041:58;;;;-1:-1:-1;;;34041:58:0;;15832:2:1;34041:58:0;;;15814:21:1;15871:2;15851:18;;;15844:30;15910:34;15890:18;;;15883:62;-1:-1:-1;;;15961:18:1;;;15954:32;16003:19;;34041:58:0;15630:398:1;34041:58:0;8991:10;-1:-1:-1;;;;;34134:21:0;;;;:62;;-1:-1:-1;34159:37:0;34176:5;8991:10;35041:164;:::i;34159:37::-;34112:169;;;;-1:-1:-1;;;34112:169:0;;12390:2:1;34112:169:0;;;12372:21:1;12429:2;12409:18;;;12402:30;12468:34;12448:18;;;12441:62;12539:27;12519:18;;;12512:55;12584:19;;34112:169:0;12188:421:1;34112:169:0;34294:28;34303:2;34307:7;34316:5;34294:8;:28::i;:::-;33979:351;33917:413;;:::o;54273:182::-;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;54371:9:::1;;54354:13;:26;;54346:65;;;::::0;-1:-1:-1;;;54346:65:0;;12816:2:1;54346:65:0::1;::::0;::::1;12798:21:1::0;12855:2;12835:18;;;12828:30;12894:28;12874:18;;;12867:56;12940:18;;54346:65:0::1;12614:350:1::0;54346:65:0::1;54422:9;:25:::0;54273:182::o;35272:162::-;35398:28;35408:4;35414:2;35418:7;35398:9;:28::i;29869:1007::-;29958:7;29994:16;30004:5;29994:9;:16::i;:::-;29986:5;:24;29978:71;;;;-1:-1:-1;;;29978:71:0;;7626:2:1;29978:71:0;;;7608:21:1;7665:2;7645:18;;;7638:30;7704:34;7684:18;;;7677:62;-1:-1:-1;;;7755:18:1;;;7748:32;7797:19;;29978:71:0;7424:398:1;29978:71:0;30060:22;29285:12;;;30060:22;;30323:466;30343:14;30339:1;:18;30323:466;;;30383:31;30417:14;;;:11;:14;;;;;;;;;30383:48;;;;;;;;;-1:-1:-1;;;;;30383:48:0;;;;;-1:-1:-1;;;30383:48:0;;;;;;;;;;;;30454:28;30450:111;;30527:14;;;-1:-1:-1;30450:111:0;30604:5;-1:-1:-1;;;;;30583:26:0;:17;-1:-1:-1;;;;;30583:26:0;;30579:195;;;30653:5;30638:11;:20;30634:85;;;-1:-1:-1;30694:1:0;-1:-1:-1;30687:8:0;;-1:-1:-1;;;30687:8:0;30634:85;30741:13;;;;;30579:195;-1:-1:-1;30359:3:0;;30323:466;;;-1:-1:-1;30812:56:0;;-1:-1:-1;;;30812:56:0;;17466:2:1;30812:56:0;;;17448:21:1;17505:2;17485:18;;;17478:30;17544:34;17524:18;;;17517:62;-1:-1:-1;;;17595:18:1;;;17588:44;17649:19;;30812:56:0;17264:410:1;54959:192:0;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;55034:82:::1;::::0;55016:12:::1;::::0;55042:10:::1;::::0;55080:21:::1;::::0;55016:12;55034:82;55016:12;55034:82;55080:21;55042:10;55034:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55015:101;;;55135:7;55127:16;;;::::0;::::1;;55004:147;54959:192::o:0;35505:177::-;35635:39;35652:4;35658:2;35662:7;35635:39;;;;;;;;;;;;:16;:39::i;54179:86::-;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;54242:4:::1;:15:::0;54179:86::o;29382:187::-;29449:7;29285:12;;29477:5;:21;29469:69;;;;-1:-1:-1;;;29469:69:0;;10776:2:1;29469:69:0;;;10758:21:1;10815:2;10795:18;;;10788:30;10854:34;10834:18;;;10827:62;-1:-1:-1;;;10905:18:1;;;10898:33;10948:19;;29469:69:0;10574:399:1;29469:69:0;-1:-1:-1;29556:5:0;29382:187::o;54593:104::-;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;54668:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54593:104:::0;:::o;32643:124::-;32707:7;32734:20;32746:7;32734:11;:20::i;:::-;:25;;32643:124;-1:-1:-1;;32643:124:0:o;51381:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31384:221::-;31448:7;-1:-1:-1;;;;;31476:19:0;;31468:75;;;;-1:-1:-1;;;31468:75:0;;13171:2:1;31468:75:0;;;13153:21:1;13210:2;13190:18;;;13183:30;13249:34;13229:18;;;13222:62;-1:-1:-1;;;13300:18:1;;;13293:41;13351:19;;31468:75:0;12969:407:1;31468:75:0;-1:-1:-1;;;;;;31569:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31569:27:0;;31384:221::o;47939:94::-;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;48004:21:::1;48022:1;48004:9;:21::i;:::-;47939:94::o:0;55159:172::-;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;55252:44:::1;::::0;55234:12:::1;::::0;55260:10:::1;::::0;55284:7;;55234:12;55252:44;55234:12;55252:44;55284:7;55260:10;55252:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55233:63;;;55315:7;55307:16;;;::::0;::::1;33003:104:::0;33059:13;33092:7;33085:14;;;;;:::i;53032:682::-;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;53180:35;;::::1;53158:118;;;::::0;-1:-1:-1;;;53158:118:0;;11586:2:1;53158:118:0::1;::::0;::::1;11568:21:1::0;11625:2;11605:18;;;11598:30;11664:34;11644:18;;;11637:62;-1:-1:-1;;;11715:18:1;;;11708:31;11756:19;;53158:118:0::1;11384:397:1::0;53158:118:0::1;53287:21;53323:9:::0;53335:13:::1;29258:7:::0;29285:12;;29205:100;53335:13:::1;53323:25;;53364:9;53359:101;53379:19:::0;;::::1;53359:101;;;53437:8;;53446:1;53437:11;;;;;;;:::i;:::-;;;;;;;53420:28;;;;;:::i;:::-;::::0;-1:-1:-1;53400:3:0::1;::::0;::::1;:::i;:::-;;;53359:101;;;-1:-1:-1::0;53499:9:0::1;::::0;53478:17:::1;53482:13:::0;53478:1;:17:::1;:::i;:::-;:30;;53470:66;;;::::0;-1:-1:-1;;;53470:66:0;;13583:2:1;53470:66:0::1;::::0;::::1;13565:21:1::0;13622:2;13602:18;;;13595:30;13661:25;13641:18;;;13634:53;13704:18;;53470:66:0::1;13381:347:1::0;53470:66:0::1;53547:20;;;53583:9;53578:110;53598:20:::0;;::::1;53578:110;;;53640:36;53650:9;;53660:1;53650:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;53664:8;;53673:1;53664:11;;;;;;;:::i;:::-;;;;;;;53640:9;:36::i;:::-;53620:3;::::0;::::1;:::i;:::-;;;53578:110;;;-1:-1:-1::0;;;;;;;53032:682:0:o;52560:464::-;50283:1;50879:7;;:19;;50871:63;;;;-1:-1:-1;;;50871:63:0;;17881:2:1;50871:63:0;;;17863:21:1;17920:2;17900:18;;;17893:30;17959:33;17939:18;;;17932:61;18010:18;;50871:63:0;17679:355:1;50871:63:0;50283:1;51012:7;:18;52634:9:::1;29285:12:::0;52678:15;52670:54:::1;;;::::0;-1:-1:-1;;;52670:54:0;;14342:2:1;52670:54:0::1;::::0;::::1;14324:21:1::0;14381:2;14361:18;;;14354:30;14420:28;14400:18;;;14393:56;14466:18;;52670:54:0::1;14140:350:1::0;52670:54:0::1;52758:23;;52743:11;:38;;52735:81;;;::::0;-1:-1:-1;;;52735:81:0;;8029:2:1;52735:81:0::1;::::0;::::1;8011:21:1::0;8068:2;8048:18;;;8041:30;8107:31;8087:18;;;8080:59;8156:18;;52735:81:0::1;7827:353:1::0;52735:81:0::1;52854:9;::::0;52835:15:::1;52839:11:::0;52835:1;:15:::1;:::i;:::-;:28;;52827:74;;;::::0;-1:-1:-1;;;52827:74:0;;11988:2:1;52827:74:0::1;::::0;::::1;11970:21:1::0;12027:2;12007:18;;;12000:30;12066:34;12046:18;;;12039:62;-1:-1:-1;;;12117:18:1;;;12110:31;12158:19;;52827:74:0::1;11786:397:1::0;52827:74:0::1;52940:11;52933:4;;:18;;;;:::i;:::-;52920:9;:31;;52912:40;;;::::0;::::1;;52963:34;52973:10;52985:11;52963:9;:34::i;:::-;-1:-1:-1::0;;50239:1:0;51191:7;:22;52560:464::o;34682:288::-;-1:-1:-1;;;;;34777:24:0;;8991:10;34777:24;;34769:63;;;;-1:-1:-1;;;34769:63:0;;15058:2:1;34769:63:0;;;15040:21:1;15097:2;15077:18;;;15070:30;15136:28;15116:18;;;15109:56;15182:18;;34769:63:0;14856:350:1;34769:63:0;8991:10;34845:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34845:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34845:53:0;;;;;;;;;;34914:48;;7148:41:1;;;34845:42:0;;8991:10;34914:48;;7121:18:1;34914:48:0;;;;;;;34682:288;;:::o;51897:653::-;50283:1;50879:7;;:19;;50871:63;;;;-1:-1:-1;;;50871:63:0;;17881:2:1;50871:63:0;;;17863:21:1;17920:2;17900:18;;;17893:30;17959:33;17939:18;;;17932:61;18010:18;;50871:63:0;17679:355:1;50871:63:0;50283:1;51012:7;:18;51968:9:::1;29285:12:::0;;52062:10:::1;52037:36:::0;;:24:::1;:36;::::0;;;;;;52132:22:::1;::::0;52092:36:::1;52117:11:::0;52037:36;52092::::1;:::i;:::-;:62;;52084:114;;;::::0;-1:-1:-1;;;52084:114:0;;8387:2:1;52084:114:0::1;::::0;::::1;8369:21:1::0;8426:2;8406:18;;;8399:30;8465:34;8445:18;;;8438:62;-1:-1:-1;;;8516:18:1;;;8509:37;8563:19;;52084:114:0::1;8185:403:1::0;52084:114:0::1;52225:1;52211:11;:15;52203:57;;;::::0;-1:-1:-1;;;52203:57:0;;9601:2:1;52203:57:0::1;::::0;::::1;9583:21:1::0;9640:2;9620:18;;;9613:30;9679;9659:18;;;9652:58;9727:18;;52203:57:0::1;9399:352:1::0;52203:57:0::1;52292:7;::::0;52273:15:::1;52277:11:::0;52273:1;:15:::1;:::i;:::-;:26;;52265:75;;;::::0;-1:-1:-1;;;52265:75:0;;8795:2:1;52265:75:0::1;::::0;::::1;8777:21:1::0;8834:2;8814:18;;;8807:30;8873:34;8853:18;;;8846:62;-1:-1:-1;;;8924:18:1;;;8917:33;8967:19;;52265:75:0::1;8593:399:1::0;52265:75:0::1;52350:9;52345:103;52369:11;52365:1;:15;52345:103;;;52427:10;52402:36;::::0;;;:24:::1;:36;::::0;;;;:38;;;::::1;::::0;::::1;:::i;:::-;;;;;;52382:3;;;;:::i;:::-;;;52345:103;;;;52458:34;52468:10;52480:11;52458:9;:34::i;:::-;-1:-1:-1::0;;50239:1:0;51191:7;:22;-1:-1:-1;51897:653:0:o;35753:355::-;35912:28;35922:4;35928:2;35932:7;35912:9;:28::i;:::-;35973:48;35996:4;36002:2;36006:7;36015:5;35973:22;:48::i;:::-;35951:149;;;;-1:-1:-1;;;35951:149:0;;;;;;;:::i;:::-;35753:355;;;;:::o;54462:123::-;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;54550:7:::1;:27:::0;54462:123::o;53722:445::-;53840:13;53879:16;53887:7;36420:4;36454:12;-1:-1:-1;36444:22:0;36363:111;53879:16;53871:62;;;;-1:-1:-1;;;53871:62:0;;9199:2:1;53871:62:0;;;9181:21:1;9238:2;9218:18;;;9211:30;9277:34;9257:18;;;9250:62;-1:-1:-1;;;9328:18:1;;;9321:31;9369:19;;53871:62:0;8997:397:1;53871:62:0;53944:28;53975:10;:8;:10::i;:::-;53944:41;;54047:1;54022:14;54016:28;:32;:143;;;;;;;;;;;;;;;;;54092:14;54108:18;:7;:16;:18::i;:::-;54075:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54016:143;53996:163;53722:445;-1:-1:-1;;;53722:445:0:o;54835:118::-;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;54913:22:::1;:32:::0;54835:118::o;48188:229::-;47361:6;;-1:-1:-1;;;;;47361:6:0;8991:10;47508:23;47500:68;;;;-1:-1:-1;;;47500:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48291:22:0;::::1;48269:110;;;::::0;-1:-1:-1;;;48269:110:0;;9958:2:1;48269:110:0::1;::::0;::::1;9940:21:1::0;9997:2;9977:18;;;9970:30;10036:34;10016:18;;;10009:62;-1:-1:-1;;;10087:18:1;;;10080:36;10133:19;;48269:110:0::1;9756:402:1::0;48269:110:0::1;48390:19;48400:8;48390:9;:19::i;41283:196::-:0;41398:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41398:29:0;-1:-1:-1;;;;;41398:29:0;;;;;;;;;41443:28;;41398:24;;41443:28;;;;;;;41283:196;;;:::o;39163:2002::-;39278:35;39316:20;39328:7;39316:11;:20::i;:::-;39391:18;;39278:58;;-1:-1:-1;39349:22:0;;-1:-1:-1;;;;;39375:34:0;8991:10;-1:-1:-1;;;;;39375:34:0;;:87;;;-1:-1:-1;8991:10:0;39426:20;39438:7;39426:11;:20::i;:::-;-1:-1:-1;;;;;39426:36:0;;39375:87;:154;;;-1:-1:-1;39496:18:0;;39479:50;;8991:10;35041:164;:::i;39479:50::-;39349:181;;39551:17;39543:80;;;;-1:-1:-1;;;39543:80:0;;15413:2:1;39543:80:0;;;15395:21:1;15452:2;15432:18;;;15425:30;15491:34;15471:18;;;15464:62;-1:-1:-1;;;15542:18:1;;;15535:48;15600:19;;39543:80:0;15211:414:1;39543:80:0;39666:4;-1:-1:-1;;;;;39644:26:0;:13;:18;;;-1:-1:-1;;;;;39644:26:0;;39636:77;;;;-1:-1:-1;;;39636:77:0;;13935:2:1;39636:77:0;;;13917:21:1;13974:2;13954:18;;;13947:30;14013:34;13993:18;;;13986:62;-1:-1:-1;;;14064:18:1;;;14057:36;14110:19;;39636:77:0;13733:402:1;39636:77:0;-1:-1:-1;;;;;39732:16:0;;39724:66;;;;-1:-1:-1;;;39724:66:0;;11180:2:1;39724:66:0;;;11162:21:1;11219:2;11199:18;;;11192:30;11258:34;11238:18;;;11231:62;-1:-1:-1;;;11309:18:1;;;11302:35;11354:19;;39724:66:0;10978:401:1;39724:66:0;39911:49;39928:1;39932:7;39941:13;:18;;;39911:8;:49::i;:::-;-1:-1:-1;;;;;40256:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;40256:31:0;;;-1:-1:-1;;;;;40256:31:0;;;-1:-1:-1;;40256:31:0;;;;;;;40302:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40302:29:0;;;;;;;;;;;;;40348:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40393:61:0;;;;-1:-1:-1;;;40438:15:0;40393:61;;;;;;40728:11;;;40758:24;;;;;:29;40728:11;;40758:29;40754:295;;40826:20;40834:11;36420:4;36454:12;-1:-1:-1;36444:22:0;36363:111;40826:20;40822:212;;;40903:18;;;40871:24;;;:11;:24;;;;;;;;:50;;40986:28;;;;40944:70;;-1:-1:-1;;;40944:70:0;-1:-1:-1;;;;;;40944:70:0;;;-1:-1:-1;;;;;40871:50:0;;;40944:70;;;;;;;40822:212;40231:829;41096:7;41092:2;-1:-1:-1;;;;;41077:27:0;41086:4;-1:-1:-1;;;;;41077:27:0;;;;;;;;;;;41115:42;39267:1898;;39163:2002;;;:::o;32044:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;32147:16:0;32155:7;36420:4;36454:12;-1:-1:-1;36444:22:0;36363:111;32147:16;32139:71;;;;-1:-1:-1;;;32139:71:0;;10365:2:1;32139:71:0;;;10347:21:1;10404:2;10384:18;;;10377:30;10443:34;10423:18;;;10416:62;-1:-1:-1;;;10494:18:1;;;10487:40;10544:19;;32139:71:0;10163:406:1;32139:71:0;32268:7;32248:245;32315:31;32349:17;;;:11;:17;;;;;;;;;32315:51;;;;;;;;;-1:-1:-1;;;;;32315:51:0;;;;;-1:-1:-1;;;32315:51:0;;;;;;;;;;;;32389:28;32385:93;;32449:9;32044:537;-1:-1:-1;;;32044:537:0:o;32385:93::-;-1:-1:-1;;;32288:6:0;32248:245;;48425:173;48500:6;;;-1:-1:-1;;;;;48517:17:0;;;-1:-1:-1;;;;;;48517:17:0;;;;;;;48550:40;;48500:6;;;48517:17;48500:6;;48550:40;;48481:16;;48550:40;48470:128;48425:173;:::o;36482:104::-;36551:27;36561:2;36565:8;36551:27;;;;;;;;;;;;:9;:27::i;42044:804::-;42199:4;-1:-1:-1;;;;;42220:13:0;;10653:19;:23;42216:625;;42256:72;;-1:-1:-1;;;42256:72:0;;-1:-1:-1;;;;;42256:36:0;;;;;:72;;8991:10;;42307:4;;42313:7;;42322:5;;42256:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42256:72:0;;;;;;;;-1:-1:-1;;42256:72:0;;;;;;;;;;;;:::i;:::-;;;42252:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42502:13:0;;42498:273;;42545:61;;-1:-1:-1;;;42545:61:0;;;;;;;:::i;42498:273::-;42721:6;42715:13;42706:6;42702:2;42698:15;42691:38;42252:534;-1:-1:-1;;;;;;42379:55:0;-1:-1:-1;;;42379:55:0;;-1:-1:-1;42372:62:0;;42216:625;-1:-1:-1;42825:4:0;42216:625;42044:804;;;;;;:::o;51781:108::-;51841:13;51874:7;51867:14;;;;;:::i;6473:723::-;6529:13;6750:10;6746:53;;-1:-1:-1;;6777:10:0;;;;;;;;;;;;-1:-1:-1;;;6777:10:0;;;;;6473:723::o;6746:53::-;6824:5;6809:12;6865:78;6872:9;;6865:78;;6898:8;;;;:::i;:::-;;-1:-1:-1;6921:10:0;;-1:-1:-1;6929:2:0;6921:10;;:::i;:::-;;;6865:78;;;6953:19;6985:6;6975:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6975:17:0;;6953:39;;7003:154;7010:10;;7003:154;;7037:11;7047:1;7037:11;;:::i;:::-;;-1:-1:-1;7106:10:0;7114:2;7106:5;:10;:::i;:::-;7093:24;;:2;:24;:::i;:::-;7080:39;;7063:6;7070;7063:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7063:56:0;;;;;;;;-1:-1:-1;7134:11:0;7143:2;7134:11;;:::i;:::-;;;7003:154;;36949:163;37072:32;37078:2;37082:8;37092:5;37099:4;37510:20;37533:12;-1:-1:-1;;;;;37564:16:0;;37556:62;;;;-1:-1:-1;;;37556:62:0;;16655:2:1;37556:62:0;;;16637:21:1;16694:2;16674:18;;;16667:30;16733:34;16713:18;;;16706:62;-1:-1:-1;;;16784:18:1;;;16777:31;16825:19;;37556:62:0;16453:397:1;37556:62:0;37637:13;37629:66;;;;-1:-1:-1;;;37629:66:0;;17057:2:1;37629:66:0;;;17039:21:1;17096:2;17076:18;;;17069:30;17135:34;17115:18;;;17108:62;-1:-1:-1;;;17186:18:1;;;17179:38;17234:19;;37629:66:0;16855:404:1;37629:66:0;-1:-1:-1;;;;;38047:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;38047:45:0;;-1:-1:-1;;;;;38047:45:0;;;;;;;;;;38107:50;;;;;;;;;;;;;;38174:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38224:66:0;;;;-1:-1:-1;;;38274:15:0;38224:66;;;;;;;38174:25;;38359:415;38379:8;38375:1;:12;38359:415;;;38418:38;;38443:12;;-1:-1:-1;;;;;38418:38:0;;;38435:1;;38418:38;;38435:1;;38418:38;38479:4;38475:249;;;38542:59;38573:1;38577:2;38581:12;38595:5;38542:22;:59::i;:::-;38508:196;;;;-1:-1:-1;;;38508:196:0;;;;;;;:::i;:::-;38744:14;;;;;38389:3;38359:415;;;-1:-1:-1;38790:12:0;:27;38841:60;35753:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;2416:18;2408:6;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:1:o;3271:773::-;3393:6;3401;3409;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3526:9;3513:23;3555:18;3596:2;3588:6;3585:14;3582:34;;;3612:1;3609;3602:12;3582:34;3651:70;3713:7;3704:6;3693:9;3689:22;3651:70;:::i;:::-;3740:8;;-1:-1:-1;3625:96:1;-1:-1:-1;3828:2:1;3813:18;;3800:32;;-1:-1:-1;3844:16:1;;;3841:36;;;3873:1;3870;3863:12;3841:36;;3912:72;3976:7;3965:8;3954:9;3950:24;3912:72;:::i;:::-;3271:773;;;;-1:-1:-1;4003:8:1;-1:-1:-1;;;;3271:773:1:o;4049:245::-;4107:6;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;4215:9;4202:23;4234:30;4258:5;4234:30;:::i;4299:249::-;4368:6;4421:2;4409:9;4400:7;4396:23;4392:32;4389:52;;;4437:1;4434;4427:12;4389:52;4469:9;4463:16;4488:30;4512:5;4488:30;:::i;4553:450::-;4622:6;4675:2;4663:9;4654:7;4650:23;4646:32;4643:52;;;4691:1;4688;4681:12;4643:52;4731:9;4718:23;4764:18;4756:6;4753:30;4750:50;;;4796:1;4793;4786:12;4750:50;4819:22;;4872:4;4864:13;;4860:27;-1:-1:-1;4850:55:1;;4901:1;4898;4891:12;4850:55;4924:73;4989:7;4984:2;4971:16;4966:2;4962;4958:11;4924:73;:::i;5008:180::-;5067:6;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;-1:-1:-1;5159:23:1;;5008:180;-1:-1:-1;5008:180:1:o;5193:257::-;5234:3;5272:5;5266:12;5299:6;5294:3;5287:19;5315:63;5371:6;5364:4;5359:3;5355:14;5348:4;5341:5;5337:16;5315:63;:::i;:::-;5432:2;5411:15;-1:-1:-1;;5407:29:1;5398:39;;;;5439:4;5394:50;;5193:257;-1:-1:-1;;5193:257:1:o;5455:637::-;5735:3;5773:6;5767:13;5789:53;5835:6;5830:3;5823:4;5815:6;5811:17;5789:53;:::i;:::-;5905:13;;5864:16;;;;5927:57;5905:13;5864:16;5961:4;5949:17;;5927:57;:::i;:::-;-1:-1:-1;;;6006:20:1;;6035:22;;;6084:1;6073:13;;5455:637;-1:-1:-1;;;;5455:637:1:o;6515:488::-;-1:-1:-1;;;;;6784:15:1;;;6766:34;;6836:15;;6831:2;6816:18;;6809:43;6883:2;6868:18;;6861:34;;;6931:3;6926:2;6911:18;;6904:31;;;6709:4;;6952:45;;6977:19;;6969:6;6952:45;:::i;:::-;6944:53;6515:488;-1:-1:-1;;;;;;6515:488:1:o;7200:219::-;7349:2;7338:9;7331:21;7312:4;7369:44;7409:2;7398:9;7394:18;7386:6;7369:44;:::i;14495:356::-;14697:2;14679:21;;;14716:18;;;14709:30;14775:34;14770:2;14755:18;;14748:62;14842:2;14827:18;;14495:356::o;16033:415::-;16235:2;16217:21;;;16274:2;16254:18;;;16247:30;16313:34;16308:2;16293:18;;16286:62;-1:-1:-1;;;16379:2:1;16364:18;;16357:49;16438:3;16423:19;;16033:415::o;19051:128::-;19091:3;19122:1;19118:6;19115:1;19112:13;19109:39;;;19128:18;;:::i;:::-;-1:-1:-1;19164:9:1;;19051:128::o;19184:120::-;19224:1;19250;19240:35;;19255:18;;:::i;:::-;-1:-1:-1;19289:9:1;;19184:120::o;19309:168::-;19349:7;19415:1;19411;19407:6;19403:14;19400:1;19397:21;19392:1;19385:9;19378:17;19374:45;19371:71;;;19422:18;;:::i;:::-;-1:-1:-1;19462:9:1;;19309:168::o;19482:125::-;19522:4;19550:1;19547;19544:8;19541:34;;;19555:18;;:::i;:::-;-1:-1:-1;19592:9:1;;19482:125::o;19612:258::-;19684:1;19694:113;19708:6;19705:1;19702:13;19694:113;;;19784:11;;;19778:18;19765:11;;;19758:39;19730:2;19723:10;19694:113;;;19825:6;19822:1;19819:13;19816:48;;;-1:-1:-1;;19860:1:1;19842:16;;19835:27;19612:258::o;19875:380::-;19954:1;19950:12;;;;19997;;;20018:61;;20072:4;20064:6;20060:17;20050:27;;20018:61;20125:2;20117:6;20114:14;20094:18;20091:38;20088:161;;;20171:10;20166:3;20162:20;20159:1;20152:31;20206:4;20203:1;20196:15;20234:4;20231:1;20224:15;20088:161;;19875:380;;;:::o;20260:135::-;20299:3;-1:-1:-1;;20320:17:1;;20317:43;;;20340:18;;:::i;:::-;-1:-1:-1;20387:1:1;20376:13;;20260:135::o;20400:112::-;20432:1;20458;20448:35;;20463:18;;:::i;:::-;-1:-1:-1;20497:9:1;;20400:112::o;20517:127::-;20578:10;20573:3;20569:20;20566:1;20559:31;20609:4;20606:1;20599:15;20633:4;20630:1;20623:15;20649:127;20710:10;20705:3;20701:20;20698:1;20691:31;20741:4;20738:1;20731:15;20765:4;20762:1;20755:15;20781:127;20842:10;20837:3;20833:20;20830:1;20823:31;20873:4;20870:1;20863:15;20897:4;20894:1;20887:15;20913:127;20974:10;20969:3;20965:20;20962:1;20955:31;21005:4;21002:1;20995:15;21029:4;21026:1;21019:15;21045:131;-1:-1:-1;;;;;;21119:32:1;;21109:43;;21099:71;;21166:1;21163;21156:12

Swarm Source

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