ETH Price: $2,635.56 (-1.03%)

Token

NFT Oasis x Provenonce (NFTO)
 

Overview

Max Total Supply

111 NFTO

Holders

58

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 NFTO
0x58104c6ba9d0ac1b5bd6ecaab37300e6b465a6ab
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:
NFTOasis

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 11 of 13: nftoasis.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract NFTOasis is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;

    address beneficiaryAddress = 0x5CB4025Ba9C43084a1d72e8D1Fd268489cdfC214;

    uint256 private _price = 3.0 ether;

    uint256 private _premint = 3;

    bool public _paused = true;

    constructor(string memory baseURI) ERC721("NFT Oasis x Provenonce", "NFTO")  {
        setBaseURI(baseURI);
        //pre-mint
        for(uint256 i; i < _premint; i++){
            _safeMint( beneficiaryAddress, i );
        }
    }

    function purchase(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num < 21,                              "You can purchase a maximum of 20 NFTs" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );
        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

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

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

    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _tokenId) internal virtual override(ERC721Enumerable) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function setbeneficiaryAddress(address _newBeneficiary) public onlyOwner() {
        beneficiaryAddress = _newBeneficiary;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _all = address(this).balance;
        require(payable(beneficiaryAddress).send(_all));
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 2 of 13: Context.sol
// SPDX-License-Identifier: MIT
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 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 13: ERC721.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 5 of 13: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

File 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

File 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newBeneficiary","type":"address"}],"name":"setbeneficiaryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600c80546001600160a01b031916735cb4025ba9c43084a1d72e8d1fd268489cdfc2141790556729a2241af62c0000600d556003600e55600f805460ff191660011790553480156200005557600080fd5b5060405162002f4738038062002f478339810160408190526200007891620008c9565b604080518082018252601681527f4e4654204f6173697320782050726f76656e6f6e6365000000000000000000006020808301918252835180850190945260048452634e46544f60e01b908401528151919291620000d991600091620007f2565b508051620000ef906001906020840190620007f2565b5050506200010c620001066200015a60201b60201c565b6200015e565b6200011781620001b0565b60005b600e548110156200015257600c546200013d906001600160a01b03168262000218565b80620001498162000baf565b9150506200011a565b505062000bf9565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001ba6200015a565b6001600160a01b0316620001cd6200023a565b6001600160a01b031614620001ff5760405162461bcd60e51b8152600401620001f69062000ad5565b60405180910390fd5b80516200021490600b906020840190620007f2565b5050565b620002148282604051806020016040528060008152506200024960201b60201c565b600a546001600160a01b031690565b62000255838362000288565b62000264600084848462000373565b620002835760405162461bcd60e51b8152600401620001f690620009cd565b505050565b6001600160a01b038216620002b15760405162461bcd60e51b8152600401620001f69062000aa0565b620002bc81620004ac565b15620002dc5760405162461bcd60e51b8152600401620001f69062000a1f565b620002ea60008383620004c9565b6001600160a01b03821660009081526003602052604081208054600192906200031590849062000b0a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000394846001600160a01b0316620004e160201b62000ea91760201c565b15620004a0576001600160a01b03841663150b7a02620003b36200015a565b8786866040518563ffffffff1660e01b8152600401620003d7949392919062000977565b602060405180830381600087803b158015620003f257600080fd5b505af192505050801562000425575060408051601f3d908101601f19168201909252620004229181019062000898565b60015b62000485573d80801562000456576040519150601f19603f3d011682016040523d82523d6000602084013e6200045b565b606091505b5080516200047d5760405162461bcd60e51b8152600401620001f690620009cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004a4565b5060015b949350505050565b6000908152600260205260409020546001600160a01b0316151590565b62000283838383620004e760201b62000eaf1760201c565b3b151590565b620004ff8383836200028360201b620007311760201c565b6001600160a01b0383166200051f5762000519816200058b565b62000545565b816001600160a01b0316836001600160a01b0316146200054557620005458382620005cf565b6001600160a01b03821662000565576200055f816200067c565b62000283565b826001600160a01b0316826001600160a01b03161462000283576200028382826200075a565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001620005e984620007ab60201b6200098e1760201c565b620005f5919062000b25565b60008381526007602052604090205490915080821462000649576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620006909060019062000b25565b60008381526009602052604081205460088054939450909284908110620006c757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110620006f757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200073e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006200077283620007ab60201b6200098e1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620007d65760405162461bcd60e51b8152600401620001f69062000a56565b506001600160a01b031660009081526003602052604090205490565b828054620008009062000b72565b90600052602060002090601f0160209004810192826200082457600085556200086f565b82601f106200083f57805160ff19168380011785556200086f565b828001600101855582156200086f579182015b828111156200086f57825182559160200191906001019062000852565b506200087d92915062000881565b5090565b5b808211156200087d576000815560010162000882565b600060208284031215620008aa578081fd5b81516001600160e01b031981168114620008c2578182fd5b9392505050565b600060208284031215620008db578081fd5b81516001600160401b0380821115620008f2578283fd5b818401915084601f83011262000906578283fd5b8151818111156200091b576200091b62000be3565b604051601f8201601f19168101602001838111828210171562000942576200094262000be3565b6040528181528382016020018710156200095a578485fd5b6200096d82602083016020870162000b3f565b9695505050505050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620009b68160a085016020870162000b3f565b601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111562000b205762000b2062000bcd565b500190565b60008282101562000b3a5762000b3a62000bcd565b500390565b60005b8381101562000b5c57818101518382015260200162000b42565b8381111562000b6c576000848401525b50505050565b60028104600182168062000b8757607f821691505b6020821081141562000ba957634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000bc65762000bc662000bcd565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61233e8062000c096000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f757806398d5fdca11610095578063ca80014411610064578063ca800144146104ce578063e985e9c5146104ee578063efef39a11461050e578063f2fde38b14610521576101c2565b806398d5fdca14610459578063a22cb4651461046e578063b88d4fde1461048e578063c87b56dd146104ae576101c2565b8063856c468f116100d1578063856c468f146103ef5780638da5cb5b1461040f57806391b7f5ed1461042457806395d89b4114610444576101c2565b806370a08231146103b2578063715018a6146103d2578063853828b6146103e7576101c2565b806323b872dd11610164578063438b63001161013e578063438b6300146103255780634f6ccce71461035257806355f804b3146103725780636352211e14610392576101c2565b806323b872dd146102c55780632f745c59146102e557806342842e0e14610305576101c2565b8063081812fc116101a0578063081812fc14610241578063095ea7b31461026e57806316c61ccc1461028e57806318160ddd146102a3576101c2565b806301ffc9a7146101c757806302329a29146101fd57806306fdde031461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611a6d565b610541565b6040516101f49190611bf3565b60405180910390f35b34801561020957600080fd5b5061021d610218366004611a53565b61056e565b005b34801561022b57600080fd5b506102346105c9565b6040516101f49190611bfe565b34801561024d57600080fd5b5061026161025c366004611aeb565b61065b565b6040516101f49190611b5e565b34801561027a57600080fd5b5061021d610289366004611a2a565b61069e565b34801561029a57600080fd5b506101e7610736565b3480156102af57600080fd5b506102b861073f565b6040516101f491906121af565b3480156102d157600080fd5b5061021d6102e036600461194d565b610745565b3480156102f157600080fd5b506102b8610300366004611a2a565b61077d565b34801561031157600080fd5b5061021d61032036600461194d565b6107cf565b34801561033157600080fd5b50610345610340366004611901565b6107ea565b6040516101f49190611baf565b34801561035e57600080fd5b506102b861036d366004611aeb565b6108a8565b34801561037e57600080fd5b5061021d61038d366004611aa5565b610903565b34801561039e57600080fd5b506102616103ad366004611aeb565b610959565b3480156103be57600080fd5b506102b86103cd366004611901565b61098e565b3480156103de57600080fd5b5061021d6109d2565b61021d610a1d565b3480156103fb57600080fd5b5061021d61040a366004611901565b610a91565b34801561041b57600080fd5b50610261610af2565b34801561043057600080fd5b5061021d61043f366004611aeb565b610b01565b34801561045057600080fd5b50610234610b45565b34801561046557600080fd5b506102b8610b54565b34801561047a57600080fd5b5061021d610489366004611a01565b610b5a565b34801561049a57600080fd5b5061021d6104a9366004611988565b610c28565b3480156104ba57600080fd5b506102346104c9366004611aeb565b610c67565b3480156104da57600080fd5b5061021d6104e9366004611a2a565b610cea565b3480156104fa57600080fd5b506101e761050936600461191b565b610d65565b61021d61051c366004611aeb565b610d93565b34801561052d57600080fd5b5061021d61053c366004611901565b610e3b565b60006001600160e01b0319821663780e9d6360e01b1480610566575061056682610f38565b90505b919050565b610576610f78565b6001600160a01b0316610587610af2565b6001600160a01b0316146105b65760405162461bcd60e51b81526004016105ad90611fcd565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600080546105d890612246565b80601f016020809104026020016040519081016040528092919081815260200182805461060490612246565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600061066682610f7c565b6106825760405162461bcd60e51b81526004016105ad90611f81565b506000908152600460205260409020546001600160a01b031690565b60006106a982610959565b9050806001600160a01b0316836001600160a01b031614156106dd5760405162461bcd60e51b81526004016105ad9061209a565b806001600160a01b03166106ef610f78565b6001600160a01b0316148061070b575061070b81610509610f78565b6107275760405162461bcd60e51b81526004016105ad90611e5c565b6107318383610f99565b505050565b600f5460ff1681565b60085490565b610756610750610f78565b82611007565b6107725760405162461bcd60e51b81526004016105ad90612112565b61073183838361108c565b60006107888361098e565b82106107a65760405162461bcd60e51b81526004016105ad90611c7b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61073183838360405180602001604052806000815250610c28565b606060006107f78361098e565b905060008167ffffffffffffffff81111561082257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561084b578160200160208202803683370190505b50905060005b828110156108a057610863858261077d565b82828151811061088357634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061089881612281565b915050610851565b509392505050565b60006108b261073f565b82106108d05760405162461bcd60e51b81526004016105ad90612163565b600882815481106108f157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b61090b610f78565b6001600160a01b031661091c610af2565b6001600160a01b0316146109425760405162461bcd60e51b81526004016105ad90611fcd565b805161095590600b9060208401906117d1565b5050565b6000818152600260205260408120546001600160a01b0316806105665760405162461bcd60e51b81526004016105ad90611f03565b60006001600160a01b0382166109b65760405162461bcd60e51b81526004016105ad90611eb9565b506001600160a01b031660009081526003602052604090205490565b6109da610f78565b6001600160a01b03166109eb610af2565b6001600160a01b031614610a115760405162461bcd60e51b81526004016105ad90611fcd565b610a1b60006111b9565b565b610a25610f78565b6001600160a01b0316610a36610af2565b6001600160a01b031614610a5c5760405162461bcd60e51b81526004016105ad90611fcd565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050610a8e57600080fd5b50565b610a99610f78565b6001600160a01b0316610aaa610af2565b6001600160a01b031614610ad05760405162461bcd60e51b81526004016105ad90611fcd565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031690565b610b09610f78565b6001600160a01b0316610b1a610af2565b6001600160a01b031614610b405760405162461bcd60e51b81526004016105ad90611fcd565b600d55565b6060600180546105d890612246565b600d5490565b610b62610f78565b6001600160a01b0316826001600160a01b03161415610b935760405162461bcd60e51b81526004016105ad90611dd9565b8060056000610ba0610f78565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610be4610f78565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c1c9190611bf3565b60405180910390a35050565b610c39610c33610f78565b83611007565b610c555760405162461bcd60e51b81526004016105ad90612112565b610c618484848461120b565b50505050565b6060610c7282610f7c565b610c8e5760405162461bcd60e51b81526004016105ad9061204b565b6000610c9861123e565b90506000815111610cb85760405180602001604052806000815250610ce3565b80610cc28461124d565b604051602001610cd3929190611b2f565b6040516020818303038152906040525b9392505050565b610cf2610f78565b6001600160a01b0316610d03610af2565b6001600160a01b031614610d295760405162461bcd60e51b81526004016105ad90611fcd565b6000610d3361073f565b905060005b82811015610c6157610d5384610d4e83856121b8565b611368565b80610d5d81612281565b915050610d38565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000610d9d61073f565b600f5490915060ff1615610dc35760405162461bcd60e51b81526004016105ad90611c56565b60158210610de35760405162461bcd60e51b81526004016105ad90611c11565b81600d54610df191906121e4565b341015610e105760405162461bcd60e51b81526004016105ad906120db565b60005b8281101561073157610e2933610d4e83856121b8565b80610e3381612281565b915050610e13565b610e43610f78565b6001600160a01b0316610e54610af2565b6001600160a01b031614610e7a5760405162461bcd60e51b81526004016105ad90611fcd565b6001600160a01b038116610ea05760405162461bcd60e51b81526004016105ad90611d18565b610a8e816111b9565b3b151590565b610eba838383610731565b6001600160a01b038316610ed657610ed181611382565b610ef9565b816001600160a01b0316836001600160a01b031614610ef957610ef983826113c6565b6001600160a01b038216610f1557610f1081611463565b610731565b826001600160a01b0316826001600160a01b03161461073157610731828261153c565b60006001600160e01b031982166380ac58cd60e01b1480610f6957506001600160e01b03198216635b5e139f60e01b145b80610566575061056682611580565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fce82610959565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061101282610f7c565b61102e5760405162461bcd60e51b81526004016105ad90611e10565b600061103983610959565b9050806001600160a01b0316846001600160a01b031614806110745750836001600160a01b03166110698461065b565b6001600160a01b0316145b8061108457506110848185610d65565b949350505050565b826001600160a01b031661109f82610959565b6001600160a01b0316146110c55760405162461bcd60e51b81526004016105ad90612002565b6001600160a01b0382166110eb5760405162461bcd60e51b81526004016105ad90611d95565b6110f6838383611599565b611101600082610f99565b6001600160a01b038316600090815260036020526040812080546001929061112a908490612203565b90915550506001600160a01b03821660009081526003602052604081208054600192906111589084906121b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61121684848461108c565b611222848484846115a4565b610c615760405162461bcd60e51b81526004016105ad90611cc6565b6060600b80546105d890612246565b60608161127257506040805180820190915260018152600360fc1b6020820152610569565b8160005b811561129c578061128681612281565b91506112959050600a836121d0565b9150611276565b60008167ffffffffffffffff8111156112c557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112ef576020820181803683370190505b5090505b841561108457611304600183612203565b9150611311600a8661229c565b61131c9060306121b8565b60f81b81838151811061133f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611361600a866121d0565b94506112f3565b6109558282604051806020016040528060008152506116bf565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016113d38461098e565b6113dd9190612203565b600083815260076020526040902054909150808214611430576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061147590600190612203565b600083815260096020526040812054600880549394509092849081106114ab57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106114da57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061152057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006115478361098e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981166301ffc9a760e01b14919050565b610731838383610eaf565b60006115b8846001600160a01b0316610ea9565b156116b457836001600160a01b031663150b7a026115d4610f78565b8786866040518563ffffffff1660e01b81526004016115f69493929190611b72565b602060405180830381600087803b15801561161057600080fd5b505af1925050508015611640575060408051601f3d908101601f1916820190925261163d91810190611a89565b60015b61169a573d80801561166e576040519150601f19603f3d011682016040523d82523d6000602084013e611673565b606091505b5080516116925760405162461bcd60e51b81526004016105ad90611cc6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611084565b506001949350505050565b6116c983836116f2565b6116d660008484846115a4565b6107315760405162461bcd60e51b81526004016105ad90611cc6565b6001600160a01b0382166117185760405162461bcd60e51b81526004016105ad90611f4c565b61172181610f7c565b1561173e5760405162461bcd60e51b81526004016105ad90611d5e565b61174a60008383611599565b6001600160a01b03821660009081526003602052604081208054600192906117739084906121b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546117dd90612246565b90600052602060002090601f0160209004810192826117ff5760008555611845565b82601f1061181857805160ff1916838001178555611845565b82800160010185558215611845579182015b8281111561184557825182559160200191906001019061182a565b50611851929150611855565b5090565b5b808211156118515760008155600101611856565b600067ffffffffffffffff80841115611885576118856122dc565b604051601f8501601f1916810160200182811182821017156118a9576118a96122dc565b6040528481529150818385018610156118c157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461056957600080fd5b8035801515811461056957600080fd5b600060208284031215611912578081fd5b610ce3826118da565b6000806040838503121561192d578081fd5b611936836118da565b9150611944602084016118da565b90509250929050565b600080600060608486031215611961578081fd5b61196a846118da565b9250611978602085016118da565b9150604084013590509250925092565b6000806000806080858703121561199d578081fd5b6119a6856118da565b93506119b4602086016118da565b925060408501359150606085013567ffffffffffffffff8111156119d6578182fd5b8501601f810187136119e6578182fd5b6119f58782356020840161186a565b91505092959194509250565b60008060408385031215611a13578182fd5b611a1c836118da565b9150611944602084016118f1565b60008060408385031215611a3c578182fd5b611a45836118da565b946020939093013593505050565b600060208284031215611a64578081fd5b610ce3826118f1565b600060208284031215611a7e578081fd5b8135610ce3816122f2565b600060208284031215611a9a578081fd5b8151610ce3816122f2565b600060208284031215611ab6578081fd5b813567ffffffffffffffff811115611acc578182fd5b8201601f81018413611adc578182fd5b6110848482356020840161186a565b600060208284031215611afc578081fd5b5035919050565b60008151808452611b1b81602086016020860161221a565b601f01601f19169290920160200192915050565b60008351611b4181846020880161221a565b835190830190611b5581836020880161221a565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ba590830184611b03565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611be757835183529284019291840191600101611bcb565b50909695505050505050565b901515815260200190565b600060208252610ce36020830184611b03565b60208082526025908201527f596f752063616e2070757263686173652061206d6178696d756d206f66203230604082015264204e46547360d81b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b600082198211156121cb576121cb6122b0565b500190565b6000826121df576121df6122c6565b500490565b60008160001904831182151516156121fe576121fe6122b0565b500290565b600082821015612215576122156122b0565b500390565b60005b8381101561223557818101518382015260200161221d565b83811115610c615750506000910152565b60028104600182168061225a57607f821691505b6020821081141561227b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612295576122956122b0565b5060010190565b6000826122ab576122ab6122c6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8e57600080fdfea26469706673582212201fe019b7aa90bd6c2b5b4b2ad83fc21cb4e518e2e152d16a4a9e1ed7ab1af9e164736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6d696e742e6e66746f617369732e636f2f746f6b656e2f00

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f757806398d5fdca11610095578063ca80014411610064578063ca800144146104ce578063e985e9c5146104ee578063efef39a11461050e578063f2fde38b14610521576101c2565b806398d5fdca14610459578063a22cb4651461046e578063b88d4fde1461048e578063c87b56dd146104ae576101c2565b8063856c468f116100d1578063856c468f146103ef5780638da5cb5b1461040f57806391b7f5ed1461042457806395d89b4114610444576101c2565b806370a08231146103b2578063715018a6146103d2578063853828b6146103e7576101c2565b806323b872dd11610164578063438b63001161013e578063438b6300146103255780634f6ccce71461035257806355f804b3146103725780636352211e14610392576101c2565b806323b872dd146102c55780632f745c59146102e557806342842e0e14610305576101c2565b8063081812fc116101a0578063081812fc14610241578063095ea7b31461026e57806316c61ccc1461028e57806318160ddd146102a3576101c2565b806301ffc9a7146101c757806302329a29146101fd57806306fdde031461021f575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611a6d565b610541565b6040516101f49190611bf3565b60405180910390f35b34801561020957600080fd5b5061021d610218366004611a53565b61056e565b005b34801561022b57600080fd5b506102346105c9565b6040516101f49190611bfe565b34801561024d57600080fd5b5061026161025c366004611aeb565b61065b565b6040516101f49190611b5e565b34801561027a57600080fd5b5061021d610289366004611a2a565b61069e565b34801561029a57600080fd5b506101e7610736565b3480156102af57600080fd5b506102b861073f565b6040516101f491906121af565b3480156102d157600080fd5b5061021d6102e036600461194d565b610745565b3480156102f157600080fd5b506102b8610300366004611a2a565b61077d565b34801561031157600080fd5b5061021d61032036600461194d565b6107cf565b34801561033157600080fd5b50610345610340366004611901565b6107ea565b6040516101f49190611baf565b34801561035e57600080fd5b506102b861036d366004611aeb565b6108a8565b34801561037e57600080fd5b5061021d61038d366004611aa5565b610903565b34801561039e57600080fd5b506102616103ad366004611aeb565b610959565b3480156103be57600080fd5b506102b86103cd366004611901565b61098e565b3480156103de57600080fd5b5061021d6109d2565b61021d610a1d565b3480156103fb57600080fd5b5061021d61040a366004611901565b610a91565b34801561041b57600080fd5b50610261610af2565b34801561043057600080fd5b5061021d61043f366004611aeb565b610b01565b34801561045057600080fd5b50610234610b45565b34801561046557600080fd5b506102b8610b54565b34801561047a57600080fd5b5061021d610489366004611a01565b610b5a565b34801561049a57600080fd5b5061021d6104a9366004611988565b610c28565b3480156104ba57600080fd5b506102346104c9366004611aeb565b610c67565b3480156104da57600080fd5b5061021d6104e9366004611a2a565b610cea565b3480156104fa57600080fd5b506101e761050936600461191b565b610d65565b61021d61051c366004611aeb565b610d93565b34801561052d57600080fd5b5061021d61053c366004611901565b610e3b565b60006001600160e01b0319821663780e9d6360e01b1480610566575061056682610f38565b90505b919050565b610576610f78565b6001600160a01b0316610587610af2565b6001600160a01b0316146105b65760405162461bcd60e51b81526004016105ad90611fcd565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600080546105d890612246565b80601f016020809104026020016040519081016040528092919081815260200182805461060490612246565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600061066682610f7c565b6106825760405162461bcd60e51b81526004016105ad90611f81565b506000908152600460205260409020546001600160a01b031690565b60006106a982610959565b9050806001600160a01b0316836001600160a01b031614156106dd5760405162461bcd60e51b81526004016105ad9061209a565b806001600160a01b03166106ef610f78565b6001600160a01b0316148061070b575061070b81610509610f78565b6107275760405162461bcd60e51b81526004016105ad90611e5c565b6107318383610f99565b505050565b600f5460ff1681565b60085490565b610756610750610f78565b82611007565b6107725760405162461bcd60e51b81526004016105ad90612112565b61073183838361108c565b60006107888361098e565b82106107a65760405162461bcd60e51b81526004016105ad90611c7b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61073183838360405180602001604052806000815250610c28565b606060006107f78361098e565b905060008167ffffffffffffffff81111561082257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561084b578160200160208202803683370190505b50905060005b828110156108a057610863858261077d565b82828151811061088357634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061089881612281565b915050610851565b509392505050565b60006108b261073f565b82106108d05760405162461bcd60e51b81526004016105ad90612163565b600882815481106108f157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b61090b610f78565b6001600160a01b031661091c610af2565b6001600160a01b0316146109425760405162461bcd60e51b81526004016105ad90611fcd565b805161095590600b9060208401906117d1565b5050565b6000818152600260205260408120546001600160a01b0316806105665760405162461bcd60e51b81526004016105ad90611f03565b60006001600160a01b0382166109b65760405162461bcd60e51b81526004016105ad90611eb9565b506001600160a01b031660009081526003602052604090205490565b6109da610f78565b6001600160a01b03166109eb610af2565b6001600160a01b031614610a115760405162461bcd60e51b81526004016105ad90611fcd565b610a1b60006111b9565b565b610a25610f78565b6001600160a01b0316610a36610af2565b6001600160a01b031614610a5c5760405162461bcd60e51b81526004016105ad90611fcd565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050610a8e57600080fd5b50565b610a99610f78565b6001600160a01b0316610aaa610af2565b6001600160a01b031614610ad05760405162461bcd60e51b81526004016105ad90611fcd565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031690565b610b09610f78565b6001600160a01b0316610b1a610af2565b6001600160a01b031614610b405760405162461bcd60e51b81526004016105ad90611fcd565b600d55565b6060600180546105d890612246565b600d5490565b610b62610f78565b6001600160a01b0316826001600160a01b03161415610b935760405162461bcd60e51b81526004016105ad90611dd9565b8060056000610ba0610f78565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610be4610f78565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c1c9190611bf3565b60405180910390a35050565b610c39610c33610f78565b83611007565b610c555760405162461bcd60e51b81526004016105ad90612112565b610c618484848461120b565b50505050565b6060610c7282610f7c565b610c8e5760405162461bcd60e51b81526004016105ad9061204b565b6000610c9861123e565b90506000815111610cb85760405180602001604052806000815250610ce3565b80610cc28461124d565b604051602001610cd3929190611b2f565b6040516020818303038152906040525b9392505050565b610cf2610f78565b6001600160a01b0316610d03610af2565b6001600160a01b031614610d295760405162461bcd60e51b81526004016105ad90611fcd565b6000610d3361073f565b905060005b82811015610c6157610d5384610d4e83856121b8565b611368565b80610d5d81612281565b915050610d38565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000610d9d61073f565b600f5490915060ff1615610dc35760405162461bcd60e51b81526004016105ad90611c56565b60158210610de35760405162461bcd60e51b81526004016105ad90611c11565b81600d54610df191906121e4565b341015610e105760405162461bcd60e51b81526004016105ad906120db565b60005b8281101561073157610e2933610d4e83856121b8565b80610e3381612281565b915050610e13565b610e43610f78565b6001600160a01b0316610e54610af2565b6001600160a01b031614610e7a5760405162461bcd60e51b81526004016105ad90611fcd565b6001600160a01b038116610ea05760405162461bcd60e51b81526004016105ad90611d18565b610a8e816111b9565b3b151590565b610eba838383610731565b6001600160a01b038316610ed657610ed181611382565b610ef9565b816001600160a01b0316836001600160a01b031614610ef957610ef983826113c6565b6001600160a01b038216610f1557610f1081611463565b610731565b826001600160a01b0316826001600160a01b03161461073157610731828261153c565b60006001600160e01b031982166380ac58cd60e01b1480610f6957506001600160e01b03198216635b5e139f60e01b145b80610566575061056682611580565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fce82610959565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061101282610f7c565b61102e5760405162461bcd60e51b81526004016105ad90611e10565b600061103983610959565b9050806001600160a01b0316846001600160a01b031614806110745750836001600160a01b03166110698461065b565b6001600160a01b0316145b8061108457506110848185610d65565b949350505050565b826001600160a01b031661109f82610959565b6001600160a01b0316146110c55760405162461bcd60e51b81526004016105ad90612002565b6001600160a01b0382166110eb5760405162461bcd60e51b81526004016105ad90611d95565b6110f6838383611599565b611101600082610f99565b6001600160a01b038316600090815260036020526040812080546001929061112a908490612203565b90915550506001600160a01b03821660009081526003602052604081208054600192906111589084906121b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61121684848461108c565b611222848484846115a4565b610c615760405162461bcd60e51b81526004016105ad90611cc6565b6060600b80546105d890612246565b60608161127257506040805180820190915260018152600360fc1b6020820152610569565b8160005b811561129c578061128681612281565b91506112959050600a836121d0565b9150611276565b60008167ffffffffffffffff8111156112c557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112ef576020820181803683370190505b5090505b841561108457611304600183612203565b9150611311600a8661229c565b61131c9060306121b8565b60f81b81838151811061133f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611361600a866121d0565b94506112f3565b6109558282604051806020016040528060008152506116bf565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016113d38461098e565b6113dd9190612203565b600083815260076020526040902054909150808214611430576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061147590600190612203565b600083815260096020526040812054600880549394509092849081106114ab57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106114da57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061152057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006115478361098e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981166301ffc9a760e01b14919050565b610731838383610eaf565b60006115b8846001600160a01b0316610ea9565b156116b457836001600160a01b031663150b7a026115d4610f78565b8786866040518563ffffffff1660e01b81526004016115f69493929190611b72565b602060405180830381600087803b15801561161057600080fd5b505af1925050508015611640575060408051601f3d908101601f1916820190925261163d91810190611a89565b60015b61169a573d80801561166e576040519150601f19603f3d011682016040523d82523d6000602084013e611673565b606091505b5080516116925760405162461bcd60e51b81526004016105ad90611cc6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611084565b506001949350505050565b6116c983836116f2565b6116d660008484846115a4565b6107315760405162461bcd60e51b81526004016105ad90611cc6565b6001600160a01b0382166117185760405162461bcd60e51b81526004016105ad90611f4c565b61172181610f7c565b1561173e5760405162461bcd60e51b81526004016105ad90611d5e565b61174a60008383611599565b6001600160a01b03821660009081526003602052604081208054600192906117739084906121b8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546117dd90612246565b90600052602060002090601f0160209004810192826117ff5760008555611845565b82601f1061181857805160ff1916838001178555611845565b82800160010185558215611845579182015b8281111561184557825182559160200191906001019061182a565b50611851929150611855565b5090565b5b808211156118515760008155600101611856565b600067ffffffffffffffff80841115611885576118856122dc565b604051601f8501601f1916810160200182811182821017156118a9576118a96122dc565b6040528481529150818385018610156118c157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461056957600080fd5b8035801515811461056957600080fd5b600060208284031215611912578081fd5b610ce3826118da565b6000806040838503121561192d578081fd5b611936836118da565b9150611944602084016118da565b90509250929050565b600080600060608486031215611961578081fd5b61196a846118da565b9250611978602085016118da565b9150604084013590509250925092565b6000806000806080858703121561199d578081fd5b6119a6856118da565b93506119b4602086016118da565b925060408501359150606085013567ffffffffffffffff8111156119d6578182fd5b8501601f810187136119e6578182fd5b6119f58782356020840161186a565b91505092959194509250565b60008060408385031215611a13578182fd5b611a1c836118da565b9150611944602084016118f1565b60008060408385031215611a3c578182fd5b611a45836118da565b946020939093013593505050565b600060208284031215611a64578081fd5b610ce3826118f1565b600060208284031215611a7e578081fd5b8135610ce3816122f2565b600060208284031215611a9a578081fd5b8151610ce3816122f2565b600060208284031215611ab6578081fd5b813567ffffffffffffffff811115611acc578182fd5b8201601f81018413611adc578182fd5b6110848482356020840161186a565b600060208284031215611afc578081fd5b5035919050565b60008151808452611b1b81602086016020860161221a565b601f01601f19169290920160200192915050565b60008351611b4181846020880161221a565b835190830190611b5581836020880161221a565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ba590830184611b03565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611be757835183529284019291840191600101611bcb565b50909695505050505050565b901515815260200190565b600060208252610ce36020830184611b03565b60208082526025908201527f596f752063616e2070757263686173652061206d6178696d756d206f66203230604082015264204e46547360d81b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b600082198211156121cb576121cb6122b0565b500190565b6000826121df576121df6122c6565b500490565b60008160001904831182151516156121fe576121fe6122b0565b500290565b600082821015612215576122156122b0565b500390565b60005b8381101561223557818101518382015260200161221d565b83811115610c615750506000910152565b60028104600182168061225a57607f821691505b6020821081141561227b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612295576122956122b0565b5060010190565b6000826122ab576122ab6122c6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8e57600080fdfea26469706673582212201fe019b7aa90bd6c2b5b4b2ad83fc21cb4e518e2e152d16a4a9e1ed7ab1af9e164736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6d696e742e6e66746f617369732e636f2f746f6b656e2f00

-----Decoded View---------------
Arg [0] : baseURI (string): https://mint.nftoasis.co/token/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [2] : 68747470733a2f2f6d696e742e6e66746f617369732e636f2f746f6b656e2f00


Deployed Bytecode Sourcemap

115:2518:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;908:222:4;;;;;;;;;;-1:-1:-1;908:222:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2261:72:12;;;;;;;;;;-1:-1:-1;2261:72:12;;;;;:::i;:::-;;:::i;:::-;;2348:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3859:217::-;;;;;;;;;;-1:-1:-1;3859:217:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3397:401::-;;;;;;;;;;-1:-1:-1;3397:401:3;;;;;:::i;:::-;;:::i;382:26:12:-;;;;;;;;;;;;;:::i;1533:111:4:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4723:330:3:-;;;;;;;;;;-1:-1:-1;4723:330:3;;;;;:::i;:::-;;:::i;1209:253:4:-;;;;;;;;;;-1:-1:-1;1209:253:4;;;;;:::i;:::-;;:::i;5119:179:3:-;;;;;;;;;;-1:-1:-1;5119:179:3;;;;;:::i;:::-;;:::i;1109:333:12:-;;;;;;;;;;-1:-1:-1;1109:333:12;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1716:230:4:-;;;;;;;;;;-1:-1:-1;1716:230:4;;;;;:::i;:::-;;:::i;1566:100:12:-;;;;;;;;;;-1:-1:-1;1566:100:12;;;;;:::i;:::-;;:::i;2051:235:3:-;;;;;;;;;;-1:-1:-1;2051:235:3;;;;;:::i;:::-;;:::i;1789:205::-;;;;;;;;;;-1:-1:-1;1789:205:3;;;;;:::i;:::-;;:::i;1597:92:10:-;;;;;;;;;;;;;:::i;2473:158:12:-;;;:::i;2339:128::-;;;;;;;;;;-1:-1:-1;2339:128:12;;;;;:::i;:::-;;:::i;965:85:10:-;;;;;;;;;;;;;:::i;1672:91:12:-;;;;;;;;;;-1:-1:-1;1672:91:12;;;;;:::i;:::-;;:::i;2510:102:3:-;;;;;;;;;;;;;:::i;1769:79:12:-;;;;;;;;;;;;;:::i;4143:290:3:-;;;;;;;;;;-1:-1:-1;4143:290:3;;;;;:::i;:::-;;:::i;5364:320::-;;;;;;;;;;-1:-1:-1;5364:320:3;;;;;:::i;:::-;;:::i;2678:329::-;;;;;;;;;;-1:-1:-1;2678:329:3;;;;;:::i;:::-;;:::i;1854:210:12:-;;;;;;;;;;-1:-1:-1;1854:210:12;;;;;:::i;:::-;;:::i;4499:162:3:-;;;;;;;;;;-1:-1:-1;4499:162:3;;;;;:::i;:::-;;:::i;654:449:12:-;;;;;;:::i;:::-;;:::i;1838:189:10:-;;;;;;;;;;-1:-1:-1;1838:189:10;;;;;:::i;:::-;;:::i;908:222:4:-;1010:4;-1:-1:-1;;;;;;1033:50:4;;-1:-1:-1;;;1033:50:4;;:90;;;1087:36;1111:11;1087:23;:36::i;:::-;1026:97;;908:222;;;;:::o;2261:72:12:-;1188:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1177:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1177:23:10;;1169:68;;;;-1:-1:-1;;;1169:68:10;;;;;;;:::i;:::-;;;;;;;;;2313:7:12::1;:13:::0;;-1:-1:-1;;2313:13:12::1;::::0;::::1;;::::0;;;::::1;::::0;;2261:72::o;2348:98:3:-;2402:13;2434:5;2427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348:98;:::o;3859:217::-;3935:7;3962:16;3970:7;3962;:16::i;:::-;3954:73;;;;-1:-1:-1;;;3954:73:3;;;;;;;:::i;:::-;-1:-1:-1;4045:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4045:24:3;;3859:217::o;3397:401::-;3477:13;3493:23;3508:7;3493:14;:23::i;:::-;3477:39;;3540:5;-1:-1:-1;;;;;3534:11:3;:2;-1:-1:-1;;;;;3534:11:3;;;3526:57;;;;-1:-1:-1;;;3526:57:3;;;;;;;:::i;:::-;3631:5;-1:-1:-1;;;;;3615:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3615:21:3;;:62;;;;3640:37;3657:5;3664:12;:10;:12::i;3640:37::-;3594:165;;;;-1:-1:-1;;;3594:165:3;;;;;;;:::i;:::-;3770:21;3779:2;3783:7;3770:8;:21::i;:::-;3397:401;;;:::o;382:26:12:-;;;;;;:::o;1533:111:4:-;1620:10;:17;1533:111;:::o;4723:330:3:-;4912:41;4931:12;:10;:12::i;:::-;4945:7;4912:18;:41::i;:::-;4904:103;;;;-1:-1:-1;;;4904:103:3;;;;;;;:::i;:::-;5018:28;5028:4;5034:2;5038:7;5018:9;:28::i;1209:253:4:-;1306:7;1341:23;1358:5;1341:16;:23::i;:::-;1333:5;:31;1325:87;;;;-1:-1:-1;;;1325:87:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1429:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1209:253::o;5119:179:3:-;5252:39;5269:4;5275:2;5279:7;5252:39;;;;;;;;;;;;:16;:39::i;1109:333:12:-;1168:16;1196:18;1217:17;1227:6;1217:9;:17::i;:::-;1196:38;;1244:25;1286:10;1272:25;;;;;;-1:-1:-1;;;1272:25:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1272:25:12;;1244:53;;1311:9;1307:104;1326:10;1322:1;:14;1307:104;;;1370:30;1390:6;1398:1;1370:19;:30::i;:::-;1356:8;1365:1;1356:11;;;;;;-1:-1:-1;;;1356:11:12;;;;;;;;;;;;;;;;;;:44;1338:3;;;;:::i;:::-;;;;1307:104;;;-1:-1:-1;1427:8:12;1109:333;-1:-1:-1;;;1109:333:12:o;1716:230:4:-;1791:7;1826:30;:28;:30::i;:::-;1818:5;:38;1810:95;;;;-1:-1:-1;;;1810:95:4;;;;;;;:::i;:::-;1922:10;1933:5;1922:17;;;;;;-1:-1:-1;;;1922:17:4;;;;;;;;;;;;;;;;;1915:24;;1716:230;;;:::o;1566:100:12:-;1188:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1177:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1177:23:10;;1169:68;;;;-1:-1:-1;;;1169:68:10;;;;;;;:::i;:::-;1636:23:12;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1566:100:::0;:::o;2051:235:3:-;2123:7;2158:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2158:16:3;2192:19;2184:73;;;;-1:-1:-1;;;2184:73:3;;;;;;;:::i;1789:205::-;1861:7;-1:-1:-1;;;;;1888:19:3;;1880:74;;;;-1:-1:-1;;;1880:74:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1971:16:3;;;;;:9;:16;;;;;;;1789:205::o;1597:92:10:-;1188:12;:10;:12::i;:::-;-1:-1:-1;;;;;1177:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1177:23:10;;1169:68;;;;-1:-1:-1;;;1169:68:10;;;;;;;:::i;:::-;1661:21:::1;1679:1;1661:9;:21::i;:::-;1597:92::o:0;2473:158:12:-;1188:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1177:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1177:23:10;;1169:68;;;;-1:-1:-1;;;1169:68:10;;;;;;;:::i;:::-;2593:18:12::1;::::0;2585:38:::1;::::0;2546:21:::1;::::0;-1:-1:-1;;;;;2593:18:12::1;::::0;2585:38;::::1;;;::::0;2546:21;;2531:12:::1;2585:38:::0;2531:12;2585:38;2546:21;2593:18;2585:38;::::1;;;;;;2577:47;;;::::0;::::1;;1247:1:10;2473:158:12:o:0;2339:128::-;1188:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1177:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1177:23:10;;1169:68;;;;-1:-1:-1;;;1169:68:10;;;;;;;:::i;:::-;2424:18:12::1;:36:::0;;-1:-1:-1;;;;;;2424:36:12::1;-1:-1:-1::0;;;;;2424:36:12;;;::::1;::::0;;;::::1;::::0;;2339:128::o;965:85:10:-;1037:6;;-1:-1:-1;;;;;1037:6:10;965:85;:::o;1672:91:12:-;1188:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1177:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1177:23:10;;1169:68;;;;-1:-1:-1;;;1169:68:10;;;;;;;:::i;:::-;1738:6:12::1;:18:::0;1672:91::o;2510:102:3:-;2566:13;2598:7;2591:14;;;;;:::i;1769:79:12:-;1835:6;;1769:79;:::o;4143:290:3:-;4257:12;:10;:12::i;:::-;-1:-1:-1;;;;;4245:24:3;:8;-1:-1:-1;;;;;4245:24:3;;;4237:62;;;;-1:-1:-1;;;4237:62:3;;;;;;;:::i;:::-;4355:8;4310:18;:32;4329:12;:10;:12::i;:::-;-1:-1:-1;;;;;4310:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;4310:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4310:53:3;;;;;;;;;;;4393:12;:10;:12::i;:::-;-1:-1:-1;;;;;4378:48:3;;4417:8;4378:48;;;;;;:::i;:::-;;;;;;;;4143:290;;:::o;5364:320::-;5533:41;5552:12;:10;:12::i;:::-;5566:7;5533:18;:41::i;:::-;5525:103;;;;-1:-1:-1;;;5525:103:3;;;;;;;:::i;:::-;5638:39;5652:4;5658:2;5662:7;5671:5;5638:13;:39::i;:::-;5364:320;;;;:::o;2678:329::-;2751:13;2784:16;2792:7;2784;:16::i;:::-;2776:76;;;;-1:-1:-1;;;2776:76:3;;;;;;;:::i;:::-;2863:21;2887:10;:8;:10::i;:::-;2863:34;;2938:1;2920:7;2914:21;:25;:86;;;;;;;;;;;;;;;;;2966:7;2975:18;:7;:16;:18::i;:::-;2949:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2914:86;2907:93;2678:329;-1:-1:-1;;;2678:329:3:o;1854:210:12:-;1188:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1177:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1177:23:10;;1169:68;;;;-1:-1:-1;;;1169:68:10;;;;;;;:::i;:::-;1933:14:12::1;1950:13;:11;:13::i;:::-;1933:30;;1977:9;1973:85;1992:7;1988:1;:11;1973:85;;;2019:28;2030:3:::0;2035:10:::1;2044:1:::0;2035:6;:10:::1;:::i;:::-;2019:9;:28::i;:::-;2001:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1973:85;;4499:162:3::0;-1:-1:-1;;;;;4619:25:3;;;4596:4;4619:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4499:162::o;654:449:12:-;710:14;727:13;:11;:13::i;:::-;760:7;;710:30;;-1:-1:-1;760:7:12;;759:8;750:63;;;;-1:-1:-1;;;750:63:12;;;;;;;:::i;:::-;838:2;832:3;:8;823:89;;;;-1:-1:-1;;;823:89:12;;;;;;;:::i;:::-;953:3;944:6;;:12;;;;:::i;:::-;931:9;:25;;922:77;;;;-1:-1:-1;;;922:77:12;;;;;;;:::i;:::-;1013:9;1009:88;1028:3;1024:1;:7;1009:88;;;1051:35;1062:10;1074;1083:1;1074:6;:10;:::i;1051:35::-;1033:3;;;;:::i;:::-;;;;1009:88;;1838:189:10;1188:12;:10;:12::i;:::-;-1:-1:-1;;;;;1177:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1177:23:10;;1169:68;;;;-1:-1:-1;;;1169:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1926:22:10;::::1;1918:73;;;;-1:-1:-1::0;;;1918:73:10::1;;;;;;;:::i;:::-;2001:19;2011:8;2001:9;:19::i;717:377:0:-:0;1033:20;1079:8;;;717:377::o;2542:572:4:-;2681:45;2708:4;2714:2;2718:7;2681:26;:45::i;:::-;-1:-1:-1;;;;;2741:18:4;;2737:183;;2775:40;2807:7;2775:31;:40::i;:::-;2737:183;;;2844:2;-1:-1:-1;;;;;2836:10:4;:4;-1:-1:-1;;;;;2836:10:4;;2832:88;;2862:47;2895:4;2901:7;2862:32;:47::i;:::-;-1:-1:-1;;;;;2933:16:4;;2929:179;;2965:45;3002:7;2965:36;:45::i;:::-;2929:179;;;3037:4;-1:-1:-1;;;;;3031:10:4;:2;-1:-1:-1;;;;;3031:10:4;;3027:81;;3057:40;3085:2;3089:7;3057:27;:40::i;1430:300:3:-;1532:4;-1:-1:-1;;;;;;1567:40:3;;-1:-1:-1;;;1567:40:3;;:104;;-1:-1:-1;;;;;;;1623:48:3;;-1:-1:-1;;;1623:48:3;1567:104;:156;;;;1687:36;1711:11;1687:23;:36::i;585:96:1:-;664:10;585:96;:::o;7156:125:3:-;7221:4;7244:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7244:16:3;:30;;;7156:125::o;11007:171::-;11081:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11081:29:3;-1:-1:-1;;;;;11081:29:3;;;;;;;;:24;;11134:23;11081:24;11134:14;:23::i;:::-;-1:-1:-1;;;;;11125:46:3;;;;;;;;;;;11007:171;;:::o;7439:344::-;7532:4;7556:16;7564:7;7556;:16::i;:::-;7548:73;;;;-1:-1:-1;;;7548:73:3;;;;;;;:::i;:::-;7631:13;7647:23;7662:7;7647:14;:23::i;:::-;7631:39;;7699:5;-1:-1:-1;;;;;7688:16:3;:7;-1:-1:-1;;;;;7688:16:3;;:51;;;;7732:7;-1:-1:-1;;;;;7708:31:3;:20;7720:7;7708:11;:20::i;:::-;-1:-1:-1;;;;;7708:31:3;;7688:51;:87;;;;7743:32;7760:5;7767:7;7743:16;:32::i;:::-;7680:96;7439:344;-1:-1:-1;;;;7439:344:3:o;10336:560::-;10490:4;-1:-1:-1;;;;;10463:31:3;:23;10478:7;10463:14;:23::i;:::-;-1:-1:-1;;;;;10463:31:3;;10455:85;;;;-1:-1:-1;;;10455:85:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10558:16:3;;10550:65;;;;-1:-1:-1;;;10550:65:3;;;;;;;:::i;:::-;10626:39;10647:4;10653:2;10657:7;10626:20;:39::i;:::-;10727:29;10744:1;10748:7;10727:8;:29::i;:::-;-1:-1:-1;;;;;10767:15:3;;;;;;:9;:15;;;;;:20;;10786:1;;10767:15;:20;;10786:1;;10767:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10797:13:3;;;;;;:9;:13;;;;;:18;;10814:1;;10797:13;:18;;10814:1;;10797:18;:::i;:::-;;;;-1:-1:-1;;10825:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10825:21:3;-1:-1:-1;;;;;10825:21:3;;;;;;;;;10862:27;;10825:16;;10862:27;;;;;;;10336:560;;;:::o;2033:169:10:-;2107:6;;;-1:-1:-1;;;;;2123:17:10;;;-1:-1:-1;;;;;;2123:17:10;;;;;;;2155:40;;2107:6;;;2123:17;2107:6;;2155:40;;2088:16;;2155:40;2033:169;;:::o;6546:307:3:-;6697:28;6707:4;6713:2;6717:7;6697:9;:28::i;:::-;6743:48;6766:4;6772:2;6776:7;6785:5;6743:22;:48::i;:::-;6735:111;;;;-1:-1:-1;;;6735:111:3;;;;;;;:::i;1448:112:12:-;1508:13;1540;1533:20;;;;;:::i;275:703:11:-;331:13;548:10;544:51;;-1:-1:-1;574:10:11;;;;;;;;;;;;-1:-1:-1;;;574:10:11;;;;;;544:51;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:11;;-1:-1:-1;720:2:11;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:11;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:11;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:11;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:11;;;;;;;;-1:-1:-1;919:11:11;928:2;919:11;;:::i;:::-;;;791:150;;8113:108:3;8188:26;8198:2;8202:7;8188:26;;;;;;;;;;;;:9;:26::i;3820:161:4:-;3923:10;:17;;3896:24;;;;:15;:24;;;;;:44;;;3950:24;;;;;;;;;;;;3820:161::o;4598:970::-;4860:22;4910:1;4885:22;4902:4;4885:16;:22::i;:::-;:26;;;;:::i;:::-;4921:18;4942:26;;;:17;:26;;;;;;4860:51;;-1:-1:-1;5072:28:4;;;5068:323;;-1:-1:-1;;;;;5138:18:4;;5116:19;5138:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5187:30;;;;;;:44;;;5303:30;;:17;:30;;;;;:43;;;5068:323;-1:-1:-1;5484:26:4;;;;:17;:26;;;;;;;;5477:33;;;-1:-1:-1;;;;;5527:18:4;;;;;:12;:18;;;;;:34;;;;;;;5520:41;4598:970::o;5856:1061::-;6130:10;:17;6105:22;;6130:21;;6150:1;;6130:21;:::i;:::-;6161:18;6182:24;;;:15;:24;;;;;;6550:10;:26;;6105:46;;-1:-1:-1;6182:24:4;;6105:46;;6550:26;;;;-1:-1:-1;;;6550:26:4;;;;;;;;;;;;;;;;;6528:48;;6612:11;6587:10;6598;6587:22;;;;;;-1:-1:-1;;;6587:22:4;;;;;;;;;;;;;;;;;;;;:36;;;;6691:28;;;:15;:28;;;;;;;:41;;;6860:24;;;;;6853:31;6894:10;:16;;;;;-1:-1:-1;;;6894:16:4;;;;;;;;;;;;;;;;;;;;;;;;;;5856:1061;;;;:::o;3408:217::-;3492:14;3509:20;3526:2;3509:16;:20::i;:::-;-1:-1:-1;;;;;3539:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3583:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3408:217:4:o;762:155:2:-;-1:-1:-1;;;;;;870:40:2;;-1:-1:-1;;;870:40:2;762:155;;;:::o;2070:185:12:-;2200:48;2227:5;2234:3;2239:8;2200:26;:48::i;11731:782:3:-;11881:4;11901:15;:2;-1:-1:-1;;;;;11901:13:3;;:15::i;:::-;11897:610;;;11952:2;-1:-1:-1;;;;;11936:36:3;;11973:12;:10;:12::i;:::-;11987:4;11993:7;12002:5;11936:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11936:72:3;;;;;;;;-1:-1:-1;;11936:72:3;;;;;;;;;;;;:::i;:::-;;;11932:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12179:13:3;;12175:266;;12221:60;;-1:-1:-1;;;12221:60:3;;;;;;;:::i;12175:266::-;12393:6;12387:13;12378:6;12374:2;12370:15;12363:38;11932:523;-1:-1:-1;;;;;;12058:55:3;-1:-1:-1;;;12058:55:3;;-1:-1:-1;12051:62:3;;11897:610;-1:-1:-1;12492:4:3;11731:782;;;;;;:::o;8442:311::-;8567:18;8573:2;8577:7;8567:5;:18::i;:::-;8616:54;8647:1;8651:2;8655:7;8664:5;8616:22;:54::i;:::-;8595:151;;;;-1:-1:-1;;;8595:151:3;;;;;;;:::i;9075:372::-;-1:-1:-1;;;;;9154:16:3;;9146:61;;;;-1:-1:-1;;;9146:61:3;;;;;;;:::i;:::-;9226:16;9234:7;9226;:16::i;:::-;9225:17;9217:58;;;;-1:-1:-1;;;9217:58:3;;;;;;;:::i;:::-;9286:45;9315:1;9319:2;9323:7;9286:20;:45::i;:::-;-1:-1:-1;;;;;9342:13:3;;;;;;:9;:13;;;;;:18;;9359:1;;9342:13;:18;;9359:1;;9342:18;:::i;:::-;;;;-1:-1:-1;;9370:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9370:21:3;-1:-1:-1;;;;;9370:21:3;;;;;;;;9407:33;;9370:16;;;9407:33;;9370:16;;9407:33;9075:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:13;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:13;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:13;473:16;;;470:25;-1:-1:-1;467:2:13;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:13;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:13;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:13:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:13;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:13;;4335:120;-1:-1:-1;4335:120:13:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:13;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:13:o;4724:470::-;;4941:6;4935:13;4957:53;5003:6;4998:3;4991:4;4983:6;4979:17;4957:53;:::i;:::-;5073:13;;5032:16;;;;5095:57;5073:13;5032:16;5129:4;5117:17;;5095:57;:::i;:::-;5168:20;;4911:283;-1:-1:-1;;;;4911:283:13:o;5199:203::-;-1:-1:-1;;;;;5363:32:13;;;;5345:51;;5333:2;5318:18;;5300:102::o;5407:490::-;-1:-1:-1;;;;;5676:15:13;;;5658:34;;5728:15;;5723:2;5708:18;;5701:43;5775:2;5760:18;;5753:34;;;5823:3;5818:2;5803:18;;5796:31;;;5407:490;;5844:47;;5871:19;;5863:6;5844:47;:::i;:::-;5836:55;5610:287;-1:-1:-1;;;;;;5610:287:13:o;5902:635::-;6073:2;6125:21;;;6195:13;;6098:18;;;6217:22;;;5902:635;;6073:2;6296:15;;;;6270:2;6255:18;;;5902:635;6342:169;6356:6;6353:1;6350:13;6342:169;;;6417:13;;6405:26;;6486:15;;;;6451:12;;;;6378:1;6371:9;6342:169;;;-1:-1:-1;6528:3:13;;6053:484;-1:-1:-1;;;;;;6053:484:13:o;6542:187::-;6707:14;;6700:22;6682:41;;6670:2;6655:18;;6637:92::o;6734:221::-;;6883:2;6872:9;6865:21;6903:46;6945:2;6934:9;6930:18;6922:6;6903:46;:::i;6960:401::-;7162:2;7144:21;;;7201:2;7181:18;;;7174:30;7240:34;7235:2;7220:18;;7213:62;-1:-1:-1;;;7306:2:13;7291:18;;7284:35;7351:3;7336:19;;7134:227::o;7366:335::-;7568:2;7550:21;;;7607:2;7587:18;;;7580:30;-1:-1:-1;;;7641:2:13;7626:18;;7619:41;7692:2;7677:18;;7540:161::o;7706:407::-;7908:2;7890:21;;;7947:2;7927:18;;;7920:30;7986:34;7981:2;7966:18;;7959:62;-1:-1:-1;;;8052:2:13;8037:18;;8030:41;8103:3;8088:19;;7880:233::o;8118:414::-;8320:2;8302:21;;;8359:2;8339:18;;;8332:30;8398:34;8393:2;8378:18;;8371:62;-1:-1:-1;;;8464:2:13;8449:18;;8442:48;8522:3;8507:19;;8292:240::o;8537:402::-;8739:2;8721:21;;;8778:2;8758:18;;;8751:30;8817:34;8812:2;8797:18;;8790:62;-1:-1:-1;;;8883:2:13;8868:18;;8861:36;8929:3;8914:19;;8711:228::o;8944:352::-;9146:2;9128:21;;;9185:2;9165:18;;;9158:30;9224;9219:2;9204:18;;9197:58;9287:2;9272:18;;9118:178::o;9301:400::-;9503:2;9485:21;;;9542:2;9522:18;;;9515:30;9581:34;9576:2;9561:18;;9554:62;-1:-1:-1;;;9647:2:13;9632:18;;9625:34;9691:3;9676:19;;9475:226::o;9706:349::-;9908:2;9890:21;;;9947:2;9927:18;;;9920:30;9986:27;9981:2;9966:18;;9959:55;10046:2;10031:18;;9880:175::o;10060:408::-;10262:2;10244:21;;;10301:2;10281:18;;;10274:30;10340:34;10335:2;10320:18;;10313:62;-1:-1:-1;;;10406:2:13;10391:18;;10384:42;10458:3;10443:19;;10234:234::o;10473:420::-;10675:2;10657:21;;;10714:2;10694:18;;;10687:30;10753:34;10748:2;10733:18;;10726:62;10824:26;10819:2;10804:18;;10797:54;10883:3;10868:19;;10647:246::o;10898:406::-;11100:2;11082:21;;;11139:2;11119:18;;;11112:30;11178:34;11173:2;11158:18;;11151:62;-1:-1:-1;;;11244:2:13;11229:18;;11222:40;11294:3;11279:19;;11072:232::o;11309:405::-;11511:2;11493:21;;;11550:2;11530:18;;;11523:30;11589:34;11584:2;11569:18;;11562:62;-1:-1:-1;;;11655:2:13;11640:18;;11633:39;11704:3;11689:19;;11483:231::o;11719:356::-;11921:2;11903:21;;;11940:18;;;11933:30;11999:34;11994:2;11979:18;;11972:62;12066:2;12051:18;;11893:182::o;12080:408::-;12282:2;12264:21;;;12321:2;12301:18;;;12294:30;12360:34;12355:2;12340:18;;12333:62;-1:-1:-1;;;12426:2:13;12411:18;;12404:42;12478:3;12463:19;;12254:234::o;12493:356::-;12695:2;12677:21;;;12714:18;;;12707:30;12773:34;12768:2;12753:18;;12746:62;12840:2;12825:18;;12667:182::o;12854:405::-;13056:2;13038:21;;;13095:2;13075:18;;;13068:30;13134:34;13129:2;13114:18;;13107:62;-1:-1:-1;;;13200:2:13;13185:18;;13178:39;13249:3;13234:19;;13028:231::o;13264:411::-;13466:2;13448:21;;;13505:2;13485:18;;;13478:30;13544:34;13539:2;13524:18;;13517:62;-1:-1:-1;;;13610:2:13;13595:18;;13588:45;13665:3;13650:19;;13438:237::o;13680:397::-;13882:2;13864:21;;;13921:2;13901:18;;;13894:30;13960:34;13955:2;13940:18;;13933:62;-1:-1:-1;;;14026:2:13;14011:18;;14004:31;14067:3;14052:19;;13854:223::o;14082:349::-;14284:2;14266:21;;;14323:2;14303:18;;;14296:30;14362:27;14357:2;14342:18;;14335:55;14422:2;14407:18;;14256:175::o;14436:413::-;14638:2;14620:21;;;14677:2;14657:18;;;14650:30;14716:34;14711:2;14696:18;;14689:62;-1:-1:-1;;;14782:2:13;14767:18;;14760:47;14839:3;14824:19;;14610:239::o;14854:408::-;15056:2;15038:21;;;15095:2;15075:18;;;15068:30;15134:34;15129:2;15114:18;;15107:62;-1:-1:-1;;;15200:2:13;15185:18;;15178:42;15252:3;15237:19;;15028:234::o;15267:177::-;15413:25;;;15401:2;15386:18;;15368:76::o;15449:128::-;;15520:1;15516:6;15513:1;15510:13;15507:2;;;15526:18;;:::i;:::-;-1:-1:-1;15562:9:13;;15497:80::o;15582:120::-;;15648:1;15638:2;;15653:18;;:::i;:::-;-1:-1:-1;15687:9:13;;15628:74::o;15707:168::-;;15813:1;15809;15805:6;15801:14;15798:1;15795:21;15790:1;15783:9;15776:17;15772:45;15769:2;;;15820:18;;:::i;:::-;-1:-1:-1;15860:9:13;;15759:116::o;15880:125::-;;15948:1;15945;15942:8;15939:2;;;15953:18;;:::i;:::-;-1:-1:-1;15990:9:13;;15929:76::o;16010:258::-;16082:1;16092:113;16106:6;16103:1;16100:13;16092:113;;;16182:11;;;16176:18;16163:11;;;16156:39;16128:2;16121:10;16092:113;;;16223:6;16220:1;16217:13;16214:2;;;-1:-1:-1;;16258:1:13;16240:16;;16233:27;16063:205::o;16273:380::-;16358:1;16348:12;;16405:1;16395:12;;;16416:2;;16470:4;16462:6;16458:17;16448:27;;16416:2;16523;16515:6;16512:14;16492:18;16489:38;16486:2;;;16569:10;16564:3;16560:20;16557:1;16550:31;16604:4;16601:1;16594:15;16632:4;16629:1;16622:15;16486:2;;16328:325;;;:::o;16658:135::-;;-1:-1:-1;;16718:17:13;;16715:2;;;16738:18;;:::i;:::-;-1:-1:-1;16785:1:13;16774:13;;16705:88::o;16798:112::-;;16856:1;16846:2;;16861:18;;:::i;:::-;-1:-1:-1;16895:9:13;;16836:74::o;16915:127::-;16976:10;16971:3;16967:20;16964:1;16957:31;17007:4;17004:1;16997:15;17031:4;17028:1;17021:15;17047:127;17108:10;17103:3;17099:20;17096:1;17089:31;17139:4;17136:1;17129:15;17163:4;17160:1;17153:15;17179:127;17240:10;17235:3;17231:20;17228:1;17221:31;17271:4;17268:1;17261:15;17295:4;17292:1;17285:15;17311:133;-1:-1:-1;;;;;;17387:32:13;;17377:43;;17367:2;;17434:1;17431;17424:12

Swarm Source

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