ETH Price: $3,387.30 (-1.50%)
Gas: 18 Gwei

Token

AztecKids (AZKIDS)
 

Overview

Max Total Supply

107 AZKIDS

Holders

56

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
manekineko.eth
Balance
2 AZKIDS
0xb64c53fe28949054dfa164fd6dc302b94f699755
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Aztec Kids NFT are a very exclusive collection born by the invocation of rejuvenation ritual of the Anime Aztecs NFT, in which we show love and union between individuals.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AztecKids

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/access/Ownable.sol
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
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
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
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;


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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity >=0.7.0 <0.9.0;
 
contract AztecKids is ERC721, Ownable {
  using Strings for uint256;
 
  string public baseURI;
  bytes32 public MERKLE_ROOT;
  mapping(uint256 => bool) internal claimedBitMap;
  uint256 public maxSupply = 500;
  uint256 public cost;
  uint256 public totalSupply = 0;
  uint256 public revealedSupply = 0;
  bool public paused = false;
  bool public ethMintEnabled = false;
 
  constructor(
    string memory _BaseURI
  ) ERC721("AztecKids", "AZKIDS") {
    setBaseURI(_BaseURI);
    for (uint256 i = 1; i <= 10; i++) {
      _safeMint(msg.sender, totalSupply + i);
    }
    totalSupply += 10;
  }
 
  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
 
  // public
  function mint(address _to, uint256 _mintAmount, uint256 index, bytes32[] memory proof) public {
    require(!paused);
    require(totalSupply + _mintAmount <= maxSupply, 'max supply reached.');
    require(!claimedBitMap[index], 'index already claimed.');

    bytes32 node = keccak256(abi.encodePacked(index, _to, _mintAmount));
    require(MerkleProof.verify(proof, MERKLE_ROOT, node), 'MerkleDistributor: Invalid proof.');
    claimedBitMap[index] = true;
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, totalSupply + i);
    }
    totalSupply += _mintAmount;
  }

  function mintWithEth(address _to, uint256 _mintAmount) payable public {
    require(!paused);
    require(ethMintEnabled, 'mint with ETH not enabled');
    require(_mintAmount > 0);
    require(_mintAmount <= 10);
    require(totalSupply + _mintAmount <= maxSupply); 
 
    if (msg.sender != owner()) {
        require(msg.value >= cost * _mintAmount);
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, totalSupply + i);
    }
    totalSupply += _mintAmount;
  }

  function checkClaimed(uint256 index) public view returns (bool){
      return claimedBitMap[index];
  }

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

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);
      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }
 
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
 
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
        : "";
  }
 
  //only owner
  function setMerkleRoot(bytes32 _newMerkleRoot) public onlyOwner {
    MERKLE_ROOT = _newMerkleRoot;
  }
 
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
 
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

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

  function enableEthMint(bool _enable) public onlyOwner {
    ethMintEnabled = _enable;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_BaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MERKLE_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"checkClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableEthMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ethMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWithEth","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealedSupply","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":"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":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newRevealedSupply","type":"uint256"}],"name":"setRevealedSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526101f4600a556000600c819055600d55600e805461ffff191690553480156200002c57600080fd5b5060405162002ac238038062002ac28339810160408190526200004f916200063a565b6040805180820182526009815268417a7465634b69647360b81b602080830191825283518085019094526006845265415a4b49445360d01b9084015281519192916200009e916000916200054b565b508051620000b49060019060208401906200054b565b505050620000d1620000cb6200013b60201b60201c565b6200013f565b620000dc8162000191565b60015b600a81116200011857620001033382600c54620000fd919062000708565b6200020a565b806200010f8162000723565b915050620000df565b50600a600c60008282546200012e919062000708565b9091555062000807915050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620002069060079060208401906200054b565b5050565b620002068282604051806020016040528060008152506200022c60201b60201c565b620002388383620002a4565b620002476000848484620003ec565b6200029f5760405162461bcd60e51b8152602060048201526032602482015260008051602062002aa283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001e8565b505050565b6001600160a01b038216620002fc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001e8565b6000818152600260205260409020546001600160a01b031615620003635760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001e8565b6001600160a01b03821660009081526003602052604081208054600192906200038e90849062000708565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006200040d846001600160a01b03166200054560201b6200127c1760201c565b156200053957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200044790339089908890889060040162000741565b6020604051808303816000875af192505050801562000485575060408051601f3d908101601f19168201909252620004829181019062000797565b60015b6200051e573d808015620004b6576040519150601f19603f3d011682016040523d82523d6000602084013e620004bb565b606091505b508051620005165760405162461bcd60e51b8152602060048201526032602482015260008051602062002aa283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001e8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200053d565b5060015b949350505050565b3b151590565b8280546200055990620007ca565b90600052602060002090601f0160209004810192826200057d5760008555620005c8565b82601f106200059857805160ff1916838001178555620005c8565b82800160010185558215620005c8579182015b82811115620005c8578251825591602001919060010190620005ab565b50620005d6929150620005da565b5090565b5b80821115620005d65760008155600101620005db565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620006245781810151838201526020016200060a565b8381111562000634576000848401525b50505050565b6000602082840312156200064d57600080fd5b81516001600160401b03808211156200066557600080fd5b818401915084601f8301126200067a57600080fd5b8151818111156200068f576200068f620005f1565b604051601f8201601f19908116603f01168101908382118183101715620006ba57620006ba620005f1565b81604052828152876020848701011115620006d457600080fd5b620006e783602083016020880162000607565b979650505050505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156200071e576200071e620006f2565b500190565b60006000198214156200073a576200073a620006f2565b5060010190565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007808160a085016020870162000607565b601f01601f19169190910160a00195945050505050565b600060208284031215620007aa57600080fd5b81516001600160e01b031981168114620007c357600080fd5b9392505050565b600181811c90821680620007df57607f821691505b602082108114156200080157634e487b7160e01b600052602260045260246000fd5b50919050565b61228b80620008176000396000f3fe6080604052600436106102045760003560e01c80635c975abb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105c5578063e985e9c5146105db578063e9ac3ab414610624578063f2fde38b1461063a578063fb1a4f731461065a57600080fd5b8063a22cb46514610546578063b88d4fde14610566578063c87b56dd14610586578063d403a91b146105a657600080fd5b8063715018a6116100e7578063715018a6146104be57806374548fc8146104d35780637cb64759146104f35780638da5cb5b1461051357806395d89b411461053157600080fd5b80635c975abb1461044f5780636352211e146104695780636c0360eb1461048957806370a082311461049e57600080fd5b806323b872dd1161019b578063438b63001161016a578063438b6300146103ac57806344a0d68a146103d957806351e75e8b146103f957806355f804b31461040f578063597d78e11461042f57600080fd5b806323b872dd1461032757806335a55caa146103475780633ccfd60b1461037757806342842e0e1461038c57600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806313faede6146102da57806318160ddd146102fe5780631cae9d2b1461031457600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611bae565b61067a565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611be0565b6106cc565b005b34801561026c57600080fd5b50610275610712565b6040516102359190611c53565b34801561028e57600080fd5b506102a261029d366004611c66565b6107a4565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d5366004611c96565b610839565b3480156102e657600080fd5b506102f0600b5481565b604051908152602001610235565b34801561030a57600080fd5b506102f0600c5481565b61025e610322366004611c96565b61094f565b34801561033357600080fd5b5061025e610342366004611cc0565b610a68565b34801561035357600080fd5b50610229610362366004611c66565b60009081526009602052604090205460ff1690565b34801561038357600080fd5b5061025e610a99565b34801561039857600080fd5b5061025e6103a7366004611cc0565b610b1b565b3480156103b857600080fd5b506103cc6103c7366004611cfc565b610b36565b6040516102359190611d17565b3480156103e557600080fd5b5061025e6103f4366004611c66565b610c17565b34801561040557600080fd5b506102f060085481565b34801561041b57600080fd5b5061025e61042a366004611dfa565b610c46565b34801561043b57600080fd5b5061025e61044a366004611e43565b610c87565b34801561045b57600080fd5b50600e546102299060ff1681565b34801561047557600080fd5b506102a2610484366004611c66565b610e53565b34801561049557600080fd5b50610275610eca565b3480156104aa57600080fd5b506102f06104b9366004611cfc565b610f58565b3480156104ca57600080fd5b5061025e610fdf565b3480156104df57600080fd5b5061025e6104ee366004611be0565b611015565b3480156104ff57600080fd5b5061025e61050e366004611c66565b611059565b34801561051f57600080fd5b506006546001600160a01b03166102a2565b34801561053d57600080fd5b50610275611088565b34801561055257600080fd5b5061025e610561366004611f0d565b611097565b34801561057257600080fd5b5061025e610581366004611f40565b6110a2565b34801561059257600080fd5b506102756105a1366004611c66565b6110da565b3480156105b257600080fd5b50600e5461022990610100900460ff1681565b3480156105d157600080fd5b506102f0600a5481565b3480156105e757600080fd5b506102296105f6366004611fbc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063057600080fd5b506102f0600d5481565b34801561064657600080fd5b5061025e610655366004611cfc565b6111b5565b34801561066657600080fd5b5061025e610675366004611c66565b61124d565b60006001600160e01b031982166380ac58cd60e01b14806106ab57506001600160e01b03198216635b5e139f60e01b145b806106c657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106ff5760405162461bcd60e51b81526004016106f690611fe6565b60405180910390fd5b600e805460ff1916911515919091179055565b6060600080546107219061201b565b80601f016020809104026020016040519081016040528092919081815260200182805461074d9061201b565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661081d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f6565b506000908152600460205260409020546001600160a01b031690565b600061084482610e53565b9050806001600160a01b0316836001600160a01b031614156108b25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f6565b336001600160a01b03821614806108ce57506108ce81336105f6565b6109405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f6565b61094a8383611282565b505050565b600e5460ff161561095f57600080fd5b600e54610100900460ff166109b65760405162461bcd60e51b815260206004820152601960248201527f6d696e74207769746820455448206e6f7420656e61626c65640000000000000060448201526064016106f6565b600081116109c357600080fd5b600a8111156109d157600080fd5b600a5481600c546109e2919061206c565b11156109ed57600080fd5b6006546001600160a01b03163314610a195780600b54610a0d9190612084565b341015610a1957600080fd5b60015b818111610a4c57610a3a8382600c54610a35919061206c565b6112f0565b80610a44816120a3565b915050610a1c565b5080600c6000828254610a5f919061206c565b90915550505050565b610a72338261130a565b610a8e5760405162461bcd60e51b81526004016106f6906120be565b61094a838383611401565b6006546001600160a01b03163314610ac35760405162461bcd60e51b81526004016106f690611fe6565b604051600090339047908381818185875af1925050503d8060008114610b05576040519150601f19603f3d011682016040523d82523d6000602084013e610b0a565b606091505b5050905080610b1857600080fd5b50565b61094a838383604051806020016040528060008152506110a2565b60606000610b4383610f58565b905060008167ffffffffffffffff811115610b6057610b60611d5b565b604051908082528060200260200182016040528015610b89578160200160208202803683370190505b509050600160005b8381108015610ba25750600a548211155b15610c0d576000610bb283610e53565b9050866001600160a01b0316816001600160a01b03161415610bfa5782848381518110610be157610be161210f565b602090810291909101015281610bf6816120a3565b9250505b82610c04816120a3565b93505050610b91565b5090949350505050565b6006546001600160a01b03163314610c415760405162461bcd60e51b81526004016106f690611fe6565b600b55565b6006546001600160a01b03163314610c705760405162461bcd60e51b81526004016106f690611fe6565b8051610c83906007906020840190611aff565b5050565b600e5460ff1615610c9757600080fd5b600a5483600c54610ca8919061206c565b1115610cec5760405162461bcd60e51b815260206004820152601360248201527236b0bc1039bab838363c903932b0b1b432b21760691b60448201526064016106f6565b60008281526009602052604090205460ff1615610d445760405162461bcd60e51b815260206004820152601660248201527534b73232bc1030b63932b0b23c9031b630b4b6b2b21760511b60448201526064016106f6565b604080516020808201859052606087901b6bffffffffffffffffffffffff19168284015260548083018790528351808403909101815260749092019092528051910120600854610d96908390836115a1565b610dec5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b60648201526084016106f6565b6000838152600960205260409020805460ff191660019081179091555b848111610e3457610e228682600c54610a35919061206c565b80610e2c816120a3565b915050610e09565b5083600c6000828254610e47919061206c565b90915550505050505050565b6000818152600260205260408120546001600160a01b0316806106c65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f6565b60078054610ed79061201b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f039061201b565b8015610f505780601f10610f2557610100808354040283529160200191610f50565b820191906000526020600020905b815481529060010190602001808311610f3357829003601f168201915b505050505081565b60006001600160a01b038216610fc35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f6565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110095760405162461bcd60e51b81526004016106f690611fe6565b61101360006115b7565b565b6006546001600160a01b0316331461103f5760405162461bcd60e51b81526004016106f690611fe6565b600e80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146110835760405162461bcd60e51b81526004016106f690611fe6565b600855565b6060600180546107219061201b565b610c83338383611609565b6110ac338361130a565b6110c85760405162461bcd60e51b81526004016106f6906120be565b6110d4848484846116d8565b50505050565b6000818152600260205260409020546060906001600160a01b03166111595760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f6565b600061116361170b565b9050600081511161118357604051806020016040528060008152506111ae565b8061118d8461171a565b60405160200161119e929190612125565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111df5760405162461bcd60e51b81526004016106f690611fe6565b6001600160a01b0381166112445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f6565b610b18816115b7565b6006546001600160a01b031633146112775760405162461bcd60e51b81526004016106f690611fe6565b600d55565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112b782610e53565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610c83828260405180602001604052806000815250611818565b6000818152600260205260408120546001600160a01b03166113835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f6565b600061138e83610e53565b9050806001600160a01b0316846001600160a01b031614806113c95750836001600160a01b03166113be846107a4565b6001600160a01b0316145b806113f957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661141482610e53565b6001600160a01b03161461147c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f6565b6001600160a01b0382166114de5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f6565b6114e9600082611282565b6001600160a01b0383166000908152600360205260408120805460019290611512908490612154565b90915550506001600160a01b038216600090815260036020526040812080546001929061154090849061206c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826115ae858461184b565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561166b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116e3848484611401565b6116ef848484846118bf565b6110d45760405162461bcd60e51b81526004016106f69061216b565b6060600780546107219061201b565b60608161173e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117685780611752816120a3565b91506117619050600a836121d3565b9150611742565b60008167ffffffffffffffff81111561178357611783611d5b565b6040519080825280601f01601f1916602001820160405280156117ad576020820181803683370190505b5090505b84156113f9576117c2600183612154565b91506117cf600a866121e7565b6117da90603061206c565b60f81b8183815181106117ef576117ef61210f565b60200101906001600160f81b031916908160001a905350611811600a866121d3565b94506117b1565b61182283836119bd565b61182f60008484846118bf565b61094a5760405162461bcd60e51b81526004016106f69061216b565b600081815b84518110156118b757600085828151811061186d5761186d61210f565b6020026020010151905080831161189357600083815260208290526040902092506118a4565b600081815260208490526040902092505b50806118af816120a3565b915050611850565b509392505050565b60006001600160a01b0384163b156119b257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119039033908990889088906004016121fb565b6020604051808303816000875af192505050801561193e575060408051601f3d908101601f1916820190925261193b91810190612238565b60015b611998573d80801561196c576040519150601f19603f3d011682016040523d82523d6000602084013e611971565b606091505b5080516119905760405162461bcd60e51b81526004016106f69061216b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113f9565b506001949350505050565b6001600160a01b038216611a135760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f6565b6000818152600260205260409020546001600160a01b031615611a785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f6565b6001600160a01b0382166000908152600360205260408120805460019290611aa190849061206c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b0b9061201b565b90600052602060002090601f016020900481019282611b2d5760008555611b73565b82601f10611b4657805160ff1916838001178555611b73565b82800160010185558215611b73579182015b82811115611b73578251825591602001919060010190611b58565b50611b7f929150611b83565b5090565b5b80821115611b7f5760008155600101611b84565b6001600160e01b031981168114610b1857600080fd5b600060208284031215611bc057600080fd5b81356111ae81611b98565b80358015158114611bdb57600080fd5b919050565b600060208284031215611bf257600080fd5b6111ae82611bcb565b60005b83811015611c16578181015183820152602001611bfe565b838111156110d45750506000910152565b60008151808452611c3f816020860160208601611bfb565b601f01601f19169290920160200192915050565b6020815260006111ae6020830184611c27565b600060208284031215611c7857600080fd5b5035919050565b80356001600160a01b0381168114611bdb57600080fd5b60008060408385031215611ca957600080fd5b611cb283611c7f565b946020939093013593505050565b600080600060608486031215611cd557600080fd5b611cde84611c7f565b9250611cec60208501611c7f565b9150604084013590509250925092565b600060208284031215611d0e57600080fd5b6111ae82611c7f565b6020808252825182820181905260009190848201906040850190845b81811015611d4f57835183529284019291840191600101611d33565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611d9a57611d9a611d5b565b604052919050565b600067ffffffffffffffff831115611dbc57611dbc611d5b565b611dcf601f8401601f1916602001611d71565b9050828152838383011115611de357600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e0c57600080fd5b813567ffffffffffffffff811115611e2357600080fd5b8201601f81018413611e3457600080fd5b6113f984823560208401611da2565b60008060008060808587031215611e5957600080fd5b611e6285611c7f565b9350602080860135935060408601359250606086013567ffffffffffffffff80821115611e8e57600080fd5b818801915088601f830112611ea257600080fd5b813581811115611eb457611eb4611d5b565b8060051b9150611ec5848301611d71565b818152918301840191848101908b841115611edf57600080fd5b938501935b83851015611efd57843582529385019390850190611ee4565b989b979a50959850505050505050565b60008060408385031215611f2057600080fd5b611f2983611c7f565b9150611f3760208401611bcb565b90509250929050565b60008060008060808587031215611f5657600080fd5b611f5f85611c7f565b9350611f6d60208601611c7f565b925060408501359150606085013567ffffffffffffffff811115611f9057600080fd5b8501601f81018713611fa157600080fd5b611fb087823560208401611da2565b91505092959194509250565b60008060408385031215611fcf57600080fd5b611fd883611c7f565b9150611f3760208401611c7f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061202f57607f821691505b6020821081141561205057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561207f5761207f612056565b500190565b600081600019048311821515161561209e5761209e612056565b500290565b60006000198214156120b7576120b7612056565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008351612137818460208801611bfb565b83519083019061214b818360208801611bfb565b01949350505050565b60008282101561216657612166612056565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826121e2576121e26121bd565b500490565b6000826121f6576121f66121bd565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061222e90830184611c27565b9695505050505050565b60006020828403121561224a57600080fd5b81516111ae81611b9856fea26469706673582212206236a99bb94df024c7d5b95a4f31bded564d8e2c3b6dd3b480b3469232b7fda364736f6c634300080c00334552433732313a207472616e7366657220746f206e6f6e20455243373231526500000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000022687474703a2f2f6170692e616e696d65617a746563732e73746f72652f6b6964732f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635c975abb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105c5578063e985e9c5146105db578063e9ac3ab414610624578063f2fde38b1461063a578063fb1a4f731461065a57600080fd5b8063a22cb46514610546578063b88d4fde14610566578063c87b56dd14610586578063d403a91b146105a657600080fd5b8063715018a6116100e7578063715018a6146104be57806374548fc8146104d35780637cb64759146104f35780638da5cb5b1461051357806395d89b411461053157600080fd5b80635c975abb1461044f5780636352211e146104695780636c0360eb1461048957806370a082311461049e57600080fd5b806323b872dd1161019b578063438b63001161016a578063438b6300146103ac57806344a0d68a146103d957806351e75e8b146103f957806355f804b31461040f578063597d78e11461042f57600080fd5b806323b872dd1461032757806335a55caa146103475780633ccfd60b1461037757806342842e0e1461038c57600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806313faede6146102da57806318160ddd146102fe5780631cae9d2b1461031457600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611bae565b61067a565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611be0565b6106cc565b005b34801561026c57600080fd5b50610275610712565b6040516102359190611c53565b34801561028e57600080fd5b506102a261029d366004611c66565b6107a4565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d5366004611c96565b610839565b3480156102e657600080fd5b506102f0600b5481565b604051908152602001610235565b34801561030a57600080fd5b506102f0600c5481565b61025e610322366004611c96565b61094f565b34801561033357600080fd5b5061025e610342366004611cc0565b610a68565b34801561035357600080fd5b50610229610362366004611c66565b60009081526009602052604090205460ff1690565b34801561038357600080fd5b5061025e610a99565b34801561039857600080fd5b5061025e6103a7366004611cc0565b610b1b565b3480156103b857600080fd5b506103cc6103c7366004611cfc565b610b36565b6040516102359190611d17565b3480156103e557600080fd5b5061025e6103f4366004611c66565b610c17565b34801561040557600080fd5b506102f060085481565b34801561041b57600080fd5b5061025e61042a366004611dfa565b610c46565b34801561043b57600080fd5b5061025e61044a366004611e43565b610c87565b34801561045b57600080fd5b50600e546102299060ff1681565b34801561047557600080fd5b506102a2610484366004611c66565b610e53565b34801561049557600080fd5b50610275610eca565b3480156104aa57600080fd5b506102f06104b9366004611cfc565b610f58565b3480156104ca57600080fd5b5061025e610fdf565b3480156104df57600080fd5b5061025e6104ee366004611be0565b611015565b3480156104ff57600080fd5b5061025e61050e366004611c66565b611059565b34801561051f57600080fd5b506006546001600160a01b03166102a2565b34801561053d57600080fd5b50610275611088565b34801561055257600080fd5b5061025e610561366004611f0d565b611097565b34801561057257600080fd5b5061025e610581366004611f40565b6110a2565b34801561059257600080fd5b506102756105a1366004611c66565b6110da565b3480156105b257600080fd5b50600e5461022990610100900460ff1681565b3480156105d157600080fd5b506102f0600a5481565b3480156105e757600080fd5b506102296105f6366004611fbc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063057600080fd5b506102f0600d5481565b34801561064657600080fd5b5061025e610655366004611cfc565b6111b5565b34801561066657600080fd5b5061025e610675366004611c66565b61124d565b60006001600160e01b031982166380ac58cd60e01b14806106ab57506001600160e01b03198216635b5e139f60e01b145b806106c657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106ff5760405162461bcd60e51b81526004016106f690611fe6565b60405180910390fd5b600e805460ff1916911515919091179055565b6060600080546107219061201b565b80601f016020809104026020016040519081016040528092919081815260200182805461074d9061201b565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661081d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f6565b506000908152600460205260409020546001600160a01b031690565b600061084482610e53565b9050806001600160a01b0316836001600160a01b031614156108b25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f6565b336001600160a01b03821614806108ce57506108ce81336105f6565b6109405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f6565b61094a8383611282565b505050565b600e5460ff161561095f57600080fd5b600e54610100900460ff166109b65760405162461bcd60e51b815260206004820152601960248201527f6d696e74207769746820455448206e6f7420656e61626c65640000000000000060448201526064016106f6565b600081116109c357600080fd5b600a8111156109d157600080fd5b600a5481600c546109e2919061206c565b11156109ed57600080fd5b6006546001600160a01b03163314610a195780600b54610a0d9190612084565b341015610a1957600080fd5b60015b818111610a4c57610a3a8382600c54610a35919061206c565b6112f0565b80610a44816120a3565b915050610a1c565b5080600c6000828254610a5f919061206c565b90915550505050565b610a72338261130a565b610a8e5760405162461bcd60e51b81526004016106f6906120be565b61094a838383611401565b6006546001600160a01b03163314610ac35760405162461bcd60e51b81526004016106f690611fe6565b604051600090339047908381818185875af1925050503d8060008114610b05576040519150601f19603f3d011682016040523d82523d6000602084013e610b0a565b606091505b5050905080610b1857600080fd5b50565b61094a838383604051806020016040528060008152506110a2565b60606000610b4383610f58565b905060008167ffffffffffffffff811115610b6057610b60611d5b565b604051908082528060200260200182016040528015610b89578160200160208202803683370190505b509050600160005b8381108015610ba25750600a548211155b15610c0d576000610bb283610e53565b9050866001600160a01b0316816001600160a01b03161415610bfa5782848381518110610be157610be161210f565b602090810291909101015281610bf6816120a3565b9250505b82610c04816120a3565b93505050610b91565b5090949350505050565b6006546001600160a01b03163314610c415760405162461bcd60e51b81526004016106f690611fe6565b600b55565b6006546001600160a01b03163314610c705760405162461bcd60e51b81526004016106f690611fe6565b8051610c83906007906020840190611aff565b5050565b600e5460ff1615610c9757600080fd5b600a5483600c54610ca8919061206c565b1115610cec5760405162461bcd60e51b815260206004820152601360248201527236b0bc1039bab838363c903932b0b1b432b21760691b60448201526064016106f6565b60008281526009602052604090205460ff1615610d445760405162461bcd60e51b815260206004820152601660248201527534b73232bc1030b63932b0b23c9031b630b4b6b2b21760511b60448201526064016106f6565b604080516020808201859052606087901b6bffffffffffffffffffffffff19168284015260548083018790528351808403909101815260749092019092528051910120600854610d96908390836115a1565b610dec5760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b60648201526084016106f6565b6000838152600960205260409020805460ff191660019081179091555b848111610e3457610e228682600c54610a35919061206c565b80610e2c816120a3565b915050610e09565b5083600c6000828254610e47919061206c565b90915550505050505050565b6000818152600260205260408120546001600160a01b0316806106c65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f6565b60078054610ed79061201b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f039061201b565b8015610f505780601f10610f2557610100808354040283529160200191610f50565b820191906000526020600020905b815481529060010190602001808311610f3357829003601f168201915b505050505081565b60006001600160a01b038216610fc35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f6565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110095760405162461bcd60e51b81526004016106f690611fe6565b61101360006115b7565b565b6006546001600160a01b0316331461103f5760405162461bcd60e51b81526004016106f690611fe6565b600e80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146110835760405162461bcd60e51b81526004016106f690611fe6565b600855565b6060600180546107219061201b565b610c83338383611609565b6110ac338361130a565b6110c85760405162461bcd60e51b81526004016106f6906120be565b6110d4848484846116d8565b50505050565b6000818152600260205260409020546060906001600160a01b03166111595760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f6565b600061116361170b565b9050600081511161118357604051806020016040528060008152506111ae565b8061118d8461171a565b60405160200161119e929190612125565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111df5760405162461bcd60e51b81526004016106f690611fe6565b6001600160a01b0381166112445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f6565b610b18816115b7565b6006546001600160a01b031633146112775760405162461bcd60e51b81526004016106f690611fe6565b600d55565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112b782610e53565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610c83828260405180602001604052806000815250611818565b6000818152600260205260408120546001600160a01b03166113835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f6565b600061138e83610e53565b9050806001600160a01b0316846001600160a01b031614806113c95750836001600160a01b03166113be846107a4565b6001600160a01b0316145b806113f957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661141482610e53565b6001600160a01b03161461147c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f6565b6001600160a01b0382166114de5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f6565b6114e9600082611282565b6001600160a01b0383166000908152600360205260408120805460019290611512908490612154565b90915550506001600160a01b038216600090815260036020526040812080546001929061154090849061206c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826115ae858461184b565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561166b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116e3848484611401565b6116ef848484846118bf565b6110d45760405162461bcd60e51b81526004016106f69061216b565b6060600780546107219061201b565b60608161173e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117685780611752816120a3565b91506117619050600a836121d3565b9150611742565b60008167ffffffffffffffff81111561178357611783611d5b565b6040519080825280601f01601f1916602001820160405280156117ad576020820181803683370190505b5090505b84156113f9576117c2600183612154565b91506117cf600a866121e7565b6117da90603061206c565b60f81b8183815181106117ef576117ef61210f565b60200101906001600160f81b031916908160001a905350611811600a866121d3565b94506117b1565b61182283836119bd565b61182f60008484846118bf565b61094a5760405162461bcd60e51b81526004016106f69061216b565b600081815b84518110156118b757600085828151811061186d5761186d61210f565b6020026020010151905080831161189357600083815260208290526040902092506118a4565b600081815260208490526040902092505b50806118af816120a3565b915050611850565b509392505050565b60006001600160a01b0384163b156119b257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119039033908990889088906004016121fb565b6020604051808303816000875af192505050801561193e575060408051601f3d908101601f1916820190925261193b91810190612238565b60015b611998573d80801561196c576040519150601f19603f3d011682016040523d82523d6000602084013e611971565b606091505b5080516119905760405162461bcd60e51b81526004016106f69061216b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113f9565b506001949350505050565b6001600160a01b038216611a135760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f6565b6000818152600260205260409020546001600160a01b031615611a785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f6565b6001600160a01b0382166000908152600360205260408120805460019290611aa190849061206c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b0b9061201b565b90600052602060002090601f016020900481019282611b2d5760008555611b73565b82601f10611b4657805160ff1916838001178555611b73565b82800160010185558215611b73579182015b82811115611b73578251825591602001919060010190611b58565b50611b7f929150611b83565b5090565b5b80821115611b7f5760008155600101611b84565b6001600160e01b031981168114610b1857600080fd5b600060208284031215611bc057600080fd5b81356111ae81611b98565b80358015158114611bdb57600080fd5b919050565b600060208284031215611bf257600080fd5b6111ae82611bcb565b60005b83811015611c16578181015183820152602001611bfe565b838111156110d45750506000910152565b60008151808452611c3f816020860160208601611bfb565b601f01601f19169290920160200192915050565b6020815260006111ae6020830184611c27565b600060208284031215611c7857600080fd5b5035919050565b80356001600160a01b0381168114611bdb57600080fd5b60008060408385031215611ca957600080fd5b611cb283611c7f565b946020939093013593505050565b600080600060608486031215611cd557600080fd5b611cde84611c7f565b9250611cec60208501611c7f565b9150604084013590509250925092565b600060208284031215611d0e57600080fd5b6111ae82611c7f565b6020808252825182820181905260009190848201906040850190845b81811015611d4f57835183529284019291840191600101611d33565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611d9a57611d9a611d5b565b604052919050565b600067ffffffffffffffff831115611dbc57611dbc611d5b565b611dcf601f8401601f1916602001611d71565b9050828152838383011115611de357600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e0c57600080fd5b813567ffffffffffffffff811115611e2357600080fd5b8201601f81018413611e3457600080fd5b6113f984823560208401611da2565b60008060008060808587031215611e5957600080fd5b611e6285611c7f565b9350602080860135935060408601359250606086013567ffffffffffffffff80821115611e8e57600080fd5b818801915088601f830112611ea257600080fd5b813581811115611eb457611eb4611d5b565b8060051b9150611ec5848301611d71565b818152918301840191848101908b841115611edf57600080fd5b938501935b83851015611efd57843582529385019390850190611ee4565b989b979a50959850505050505050565b60008060408385031215611f2057600080fd5b611f2983611c7f565b9150611f3760208401611bcb565b90509250929050565b60008060008060808587031215611f5657600080fd5b611f5f85611c7f565b9350611f6d60208601611c7f565b925060408501359150606085013567ffffffffffffffff811115611f9057600080fd5b8501601f81018713611fa157600080fd5b611fb087823560208401611da2565b91505092959194509250565b60008060408385031215611fcf57600080fd5b611fd883611c7f565b9150611f3760208401611c7f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061202f57607f821691505b6020821081141561205057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561207f5761207f612056565b500190565b600081600019048311821515161561209e5761209e612056565b500290565b60006000198214156120b7576120b7612056565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008351612137818460208801611bfb565b83519083019061214b818360208801611bfb565b01949350505050565b60008282101561216657612166612056565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826121e2576121e26121bd565b500490565b6000826121f6576121f66121bd565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061222e90830184611c27565b9695505050505050565b60006020828403121561224a57600080fd5b81516111ae81611b9856fea26469706673582212206236a99bb94df024c7d5b95a4f31bded564d8e2c3b6dd3b480b3469232b7fda364736f6c634300080c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000022687474703a2f2f6170692e616e696d65617a746563732e73746f72652f6b6964732f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _BaseURI (string): http://api.animeaztecs.store/kids/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [2] : 687474703a2f2f6170692e616e696d65617a746563732e73746f72652f6b6964
Arg [3] : 732f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38167:3759:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23079:305;;;;;;;;;;-1:-1:-1;23079:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23079:305:0;;;;;;;;41382:73;;;;;;;;;;-1:-1:-1;41382:73:0;;;;;:::i;:::-;;:::i;:::-;;24024:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25583:221::-;;;;;;;;;;-1:-1:-1;25583:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;25583:221:0;1878:203:1;25106:411:0;;;;;;;;;;-1:-1:-1;25106:411:0;;;;;:::i;:::-;;:::i;38387:19::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;38387:19:0;2523:177:1;38411:30:0;;;;;;;;;;;;;;;;39541:508;;;;;;:::i;:::-;;:::i;26333:339::-;;;;;;;;;;-1:-1:-1;26333:339:0;;;;;:::i;:::-;;:::i;40055:105::-;;;;;;;;;;-1:-1:-1;40055:105:0;;;;;:::i;:::-;40113:4;40134:20;;;:13;:20;;;;;;;;;40055:105;41773:150;;;;;;;;;;;;;:::i;26743:185::-;;;;;;;;;;-1:-1:-1;26743:185:0;;;;;:::i;:::-;;:::i;40166:609::-;;;;;;;;;;-1:-1:-1;40166:609:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41461:80::-;;;;;;;;;;-1:-1:-1;41461:80:0;;;;;:::i;:::-;;:::i;38269:26::-;;;;;;;;;;;;;;;;41277:98;;;;;;;;;;-1:-1:-1;41277:98:0;;;;;:::i;:::-;;:::i;38929:606::-;;;;;;;;;;-1:-1:-1;38929:606:0;;;;;:::i;:::-;;:::i;38484:26::-;;;;;;;;;;-1:-1:-1;38484:26:0;;;;;;;;23718:239;;;;;;;;;;-1:-1:-1;23718:239:0;;;;;:::i;:::-;;:::i;38243:21::-;;;;;;;;;;;;;:::i;23448:208::-;;;;;;;;;;-1:-1:-1;23448:208:0;;;;;:::i;:::-;;:::i;4584:103::-;;;;;;;;;;;;;:::i;41547:91::-;;;;;;;;;;-1:-1:-1;41547:91:0;;;;;:::i;:::-;;:::i;41165:105::-;;;;;;;;;;-1:-1:-1;41165:105:0;;;;;:::i;:::-;;:::i;3933:87::-;;;;;;;;;;-1:-1:-1;4006:6:0;;-1:-1:-1;;;;;4006:6:0;3933:87;;24193:104;;;;;;;;;;;;;:::i;25876:155::-;;;;;;;;;;-1:-1:-1;25876:155:0;;;;;:::i;:::-;;:::i;26999:328::-;;;;;;;;;;-1:-1:-1;26999:328:0;;;;;:::i;:::-;;:::i;40782:360::-;;;;;;;;;;-1:-1:-1;40782:360:0;;;;;:::i;:::-;;:::i;38515:34::-;;;;;;;;;;-1:-1:-1;38515:34:0;;;;;;;;;;;38352:30;;;;;;;;;;;;;;;;26102:164;;;;;;;;;;-1:-1:-1;26102:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26223:25:0;;;26199:4;26223:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26102:164;38446:33;;;;;;;;;;;;;;;;4842:201;;;;;;;;;;-1:-1:-1;4842:201:0;;;;;:::i;:::-;;:::i;41644:122::-;;;;;;;;;;-1:-1:-1;41644:122:0;;;;;:::i;:::-;;:::i;23079:305::-;23181:4;-1:-1:-1;;;;;;23218:40:0;;-1:-1:-1;;;23218:40:0;;:105;;-1:-1:-1;;;;;;;23275:48:0;;-1:-1:-1;;;23275:48:0;23218:105;:158;;;-1:-1:-1;;;;;;;;;;16192:40:0;;;23340:36;23198:178;23079:305;-1:-1:-1;;23079:305:0:o;41382:73::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;;;;;;;;;41434:6:::1;:15:::0;;-1:-1:-1;;41434:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41382:73::o;24024:100::-;24078:13;24111:5;24104:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24024:100;:::o;25583:221::-;25659:7;28926:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28926:16:0;25679:73;;;;-1:-1:-1;;;25679:73:0;;8819:2:1;25679:73:0;;;8801:21:1;8858:2;8838:18;;;8831:30;8897:34;8877:18;;;8870:62;-1:-1:-1;;;8948:18:1;;;8941:42;9000:19;;25679:73:0;8617:408:1;25679:73:0;-1:-1:-1;25772:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25772:24:0;;25583:221::o;25106:411::-;25187:13;25203:23;25218:7;25203:14;:23::i;:::-;25187:39;;25251:5;-1:-1:-1;;;;;25245:11:0;:2;-1:-1:-1;;;;;25245:11:0;;;25237:57;;;;-1:-1:-1;;;25237:57:0;;9232:2:1;25237:57:0;;;9214:21:1;9271:2;9251:18;;;9244:30;9310:34;9290:18;;;9283:62;-1:-1:-1;;;9361:18:1;;;9354:31;9402:19;;25237:57:0;9030:397:1;25237:57:0;2798:10;-1:-1:-1;;;;;25329:21:0;;;;:62;;-1:-1:-1;25354:37:0;25371:5;2798:10;26102:164;:::i;25354:37::-;25307:168;;;;-1:-1:-1;;;25307:168:0;;9634:2:1;25307:168:0;;;9616:21:1;9673:2;9653:18;;;9646:30;9712:34;9692:18;;;9685:62;9783:26;9763:18;;;9756:54;9827:19;;25307:168:0;9432:420:1;25307:168:0;25488:21;25497:2;25501:7;25488:8;:21::i;:::-;25176:341;25106:411;;:::o;39541:508::-;39627:6;;;;39626:7;39618:16;;;;;;39649:14;;;;;;;39641:52;;;;-1:-1:-1;;;39641:52:0;;10059:2:1;39641:52:0;;;10041:21:1;10098:2;10078:18;;;10071:30;10137:27;10117:18;;;10110:55;10182:18;;39641:52:0;9857:349:1;39641:52:0;39722:1;39708:11;:15;39700:24;;;;;;39754:2;39739:11;:17;;39731:26;;;;;;39801:9;;39786:11;39772;;:25;;;;:::i;:::-;:38;;39764:47;;;;;;4006:6;;-1:-1:-1;;;;;4006:6:0;39826:10;:21;39822:86;;39888:11;39881:4;;:18;;;;:::i;:::-;39868:9;:31;;39860:40;;;;;;39937:1;39920:91;39945:11;39940:1;:16;39920:91;;39972:31;39982:3;40001:1;39987:11;;:15;;;;:::i;:::-;39972:9;:31::i;:::-;39958:3;;;;:::i;:::-;;;;39920:91;;;;40032:11;40017;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;39541:508:0:o;26333:339::-;26528:41;2798:10;26561:7;26528:18;:41::i;:::-;26520:103;;;;-1:-1:-1;;;26520:103:0;;;;;;;:::i;:::-;26636:28;26646:4;26652:2;26656:7;26636:9;:28::i;41773:150::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;41836:58:::1;::::0;41818:12:::1;::::0;41844:10:::1;::::0;41868:21:::1;::::0;41818:12;41836:58;41818:12;41836:58;41868:21;41844:10;41836:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41817:77;;;41909:7;41901:16;;;::::0;::::1;;41810:113;41773:150::o:0;26743:185::-;26881:39;26898:4;26904:2;26908:7;26881:39;;;;;;;;;;;;:16;:39::i;40166:609::-;40226:16;40251:23;40277:17;40287:6;40277:9;:17::i;:::-;40251:43;;40301:30;40348:15;40334:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40334:30:0;-1:-1:-1;40301:63:0;-1:-1:-1;40396:1:0;40371:22;40440:303;40465:15;40447;:33;:64;;;;;40502:9;;40484:14;:27;;40447:64;40440:303;;;40522:25;40550:23;40558:14;40550:7;:23::i;:::-;40522:51;;40607:6;-1:-1:-1;;;;;40586:27:0;:17;-1:-1:-1;;;;;40586:27:0;;40582:129;;;40659:14;40626:13;40640:15;40626:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40684:17;;;;:::i;:::-;;;;40582:129;40719:16;;;;:::i;:::-;;;;40513:230;40440:303;;;-1:-1:-1;40756:13:0;;40166:609;-1:-1:-1;;;;40166:609:0:o;41461:80::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;41520:4:::1;:15:::0;41461:80::o;41277:98::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;41348:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41277:98:::0;:::o;38929:606::-;39039:6;;;;39038:7;39030:16;;;;;;39090:9;;39075:11;39061;;:25;;;;:::i;:::-;:38;;39053:70;;;;-1:-1:-1;;;39053:70:0;;11751:2:1;39053:70:0;;;11733:21:1;11790:2;11770:18;;;11763:30;-1:-1:-1;;;11809:18:1;;;11802:49;11868:18;;39053:70:0;11549:343:1;39053:70:0;39139:20;;;;:13;:20;;;;;;;;39138:21;39130:56;;;;-1:-1:-1;;;39130:56:0;;12099:2:1;39130:56:0;;;12081:21:1;12138:2;12118:18;;;12111:30;-1:-1:-1;;;12157:18:1;;;12150:52;12219:18;;39130:56:0;11897:346:1;39130:56:0;39220:41;;;;;;;12433:19:1;;;12490:2;12486:15;;;-1:-1:-1;;12482:53:1;12468:12;;;12461:75;12552:12;;;;12545:28;;;39220:41:0;;;;;;;;;;12589:12:1;;;;39220:41:0;;;39210:52;;;;;39303:11;;39277:44;;39296:5;;39210:52;39277:18;:44::i;:::-;39269:90;;;;-1:-1:-1;;;39269:90:0;;12814:2:1;39269:90:0;;;12796:21:1;12853:2;12833:18;;;12826:30;12892:34;12872:18;;;12865:62;-1:-1:-1;;;12943:18:1;;;12936:31;12984:19;;39269:90:0;12612:397:1;39269:90:0;39366:20;;;;:13;:20;;;;;:27;;-1:-1:-1;;39366:27:0;39389:4;39366:27;;;;;;39406:91;39431:11;39426:1;:16;39406:91;;39458:31;39468:3;39487:1;39473:11;;:15;;;;:::i;39458:31::-;39444:3;;;;:::i;:::-;;;;39406:91;;;;39518:11;39503;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;38929:606:0:o;23718:239::-;23790:7;23826:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23826:16:0;23861:19;23853:73;;;;-1:-1:-1;;;23853:73:0;;13216:2:1;23853:73:0;;;13198:21:1;13255:2;13235:18;;;13228:30;13294:34;13274:18;;;13267:62;-1:-1:-1;;;13345:18:1;;;13338:39;13394:19;;23853:73:0;13014:405:1;38243:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23448:208::-;23520:7;-1:-1:-1;;;;;23548:19:0;;23540:74;;;;-1:-1:-1;;;23540:74:0;;13626:2:1;23540:74:0;;;13608:21:1;13665:2;13645:18;;;13638:30;13704:34;13684:18;;;13677:62;-1:-1:-1;;;13755:18:1;;;13748:40;13805:19;;23540:74:0;13424:406:1;23540:74:0;-1:-1:-1;;;;;;23632:16:0;;;;;:9;:16;;;;;;;23448:208::o;4584:103::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;4649:30:::1;4676:1;4649:18;:30::i;:::-;4584:103::o:0;41547:91::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;41608:14:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;41608:24:0;;::::1;::::0;;;::::1;::::0;;41547:91::o;41165:105::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;41236:11:::1;:28:::0;41165:105::o;24193:104::-;24249:13;24282:7;24275:14;;;;;:::i;25876:155::-;25971:52;2798:10;26004:8;26014;25971:18;:52::i;26999:328::-;27174:41;2798:10;27207:7;27174:18;:41::i;:::-;27166:103;;;;-1:-1:-1;;;27166:103:0;;;;;;;:::i;:::-;27280:39;27294:4;27300:2;27304:7;27313:5;27280:13;:39::i;:::-;26999:328;;;;:::o;40782:360::-;28902:4;28926:16;;;:7;:16;;;;;;40855:13;;-1:-1:-1;;;;;28926:16:0;40877:76;;;;-1:-1:-1;;;40877:76:0;;14037:2:1;40877:76:0;;;14019:21:1;14076:2;14056:18;;;14049:30;14115:34;14095:18;;;14088:62;-1:-1:-1;;;14166:18:1;;;14159:45;14221:19;;40877:76:0;13835:411:1;40877:76:0;40963:28;40994:10;:8;:10::i;:::-;40963:41;;41049:1;41024:14;41018:28;:32;:118;;;;;;;;;;;;;;;;;41086:14;41102:18;:7;:16;:18::i;:::-;41069:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41018:118;41011:125;40782:360;-1:-1:-1;;;40782:360:0:o;4842:201::-;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4931:22:0;::::1;4923:73;;;::::0;-1:-1:-1;;;4923:73:0;;14928:2:1;4923:73:0::1;::::0;::::1;14910:21:1::0;14967:2;14947:18;;;14940:30;15006:34;14986:18;;;14979:62;-1:-1:-1;;;15057:18:1;;;15050:36;15103:19;;4923:73:0::1;14726:402:1::0;4923:73:0::1;5007:28;5026:8;5007:18;:28::i;41644:122::-:0;4006:6;;-1:-1:-1;;;;;4006:6:0;2798:10;4153:23;4145:68;;;;-1:-1:-1;;;4145:68:0;;;;;;;:::i;:::-;41725:14:::1;:35:::0;41644:122::o;6161:387::-;6484:20;6532:8;;;6161:387::o;32819:174::-;32894:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32894:29:0;-1:-1:-1;;;;;32894:29:0;;;;;;;;:24;;32948:23;32894:24;32948:14;:23::i;:::-;-1:-1:-1;;;;;32939:46:0;;;;;;;;;;;32819:174;;:::o;29821:110::-;29897:26;29907:2;29911:7;29897:26;;;;;;;;;;;;:9;:26::i;29131:348::-;29224:4;28926:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28926:16:0;29241:73;;;;-1:-1:-1;;;29241:73:0;;15335:2:1;29241:73:0;;;15317:21:1;15374:2;15354:18;;;15347:30;15413:34;15393:18;;;15386:62;-1:-1:-1;;;15464:18:1;;;15457:42;15516:19;;29241:73:0;15133:408:1;29241:73:0;29325:13;29341:23;29356:7;29341:14;:23::i;:::-;29325:39;;29394:5;-1:-1:-1;;;;;29383:16:0;:7;-1:-1:-1;;;;;29383:16:0;;:51;;;;29427:7;-1:-1:-1;;;;;29403:31:0;:20;29415:7;29403:11;:20::i;:::-;-1:-1:-1;;;;;29403:31:0;;29383:51;:87;;;-1:-1:-1;;;;;;26223:25:0;;;26199:4;26223:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29438:32;29375:96;29131:348;-1:-1:-1;;;;29131:348:0:o;32123:578::-;32282:4;-1:-1:-1;;;;;32255:31:0;:23;32270:7;32255:14;:23::i;:::-;-1:-1:-1;;;;;32255:31:0;;32247:85;;;;-1:-1:-1;;;32247:85:0;;15748:2:1;32247:85:0;;;15730:21:1;15787:2;15767:18;;;15760:30;15826:34;15806:18;;;15799:62;-1:-1:-1;;;15877:18:1;;;15870:39;15926:19;;32247:85:0;15546:405:1;32247:85:0;-1:-1:-1;;;;;32351:16:0;;32343:65;;;;-1:-1:-1;;;32343:65:0;;16158:2:1;32343:65:0;;;16140:21:1;16197:2;16177:18;;;16170:30;16236:34;16216:18;;;16209:62;-1:-1:-1;;;16287:18:1;;;16280:34;16331:19;;32343:65:0;15956:400:1;32343:65:0;32525:29;32542:1;32546:7;32525:8;:29::i;:::-;-1:-1:-1;;;;;32567:15:0;;;;;;:9;:15;;;;;:20;;32586:1;;32567:15;:20;;32586:1;;32567:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32598:13:0;;;;;;:9;:13;;;;;:18;;32615:1;;32598:13;:18;;32615:1;;32598:18;:::i;:::-;;;;-1:-1:-1;;32627:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32627:21:0;-1:-1:-1;;;;;32627:21:0;;;;;;;;;32666:27;;32627:16;;32666:27;;;;;;;32123:578;;;:::o;36666:190::-;36791:4;36844;36815:25;36828:5;36835:4;36815:12;:25::i;:::-;:33;;36666:190;-1:-1:-1;;;;36666:190:0:o;5203:191::-;5296:6;;;-1:-1:-1;;;;;5313:17:0;;;-1:-1:-1;;;;;;5313:17:0;;;;;;;5346:40;;5296:6;;;5313:17;5296:6;;5346:40;;5277:16;;5346:40;5266:128;5203:191;:::o;33135:315::-;33290:8;-1:-1:-1;;;;;33281:17:0;:5;-1:-1:-1;;;;;33281:17:0;;;33273:55;;;;-1:-1:-1;;;33273:55:0;;16693:2:1;33273:55:0;;;16675:21:1;16732:2;16712:18;;;16705:30;16771:27;16751:18;;;16744:55;16816:18;;33273:55:0;16491:349:1;33273:55:0;-1:-1:-1;;;;;33339:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33339:46:0;;;;;;;;;;33401:41;;540::1;;;33401::0;;513:18:1;33401:41:0;;;;;;;33135:315;;;:::o;28209:::-;28366:28;28376:4;28382:2;28386:7;28366:9;:28::i;:::-;28413:48;28436:4;28442:2;28446:7;28455:5;28413:22;:48::i;:::-;28405:111;;;;-1:-1:-1;;;28405:111:0;;;;;;;:::i;38807:102::-;38867:13;38896:7;38889:14;;;;;:::i;340:723::-;396:13;617:10;613:53;;-1:-1:-1;;644:10:0;;;;;;;;;;;;-1:-1:-1;;;644:10:0;;;;;340:723::o;613:53::-;691:5;676:12;732:78;739:9;;732:78;;765:8;;;;:::i;:::-;;-1:-1:-1;788:10:0;;-1:-1:-1;796:2:0;788:10;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;842:17:0;;820:39;;870:154;877:10;;870:154;;904:11;914:1;904:11;;:::i;:::-;;-1:-1:-1;973:10:0;981:2;973:5;:10;:::i;:::-;960:24;;:2;:24;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;930:56:0;;;;;;;;-1:-1:-1;1001:11:0;1010:2;1001:11;;:::i;:::-;;;870:154;;30158:321;30288:18;30294:2;30298:7;30288:5;:18::i;:::-;30339:54;30370:1;30374:2;30378:7;30387:5;30339:22;:54::i;:::-;30317:154;;;;-1:-1:-1;;;30317:154:0;;;;;;;:::i;37217:675::-;37300:7;37343:4;37300:7;37358:497;37382:5;:12;37378:1;:16;37358:497;;;37416:20;37439:5;37445:1;37439:8;;;;;;;;:::i;:::-;;;;;;;37416:31;;37482:12;37466;:28;37462:382;;37968:13;38018:15;;;38054:4;38047:15;;;38101:4;38085:21;;37594:57;;37462:382;;;37968:13;38018:15;;;38054:4;38047:15;;;38101:4;38085:21;;37771:57;;37462:382;-1:-1:-1;37396:3:0;;;;:::i;:::-;;;;37358:497;;;-1:-1:-1;37872:12:0;37217:675;-1:-1:-1;;;37217:675:0:o;34015:799::-;34170:4;-1:-1:-1;;;;;34191:13:0;;6484:20;6532:8;34187:620;;34227:72;;-1:-1:-1;;;34227:72:0;;-1:-1:-1;;;;;34227:36:0;;;;;:72;;2798:10;;34278:4;;34284:7;;34293:5;;34227:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34227:72:0;;;;;;;;-1:-1:-1;;34227:72:0;;;;;;;;;;;;:::i;:::-;;;34223:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34469:13:0;;34465:272;;34512:60;;-1:-1:-1;;;34512:60:0;;;;;;;:::i;34465:272::-;34687:6;34681:13;34672:6;34668:2;34664:15;34657:38;34223:529;-1:-1:-1;;;;;;34350:51:0;-1:-1:-1;;;34350:51:0;;-1:-1:-1;34343:58:0;;34187:620;-1:-1:-1;34791:4:0;34015:799;;;;;;:::o;30815:382::-;-1:-1:-1;;;;;30895:16:0;;30887:61;;;;-1:-1:-1;;;30887:61:0;;18588:2:1;30887:61:0;;;18570:21:1;;;18607:18;;;18600:30;18666:34;18646:18;;;18639:62;18718:18;;30887:61:0;18386:356:1;30887:61:0;28902:4;28926:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28926:16:0;:30;30959:58;;;;-1:-1:-1;;;30959:58:0;;18949:2:1;30959:58:0;;;18931:21:1;18988:2;18968:18;;;18961:30;19027;19007:18;;;19000:58;19075:18;;30959:58:0;18747:352:1;30959:58:0;-1:-1:-1;;;;;31088:13:0;;;;;;:9;:13;;;;;:18;;31105:1;;31088:13;:18;;31105:1;;31088:18;:::i;:::-;;;;-1:-1:-1;;31117:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31117:21:0;-1:-1:-1;;;;;31117:21:0;;;;;;;;31156:33;;31117:16;;;31156:33;;31117:16;;31156:33;30815:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;4048:127::-;4109:10;4104:3;4100:20;4097:1;4090:31;4140:4;4137:1;4130:15;4164:4;4161:1;4154:15;4180:275;4251:2;4245:9;4316:2;4297:13;;-1:-1:-1;;4293:27:1;4281:40;;4351:18;4336:34;;4372:22;;;4333:62;4330:88;;;4398:18;;:::i;:::-;4434:2;4427:22;4180:275;;-1:-1:-1;4180:275:1:o;4460:407::-;4525:5;4559:18;4551:6;4548:30;4545:56;;;4581:18;;:::i;:::-;4619:57;4664:2;4643:15;;-1:-1:-1;;4639:29:1;4670:4;4635:40;4619:57;:::i;:::-;4610:66;;4699:6;4692:5;4685:21;4739:3;4730:6;4725:3;4721:16;4718:25;4715:45;;;4756:1;4753;4746:12;4715:45;4805:6;4800:3;4793:4;4786:5;4782:16;4769:43;4859:1;4852:4;4843:6;4836:5;4832:18;4828:29;4821:40;4460:407;;;;;:::o;4872:451::-;4941:6;4994:2;4982:9;4973:7;4969:23;4965:32;4962:52;;;5010:1;5007;5000:12;4962:52;5050:9;5037:23;5083:18;5075:6;5072:30;5069:50;;;5115:1;5112;5105:12;5069:50;5138:22;;5191:4;5183:13;;5179:27;-1:-1:-1;5169:55:1;;5220:1;5217;5210:12;5169:55;5243:74;5309:7;5304:2;5291:16;5286:2;5282;5278:11;5243:74;:::i;5328:1157::-;5439:6;5447;5455;5463;5516:3;5504:9;5495:7;5491:23;5487:33;5484:53;;;5533:1;5530;5523:12;5484:53;5556:29;5575:9;5556:29;:::i;:::-;5546:39;;5604:2;5653;5642:9;5638:18;5625:32;5615:42;;5704:2;5693:9;5689:18;5676:32;5666:42;;5759:2;5748:9;5744:18;5731:32;5782:18;5823:2;5815:6;5812:14;5809:34;;;5839:1;5836;5829:12;5809:34;5877:6;5866:9;5862:22;5852:32;;5922:7;5915:4;5911:2;5907:13;5903:27;5893:55;;5944:1;5941;5934:12;5893:55;5980:2;5967:16;6002:2;5998;5995:10;5992:36;;;6008:18;;:::i;:::-;6054:2;6051:1;6047:10;6037:20;;6077:28;6101:2;6097;6093:11;6077:28;:::i;:::-;6139:15;;;6209:11;;;6205:20;;;6170:12;;;;6237:19;;;6234:39;;;6269:1;6266;6259:12;6234:39;6293:11;;;;6313:142;6329:6;6324:3;6321:15;6313:142;;;6395:17;;6383:30;;6346:12;;;;6433;;;;6313:142;;;5328:1157;;;;-1:-1:-1;5328:1157:1;;-1:-1:-1;;;;;;;5328:1157:1:o;6675:254::-;6740:6;6748;6801:2;6789:9;6780:7;6776:23;6772:32;6769:52;;;6817:1;6814;6807:12;6769:52;6840:29;6859:9;6840:29;:::i;:::-;6830:39;;6888:35;6919:2;6908:9;6904:18;6888:35;:::i;:::-;6878:45;;6675:254;;;;;:::o;6934:667::-;7029:6;7037;7045;7053;7106:3;7094:9;7085:7;7081:23;7077:33;7074:53;;;7123:1;7120;7113:12;7074:53;7146:29;7165:9;7146:29;:::i;:::-;7136:39;;7194:38;7228:2;7217:9;7213:18;7194:38;:::i;:::-;7184:48;;7279:2;7268:9;7264:18;7251:32;7241:42;;7334:2;7323:9;7319:18;7306:32;7361:18;7353:6;7350:30;7347:50;;;7393:1;7390;7383:12;7347:50;7416:22;;7469:4;7461:13;;7457:27;-1:-1:-1;7447:55:1;;7498:1;7495;7488:12;7447:55;7521:74;7587:7;7582:2;7569:16;7564:2;7560;7556:11;7521:74;:::i;:::-;7511:84;;;6934:667;;;;;;;:::o;7606:260::-;7674:6;7682;7735:2;7723:9;7714:7;7710:23;7706:32;7703:52;;;7751:1;7748;7741:12;7703:52;7774:29;7793:9;7774:29;:::i;:::-;7764:39;;7822:38;7856:2;7845:9;7841:18;7822:38;:::i;7871:356::-;8073:2;8055:21;;;8092:18;;;8085:30;8151:34;8146:2;8131:18;;8124:62;8218:2;8203:18;;7871:356::o;8232:380::-;8311:1;8307:12;;;;8354;;;8375:61;;8429:4;8421:6;8417:17;8407:27;;8375:61;8482:2;8474:6;8471:14;8451:18;8448:38;8445:161;;;8528:10;8523:3;8519:20;8516:1;8509:31;8563:4;8560:1;8553:15;8591:4;8588:1;8581:15;8445:161;;8232:380;;;:::o;10211:127::-;10272:10;10267:3;10263:20;10260:1;10253:31;10303:4;10300:1;10293:15;10327:4;10324:1;10317:15;10343:128;10383:3;10414:1;10410:6;10407:1;10404:13;10401:39;;;10420:18;;:::i;:::-;-1:-1:-1;10456:9:1;;10343:128::o;10476:168::-;10516:7;10582:1;10578;10574:6;10570:14;10567:1;10564:21;10559:1;10552:9;10545:17;10541:45;10538:71;;;10589:18;;:::i;:::-;-1:-1:-1;10629:9:1;;10476:168::o;10649:135::-;10688:3;-1:-1:-1;;10709:17:1;;10706:43;;;10729:18;;:::i;:::-;-1:-1:-1;10776:1:1;10765:13;;10649:135::o;10789:413::-;10991:2;10973:21;;;11030:2;11010:18;;;11003:30;11069:34;11064:2;11049:18;;11042:62;-1:-1:-1;;;11135:2:1;11120:18;;11113:47;11192:3;11177:19;;10789:413::o;11417:127::-;11478:10;11473:3;11469:20;11466:1;11459:31;11509:4;11506:1;11499:15;11533:4;11530:1;11523:15;14251:470;14430:3;14468:6;14462:13;14484:53;14530:6;14525:3;14518:4;14510:6;14506:17;14484:53;:::i;:::-;14600:13;;14559:16;;;;14622:57;14600:13;14559:16;14656:4;14644:17;;14622:57;:::i;:::-;14695:20;;14251:470;-1:-1:-1;;;;14251:470:1:o;16361:125::-;16401:4;16429:1;16426;16423:8;16420:34;;;16434:18;;:::i;:::-;-1:-1:-1;16471:9:1;;16361:125::o;16845:414::-;17047:2;17029:21;;;17086:2;17066:18;;;17059:30;17125:34;17120:2;17105:18;;17098:62;-1:-1:-1;;;17191:2:1;17176:18;;17169:48;17249:3;17234:19;;16845:414::o;17264:127::-;17325:10;17320:3;17316:20;17313:1;17306:31;17356:4;17353:1;17346:15;17380:4;17377:1;17370:15;17396:120;17436:1;17462;17452:35;;17467:18;;:::i;:::-;-1:-1:-1;17501:9:1;;17396:120::o;17521:112::-;17553:1;17579;17569:35;;17584:18;;:::i;:::-;-1:-1:-1;17618:9:1;;17521:112::o;17638:489::-;-1:-1:-1;;;;;17907:15:1;;;17889:34;;17959:15;;17954:2;17939:18;;17932:43;18006:2;17991:18;;17984:34;;;18054:3;18049:2;18034:18;;18027:31;;;17832:4;;18075:46;;18101:19;;18093:6;18075:46;:::i;:::-;18067:54;17638:489;-1:-1:-1;;;;;;17638:489:1:o;18132:249::-;18201:6;18254:2;18242:9;18233:7;18229:23;18225:32;18222:52;;;18270:1;18267;18260:12;18222:52;18302:9;18296:16;18321:30;18345:5;18321:30;:::i

Swarm Source

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