ETH Price: $3,269.54 (+4.68%)
Gas: 2 Gwei

Dunks (DUNK)
 

Overview

TokenID

18

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Dunks

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-18
*/

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;

library Address {

    function isContract(address account) internal view returns (bool) {

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

    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");
    }

    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/utils/[email protected]
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/[email protected]
pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File @openzeppelin/contracts/utils/introspection/[email protected]
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/token/ERC721/[email protected]
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/[email protected]
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/token/ERC721/extensions/[email protected]
pragma solidity ^0.8.0;

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

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

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





// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]
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/[email protected]
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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 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 {}
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

     uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

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

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

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

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > currentIndex - 1) {
            endIndex = currentIndex - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp);
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

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

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

pragma solidity ^0.8.0;

contract Dunks is ERC721A
{
    using Strings for uint256;

    string public baseURI;
    string public unrevealedURI;
    uint256 public maxSupply;
    uint256 public maxMintAmount = 1;
    uint256 public maxMintPerTransaction = 1;
    address public owner;
   
    bool public saleOpen;
    bool public whitelistPresaleOpen;

    bool public revealed = true;
    
    mapping(address => uint256) private mintCount;

    modifier onlyOwner() {
        require(owner == msg.sender, "not owner");
        _;
    }

    constructor() ERC721A("Dunks", "DUNK", maxMintAmount) {
        owner = msg.sender;
        maxSupply = 10000;
    }

    function mintedByAddressCount(address _address) public view returns (uint256){
        return mintCount[_address];
    }
   
    function setmaxMintPerTransaction(uint256 _newmaxMintPerTransaction) public onlyOwner {
        maxMintPerTransaction = _newmaxMintPerTransaction;
    }

    // Minting functions
    function mint(uint256 _mintAmount) external {
        require(saleOpen || whitelistPresaleOpen, "mint not live");
        require(msg.sender.balance >= 0.01 ether,"You must hold minimum 0.01 ETH to mint"); // Check to avoid Bots mininting
        address _to = msg.sender;
        uint256 minted = mintCount[_to];
        require(minted + _mintAmount <= maxMintAmount, "mint over max");
        require(_mintAmount <= maxMintPerTransaction, "amount must < max");
        require(totalSupply() + _mintAmount <= maxSupply, "mint over supply");

        mintCount[_to] = minted + _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    // Only Owner executable functions
    function airdropByAccount(address _to, uint256 _mintAmount) external onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, "mint over supply");
        if (_mintAmount <= maxBatchSize) {
            _safeMint(_to, _mintAmount);
            return;
        }
        
        uint256 leftToMint = _mintAmount;
        while (leftToMint > 0) {
            if (leftToMint <= maxBatchSize) {
                _safeMint(_to, leftToMint);
                return;
            }
            _safeMint(_to, maxBatchSize);
            leftToMint = leftToMint - maxBatchSize;
        }
    }

    function airdropToBulkAccounts(address[] calldata _recipients) external onlyOwner {
        require(
            totalSupply() + _recipients.length <= maxSupply,
            "Airdrop minting will exceed maximum supply"
        );
        require(_recipients.length != 0, "Address not found for minting");
        for (uint256 i = 0; i < _recipients.length; i++) {
            require(_recipients[i] != address(0), "Minting to Null address");
             _safeMint(_recipients[i], 1);
        }
    }

    function toggleMintLive() external onlyOwner {
        if (saleOpen) {
            saleOpen = false;
            return;
        }
        
        saleOpen = true;
    }

    function toggleReveal() external onlyOwner {
        if (revealed) {
            revealed = false;
            return;
        }
        revealed = true;
    }

    function toggleWhitelistPresale() external onlyOwner {
        if (whitelistPresaleOpen) {
            whitelistPresaleOpen = false;
            return;
        }
        whitelistPresaleOpen = true;
    }
    
    
    function setBaseURI(string memory _newURI) external onlyOwner {
        baseURI = _newURI;
    }

    function setUnrevealedURI(string memory _newUnrevealedURI) external onlyOwner {
        unrevealedURI = _newUnrevealedURI;
    }

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

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");
        if(revealed == false) {
            return unrevealedURI;
        }
        string memory baseTokenURI = _baseURI();
        string memory json = ".json";
        return bytes(baseTokenURI).length > 0
            ? string(abi.encodePacked(baseTokenURI, _tokenId.toString(), json))
            : '';
    }

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

    function transferOwnership(address _newOwner) external onlyOwner{
        owner = _newOwner;
    }

    fallback() external payable { }

    receive() external payable { }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdropByAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"airdropToBulkAccounts","outputs":[],"stateMutability":"nonpayable","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":"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintedByAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealedURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintPerTransaction","type":"uint256"}],"name":"setmaxMintPerTransaction","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":[],"name":"toggleMintLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPresaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405260008080556007556001600b819055600c55600d805460ff60b01b1916600160b01b1790553480156200003657600080fd5b506040518060400160405280600581526020016444756e6b7360d81b8152506040518060400160405280600481526020016344554e4b60e01b815250600b5460008111620000da5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b6001620000e88482620001c0565b506002620000f78382620001c0565b506080525050600d80546001600160a01b03191633179055612710600a556200028c565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014657607f821691505b6020821081036200016757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001bb57600081815260208120601f850160051c81016020861015620001965750805b601f850160051c820191505b81811015620001b757828155600101620001a2565b5050505b505050565b81516001600160401b03811115620001dc57620001dc6200011b565b620001f481620001ed845462000131565b846200016d565b602080601f8311600181146200022c5760008415620002135750858301515b600019600386901b1c1916600185901b178555620001b7565b600085815260208120601f198616915b828110156200025d578886015182559484019460019091019084016200023c565b50858210156200027c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6080516129f0620002d26000396000818161137c015281816113b5015281816113ea0152818161141301528181611ca701528181611cd1015261209d01526129f06000f3fe6080604052600436106102115760003560e01c80636352211e11610117578063a0712d68116100a5578063d5abeb011161006c578063d5abeb011461062f578063d7224ba014610645578063e985e9c51461065b578063f2fde38b146106a4578063fe2c7fee146106c457005b8063a0712d681461058f578063a22cb465146105af578063b86ec2a6146105cf578063b88d4fde146105ef578063c87b56dd1461060f57005b806374622b4c116100e957806374622b4c146104f857806378835f42146105195780638da5cb5b1461053957806395d89b411461055957806399288dbb1461056e57005b80636352211e1461048e5780636c0360eb146104ae5780637035bf18146104c357806370a08231146104d857005b80632d20fb601161019f5780634f6ccce7116101665780634f6ccce714610403578063518302271461042357806355f804b3146104445780635b8ad429146104645780635d2bdd3b1461047957005b80632d20fb601461034d5780632f745c591461036d57806337351b0f1461038d57806342842e0e146103c35780634d22ff1b146103e357005b8063095ea7b3116101e3578063095ea7b3146102cd578063105739b8146102ed57806318160ddd14610302578063239c70ae1461031757806323b872dd1461032d57005b806301f569971461021a57806301ffc9a71461024357806306fdde0314610273578063081812fc1461029557005b3661021857005b005b34801561022657600080fd5b50610230600c5481565b6040519081526020015b60405180910390f35b34801561024f57600080fd5b5061026361025e3660046122d1565b6106e4565b604051901515815260200161023a565b34801561027f57600080fd5b50610288610751565b60405161023a919061234d565b3480156102a157600080fd5b506102b56102b0366004612360565b6107e3565b6040516001600160a01b03909116815260200161023a565b3480156102d957600080fd5b506102186102e8366004612395565b610873565b3480156102f957600080fd5b5061021861098a565b34801561030e57600080fd5b50600054610230565b34801561032357600080fd5b50610230600b5481565b34801561033957600080fd5b506102186103483660046123bf565b6109ea565b34801561035957600080fd5b50610218610368366004612360565b6109f5565b34801561037957600080fd5b50610230610388366004612395565b610a2b565b34801561039957600080fd5b506102306103a83660046123fb565b6001600160a01b03166000908152600e602052604090205490565b3480156103cf57600080fd5b506102186103de3660046123bf565b610b97565b3480156103ef57600080fd5b506102186103fe366004612416565b610bb2565b34801561040f57600080fd5b5061023061041e366004612360565b610d72565b34801561042f57600080fd5b50600d5461026390600160b01b900460ff1681565b34801561045057600080fd5b5061021861045f366004612517565b610dd4565b34801561047057600080fd5b50610218610e0e565b34801561048557600080fd5b50610218610e6e565b34801561049a57600080fd5b506102b56104a9366004612360565b610ece565b3480156104ba57600080fd5b50610288610ee0565b3480156104cf57600080fd5b50610288610f6e565b3480156104e457600080fd5b506102306104f33660046123fb565b610f7b565b34801561050457600080fd5b50600d5461026390600160a81b900460ff1681565b34801561052557600080fd5b50610218610534366004612360565b61100c565b34801561054557600080fd5b50600d546102b5906001600160a01b031681565b34801561056557600080fd5b5061028861103b565b34801561057a57600080fd5b50600d5461026390600160a01b900460ff1681565b34801561059b57600080fd5b506102186105aa366004612360565b61104a565b3480156105bb57600080fd5b506102186105ca366004612560565b611234565b3480156105db57600080fd5b506102186105ea366004612395565b6112f8565b3480156105fb57600080fd5b5061021861060a36600461259c565b61143f565b34801561061b57600080fd5b5061028861062a366004612360565b611478565b34801561063b57600080fd5b50610230600a5481565b34801561065157600080fd5b5061023060075481565b34801561066757600080fd5b50610263610676366004612618565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106b057600080fd5b506102186106bf3660046123fb565b6115f3565b3480156106d057600080fd5b506102186106df366004612517565b61163f565b60006001600160e01b031982166380ac58cd60e01b148061071557506001600160e01b03198216635b5e139f60e01b145b8061073057506001600160e01b0319821663780e9d6360e01b145b8061074b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107609061264b565b80601f016020809104026020016040519081016040528092919081815260200182805461078c9061264b565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b60006107f0826000541190565b6108575760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061087e82610ece565b9050806001600160a01b0316836001600160a01b0316036108ec5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161084e565b336001600160a01b038216148061090857506109088133610676565b61097a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161084e565b610985838383611675565b505050565b600d546001600160a01b031633146109b45760405162461bcd60e51b815260040161084e90612685565b600d54600160a01b900460ff16156109d557600d805460ff60a01b19169055565b600d805460ff60a01b1916600160a01b179055565b6109858383836116d1565b600d546001600160a01b03163314610a1f5760405162461bcd60e51b815260040161084e90612685565b610a2881611a59565b50565b6000610a3683610f7b565b8210610a8f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161084e565b600080549080805b83811015610b37576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aea57805192505b876001600160a01b0316836001600160a01b031603610b2457868403610b165750935061074b92505050565b83610b20816126be565b9450505b5080610b2f816126be565b915050610a97565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161084e565b6109858383836040518060200160405280600081525061143f565b600d546001600160a01b03163314610bdc5760405162461bcd60e51b815260040161084e90612685565b600a5481610be960005490565b610bf391906126d7565b1115610c545760405162461bcd60e51b815260206004820152602a60248201527f41697264726f70206d696e74696e672077696c6c20657863656564206d6178696044820152696d756d20737570706c7960b01b606482015260840161084e565b6000819003610ca55760405162461bcd60e51b815260206004820152601d60248201527f41646472657373206e6f7420666f756e6420666f72206d696e74696e67000000604482015260640161084e565b60005b81811015610985576000838383818110610cc457610cc46126ef565b9050602002016020810190610cd991906123fb565b6001600160a01b031603610d2f5760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e6720746f204e756c6c2061646472657373000000000000000000604482015260640161084e565b610d60838383818110610d4457610d446126ef565b9050602002016020810190610d5991906123fb565b6001611c0b565b80610d6a816126be565b915050610ca8565b600080548210610dd05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161084e565b5090565b600d546001600160a01b03163314610dfe5760405162461bcd60e51b815260040161084e90612685565b6008610e0a828261274b565b5050565b600d546001600160a01b03163314610e385760405162461bcd60e51b815260040161084e90612685565b600d54600160b01b900460ff1615610e5957600d805460ff60b01b19169055565b600d805460ff60b01b1916600160b01b179055565b600d546001600160a01b03163314610e985760405162461bcd60e51b815260040161084e90612685565b600d54600160a81b900460ff1615610eb957600d805460ff60a81b19169055565b600d805460ff60a81b1916600160a81b179055565b6000610ed982611c25565b5192915050565b60088054610eed9061264b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f199061264b565b8015610f665780601f10610f3b57610100808354040283529160200191610f66565b820191906000526020600020905b815481529060010190602001808311610f4957829003601f168201915b505050505081565b60098054610eed9061264b565b60006001600160a01b038216610fe75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161084e565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600d546001600160a01b031633146110365760405162461bcd60e51b815260040161084e90612685565b600c55565b6060600280546107609061264b565b600d54600160a01b900460ff168061106b5750600d54600160a81b900460ff165b6110a75760405162461bcd60e51b815260206004820152600d60248201526c6d696e74206e6f74206c69766560981b604482015260640161084e565b662386f26fc100003331101561110e5760405162461bcd60e51b815260206004820152602660248201527f596f75206d75737420686f6c64206d696e696d756d20302e30312045544820746044820152651bc81b5a5b9d60d21b606482015260840161084e565b336000818152600e6020526040902054600b5461112b84836126d7565b11156111695760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b604482015260640161084e565b600c548311156111af5760405162461bcd60e51b81526020600482015260116024820152700c2dadeeadce840daeae6e8407840dac2f607b1b604482015260640161084e565b600a54836111bc60005490565b6111c691906126d7565b11156112075760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b604482015260640161084e565b61121183826126d7565b6001600160a01b0383166000908152600e60205260409020556109853384611c0b565b336001600160a01b0383160361128c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161084e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d546001600160a01b031633146113225760405162461bcd60e51b815260040161084e90612685565b600a548161132f60005490565b61133991906126d7565b111561137a5760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b604482015260640161084e565b7f000000000000000000000000000000000000000000000000000000000000000081116113ab57610e0a8282611c0b565b805b8015610985577f000000000000000000000000000000000000000000000000000000000000000081116113e4576109858382611c0b565b61140e837f0000000000000000000000000000000000000000000000000000000000000000611c0b565b6114387f00000000000000000000000000000000000000000000000000000000000000008261280b565b90506113ad565b61144a8484846116d1565b61145684848484611dcf565b6114725760405162461bcd60e51b815260040161084e90612822565b50505050565b6060611485826000541190565b6114d15760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604482015260640161084e565b600d54600160b01b900460ff16151560000361157957600980546114f49061264b565b80601f01602080910402602001604051908101604052809291908181526020018280546115209061264b565b801561156d5780601f106115425761010080835404028352916020019161156d565b820191906000526020600020905b81548152906001019060200180831161155057829003601f168201915b50505050509050919050565b6000611583611ed0565b604080518082019091526005815264173539b7b760d91b60208201528151919250906115be57604051806020016040528060008152506115eb565b816115c885611edf565b826040516020016115db93929190612875565b6040516020818303038152906040525b949350505050565b600d546001600160a01b0316331461161d5760405162461bcd60e51b815260040161084e90612685565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031633146116695760405162461bcd60e51b815260040161084e90612685565b6009610e0a828261274b565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116dc82611c25565b80519091506000906001600160a01b0316336001600160a01b03161480611713575033611708846107e3565b6001600160a01b0316145b80611725575081516117259033610676565b90508061178f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161084e565b846001600160a01b031682600001516001600160a01b0316146118035760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161084e565b6001600160a01b0384166118675760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161084e565b6118776000848460000151611675565b6001600160a01b03851660009081526004602052604081208054600192906118a99084906001600160801b03166128b8565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926118f5918591166128e0565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561197d8460016126d7565b6000818152600360205260409020549091506001600160a01b0316611a0f576119a7816000541190565b15611a0f5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611aa95760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161084e565b60006001611ab784846126d7565b611ac1919061280b565b90506001600054611ad2919061280b565b811115611aeb576001600054611ae8919061280b565b90505b611af6816000541190565b611b515760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161084e565b815b818111611bf7576000818152600360205260409020546001600160a01b0316611be5576000611b8182611c25565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611bef816126be565b915050611b53565b50611c038160016126d7565b600755505050565b610e0a828260405180602001604052806000815250611fe0565b6040805180820190915260008082526020820152611c44826000541190565b611ca35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161084e565b60007f00000000000000000000000000000000000000000000000000000000000000008310611d0457611cf67f00000000000000000000000000000000000000000000000000000000000000008461280b565b611d019060016126d7565b90505b825b818110611d6e576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d5b57949350505050565b5080611d668161290b565b915050611d06565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161084e565b60006001600160a01b0384163b15611ec557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e13903390899088908890600401612922565b6020604051808303816000875af1925050508015611e4e575060408051601f3d908101601f19168201909252611e4b9181019061295f565b60015b611eab573d808015611e7c576040519150601f19603f3d011682016040523d82523d6000602084013e611e81565b606091505b508051600003611ea35760405162461bcd60e51b815260040161084e90612822565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115eb565b506001949350505050565b6060600880546107609061264b565b606081600003611f065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f305780611f1a816126be565b9150611f299050600a83612992565b9150611f0a565b60008167ffffffffffffffff811115611f4b57611f4b61248b565b6040519080825280601f01601f191660200182016040528015611f75576020820181803683370190505b5090505b84156115eb57611f8a60018361280b565b9150611f97600a866129a6565b611fa29060306126d7565b60f81b818381518110611fb757611fb76126ef565b60200101906001600160f81b031916908160001a905350611fd9600a86612992565b9450611f79565b6000546001600160a01b0384166120435760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161084e565b61204e816000541190565b1561209b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161084e565b7f00000000000000000000000000000000000000000000000000000000000000008311156121165760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161084e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121729087906128e0565b6001600160801b0316815260200185836020015161219091906128e0565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122b05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122746000888488611dcf565b6122905760405162461bcd60e51b815260040161084e90612822565b8161229a816126be565b92505080806122a8906126be565b915050612227565b506000819055611a51565b6001600160e01b031981168114610a2857600080fd5b6000602082840312156122e357600080fd5b81356122ee816122bb565b9392505050565b60005b838110156123105781810151838201526020016122f8565b838111156114725750506000910152565b600081518084526123398160208601602086016122f5565b601f01601f19169290920160200192915050565b6020815260006122ee6020830184612321565b60006020828403121561237257600080fd5b5035919050565b80356001600160a01b038116811461239057600080fd5b919050565b600080604083850312156123a857600080fd5b6123b183612379565b946020939093013593505050565b6000806000606084860312156123d457600080fd5b6123dd84612379565b92506123eb60208501612379565b9150604084013590509250925092565b60006020828403121561240d57600080fd5b6122ee82612379565b6000806020838503121561242957600080fd5b823567ffffffffffffffff8082111561244157600080fd5b818501915085601f83011261245557600080fd5b81358181111561246457600080fd5b8660208260051b850101111561247957600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124bc576124bc61248b565b604051601f8501601f19908116603f011681019082821181831017156124e4576124e461248b565b816040528093508581528686860111156124fd57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561252957600080fd5b813567ffffffffffffffff81111561254057600080fd5b8201601f8101841361255157600080fd5b6115eb848235602084016124a1565b6000806040838503121561257357600080fd5b61257c83612379565b91506020830135801515811461259157600080fd5b809150509250929050565b600080600080608085870312156125b257600080fd5b6125bb85612379565b93506125c960208601612379565b925060408501359150606085013567ffffffffffffffff8111156125ec57600080fd5b8501601f810187136125fd57600080fd5b61260c878235602084016124a1565b91505092959194509250565b6000806040838503121561262b57600080fd5b61263483612379565b915061264260208401612379565b90509250929050565b600181811c9082168061265f57607f821691505b60208210810361267f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016126d0576126d06126a8565b5060010190565b600082198211156126ea576126ea6126a8565b500190565b634e487b7160e01b600052603260045260246000fd5b601f82111561098557600081815260208120601f850160051c8101602086101561272c5750805b601f850160051c820191505b81811015611a5157828155600101612738565b815167ffffffffffffffff8111156127655761276561248b565b61277981612773845461264b565b84612705565b602080601f8311600181146127ae57600084156127965750858301515b600019600386901b1c1916600185901b178555611a51565b600085815260208120601f198616915b828110156127dd578886015182559484019460019091019084016127be565b50858210156127fb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008282101561281d5761281d6126a8565b500390565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516128878184602089016122f5565b84519083019061289b8183602089016122f5565b84519101906128ae8183602088016122f5565b0195945050505050565b60006001600160801b03838116908316818110156128d8576128d86126a8565b039392505050565b60006001600160801b03808316818516808303821115612902576129026126a8565b01949350505050565b60008161291a5761291a6126a8565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061295590830184612321565b9695505050505050565b60006020828403121561297157600080fd5b81516122ee816122bb565b634e487b7160e01b600052601260045260246000fd5b6000826129a1576129a161297c565b500490565b6000826129b5576129b561297c565b50069056fea2646970667358221220047c86d6f09fce6955e30a7a012e295c6d894b21c93ca2b33ee404941f918ecd64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102115760003560e01c80636352211e11610117578063a0712d68116100a5578063d5abeb011161006c578063d5abeb011461062f578063d7224ba014610645578063e985e9c51461065b578063f2fde38b146106a4578063fe2c7fee146106c457005b8063a0712d681461058f578063a22cb465146105af578063b86ec2a6146105cf578063b88d4fde146105ef578063c87b56dd1461060f57005b806374622b4c116100e957806374622b4c146104f857806378835f42146105195780638da5cb5b1461053957806395d89b411461055957806399288dbb1461056e57005b80636352211e1461048e5780636c0360eb146104ae5780637035bf18146104c357806370a08231146104d857005b80632d20fb601161019f5780634f6ccce7116101665780634f6ccce714610403578063518302271461042357806355f804b3146104445780635b8ad429146104645780635d2bdd3b1461047957005b80632d20fb601461034d5780632f745c591461036d57806337351b0f1461038d57806342842e0e146103c35780634d22ff1b146103e357005b8063095ea7b3116101e3578063095ea7b3146102cd578063105739b8146102ed57806318160ddd14610302578063239c70ae1461031757806323b872dd1461032d57005b806301f569971461021a57806301ffc9a71461024357806306fdde0314610273578063081812fc1461029557005b3661021857005b005b34801561022657600080fd5b50610230600c5481565b6040519081526020015b60405180910390f35b34801561024f57600080fd5b5061026361025e3660046122d1565b6106e4565b604051901515815260200161023a565b34801561027f57600080fd5b50610288610751565b60405161023a919061234d565b3480156102a157600080fd5b506102b56102b0366004612360565b6107e3565b6040516001600160a01b03909116815260200161023a565b3480156102d957600080fd5b506102186102e8366004612395565b610873565b3480156102f957600080fd5b5061021861098a565b34801561030e57600080fd5b50600054610230565b34801561032357600080fd5b50610230600b5481565b34801561033957600080fd5b506102186103483660046123bf565b6109ea565b34801561035957600080fd5b50610218610368366004612360565b6109f5565b34801561037957600080fd5b50610230610388366004612395565b610a2b565b34801561039957600080fd5b506102306103a83660046123fb565b6001600160a01b03166000908152600e602052604090205490565b3480156103cf57600080fd5b506102186103de3660046123bf565b610b97565b3480156103ef57600080fd5b506102186103fe366004612416565b610bb2565b34801561040f57600080fd5b5061023061041e366004612360565b610d72565b34801561042f57600080fd5b50600d5461026390600160b01b900460ff1681565b34801561045057600080fd5b5061021861045f366004612517565b610dd4565b34801561047057600080fd5b50610218610e0e565b34801561048557600080fd5b50610218610e6e565b34801561049a57600080fd5b506102b56104a9366004612360565b610ece565b3480156104ba57600080fd5b50610288610ee0565b3480156104cf57600080fd5b50610288610f6e565b3480156104e457600080fd5b506102306104f33660046123fb565b610f7b565b34801561050457600080fd5b50600d5461026390600160a81b900460ff1681565b34801561052557600080fd5b50610218610534366004612360565b61100c565b34801561054557600080fd5b50600d546102b5906001600160a01b031681565b34801561056557600080fd5b5061028861103b565b34801561057a57600080fd5b50600d5461026390600160a01b900460ff1681565b34801561059b57600080fd5b506102186105aa366004612360565b61104a565b3480156105bb57600080fd5b506102186105ca366004612560565b611234565b3480156105db57600080fd5b506102186105ea366004612395565b6112f8565b3480156105fb57600080fd5b5061021861060a36600461259c565b61143f565b34801561061b57600080fd5b5061028861062a366004612360565b611478565b34801561063b57600080fd5b50610230600a5481565b34801561065157600080fd5b5061023060075481565b34801561066757600080fd5b50610263610676366004612618565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106b057600080fd5b506102186106bf3660046123fb565b6115f3565b3480156106d057600080fd5b506102186106df366004612517565b61163f565b60006001600160e01b031982166380ac58cd60e01b148061071557506001600160e01b03198216635b5e139f60e01b145b8061073057506001600160e01b0319821663780e9d6360e01b145b8061074b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107609061264b565b80601f016020809104026020016040519081016040528092919081815260200182805461078c9061264b565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b60006107f0826000541190565b6108575760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061087e82610ece565b9050806001600160a01b0316836001600160a01b0316036108ec5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161084e565b336001600160a01b038216148061090857506109088133610676565b61097a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161084e565b610985838383611675565b505050565b600d546001600160a01b031633146109b45760405162461bcd60e51b815260040161084e90612685565b600d54600160a01b900460ff16156109d557600d805460ff60a01b19169055565b600d805460ff60a01b1916600160a01b179055565b6109858383836116d1565b600d546001600160a01b03163314610a1f5760405162461bcd60e51b815260040161084e90612685565b610a2881611a59565b50565b6000610a3683610f7b565b8210610a8f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161084e565b600080549080805b83811015610b37576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aea57805192505b876001600160a01b0316836001600160a01b031603610b2457868403610b165750935061074b92505050565b83610b20816126be565b9450505b5080610b2f816126be565b915050610a97565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161084e565b6109858383836040518060200160405280600081525061143f565b600d546001600160a01b03163314610bdc5760405162461bcd60e51b815260040161084e90612685565b600a5481610be960005490565b610bf391906126d7565b1115610c545760405162461bcd60e51b815260206004820152602a60248201527f41697264726f70206d696e74696e672077696c6c20657863656564206d6178696044820152696d756d20737570706c7960b01b606482015260840161084e565b6000819003610ca55760405162461bcd60e51b815260206004820152601d60248201527f41646472657373206e6f7420666f756e6420666f72206d696e74696e67000000604482015260640161084e565b60005b81811015610985576000838383818110610cc457610cc46126ef565b9050602002016020810190610cd991906123fb565b6001600160a01b031603610d2f5760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e6720746f204e756c6c2061646472657373000000000000000000604482015260640161084e565b610d60838383818110610d4457610d446126ef565b9050602002016020810190610d5991906123fb565b6001611c0b565b80610d6a816126be565b915050610ca8565b600080548210610dd05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161084e565b5090565b600d546001600160a01b03163314610dfe5760405162461bcd60e51b815260040161084e90612685565b6008610e0a828261274b565b5050565b600d546001600160a01b03163314610e385760405162461bcd60e51b815260040161084e90612685565b600d54600160b01b900460ff1615610e5957600d805460ff60b01b19169055565b600d805460ff60b01b1916600160b01b179055565b600d546001600160a01b03163314610e985760405162461bcd60e51b815260040161084e90612685565b600d54600160a81b900460ff1615610eb957600d805460ff60a81b19169055565b600d805460ff60a81b1916600160a81b179055565b6000610ed982611c25565b5192915050565b60088054610eed9061264b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f199061264b565b8015610f665780601f10610f3b57610100808354040283529160200191610f66565b820191906000526020600020905b815481529060010190602001808311610f4957829003601f168201915b505050505081565b60098054610eed9061264b565b60006001600160a01b038216610fe75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161084e565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600d546001600160a01b031633146110365760405162461bcd60e51b815260040161084e90612685565b600c55565b6060600280546107609061264b565b600d54600160a01b900460ff168061106b5750600d54600160a81b900460ff165b6110a75760405162461bcd60e51b815260206004820152600d60248201526c6d696e74206e6f74206c69766560981b604482015260640161084e565b662386f26fc100003331101561110e5760405162461bcd60e51b815260206004820152602660248201527f596f75206d75737420686f6c64206d696e696d756d20302e30312045544820746044820152651bc81b5a5b9d60d21b606482015260840161084e565b336000818152600e6020526040902054600b5461112b84836126d7565b11156111695760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b604482015260640161084e565b600c548311156111af5760405162461bcd60e51b81526020600482015260116024820152700c2dadeeadce840daeae6e8407840dac2f607b1b604482015260640161084e565b600a54836111bc60005490565b6111c691906126d7565b11156112075760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b604482015260640161084e565b61121183826126d7565b6001600160a01b0383166000908152600e60205260409020556109853384611c0b565b336001600160a01b0383160361128c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161084e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d546001600160a01b031633146113225760405162461bcd60e51b815260040161084e90612685565b600a548161132f60005490565b61133991906126d7565b111561137a5760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b604482015260640161084e565b7f000000000000000000000000000000000000000000000000000000000000000181116113ab57610e0a8282611c0b565b805b8015610985577f000000000000000000000000000000000000000000000000000000000000000181116113e4576109858382611c0b565b61140e837f0000000000000000000000000000000000000000000000000000000000000001611c0b565b6114387f00000000000000000000000000000000000000000000000000000000000000018261280b565b90506113ad565b61144a8484846116d1565b61145684848484611dcf565b6114725760405162461bcd60e51b815260040161084e90612822565b50505050565b6060611485826000541190565b6114d15760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604482015260640161084e565b600d54600160b01b900460ff16151560000361157957600980546114f49061264b565b80601f01602080910402602001604051908101604052809291908181526020018280546115209061264b565b801561156d5780601f106115425761010080835404028352916020019161156d565b820191906000526020600020905b81548152906001019060200180831161155057829003601f168201915b50505050509050919050565b6000611583611ed0565b604080518082019091526005815264173539b7b760d91b60208201528151919250906115be57604051806020016040528060008152506115eb565b816115c885611edf565b826040516020016115db93929190612875565b6040516020818303038152906040525b949350505050565b600d546001600160a01b0316331461161d5760405162461bcd60e51b815260040161084e90612685565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031633146116695760405162461bcd60e51b815260040161084e90612685565b6009610e0a828261274b565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116dc82611c25565b80519091506000906001600160a01b0316336001600160a01b03161480611713575033611708846107e3565b6001600160a01b0316145b80611725575081516117259033610676565b90508061178f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161084e565b846001600160a01b031682600001516001600160a01b0316146118035760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161084e565b6001600160a01b0384166118675760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161084e565b6118776000848460000151611675565b6001600160a01b03851660009081526004602052604081208054600192906118a99084906001600160801b03166128b8565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926118f5918591166128e0565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561197d8460016126d7565b6000818152600360205260409020549091506001600160a01b0316611a0f576119a7816000541190565b15611a0f5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611aa95760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161084e565b60006001611ab784846126d7565b611ac1919061280b565b90506001600054611ad2919061280b565b811115611aeb576001600054611ae8919061280b565b90505b611af6816000541190565b611b515760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161084e565b815b818111611bf7576000818152600360205260409020546001600160a01b0316611be5576000611b8182611c25565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611bef816126be565b915050611b53565b50611c038160016126d7565b600755505050565b610e0a828260405180602001604052806000815250611fe0565b6040805180820190915260008082526020820152611c44826000541190565b611ca35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161084e565b60007f00000000000000000000000000000000000000000000000000000000000000018310611d0457611cf67f00000000000000000000000000000000000000000000000000000000000000018461280b565b611d019060016126d7565b90505b825b818110611d6e576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d5b57949350505050565b5080611d668161290b565b915050611d06565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161084e565b60006001600160a01b0384163b15611ec557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e13903390899088908890600401612922565b6020604051808303816000875af1925050508015611e4e575060408051601f3d908101601f19168201909252611e4b9181019061295f565b60015b611eab573d808015611e7c576040519150601f19603f3d011682016040523d82523d6000602084013e611e81565b606091505b508051600003611ea35760405162461bcd60e51b815260040161084e90612822565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115eb565b506001949350505050565b6060600880546107609061264b565b606081600003611f065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f305780611f1a816126be565b9150611f299050600a83612992565b9150611f0a565b60008167ffffffffffffffff811115611f4b57611f4b61248b565b6040519080825280601f01601f191660200182016040528015611f75576020820181803683370190505b5090505b84156115eb57611f8a60018361280b565b9150611f97600a866129a6565b611fa29060306126d7565b60f81b818381518110611fb757611fb76126ef565b60200101906001600160f81b031916908160001a905350611fd9600a86612992565b9450611f79565b6000546001600160a01b0384166120435760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161084e565b61204e816000541190565b1561209b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161084e565b7f00000000000000000000000000000000000000000000000000000000000000018311156121165760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161084e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121729087906128e0565b6001600160801b0316815260200185836020015161219091906128e0565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122b05760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122746000888488611dcf565b6122905760405162461bcd60e51b815260040161084e90612822565b8161229a816126be565b92505080806122a8906126be565b915050612227565b506000819055611a51565b6001600160e01b031981168114610a2857600080fd5b6000602082840312156122e357600080fd5b81356122ee816122bb565b9392505050565b60005b838110156123105781810151838201526020016122f8565b838111156114725750506000910152565b600081518084526123398160208601602086016122f5565b601f01601f19169290920160200192915050565b6020815260006122ee6020830184612321565b60006020828403121561237257600080fd5b5035919050565b80356001600160a01b038116811461239057600080fd5b919050565b600080604083850312156123a857600080fd5b6123b183612379565b946020939093013593505050565b6000806000606084860312156123d457600080fd5b6123dd84612379565b92506123eb60208501612379565b9150604084013590509250925092565b60006020828403121561240d57600080fd5b6122ee82612379565b6000806020838503121561242957600080fd5b823567ffffffffffffffff8082111561244157600080fd5b818501915085601f83011261245557600080fd5b81358181111561246457600080fd5b8660208260051b850101111561247957600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124bc576124bc61248b565b604051601f8501601f19908116603f011681019082821181831017156124e4576124e461248b565b816040528093508581528686860111156124fd57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561252957600080fd5b813567ffffffffffffffff81111561254057600080fd5b8201601f8101841361255157600080fd5b6115eb848235602084016124a1565b6000806040838503121561257357600080fd5b61257c83612379565b91506020830135801515811461259157600080fd5b809150509250929050565b600080600080608085870312156125b257600080fd5b6125bb85612379565b93506125c960208601612379565b925060408501359150606085013567ffffffffffffffff8111156125ec57600080fd5b8501601f810187136125fd57600080fd5b61260c878235602084016124a1565b91505092959194509250565b6000806040838503121561262b57600080fd5b61263483612379565b915061264260208401612379565b90509250929050565b600181811c9082168061265f57607f821691505b60208210810361267f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016126d0576126d06126a8565b5060010190565b600082198211156126ea576126ea6126a8565b500190565b634e487b7160e01b600052603260045260246000fd5b601f82111561098557600081815260208120601f850160051c8101602086101561272c5750805b601f850160051c820191505b81811015611a5157828155600101612738565b815167ffffffffffffffff8111156127655761276561248b565b61277981612773845461264b565b84612705565b602080601f8311600181146127ae57600084156127965750858301515b600019600386901b1c1916600185901b178555611a51565b600085815260208120601f198616915b828110156127dd578886015182559484019460019091019084016127be565b50858210156127fb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008282101561281d5761281d6126a8565b500390565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600084516128878184602089016122f5565b84519083019061289b8183602089016122f5565b84519101906128ae8183602088016122f5565b0195945050505050565b60006001600160801b03838116908316818110156128d8576128d86126a8565b039392505050565b60006001600160801b03808316818516808303821115612902576129026126a8565b01949350505050565b60008161291a5761291a6126a8565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061295590830184612321565b9695505050505050565b60006020828403121561297157600080fd5b81516122ee816122bb565b634e487b7160e01b600052601260045260246000fd5b6000826129a1576129a161297c565b500490565b6000826129b5576129b561297c565b50069056fea2646970667358221220047c86d6f09fce6955e30a7a012e295c6d894b21c93ca2b33ee404941f918ecd64736f6c634300080f0033

Deployed Bytecode Sourcemap

56311:4563:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56511:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;56511:40:0;;;;;;;;43260:372;;;;;;;;;;-1:-1:-1;43260:372:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;43260:372:0;582:187:1;45065:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46626:214::-;;;;;;;;;;-1:-1:-1;46626:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;46626:214:0;1710:203:1;46147:413:0;;;;;;;;;;-1:-1:-1;46147:413:0;;;;;:::i;:::-;;:::i;59136:177::-;;;;;;;;;;;;;:::i;41701:100::-;;;;;;;;;;-1:-1:-1;41754:7:0;41781:12;41701:100;;56472:32;;;;;;;;;;;;;;;;47502:162;;;;;;;;;;-1:-1:-1;47502:162:0;;;;;:::i;:::-;;:::i;59967:111::-;;;;;;;;;;-1:-1:-1;59967:111:0;;;;;:::i;:::-;;:::i;42365:823::-;;;;;;;;;;-1:-1:-1;42365:823:0;;;;;:::i;:::-;;:::i;56980:122::-;;;;;;;;;;-1:-1:-1;56980:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;57075:19:0;57049:7;57075:19;;;:9;:19;;;;;;;56980:122;47735:177;;;;;;;;;;-1:-1:-1;47735:177:0;;;;;:::i;:::-;;:::i;58618:510::-;;;;;;;;;;-1:-1:-1;58618:510:0;;;;;:::i;:::-;;:::i;41878:187::-;;;;;;;;;;-1:-1:-1;41878:187:0;;;;;:::i;:::-;;:::i;56658:27::-;;;;;;;;;;-1:-1:-1;56658:27:0;;;;-1:-1:-1;;;56658:27:0;;;;;;59723:98;;;;;;;;;;-1:-1:-1;59723:98:0;;;;;:::i;:::-;;:::i;59321:165::-;;;;;;;;;;;;;:::i;59494:211::-;;;;;;;;;;;;;:::i;44874:124::-;;;;;;;;;;-1:-1:-1;44874:124:0;;;;;:::i;:::-;;:::i;56379:21::-;;;;;;;;;;;;;:::i;56407:27::-;;;;;;;;;;;;;:::i;43696:221::-;;;;;;;;;;-1:-1:-1;43696:221:0;;;;;:::i;:::-;;:::i;56617:32::-;;;;;;;;;;-1:-1:-1;56617:32:0;;;;-1:-1:-1;;;56617:32:0;;;;;;57113:154;;;;;;;;;;-1:-1:-1;57113:154:0;;;;;:::i;:::-;;:::i;56558:20::-;;;;;;;;;;-1:-1:-1;56558:20:0;;;;-1:-1:-1;;;;;56558:20:0;;;45234:104;;;;;;;;;;;;;:::i;56590:20::-;;;;;;;;;;-1:-1:-1;56590:20:0;;;;-1:-1:-1;;;56590:20:0;;;;;;57301:650;;;;;;;;;;-1:-1:-1;57301:650:0;;;;;:::i;:::-;;:::i;46912:288::-;;;;;;;;;;-1:-1:-1;46912:288:0;;;;;:::i;:::-;;:::i;57999:611::-;;;;;;;;;;-1:-1:-1;57999:611:0;;;;;:::i;:::-;;:::i;47983:355::-;;;;;;;;;;-1:-1:-1;47983:355:0;;;;;:::i;:::-;;:::i;60086:484::-;;;;;;;;;;-1:-1:-1;60086:484:0;;;;;:::i;:::-;;:::i;56441:24::-;;;;;;;;;;;;;;;;52643:43;;;;;;;;;;;;;;;;47271:164;;;;;;;;;;-1:-1:-1;47271:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;47392:25:0;;;47368:4;47392:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47271:164;60694:100;;;;;;;;;;-1:-1:-1;60694:100:0;;;;;:::i;:::-;;:::i;59829:130::-;;;;;;;;;;-1:-1:-1;59829:130:0;;;;;:::i;:::-;;:::i;43260:372::-;43362:4;-1:-1:-1;;;;;;43399:40:0;;-1:-1:-1;;;43399:40:0;;:105;;-1:-1:-1;;;;;;;43456:48:0;;-1:-1:-1;;;43456:48:0;43399:105;:172;;;-1:-1:-1;;;;;;;43521:50:0;;-1:-1:-1;;;43521:50:0;43399:172;:225;;;-1:-1:-1;;;;;;;;;;18189:40:0;;;43588:36;43379:245;43260:372;-1:-1:-1;;43260:372:0:o;45065:100::-;45119:13;45152:5;45145:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45065:100;:::o;46626:214::-;46694:7;46722:16;46730:7;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;46722:16;46714:74;;;;-1:-1:-1;;;46714:74:0;;6600:2:1;46714:74:0;;;6582:21:1;6639:2;6619:18;;;6612:30;6678:34;6658:18;;;6651:62;-1:-1:-1;;;6729:18:1;;;6722:43;6782:19;;46714:74:0;;;;;;;;;-1:-1:-1;46808:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46808:24:0;;46626:214::o;46147:413::-;46220:13;46236:24;46252:7;46236:15;:24::i;:::-;46220:40;;46285:5;-1:-1:-1;;;;;46279:11:0;:2;-1:-1:-1;;;;;46279:11:0;;46271:58;;;;-1:-1:-1;;;46271:58:0;;7014:2:1;46271:58:0;;;6996:21:1;7053:2;7033:18;;;7026:30;7092:34;7072:18;;;7065:62;-1:-1:-1;;;7143:18:1;;;7136:32;7185:19;;46271:58:0;6812:398:1;46271:58:0;17148:10;-1:-1:-1;;;;;46364:21:0;;;;:62;;-1:-1:-1;46389:37:0;46406:5;17148:10;47271:164;:::i;46389:37::-;46342:169;;;;-1:-1:-1;;;46342:169:0;;7417:2:1;46342:169:0;;;7399:21:1;7456:2;7436:18;;;7429:30;7495:34;7475:18;;;7468:62;7566:27;7546:18;;;7539:55;7611:19;;46342:169:0;7215:421:1;46342:169:0;46524:28;46533:2;46537:7;46546:5;46524:8;:28::i;:::-;46209:351;46147:413;;:::o;59136:177::-;56792:5;;-1:-1:-1;;;;;56792:5:0;56801:10;56792:19;56784:41;;;;-1:-1:-1;;;56784:41:0;;;;;;;:::i;:::-;59196:8:::1;::::0;-1:-1:-1;;;59196:8:0;::::1;;;59192:78;;;59221:8;:16:::0;;-1:-1:-1;;;;59221:16:0::1;::::0;;59136:177::o;59192:78::-:1;59290:8;:15:::0;;-1:-1:-1;;;;59290:15:0::1;-1:-1:-1::0;;;59290:15:0::1;::::0;;59136:177::o;47502:162::-;47628:28;47638:4;47644:2;47648:7;47628:9;:28::i;59967:111::-;56792:5;;-1:-1:-1;;;;;56792:5:0;56801:10;56792:19;56784:41;;;;-1:-1:-1;;;56784:41:0;;;;;;;:::i;:::-;60042:28:::1;60061:8;60042:18;:28::i;:::-;59967:111:::0;:::o;42365:823::-;42454:7;42490:16;42500:5;42490:9;:16::i;:::-;42482:5;:24;42474:71;;;;-1:-1:-1;;;42474:71:0;;8180:2:1;42474:71:0;;;8162:21:1;8219:2;8199:18;;;8192:30;8258:34;8238:18;;;8231:62;-1:-1:-1;;;8309:18:1;;;8302:32;8351:19;;42474:71:0;7978:398:1;42474:71:0;42556:22;41781:12;;;42556:22;;42688:426;42712:14;42708:1;:18;42688:426;;;42748:31;42782:14;;;:11;:14;;;;;;;;;42748:48;;;;;;;;;-1:-1:-1;;;;;42748:48:0;;;;;-1:-1:-1;;;42748:48:0;;;;;;;;;;;;42815:28;42811:103;;42884:14;;;-1:-1:-1;42811:103:0;42953:5;-1:-1:-1;;;;;42932:26:0;:17;-1:-1:-1;;;;;42932:26:0;;42928:175;;42998:5;42983:11;:20;42979:77;;-1:-1:-1;43035:1:0;-1:-1:-1;43028:8:0;;-1:-1:-1;;;43028:8:0;42979:77;43074:13;;;;:::i;:::-;;;;42928:175;-1:-1:-1;42728:3:0;;;;:::i;:::-;;;;42688:426;;;-1:-1:-1;43124:56:0;;-1:-1:-1;;;43124:56:0;;8855:2:1;43124:56:0;;;8837:21:1;8894:2;8874:18;;;8867:30;8933:34;8913:18;;;8906:62;-1:-1:-1;;;8984:18:1;;;8977:44;9038:19;;43124:56:0;8653:410:1;47735:177:0;47865:39;47882:4;47888:2;47892:7;47865:39;;;;;;;;;;;;:16;:39::i;58618:510::-;56792:5;;-1:-1:-1;;;;;56792:5:0;56801:10;56792:19;56784:41;;;;-1:-1:-1;;;56784:41:0;;;;;;;:::i;:::-;58771:9:::1;::::0;58749:11;58733:13:::1;41754:7:::0;41781:12;;41701:100;58733:13:::1;:34;;;;:::i;:::-;:47;;58711:139;;;::::0;-1:-1:-1;;;58711:139:0;;9403:2:1;58711:139:0::1;::::0;::::1;9385:21:1::0;9442:2;9422:18;;;9415:30;9481:34;9461:18;;;9454:62;-1:-1:-1;;;9532:18:1;;;9525:40;9582:19;;58711:139:0::1;9201:406:1::0;58711:139:0::1;58891:1;58869:23:::0;;;58861:65:::1;;;::::0;-1:-1:-1;;;58861:65:0;;9814:2:1;58861:65:0::1;::::0;::::1;9796:21:1::0;9853:2;9833:18;;;9826:30;9892:31;9872:18;;;9865:59;9941:18;;58861:65:0::1;9612:353:1::0;58861:65:0::1;58942:9;58937:184;58957:22:::0;;::::1;58937:184;;;59035:1;59009:11:::0;;59021:1;59009:14;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;59009:28:0::1;::::0;59001:64:::1;;;::::0;-1:-1:-1;;;59001:64:0;;10304:2:1;59001:64:0::1;::::0;::::1;10286:21:1::0;10343:2;10323:18;;;10316:30;10382:25;10362:18;;;10355:53;10425:18;;59001:64:0::1;10102:347:1::0;59001:64:0::1;59081:28;59091:11;;59103:1;59091:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;59107:1;59081:9;:28::i;:::-;58981:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58937:184;;41878:187:::0;41945:7;41781:12;;41973:5;:21;41965:69;;;;-1:-1:-1;;;41965:69:0;;10656:2:1;41965:69:0;;;10638:21:1;10695:2;10675:18;;;10668:30;10734:34;10714:18;;;10707:62;-1:-1:-1;;;10785:18:1;;;10778:33;10828:19;;41965:69:0;10454:399:1;41965:69:0;-1:-1:-1;42052:5:0;41878:187::o;59723:98::-;56792:5;;-1:-1:-1;;;;;56792:5:0;56801:10;56792:19;56784:41;;;;-1:-1:-1;;;56784:41:0;;;;;;;:::i;:::-;59796:7:::1;:17;59806:7:::0;59796;:17:::1;:::i;:::-;;59723:98:::0;:::o;59321:165::-;56792:5;;-1:-1:-1;;;;;56792:5:0;56801:10;56792:19;56784:41;;;;-1:-1:-1;;;56784:41:0;;;;;;;:::i;:::-;59379:8:::1;::::0;-1:-1:-1;;;59379:8:0;::::1;;;59375:78;;;59404:8;:16:::0;;-1:-1:-1;;;;59404:16:0::1;::::0;;59136:177::o;59375:78::-:1;59463:8;:15:::0;;-1:-1:-1;;;;59463:15:0::1;-1:-1:-1::0;;;59463:15:0::1;::::0;;59321:165::o;59494:211::-;56792:5;;-1:-1:-1;;;;;56792:5:0;56801:10;56792:19;56784:41;;;;-1:-1:-1;;;56784:41:0;;;;;;;:::i;:::-;59562:20:::1;::::0;-1:-1:-1;;;59562:20:0;::::1;;;59558:102;;;59599:20;:28:::0;;-1:-1:-1;;;;59599:28:0::1;::::0;;59136:177::o;59558:102::-:1;59670:20;:27:::0;;-1:-1:-1;;;;59670:27:0::1;-1:-1:-1::0;;;59670:27:0::1;::::0;;59494:211::o;44874:124::-;44938:7;44965:20;44977:7;44965:11;:20::i;:::-;:25;;44874:124;-1:-1:-1;;44874:124:0:o;56379:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56407:27::-;;;;;;;:::i;43696:221::-;43760:7;-1:-1:-1;;;;;43788:19:0;;43780:75;;;;-1:-1:-1;;;43780:75:0;;13264:2:1;43780:75:0;;;13246:21:1;13303:2;13283:18;;;13276:30;13342:34;13322:18;;;13315:62;-1:-1:-1;;;13393:18:1;;;13386:41;13444:19;;43780:75:0;13062:407:1;43780:75:0;-1:-1:-1;;;;;;43881:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;43881:27:0;;43696:221::o;57113:154::-;56792:5;;-1:-1:-1;;;;;56792:5:0;56801:10;56792:19;56784:41;;;;-1:-1:-1;;;56784:41:0;;;;;;;:::i;:::-;57210:21:::1;:49:::0;57113:154::o;45234:104::-;45290:13;45323:7;45316:14;;;;;:::i;57301:650::-;57364:8;;-1:-1:-1;;;57364:8:0;;;;;:32;;-1:-1:-1;57376:20:0;;-1:-1:-1;;;57376:20:0;;;;57364:32;57356:58;;;;-1:-1:-1;;;57356:58:0;;13676:2:1;57356:58:0;;;13658:21:1;13715:2;13695:18;;;13688:30;-1:-1:-1;;;13734:18:1;;;13727:43;13787:18;;57356:58:0;13474:337:1;57356:58:0;57455:10;57433;:18;:32;;57425:82;;;;-1:-1:-1;;;57425:82:0;;14018:2:1;57425:82:0;;;14000:21:1;14057:2;14037:18;;;14030:30;14096:34;14076:18;;;14069:62;-1:-1:-1;;;14147:18:1;;;14140:36;14193:19;;57425:82:0;13816:402:1;57425:82:0;57565:10;57551:11;57603:14;;;:9;:14;;;;;;57660:13;;57636:20;57645:11;57603:14;57636:20;:::i;:::-;:37;;57628:63;;;;-1:-1:-1;;;57628:63:0;;14425:2:1;57628:63:0;;;14407:21:1;14464:2;14444:18;;;14437:30;-1:-1:-1;;;14483:18:1;;;14476:43;14536:18;;57628:63:0;14223:337:1;57628:63:0;57725:21;;57710:11;:36;;57702:66;;;;-1:-1:-1;;;57702:66:0;;14767:2:1;57702:66:0;;;14749:21:1;14806:2;14786:18;;;14779:30;-1:-1:-1;;;14825:18:1;;;14818:47;14882:18;;57702:66:0;14565:341:1;57702:66:0;57818:9;;57803:11;57787:13;41754:7;41781:12;;41701:100;57787:13;:27;;;;:::i;:::-;:40;;57779:69;;;;-1:-1:-1;;;57779:69:0;;15113:2:1;57779:69:0;;;15095:21:1;15152:2;15132:18;;;15125:30;-1:-1:-1;;;15171:18:1;;;15164:46;15227:18;;57779:69:0;14911:340:1;57779:69:0;57878:20;57887:11;57878:6;:20;:::i;:::-;-1:-1:-1;;;;;57861:14:0;;;;;;:9;:14;;;;;:37;57909:34;57919:10;57931:11;57909:9;:34::i;46912:288::-;17148:10;-1:-1:-1;;;;;47007:24:0;;;46999:63;;;;-1:-1:-1;;;46999:63:0;;15458:2:1;46999:63:0;;;15440:21:1;15497:2;15477:18;;;15470:30;15536:28;15516:18;;;15509:56;15582:18;;46999:63:0;15256:350:1;46999:63:0;17148:10;47075:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;47075:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;47075:53:0;;;;;;;;;;47144:48;;722:41:1;;;47075:42:0;;17148:10;47144:48;;695:18:1;47144:48:0;;;;;;;46912:288;;:::o;57999:611::-;56792:5;;-1:-1:-1;;;;;56792:5:0;56801:10;56792:19;56784:41;;;;-1:-1:-1;;;56784:41:0;;;;;;;:::i;:::-;58128:9:::1;;58113:11;58097:13;41754:7:::0;41781:12;;41701:100;58097:13:::1;:27;;;;:::i;:::-;:40;;58089:69;;;::::0;-1:-1:-1;;;58089:69:0;;15113:2:1;58089:69:0::1;::::0;::::1;15095:21:1::0;15152:2;15132:18;;;15125:30;-1:-1:-1;;;15171:18:1;;;15164:46;15227:18;;58089:69:0::1;14911:340:1::0;58089:69:0::1;58188:12;58173:11;:27;58169:108;;58217:27;58227:3;58232:11;58217:9;:27::i;58169:108::-;58318:11:::0;58340:263:::1;58347:14:::0;;58340:263:::1;;58396:12;58382:10;:26;58378:118;;58429:26;58439:3;58444:10;58429:9;:26::i;58378:118::-;58510:28;58520:3;58525:12;58510:9;:28::i;:::-;58566:25;58579:12;58566:10:::0;:25:::1;:::i;:::-;58553:38;;58340:263;;47983:355:::0;48142:28;48152:4;48158:2;48162:7;48142:9;:28::i;:::-;48203:48;48226:4;48232:2;48236:7;48245:5;48203:22;:48::i;:::-;48181:149;;;;-1:-1:-1;;;48181:149:0;;;;;;;:::i;:::-;47983:355;;;;:::o;60086:484::-;60160:13;60194:17;60202:8;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;60194:17;60186:61;;;;-1:-1:-1;;;60186:61:0;;16363:2:1;60186:61:0;;;16345:21:1;16402:2;16382:18;;;16375:30;16441:33;16421:18;;;16414:61;16492:18;;60186:61:0;16161:355:1;60186:61:0;60261:8;;-1:-1:-1;;;60261:8:0;;;;:17;;60273:5;60261:17;60258:69;;60302:13;60295:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60086:484;;;:::o;60258:69::-;60337:26;60366:10;:8;:10::i;:::-;60387:28;;;;;;;;;;;;-1:-1:-1;;;60387:28:0;;;;60433:26;;60337:39;;-1:-1:-1;60387:28:0;60433:129;;;;;;;;;;;;;;;;;60503:12;60517:19;:8;:17;:19::i;:::-;60538:4;60486:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60433:129;60426:136;60086:484;-1:-1:-1;;;;60086:484:0:o;60694:100::-;56792:5;;-1:-1:-1;;;;;56792:5:0;56801:10;56792:19;56784:41;;;;-1:-1:-1;;;56784:41:0;;;;;;;:::i;:::-;60769:5:::1;:17:::0;;-1:-1:-1;;;;;;60769:17:0::1;-1:-1:-1::0;;;;;60769:17:0;;;::::1;::::0;;;::::1;::::0;;60694:100::o;59829:130::-;56792:5;;-1:-1:-1;;;;;56792:5:0;56801:10;56792:19;56784:41;;;;-1:-1:-1;;;56784:41:0;;;;;;;:::i;:::-;59918:13:::1;:33;59934:17:::0;59918:13;:33:::1;:::i;52439:196::-:0;52554:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52554:29:0;-1:-1:-1;;;;;52554:29:0;;;;;;;;;52599:28;;52554:24;;52599:28;;;;;;;52439:196;;;:::o;50747:1574::-;50862:35;50900:20;50912:7;50900:11;:20::i;:::-;50975:18;;50862:58;;-1:-1:-1;50933:22:0;;-1:-1:-1;;;;;50959:34:0;17148:10;-1:-1:-1;;;;;50959:34:0;;:87;;;-1:-1:-1;17148:10:0;51010:20;51022:7;51010:11;:20::i;:::-;-1:-1:-1;;;;;51010:36:0;;50959:87;:154;;;-1:-1:-1;51080:18:0;;51063:50;;17148:10;47271:164;:::i;51063:50::-;50933:181;;51135:17;51127:80;;;;-1:-1:-1;;;51127:80:0;;17392:2:1;51127:80:0;;;17374:21:1;17431:2;17411:18;;;17404:30;17470:34;17450:18;;;17443:62;-1:-1:-1;;;17521:18:1;;;17514:48;17579:19;;51127:80:0;17190:414:1;51127:80:0;51250:4;-1:-1:-1;;;;;51228:26:0;:13;:18;;;-1:-1:-1;;;;;51228:26:0;;51220:77;;;;-1:-1:-1;;;51220:77:0;;17811:2:1;51220:77:0;;;17793:21:1;17850:2;17830:18;;;17823:30;17889:34;17869:18;;;17862:62;-1:-1:-1;;;17940:18:1;;;17933:36;17986:19;;51220:77:0;17609:402:1;51220:77:0;-1:-1:-1;;;;;51316:16:0;;51308:66;;;;-1:-1:-1;;;51308:66:0;;18218:2:1;51308:66:0;;;18200:21:1;18257:2;18237:18;;;18230:30;18296:34;18276:18;;;18269:62;-1:-1:-1;;;18347:18:1;;;18340:35;18392:19;;51308:66:0;18016:401:1;51308:66:0;51495:49;51512:1;51516:7;51525:13;:18;;;51495:8;:49::i;:::-;-1:-1:-1;;;;;51557:18:0;;;;;;:12;:18;;;;;:31;;51587:1;;51557:18;:31;;51587:1;;-1:-1:-1;;;;;51557:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;51557:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;51599:16:0;;-1:-1:-1;51599:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;51599:16:0;;:29;;-1:-1:-1;;51599:29:0;;:::i;:::-;;;-1:-1:-1;;;;;51599:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51662:43:0;;;;;;;;-1:-1:-1;;;;;51662:43:0;;;;;;51688:15;51662:43;;;;;;;;;-1:-1:-1;51639:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;51639:66:0;-1:-1:-1;;;;;;51639:66:0;;;;;;;;;;;51967:11;51651:7;-1:-1:-1;51967:11:0;:::i;:::-;52034:1;51993:24;;;:11;:24;;;;;:29;51945:33;;-1:-1:-1;;;;;;51993:29:0;51989:227;;52057:20;52065:11;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;52057:20;52053:152;;;52125:64;;;;;;;;52140:18;;-1:-1:-1;;;;;52125:64:0;;;;;;52160:28;;;;52125:64;;;;;;;;;;-1:-1:-1;52098:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;52098:91:0;-1:-1:-1;;;;;;52098:91:0;;;;;;;;;;;;52053:152;52252:7;52248:2;-1:-1:-1;;;;;52233:27:0;52242:4;-1:-1:-1;;;;;52233:27:0;;;;;;;;;;;52271:42;50851:1470;;;50747:1574;;;:::o;52799:885::-;52893:24;;52936:12;52928:49;;;;-1:-1:-1;;;52928:49:0;;19133:2:1;52928:49:0;;;19115:21:1;19172:2;19152:18;;;19145:30;19211:26;19191:18;;;19184:54;19255:18;;52928:49:0;18931:348:1;52928:49:0;52988:16;53038:1;53007:28;53027:8;53007:17;:28;:::i;:::-;:32;;;;:::i;:::-;52988:51;;53080:1;53065:12;;:16;;;;:::i;:::-;53054:8;:27;53050:87;;;53124:1;53109:12;;:16;;;;:::i;:::-;53098:27;;53050:87;53260:17;53268:8;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;53260:17;53252:68;;;;-1:-1:-1;;;53252:68:0;;19486:2:1;53252:68:0;;;19468:21:1;19525:2;19505:18;;;19498:30;19564:34;19544:18;;;19537:62;-1:-1:-1;;;19615:18:1;;;19608:36;19661:19;;53252:68:0;19284:402:1;53252:68:0;53348:17;53331:296;53372:8;53367:1;:13;53331:296;;53437:1;53406:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;53406:19:0;53402:214;;53460:31;53494:14;53506:1;53494:11;:14::i;:::-;53544:56;;;;;;;;53559:14;;-1:-1:-1;;;;;53544:56:0;;;;;;53575:24;;;;53544:56;;;;;;;;;;-1:-1:-1;53527:14:0;;;:11;:14;;;;;;;:73;;;;;;;;;-1:-1:-1;;;53527:73:0;-1:-1:-1;;;;;;53527:73:0;;;;;;;;;;;;-1:-1:-1;53402:214:0;53382:3;;;;:::i;:::-;;;;53331:296;;;-1:-1:-1;53664:12:0;:8;53675:1;53664:12;:::i;:::-;53637:24;:39;-1:-1:-1;;;52799:885:0:o;48712:104::-;48781:27;48791:2;48795:8;48781:27;;;;;;;;;;;;:9;:27::i;44162:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;44265:16:0;44273:7;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;44265:16;44257:71;;;;-1:-1:-1;;;44257:71:0;;19893:2:1;44257:71:0;;;19875:21:1;19932:2;19912:18;;;19905:30;19971:34;19951:18;;;19944:62;-1:-1:-1;;;20022:18:1;;;20015:40;20072:19;;44257:71:0;19691:406:1;44257:71:0;44341:26;44393:12;44382:7;:23;44378:103;;44443:22;44453:12;44443:7;:22;:::i;:::-;:26;;44468:1;44443:26;:::i;:::-;44422:47;;44378:103;44513:7;44493:242;44530:18;44522:4;:26;44493:242;;44573:31;44607:17;;;:11;:17;;;;;;;;;44573:51;;;;;;;;;-1:-1:-1;;;;;44573:51:0;;;;;-1:-1:-1;;;44573:51:0;;;;;;;;;;;;44643:28;44639:85;;44699:9;44162:650;-1:-1:-1;;;;44162:650:0:o;44639:85::-;-1:-1:-1;44550:6:0;;;;:::i;:::-;;;;44493:242;;;-1:-1:-1;44747:57:0;;-1:-1:-1;;;44747:57:0;;20445:2:1;44747:57:0;;;20427:21:1;20484:2;20464:18;;;20457:30;20523:34;20503:18;;;20496:62;-1:-1:-1;;;20574:18:1;;;20567:45;20629:19;;44747:57:0;20243:411:1;54256:804:0;54411:4;-1:-1:-1;;;;;54432:13:0;;279:20;327:8;54428:625;;54468:72;;-1:-1:-1;;;54468:72:0;;-1:-1:-1;;;;;54468:36:0;;;;;:72;;17148:10;;54519:4;;54525:7;;54534:5;;54468:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54468:72:0;;;;;;;;-1:-1:-1;;54468:72:0;;;;;;;;;;;;:::i;:::-;;;54464:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54714:6;:13;54731:1;54714:18;54710:273;;54757:61;;-1:-1:-1;;;54757:61:0;;;;;;;:::i;54710:273::-;54933:6;54927:13;54918:6;54914:2;54910:15;54903:38;54464:534;-1:-1:-1;;;;;;54591:55:0;-1:-1:-1;;;54591:55:0;;-1:-1:-1;54584:62:0;;54428:625;-1:-1:-1;55037:4:0;54256:804;;;;;;:::o;60578:108::-;60638:13;60671:7;60664:14;;;;;:::i;5917:723::-;5973:13;6194:5;6203:1;6194:10;6190:53;;-1:-1:-1;;6221:10:0;;;;;;;;;;;;-1:-1:-1;;;6221:10:0;;;;;5917:723::o;6190:53::-;6268:5;6253:12;6309:78;6316:9;;6309:78;;6342:8;;;;:::i;:::-;;-1:-1:-1;6365:10:0;;-1:-1:-1;6373:2:0;6365:10;;:::i;:::-;;;6309:78;;;6397:19;6429:6;6419:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6419:17:0;;6397:39;;6447:154;6454:10;;6447:154;;6481:11;6491:1;6481:11;;:::i;:::-;;-1:-1:-1;6550:10:0;6558:2;6550:5;:10;:::i;:::-;6537:24;;:2;:24;:::i;:::-;6524:39;;6507:6;6514;6507:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6507:56:0;;;;;;;;-1:-1:-1;6578:11:0;6587:2;6578:11;;:::i;:::-;;;6447:154;;49093:1400;49216:20;49239:12;-1:-1:-1;;;;;49270:16:0;;49262:62;;;;-1:-1:-1;;;49262:62:0;;21983:2:1;49262:62:0;;;21965:21:1;22022:2;22002:18;;;21995:30;22061:34;22041:18;;;22034:62;-1:-1:-1;;;22112:18:1;;;22105:31;22153:19;;49262:62:0;21781:397:1;49262:62:0;49469:21;49477:12;48650:4;48684:12;-1:-1:-1;48674:22:0;48593:111;49469:21;49468:22;49460:64;;;;-1:-1:-1;;;49460:64:0;;22385:2:1;49460:64:0;;;22367:21:1;22424:2;22404:18;;;22397:30;22463:31;22443:18;;;22436:59;22512:18;;49460:64:0;22183:353:1;49460:64:0;49555:12;49543:8;:24;;49535:71;;;;-1:-1:-1;;;49535:71:0;;22743:2:1;49535:71:0;;;22725:21:1;22782:2;22762:18;;;22755:30;22821:34;22801:18;;;22794:62;-1:-1:-1;;;22872:18:1;;;22865:32;22914:19;;49535:71:0;22541:398:1;49535:71:0;-1:-1:-1;;;;;49726:16:0;;49693:30;49726:16;;;:12;:16;;;;;;;;;49693:49;;;;;;;;;-1:-1:-1;;;;;49693:49:0;;;;;-1:-1:-1;;;49693:49:0;;;;;;;;;;;49772:135;;;;;;;;49798:19;;49693:49;;49772:135;;;49798:39;;49828:8;;49798:39;:::i;:::-;-1:-1:-1;;;;;49772:135:0;;;;;49887:8;49852:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;49772:135:0;;;;;;-1:-1:-1;;;;;49753:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;49753:154:0;;;;;;;;;;;;49946:43;;;;;;;;;;;49972:15;49946:43;;;;;;;;49918:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;49918:71:0;-1:-1:-1;;;;;;49918:71:0;;;;;;;;;;;;;;;;;;49930:12;;50050:325;50074:8;50070:1;:12;50050:325;;;50109:38;;50134:12;;-1:-1:-1;;;;;50109:38:0;;;50126:1;;50109:38;;50126:1;;50109:38;50188:59;50219:1;50223:2;50227:12;50241:5;50188:22;:59::i;:::-;50162:172;;;;-1:-1:-1;;;50162:172:0;;;;;;;:::i;:::-;50349:14;;;;:::i;:::-;;;;50084:3;;;;;:::i;:::-;;;;50050:325;;;-1:-1:-1;50387:12:0;:27;;;50425:60;47983:355;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;:::-;566:5;332:245;-1:-1:-1;;;332:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:615::-;2965:6;2973;3026:2;3014:9;3005:7;3001:23;2997:32;2994:52;;;3042:1;3039;3032:12;2994:52;3082:9;3069:23;3111:18;3152:2;3144:6;3141:14;3138:34;;;3168:1;3165;3158:12;3138:34;3206:6;3195:9;3191:22;3181:32;;3251:7;3244:4;3240:2;3236:13;3232:27;3222:55;;3273:1;3270;3263:12;3222:55;3313:2;3300:16;3339:2;3331:6;3328:14;3325:34;;;3355:1;3352;3345:12;3325:34;3408:7;3403:2;3393:6;3390:1;3386:14;3382:2;3378:23;3374:32;3371:45;3368:65;;;3429:1;3426;3419:12;3368:65;3460:2;3452:11;;;;;3482:6;;-1:-1:-1;2879:615:1;;-1:-1:-1;;;;2879:615:1:o;3499:127::-;3560:10;3555:3;3551:20;3548:1;3541:31;3591:4;3588:1;3581:15;3615:4;3612:1;3605:15;3631:632;3696:5;3726:18;3767:2;3759:6;3756:14;3753:40;;;3773:18;;:::i;:::-;3848:2;3842:9;3816:2;3902:15;;-1:-1:-1;;3898:24:1;;;3924:2;3894:33;3890:42;3878:55;;;3948:18;;;3968:22;;;3945:46;3942:72;;;3994:18;;:::i;:::-;4034:10;4030:2;4023:22;4063:6;4054:15;;4093:6;4085;4078:22;4133:3;4124:6;4119:3;4115:16;4112:25;4109:45;;;4150:1;4147;4140:12;4109:45;4200:6;4195:3;4188:4;4180:6;4176:17;4163:44;4255:1;4248:4;4239:6;4231;4227:19;4223:30;4216:41;;;;3631:632;;;;;:::o;4268:451::-;4337:6;4390:2;4378:9;4369:7;4365:23;4361:32;4358:52;;;4406:1;4403;4396:12;4358:52;4446:9;4433:23;4479:18;4471:6;4468:30;4465:50;;;4511:1;4508;4501:12;4465:50;4534:22;;4587:4;4579:13;;4575:27;-1:-1:-1;4565:55:1;;4616:1;4613;4606:12;4565:55;4639:74;4705:7;4700:2;4687:16;4682:2;4678;4674:11;4639:74;:::i;4724:347::-;4789:6;4797;4850:2;4838:9;4829:7;4825:23;4821:32;4818:52;;;4866:1;4863;4856:12;4818:52;4889:29;4908:9;4889:29;:::i;:::-;4879:39;;4968:2;4957:9;4953:18;4940:32;5015:5;5008:13;5001:21;4994:5;4991:32;4981:60;;5037:1;5034;5027:12;4981:60;5060:5;5050:15;;;4724:347;;;;;:::o;5076:667::-;5171:6;5179;5187;5195;5248:3;5236:9;5227:7;5223:23;5219:33;5216:53;;;5265:1;5262;5255:12;5216:53;5288:29;5307:9;5288:29;:::i;:::-;5278:39;;5336:38;5370:2;5359:9;5355:18;5336:38;:::i;:::-;5326:48;;5421:2;5410:9;5406:18;5393:32;5383:42;;5476:2;5465:9;5461:18;5448:32;5503:18;5495:6;5492:30;5489:50;;;5535:1;5532;5525:12;5489:50;5558:22;;5611:4;5603:13;;5599:27;-1:-1:-1;5589:55:1;;5640:1;5637;5630:12;5589:55;5663:74;5729:7;5724:2;5711:16;5706:2;5702;5698:11;5663:74;:::i;:::-;5653:84;;;5076:667;;;;;;;:::o;5748:260::-;5816:6;5824;5877:2;5865:9;5856:7;5852:23;5848:32;5845:52;;;5893:1;5890;5883:12;5845:52;5916:29;5935:9;5916:29;:::i;:::-;5906:39;;5964:38;5998:2;5987:9;5983:18;5964:38;:::i;:::-;5954:48;;5748:260;;;;;:::o;6013:380::-;6092:1;6088:12;;;;6135;;;6156:61;;6210:4;6202:6;6198:17;6188:27;;6156:61;6263:2;6255:6;6252:14;6232:18;6229:38;6226:161;;6309:10;6304:3;6300:20;6297:1;6290:31;6344:4;6341:1;6334:15;6372:4;6369:1;6362:15;6226:161;;6013:380;;;:::o;7641:332::-;7843:2;7825:21;;;7882:1;7862:18;;;7855:29;-1:-1:-1;;;7915:2:1;7900:18;;7893:39;7964:2;7949:18;;7641:332::o;8381:127::-;8442:10;8437:3;8433:20;8430:1;8423:31;8473:4;8470:1;8463:15;8497:4;8494:1;8487:15;8513:135;8552:3;8573:17;;;8570:43;;8593:18;;:::i;:::-;-1:-1:-1;8640:1:1;8629:13;;8513:135::o;9068:128::-;9108:3;9139:1;9135:6;9132:1;9129:13;9126:39;;;9145:18;;:::i;:::-;-1:-1:-1;9181:9:1;;9068:128::o;9970:127::-;10031:10;10026:3;10022:20;10019:1;10012:31;10062:4;10059:1;10052:15;10086:4;10083:1;10076:15;10984:545;11086:2;11081:3;11078:11;11075:448;;;11122:1;11147:5;11143:2;11136:17;11192:4;11188:2;11178:19;11262:2;11250:10;11246:19;11243:1;11239:27;11233:4;11229:38;11298:4;11286:10;11283:20;11280:47;;;-1:-1:-1;11321:4:1;11280:47;11376:2;11371:3;11367:12;11364:1;11360:20;11354:4;11350:31;11340:41;;11431:82;11449:2;11442:5;11439:13;11431:82;;;11494:17;;;11475:1;11464:13;11431:82;;11705:1352;11831:3;11825:10;11858:18;11850:6;11847:30;11844:56;;;11880:18;;:::i;:::-;11909:97;11999:6;11959:38;11991:4;11985:11;11959:38;:::i;:::-;11953:4;11909:97;:::i;:::-;12061:4;;12125:2;12114:14;;12142:1;12137:663;;;;12844:1;12861:6;12858:89;;;-1:-1:-1;12913:19:1;;;12907:26;12858:89;-1:-1:-1;;11662:1:1;11658:11;;;11654:24;11650:29;11640:40;11686:1;11682:11;;;11637:57;12960:81;;12107:944;;12137:663;10931:1;10924:14;;;10968:4;10955:18;;-1:-1:-1;;12173:20:1;;;12291:236;12305:7;12302:1;12299:14;12291:236;;;12394:19;;;12388:26;12373:42;;12486:27;;;;12454:1;12442:14;;;;12321:19;;12291:236;;;12295:3;12555:6;12546:7;12543:19;12540:201;;;12616:19;;;12610:26;-1:-1:-1;;12699:1:1;12695:14;;;12711:3;12691:24;12687:37;12683:42;12668:58;12653:74;;12540:201;-1:-1:-1;;;;;12787:1:1;12771:14;;;12767:22;12754:36;;-1:-1:-1;11705:1352:1:o;15611:125::-;15651:4;15679:1;15676;15673:8;15670:34;;;15684:18;;:::i;:::-;-1:-1:-1;15721:9:1;;15611:125::o;15741:415::-;15943:2;15925:21;;;15982:2;15962:18;;;15955:30;16021:34;16016:2;16001:18;;15994:62;-1:-1:-1;;;16087:2:1;16072:18;;16065:49;16146:3;16131:19;;15741:415::o;16521:664::-;16748:3;16786:6;16780:13;16802:53;16848:6;16843:3;16836:4;16828:6;16824:17;16802:53;:::i;:::-;16918:13;;16877:16;;;;16940:57;16918:13;16877:16;16974:4;16962:17;;16940:57;:::i;:::-;17064:13;;17019:20;;;17086:57;17064:13;17019:20;17120:4;17108:17;;17086:57;:::i;:::-;17159:20;;16521:664;-1:-1:-1;;;;;16521:664:1:o;18422:246::-;18462:4;-1:-1:-1;;;;;18575:10:1;;;;18545;;18597:12;;;18594:38;;;18612:18;;:::i;:::-;18649:13;;18422:246;-1:-1:-1;;;18422:246:1:o;18673:253::-;18713:3;-1:-1:-1;;;;;18802:2:1;18799:1;18795:10;18832:2;18829:1;18825:10;18863:3;18859:2;18855:12;18850:3;18847:21;18844:47;;;18871:18;;:::i;:::-;18907:13;;18673:253;-1:-1:-1;;;;18673:253:1:o;20102:136::-;20141:3;20169:5;20159:39;;20178:18;;:::i;:::-;-1:-1:-1;;;20214:18:1;;20102:136::o;20659:489::-;-1:-1:-1;;;;;20928:15:1;;;20910:34;;20980:15;;20975:2;20960:18;;20953:43;21027:2;21012:18;;21005:34;;;21075:3;21070:2;21055:18;;21048:31;;;20853:4;;21096:46;;21122:19;;21114:6;21096:46;:::i;:::-;21088:54;20659:489;-1:-1:-1;;;;;;20659:489:1:o;21153:249::-;21222:6;21275:2;21263:9;21254:7;21250:23;21246:32;21243:52;;;21291:1;21288;21281:12;21243:52;21323:9;21317:16;21342:30;21366:5;21342:30;:::i;21407:127::-;21468:10;21463:3;21459:20;21456:1;21449:31;21499:4;21496:1;21489:15;21523:4;21520:1;21513:15;21539:120;21579:1;21605;21595:35;;21610:18;;:::i;:::-;-1:-1:-1;21644:9:1;;21539:120::o;21664:112::-;21696:1;21722;21712:35;;21727:18;;:::i;:::-;-1:-1:-1;21761:9:1;;21664:112::o

Swarm Source

ipfs://047c86d6f09fce6955e30a7a012e295c6d894b21c93ca2b33ee404941f918ecd
Loading...
Loading
Loading...
Loading
[ 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.