ETH Price: $3,483.71 (+7.29%)
Gas: 9 Gwei

Token

QueensOfNewWorld (QNW)
 

Overview

Max Total Supply

333 QNW

Holders

218

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
strelitzia.eth
Balance
1 QNW
0x8b3d2da1d7166e881e4fb36f8351b59a092a08ed
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:
QueensOfNewWorld

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: UNLISENCED

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

abstract contract MerkleProof {
    bytes32 internal _merkleRoot;
    function _setMerkleRoot(bytes32 merkleRoot_) internal virtual {
        _merkleRoot = merkleRoot_;
    }
    function isWhitelisted(address address_, bytes32[] memory proof_) public view returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(address_));
        for (uint256 i = 0; i < proof_.length; i++) {
            _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf));
        }
        return _leaf == _merkleRoot;
    }
}

contract QueensOfNewWorld is ERC721, Ownable, MerkleProof {

    uint256 public wlmintPrice = 0.02 ether;
    uint256 public mintPrice = 0.03 ether;
    uint256 private maxToken = 333;
    string private baseTokenURI;
    string private baseTokenURI_EXT;
    bool public whitelistSaleEnabled;
    bool public publicSaleEnabled;
    mapping(address => uint256) public wlMinted;
    mapping(address => uint256) public psMinted;
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private supply;

    constructor () ERC721 ("QueensOfNewWorld","QNW") {}

    function ownerMint(uint256 _amount, address _address) public onlyOwner { 
        require((_amount + supply.current()) <= (maxToken), "No more NFTs");
        internalmint(_address, _amount);
    }

    function whitelistMint(bytes32[] memory proof_) external payable onlySender {
        require(whitelistSaleEnabled, "wlMint: Paused");
        require(isWhitelisted(msg.sender, proof_), "You are not whitelisted!");
        require(wlMinted[msg.sender] == 0, "You have no WL mints remaining!");//max1addy
        require(msg.value == wlmintPrice, "Value sent is not correct");
        require((1 + supply.current()) <= (maxToken), "No more NFTs");

        wlMinted[msg.sender]++;
        internalmint(msg.sender, 1);
    }

    function publicMint(uint256 _amount) public payable onlySender {
        require(publicSaleEnabled, "publicMint: Paused");
        require(_amount < 3, "more than max per transaction");//max2tx
        require(psMinted[msg.sender] < 2, "You have no mints remaining!");//max2addy
        require(msg.value == mintPrice * _amount, "Value sent is not correct");
        require((_amount + supply.current()) <= (maxToken), "No more NFTs");
         
        psMinted[msg.sender] += _amount;
        internalmint(msg.sender, _amount);
    }

    function setwlPrice(uint256 newPrice) external onlyOwner {
        wlmintPrice = newPrice;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        mintPrice = newPrice;
    }

    function setWlSale(bool bool_) external onlyOwner {
        whitelistSaleEnabled = bool_;
    }

    function setPublicSale(bool bool_) external onlyOwner {
        publicSaleEnabled = bool_;
    }

    function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner {
        _setMerkleRoot(merkleRoot_);
    }

    function setBaseURI(string memory uri_) public onlyOwner {
        baseTokenURI = uri_;
    }

    function setbaseTokenURI_EXT(string memory ext_) public onlyOwner {
        baseTokenURI_EXT = ext_;
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    function currentBaseURI() private view returns (string memory){
        return baseTokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "Token not exist");
        return string(abi.encodePacked(currentBaseURI(), Strings.toString(tokenId), baseTokenURI_EXT));
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    modifier onlySender {
        require(msg.sender == tx.origin, "No smart contract"); _; 
    }

    function internalmint(address _address, uint256 _amount) internal {
        for (uint256 i = 0; i < _amount; i++) {
          supply.increment();
          _safeMint(_address, supply.current());
        }
    }

    function walletOfOwner(address _address) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_address);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;
        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxToken) {
            address currentTokenOwner = ownerOf(currentTokenId);

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

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"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":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWlSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ext_","type":"string"}],"name":"setbaseTokenURI_EXT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setwlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405266470de4df820000600855666a94d74f43000060095561014d600a553480156200002d57600080fd5b50604080518082018252601081526f145d59595b9cd3d993995dd5dbdc9b1960821b602080830191825283518085019094526003845262514e5760e81b908401528151919291620000819160009162000110565b5080516200009790600190602084019062000110565b505050620000b4620000ae620000ba60201b60201c565b620000be565b620001f3565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011e90620001b6565b90600052602060002090601f0160209004810192826200014257600085556200018d565b82601f106200015d57805160ff19168380011785556200018d565b828001600101855582156200018d579182015b828111156200018d57825182559160200191906001019062000170565b506200019b9291506200019f565b5090565b5b808211156200019b5760008155600101620001a0565b600181811c90821680620001cb57607f821691505b60208210811415620001ed57634e487b7160e01b600052602260045260246000fd5b50919050565b61255b80620002036000396000f3fe60806040526004361061020f5760003560e01c80636817c76c11610118578063a22cb465116100a0578063d52c57e01161006f578063d52c57e0146105f4578063e985e9c514610614578063f2fde38b1461065d578063fd0af9611461067d578063ffa272cf1461069357600080fd5b8063a22cb46514610574578063b88d4fde14610594578063bfac44ee146105b4578063c87b56dd146105d457600080fd5b80637cb64759116100e75780637cb64759146104d45780638da5cb5b146104f457806391b7f5ed14610512578063942958f41461053257806395d89b411461055f57600080fd5b80636817c76c1461045c57806370a0823114610472578063715018a61461049257806378a92380146104a757600080fd5b80632db115441161019b578063438b63001161016a578063438b6300146103af57806355f804b3146103dc5780635a23dd99146103fc5780635aca1bb61461041c5780636352211e1461043c57600080fd5b80632db1154414610361578063372f657c146103745780633ccfd60b1461038757806342842e0e1461038f57600080fd5b8063095ea7b3116101e2578063095ea7b3146102bd5780630e13a7c0146102df57806318160ddd146102ff57806323b872dd146103225780632ab91bba1461034257600080fd5b806301ffc9a7146102145780630694d6c51461024957806306fdde0314610263578063081812fc14610285575b600080fd5b34801561022057600080fd5b5061023461022f366004612066565b6106b3565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50600d546102349060ff1681565b34801561026f57600080fd5b50610278610705565b604051610240919061227d565b34801561029157600080fd5b506102a56102a036600461204d565b610797565b6040516001600160a01b039091168152602001610240565b3480156102c957600080fd5b506102dd6102d8366004611fd3565b610831565b005b3480156102eb57600080fd5b506102dd6102fa36600461204d565b610947565b34801561030b57600080fd5b50610314610976565b604051908152602001610240565b34801561032e57600080fd5b506102dd61033d366004611ea3565b610986565b34801561034e57600080fd5b50600d5461023490610100900460ff1681565b6102dd61036f36600461204d565b6109b7565b6102dd610382366004611ffd565b610bad565b6102dd610d8d565b34801561039b57600080fd5b506102dd6103aa366004611ea3565b610ddd565b3480156103bb57600080fd5b506103cf6103ca366004611e4e565b610df8565b6040516102409190612239565b3480156103e857600080fd5b506102dd6103f73660046120a0565b610ed9565b34801561040857600080fd5b50610234610417366004611f5b565b610f1a565b34801561042857600080fd5b506102dd610437366004612032565b61103e565b34801561044857600080fd5b506102a561045736600461204d565b611082565b34801561046857600080fd5b5061031460095481565b34801561047e57600080fd5b5061031461048d366004611e4e565b6110f9565b34801561049e57600080fd5b506102dd611180565b3480156104b357600080fd5b506103146104c2366004611e4e565b600e6020526000908152604090205481565b3480156104e057600080fd5b506102dd6104ef36600461204d565b6111b4565b34801561050057600080fd5b506006546001600160a01b03166102a5565b34801561051e57600080fd5b506102dd61052d36600461204d565b6111e7565b34801561053e57600080fd5b5061031461054d366004611e4e565b600f6020526000908152604090205481565b34801561056b57600080fd5b50610278611216565b34801561058057600080fd5b506102dd61058f366004611fa9565b611225565b3480156105a057600080fd5b506102dd6105af366004611edf565b611230565b3480156105c057600080fd5b506102dd6105cf3660046120a0565b611268565b3480156105e057600080fd5b506102786105ef36600461204d565b6112a5565b34801561060057600080fd5b506102dd61060f3660046120e9565b611339565b34801561062057600080fd5b5061023461062f366004611e70565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066957600080fd5b506102dd610678366004611e4e565b61139b565b34801561068957600080fd5b5061031460085481565b34801561069f57600080fd5b506102dd6106ae366004612032565b611433565b60006001600160e01b031982166380ac58cd60e01b14806106e457506001600160e01b03198216635b5e139f60e01b145b806106ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107149061244d565b80601f01602080910402602001604051908101604052809291908181526020018280546107409061244d565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083c82611082565b9050806001600160a01b0316836001600160a01b031614156108aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161080c565b336001600160a01b03821614806108c657506108c6813361062f565b6109385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161080c565b6109428383611470565b505050565b6006546001600160a01b031633146109715760405162461bcd60e51b815260040161080c906122e2565b600855565b600061098160105490565b905090565b61099033826114de565b6109ac5760405162461bcd60e51b815260040161080c9061233d565b6109428383836115d5565b3332146109fa5760405162461bcd60e51b8152602060048201526011602482015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b604482015260640161080c565b600d54610100900460ff16610a465760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b604482015260640161080c565b60038110610a965760405162461bcd60e51b815260206004820152601d60248201527f6d6f7265207468616e206d617820706572207472616e73616374696f6e000000604482015260640161080c565b336000908152600f6020526040902054600211610af55760405162461bcd60e51b815260206004820152601c60248201527f596f752068617665206e6f206d696e74732072656d61696e696e672100000000604482015260640161080c565b80600954610b0391906123eb565b3414610b4d5760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161080c565b600a54601054610b5d90836123bf565b1115610b7b5760405162461bcd60e51b815260040161080c90612317565b336000908152600f602052604081208054839290610b9a9084906123bf565b90915550610baa90503382611771565b50565b333214610bf05760405162461bcd60e51b8152602060048201526011602482015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b604482015260640161080c565b600d5460ff16610c335760405162461bcd60e51b815260206004820152600e60248201526d1ddb135a5b9d0e8814185d5cd95960921b604482015260640161080c565b610c3d3382610f1a565b610c895760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c6973746564210000000000000000604482015260640161080c565b336000908152600e602052604090205415610ce65760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f20574c206d696e74732072656d61696e696e672100604482015260640161080c565b6008543414610d335760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161080c565b600a54601054610d449060016123bf565b1115610d625760405162461bcd60e51b815260040161080c90612317565b336000908152600e60205260408120805491610d7d83612488565b9190505550610baa336001611771565b6006546001600160a01b03163314610db75760405162461bcd60e51b815260040161080c906122e2565b60405133904780156108fc02916000818181858888f19350505050610ddb57600080fd5b565b61094283838360405180602001604052806000815250611230565b60606000610e05836110f9565b905060008167ffffffffffffffff811115610e2257610e226124f9565b604051908082528060200260200182016040528015610e4b578160200160208202803683370190505b509050600160005b8381108015610e645750600a548211155b15610ecf576000610e7483611082565b9050866001600160a01b0316816001600160a01b03161415610ebc5782848381518110610ea357610ea36124e3565b602090810291909101015281610eb881612488565b9250505b82610ec681612488565b93505050610e53565b5090949350505050565b6006546001600160a01b03163314610f035760405162461bcd60e51b815260040161080c906122e2565b8051610f1690600b906020840190611cab565b5050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b835181101561103257838181518110610f7457610f746124e3565b60200260200101518210610fd257838181518110610f9457610f946124e3565b602002602001015182604051602001610fb7929190918252602082015260400190565b6040516020818303038152906040528051906020012061101e565b81848281518110610fe557610fe56124e3565b6020026020010151604051602001611007929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061102a81612488565b915050610f59565b50600754149392505050565b6006546001600160a01b031633146110685760405162461bcd60e51b815260040161080c906122e2565b600d80549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806106ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161080c565b60006001600160a01b0382166111645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161080c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111aa5760405162461bcd60e51b815260040161080c906122e2565b610ddb60006117ae565b6006546001600160a01b031633146111de5760405162461bcd60e51b815260040161080c906122e2565b610baa81600755565b6006546001600160a01b031633146112115760405162461bcd60e51b815260040161080c906122e2565b600955565b6060600180546107149061244d565b610f16338383611800565b61123a33836114de565b6112565760405162461bcd60e51b815260040161080c9061233d565b611262848484846118cf565b50505050565b6006546001600160a01b031633146112925760405162461bcd60e51b815260040161080c906122e2565b8051610f1690600c906020840190611cab565b6000818152600260205260409020546060906001600160a01b03166112fe5760405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881b9bdd08195e1a5cdd608a1b604482015260640161080c565b611306611902565b61130f83611911565b600c60405160200161132393929190612138565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146113635760405162461bcd60e51b815260040161080c906122e2565b600a5460105461137390846123bf565b11156113915760405162461bcd60e51b815260040161080c90612317565b610f168183611771565b6006546001600160a01b031633146113c55760405162461bcd60e51b815260040161080c906122e2565b6001600160a01b03811661142a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080c565b610baa816117ae565b6006546001600160a01b0316331461145d5760405162461bcd60e51b815260040161080c906122e2565b600d805460ff1916911515919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114a582611082565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161080c565b600061156283611082565b9050806001600160a01b0316846001600160a01b031614806115a957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806115cd5750836001600160a01b03166115c284610797565b6001600160a01b0316145b949350505050565b826001600160a01b03166115e882611082565b6001600160a01b03161461164c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161080c565b6001600160a01b0382166116ae5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161080c565b6116b9600082611470565b6001600160a01b03831660009081526003602052604081208054600192906116e290849061240a565b90915550506001600160a01b03821660009081526003602052604081208054600192906117109084906123bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b818110156109425761178a601080546001019055565b61179c8361179760105490565b611a0f565b806117a681612488565b915050611774565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118625760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161080c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118da8484846115d5565b6118e684848484611a29565b6112625760405162461bcd60e51b815260040161080c90612290565b6060600b80546107149061244d565b6060816119355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561195f578061194981612488565b91506119589050600a836123d7565b9150611939565b60008167ffffffffffffffff81111561197a5761197a6124f9565b6040519080825280601f01601f1916602001820160405280156119a4576020820181803683370190505b5090505b84156115cd576119b960018361240a565b91506119c6600a866124a3565b6119d19060306123bf565b60f81b8183815181106119e6576119e66124e3565b60200101906001600160f81b031916908160001a905350611a08600a866123d7565b94506119a8565b610f16828260405180602001604052806000815250611b36565b60006001600160a01b0384163b15611b2b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a6d9033908990889088906004016121fc565b602060405180830381600087803b158015611a8757600080fd5b505af1925050508015611ab7575060408051601f3d908101601f19168201909252611ab491810190612083565b60015b611b11573d808015611ae5576040519150601f19603f3d011682016040523d82523d6000602084013e611aea565b606091505b508051611b095760405162461bcd60e51b815260040161080c90612290565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115cd565b506001949350505050565b611b408383611b69565b611b4d6000848484611a29565b6109425760405162461bcd60e51b815260040161080c90612290565b6001600160a01b038216611bbf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161080c565b6000818152600260205260409020546001600160a01b031615611c245760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161080c565b6001600160a01b0382166000908152600360205260408120805460019290611c4d9084906123bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cb79061244d565b90600052602060002090601f016020900481019282611cd95760008555611d1f565b82601f10611cf257805160ff1916838001178555611d1f565b82800160010185558215611d1f579182015b82811115611d1f578251825591602001919060010190611d04565b50611d2b929150611d2f565b5090565b5b80821115611d2b5760008155600101611d30565b600067ffffffffffffffff831115611d5e57611d5e6124f9565b611d71601f8401601f191660200161238e565b9050828152838383011115611d8557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611db357600080fd5b919050565b600082601f830112611dc957600080fd5b8135602067ffffffffffffffff821115611de557611de56124f9565b8160051b611df482820161238e565b838152828101908684018388018501891015611e0f57600080fd5b600093505b85841015611e32578035835260019390930192918401918401611e14565b50979650505050505050565b80358015158114611db357600080fd5b600060208284031215611e6057600080fd5b611e6982611d9c565b9392505050565b60008060408385031215611e8357600080fd5b611e8c83611d9c565b9150611e9a60208401611d9c565b90509250929050565b600080600060608486031215611eb857600080fd5b611ec184611d9c565b9250611ecf60208501611d9c565b9150604084013590509250925092565b60008060008060808587031215611ef557600080fd5b611efe85611d9c565b9350611f0c60208601611d9c565b925060408501359150606085013567ffffffffffffffff811115611f2f57600080fd5b8501601f81018713611f4057600080fd5b611f4f87823560208401611d44565b91505092959194509250565b60008060408385031215611f6e57600080fd5b611f7783611d9c565b9150602083013567ffffffffffffffff811115611f9357600080fd5b611f9f85828601611db8565b9150509250929050565b60008060408385031215611fbc57600080fd5b611fc583611d9c565b9150611e9a60208401611e3e565b60008060408385031215611fe657600080fd5b611fef83611d9c565b946020939093013593505050565b60006020828403121561200f57600080fd5b813567ffffffffffffffff81111561202657600080fd5b6115cd84828501611db8565b60006020828403121561204457600080fd5b611e6982611e3e565b60006020828403121561205f57600080fd5b5035919050565b60006020828403121561207857600080fd5b8135611e698161250f565b60006020828403121561209557600080fd5b8151611e698161250f565b6000602082840312156120b257600080fd5b813567ffffffffffffffff8111156120c957600080fd5b8201601f810184136120da57600080fd5b6115cd84823560208401611d44565b600080604083850312156120fc57600080fd5b82359150611e9a60208401611d9c565b60008151808452612124816020860160208601612421565b601f01601f19169290920160200192915050565b60008451602061214b8285838a01612421565b85519184019161215e8184848a01612421565b8554920191600090600181811c908083168061217b57607f831692505b85831081141561219957634e487b7160e01b85526022600452602485fd5b8080156121ad57600181146121be576121eb565b60ff198516885283880195506121eb565b60008b81526020902060005b858110156121e35781548a8201529084019088016121ca565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061222f9083018461210c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561227157835183529284019291840191600101612255565b50909695505050505050565b602081526000611e69602083018461210c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156123b7576123b76124f9565b604052919050565b600082198211156123d2576123d26124b7565b500190565b6000826123e6576123e66124cd565b500490565b6000816000190483118215151615612405576124056124b7565b500290565b60008282101561241c5761241c6124b7565b500390565b60005b8381101561243c578181015183820152602001612424565b838111156112625750506000910152565b600181811c9082168061246157607f821691505b6020821081141561248257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561249c5761249c6124b7565b5060010190565b6000826124b2576124b26124cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610baa57600080fdfea2646970667358221220de954dd12518bef402c25abecd6dc091d439bba827990484659198897221eb1164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636817c76c11610118578063a22cb465116100a0578063d52c57e01161006f578063d52c57e0146105f4578063e985e9c514610614578063f2fde38b1461065d578063fd0af9611461067d578063ffa272cf1461069357600080fd5b8063a22cb46514610574578063b88d4fde14610594578063bfac44ee146105b4578063c87b56dd146105d457600080fd5b80637cb64759116100e75780637cb64759146104d45780638da5cb5b146104f457806391b7f5ed14610512578063942958f41461053257806395d89b411461055f57600080fd5b80636817c76c1461045c57806370a0823114610472578063715018a61461049257806378a92380146104a757600080fd5b80632db115441161019b578063438b63001161016a578063438b6300146103af57806355f804b3146103dc5780635a23dd99146103fc5780635aca1bb61461041c5780636352211e1461043c57600080fd5b80632db1154414610361578063372f657c146103745780633ccfd60b1461038757806342842e0e1461038f57600080fd5b8063095ea7b3116101e2578063095ea7b3146102bd5780630e13a7c0146102df57806318160ddd146102ff57806323b872dd146103225780632ab91bba1461034257600080fd5b806301ffc9a7146102145780630694d6c51461024957806306fdde0314610263578063081812fc14610285575b600080fd5b34801561022057600080fd5b5061023461022f366004612066565b6106b3565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50600d546102349060ff1681565b34801561026f57600080fd5b50610278610705565b604051610240919061227d565b34801561029157600080fd5b506102a56102a036600461204d565b610797565b6040516001600160a01b039091168152602001610240565b3480156102c957600080fd5b506102dd6102d8366004611fd3565b610831565b005b3480156102eb57600080fd5b506102dd6102fa36600461204d565b610947565b34801561030b57600080fd5b50610314610976565b604051908152602001610240565b34801561032e57600080fd5b506102dd61033d366004611ea3565b610986565b34801561034e57600080fd5b50600d5461023490610100900460ff1681565b6102dd61036f36600461204d565b6109b7565b6102dd610382366004611ffd565b610bad565b6102dd610d8d565b34801561039b57600080fd5b506102dd6103aa366004611ea3565b610ddd565b3480156103bb57600080fd5b506103cf6103ca366004611e4e565b610df8565b6040516102409190612239565b3480156103e857600080fd5b506102dd6103f73660046120a0565b610ed9565b34801561040857600080fd5b50610234610417366004611f5b565b610f1a565b34801561042857600080fd5b506102dd610437366004612032565b61103e565b34801561044857600080fd5b506102a561045736600461204d565b611082565b34801561046857600080fd5b5061031460095481565b34801561047e57600080fd5b5061031461048d366004611e4e565b6110f9565b34801561049e57600080fd5b506102dd611180565b3480156104b357600080fd5b506103146104c2366004611e4e565b600e6020526000908152604090205481565b3480156104e057600080fd5b506102dd6104ef36600461204d565b6111b4565b34801561050057600080fd5b506006546001600160a01b03166102a5565b34801561051e57600080fd5b506102dd61052d36600461204d565b6111e7565b34801561053e57600080fd5b5061031461054d366004611e4e565b600f6020526000908152604090205481565b34801561056b57600080fd5b50610278611216565b34801561058057600080fd5b506102dd61058f366004611fa9565b611225565b3480156105a057600080fd5b506102dd6105af366004611edf565b611230565b3480156105c057600080fd5b506102dd6105cf3660046120a0565b611268565b3480156105e057600080fd5b506102786105ef36600461204d565b6112a5565b34801561060057600080fd5b506102dd61060f3660046120e9565b611339565b34801561062057600080fd5b5061023461062f366004611e70565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066957600080fd5b506102dd610678366004611e4e565b61139b565b34801561068957600080fd5b5061031460085481565b34801561069f57600080fd5b506102dd6106ae366004612032565b611433565b60006001600160e01b031982166380ac58cd60e01b14806106e457506001600160e01b03198216635b5e139f60e01b145b806106ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107149061244d565b80601f01602080910402602001604051908101604052809291908181526020018280546107409061244d565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083c82611082565b9050806001600160a01b0316836001600160a01b031614156108aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161080c565b336001600160a01b03821614806108c657506108c6813361062f565b6109385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161080c565b6109428383611470565b505050565b6006546001600160a01b031633146109715760405162461bcd60e51b815260040161080c906122e2565b600855565b600061098160105490565b905090565b61099033826114de565b6109ac5760405162461bcd60e51b815260040161080c9061233d565b6109428383836115d5565b3332146109fa5760405162461bcd60e51b8152602060048201526011602482015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b604482015260640161080c565b600d54610100900460ff16610a465760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b604482015260640161080c565b60038110610a965760405162461bcd60e51b815260206004820152601d60248201527f6d6f7265207468616e206d617820706572207472616e73616374696f6e000000604482015260640161080c565b336000908152600f6020526040902054600211610af55760405162461bcd60e51b815260206004820152601c60248201527f596f752068617665206e6f206d696e74732072656d61696e696e672100000000604482015260640161080c565b80600954610b0391906123eb565b3414610b4d5760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161080c565b600a54601054610b5d90836123bf565b1115610b7b5760405162461bcd60e51b815260040161080c90612317565b336000908152600f602052604081208054839290610b9a9084906123bf565b90915550610baa90503382611771565b50565b333214610bf05760405162461bcd60e51b8152602060048201526011602482015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b604482015260640161080c565b600d5460ff16610c335760405162461bcd60e51b815260206004820152600e60248201526d1ddb135a5b9d0e8814185d5cd95960921b604482015260640161080c565b610c3d3382610f1a565b610c895760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c6973746564210000000000000000604482015260640161080c565b336000908152600e602052604090205415610ce65760405162461bcd60e51b815260206004820152601f60248201527f596f752068617665206e6f20574c206d696e74732072656d61696e696e672100604482015260640161080c565b6008543414610d335760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161080c565b600a54601054610d449060016123bf565b1115610d625760405162461bcd60e51b815260040161080c90612317565b336000908152600e60205260408120805491610d7d83612488565b9190505550610baa336001611771565b6006546001600160a01b03163314610db75760405162461bcd60e51b815260040161080c906122e2565b60405133904780156108fc02916000818181858888f19350505050610ddb57600080fd5b565b61094283838360405180602001604052806000815250611230565b60606000610e05836110f9565b905060008167ffffffffffffffff811115610e2257610e226124f9565b604051908082528060200260200182016040528015610e4b578160200160208202803683370190505b509050600160005b8381108015610e645750600a548211155b15610ecf576000610e7483611082565b9050866001600160a01b0316816001600160a01b03161415610ebc5782848381518110610ea357610ea36124e3565b602090810291909101015281610eb881612488565b9250505b82610ec681612488565b93505050610e53565b5090949350505050565b6006546001600160a01b03163314610f035760405162461bcd60e51b815260040161080c906122e2565b8051610f1690600b906020840190611cab565b5050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b835181101561103257838181518110610f7457610f746124e3565b60200260200101518210610fd257838181518110610f9457610f946124e3565b602002602001015182604051602001610fb7929190918252602082015260400190565b6040516020818303038152906040528051906020012061101e565b81848281518110610fe557610fe56124e3565b6020026020010151604051602001611007929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061102a81612488565b915050610f59565b50600754149392505050565b6006546001600160a01b031633146110685760405162461bcd60e51b815260040161080c906122e2565b600d80549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806106ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161080c565b60006001600160a01b0382166111645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161080c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111aa5760405162461bcd60e51b815260040161080c906122e2565b610ddb60006117ae565b6006546001600160a01b031633146111de5760405162461bcd60e51b815260040161080c906122e2565b610baa81600755565b6006546001600160a01b031633146112115760405162461bcd60e51b815260040161080c906122e2565b600955565b6060600180546107149061244d565b610f16338383611800565b61123a33836114de565b6112565760405162461bcd60e51b815260040161080c9061233d565b611262848484846118cf565b50505050565b6006546001600160a01b031633146112925760405162461bcd60e51b815260040161080c906122e2565b8051610f1690600c906020840190611cab565b6000818152600260205260409020546060906001600160a01b03166112fe5760405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881b9bdd08195e1a5cdd608a1b604482015260640161080c565b611306611902565b61130f83611911565b600c60405160200161132393929190612138565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146113635760405162461bcd60e51b815260040161080c906122e2565b600a5460105461137390846123bf565b11156113915760405162461bcd60e51b815260040161080c90612317565b610f168183611771565b6006546001600160a01b031633146113c55760405162461bcd60e51b815260040161080c906122e2565b6001600160a01b03811661142a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080c565b610baa816117ae565b6006546001600160a01b0316331461145d5760405162461bcd60e51b815260040161080c906122e2565b600d805460ff1916911515919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114a582611082565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161080c565b600061156283611082565b9050806001600160a01b0316846001600160a01b031614806115a957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806115cd5750836001600160a01b03166115c284610797565b6001600160a01b0316145b949350505050565b826001600160a01b03166115e882611082565b6001600160a01b03161461164c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161080c565b6001600160a01b0382166116ae5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161080c565b6116b9600082611470565b6001600160a01b03831660009081526003602052604081208054600192906116e290849061240a565b90915550506001600160a01b03821660009081526003602052604081208054600192906117109084906123bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b818110156109425761178a601080546001019055565b61179c8361179760105490565b611a0f565b806117a681612488565b915050611774565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118625760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161080c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118da8484846115d5565b6118e684848484611a29565b6112625760405162461bcd60e51b815260040161080c90612290565b6060600b80546107149061244d565b6060816119355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561195f578061194981612488565b91506119589050600a836123d7565b9150611939565b60008167ffffffffffffffff81111561197a5761197a6124f9565b6040519080825280601f01601f1916602001820160405280156119a4576020820181803683370190505b5090505b84156115cd576119b960018361240a565b91506119c6600a866124a3565b6119d19060306123bf565b60f81b8183815181106119e6576119e66124e3565b60200101906001600160f81b031916908160001a905350611a08600a866123d7565b94506119a8565b610f16828260405180602001604052806000815250611b36565b60006001600160a01b0384163b15611b2b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a6d9033908990889088906004016121fc565b602060405180830381600087803b158015611a8757600080fd5b505af1925050508015611ab7575060408051601f3d908101601f19168201909252611ab491810190612083565b60015b611b11573d808015611ae5576040519150601f19603f3d011682016040523d82523d6000602084013e611aea565b606091505b508051611b095760405162461bcd60e51b815260040161080c90612290565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115cd565b506001949350505050565b611b408383611b69565b611b4d6000848484611a29565b6109425760405162461bcd60e51b815260040161080c90612290565b6001600160a01b038216611bbf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161080c565b6000818152600260205260409020546001600160a01b031615611c245760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161080c565b6001600160a01b0382166000908152600360205260408120805460019290611c4d9084906123bf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cb79061244d565b90600052602060002090601f016020900481019282611cd95760008555611d1f565b82601f10611cf257805160ff1916838001178555611d1f565b82800160010185558215611d1f579182015b82811115611d1f578251825591602001919060010190611d04565b50611d2b929150611d2f565b5090565b5b80821115611d2b5760008155600101611d30565b600067ffffffffffffffff831115611d5e57611d5e6124f9565b611d71601f8401601f191660200161238e565b9050828152838383011115611d8557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611db357600080fd5b919050565b600082601f830112611dc957600080fd5b8135602067ffffffffffffffff821115611de557611de56124f9565b8160051b611df482820161238e565b838152828101908684018388018501891015611e0f57600080fd5b600093505b85841015611e32578035835260019390930192918401918401611e14565b50979650505050505050565b80358015158114611db357600080fd5b600060208284031215611e6057600080fd5b611e6982611d9c565b9392505050565b60008060408385031215611e8357600080fd5b611e8c83611d9c565b9150611e9a60208401611d9c565b90509250929050565b600080600060608486031215611eb857600080fd5b611ec184611d9c565b9250611ecf60208501611d9c565b9150604084013590509250925092565b60008060008060808587031215611ef557600080fd5b611efe85611d9c565b9350611f0c60208601611d9c565b925060408501359150606085013567ffffffffffffffff811115611f2f57600080fd5b8501601f81018713611f4057600080fd5b611f4f87823560208401611d44565b91505092959194509250565b60008060408385031215611f6e57600080fd5b611f7783611d9c565b9150602083013567ffffffffffffffff811115611f9357600080fd5b611f9f85828601611db8565b9150509250929050565b60008060408385031215611fbc57600080fd5b611fc583611d9c565b9150611e9a60208401611e3e565b60008060408385031215611fe657600080fd5b611fef83611d9c565b946020939093013593505050565b60006020828403121561200f57600080fd5b813567ffffffffffffffff81111561202657600080fd5b6115cd84828501611db8565b60006020828403121561204457600080fd5b611e6982611e3e565b60006020828403121561205f57600080fd5b5035919050565b60006020828403121561207857600080fd5b8135611e698161250f565b60006020828403121561209557600080fd5b8151611e698161250f565b6000602082840312156120b257600080fd5b813567ffffffffffffffff8111156120c957600080fd5b8201601f810184136120da57600080fd5b6115cd84823560208401611d44565b600080604083850312156120fc57600080fd5b82359150611e9a60208401611d9c565b60008151808452612124816020860160208601612421565b601f01601f19169290920160200192915050565b60008451602061214b8285838a01612421565b85519184019161215e8184848a01612421565b8554920191600090600181811c908083168061217b57607f831692505b85831081141561219957634e487b7160e01b85526022600452602485fd5b8080156121ad57600181146121be576121eb565b60ff198516885283880195506121eb565b60008b81526020902060005b858110156121e35781548a8201529084019088016121ca565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061222f9083018461210c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561227157835183529284019291840191600101612255565b50909695505050505050565b602081526000611e69602083018461210c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156123b7576123b76124f9565b604052919050565b600082198211156123d2576123d26124b7565b500190565b6000826123e6576123e66124cd565b500490565b6000816000190483118215151615612405576124056124b7565b500290565b60008282101561241c5761241c6124b7565b500390565b60005b8381101561243c578181015183820152602001612424565b838111156112625750506000910152565b600181811c9082168061246157607f821691505b6020821081141561248257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561249c5761249c6124b7565b5060010190565b6000826124b2576124b26124cd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610baa57600080fdfea2646970667358221220de954dd12518bef402c25abecd6dc091d439bba827990484659198897221eb1164736f6c63430008070033

Deployed Bytecode Sourcemap

39363:4285:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25652:305;;;;;;;;;;-1:-1:-1;25652:305:0;;;;;:::i;:::-;;:::i;:::-;;;9810:14:1;;9803:22;9785:41;;9773:2;9758:18;25652:305:0;;;;;;;;39629:32;;;;;;;;;;-1:-1:-1;39629:32:0;;;;;;;;26597:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28157:221::-;;;;;;;;;;-1:-1:-1;28157:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8471:32:1;;;8453:51;;8441:2;8426:18;28157:221:0;8307:203:1;27680:411:0;;;;;;;;;;-1:-1:-1;27680:411:0;;;;;:::i;:::-;;:::i;:::-;;41276:98;;;;;;;;;;-1:-1:-1;41276:98:0;;;;;:::i;:::-;;:::i;42031:95::-;;;;;;;;;;;;;:::i;:::-;;;19672:25:1;;;19660:2;19645:18;42031:95:0;19526:177:1;28907:339:0;;;;;;;;;;-1:-1:-1;28907:339:0;;;;;:::i;:::-;;:::i;39668:29::-;;;;;;;;;;-1:-1:-1;39668:29:0;;;;;;;;;;;40724:544;;;;;;:::i;:::-;;:::i;40185:531::-;;;;;;:::i;:::-;;:::i;42506:120::-;;;:::i;29317:185::-;;;;;;;;;;-1:-1:-1;29317:185:0;;;;;:::i;:::-;;:::i;42961:684::-;;;;;;;;;;-1:-1:-1;42961:684:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41812:95::-;;;;;;;;;;-1:-1:-1;41812:95:0;;;;;:::i;:::-;;:::i;38951:405::-;;;;;;;;;;-1:-1:-1;38951:405:0;;;;;:::i;:::-;;:::i;41589:98::-;;;;;;;;;;-1:-1:-1;41589:98:0;;;;;:::i;:::-;;:::i;26291:239::-;;;;;;;;;;-1:-1:-1;26291:239:0;;;;;:::i;:::-;;:::i;39476:37::-;;;;;;;;;;;;;;;;26021:208;;;;;;;;;;-1:-1:-1;26021:208:0;;;;;:::i;:::-;;:::i;6235:103::-;;;;;;;;;;;;;:::i;39704:43::-;;;;;;;;;;-1:-1:-1;39704:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;41695:109;;;;;;;;;;-1:-1:-1;41695:109:0;;;;;:::i;:::-;;:::i;5584:87::-;;;;;;;;;;-1:-1:-1;5657:6:0;;-1:-1:-1;;;;;5657:6:0;5584:87;;41382:94;;;;;;;;;;-1:-1:-1;41382:94:0;;;;;:::i;:::-;;:::i;39754:43::-;;;;;;;;;;-1:-1:-1;39754:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;26766:104;;;;;;;;;;;;;:::i;28450:155::-;;;;;;;;;;-1:-1:-1;28450:155:0;;;;;:::i;:::-;;:::i;29573:328::-;;;;;;;;;;-1:-1:-1;29573:328:0;;;;;:::i;:::-;;:::i;41915:108::-;;;;;;;;;;-1:-1:-1;41915:108:0;;;;;:::i;:::-;;:::i;42242:256::-;;;;;;;;;;-1:-1:-1;42242:256:0;;;;;:::i;:::-;;:::i;39977:200::-;;;;;;;;;;-1:-1:-1;39977:200:0;;;;;:::i;:::-;;:::i;28676:164::-;;;;;;;;;;-1:-1:-1;28676:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28797:25:0;;;28773:4;28797:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28676:164;6493:201;;;;;;;;;;-1:-1:-1;6493:201:0;;;;;:::i;:::-;;:::i;39430:39::-;;;;;;;;;;;;;;;;41484:97;;;;;;;;;;-1:-1:-1;41484:97:0;;;;;:::i;:::-;;:::i;25652:305::-;25754:4;-1:-1:-1;;;;;;25791:40:0;;-1:-1:-1;;;25791:40:0;;:105;;-1:-1:-1;;;;;;;25848:48:0;;-1:-1:-1;;;25848:48:0;25791:105;:158;;;-1:-1:-1;;;;;;;;;;18500:40:0;;;25913:36;25771:178;25652:305;-1:-1:-1;;25652:305:0:o;26597:100::-;26651:13;26684:5;26677:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26597:100;:::o;28157:221::-;28233:7;31500:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31500:16:0;28253:73;;;;-1:-1:-1;;;28253:73:0;;16731:2:1;28253:73:0;;;16713:21:1;16770:2;16750:18;;;16743:30;16809:34;16789:18;;;16782:62;-1:-1:-1;;;16860:18:1;;;16853:42;16912:19;;28253:73:0;;;;;;;;;-1:-1:-1;28346:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28346:24:0;;28157:221::o;27680:411::-;27761:13;27777:23;27792:7;27777:14;:23::i;:::-;27761:39;;27825:5;-1:-1:-1;;;;;27819:11:0;:2;-1:-1:-1;;;;;27819:11:0;;;27811:57;;;;-1:-1:-1;;;27811:57:0;;17505:2:1;27811:57:0;;;17487:21:1;17544:2;17524:18;;;17517:30;17583:34;17563:18;;;17556:62;-1:-1:-1;;;17634:18:1;;;17627:31;17675:19;;27811:57:0;17303:397:1;27811:57:0;4388:10;-1:-1:-1;;;;;27903:21:0;;;;:62;;-1:-1:-1;27928:37:0;27945:5;4388:10;28676:164;:::i;27928:37::-;27881:168;;;;-1:-1:-1;;;27881:168:0;;14770:2:1;27881:168:0;;;14752:21:1;14809:2;14789:18;;;14782:30;14848:34;14828:18;;;14821:62;14919:26;14899:18;;;14892:54;14963:19;;27881:168:0;14568:420:1;27881:168:0;28062:21;28071:2;28075:7;28062:8;:21::i;:::-;27750:341;27680:411;;:::o;41276:98::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;41344:11:::1;:22:::0;41276:98::o;42031:95::-;42075:7;42102:16;:6;1004:14;;912:114;42102:16;42095:23;;42031:95;:::o;28907:339::-;29102:41;4388:10;29135:7;29102:18;:41::i;:::-;29094:103;;;;-1:-1:-1;;;29094:103:0;;;;;;;:::i;:::-;29210:28;29220:4;29226:2;29230:7;29210:9;:28::i;40724:544::-;42673:10;42687:9;42673:23;42665:53;;;;-1:-1:-1;;;42665:53:0;;12899:2:1;42665:53:0;;;12881:21:1;12938:2;12918:18;;;12911:30;-1:-1:-1;;;12957:18:1;;;12950:47;13014:18;;42665:53:0;12697:341:1;42665:53:0;40806:17:::1;::::0;::::1;::::0;::::1;;;40798:48;;;::::0;-1:-1:-1;;;40798:48:0;;10682:2:1;40798:48:0::1;::::0;::::1;10664:21:1::0;10721:2;10701:18;;;10694:30;-1:-1:-1;;;10740:18:1;;;10733:48;10798:18;;40798:48:0::1;10480:342:1::0;40798:48:0::1;40875:1;40865:7;:11;40857:53;;;::::0;-1:-1:-1;;;40857:53:0;;19370:2:1;40857:53:0::1;::::0;::::1;19352:21:1::0;19409:2;19389:18;;;19382:30;19448:31;19428:18;;;19421:59;19497:18;;40857:53:0::1;19168:353:1::0;40857:53:0::1;40946:10;40937:20;::::0;;;:8:::1;:20;::::0;;;;;40960:1:::1;-1:-1:-1::0;40929:65:0::1;;;::::0;-1:-1:-1;;;40929:65:0;;12199:2:1;40929:65:0::1;::::0;::::1;12181:21:1::0;12238:2;12218:18;;;12211:30;12277;12257:18;;;12250:58;12325:18;;40929:65:0::1;11997:352:1::0;40929:65:0::1;41048:7;41036:9;;:19;;;;:::i;:::-;41023:9;:32;41015:70;;;::::0;-1:-1:-1;;;41015:70:0;;16016:2:1;41015:70:0::1;::::0;::::1;15998:21:1::0;16055:2;16035:18;;;16028:30;-1:-1:-1;;;16074:18:1;;;16067:55;16139:18;;41015:70:0::1;15814:349:1::0;41015:70:0::1;41137:8;::::0;41115:6:::1;1004:14:::0;41105:26:::1;::::0;:7;:26:::1;:::i;:::-;41104:42;;41096:67;;;;-1:-1:-1::0;;;41096:67:0::1;;;;;;;:::i;:::-;41194:10;41185:20;::::0;;;:8:::1;:20;::::0;;;;:31;;41209:7;;41185:20;:31:::1;::::0;41209:7;;41185:31:::1;:::i;:::-;::::0;;;-1:-1:-1;41227:33:0::1;::::0;-1:-1:-1;41240:10:0::1;41252:7:::0;41227:12:::1;:33::i;:::-;40724:544:::0;:::o;40185:531::-;42673:10;42687:9;42673:23;42665:53;;;;-1:-1:-1;;;42665:53:0;;12899:2:1;42665:53:0;;;12881:21:1;12938:2;12918:18;;;12911:30;-1:-1:-1;;;12957:18:1;;;12950:47;13014:18;;42665:53:0;12697:341:1;42665:53:0;40280:20:::1;::::0;::::1;;40272:47;;;::::0;-1:-1:-1;;;40272:47:0;;12556:2:1;40272:47:0::1;::::0;::::1;12538:21:1::0;12595:2;12575:18;;;12568:30;-1:-1:-1;;;12614:18:1;;;12607:44;12668:18;;40272:47:0::1;12354:338:1::0;40272:47:0::1;40338:33;40352:10;40364:6;40338:13;:33::i;:::-;40330:70;;;::::0;-1:-1:-1;;;40330:70:0;;13245:2:1;40330:70:0::1;::::0;::::1;13227:21:1::0;13284:2;13264:18;;;13257:30;13323:26;13303:18;;;13296:54;13367:18;;40330:70:0::1;13043:348:1::0;40330:70:0::1;40428:10;40419:20;::::0;;;:8:::1;:20;::::0;;;;;:25;40411:69:::1;;;::::0;-1:-1:-1;;;40411:69:0;;18666:2:1;40411:69:0::1;::::0;::::1;18648:21:1::0;18705:2;18685:18;;;18678:30;18744:33;18724:18;;;18717:61;18795:18;;40411:69:0::1;18464:355:1::0;40411:69:0::1;40522:11;;40509:9;:24;40501:62;;;::::0;-1:-1:-1;;;40501:62:0;;16016:2:1;40501:62:0::1;::::0;::::1;15998:21:1::0;16055:2;16035:18;;;16028:30;-1:-1:-1;;;16074:18:1;;;16067:55;16139:18;;40501:62:0::1;15814:349:1::0;40501:62:0::1;40609:8;::::0;40587:6:::1;1004:14:::0;40583:20:::1;::::0;:1:::1;:20;:::i;:::-;40582:36;;40574:61;;;;-1:-1:-1::0;;;40574:61:0::1;;;;;;;:::i;:::-;40657:10;40648:20;::::0;;;:8:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;;;;;;40681:27;40694:10;40706:1;40681:12;:27::i;42506:120::-:0;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;42570:47:::1;::::0;42578:10:::1;::::0;42595:21:::1;42570:47:::0;::::1;;;::::0;::::1;::::0;;;42595:21;42578:10;42570:47;::::1;;;;;;42562:56;;;::::0;::::1;;42506:120::o:0;29317:185::-;29455:39;29472:4;29478:2;29482:7;29455:39;;;;;;;;;;;;:16;:39::i;42961:684::-;43023:16;43052:23;43078:19;43088:8;43078:9;:19::i;:::-;43052:45;;43108:30;43155:15;43141:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43141:30:0;-1:-1:-1;43108:63:0;-1:-1:-1;43207:1:0;43182:22;43257:350;43282:15;43264;:33;:63;;;;;43319:8;;43301:14;:26;;43264:63;43257:350;;;43344:25;43372:23;43380:14;43372:7;:23::i;:::-;43344:51;;43437:8;-1:-1:-1;;;;;43416:29:0;:17;-1:-1:-1;;;;;43416:29:0;;43412:153;;;43499:14;43466:13;43480:15;43466:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;43532:17;;;;:::i;:::-;;;;43412:153;43579:16;;;;:::i;:::-;;;;43329:278;43257:350;;;-1:-1:-1;43624:13:0;;42961:684;-1:-1:-1;;;;42961:684:0:o;41812:95::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;41880:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41812:95:::0;:::o;38951:405::-;39081:26;;-1:-1:-1;;6438:2:1;6434:15;;;6430:53;39081:26:0;;;6418:66:1;39038:4:0;;;;6500:12:1;;39081:26:0;;;;;;;;;;;;39071:37;;;;;;39055:53;;39124:9;39119:192;39143:6;:13;39139:1;:17;39119:192;;;39194:6;39201:1;39194:9;;;;;;;;:::i;:::-;;;;;;;39186:5;:17;:113;;39281:6;39288:1;39281:9;;;;;;;;:::i;:::-;;;;;;;39292:5;39264:34;;;;;;;;6680:19:1;;;6724:2;6715:12;;6708:28;6761:2;6752:12;;6523:247;39264:34:0;;;;;;;;;;;;;39254:45;;;;;;39186:113;;;39233:5;39240:6;39247:1;39240:9;;;;;;;;:::i;:::-;;;;;;;39216:34;;;;;;;;6680:19:1;;;6724:2;6715:12;;6708:28;6761:2;6752:12;;6523:247;39216:34:0;;;;;;;;;;;;;39206:45;;;;;;39186:113;39178:121;-1:-1:-1;39158:3:0;;;;:::i;:::-;;;;39119:192;;;-1:-1:-1;39337:11:0;;39328:20;;38951:405;-1:-1:-1;;;38951:405:0:o;41589:98::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;41654:17:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;41654:25:0;;::::1;::::0;;;::::1;::::0;;41589:98::o;26291:239::-;26363:7;26399:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26399:16:0;26434:19;26426:73;;;;-1:-1:-1;;;26426:73:0;;15606:2:1;26426:73:0;;;15588:21:1;15645:2;15625:18;;;15618:30;15684:34;15664:18;;;15657:62;-1:-1:-1;;;15735:18:1;;;15728:39;15784:19;;26426:73:0;15404:405:1;26021:208:0;26093:7;-1:-1:-1;;;;;26121:19:0;;26113:74;;;;-1:-1:-1;;;26113:74:0;;15195:2:1;26113:74:0;;;15177:21:1;15234:2;15214:18;;;15207:30;15273:34;15253:18;;;15246:62;-1:-1:-1;;;15324:18:1;;;15317:40;15374:19;;26113:74:0;14993:406:1;26113:74:0;-1:-1:-1;;;;;;26205:16:0;;;;;:9;:16;;;;;;;26021:208::o;6235:103::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;6300:30:::1;6327:1;6300:18;:30::i;41695:109::-:0;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;41769:27:::1;41784:11;38912::::0;:25;38839:106;41382:94;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;41448:9:::1;:20:::0;41382:94::o;26766:104::-;26822:13;26855:7;26848:14;;;;;:::i;28450:155::-;28545:52;4388:10;28578:8;28588;28545:18;:52::i;29573:328::-;29748:41;4388:10;29781:7;29748:18;:41::i;:::-;29740:103;;;;-1:-1:-1;;;29740:103:0;;;;;;;:::i;:::-;29854:39;29868:4;29874:2;29878:7;29887:5;29854:13;:39::i;:::-;29573:328;;;;:::o;41915:108::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;41992:23;;::::1;::::0;:16:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;42242:256::-:0;31476:4;31500:16;;;:7;:16;;;;;;42315:13;;-1:-1:-1;;;;;31500:16:0;42341:44;;;;-1:-1:-1;;;42341:44:0;;19026:2:1;42341:44:0;;;19008:21:1;19065:2;19045:18;;;19038:30;-1:-1:-1;;;19084:18:1;;;19077:45;19139:18;;42341:44:0;18824:339:1;42341:44:0;42427:16;:14;:16::i;:::-;42445:25;42462:7;42445:16;:25::i;:::-;42472:16;42410:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42396:94;;42242:256;;;:::o;39977:200::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;40101:8:::1;::::0;40079:6:::1;1004:14:::0;40069:26:::1;::::0;:7;:26:::1;:::i;:::-;40068:42;;40060:67;;;;-1:-1:-1::0;;;40060:67:0::1;;;;;;;:::i;:::-;40138:31;40151:8;40161:7;40138:12;:31::i;6493:201::-:0;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6582:22:0;::::1;6574:73;;;::::0;-1:-1:-1;;;6574:73:0;;11029:2:1;6574:73:0::1;::::0;::::1;11011:21:1::0;11068:2;11048:18;;;11041:30;11107:34;11087:18;;;11080:62;-1:-1:-1;;;11158:18:1;;;11151:36;11204:19;;6574:73:0::1;10827:402:1::0;6574:73:0::1;6658:28;6677:8;6658:18;:28::i;41484:97::-:0;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;41545:20:::1;:28:::0;;-1:-1:-1;;41545:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41484:97::o;35557:174::-;35632:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35632:29:0;-1:-1:-1;;;;;35632:29:0;;;;;;;;:24;;35686:23;35632:24;35686:14;:23::i;:::-;-1:-1:-1;;;;;35677:46:0;;;;;;;;;;;35557:174;;:::o;31705:348::-;31798:4;31500:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31500:16:0;31815:73;;;;-1:-1:-1;;;31815:73:0;;14357:2:1;31815:73:0;;;14339:21:1;14396:2;14376:18;;;14369:30;14435:34;14415:18;;;14408:62;-1:-1:-1;;;14486:18:1;;;14479:42;14538:19;;31815:73:0;14155:408:1;31815:73:0;31899:13;31915:23;31930:7;31915:14;:23::i;:::-;31899:39;;31968:5;-1:-1:-1;;;;;31957:16:0;:7;-1:-1:-1;;;;;31957:16:0;;:52;;;-1:-1:-1;;;;;;28797:25:0;;;28773:4;28797:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31977:32;31957:87;;;;32037:7;-1:-1:-1;;;;;32013:31:0;:20;32025:7;32013:11;:20::i;:::-;-1:-1:-1;;;;;32013:31:0;;31957:87;31949:96;31705:348;-1:-1:-1;;;;31705:348:0:o;34814:625::-;34973:4;-1:-1:-1;;;;;34946:31:0;:23;34961:7;34946:14;:23::i;:::-;-1:-1:-1;;;;;34946:31:0;;34938:81;;;;-1:-1:-1;;;34938:81:0;;11436:2:1;34938:81:0;;;11418:21:1;11475:2;11455:18;;;11448:30;11514:34;11494:18;;;11487:62;-1:-1:-1;;;11565:18:1;;;11558:35;11610:19;;34938:81:0;11234:401:1;34938:81:0;-1:-1:-1;;;;;35038:16:0;;35030:65;;;;-1:-1:-1;;;35030:65:0;;13598:2:1;35030:65:0;;;13580:21:1;13637:2;13617:18;;;13610:30;13676:34;13656:18;;;13649:62;-1:-1:-1;;;13727:18:1;;;13720:34;13771:19;;35030:65:0;13396:400:1;35030:65:0;35212:29;35229:1;35233:7;35212:8;:29::i;:::-;-1:-1:-1;;;;;35254:15:0;;;;;;:9;:15;;;;;:20;;35273:1;;35254:15;:20;;35273:1;;35254:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35285:13:0;;;;;;:9;:13;;;;;:18;;35302:1;;35285:13;:18;;35302:1;;35285:18;:::i;:::-;;;;-1:-1:-1;;35314:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35314:21:0;-1:-1:-1;;;;;35314:21:0;;;;;;;;;35353:27;;35314:16;;35353:27;;;;;;;27750:341;27680:411;;:::o;42738:215::-;42820:9;42815:131;42839:7;42835:1;:11;42815:131;;;42866:18;:6;1123:19;;1141:1;1123:19;;;1034:127;42866:18;42897:37;42907:8;42917:16;:6;1004:14;;912:114;42917:16;42897:9;:37::i;:::-;42848:3;;;;:::i;:::-;;;;42815:131;;6854:191;6947:6;;;-1:-1:-1;;;;;6964:17:0;;;-1:-1:-1;;;;;;6964:17:0;;;;;;;6997:40;;6947:6;;;6964:17;6947:6;;6997:40;;6928:16;;6997:40;6917:128;6854:191;:::o;35873:315::-;36028:8;-1:-1:-1;;;;;36019:17:0;:5;-1:-1:-1;;;;;36019:17:0;;;36011:55;;;;-1:-1:-1;;;36011:55:0;;14003:2:1;36011:55:0;;;13985:21:1;14042:2;14022:18;;;14015:30;14081:27;14061:18;;;14054:55;14126:18;;36011:55:0;13801:349:1;36011:55:0;-1:-1:-1;;;;;36077:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36077:46:0;;;;;;;;;;36139:41;;9785::1;;;36139::0;;9758:18:1;36139:41:0;;;;;;;35873:315;;;:::o;30783:::-;30940:28;30950:4;30956:2;30960:7;30940:9;:28::i;:::-;30987:48;31010:4;31016:2;31020:7;31029:5;30987:22;:48::i;:::-;30979:111;;;;-1:-1:-1;;;30979:111:0;;;;;;;:::i;42134:100::-;42182:13;42214:12;42207:19;;;;;:::i;1870:723::-;1926:13;2147:10;2143:53;;-1:-1:-1;;2174:10:0;;;;;;;;;;;;-1:-1:-1;;;2174:10:0;;;;;1870:723::o;2143:53::-;2221:5;2206:12;2262:78;2269:9;;2262:78;;2295:8;;;;:::i;:::-;;-1:-1:-1;2318:10:0;;-1:-1:-1;2326:2:0;2318:10;;:::i;:::-;;;2262:78;;;2350:19;2382:6;2372:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2372:17:0;;2350:39;;2400:154;2407:10;;2400:154;;2434:11;2444:1;2434:11;;:::i;:::-;;-1:-1:-1;2503:10:0;2511:2;2503:5;:10;:::i;:::-;2490:24;;:2;:24;:::i;:::-;2477:39;;2460:6;2467;2460:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2460:56:0;;;;;;;;-1:-1:-1;2531:11:0;2540:2;2531:11;;:::i;:::-;;;2400:154;;32395:110;32471:26;32481:2;32485:7;32471:26;;;;;;;;;;;;:9;:26::i;36753:799::-;36908:4;-1:-1:-1;;;;;36929:13:0;;8580:19;:23;36925:620;;36965:72;;-1:-1:-1;;;36965:72:0;;-1:-1:-1;;;;;36965:36:0;;;;;:72;;4388:10;;37016:4;;37022:7;;37031:5;;36965:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36965:72:0;;;;;;;;-1:-1:-1;;36965:72:0;;;;;;;;;;;;:::i;:::-;;;36961:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37207:13:0;;37203:272;;37250:60;;-1:-1:-1;;;37250:60:0;;;;;;;:::i;37203:272::-;37425:6;37419:13;37410:6;37406:2;37402:15;37395:38;36961:529;-1:-1:-1;;;;;;37088:51:0;-1:-1:-1;;;37088:51:0;;-1:-1:-1;37081:58:0;;36925:620;-1:-1:-1;37529:4:0;36753:799;;;;;;:::o;32732:321::-;32862:18;32868:2;32872:7;32862:5;:18::i;:::-;32913:54;32944:1;32948:2;32952:7;32961:5;32913:22;:54::i;:::-;32891:154;;;;-1:-1:-1;;;32891:154:0;;;;;;;:::i;33389:439::-;-1:-1:-1;;;;;33469:16:0;;33461:61;;;;-1:-1:-1;;;33461:61:0;;16370:2:1;33461:61:0;;;16352:21:1;;;16389:18;;;16382:30;16448:34;16428:18;;;16421:62;16500:18;;33461:61:0;16168:356:1;33461:61:0;31476:4;31500:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31500:16:0;:30;33533:58;;;;-1:-1:-1;;;33533:58:0;;11842:2:1;33533:58:0;;;11824:21:1;11881:2;11861:18;;;11854:30;11920;11900:18;;;11893:58;11968:18;;33533:58:0;11640:352:1;33533:58:0;-1:-1:-1;;;;;33662:13:0;;;;;;:9;:13;;;;;:18;;33679:1;;33662:13;:18;;33679:1;;33662:18;:::i;:::-;;;;-1:-1:-1;;33691:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33691:21:0;-1:-1:-1;;;;;33691:21:0;;;;;;;;33730:33;;33691:16;;;33730:33;;33691:16;;33730:33;41880:19:::1;41812:95:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;:::-;1637:39;1496:186;-1:-1:-1;;;1496:186:1:o;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;2712:18;2704:6;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:422::-;3049:6;3057;3110:2;3098:9;3089:7;3085:23;3081:32;3078:52;;;3126:1;3123;3116:12;3078:52;3149:29;3168:9;3149:29;:::i;:::-;3139:39;;3229:2;3218:9;3214:18;3201:32;3256:18;3248:6;3245:30;3242:50;;;3288:1;3285;3278:12;3242:50;3311:61;3364:7;3355:6;3344:9;3340:22;3311:61;:::i;:::-;3301:71;;;2956:422;;;;;:::o;3383:254::-;3448:6;3456;3509:2;3497:9;3488:7;3484:23;3480:32;3477:52;;;3525:1;3522;3515:12;3477:52;3548:29;3567:9;3548:29;:::i;:::-;3538:39;;3596:35;3627:2;3616:9;3612:18;3596:35;:::i;3642:254::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;3886:2;3871:18;;;;3858:32;;-1:-1:-1;;;3642:254:1:o;3901:348::-;3985:6;4038:2;4026:9;4017:7;4013:23;4009:32;4006:52;;;4054:1;4051;4044:12;4006:52;4094:9;4081:23;4127:18;4119:6;4116:30;4113:50;;;4159:1;4156;4149:12;4113:50;4182:61;4235:7;4226:6;4215:9;4211:22;4182:61;:::i;4254:180::-;4310:6;4363:2;4351:9;4342:7;4338:23;4334:32;4331:52;;;4379:1;4376;4369:12;4331:52;4402:26;4418:9;4402:26;:::i;4439:180::-;4498:6;4551:2;4539:9;4530:7;4526:23;4522:32;4519:52;;;4567:1;4564;4557:12;4519:52;-1:-1:-1;4590:23:1;;4439:180;-1:-1:-1;4439:180:1:o;4624:245::-;4682:6;4735:2;4723:9;4714:7;4710:23;4706:32;4703:52;;;4751:1;4748;4741:12;4703:52;4790:9;4777:23;4809:30;4833:5;4809:30;:::i;4874:249::-;4943:6;4996:2;4984:9;4975:7;4971:23;4967:32;4964:52;;;5012:1;5009;5002:12;4964:52;5044:9;5038:16;5063:30;5087:5;5063:30;:::i;5128:450::-;5197:6;5250:2;5238:9;5229:7;5225:23;5221:32;5218:52;;;5266:1;5263;5256:12;5218:52;5306:9;5293:23;5339:18;5331:6;5328:30;5325:50;;;5371:1;5368;5361:12;5325:50;5394:22;;5447:4;5439:13;;5435:27;-1:-1:-1;5425:55:1;;5476:1;5473;5466:12;5425:55;5499:73;5564:7;5559:2;5546:16;5541:2;5537;5533:11;5499:73;:::i;5768:254::-;5836:6;5844;5897:2;5885:9;5876:7;5872:23;5868:32;5865:52;;;5913:1;5910;5903:12;5865:52;5949:9;5936:23;5926:33;;5978:38;6012:2;6001:9;5997:18;5978:38;:::i;6027:257::-;6068:3;6106:5;6100:12;6133:6;6128:3;6121:19;6149:63;6205:6;6198:4;6193:3;6189:14;6182:4;6175:5;6171:16;6149:63;:::i;:::-;6266:2;6245:15;-1:-1:-1;;6241:29:1;6232:39;;;;6273:4;6228:50;;6027:257;-1:-1:-1;;6027:257:1:o;6775:1527::-;6999:3;7037:6;7031:13;7063:4;7076:51;7120:6;7115:3;7110:2;7102:6;7098:15;7076:51;:::i;:::-;7190:13;;7149:16;;;;7212:55;7190:13;7149:16;7234:15;;;7212:55;:::i;:::-;7356:13;;7289:20;;;7329:1;;7416;7438:18;;;;7491;;;;7518:93;;7596:4;7586:8;7582:19;7570:31;;7518:93;7659:2;7649:8;7646:16;7626:18;7623:40;7620:167;;;-1:-1:-1;;;7686:33:1;;7742:4;7739:1;7732:15;7772:4;7693:3;7760:17;7620:167;7803:18;7830:110;;;;7954:1;7949:328;;;;7796:481;;7830:110;-1:-1:-1;;7865:24:1;;7851:39;;7910:20;;;;-1:-1:-1;7830:110:1;;7949:328;20061:1;20054:14;;;20098:4;20085:18;;8044:1;8058:169;8072:8;8069:1;8066:15;8058:169;;;8154:14;;8139:13;;;8132:37;8197:16;;;;8089:10;;8058:169;;;8062:3;;8258:8;8251:5;8247:20;8240:27;;7796:481;-1:-1:-1;8293:3:1;;6775:1527;-1:-1:-1;;;;;;;;;;;6775:1527:1:o;8515:488::-;-1:-1:-1;;;;;8784:15:1;;;8766:34;;8836:15;;8831:2;8816:18;;8809:43;8883:2;8868:18;;8861:34;;;8931:3;8926:2;8911:18;;8904:31;;;8709:4;;8952:45;;8977:19;;8969:6;8952:45;:::i;:::-;8944:53;8515:488;-1:-1:-1;;;;;;8515:488:1:o;9008:632::-;9179:2;9231:21;;;9301:13;;9204:18;;;9323:22;;;9150:4;;9179:2;9402:15;;;;9376:2;9361:18;;;9150:4;9445:169;9459:6;9456:1;9453:13;9445:169;;;9520:13;;9508:26;;9589:15;;;;9554:12;;;;9481:1;9474:9;9445:169;;;-1:-1:-1;9631:3:1;;9008:632;-1:-1:-1;;;;;;9008:632:1:o;9837:219::-;9986:2;9975:9;9968:21;9949:4;10006:44;10046:2;10035:9;10031:18;10023:6;10006:44;:::i;10061:414::-;10263:2;10245:21;;;10302:2;10282:18;;;10275:30;10341:34;10336:2;10321:18;;10314:62;-1:-1:-1;;;10407:2:1;10392:18;;10385:48;10465:3;10450:19;;10061:414::o;16942:356::-;17144:2;17126:21;;;17163:18;;;17156:30;17222:34;17217:2;17202:18;;17195:62;17289:2;17274:18;;16942:356::o;17705:336::-;17907:2;17889:21;;;17946:2;17926:18;;;17919:30;-1:-1:-1;;;17980:2:1;17965:18;;17958:42;18032:2;18017:18;;17705:336::o;18046:413::-;18248:2;18230:21;;;18287:2;18267:18;;;18260:30;18326:34;18321:2;18306:18;;18299:62;-1:-1:-1;;;18392:2:1;18377:18;;18370:47;18449:3;18434:19;;18046:413::o;19708:275::-;19779:2;19773:9;19844:2;19825:13;;-1:-1:-1;;19821:27:1;19809:40;;19879:18;19864:34;;19900:22;;;19861:62;19858:88;;;19926:18;;:::i;:::-;19962:2;19955:22;19708:275;;-1:-1:-1;19708:275:1:o;20114:128::-;20154:3;20185:1;20181:6;20178:1;20175:13;20172:39;;;20191:18;;:::i;:::-;-1:-1:-1;20227:9:1;;20114:128::o;20247:120::-;20287:1;20313;20303:35;;20318:18;;:::i;:::-;-1:-1:-1;20352:9:1;;20247:120::o;20372:168::-;20412:7;20478:1;20474;20470:6;20466:14;20463:1;20460:21;20455:1;20448:9;20441:17;20437:45;20434:71;;;20485:18;;:::i;:::-;-1:-1:-1;20525:9:1;;20372:168::o;20545:125::-;20585:4;20613:1;20610;20607:8;20604:34;;;20618:18;;:::i;:::-;-1:-1:-1;20655:9:1;;20545:125::o;20675:258::-;20747:1;20757:113;20771:6;20768:1;20765:13;20757:113;;;20847:11;;;20841:18;20828:11;;;20821:39;20793:2;20786:10;20757:113;;;20888:6;20885:1;20882:13;20879:48;;;-1:-1:-1;;20923:1:1;20905:16;;20898:27;20675:258::o;20938:380::-;21017:1;21013:12;;;;21060;;;21081:61;;21135:4;21127:6;21123:17;21113:27;;21081:61;21188:2;21180:6;21177:14;21157:18;21154:38;21151:161;;;21234:10;21229:3;21225:20;21222:1;21215:31;21269:4;21266:1;21259:15;21297:4;21294:1;21287:15;21151:161;;20938:380;;;:::o;21323:135::-;21362:3;-1:-1:-1;;21383:17:1;;21380:43;;;21403:18;;:::i;:::-;-1:-1:-1;21450:1:1;21439:13;;21323:135::o;21463:112::-;21495:1;21521;21511:35;;21526:18;;:::i;:::-;-1:-1:-1;21560:9:1;;21463:112::o;21580:127::-;21641:10;21636:3;21632:20;21629:1;21622:31;21672:4;21669:1;21662:15;21696:4;21693:1;21686:15;21712:127;21773:10;21768:3;21764:20;21761:1;21754:31;21804:4;21801:1;21794:15;21828:4;21825:1;21818:15;21844:127;21905:10;21900:3;21896:20;21893:1;21886:31;21936:4;21933:1;21926:15;21960:4;21957:1;21950:15;21976:127;22037:10;22032:3;22028:20;22025:1;22018:31;22068:4;22065:1;22058:15;22092:4;22089:1;22082:15;22108:131;-1:-1:-1;;;;;;22182:32:1;;22172:43;;22162:71;;22229:1;22226;22219:12

Swarm Source

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