ETH Price: $3,388.78 (-1.71%)
Gas: 6 Gwei

Token

Hey Bear Club (HBC)
 

Overview

Max Total Supply

529 HBC

Holders

148

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 HBC
0x628c188a186eDC958e9eA4523862D5e7a479A188
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:
HBC

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-29
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
		
        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

contract HBC is ERC721, Ownable, ERC721Enumerable, ReentrancyGuard {
    using Strings for uint256;
	
    uint256 public SALE_NFT = 1527;
	uint256 public MAX_MINT_PRESALE = 5;
	uint256 public MAX_MINT_SALE = 5;
	
	uint256 public MAX_BY_MINT_IN_TRANSACTION_PRESALE = 5;
	uint256 public MAX_BY_MINT_IN_TRANSACTION_SALE = 5;
	
	uint256 public PRESALE_PRICE = 0.02 ether;
	uint256 public SALE_PRICE = 0.0275 ether;
	
	uint256 public SALE_MINTED;
	
    bool public presaleEnable = false;
	bool public saleEnable = false;
	bool public nftRevealed = false;
	
    string public baseURI;
	bytes32 public merkleRoot;
	
	struct User {
		uint256 presalemint;
		uint256 salemint;
    }
	
	mapping (address => User) public users;

    constructor() ERC721("Hey Bear Club", "HBC") {}
	
	function mintReservedNFT(address[] calldata _to, uint256[] calldata _count) external onlyOwner nonReentrant{
        require(_to.length == _count.length,"Mismatch between Address and count");
		for(uint i=0; i < _to.length; i++){
		    require(
				SALE_MINTED + _count[i] <= SALE_NFT, 
				"Max limit"
			);
			for (uint256 j = 0; j < _count[i]; j++) {
			    uint256 totalSupply = totalSupply();
				_safeMint(_to[i], totalSupply + 1);
				SALE_MINTED++;
			}
		}
    }
	
	function mintPreSaleNFT(uint256 _count, bytes32[] calldata merkleProof) external payable nonReentrant{
		bytes32 node = keccak256(abi.encodePacked(msg.sender));
		require(
			presaleEnable, 
			"Pre-sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			MerkleProof.verify(merkleProof, merkleRoot, node), 
			"MerkleDistributor: Invalid proof."
		);
		require(
			users[msg.sender].presalemint + _count <= MAX_MINT_PRESALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_PRESALE,
			"Exceeds max mint limit per tnx"
		);
		require(
			msg.value >= PRESALE_PRICE * _count,
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
			uint256 totalSupply = totalSupply();
            _safeMint(msg.sender, totalSupply + 1);
			SALE_MINTED++;
        }
		users[msg.sender].presalemint = users[msg.sender].presalemint + _count;
    }
	
	function mintSaleNFT(uint256 _count) external payable nonReentrant{
		require(
			saleEnable, 
			"Sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			users[msg.sender].salemint + _count <= MAX_MINT_SALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_SALE,
			"Exceeds max mint limit per tnx"
		);
		require(
			msg.value >= SALE_PRICE * _count,
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
            uint256 totalSupply = totalSupply();
			_safeMint(msg.sender, totalSupply + 1);
			SALE_MINTED++;
        }
		users[msg.sender].salemint = users[msg.sender].salemint + _count;
    }
	
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
		if(!nftRevealed)
		{
		   return string(abi.encodePacked(baseURI));
		}
		else
		{
		    return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
		}
    }
	
	function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable){
        super._beforeTokenTransfer(from, to, tokenId);
    }
	
	function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
	
	function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
	
	function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }
	
	function updateSalePrice(uint256 newPrice) external onlyOwner {
        SALE_PRICE = newPrice;
    }
	
	function updatePreSalePrice(uint256 newPrice) external onlyOwner {
        PRESALE_PRICE = newPrice;
    }
	
	function setSaleStatus(bool status) external onlyOwner {
        require(saleEnable != status);
		saleEnable = status;
    }
	
	function setNFTRevealedStatus(bool status) external onlyOwner {
        require(nftRevealed != status);
		nftRevealed = status;
    }
	
	function setPreSaleStatus(bool status) external onlyOwner {
	   require(presaleEnable != status);
       presaleEnable = status;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_SALE = newLimit;
    }
	
	function updatePreSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_PRESALE = newLimit;
    }
	
	function updateSaleSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= SALE_MINTED, "Incorrect value");
        SALE_NFT = newSupply;
    }
	
	function updateMintLimitPerTransactionPreSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_PRESALE = newLimit;
    }
	
	function updateMintLimitPerTransactionSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_SALE = newLimit;
    }
	
	function updateMerkleRoot(bytes32 newRoot) external onlyOwner {
	   merkleRoot = newRoot;
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_count","type":"uint256[]"}],"name":"mintReservedNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnable","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setNFTRevealedStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransactionPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransactionSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"presalemint","type":"uint256"},{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526105f7600c556005600d819055600e819055600f81905560105566470de4df8200006011556661b31ab352c0006012556014805462ffffff191690553480156200004d57600080fd5b50604080518082018252600d81526c2432bc902132b0b91021b63ab160991b60208083019182528351808501909452600384526248424360e81b9084015281519192916200009e9160009162000132565b508051620000b490600190602084019062000132565b505050620000d1620000cb620000dc60201b60201c565b620000e0565b6001600b5562000215565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014090620001d8565b90600052602060002090601f016020900481019282620001645760008555620001af565b82601f106200017f57805160ff1916838001178555620001af565b82800160010185558215620001af579182015b82811115620001af57825182559160200191906001019062000192565b50620001bd929150620001c1565b5090565b5b80821115620001bd5760008155600101620001c2565b600281046001821680620001ed57607f821691505b602082108114156200020f57634e487b7160e01b600052602260045260246000fd5b50919050565b61319080620002256000396000f3fe6080604052600436106102ae5760003560e01c80637e95eac411610175578063ac0419fd116100dc578063ce22483c11610095578063f176baaa1161006f578063f176baaa146107c0578063f2fde38b146107e0578063f439733514610800578063fe4ca84714610820576102ae565b8063ce22483c14610760578063d897833e14610780578063e985e9c5146107a0576102ae565b8063ac0419fd146106b6578063ae5cc172146106d6578063b88d4fde146106eb578063c19739ce1461070b578063c87b56dd1461072b578063ccfb63a41461074b576102ae565b8063945242c61161012e578063945242c61461061857806395d89b411461062b578063995b8ef614610640578063a22cb46514610655578063a87430ba14610675578063a9526862146106a3576102ae565b80637e95eac4146105845780637ec0912e146105995780637ec18cf6146105b95780637f205a74146105ce5780638da5cb5b146105e3578063941e79fc146105f8576102ae565b80634783f0ef116102195780636352211e116101d25780636352211e146104e557806365fccb52146105055780636c0360eb1461052557806370a082311461053a578063711cc2ae1461055a578063715018a61461056f576102ae565b80634783f0ef146104305780634df08219146104505780634f6ccce71461047057806355f804b3146104905780635e326b92146104b057806362dc6e21146104d0576102ae565b80631e05ecb41161026b5780631e05ecb41461039157806323b872dd146103a65780632eb4a7ab146103c65780632f745c59146103db5780633ccfd60b146103fb57806342842e0e14610410576102ae565b806301ffc9a7146102b357806306fdde03146102e9578063081812fc1461030b578063095ea7b3146103385780630990e5341461035a57806318160ddd1461037c575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612661565b610835565b6040516102e091906128aa565b60405180910390f35b3480156102f557600080fd5b506102fe610848565b6040516102e091906128be565b34801561031757600080fd5b5061032b610326366004612649565b6108da565b6040516102e09190612859565b34801561034457600080fd5b5061035861035336600461259d565b610926565b005b34801561036657600080fd5b5061036f6109be565b6040516102e091906128b5565b34801561038857600080fd5b5061036f6109c4565b34801561039d57600080fd5b506102d36109ca565b3480156103b257600080fd5b506103586103c13660046124c0565b6109d9565b3480156103d257600080fd5b5061036f610a11565b3480156103e757600080fd5b5061036f6103f636600461259d565b610a17565b34801561040757600080fd5b50610358610a69565b34801561041c57600080fd5b5061035861042b3660046124c0565b610adb565b34801561043c57600080fd5b5061035861044b366004612649565b610af6565b34801561045c57600080fd5b5061035861046b3660046125c6565b610b3a565b34801561047c57600080fd5b5061036f61048b366004612649565b610ced565b34801561049c57600080fd5b506103586104ab366004612699565b610d48565b3480156104bc57600080fd5b506103586104cb36600461262f565b610d9a565b3480156104dc57600080fd5b5061036f610e02565b3480156104f157600080fd5b5061032b610500366004612649565b610e08565b34801561051157600080fd5b50610358610520366004612649565b610e3d565b34801561053157600080fd5b506102fe610e81565b34801561054657600080fd5b5061036f61055536600461246d565b610f0f565b34801561056657600080fd5b5061036f610f53565b34801561057b57600080fd5b50610358610f59565b34801561059057600080fd5b5061036f610fa4565b3480156105a557600080fd5b506103586105b4366004612649565b610faa565b3480156105c557600080fd5b506102d3610fee565b3480156105da57600080fd5b5061036f610ff7565b3480156105ef57600080fd5b5061032b610ffd565b34801561060457600080fd5b50610358610613366004612649565b61100c565b6103586106263660046126df565b611072565b34801561063757600080fd5b506102fe611288565b34801561064c57600080fd5b5061036f611297565b34801561066157600080fd5b50610358610670366004612574565b61129d565b34801561068157600080fd5b5061069561069036600461246d565b6112af565b6040516102e092919061280a565b6103586106b1366004612649565b6112c8565b3480156106c257600080fd5b506103586106d1366004612649565b611460565b3480156106e257600080fd5b5061036f6114c6565b3480156106f757600080fd5b506103586107063660046124fb565b6114cc565b34801561071757600080fd5b5061035861072636600461262f565b61150b565b34801561073757600080fd5b506102fe610746366004612649565b611583565b34801561075757600080fd5b5061036f6115fe565b34801561076c57600080fd5b5061035861077b366004612649565b611604565b34801561078c57600080fd5b5061035861079b36600461262f565b61166a565b3480156107ac57600080fd5b506102d36107bb36600461248e565b6116df565b3480156107cc57600080fd5b506103586107db366004612649565b61170d565b3480156107ec57600080fd5b506103586107fb36600461246d565b611773565b34801561080c57600080fd5b5061035861081b366004612649565b6117e4565b34801561082c57600080fd5b506102d361184a565b600061084082611858565b90505b919050565b60606000805461085790613098565b80601f016020809104026020016040519081016040528092919081815260200182805461088390613098565b80156108d05780601f106108a5576101008083540402835291602001916108d0565b820191906000526020600020905b8154815290600101906020018083116108b357829003601f168201915b5050505050905090565b60006108e58261187d565b61090a5760405162461bcd60e51b815260040161090190612d3b565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093182610e08565b9050806001600160a01b0316836001600160a01b031614156109655760405162461bcd60e51b815260040161090190612ea8565b806001600160a01b031661097761189a565b6001600160a01b031614806109935750610993816107bb61189a565b6109af5760405162461bcd60e51b815260040161090190612b72565b6109b9838361189e565b505050565b60135481565b60095490565b60145462010000900460ff1681565b6109ea6109e461189a565b8261190c565b610a065760405162461bcd60e51b815260040161090190612ee9565b6109b9838383611991565b60165481565b6000610a2283610f0f565b8210610a405760405162461bcd60e51b8152600401610901906128d1565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610a7161189a565b6001600160a01b0316610a82610ffd565b6001600160a01b031614610aa85760405162461bcd60e51b815260040161090190612db0565b6040514790339082156108fc029083906000818181858888f19350505050158015610ad7573d6000803e3d6000fd5b5050565b6109b9838383604051806020016040528060008152506114cc565b610afe61189a565b6001600160a01b0316610b0f610ffd565b6001600160a01b031614610b355760405162461bcd60e51b815260040161090190612db0565b601655565b610b4261189a565b6001600160a01b0316610b53610ffd565b6001600160a01b031614610b795760405162461bcd60e51b815260040161090190612db0565b6002600b541415610b9c5760405162461bcd60e51b815260040161090190612fc7565b6002600b55828114610bc05760405162461bcd60e51b815260040161090190612cc4565b60005b83811015610ce157600c54838383818110610bee57634e487b7160e01b600052603260045260246000fd5b90506020020135601354610c02919061300a565b1115610c205760405162461bcd60e51b815260040161090190612a66565b60005b838383818110610c4357634e487b7160e01b600052603260045260246000fd5b90506020020135811015610cce576000610c5b6109c4565b9050610ca5878785818110610c8057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610c95919061246d565b610ca083600161300a565b611abe565b60138054906000610cb5836130d3565b9190505550508080610cc6906130d3565b915050610c23565b5080610cd9816130d3565b915050610bc3565b50506001600b55505050565b6000610cf76109c4565b8210610d155760405162461bcd60e51b815260040161090190612f7b565b60098281548110610d3657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610d5061189a565b6001600160a01b0316610d61610ffd565b6001600160a01b031614610d875760405162461bcd60e51b815260040161090190612db0565b8051610ad79060159060208401906122f4565b610da261189a565b6001600160a01b0316610db3610ffd565b6001600160a01b031614610dd95760405162461bcd60e51b815260040161090190612db0565b60145460ff1615158115151415610def57600080fd5b6014805460ff1916911515919091179055565b60115481565b6000818152600260205260408120546001600160a01b0316806108405760405162461bcd60e51b815260040161090190612c50565b610e4561189a565b6001600160a01b0316610e56610ffd565b6001600160a01b031614610e7c5760405162461bcd60e51b815260040161090190612db0565b601155565b60158054610e8e90613098565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba90613098565b8015610f075780601f10610edc57610100808354040283529160200191610f07565b820191906000526020600020905b815481529060010190602001808311610eea57829003601f168201915b505050505081565b60006001600160a01b038216610f375760405162461bcd60e51b815260040161090190612c06565b506001600160a01b031660009081526003602052604090205490565b60105481565b610f6161189a565b6001600160a01b0316610f72610ffd565b6001600160a01b031614610f985760405162461bcd60e51b815260040161090190612db0565b610fa26000611ad8565b565b600d5481565b610fb261189a565b6001600160a01b0316610fc3610ffd565b6001600160a01b031614610fe95760405162461bcd60e51b815260040161090190612db0565b601255565b60145460ff1681565b60125481565b6006546001600160a01b031690565b61101461189a565b6001600160a01b0316611025610ffd565b6001600160a01b03161461104b5760405162461bcd60e51b815260040161090190612db0565b80600c54101561106d5760405162461bcd60e51b815260040161090190612d87565b600d55565b6002600b5414156110955760405162461bcd60e51b815260040161090190612fc7565b6002600b556040516000906110ae9033906020016127ed565b60408051601f19818403018152919052805160209091012060145490915060ff166110eb5760405162461bcd60e51b815260040161090190612b01565b600c54846013546110fc919061300a565b111561111a5760405162461bcd60e51b815260040161090190612c99565b61115b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150849050611b2a565b6111775760405162461bcd60e51b815260040161090190612b31565b600d543360009081526017602052604090205461119590869061300a565b11156111b35760405162461bcd60e51b815260040161090190612f3a565b600f548411156111d55760405162461bcd60e51b815260040161090190612bcf565b836011546111e39190613036565b3410156112025760405162461bcd60e51b815260040161090190612e7d565b60005b848110156112515760006112176109c4565b905061122833610ca083600161300a565b60138054906000611238836130d3565b9190505550508080611249906130d3565b915050611205565b503360009081526017602052604090205461126d90859061300a565b3360009081526017602052604090205550506001600b555050565b60606001805461085790613098565b600c5481565b610ad76112a861189a565b8383611be5565b6017602052600090815260409020805460019091015482565b6002600b5414156112eb5760405162461bcd60e51b815260040161090190612fc7565b6002600b55601454610100900460ff166113175760405162461bcd60e51b815260040161090190612a89565b600c5481601354611328919061300a565b11156113465760405162461bcd60e51b815260040161090190612c99565b600e543360009081526017602052604090206001015461136790839061300a565b11156113855760405162461bcd60e51b815260040161090190612f3a565b6010548111156113a75760405162461bcd60e51b815260040161090190612bcf565b806012546113b59190613036565b3410156113d45760405162461bcd60e51b815260040161090190612e7d565b60005b818110156114235760006113e96109c4565b90506113fa33610ca083600161300a565b6013805490600061140a836130d3565b919050555050808061141b906130d3565b9150506113d7565b503360009081526017602052604090206001015461144290829061300a565b336000908152601760205260409020600190810191909155600b5550565b61146861189a565b6001600160a01b0316611479610ffd565b6001600160a01b03161461149f5760405162461bcd60e51b815260040161090190612db0565b80600c5410156114c15760405162461bcd60e51b815260040161090190612d87565b600f55565b600e5481565b6114dd6114d761189a565b8361190c565b6114f95760405162461bcd60e51b815260040161090190612ee9565b61150584848484611c88565b50505050565b61151361189a565b6001600160a01b0316611524610ffd565b6001600160a01b03161461154a5760405162461bcd60e51b815260040161090190612db0565b60145460ff62010000909104161515811515141561156757600080fd5b60148054911515620100000262ff000019909216919091179055565b606061158e8261187d565b6115aa5760405162461bcd60e51b815260040161090190612e2e565b60145462010000900460ff166115e25760156040516020016115cc9190612818565b6040516020818303038152906040529050610843565b60156115ed83611cbb565b6040516020016115cc929190612824565b600f5481565b61160c61189a565b6001600160a01b031661161d610ffd565b6001600160a01b0316146116435760405162461bcd60e51b815260040161090190612db0565b80600c5410156116655760405162461bcd60e51b815260040161090190612d87565b601055565b61167261189a565b6001600160a01b0316611683610ffd565b6001600160a01b0316146116a95760405162461bcd60e51b815260040161090190612db0565b60145460ff61010090910416151581151514156116c557600080fd5b601480549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61171561189a565b6001600160a01b0316611726610ffd565b6001600160a01b03161461174c5760405162461bcd60e51b815260040161090190612db0565b80600c54101561176e5760405162461bcd60e51b815260040161090190612d87565b600e55565b61177b61189a565b6001600160a01b031661178c610ffd565b6001600160a01b0316146117b25760405162461bcd60e51b815260040161090190612db0565b6001600160a01b0381166117d85760405162461bcd60e51b81526004016109019061296e565b6117e181611ad8565b50565b6117ec61189a565b6001600160a01b03166117fd610ffd565b6001600160a01b0316146118235760405162461bcd60e51b815260040161090190612db0565b6013548110156118455760405162461bcd60e51b815260040161090190612d87565b600c55565b601454610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610840575061084082611dd6565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118d382610e08565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119178261187d565b6119335760405162461bcd60e51b815260040161090190612ab5565b600061193e83610e08565b9050806001600160a01b0316846001600160a01b031614806119795750836001600160a01b031661196e846108da565b6001600160a01b0316145b80611989575061198981856116df565b949350505050565b826001600160a01b03166119a482610e08565b6001600160a01b0316146119ca5760405162461bcd60e51b815260040161090190612de5565b6001600160a01b0382166119f05760405162461bcd60e51b8152600401610901906129eb565b6119fb838383611e16565b611a0660008261189e565b6001600160a01b0383166000908152600360205260408120805460019290611a2f908490613055565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a5d90849061300a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ad7828260405180602001604052806000815250611e21565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b8551811015611bda576000868281518110611b5a57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611b9b578281604051602001611b7e92919061280a565b604051602081830303815290604052805190602001209250611bc7565b8083604051602001611bae92919061280a565b6040516020818303038152906040528051906020012092505b5080611bd2816130d3565b915050611b2f565b509092149392505050565b816001600160a01b0316836001600160a01b03161415611c175760405162461bcd60e51b815260040161090190612a2f565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611c7b9085906128aa565b60405180910390a3505050565b611c93848484611991565b611c9f84848484611e54565b6115055760405162461bcd60e51b81526004016109019061291c565b606081611ce057506040805180820190915260018152600360fc1b6020820152610843565b8160005b8115611d0a5780611cf4816130d3565b9150611d039050600a83613022565b9150611ce4565b60008167ffffffffffffffff811115611d3357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d5d576020820181803683370190505b5090505b841561198957611d72600183613055565b9150611d7f600a866130ee565b611d8a90603061300a565b60f81b818381518110611dad57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611dcf600a86613022565b9450611d61565b60006001600160e01b031982166380ac58cd60e01b1480611e0757506001600160e01b03198216635b5e139f60e01b145b80610840575061084082611f6f565b6109b9838383611f88565b611e2b8383612011565b611e386000848484611e54565b6109b95760405162461bcd60e51b81526004016109019061291c565b6000611e68846001600160a01b03166120f0565b15611f6457836001600160a01b031663150b7a02611e8461189a565b8786866040518563ffffffff1660e01b8152600401611ea6949392919061286d565b602060405180830381600087803b158015611ec057600080fd5b505af1925050508015611ef0575060408051601f3d908101601f19168201909252611eed9181019061267d565b60015b611f4a573d808015611f1e576040519150601f19603f3d011682016040523d82523d6000602084013e611f23565b606091505b508051611f425760405162461bcd60e51b81526004016109019061291c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611989565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611f938383836109b9565b6001600160a01b038316611faf57611faa816120f6565b611fd2565b816001600160a01b0316836001600160a01b031614611fd257611fd2838261213a565b6001600160a01b038216611fee57611fe9816121d7565b6109b9565b826001600160a01b0316826001600160a01b0316146109b9576109b982826122b0565b6001600160a01b0382166120375760405162461bcd60e51b815260040161090190612d06565b6120408161187d565b1561205d5760405162461bcd60e51b8152600401610901906129b4565b61206960008383611e16565b6001600160a01b038216600090815260036020526040812080546001929061209290849061300a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6000600161214784610f0f565b6121519190613055565b6000838152600860205260409020549091508082146121a4576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906121e990600190613055565b6000838152600a60205260408120546009805493945090928490811061221f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061224e57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061229457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006122bb83610f0f565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461230090613098565b90600052602060002090601f0160209004810192826123225760008555612368565b82601f1061233b57805160ff1916838001178555612368565b82800160010185558215612368579182015b8281111561236857825182559160200191906001019061234d565b50612374929150612378565b5090565b5b808211156123745760008155600101612379565b600067ffffffffffffffff808411156123a8576123a861312e565b604051601f8501601f1916810160200182811182821017156123cc576123cc61312e565b6040528481529150818385018610156123e457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461084357600080fd5b60008083601f840112612425578081fd5b50813567ffffffffffffffff81111561243c578182fd5b602083019150836020808302850101111561245657600080fd5b9250929050565b8035801515811461084357600080fd5b60006020828403121561247e578081fd5b612487826123fd565b9392505050565b600080604083850312156124a0578081fd5b6124a9836123fd565b91506124b7602084016123fd565b90509250929050565b6000806000606084860312156124d4578081fd5b6124dd846123fd565b92506124eb602085016123fd565b9150604084013590509250925092565b60008060008060808587031215612510578081fd5b612519856123fd565b9350612527602086016123fd565b925060408501359150606085013567ffffffffffffffff811115612549578182fd5b8501601f81018713612559578182fd5b6125688782356020840161238d565b91505092959194509250565b60008060408385031215612586578182fd5b61258f836123fd565b91506124b76020840161245d565b600080604083850312156125af578182fd5b6125b8836123fd565b946020939093013593505050565b600080600080604085870312156125db578384fd5b843567ffffffffffffffff808211156125f2578586fd5b6125fe88838901612414565b90965094506020870135915080821115612616578384fd5b5061262387828801612414565b95989497509550505050565b600060208284031215612640578081fd5b6124878261245d565b60006020828403121561265a578081fd5b5035919050565b600060208284031215612672578081fd5b813561248781613144565b60006020828403121561268e578081fd5b815161248781613144565b6000602082840312156126aa578081fd5b813567ffffffffffffffff8111156126c0578182fd5b8201601f810184136126d0578182fd5b6119898482356020840161238d565b6000806000604084860312156126f3578081fd5b83359250602084013567ffffffffffffffff811115612710578182fd5b61271c86828701612414565b9497909650939450505050565b6000815180845261274181602086016020860161306c565b601f01601f19169290920160200192915050565b80546000906002810460018083168061276f57607f831692505b602080841082141561278f57634e487b7160e01b86526022600452602486fd5b8180156127a357600181146127b4576127e1565b60ff198616895284890196506127e1565b6127bd88612ffe565b60005b868110156127d95781548b8201529085019083016127c0565b505084890196505b50505050505092915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60006124878284612755565b60006128308285612755565b835161284081836020880161306c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a090830184612729565b9695505050505050565b901515815260200190565b90815260200190565b6000602082526124876020830184612729565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b60208082526022908201527f4d69736d61746368206265747765656e204164647265737320616e6420636f756040820152611b9d60f21b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60009081526020902090565b6000821982111561301d5761301d613102565b500190565b60008261303157613031613118565b500490565b600081600019048311821515161561305057613050613102565b500290565b60008282101561306757613067613102565b500390565b60005b8381101561308757818101518382015260200161306f565b838111156115055750506000910152565b6002810460018216806130ac57607f821691505b602082108114156130cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130e7576130e7613102565b5060010190565b6000826130fd576130fd613118565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117e157600080fdfea2646970667358221220f21bb53eca5c8dcb7e4065d820d685682a42f240e3734ca58d1f2c3d2987afcf64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80637e95eac411610175578063ac0419fd116100dc578063ce22483c11610095578063f176baaa1161006f578063f176baaa146107c0578063f2fde38b146107e0578063f439733514610800578063fe4ca84714610820576102ae565b8063ce22483c14610760578063d897833e14610780578063e985e9c5146107a0576102ae565b8063ac0419fd146106b6578063ae5cc172146106d6578063b88d4fde146106eb578063c19739ce1461070b578063c87b56dd1461072b578063ccfb63a41461074b576102ae565b8063945242c61161012e578063945242c61461061857806395d89b411461062b578063995b8ef614610640578063a22cb46514610655578063a87430ba14610675578063a9526862146106a3576102ae565b80637e95eac4146105845780637ec0912e146105995780637ec18cf6146105b95780637f205a74146105ce5780638da5cb5b146105e3578063941e79fc146105f8576102ae565b80634783f0ef116102195780636352211e116101d25780636352211e146104e557806365fccb52146105055780636c0360eb1461052557806370a082311461053a578063711cc2ae1461055a578063715018a61461056f576102ae565b80634783f0ef146104305780634df08219146104505780634f6ccce71461047057806355f804b3146104905780635e326b92146104b057806362dc6e21146104d0576102ae565b80631e05ecb41161026b5780631e05ecb41461039157806323b872dd146103a65780632eb4a7ab146103c65780632f745c59146103db5780633ccfd60b146103fb57806342842e0e14610410576102ae565b806301ffc9a7146102b357806306fdde03146102e9578063081812fc1461030b578063095ea7b3146103385780630990e5341461035a57806318160ddd1461037c575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612661565b610835565b6040516102e091906128aa565b60405180910390f35b3480156102f557600080fd5b506102fe610848565b6040516102e091906128be565b34801561031757600080fd5b5061032b610326366004612649565b6108da565b6040516102e09190612859565b34801561034457600080fd5b5061035861035336600461259d565b610926565b005b34801561036657600080fd5b5061036f6109be565b6040516102e091906128b5565b34801561038857600080fd5b5061036f6109c4565b34801561039d57600080fd5b506102d36109ca565b3480156103b257600080fd5b506103586103c13660046124c0565b6109d9565b3480156103d257600080fd5b5061036f610a11565b3480156103e757600080fd5b5061036f6103f636600461259d565b610a17565b34801561040757600080fd5b50610358610a69565b34801561041c57600080fd5b5061035861042b3660046124c0565b610adb565b34801561043c57600080fd5b5061035861044b366004612649565b610af6565b34801561045c57600080fd5b5061035861046b3660046125c6565b610b3a565b34801561047c57600080fd5b5061036f61048b366004612649565b610ced565b34801561049c57600080fd5b506103586104ab366004612699565b610d48565b3480156104bc57600080fd5b506103586104cb36600461262f565b610d9a565b3480156104dc57600080fd5b5061036f610e02565b3480156104f157600080fd5b5061032b610500366004612649565b610e08565b34801561051157600080fd5b50610358610520366004612649565b610e3d565b34801561053157600080fd5b506102fe610e81565b34801561054657600080fd5b5061036f61055536600461246d565b610f0f565b34801561056657600080fd5b5061036f610f53565b34801561057b57600080fd5b50610358610f59565b34801561059057600080fd5b5061036f610fa4565b3480156105a557600080fd5b506103586105b4366004612649565b610faa565b3480156105c557600080fd5b506102d3610fee565b3480156105da57600080fd5b5061036f610ff7565b3480156105ef57600080fd5b5061032b610ffd565b34801561060457600080fd5b50610358610613366004612649565b61100c565b6103586106263660046126df565b611072565b34801561063757600080fd5b506102fe611288565b34801561064c57600080fd5b5061036f611297565b34801561066157600080fd5b50610358610670366004612574565b61129d565b34801561068157600080fd5b5061069561069036600461246d565b6112af565b6040516102e092919061280a565b6103586106b1366004612649565b6112c8565b3480156106c257600080fd5b506103586106d1366004612649565b611460565b3480156106e257600080fd5b5061036f6114c6565b3480156106f757600080fd5b506103586107063660046124fb565b6114cc565b34801561071757600080fd5b5061035861072636600461262f565b61150b565b34801561073757600080fd5b506102fe610746366004612649565b611583565b34801561075757600080fd5b5061036f6115fe565b34801561076c57600080fd5b5061035861077b366004612649565b611604565b34801561078c57600080fd5b5061035861079b36600461262f565b61166a565b3480156107ac57600080fd5b506102d36107bb36600461248e565b6116df565b3480156107cc57600080fd5b506103586107db366004612649565b61170d565b3480156107ec57600080fd5b506103586107fb36600461246d565b611773565b34801561080c57600080fd5b5061035861081b366004612649565b6117e4565b34801561082c57600080fd5b506102d361184a565b600061084082611858565b90505b919050565b60606000805461085790613098565b80601f016020809104026020016040519081016040528092919081815260200182805461088390613098565b80156108d05780601f106108a5576101008083540402835291602001916108d0565b820191906000526020600020905b8154815290600101906020018083116108b357829003601f168201915b5050505050905090565b60006108e58261187d565b61090a5760405162461bcd60e51b815260040161090190612d3b565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093182610e08565b9050806001600160a01b0316836001600160a01b031614156109655760405162461bcd60e51b815260040161090190612ea8565b806001600160a01b031661097761189a565b6001600160a01b031614806109935750610993816107bb61189a565b6109af5760405162461bcd60e51b815260040161090190612b72565b6109b9838361189e565b505050565b60135481565b60095490565b60145462010000900460ff1681565b6109ea6109e461189a565b8261190c565b610a065760405162461bcd60e51b815260040161090190612ee9565b6109b9838383611991565b60165481565b6000610a2283610f0f565b8210610a405760405162461bcd60e51b8152600401610901906128d1565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610a7161189a565b6001600160a01b0316610a82610ffd565b6001600160a01b031614610aa85760405162461bcd60e51b815260040161090190612db0565b6040514790339082156108fc029083906000818181858888f19350505050158015610ad7573d6000803e3d6000fd5b5050565b6109b9838383604051806020016040528060008152506114cc565b610afe61189a565b6001600160a01b0316610b0f610ffd565b6001600160a01b031614610b355760405162461bcd60e51b815260040161090190612db0565b601655565b610b4261189a565b6001600160a01b0316610b53610ffd565b6001600160a01b031614610b795760405162461bcd60e51b815260040161090190612db0565b6002600b541415610b9c5760405162461bcd60e51b815260040161090190612fc7565b6002600b55828114610bc05760405162461bcd60e51b815260040161090190612cc4565b60005b83811015610ce157600c54838383818110610bee57634e487b7160e01b600052603260045260246000fd5b90506020020135601354610c02919061300a565b1115610c205760405162461bcd60e51b815260040161090190612a66565b60005b838383818110610c4357634e487b7160e01b600052603260045260246000fd5b90506020020135811015610cce576000610c5b6109c4565b9050610ca5878785818110610c8057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610c95919061246d565b610ca083600161300a565b611abe565b60138054906000610cb5836130d3565b9190505550508080610cc6906130d3565b915050610c23565b5080610cd9816130d3565b915050610bc3565b50506001600b55505050565b6000610cf76109c4565b8210610d155760405162461bcd60e51b815260040161090190612f7b565b60098281548110610d3657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610d5061189a565b6001600160a01b0316610d61610ffd565b6001600160a01b031614610d875760405162461bcd60e51b815260040161090190612db0565b8051610ad79060159060208401906122f4565b610da261189a565b6001600160a01b0316610db3610ffd565b6001600160a01b031614610dd95760405162461bcd60e51b815260040161090190612db0565b60145460ff1615158115151415610def57600080fd5b6014805460ff1916911515919091179055565b60115481565b6000818152600260205260408120546001600160a01b0316806108405760405162461bcd60e51b815260040161090190612c50565b610e4561189a565b6001600160a01b0316610e56610ffd565b6001600160a01b031614610e7c5760405162461bcd60e51b815260040161090190612db0565b601155565b60158054610e8e90613098565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba90613098565b8015610f075780601f10610edc57610100808354040283529160200191610f07565b820191906000526020600020905b815481529060010190602001808311610eea57829003601f168201915b505050505081565b60006001600160a01b038216610f375760405162461bcd60e51b815260040161090190612c06565b506001600160a01b031660009081526003602052604090205490565b60105481565b610f6161189a565b6001600160a01b0316610f72610ffd565b6001600160a01b031614610f985760405162461bcd60e51b815260040161090190612db0565b610fa26000611ad8565b565b600d5481565b610fb261189a565b6001600160a01b0316610fc3610ffd565b6001600160a01b031614610fe95760405162461bcd60e51b815260040161090190612db0565b601255565b60145460ff1681565b60125481565b6006546001600160a01b031690565b61101461189a565b6001600160a01b0316611025610ffd565b6001600160a01b03161461104b5760405162461bcd60e51b815260040161090190612db0565b80600c54101561106d5760405162461bcd60e51b815260040161090190612d87565b600d55565b6002600b5414156110955760405162461bcd60e51b815260040161090190612fc7565b6002600b556040516000906110ae9033906020016127ed565b60408051601f19818403018152919052805160209091012060145490915060ff166110eb5760405162461bcd60e51b815260040161090190612b01565b600c54846013546110fc919061300a565b111561111a5760405162461bcd60e51b815260040161090190612c99565b61115b838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150849050611b2a565b6111775760405162461bcd60e51b815260040161090190612b31565b600d543360009081526017602052604090205461119590869061300a565b11156111b35760405162461bcd60e51b815260040161090190612f3a565b600f548411156111d55760405162461bcd60e51b815260040161090190612bcf565b836011546111e39190613036565b3410156112025760405162461bcd60e51b815260040161090190612e7d565b60005b848110156112515760006112176109c4565b905061122833610ca083600161300a565b60138054906000611238836130d3565b9190505550508080611249906130d3565b915050611205565b503360009081526017602052604090205461126d90859061300a565b3360009081526017602052604090205550506001600b555050565b60606001805461085790613098565b600c5481565b610ad76112a861189a565b8383611be5565b6017602052600090815260409020805460019091015482565b6002600b5414156112eb5760405162461bcd60e51b815260040161090190612fc7565b6002600b55601454610100900460ff166113175760405162461bcd60e51b815260040161090190612a89565b600c5481601354611328919061300a565b11156113465760405162461bcd60e51b815260040161090190612c99565b600e543360009081526017602052604090206001015461136790839061300a565b11156113855760405162461bcd60e51b815260040161090190612f3a565b6010548111156113a75760405162461bcd60e51b815260040161090190612bcf565b806012546113b59190613036565b3410156113d45760405162461bcd60e51b815260040161090190612e7d565b60005b818110156114235760006113e96109c4565b90506113fa33610ca083600161300a565b6013805490600061140a836130d3565b919050555050808061141b906130d3565b9150506113d7565b503360009081526017602052604090206001015461144290829061300a565b336000908152601760205260409020600190810191909155600b5550565b61146861189a565b6001600160a01b0316611479610ffd565b6001600160a01b03161461149f5760405162461bcd60e51b815260040161090190612db0565b80600c5410156114c15760405162461bcd60e51b815260040161090190612d87565b600f55565b600e5481565b6114dd6114d761189a565b8361190c565b6114f95760405162461bcd60e51b815260040161090190612ee9565b61150584848484611c88565b50505050565b61151361189a565b6001600160a01b0316611524610ffd565b6001600160a01b03161461154a5760405162461bcd60e51b815260040161090190612db0565b60145460ff62010000909104161515811515141561156757600080fd5b60148054911515620100000262ff000019909216919091179055565b606061158e8261187d565b6115aa5760405162461bcd60e51b815260040161090190612e2e565b60145462010000900460ff166115e25760156040516020016115cc9190612818565b6040516020818303038152906040529050610843565b60156115ed83611cbb565b6040516020016115cc929190612824565b600f5481565b61160c61189a565b6001600160a01b031661161d610ffd565b6001600160a01b0316146116435760405162461bcd60e51b815260040161090190612db0565b80600c5410156116655760405162461bcd60e51b815260040161090190612d87565b601055565b61167261189a565b6001600160a01b0316611683610ffd565b6001600160a01b0316146116a95760405162461bcd60e51b815260040161090190612db0565b60145460ff61010090910416151581151514156116c557600080fd5b601480549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61171561189a565b6001600160a01b0316611726610ffd565b6001600160a01b03161461174c5760405162461bcd60e51b815260040161090190612db0565b80600c54101561176e5760405162461bcd60e51b815260040161090190612d87565b600e55565b61177b61189a565b6001600160a01b031661178c610ffd565b6001600160a01b0316146117b25760405162461bcd60e51b815260040161090190612db0565b6001600160a01b0381166117d85760405162461bcd60e51b81526004016109019061296e565b6117e181611ad8565b50565b6117ec61189a565b6001600160a01b03166117fd610ffd565b6001600160a01b0316146118235760405162461bcd60e51b815260040161090190612db0565b6013548110156118455760405162461bcd60e51b815260040161090190612d87565b600c55565b601454610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610840575061084082611dd6565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118d382610e08565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119178261187d565b6119335760405162461bcd60e51b815260040161090190612ab5565b600061193e83610e08565b9050806001600160a01b0316846001600160a01b031614806119795750836001600160a01b031661196e846108da565b6001600160a01b0316145b80611989575061198981856116df565b949350505050565b826001600160a01b03166119a482610e08565b6001600160a01b0316146119ca5760405162461bcd60e51b815260040161090190612de5565b6001600160a01b0382166119f05760405162461bcd60e51b8152600401610901906129eb565b6119fb838383611e16565b611a0660008261189e565b6001600160a01b0383166000908152600360205260408120805460019290611a2f908490613055565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a5d90849061300a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ad7828260405180602001604052806000815250611e21565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b8551811015611bda576000868281518110611b5a57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611b9b578281604051602001611b7e92919061280a565b604051602081830303815290604052805190602001209250611bc7565b8083604051602001611bae92919061280a565b6040516020818303038152906040528051906020012092505b5080611bd2816130d3565b915050611b2f565b509092149392505050565b816001600160a01b0316836001600160a01b03161415611c175760405162461bcd60e51b815260040161090190612a2f565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611c7b9085906128aa565b60405180910390a3505050565b611c93848484611991565b611c9f84848484611e54565b6115055760405162461bcd60e51b81526004016109019061291c565b606081611ce057506040805180820190915260018152600360fc1b6020820152610843565b8160005b8115611d0a5780611cf4816130d3565b9150611d039050600a83613022565b9150611ce4565b60008167ffffffffffffffff811115611d3357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d5d576020820181803683370190505b5090505b841561198957611d72600183613055565b9150611d7f600a866130ee565b611d8a90603061300a565b60f81b818381518110611dad57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611dcf600a86613022565b9450611d61565b60006001600160e01b031982166380ac58cd60e01b1480611e0757506001600160e01b03198216635b5e139f60e01b145b80610840575061084082611f6f565b6109b9838383611f88565b611e2b8383612011565b611e386000848484611e54565b6109b95760405162461bcd60e51b81526004016109019061291c565b6000611e68846001600160a01b03166120f0565b15611f6457836001600160a01b031663150b7a02611e8461189a565b8786866040518563ffffffff1660e01b8152600401611ea6949392919061286d565b602060405180830381600087803b158015611ec057600080fd5b505af1925050508015611ef0575060408051601f3d908101601f19168201909252611eed9181019061267d565b60015b611f4a573d808015611f1e576040519150601f19603f3d011682016040523d82523d6000602084013e611f23565b606091505b508051611f425760405162461bcd60e51b81526004016109019061291c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611989565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611f938383836109b9565b6001600160a01b038316611faf57611faa816120f6565b611fd2565b816001600160a01b0316836001600160a01b031614611fd257611fd2838261213a565b6001600160a01b038216611fee57611fe9816121d7565b6109b9565b826001600160a01b0316826001600160a01b0316146109b9576109b982826122b0565b6001600160a01b0382166120375760405162461bcd60e51b815260040161090190612d06565b6120408161187d565b1561205d5760405162461bcd60e51b8152600401610901906129b4565b61206960008383611e16565b6001600160a01b038216600090815260036020526040812080546001929061209290849061300a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6000600161214784610f0f565b6121519190613055565b6000838152600860205260409020549091508082146121a4576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906121e990600190613055565b6000838152600a60205260408120546009805493945090928490811061221f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061224e57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061229457634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006122bb83610f0f565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461230090613098565b90600052602060002090601f0160209004810192826123225760008555612368565b82601f1061233b57805160ff1916838001178555612368565b82800160010185558215612368579182015b8281111561236857825182559160200191906001019061234d565b50612374929150612378565b5090565b5b808211156123745760008155600101612379565b600067ffffffffffffffff808411156123a8576123a861312e565b604051601f8501601f1916810160200182811182821017156123cc576123cc61312e565b6040528481529150818385018610156123e457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461084357600080fd5b60008083601f840112612425578081fd5b50813567ffffffffffffffff81111561243c578182fd5b602083019150836020808302850101111561245657600080fd5b9250929050565b8035801515811461084357600080fd5b60006020828403121561247e578081fd5b612487826123fd565b9392505050565b600080604083850312156124a0578081fd5b6124a9836123fd565b91506124b7602084016123fd565b90509250929050565b6000806000606084860312156124d4578081fd5b6124dd846123fd565b92506124eb602085016123fd565b9150604084013590509250925092565b60008060008060808587031215612510578081fd5b612519856123fd565b9350612527602086016123fd565b925060408501359150606085013567ffffffffffffffff811115612549578182fd5b8501601f81018713612559578182fd5b6125688782356020840161238d565b91505092959194509250565b60008060408385031215612586578182fd5b61258f836123fd565b91506124b76020840161245d565b600080604083850312156125af578182fd5b6125b8836123fd565b946020939093013593505050565b600080600080604085870312156125db578384fd5b843567ffffffffffffffff808211156125f2578586fd5b6125fe88838901612414565b90965094506020870135915080821115612616578384fd5b5061262387828801612414565b95989497509550505050565b600060208284031215612640578081fd5b6124878261245d565b60006020828403121561265a578081fd5b5035919050565b600060208284031215612672578081fd5b813561248781613144565b60006020828403121561268e578081fd5b815161248781613144565b6000602082840312156126aa578081fd5b813567ffffffffffffffff8111156126c0578182fd5b8201601f810184136126d0578182fd5b6119898482356020840161238d565b6000806000604084860312156126f3578081fd5b83359250602084013567ffffffffffffffff811115612710578182fd5b61271c86828701612414565b9497909650939450505050565b6000815180845261274181602086016020860161306c565b601f01601f19169290920160200192915050565b80546000906002810460018083168061276f57607f831692505b602080841082141561278f57634e487b7160e01b86526022600452602486fd5b8180156127a357600181146127b4576127e1565b60ff198616895284890196506127e1565b6127bd88612ffe565b60005b868110156127d95781548b8201529085019083016127c0565b505084890196505b50505050505092915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60006124878284612755565b60006128308285612755565b835161284081836020880161306c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a090830184612729565b9695505050505050565b901515815260200190565b90815260200190565b6000602082526124876020830184612729565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b60208082526022908201527f4d69736d61746368206265747765656e204164647265737320616e6420636f756040820152611b9d60f21b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60009081526020902090565b6000821982111561301d5761301d613102565b500190565b60008261303157613031613118565b500490565b600081600019048311821515161561305057613050613102565b500290565b60008282101561306757613067613102565b500390565b60005b8381101561308757818101518382015260200161306f565b838111156115055750506000910152565b6002810460018216806130ac57607f821691505b602082108114156130cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130e7576130e7613102565b5060010190565b6000826130fd576130fd613118565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117e157600080fdfea2646970667358221220f21bb53eca5c8dcb7e4065d820d685682a42f240e3734ca58d1f2c3d2987afcf64736f6c63430008000033

Deployed Bytecode Sourcemap

46303:5705:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49904:171;;;;;;;;;;-1:-1:-1;49904:171:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24048:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25607:221::-;;;;;;;;;;-1:-1:-1;25607:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25130:411::-;;;;;;;;;;-1:-1:-1;25130:411:0;;;;;:::i;:::-;;:::i;:::-;;46730:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36997:113::-;;;;;;;;;;;;;:::i;46837:31::-;;;;;;;;;;;;;:::i;26357:339::-;;;;;;;;;;-1:-1:-1;26357:339:0;;;;;:::i;:::-;;:::i;46903:25::-;;;;;;;;;;;;;:::i;36665:256::-;;;;;;;;;;-1:-1:-1;36665:256:0;;;;;:::i;:::-;;:::i;50081:145::-;;;;;;;;;;;;;:::i;26767:185::-;;;;;;;;;;-1:-1:-1;26767:185:0;;;;;:::i;:::-;;:::i;51911:94::-;;;;;;;;;;-1:-1:-1;51911:94:0;;;;;:::i;:::-;;:::i;47106:484::-;;;;;;;;;;-1:-1:-1;47106:484:0;;;;;:::i;:::-;;:::i;37187:233::-;;;;;;;;;;-1:-1:-1;37187:233:0;;;;;:::i;:::-;;:::i;50232:104::-;;;;;;;;;;-1:-1:-1;50232:104:0;;;;;:::i;:::-;;:::i;50839:137::-;;;;;;;;;;-1:-1:-1;50839:137:0;;;;;:::i;:::-;;:::i;46638:41::-;;;;;;;;;;;;;:::i;23742:239::-;;;;;;;;;;-1:-1:-1;23742:239:0;;;;;:::i;:::-;;:::i;50450:108::-;;;;;;;;;;-1:-1:-1;50450:108:0;;;;;:::i;:::-;;:::i;46878:21::-;;;;;;;;;;;;;:::i;23472:208::-;;;;;;;;;;-1:-1:-1;23472:208:0;;;;;:::i;:::-;;:::i;46581:50::-;;;;;;;;;;;;;:::i;21059:103::-;;;;;;;;;;;;;:::i;46446:35::-;;;;;;;;;;;;;:::i;50342:102::-;;;;;;;;;;-1:-1:-1;50342:102:0;;;;;:::i;:::-;;:::i;46766:33::-;;;;;;;;;;;;;:::i;46683:40::-;;;;;;;;;;;;;:::i;20408:87::-;;;;;;;;;;;;;:::i;51153:171::-;;;;;;;;;;-1:-1:-1;51153:171:0;;;;;:::i;:::-;;:::i;47596:987::-;;;;;;:::i;:::-;;:::i;24217:104::-;;;;;;;;;;;;;:::i;46412:30::-;;;;;;;;;;;;;:::i;25900:155::-;;;;;;;;;;-1:-1:-1;25900:155:0;;;;;:::i;:::-;;:::i;47006:38::-;;;;;;;;;;-1:-1:-1;47006:38:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;48589:754::-;;;;;;:::i;:::-;;:::i;51499:203::-;;;;;;;;;;-1:-1:-1;51499:203:0;;;;;:::i;:::-;;:::i;46485:32::-;;;;;;;;;;;;;:::i;27023:328::-;;;;;;;;;;-1:-1:-1;27023:328:0;;;;;:::i;:::-;;:::i;50697:136::-;;;;;;;;;;-1:-1:-1;50697:136:0;;;;;:::i;:::-;;:::i;49352:360::-;;;;;;;;;;-1:-1:-1;49352:360:0;;;;;:::i;:::-;;:::i;46524:53::-;;;;;;;;;;;;;:::i;51708:197::-;;;;;;;;;;-1:-1:-1;51708:197:0;;;;;:::i;:::-;;:::i;50564:127::-;;;;;;;;;;-1:-1:-1;50564:127:0;;;;;:::i;:::-;;:::i;26126:164::-;;;;;;;;;;-1:-1:-1;26126:164:0;;;;;:::i;:::-;;:::i;50982:165::-;;;;;;;;;;-1:-1:-1;50982:165:0;;;;;:::i;:::-;;:::i;21317:201::-;;;;;;;;;;-1:-1:-1;21317:201:0;;;;;:::i;:::-;;:::i;51330:163::-;;;;;;;;;;-1:-1:-1;51330:163:0;;;;;:::i;:::-;;:::i;46803:30::-;;;;;;;;;;;;;:::i;49904:171::-;50007:4;50031:36;50055:11;50031:23;:36::i;:::-;50024:43;;49904:171;;;;:::o;24048:100::-;24102:13;24135:5;24128:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24048:100;:::o;25607:221::-;25683:7;25711:16;25719:7;25711;:16::i;:::-;25703:73;;;;-1:-1:-1;;;25703:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;25796:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25796:24:0;;25607:221::o;25130:411::-;25211:13;25227:23;25242:7;25227:14;:23::i;:::-;25211:39;;25275:5;-1:-1:-1;;;;;25269:11:0;:2;-1:-1:-1;;;;;25269:11:0;;;25261:57;;;;-1:-1:-1;;;25261:57:0;;;;;;;:::i;:::-;25369:5;-1:-1:-1;;;;;25353:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;25353:21:0;;:62;;;;25378:37;25395:5;25402:12;:10;:12::i;25378:37::-;25331:168;;;;-1:-1:-1;;;25331:168:0;;;;;;;:::i;:::-;25512:21;25521:2;25525:7;25512:8;:21::i;:::-;25130:411;;;:::o;46730:26::-;;;;:::o;36997:113::-;37085:10;:17;36997:113;:::o;46837:31::-;;;;;;;;;:::o;26357:339::-;26552:41;26571:12;:10;:12::i;:::-;26585:7;26552:18;:41::i;:::-;26544:103;;;;-1:-1:-1;;;26544:103:0;;;;;;;:::i;:::-;26660:28;26670:4;26676:2;26680:7;26660:9;:28::i;46903:25::-;;;;:::o;36665:256::-;36762:7;36798:23;36815:5;36798:16;:23::i;:::-;36790:5;:31;36782:87;;;;-1:-1:-1;;;36782:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;36887:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36665:256::o;50081:145::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50181:37:::1;::::0;50149:21:::1;::::0;50189:10:::1;::::0;50181:37;::::1;;;::::0;50149:21;;50131:15:::1;50181:37:::0;50131:15;50181:37;50149:21;50189:10;50181:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;20699:1;50081:145::o:0;26767:185::-;26905:39;26922:4;26928:2;26932:7;26905:39;;;;;;;;;;;;:16;:39::i;51911:94::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;51980:10:::1;:20:::0;51911:94::o;47106:484::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;44156:1:::1;44754:7;;:19;;44746:63;;;;-1:-1:-1::0;;;44746:63:0::1;;;;;;;:::i;:::-;44156:1;44887:7;:18:::0;47232:27;;::::2;47224:73;;;;-1:-1:-1::0;;;47224:73:0::2;;;;;;;:::i;:::-;47306:6;47302:281;47316:14:::0;;::::2;47302:281;;;47386:8;;47373:6;;47380:1;47373:9;;;;;-1:-1:-1::0;;;47373:9:0::2;;;;;;;;;;;;;;;47359:11;;:23;;;;:::i;:::-;:35;;47345:74;;;;-1:-1:-1::0;;;47345:74:0::2;;;;;;;:::i;:::-;47430:9;47425:153;47449:6;;47456:1;47449:9;;;;;-1:-1:-1::0;;;47449:9:0::2;;;;;;;;;;;;;;;47445:1;:13;47425:153;;;47475:19;47497:13;:11;:13::i;:::-;47475:35;;47517:34;47527:3;;47531:1;47527:6;;;;;-1:-1:-1::0;;;47527:6:0::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47535:15;:11:::0;47549:1:::2;47535:15;:::i;:::-;47517:9;:34::i;:::-;47558:11;:13:::0;;;:11:::2;:13;::::0;::::2;:::i;:::-;;;;;;47425:153;47460:3;;;;;:::i;:::-;;;;47425:153;;;-1:-1:-1::0;47332:3:0;::::2;::::0;::::2;:::i;:::-;;;;47302:281;;;-1:-1:-1::0;;44112:1:0::1;45066:7;:22:::0;-1:-1:-1;;;47106:484:0:o;37187:233::-;37262:7;37298:30;:28;:30::i;:::-;37290:5;:38;37282:95;;;;-1:-1:-1;;;37282:95:0;;;;;;;:::i;:::-;37395:10;37406:5;37395:17;;;;;;-1:-1:-1;;;37395:17:0;;;;;;;;;;;;;;;;;37388:24;;37187:233;;;:::o;50232:104::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50308:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;50839:137::-:0;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50912:13:::1;::::0;::::1;;:23;;::::0;::::1;;;;50904:32;;;::::0;::::1;;50946:13;:22:::0;;-1:-1:-1;;50946:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50839:137::o;46638:41::-;;;;:::o;23742:239::-;23814:7;23850:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23850:16:0;23885:19;23877:73;;;;-1:-1:-1;;;23877:73:0;;;;;;;:::i;50450:108::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50526:13:::1;:24:::0;50450:108::o;46878:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23472:208::-;23544:7;-1:-1:-1;;;;;23572:19:0;;23564:74;;;;-1:-1:-1;;;23564:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23656:16:0;;;;;:9;:16;;;;;;;23472:208::o;46581:50::-;;;;:::o;21059:103::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;21124:30:::1;21151:1;21124:18;:30::i;:::-;21059:103::o:0;46446:35::-;;;;:::o;50342:102::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50415:10:::1;:21:::0;50342:102::o;46766:33::-;;;;;;:::o;46683:40::-;;;;:::o;20408:87::-;20481:6;;-1:-1:-1;;;;;20481:6:0;20408:87;:::o;51153:171::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;51250:8:::1;51238;;:20;;51230:48;;;;-1:-1:-1::0;;;51230:48:0::1;;;;;;;:::i;:::-;51289:16;:27:::0;51153:171::o;47596:987::-;44156:1;44754:7;;:19;;44746:63;;;;-1:-1:-1;;;44746:63:0;;;;;;;:::i;:::-;44156:1;44887:7;:18;47727:28:::1;::::0;47702:12:::1;::::0;47727:28:::1;::::0;47744:10:::1;::::0;47727:28:::1;;;:::i;:::-;;::::0;;-1:-1:-1;;47727:28:0;;::::1;::::0;;;;;;47717:39;;47727:28:::1;47717:39:::0;;::::1;::::0;47774:13:::1;::::0;47717:39;;-1:-1:-1;47774:13:0::1;;47761:62;;;;-1:-1:-1::0;;;47761:62:0::1;;;;;;;:::i;:::-;47871:8;;47861:6;47847:11;;:20;;;;:::i;:::-;:32;;47834:76;;;;-1:-1:-1::0;;;47834:76:0::1;;;;;;;:::i;:::-;47928:49;47947:11;;47928:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;47960:10:0::1;::::0;;-1:-1:-1;47972:4:0;;-1:-1:-1;47928:18:0::1;:49::i;:::-;47915:109;;;;-1:-1:-1::0;;;47915:109:0::1;;;;;;;:::i;:::-;48084:16;::::0;48048:10:::1;48042:17;::::0;;;:5:::1;:17;::::0;;;;:29;:38:::1;::::0;48074:6;;48042:38:::1;:::i;:::-;:58;;48029:117;;;;-1:-1:-1::0;;;48029:117:0::1;;;;;;;:::i;:::-;48174:34;;48164:6;:44;;48151:100;;;;-1:-1:-1::0;;;48151:100:0::1;;;;;;;:::i;:::-;48298:6;48282:13;;:22;;;;:::i;:::-;48269:9;:35;;48256:78;;;;-1:-1:-1::0;;;48256:78:0::1;;;;;;;:::i;:::-;48344:9;48339:162;48363:6;48359:1;:10;48339:162;;;48382:19;48404:13;:11;:13::i;:::-;48382:35:::0;-1:-1:-1;48432:38:0::1;48442:10;48454:15;48382:35:::0;48468:1:::1;48454:15;:::i;48432:38::-;48476:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;48339:162;48371:3;;;;;:::i;:::-;;;;48339:162;;;-1:-1:-1::0;48543:10:0::1;48537:17;::::0;;;:5:::1;:17;::::0;;;;:29;:38:::1;::::0;48569:6;;48537:38:::1;:::i;:::-;48511:10;48505:17;::::0;;;:5:::1;:17;::::0;;;;:70;-1:-1:-1;;44112:1:0;45066:7;:22;-1:-1:-1;;47596:987:0:o;24217:104::-;24273:13;24306:7;24299:14;;;;;:::i;46412:30::-;;;;:::o;25900:155::-;25995:52;26014:12;:10;:12::i;:::-;26028:8;26038;25995:18;:52::i;47006:38::-;;;;;;;;;;;;;;;;;;;:::o;48589:754::-;44156:1;44754:7;;:19;;44746:63;;;;-1:-1:-1;;;44746:63:0;;;;;;;:::i;:::-;44156:1;44887:7;:18;48673:10:::1;::::0;::::1;::::0;::::1;;;48660:55;;;;-1:-1:-1::0;;;48660:55:0::1;;;;;;;:::i;:::-;48763:8;;48753:6;48739:11;;:20;;;;:::i;:::-;:32;;48726:76;;;;-1:-1:-1::0;;;48726:76:0::1;;;;;;;:::i;:::-;48859:13;::::0;48826:10:::1;48820:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:35:::1;::::0;48849:6;;48820:35:::1;:::i;:::-;:52;;48807:111;;;;-1:-1:-1::0;;;48807:111:0::1;;;;;;;:::i;:::-;48946:31;;48936:6;:41;;48923:97;;;;-1:-1:-1::0;;;48923:97:0::1;;;;;;;:::i;:::-;49064:6;49051:10;;:19;;;;:::i;:::-;49038:9;:32;;49025:75;;;;-1:-1:-1::0;;;49025:75:0::1;;;;;;;:::i;:::-;49110:9;49105:162;49129:6;49125:1;:10;49105:162;;;49157:19;49179:13;:11;:13::i;:::-;49157:35:::0;-1:-1:-1;49198:38:0::1;49208:10;49220:15;49157:35:::0;49234:1:::1;49220:15;:::i;49198:38::-;49242:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;49105:162;49137:3;;;;;:::i;:::-;;;;49105:162;;;-1:-1:-1::0;49306:10:0::1;49300:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:35:::1;::::0;49329:6;;49300:35:::1;:::i;:::-;49277:10;49271:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;::::0;;::::1;:64:::0;;;;45066:7;:22;-1:-1:-1;48589:754:0:o;51499:203::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;51610:8:::1;51598;;:20;;51590:48;;;;-1:-1:-1::0;;;51590:48:0::1;;;;;;;:::i;:::-;51649:34;:45:::0;51499:203::o;46485:32::-;;;;:::o;27023:328::-;27198:41;27217:12;:10;:12::i;:::-;27231:7;27198:18;:41::i;:::-;27190:103;;;;-1:-1:-1;;;27190:103:0;;;;;;;:::i;:::-;27304:39;27318:4;27324:2;27328:7;27337:5;27304:13;:39::i;:::-;27023:328;;;;:::o;50697:136::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50778:11:::1;::::0;::::1;::::0;;;::::1;;:21;;::::0;::::1;;;;50770:30;;;::::0;::::1;;50805:11;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;50805:20:0;;::::1;::::0;;;::::1;::::0;;50697:136::o;49352:360::-;49426:13;49460:17;49468:8;49460:7;:17::i;:::-;49452:77;;;;-1:-1:-1;;;49452:77:0;;;;;;;:::i;:::-;49538:11;;;;;;;49534:171;;49593:7;49576:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;49562:40;;;;49534:171;49660:7;49669:19;:8;:17;:19::i;:::-;49643:55;;;;;;;;;:::i;46524:53::-;;;;:::o;51708:197::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;51816:8:::1;51804;;:20;;51796:48;;;;-1:-1:-1::0;;;51796:48:0::1;;;;;;;:::i;:::-;51855:31;:42:::0;51708:197::o;50564:127::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;50638:10:::1;::::0;::::1;;::::0;;::::1;;:20;;::::0;::::1;;;;50630:29;;;::::0;::::1;;50664:10;:19:::0;;;::::1;;;;-1:-1:-1::0;;50664:19:0;;::::1;::::0;;;::::1;::::0;;50564:127::o;26126:164::-;-1:-1:-1;;;;;26247:25:0;;;26223:4;26247:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26126:164::o;50982:165::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;51076:8:::1;51064;;:20;;51056:48;;;;-1:-1:-1::0;;;51056:48:0::1;;;;;;;:::i;:::-;51115:13;:24:::0;50982:165::o;21317:201::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21406:22:0;::::1;21398:73;;;;-1:-1:-1::0;;;21398:73:0::1;;;;;;;:::i;:::-;21482:28;21501:8;21482:18;:28::i;:::-;21317:201:::0;:::o;51330:163::-;20639:12;:10;:12::i;:::-;-1:-1:-1;;;;;20628:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20628:23:0;;20620:68;;;;-1:-1:-1;;;20620:68:0;;;;;;;:::i;:::-;51423:11:::1;;51410:9;:24;;51402:52;;;;-1:-1:-1::0;;;51402:52:0::1;;;;;;;:::i;:::-;51465:8;:20:::0;51330:163::o;46803:30::-;;;;;;;;;:::o;36357:224::-;36459:4;-1:-1:-1;;;;;;36483:50:0;;-1:-1:-1;;;36483:50:0;;:90;;;36537:36;36561:11;36537:23;:36::i;28861:127::-;28926:4;28950:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28950:16:0;:30;;;28861:127::o;17290:98::-;17370:10;17290:98;:::o;32843:174::-;32918:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32918:29:0;-1:-1:-1;;;;;32918:29:0;;;;;;;;:24;;32972:23;32918:24;32972:14;:23::i;:::-;-1:-1:-1;;;;;32963:46:0;;;;;;;;;;;32843:174;;:::o;29155:348::-;29248:4;29273:16;29281:7;29273;:16::i;:::-;29265:73;;;;-1:-1:-1;;;29265:73:0;;;;;;;:::i;:::-;29349:13;29365:23;29380:7;29365:14;:23::i;:::-;29349:39;;29418:5;-1:-1:-1;;;;;29407:16:0;:7;-1:-1:-1;;;;;29407:16:0;;:51;;;;29451:7;-1:-1:-1;;;;;29427:31:0;:20;29439:7;29427:11;:20::i;:::-;-1:-1:-1;;;;;29427:31:0;;29407:51;:87;;;;29462:32;29479:5;29486:7;29462:16;:32::i;:::-;29399:96;29155:348;-1:-1:-1;;;;29155:348:0:o;32147:578::-;32306:4;-1:-1:-1;;;;;32279:31:0;:23;32294:7;32279:14;:23::i;:::-;-1:-1:-1;;;;;32279:31:0;;32271:85;;;;-1:-1:-1;;;32271:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32375:16:0;;32367:65;;;;-1:-1:-1;;;32367:65:0;;;;;;;:::i;:::-;32445:39;32466:4;32472:2;32476:7;32445:20;:39::i;:::-;32549:29;32566:1;32570:7;32549:8;:29::i;:::-;-1:-1:-1;;;;;32591:15:0;;;;;;:9;:15;;;;;:20;;32610:1;;32591:15;:20;;32610:1;;32591:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32622:13:0;;;;;;:9;:13;;;;;:18;;32639:1;;32622:13;:18;;32639:1;;32622:18;:::i;:::-;;;;-1:-1:-1;;32651:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32651:21:0;-1:-1:-1;;;;;32651:21:0;;;;;;;;;32690:27;;32651:16;;32690:27;;;;;;;32147:578;;;:::o;29845:110::-;29921:26;29931:2;29935:7;29921:26;;;;;;;;;;;;:9;:26::i;21678:191::-;21771:6;;;-1:-1:-1;;;;;21788:17:0;;;-1:-1:-1;;;;;;21788:17:0;;;;;;;21821:40;;21771:6;;;21788:17;21771:6;;21821:40;;21752:16;;21821:40;21678:191;;:::o;45464:832::-;45589:4;45629;45589;45646:525;45670:5;:12;45666:1;:16;45646:525;;;45704:20;45727:5;45733:1;45727:8;;;;;;-1:-1:-1;;;45727:8:0;;;;;;;;;;;;;;;45704:31;;45772:12;45756;:28;45752:408;;45926:12;45940;45909:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45899:55;;;;;;45884:70;;45752:408;;;46116:12;46130;46099:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46089:55;;;;;;46074:70;;45752:408;-1:-1:-1;45684:3:0;;;;:::i;:::-;;;;45646:525;;;-1:-1:-1;46268:20:0;;;;45464:832;-1:-1:-1;;;45464:832:0:o;33159:315::-;33314:8;-1:-1:-1;;;;;33305:17:0;:5;-1:-1:-1;;;;;33305:17:0;;;33297:55;;;;-1:-1:-1;;;33297:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33363:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;33363:46:0;;;;;;;33425:41;;;;;33363:46;;33425:41;:::i;:::-;;;;;;;;33159:315;;;:::o;28233:::-;28390:28;28400:4;28406:2;28410:7;28390:9;:28::i;:::-;28437:48;28460:4;28466:2;28470:7;28479:5;28437:22;:48::i;:::-;28429:111;;;;-1:-1:-1;;;28429:111:0;;;;;;;:::i;17730:723::-;17786:13;18007:10;18003:53;;-1:-1:-1;18034:10:0;;;;;;;;;;;;-1:-1:-1;;;18034:10:0;;;;;;18003:53;18081:5;18066:12;18122:78;18129:9;;18122:78;;18155:8;;;;:::i;:::-;;-1:-1:-1;18178:10:0;;-1:-1:-1;18186:2:0;18178:10;;:::i;:::-;;;18122:78;;;18210:19;18242:6;18232:17;;;;;;-1:-1:-1;;;18232:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18232:17:0;;18210:39;;18260:154;18267:10;;18260:154;;18294:11;18304:1;18294:11;;:::i;:::-;;-1:-1:-1;18363:10:0;18371:2;18363:5;:10;:::i;:::-;18350:24;;:2;:24;:::i;:::-;18337:39;;18320:6;18327;18320:14;;;;;;-1:-1:-1;;;18320:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18320:56:0;;;;;;;;-1:-1:-1;18391:11:0;18400:2;18391:11;;:::i;:::-;;;18260:154;;23103:305;23205:4;-1:-1:-1;;;;;;23242:40:0;;-1:-1:-1;;;23242:40:0;;:105;;-1:-1:-1;;;;;;;23299:48:0;;-1:-1:-1;;;23299:48:0;23242:105;:158;;;;23364:36;23388:11;23364:23;:36::i;49718:180::-;49845:45;49872:4;49878:2;49882:7;49845:26;:45::i;30182:321::-;30312:18;30318:2;30322:7;30312:5;:18::i;:::-;30363:54;30394:1;30398:2;30402:7;30411:5;30363:22;:54::i;:::-;30341:154;;;;-1:-1:-1;;;30341:154:0;;;;;;;:::i;34039:799::-;34194:4;34215:15;:2;-1:-1:-1;;;;;34215:13:0;;:15::i;:::-;34211:620;;;34267:2;-1:-1:-1;;;;;34251:36:0;;34288:12;:10;:12::i;:::-;34302:4;34308:7;34317:5;34251:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34251:72:0;;;;;;;;-1:-1:-1;;34251:72:0;;;;;;;;;;;;:::i;:::-;;;34247:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34493:13:0;;34489:272;;34536:60;;-1:-1:-1;;;34536:60:0;;;;;;;:::i;34489:272::-;34711:6;34705:13;34696:6;34692:2;34688:15;34681:38;34247:529;-1:-1:-1;;;;;;34374:51:0;-1:-1:-1;;;34374:51:0;;-1:-1:-1;34367:58:0;;34211:620;-1:-1:-1;34815:4:0;34039:799;;;;;;:::o;7092:157::-;-1:-1:-1;;;;;;7201:40:0;;-1:-1:-1;;;7201:40:0;7092:157;;;:::o;38033:589::-;38177:45;38204:4;38210:2;38214:7;38177:26;:45::i;:::-;-1:-1:-1;;;;;38239:18:0;;38235:187;;38274:40;38306:7;38274:31;:40::i;:::-;38235:187;;;38344:2;-1:-1:-1;;;;;38336:10:0;:4;-1:-1:-1;;;;;38336:10:0;;38332:90;;38363:47;38396:4;38402:7;38363:32;:47::i;:::-;-1:-1:-1;;;;;38436:16:0;;38432:183;;38469:45;38506:7;38469:36;:45::i;:::-;38432:183;;;38542:4;-1:-1:-1;;;;;38536:10:0;:2;-1:-1:-1;;;;;38536:10:0;;38532:83;;38563:40;38591:2;38595:7;38563:27;:40::i;30839:382::-;-1:-1:-1;;;;;30919:16:0;;30911:61;;;;-1:-1:-1;;;30911:61:0;;;;;;;:::i;:::-;30992:16;31000:7;30992;:16::i;:::-;30991:17;30983:58;;;;-1:-1:-1;;;30983:58:0;;;;;;;:::i;:::-;31054:45;31083:1;31087:2;31091:7;31054:20;:45::i;:::-;-1:-1:-1;;;;;31112:13:0;;;;;;:9;:13;;;;;:18;;31129:1;;31112:13;:18;;31129:1;;31112:18;:::i;:::-;;;;-1:-1:-1;;31141:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31141:21:0;-1:-1:-1;;;;;31141:21:0;;;;;;;;31180:33;;31141:16;;;31180:33;;31141:16;;31180:33;30839:382;;:::o;9419:387::-;9742:20;9790:8;;;9419:387::o;39345:164::-;39449:10;:17;;39422:24;;;;:15;:24;;;;;:44;;;39477:24;;;;;;;;;;;;39345:164::o;40136:988::-;40402:22;40452:1;40427:22;40444:4;40427:16;:22::i;:::-;:26;;;;:::i;:::-;40464:18;40485:26;;;:17;:26;;;;;;40402:51;;-1:-1:-1;40618:28:0;;;40614:328;;-1:-1:-1;;;;;40685:18:0;;40663:19;40685:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40736:30;;;;;;:44;;;40853:30;;:17;:30;;;;;:43;;;40614:328;-1:-1:-1;41038:26:0;;;;:17;:26;;;;;;;;41031:33;;;-1:-1:-1;;;;;41082:18:0;;;;;:12;:18;;;;;:34;;;;;;;41075:41;40136:988::o;41419:1079::-;41697:10;:17;41672:22;;41697:21;;41717:1;;41697:21;:::i;:::-;41729:18;41750:24;;;:15;:24;;;;;;42123:10;:26;;41672:46;;-1:-1:-1;41750:24:0;;41672:46;;42123:26;;;;-1:-1:-1;;;42123:26:0;;;;;;;;;;;;;;;;;42101:48;;42187:11;42162:10;42173;42162:22;;;;;;-1:-1:-1;;;42162:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42267:28;;;:15;:28;;;;;;;:41;;;42439:24;;;;;42432:31;42474:10;:16;;;;;-1:-1:-1;;;42474:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;41419:1079;;;;:::o;38923:221::-;39008:14;39025:20;39042:2;39025:16;:20::i;:::-;-1:-1:-1;;;;;39056:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39101:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38923:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:400;;;939:3;932:4;924:6;920:17;916:27;906:2;;962:6;954;947:22;906:2;-1:-1:-1;990:20:1;;1033:18;1022:30;;1019:2;;;1072:8;1062;1055:26;1019:2;1116:4;1108:6;1104:17;1092:29;;1179:3;1172:4;1164;1156:6;1152:17;1144:6;1140:30;1136:41;1133:50;1130:2;;;1196:1;1193;1186:12;1130:2;896:310;;;;;:::o;1211:162::-;1278:20;;1334:13;;1327:21;1317:32;;1307:2;;1363:1;1360;1353:12;1378:198;;1490:2;1478:9;1469:7;1465:23;1461:32;1458:2;;;1511:6;1503;1496:22;1458:2;1539:31;1560:9;1539:31;:::i;:::-;1529:41;1448:128;-1:-1:-1;;;1448:128:1:o;1581:274::-;;;1710:2;1698:9;1689:7;1685:23;1681:32;1678:2;;;1731:6;1723;1716:22;1678:2;1759:31;1780:9;1759:31;:::i;:::-;1749:41;;1809:40;1845:2;1834:9;1830:18;1809:40;:::i;:::-;1799:50;;1668:187;;;;;:::o;1860:342::-;;;;2006:2;1994:9;1985:7;1981:23;1977:32;1974:2;;;2027:6;2019;2012:22;1974:2;2055:31;2076:9;2055:31;:::i;:::-;2045:41;;2105:40;2141:2;2130:9;2126:18;2105:40;:::i;:::-;2095:50;;2192:2;2181:9;2177:18;2164:32;2154:42;;1964:238;;;;;:::o;2207:702::-;;;;;2379:3;2367:9;2358:7;2354:23;2350:33;2347:2;;;2401:6;2393;2386:22;2347:2;2429:31;2450:9;2429:31;:::i;:::-;2419:41;;2479:40;2515:2;2504:9;2500:18;2479:40;:::i;:::-;2469:50;;2566:2;2555:9;2551:18;2538:32;2528:42;;2621:2;2610:9;2606:18;2593:32;2648:18;2640:6;2637:30;2634:2;;;2685:6;2677;2670:22;2634:2;2713:22;;2766:4;2758:13;;2754:27;-1:-1:-1;2744:2:1;;2800:6;2792;2785:22;2744:2;2828:75;2895:7;2890:2;2877:16;2872:2;2868;2864:11;2828:75;:::i;:::-;2818:85;;;2337:572;;;;;;;:::o;2914:268::-;;;3040:2;3028:9;3019:7;3015:23;3011:32;3008:2;;;3061:6;3053;3046:22;3008:2;3089:31;3110:9;3089:31;:::i;:::-;3079:41;;3139:37;3172:2;3161:9;3157:18;3139:37;:::i;3187:266::-;;;3316:2;3304:9;3295:7;3291:23;3287:32;3284:2;;;3337:6;3329;3322:22;3284:2;3365:31;3386:9;3365:31;:::i;:::-;3355:41;3443:2;3428:18;;;;3415:32;;-1:-1:-1;;;3274:179:1:o;3458:815::-;;;;;3657:2;3645:9;3636:7;3632:23;3628:32;3625:2;;;3678:6;3670;3663:22;3625:2;3723:9;3710:23;3752:18;3793:2;3785:6;3782:14;3779:2;;;3814:6;3806;3799:22;3779:2;3858:76;3926:7;3917:6;3906:9;3902:22;3858:76;:::i;:::-;3953:8;;-1:-1:-1;3832:102:1;-1:-1:-1;4041:2:1;4026:18;;4013:32;;-1:-1:-1;4057:16:1;;;4054:2;;;4091:6;4083;4076:22;4054:2;;4135:78;4205:7;4194:8;4183:9;4179:24;4135:78;:::i;:::-;3615:658;;;;-1:-1:-1;4232:8:1;-1:-1:-1;;;;3615:658:1:o;4278:192::-;;4387:2;4375:9;4366:7;4362:23;4358:32;4355:2;;;4408:6;4400;4393:22;4355:2;4436:28;4454:9;4436:28;:::i;4475:190::-;;4587:2;4575:9;4566:7;4562:23;4558:32;4555:2;;;4608:6;4600;4593:22;4555:2;-1:-1:-1;4636:23:1;;4545:120;-1:-1:-1;4545:120:1:o;4670:257::-;;4781:2;4769:9;4760:7;4756:23;4752:32;4749:2;;;4802:6;4794;4787:22;4749:2;4846:9;4833:23;4865:32;4891:5;4865:32;:::i;4932:261::-;;5054:2;5042:9;5033:7;5029:23;5025:32;5022:2;;;5075:6;5067;5060:22;5022:2;5112:9;5106:16;5131:32;5157:5;5131:32;:::i;5198:482::-;;5320:2;5308:9;5299:7;5295:23;5291:32;5288:2;;;5341:6;5333;5326:22;5288:2;5386:9;5373:23;5419:18;5411:6;5408:30;5405:2;;;5456:6;5448;5441:22;5405:2;5484:22;;5537:4;5529:13;;5525:27;-1:-1:-1;5515:2:1;;5571:6;5563;5556:22;5515:2;5599:75;5666:7;5661:2;5648:16;5643:2;5639;5635:11;5599:75;:::i;5880:531::-;;;;6044:2;6032:9;6023:7;6019:23;6015:32;6012:2;;;6065:6;6057;6050:22;6012:2;6106:9;6093:23;6083:33;;6167:2;6156:9;6152:18;6139:32;6194:18;6186:6;6183:30;6180:2;;;6231:6;6223;6216:22;6180:2;6275:76;6343:7;6334:6;6323:9;6319:22;6275:76;:::i;:::-;6002:409;;6370:8;;-1:-1:-1;6249:102:1;;-1:-1:-1;;;;6002:409:1:o;6416:259::-;;6497:5;6491:12;6524:6;6519:3;6512:19;6540:63;6596:6;6589:4;6584:3;6580:14;6573:4;6566:5;6562:16;6540:63;:::i;:::-;6657:2;6636:15;-1:-1:-1;;6632:29:1;6623:39;;;;6664:4;6619:50;;6467:208;-1:-1:-1;;6467:208:1:o;6680:982::-;6767:12;;6680:982;;6839:1;6824:17;;6860:1;6896:18;;;;6923:2;;6977:4;6969:6;6965:17;6955:27;;6923:2;7003;7051;7043:6;7040:14;7020:18;7017:38;7014:2;;;-1:-1:-1;;;7078:33:1;;7134:4;7131:1;7124:15;7164:4;7085:3;7152:17;7014:2;7195:18;7222:104;;;;7340:1;7335:321;;;;7188:468;;7222:104;-1:-1:-1;;7255:24:1;;7243:37;;7300:16;;;;-1:-1:-1;7222:104:1;;7335:321;7371:38;7403:5;7371:38;:::i;:::-;7431:1;7445:165;7459:6;7456:1;7453:13;7445:165;;;7537:14;;7524:11;;;7517:35;7580:16;;;;7474:10;;7445:165;;;7449:3;;7639:6;7634:3;7630:16;7623:23;;7188:468;;;;;;;6740:922;;;;:::o;7667:229::-;7816:2;7812:15;;;;-1:-1:-1;;7808:53:1;7796:66;;7887:2;7878:12;;7786:110::o;7901:247::-;8058:19;;;8102:2;8093:12;;8086:28;8139:2;8130:12;;8048:100::o;8153:199::-;;8306:40;8342:3;8334:6;8306:40;:::i;8357:545::-;;8662:40;8698:3;8690:6;8662:40;:::i;:::-;8731:6;8725:13;8747:52;8792:6;8788:2;8781:4;8773:6;8769:17;8747:52;:::i;:::-;-1:-1:-1;;;8821:15:1;;8845:22;;;8894:1;8883:13;;8642:260;-1:-1:-1;;;;8642:260:1:o;8907:203::-;-1:-1:-1;;;;;9071:32:1;;;;9053:51;;9041:2;9026:18;;9008:102::o;9115:490::-;-1:-1:-1;;;;;9384:15:1;;;9366:34;;9436:15;;9431:2;9416:18;;9409:43;9483:2;9468:18;;9461:34;;;9531:3;9526:2;9511:18;;9504:31;;;9115:490;;9552:47;;9579:19;;9571:6;9552:47;:::i;:::-;9544:55;9318:287;-1:-1:-1;;;;;;9318:287:1:o;9610:187::-;9775:14;;9768:22;9750:41;;9738:2;9723:18;;9705:92::o;9802:177::-;9948:25;;;9936:2;9921:18;;9903:76::o;9984:221::-;;10133:2;10122:9;10115:21;10153:46;10195:2;10184:9;10180:18;10172:6;10153:46;:::i;10210:407::-;10412:2;10394:21;;;10451:2;10431:18;;;10424:30;10490:34;10485:2;10470:18;;10463:62;-1:-1:-1;;;10556:2:1;10541:18;;10534:41;10607:3;10592:19;;10384:233::o;10622:414::-;10824:2;10806:21;;;10863:2;10843:18;;;10836:30;10902:34;10897:2;10882:18;;10875:62;-1:-1:-1;;;10968:2:1;10953:18;;10946:48;11026:3;11011:19;;10796:240::o;11041:402::-;11243:2;11225:21;;;11282:2;11262:18;;;11255:30;11321:34;11316:2;11301:18;;11294:62;-1:-1:-1;;;11387:2:1;11372:18;;11365:36;11433:3;11418:19;;11215:228::o;11448:352::-;11650:2;11632:21;;;11689:2;11669:18;;;11662:30;11728;11723:2;11708:18;;11701:58;11791:2;11776:18;;11622:178::o;11805:400::-;12007:2;11989:21;;;12046:2;12026:18;;;12019:30;12085:34;12080:2;12065:18;;12058:62;-1:-1:-1;;;12151:2:1;12136:18;;12129:34;12195:3;12180:19;;11979:226::o;12210:349::-;12412:2;12394:21;;;12451:2;12431:18;;;12424:30;12490:27;12485:2;12470:18;;12463:55;12550:2;12535:18;;12384:175::o;12564:332::-;12766:2;12748:21;;;12805:1;12785:18;;;12778:29;-1:-1:-1;;;12838:2:1;12823:18;;12816:39;12887:2;12872:18;;12738:158::o;12901:342::-;13103:2;13085:21;;;13142:2;13122:18;;;13115:30;-1:-1:-1;;;13176:2:1;13161:18;;13154:48;13234:2;13219:18;;13075:168::o;13248:408::-;13450:2;13432:21;;;13489:2;13469:18;;;13462:30;13528:34;13523:2;13508:18;;13501:62;-1:-1:-1;;;13594:2:1;13579:18;;13572:42;13646:3;13631:19;;13422:234::o;13661:346::-;13863:2;13845:21;;;13902:2;13882:18;;;13875:30;-1:-1:-1;;;13936:2:1;13921:18;;13914:52;13998:2;13983:18;;13835:172::o;14012:397::-;14214:2;14196:21;;;14253:2;14233:18;;;14226:30;14292:34;14287:2;14272:18;;14265:62;-1:-1:-1;;;14358:2:1;14343:18;;14336:31;14399:3;14384:19;;14186:223::o;14414:420::-;14616:2;14598:21;;;14655:2;14635:18;;;14628:30;14694:34;14689:2;14674:18;;14667:62;14765:26;14760:2;14745:18;;14738:54;14824:3;14809:19;;14588:246::o;14839:354::-;15041:2;15023:21;;;15080:2;15060:18;;;15053:30;15119:32;15114:2;15099:18;;15092:60;15184:2;15169:18;;15013:180::o;15198:406::-;15400:2;15382:21;;;15439:2;15419:18;;;15412:30;15478:34;15473:2;15458:18;;15451:62;-1:-1:-1;;;15544:2:1;15529:18;;15522:40;15594:3;15579:19;;15372:232::o;15609:405::-;15811:2;15793:21;;;15850:2;15830:18;;;15823:30;15889:34;15884:2;15869:18;;15862:62;-1:-1:-1;;;15955:2:1;15940:18;;15933:39;16004:3;15989:19;;15783:231::o;16019:341::-;16221:2;16203:21;;;16260:2;16240:18;;;16233:30;-1:-1:-1;;;16294:2:1;16279:18;;16272:47;16351:2;16336:18;;16193:167::o;16365:398::-;16567:2;16549:21;;;16606:2;16586:18;;;16579:30;16645:34;16640:2;16625:18;;16618:62;-1:-1:-1;;;16711:2:1;16696:18;;16689:32;16753:3;16738:19;;16539:224::o;16768:356::-;16970:2;16952:21;;;16989:18;;;16982:30;17048:34;17043:2;17028:18;;17021:62;17115:2;17100:18;;16942:182::o;17129:408::-;17331:2;17313:21;;;17370:2;17350:18;;;17343:30;17409:34;17404:2;17389:18;;17382:62;-1:-1:-1;;;17475:2:1;17460:18;;17453:42;17527:3;17512:19;;17303:234::o;17542:339::-;17744:2;17726:21;;;17783:2;17763:18;;;17756:30;-1:-1:-1;;;17817:2:1;17802:18;;17795:45;17872:2;17857:18;;17716:165::o;17886:356::-;18088:2;18070:21;;;18107:18;;;18100:30;18166:34;18161:2;18146:18;;18139:62;18233:2;18218:18;;18060:182::o;18247:405::-;18449:2;18431:21;;;18488:2;18468:18;;;18461:30;18527:34;18522:2;18507:18;;18500:62;-1:-1:-1;;;18593:2:1;18578:18;;18571:39;18642:3;18627:19;;18421:231::o;18657:411::-;18859:2;18841:21;;;18898:2;18878:18;;;18871:30;18937:34;18932:2;18917:18;;18910:62;-1:-1:-1;;;19003:2:1;18988:18;;18981:45;19058:3;19043:19;;18831:237::o;19073:341::-;19275:2;19257:21;;;19314:2;19294:18;;;19287:30;-1:-1:-1;;;19348:2:1;19333:18;;19326:47;19405:2;19390:18;;19247:167::o;19419:397::-;19621:2;19603:21;;;19660:2;19640:18;;;19633:30;19699:34;19694:2;19679:18;;19672:62;-1:-1:-1;;;19765:2:1;19750:18;;19743:31;19806:3;19791:19;;19593:223::o;19821:413::-;20023:2;20005:21;;;20062:2;20042:18;;;20035:30;20101:34;20096:2;20081:18;;20074:62;-1:-1:-1;;;20167:2:1;20152:18;;20145:47;20224:3;20209:19;;19995:239::o;20239:397::-;20441:2;20423:21;;;20480:2;20460:18;;;20453:30;20519:34;20514:2;20499:18;;20492:62;-1:-1:-1;;;20585:2:1;20570:18;;20563:31;20626:3;20611:19;;20413:223::o;20641:408::-;20843:2;20825:21;;;20882:2;20862:18;;;20855:30;20921:34;20916:2;20901:18;;20894:62;-1:-1:-1;;;20987:2:1;20972:18;;20965:42;21039:3;21024:19;;20815:234::o;21054:355::-;21256:2;21238:21;;;21295:2;21275:18;;;21268:30;21334:33;21329:2;21314:18;;21307:61;21400:2;21385:18;;21228:181::o;21849:129::-;;21917:17;;;21967:4;21951:21;;;21907:71::o;21983:128::-;;22054:1;22050:6;22047:1;22044:13;22041:2;;;22060:18;;:::i;:::-;-1:-1:-1;22096:9:1;;22031:80::o;22116:120::-;;22182:1;22172:2;;22187:18;;:::i;:::-;-1:-1:-1;22221:9:1;;22162:74::o;22241:168::-;;22347:1;22343;22339:6;22335:14;22332:1;22329:21;22324:1;22317:9;22310:17;22306:45;22303:2;;;22354:18;;:::i;:::-;-1:-1:-1;22394:9:1;;22293:116::o;22414:125::-;;22482:1;22479;22476:8;22473:2;;;22487:18;;:::i;:::-;-1:-1:-1;22524:9:1;;22463:76::o;22544:258::-;22616:1;22626:113;22640:6;22637:1;22634:13;22626:113;;;22716:11;;;22710:18;22697:11;;;22690:39;22662:2;22655:10;22626:113;;;22757:6;22754:1;22751:13;22748:2;;;-1:-1:-1;;22792:1:1;22774:16;;22767:27;22597:205::o;22807:380::-;22892:1;22882:12;;22939:1;22929:12;;;22950:2;;23004:4;22996:6;22992:17;22982:27;;22950:2;23057;23049:6;23046:14;23026:18;23023:38;23020:2;;;23103:10;23098:3;23094:20;23091:1;23084:31;23138:4;23135:1;23128:15;23166:4;23163:1;23156:15;23020:2;;22862:325;;;:::o;23192:135::-;;-1:-1:-1;;23252:17:1;;23249:2;;;23272:18;;:::i;:::-;-1:-1:-1;23319:1:1;23308:13;;23239:88::o;23332:112::-;;23390:1;23380:2;;23395:18;;:::i;:::-;-1:-1:-1;23429:9:1;;23370:74::o;23449:127::-;23510:10;23505:3;23501:20;23498:1;23491:31;23541:4;23538:1;23531:15;23565:4;23562:1;23555:15;23581:127;23642:10;23637:3;23633:20;23630:1;23623:31;23673:4;23670:1;23663:15;23697:4;23694:1;23687:15;23713:127;23774:10;23769:3;23765:20;23762:1;23755:31;23805:4;23802:1;23795:15;23829:4;23826:1;23819:15;23845:133;-1:-1:-1;;;;;;23921:32:1;;23911:43;;23901:2;;23968:1;23965;23958:12

Swarm Source

ipfs://f21bb53eca5c8dcb7e4065d820d685682a42f240e3734ca58d1f2c3d2987afcf
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.