ETH Price: $3,271.92 (-2.49%)

Token

Picatar (PICA)
 

Overview

Max Total Supply

77 PICA

Holders

46

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nftsir.eth
Balance
1 PICA
0xb5c1bbd13f127Bd1807d6434bB016ec93e6CB107
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Picatar is a collection of 10,000 unique Abstract Modern Art NFT art pieces randomly generated & stored on the Ethereum blockchain. Each Picatar art piece is generated with a completely unique combination of 396 traits.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SmartContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-08
*/

// SPDX-License-Identifier: GPL-3.0
// v2.1.0.0

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// Picatar
// v2.0.0.0

pragma solidity ^0.8.0;

contract SmartContract is ERC721Enumerable, Ownable {

  using Strings for uint256;

  string public baseURI;
  uint256 public cost = 0.06 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 20;
  bool public paused = false;

  constructor(
    string memory _initBaseURI
  ) ERC721("Picatar", "PICA") {
     
    setBaseURI(_initBaseURI);
    mint(msg.sender, 20);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
  
  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused, "Picatar: Minting process is paused!");
    require(_mintAmount > 0, "Picatar: Minting amount invalid!");
    require(_mintAmount <= maxMintAmount, "Picatar: Minting more than max minting quantity!");
    require(supply + _mintAmount <= maxSupply, "Picatar: Minting quantity is more than stock quantity!");

    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount, "Picatar: Ethereum sent is not correct!");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i);
    }
  }

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

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266d529ae9e860000600c55612710600d556014600e55600f805460ff191690553480156200003157600080fd5b506040516200305338038062003053833981016040819052620000549162000b89565b60408051808201825260078152662834b1b0ba30b960c91b6020808301918252835180850190945260048452635049434160e01b9084015281519192916200009f9160009162000ab0565b508051620000b590600190602084019062000ab0565b505050620000d2620000cc620000f160201b60201c565b620000f5565b620000dd8162000147565b620000ea336014620001c0565b5062000dd0565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001bc90600b90602084019062000ab0565b5050565b6000620001cc60085490565b600f5490915060ff1615620002305760405162461bcd60e51b815260206004820152602360248201527f506963617461723a204d696e74696e672070726f63657373206973207061757360448201526265642160e81b60648201526084016200019e565b60008211620002825760405162461bcd60e51b815260206004820181905260248201527f506963617461723a204d696e74696e6720616d6f756e7420696e76616c69642160448201526064016200019e565b600e54821115620002ef5760405162461bcd60e51b815260206004820152603060248201527f506963617461723a204d696e74696e67206d6f7265207468616e206d6178206d60448201526f696e74696e67207175616e746974792160801b60648201526084016200019e565b600d54620002fe838362000c97565b1115620003745760405162461bcd60e51b815260206004820152603660248201527f506963617461723a204d696e74696e67207175616e74697479206973206d6f7260448201527f65207468616e2073746f636b207175616e74697479210000000000000000000060648201526084016200019e565b600a546001600160a01b03163314620003f75781600c5462000397919062000cb2565b341015620003f75760405162461bcd60e51b815260206004820152602660248201527f506963617461723a20457468657265756d2073656e74206973206e6f7420636f60448201526572726563742160d01b60648201526084016200019e565b60015b8281116200042e57620004198462000413838562000c97565b62000434565b80620004258162000d5a565b915050620003fa565b50505050565b620001bc8282604051806020016040528060008152506200045660201b60201c565b620004628383620004ce565b62000471600084848462000624565b620004c95760405162461bcd60e51b815260206004820152603260248201526000805160206200303383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019e565b505050565b6001600160a01b038216620005265760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200019e565b6000818152600260205260409020546001600160a01b0316156200058d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200019e565b6200059b600083836200078d565b6001600160a01b0382166000908152600360205260408120805460019290620005c690849062000c97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000645846001600160a01b03166200086960201b620011a61760201c565b156200078157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200067f90339089908890889060040162000c41565b602060405180830381600087803b1580156200069a57600080fd5b505af1925050508015620006cd575060408051601f3d908101601f19168201909252620006ca9181019062000b56565b60015b62000766573d808015620006fe576040519150601f19603f3d011682016040523d82523d6000602084013e62000703565b606091505b5080516200075e5760405162461bcd60e51b815260206004820152603260248201526000805160206200303383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000785565b5060015b949350505050565b620007a5838383620004c960201b620008391760201c565b6001600160a01b0383166200080357620007fd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000829565b816001600160a01b0316836001600160a01b03161462000829576200082983826200086f565b6001600160a01b0382166200084357620004c9816200091c565b826001600160a01b0316826001600160a01b031614620004c957620004c98282620009d6565b3b151590565b60006001620008898462000a2760201b62000e6f1760201c565b62000895919062000cd4565b600083815260076020526040902054909150808214620008e9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620009309060019062000cd4565b600083815260096020526040812054600880549394509092849081106200095b576200095b62000da4565b9060005260206000200154905080600883815481106200097f576200097f62000da4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620009ba57620009ba62000d8e565b6001900381819060005260206000200160009055905550505050565b6000620009ee8362000a2760201b62000e6f1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000a945760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016200019e565b506001600160a01b031660009081526003602052604090205490565b82805462000abe9062000d1d565b90600052602060002090601f01602090048101928262000ae2576000855562000b2d565b82601f1062000afd57805160ff191683800117855562000b2d565b8280016001018555821562000b2d579182015b8281111562000b2d57825182559160200191906001019062000b10565b5062000b3b92915062000b3f565b5090565b5b8082111562000b3b576000815560010162000b40565b60006020828403121562000b6957600080fd5b81516001600160e01b03198116811462000b8257600080fd5b9392505050565b60006020828403121562000b9c57600080fd5b81516001600160401b038082111562000bb457600080fd5b818401915084601f83011262000bc957600080fd5b81518181111562000bde5762000bde62000dba565b604051601f8201601f19908116603f0116810190838211818310171562000c095762000c0962000dba565b8160405282815287602084870101111562000c2357600080fd5b62000c3683602083016020880162000cee565b979650505050505050565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000c808160a085016020870162000cee565b601f01601f19169190910160a00195945050505050565b6000821982111562000cad5762000cad62000d78565b500190565b600081600019048311821515161562000ccf5762000ccf62000d78565b500290565b60008282101562000ce95762000ce962000d78565b500390565b60005b8381101562000d0b57818101518382015260200162000cf1565b838111156200042e5750506000910152565b600181811c9082168062000d3257607f821691505b6020821081141562000d5457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000d715762000d7162000d78565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6122538062000de06000396000f3fe6080604052600436106101cd5760003560e01c80634f6ccce7116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd146104f1578063d5abeb0114610511578063e985e9c514610527578063f2fde38b1461057057600080fd5b80638da5cb5b1461047e57806395d89b411461049c578063a22cb465146104b1578063b88d4fde146104d157600080fd5b80636352211e116100d15780636352211e146104145780636c0360eb1461043457806370a0823114610449578063715018a61461046957600080fd5b80634f6ccce7146103ba57806355f804b3146103da5780635c975abb146103fa57600080fd5b8063239c70ae1161016f57806340c10f191161013e57806340c10f191461033a57806342842e0e1461034d578063438b63001461036d57806344a0d68a1461039a57600080fd5b8063239c70ae146102dc57806323b872dd146102f25780632f745c59146103125780633ccfd60b1461033257600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806313faede6146102a357806318160ddd146102c757600080fd5b806301ffc9a7146101d257806302329a291461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611e3e565b610590565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004611e23565b6105bb565b005b34801561023557600080fd5b5061023e610601565b6040516101fe9190611fb6565b34801561025757600080fd5b5061026b610266366004611ec1565b610693565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e366004611df9565b610728565b3480156102af57600080fd5b506102b9600c5481565b6040519081526020016101fe565b3480156102d357600080fd5b506008546102b9565b3480156102e857600080fd5b506102b9600e5481565b3480156102fe57600080fd5b5061022761030d366004611d17565b61083e565b34801561031e57600080fd5b506102b961032d366004611df9565b61086f565b610227610905565b610227610348366004611df9565b610955565b34801561035957600080fd5b50610227610368366004611d17565b610baa565b34801561037957600080fd5b5061038d610388366004611cc9565b610bc5565b6040516101fe9190611f72565b3480156103a657600080fd5b506102276103b5366004611ec1565b610c67565b3480156103c657600080fd5b506102b96103d5366004611ec1565b610c96565b3480156103e657600080fd5b506102276103f5366004611e78565b610d29565b34801561040657600080fd5b50600f546101f29060ff1681565b34801561042057600080fd5b5061026b61042f366004611ec1565b610d6a565b34801561044057600080fd5b5061023e610de1565b34801561045557600080fd5b506102b9610464366004611cc9565b610e6f565b34801561047557600080fd5b50610227610ef6565b34801561048a57600080fd5b50600a546001600160a01b031661026b565b3480156104a857600080fd5b5061023e610f2a565b3480156104bd57600080fd5b506102276104cc366004611dcf565b610f39565b3480156104dd57600080fd5b506102276104ec366004611d53565b610ffe565b3480156104fd57600080fd5b5061023e61050c366004611ec1565b611030565b34801561051d57600080fd5b506102b9600d5481565b34801561053357600080fd5b506101f2610542366004611ce4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561057c57600080fd5b5061022761058b366004611cc9565b61110b565b60006001600160e01b0319821663780e9d6360e01b14806105b557506105b5826111ac565b92915050565b600a546001600160a01b031633146105ee5760405162461bcd60e51b81526004016105e59061201b565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600080546106109061212f565b80601f016020809104026020016040519081016040528092919081815260200182805461063c9061212f565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661070c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e5565b506000908152600460205260409020546001600160a01b031690565b600061073382610d6a565b9050806001600160a01b0316836001600160a01b031614156107a15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e5565b336001600160a01b03821614806107bd57506107bd8133610542565b61082f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e5565b61083983836111fc565b505050565b610848338261126a565b6108645760405162461bcd60e51b81526004016105e590612050565b610839838383611361565b600061087a83610e6f565b82106108dc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105e5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461092f5760405162461bcd60e51b81526004016105e59061201b565b60405133904780156108fc02916000818181858888f1935050505061095357600080fd5b565b600061096060085490565b600f5490915060ff16156109c25760405162461bcd60e51b815260206004820152602360248201527f506963617461723a204d696e74696e672070726f63657373206973207061757360448201526265642160e81b60648201526084016105e5565b60008211610a125760405162461bcd60e51b815260206004820181905260248201527f506963617461723a204d696e74696e6720616d6f756e7420696e76616c69642160448201526064016105e5565b600e54821115610a7d5760405162461bcd60e51b815260206004820152603060248201527f506963617461723a204d696e74696e67206d6f7265207468616e206d6178206d60448201526f696e74696e67207175616e746974792160801b60648201526084016105e5565b600d54610a8a83836120a1565b1115610af75760405162461bcd60e51b815260206004820152603660248201527f506963617461723a204d696e74696e67207175616e74697479206973206d6f7260448201527565207468616e2073746f636b207175616e746974792160501b60648201526084016105e5565b600a546001600160a01b03163314610b755781600c54610b1791906120cd565b341015610b755760405162461bcd60e51b815260206004820152602660248201527f506963617461723a20457468657265756d2073656e74206973206e6f7420636f60448201526572726563742160d01b60648201526084016105e5565b60015b828111610ba457610b9284610b8d83856120a1565b61150c565b80610b9c8161216a565b915050610b78565b50505050565b61083983838360405180602001604052806000815250610ffe565b60606000610bd283610e6f565b905060008167ffffffffffffffff811115610bef57610bef6121f1565b604051908082528060200260200182016040528015610c18578160200160208202803683370190505b50905060005b82811015610c5f57610c30858261086f565b828281518110610c4257610c426121db565b602090810291909101015280610c578161216a565b915050610c1e565b509392505050565b600a546001600160a01b03163314610c915760405162461bcd60e51b81526004016105e59061201b565b600c55565b6000610ca160085490565b8210610d045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105e5565b60088281548110610d1757610d176121db565b90600052602060002001549050919050565b600a546001600160a01b03163314610d535760405162461bcd60e51b81526004016105e59061201b565b8051610d6690600b906020840190611b8e565b5050565b6000818152600260205260408120546001600160a01b0316806105b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e5565b600b8054610dee9061212f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1a9061212f565b8015610e675780601f10610e3c57610100808354040283529160200191610e67565b820191906000526020600020905b815481529060010190602001808311610e4a57829003601f168201915b505050505081565b60006001600160a01b038216610eda5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f205760405162461bcd60e51b81526004016105e59061201b565b6109536000611526565b6060600180546106109061212f565b6001600160a01b038216331415610f925760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611008338361126a565b6110245760405162461bcd60e51b81526004016105e590612050565b610ba484848484611578565b6000818152600260205260409020546060906001600160a01b03166110af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e5565b60006110b96115ab565b905060008151116110d95760405180602001604052806000815250611104565b806110e3846115ba565b6040516020016110f4929190611f06565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146111355760405162461bcd60e51b81526004016105e59061201b565b6001600160a01b03811661119a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e5565b6111a381611526565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806111dd57506001600160e01b03198216635b5e139f60e01b145b806105b557506301ffc9a760e01b6001600160e01b03198316146105b5565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061123182610d6a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e5565b60006112ee83610d6a565b9050806001600160a01b0316846001600160a01b031614806113295750836001600160a01b031661131e84610693565b6001600160a01b0316145b8061135957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661137482610d6a565b6001600160a01b0316146113dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e5565b6001600160a01b03821661143e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e5565b6114498383836116b8565b6114546000826111fc565b6001600160a01b038316600090815260036020526040812080546001929061147d9084906120ec565b90915550506001600160a01b03821660009081526003602052604081208054600192906114ab9084906120a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d66828260405180602001604052806000815250611770565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611583848484611361565b61158f848484846117a3565b610ba45760405162461bcd60e51b81526004016105e590611fc9565b6060600b80546106109061212f565b6060816115de5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160857806115f28161216a565b91506116019050600a836120b9565b91506115e2565b60008167ffffffffffffffff811115611623576116236121f1565b6040519080825280601f01601f19166020018201604052801561164d576020820181803683370190505b5090505b8415611359576116626001836120ec565b915061166f600a86612185565b61167a9060306120a1565b60f81b81838151811061168f5761168f6121db565b60200101906001600160f81b031916908160001a9053506116b1600a866120b9565b9450611651565b6001600160a01b0383166117135761170e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611736565b816001600160a01b0316836001600160a01b0316146117365761173683826118b0565b6001600160a01b03821661174d576108398161194d565b826001600160a01b0316826001600160a01b0316146108395761083982826119fc565b61177a8383611a40565b61178760008484846117a3565b6108395760405162461bcd60e51b81526004016105e590611fc9565b60006001600160a01b0384163b156118a557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117e7903390899088908890600401611f35565b602060405180830381600087803b15801561180157600080fd5b505af1925050508015611831575060408051601f3d908101601f1916820190925261182e91810190611e5b565b60015b61188b573d80801561185f576040519150601f19603f3d011682016040523d82523d6000602084013e611864565b606091505b5080516118835760405162461bcd60e51b81526004016105e590611fc9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611359565b506001949350505050565b600060016118bd84610e6f565b6118c791906120ec565b60008381526007602052604090205490915080821461191a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061195f906001906120ec565b60008381526009602052604081205460088054939450909284908110611987576119876121db565b9060005260206000200154905080600883815481106119a8576119a86121db565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119e0576119e06121c5565b6001900381819060005260206000200160009055905550505050565b6000611a0783610e6f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a965760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105e5565b6000818152600260205260409020546001600160a01b031615611afb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105e5565b611b07600083836116b8565b6001600160a01b0382166000908152600360205260408120805460019290611b309084906120a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b9a9061212f565b90600052602060002090601f016020900481019282611bbc5760008555611c02565b82601f10611bd557805160ff1916838001178555611c02565b82800160010185558215611c02579182015b82811115611c02578251825591602001919060010190611be7565b50611c0e929150611c12565b5090565b5b80821115611c0e5760008155600101611c13565b600067ffffffffffffffff80841115611c4257611c426121f1565b604051601f8501601f19908116603f01168101908282118183101715611c6a57611c6a6121f1565b81604052809350858152868686011115611c8357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cb457600080fd5b919050565b80358015158114611cb457600080fd5b600060208284031215611cdb57600080fd5b61110482611c9d565b60008060408385031215611cf757600080fd5b611d0083611c9d565b9150611d0e60208401611c9d565b90509250929050565b600080600060608486031215611d2c57600080fd5b611d3584611c9d565b9250611d4360208501611c9d565b9150604084013590509250925092565b60008060008060808587031215611d6957600080fd5b611d7285611c9d565b9350611d8060208601611c9d565b925060408501359150606085013567ffffffffffffffff811115611da357600080fd5b8501601f81018713611db457600080fd5b611dc387823560208401611c27565b91505092959194509250565b60008060408385031215611de257600080fd5b611deb83611c9d565b9150611d0e60208401611cb9565b60008060408385031215611e0c57600080fd5b611e1583611c9d565b946020939093013593505050565b600060208284031215611e3557600080fd5b61110482611cb9565b600060208284031215611e5057600080fd5b813561110481612207565b600060208284031215611e6d57600080fd5b815161110481612207565b600060208284031215611e8a57600080fd5b813567ffffffffffffffff811115611ea157600080fd5b8201601f81018413611eb257600080fd5b61135984823560208401611c27565b600060208284031215611ed357600080fd5b5035919050565b60008151808452611ef2816020860160208601612103565b601f01601f19169290920160200192915050565b60008351611f18818460208801612103565b835190830190611f2c818360208801612103565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f6890830184611eda565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611faa57835183529284019291840191600101611f8e565b50909695505050505050565b6020815260006111046020830184611eda565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120b4576120b4612199565b500190565b6000826120c8576120c86121af565b500490565b60008160001904831182151516156120e7576120e7612199565b500290565b6000828210156120fe576120fe612199565b500390565b60005b8381101561211e578181015183820152602001612106565b83811115610ba45750506000910152565b600181811c9082168061214357607f821691505b6020821081141561216457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561217e5761217e612199565b5060010190565b600082612194576121946121af565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111a357600080fdfea26469706673582212204e9a36e3931c7ee2b6fa6c730b7d39c3e68471766c26a26faf37b989c584089c64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152650000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f6e667473746f726167652e6d7970696e6174612e636c6f75642f697066732f516d5561746a4a4b77345055776f37436e656751763631416854336f33505047757265685354743878443955764d2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80634f6ccce7116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd146104f1578063d5abeb0114610511578063e985e9c514610527578063f2fde38b1461057057600080fd5b80638da5cb5b1461047e57806395d89b411461049c578063a22cb465146104b1578063b88d4fde146104d157600080fd5b80636352211e116100d15780636352211e146104145780636c0360eb1461043457806370a0823114610449578063715018a61461046957600080fd5b80634f6ccce7146103ba57806355f804b3146103da5780635c975abb146103fa57600080fd5b8063239c70ae1161016f57806340c10f191161013e57806340c10f191461033a57806342842e0e1461034d578063438b63001461036d57806344a0d68a1461039a57600080fd5b8063239c70ae146102dc57806323b872dd146102f25780632f745c59146103125780633ccfd60b1461033257600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806313faede6146102a357806318160ddd146102c757600080fd5b806301ffc9a7146101d257806302329a291461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611e3e565b610590565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004611e23565b6105bb565b005b34801561023557600080fd5b5061023e610601565b6040516101fe9190611fb6565b34801561025757600080fd5b5061026b610266366004611ec1565b610693565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e366004611df9565b610728565b3480156102af57600080fd5b506102b9600c5481565b6040519081526020016101fe565b3480156102d357600080fd5b506008546102b9565b3480156102e857600080fd5b506102b9600e5481565b3480156102fe57600080fd5b5061022761030d366004611d17565b61083e565b34801561031e57600080fd5b506102b961032d366004611df9565b61086f565b610227610905565b610227610348366004611df9565b610955565b34801561035957600080fd5b50610227610368366004611d17565b610baa565b34801561037957600080fd5b5061038d610388366004611cc9565b610bc5565b6040516101fe9190611f72565b3480156103a657600080fd5b506102276103b5366004611ec1565b610c67565b3480156103c657600080fd5b506102b96103d5366004611ec1565b610c96565b3480156103e657600080fd5b506102276103f5366004611e78565b610d29565b34801561040657600080fd5b50600f546101f29060ff1681565b34801561042057600080fd5b5061026b61042f366004611ec1565b610d6a565b34801561044057600080fd5b5061023e610de1565b34801561045557600080fd5b506102b9610464366004611cc9565b610e6f565b34801561047557600080fd5b50610227610ef6565b34801561048a57600080fd5b50600a546001600160a01b031661026b565b3480156104a857600080fd5b5061023e610f2a565b3480156104bd57600080fd5b506102276104cc366004611dcf565b610f39565b3480156104dd57600080fd5b506102276104ec366004611d53565b610ffe565b3480156104fd57600080fd5b5061023e61050c366004611ec1565b611030565b34801561051d57600080fd5b506102b9600d5481565b34801561053357600080fd5b506101f2610542366004611ce4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561057c57600080fd5b5061022761058b366004611cc9565b61110b565b60006001600160e01b0319821663780e9d6360e01b14806105b557506105b5826111ac565b92915050565b600a546001600160a01b031633146105ee5760405162461bcd60e51b81526004016105e59061201b565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600080546106109061212f565b80601f016020809104026020016040519081016040528092919081815260200182805461063c9061212f565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661070c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e5565b506000908152600460205260409020546001600160a01b031690565b600061073382610d6a565b9050806001600160a01b0316836001600160a01b031614156107a15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e5565b336001600160a01b03821614806107bd57506107bd8133610542565b61082f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e5565b61083983836111fc565b505050565b610848338261126a565b6108645760405162461bcd60e51b81526004016105e590612050565b610839838383611361565b600061087a83610e6f565b82106108dc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105e5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461092f5760405162461bcd60e51b81526004016105e59061201b565b60405133904780156108fc02916000818181858888f1935050505061095357600080fd5b565b600061096060085490565b600f5490915060ff16156109c25760405162461bcd60e51b815260206004820152602360248201527f506963617461723a204d696e74696e672070726f63657373206973207061757360448201526265642160e81b60648201526084016105e5565b60008211610a125760405162461bcd60e51b815260206004820181905260248201527f506963617461723a204d696e74696e6720616d6f756e7420696e76616c69642160448201526064016105e5565b600e54821115610a7d5760405162461bcd60e51b815260206004820152603060248201527f506963617461723a204d696e74696e67206d6f7265207468616e206d6178206d60448201526f696e74696e67207175616e746974792160801b60648201526084016105e5565b600d54610a8a83836120a1565b1115610af75760405162461bcd60e51b815260206004820152603660248201527f506963617461723a204d696e74696e67207175616e74697479206973206d6f7260448201527565207468616e2073746f636b207175616e746974792160501b60648201526084016105e5565b600a546001600160a01b03163314610b755781600c54610b1791906120cd565b341015610b755760405162461bcd60e51b815260206004820152602660248201527f506963617461723a20457468657265756d2073656e74206973206e6f7420636f60448201526572726563742160d01b60648201526084016105e5565b60015b828111610ba457610b9284610b8d83856120a1565b61150c565b80610b9c8161216a565b915050610b78565b50505050565b61083983838360405180602001604052806000815250610ffe565b60606000610bd283610e6f565b905060008167ffffffffffffffff811115610bef57610bef6121f1565b604051908082528060200260200182016040528015610c18578160200160208202803683370190505b50905060005b82811015610c5f57610c30858261086f565b828281518110610c4257610c426121db565b602090810291909101015280610c578161216a565b915050610c1e565b509392505050565b600a546001600160a01b03163314610c915760405162461bcd60e51b81526004016105e59061201b565b600c55565b6000610ca160085490565b8210610d045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105e5565b60088281548110610d1757610d176121db565b90600052602060002001549050919050565b600a546001600160a01b03163314610d535760405162461bcd60e51b81526004016105e59061201b565b8051610d6690600b906020840190611b8e565b5050565b6000818152600260205260408120546001600160a01b0316806105b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e5565b600b8054610dee9061212f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1a9061212f565b8015610e675780601f10610e3c57610100808354040283529160200191610e67565b820191906000526020600020905b815481529060010190602001808311610e4a57829003601f168201915b505050505081565b60006001600160a01b038216610eda5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f205760405162461bcd60e51b81526004016105e59061201b565b6109536000611526565b6060600180546106109061212f565b6001600160a01b038216331415610f925760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611008338361126a565b6110245760405162461bcd60e51b81526004016105e590612050565b610ba484848484611578565b6000818152600260205260409020546060906001600160a01b03166110af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e5565b60006110b96115ab565b905060008151116110d95760405180602001604052806000815250611104565b806110e3846115ba565b6040516020016110f4929190611f06565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146111355760405162461bcd60e51b81526004016105e59061201b565b6001600160a01b03811661119a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e5565b6111a381611526565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806111dd57506001600160e01b03198216635b5e139f60e01b145b806105b557506301ffc9a760e01b6001600160e01b03198316146105b5565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061123182610d6a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e5565b60006112ee83610d6a565b9050806001600160a01b0316846001600160a01b031614806113295750836001600160a01b031661131e84610693565b6001600160a01b0316145b8061135957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661137482610d6a565b6001600160a01b0316146113dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e5565b6001600160a01b03821661143e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e5565b6114498383836116b8565b6114546000826111fc565b6001600160a01b038316600090815260036020526040812080546001929061147d9084906120ec565b90915550506001600160a01b03821660009081526003602052604081208054600192906114ab9084906120a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d66828260405180602001604052806000815250611770565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611583848484611361565b61158f848484846117a3565b610ba45760405162461bcd60e51b81526004016105e590611fc9565b6060600b80546106109061212f565b6060816115de5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160857806115f28161216a565b91506116019050600a836120b9565b91506115e2565b60008167ffffffffffffffff811115611623576116236121f1565b6040519080825280601f01601f19166020018201604052801561164d576020820181803683370190505b5090505b8415611359576116626001836120ec565b915061166f600a86612185565b61167a9060306120a1565b60f81b81838151811061168f5761168f6121db565b60200101906001600160f81b031916908160001a9053506116b1600a866120b9565b9450611651565b6001600160a01b0383166117135761170e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611736565b816001600160a01b0316836001600160a01b0316146117365761173683826118b0565b6001600160a01b03821661174d576108398161194d565b826001600160a01b0316826001600160a01b0316146108395761083982826119fc565b61177a8383611a40565b61178760008484846117a3565b6108395760405162461bcd60e51b81526004016105e590611fc9565b60006001600160a01b0384163b156118a557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117e7903390899088908890600401611f35565b602060405180830381600087803b15801561180157600080fd5b505af1925050508015611831575060408051601f3d908101601f1916820190925261182e91810190611e5b565b60015b61188b573d80801561185f576040519150601f19603f3d011682016040523d82523d6000602084013e611864565b606091505b5080516118835760405162461bcd60e51b81526004016105e590611fc9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611359565b506001949350505050565b600060016118bd84610e6f565b6118c791906120ec565b60008381526007602052604090205490915080821461191a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061195f906001906120ec565b60008381526009602052604081205460088054939450909284908110611987576119876121db565b9060005260206000200154905080600883815481106119a8576119a86121db565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119e0576119e06121c5565b6001900381819060005260206000200160009055905550505050565b6000611a0783610e6f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a965760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105e5565b6000818152600260205260409020546001600160a01b031615611afb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105e5565b611b07600083836116b8565b6001600160a01b0382166000908152600360205260408120805460019290611b309084906120a1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b9a9061212f565b90600052602060002090601f016020900481019282611bbc5760008555611c02565b82601f10611bd557805160ff1916838001178555611c02565b82800160010185558215611c02579182015b82811115611c02578251825591602001919060010190611be7565b50611c0e929150611c12565b5090565b5b80821115611c0e5760008155600101611c13565b600067ffffffffffffffff80841115611c4257611c426121f1565b604051601f8501601f19908116603f01168101908282118183101715611c6a57611c6a6121f1565b81604052809350858152868686011115611c8357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cb457600080fd5b919050565b80358015158114611cb457600080fd5b600060208284031215611cdb57600080fd5b61110482611c9d565b60008060408385031215611cf757600080fd5b611d0083611c9d565b9150611d0e60208401611c9d565b90509250929050565b600080600060608486031215611d2c57600080fd5b611d3584611c9d565b9250611d4360208501611c9d565b9150604084013590509250925092565b60008060008060808587031215611d6957600080fd5b611d7285611c9d565b9350611d8060208601611c9d565b925060408501359150606085013567ffffffffffffffff811115611da357600080fd5b8501601f81018713611db457600080fd5b611dc387823560208401611c27565b91505092959194509250565b60008060408385031215611de257600080fd5b611deb83611c9d565b9150611d0e60208401611cb9565b60008060408385031215611e0c57600080fd5b611e1583611c9d565b946020939093013593505050565b600060208284031215611e3557600080fd5b61110482611cb9565b600060208284031215611e5057600080fd5b813561110481612207565b600060208284031215611e6d57600080fd5b815161110481612207565b600060208284031215611e8a57600080fd5b813567ffffffffffffffff811115611ea157600080fd5b8201601f81018413611eb257600080fd5b61135984823560208401611c27565b600060208284031215611ed357600080fd5b5035919050565b60008151808452611ef2816020860160208601612103565b601f01601f19169290920160200192915050565b60008351611f18818460208801612103565b835190830190611f2c818360208801612103565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f6890830184611eda565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611faa57835183529284019291840191600101611f8e565b50909695505050505050565b6020815260006111046020830184611eda565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120b4576120b4612199565b500190565b6000826120c8576120c86121af565b500490565b60008160001904831182151516156120e7576120e7612199565b500290565b6000828210156120fe576120fe612199565b500390565b60005b8381101561211e578181015183820152602001612106565b83811115610ba45750506000910152565b600181811c9082168061214357607f821691505b6020821081141561216457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561217e5761217e612199565b5060010190565b600082612194576121946121af565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111a357600080fdfea26469706673582212204e9a36e3931c7ee2b6fa6c730b7d39c3e68471766c26a26faf37b989c584089c64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f6e667473746f726167652e6d7970696e6174612e636c6f75642f697066732f516d5561746a4a4b77345055776f37436e656751763631416854336f33505047757265685354743878443955764d2f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://nftstorage.mypinata.cloud/ipfs/QmUatjJKw4PUwo7CnegQv61AhT3o3PPGurehSTt8xD9UvM/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000056
Arg [2] : 68747470733a2f2f6e667473746f726167652e6d7970696e6174612e636c6f75
Arg [3] : 642f697066732f516d5561746a4a4b77345055776f37436e6567517636314168
Arg [4] : 54336f33505047757265685354743878443955764d2f00000000000000000000


Deployed Bytecode Sourcemap

43151:2402:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34679:224;;;;;;;;;;-1:-1:-1;34679:224:0;;;;;:::i;:::-;;:::i;:::-;;;6540:14:1;;6533:22;6515:41;;6503:2;6488:18;34679:224:0;;;;;;;;45354:73;;;;;;;;;;-1:-1:-1;45354:73:0;;;;;:::i;:::-;;:::i;:::-;;22571:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24130:221::-;;;;;;;;;;-1:-1:-1;24130:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5201:32:1;;;5183:51;;5171:2;5156:18;24130:221:0;5037:203:1;23653:411:0;;;;;;;;;;-1:-1:-1;23653:411:0;;;;;:::i;:::-;;:::i;43268:32::-;;;;;;;;;;;;;;;;;;;16156:25:1;;;16144:2;16129:18;43268:32:0;16010:177:1;35319:113:0;;;;;;;;;;-1:-1:-1;35407:10:0;:17;35319:113;;43342:33;;;;;;;;;;;;;;;;25020:339;;;;;;;;;;-1:-1:-1;25020:339:0;;;;;:::i;:::-;;:::i;34987:256::-;;;;;;;;;;-1:-1:-1;34987:256:0;;;;;:::i;:::-;;:::i;45434:114::-;;;:::i;43704:666::-;;;;;;:::i;:::-;;:::i;25430:185::-;;;;;;;;;;-1:-1:-1;25430:185:0;;;;;:::i;:::-;;:::i;44376:348::-;;;;;;;;;;-1:-1:-1;44376:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45160:82::-;;;;;;;;;;-1:-1:-1;45160:82:0;;;;;:::i;:::-;;:::i;35509:233::-;;;;;;;;;;-1:-1:-1;35509:233:0;;;;;:::i;:::-;;:::i;45248:98::-;;;;;;;;;;-1:-1:-1;45248:98:0;;;;;:::i;:::-;;:::i;43380:26::-;;;;;;;;;;-1:-1:-1;43380:26:0;;;;;;;;22265:239;;;;;;;;;;-1:-1:-1;22265:239:0;;;;;:::i;:::-;;:::i;43242:21::-;;;;;;;;;;;;;:::i;21995:208::-;;;;;;;;;;-1:-1:-1;21995:208:0;;;;;:::i;:::-;;:::i;42468:94::-;;;;;;;;;;;;;:::i;41817:87::-;;;;;;;;;;-1:-1:-1;41890:6:0;;-1:-1:-1;;;;;41890:6:0;41817:87;;22740:104;;;;;;;;;;;;;:::i;24423:295::-;;;;;;;;;;-1:-1:-1;24423:295:0;;;;;:::i;:::-;;:::i;25686:328::-;;;;;;;;;;-1:-1:-1;25686:328:0;;;;;:::i;:::-;;:::i;44730:408::-;;;;;;;;;;-1:-1:-1;44730:408:0;;;;;:::i;:::-;;:::i;43305:32::-;;;;;;;;;;;;;;;;24789:164;;;;;;;;;;-1:-1:-1;24789:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24910:25:0;;;24886:4;24910:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24789:164;42717:192;;;;;;;;;;-1:-1:-1;42717:192:0;;;;;:::i;:::-;;:::i;34679:224::-;34781:4;-1:-1:-1;;;;;;34805:50:0;;-1:-1:-1;;;34805:50:0;;:90;;;34859:36;34883:11;34859:23;:36::i;:::-;34798:97;34679:224;-1:-1:-1;;34679:224:0:o;45354:73::-;41890:6;;-1:-1:-1;;;;;41890:6:0;20180:10;42037:23;42029:68;;;;-1:-1:-1;;;42029:68:0;;;;;;;:::i;:::-;;;;;;;;;45406:6:::1;:15:::0;;-1:-1:-1;;45406:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45354:73::o;22571:100::-;22625:13;22658:5;22651:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22571:100;:::o;24130:221::-;24206:7;27613:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27613:16:0;24226:73;;;;-1:-1:-1;;;24226:73:0;;12132:2:1;24226:73:0;;;12114:21:1;12171:2;12151:18;;;12144:30;12210:34;12190:18;;;12183:62;-1:-1:-1;;;12261:18:1;;;12254:42;12313:19;;24226:73:0;11930:408:1;24226:73:0;-1:-1:-1;24319:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24319:24:0;;24130:221::o;23653:411::-;23734:13;23750:23;23765:7;23750:14;:23::i;:::-;23734:39;;23798:5;-1:-1:-1;;;;;23792:11:0;:2;-1:-1:-1;;;;;23792:11:0;;;23784:57;;;;-1:-1:-1;;;23784:57:0;;14979:2:1;23784:57:0;;;14961:21:1;15018:2;14998:18;;;14991:30;15057:34;15037:18;;;15030:62;-1:-1:-1;;;15108:18:1;;;15101:31;15149:19;;23784:57:0;14777:397:1;23784:57:0;20180:10;-1:-1:-1;;;;;23876:21:0;;;;:62;;-1:-1:-1;23901:37:0;23918:5;20180:10;24789:164;:::i;23901:37::-;23854:168;;;;-1:-1:-1;;;23854:168:0;;10525:2:1;23854:168:0;;;10507:21:1;10564:2;10544:18;;;10537:30;10603:34;10583:18;;;10576:62;10674:26;10654:18;;;10647:54;10718:19;;23854:168:0;10323:420:1;23854:168:0;24035:21;24044:2;24048:7;24035:8;:21::i;:::-;23723:341;23653:411;;:::o;25020:339::-;25215:41;20180:10;25248:7;25215:18;:41::i;:::-;25207:103;;;;-1:-1:-1;;;25207:103:0;;;;;;;:::i;:::-;25323:28;25333:4;25339:2;25343:7;25323:9;:28::i;34987:256::-;35084:7;35120:23;35137:5;35120:16;:23::i;:::-;35112:5;:31;35104:87;;;;-1:-1:-1;;;35104:87:0;;7758:2:1;35104:87:0;;;7740:21:1;7797:2;7777:18;;;7770:30;7836:34;7816:18;;;7809:62;-1:-1:-1;;;7887:18:1;;;7880:41;7938:19;;35104:87:0;7556:407:1;35104:87:0;-1:-1:-1;;;;;;35209:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34987:256::o;45434:114::-;41890:6;;-1:-1:-1;;;;;41890:6:0;20180:10;42037:23;42029:68;;;;-1:-1:-1;;;42029:68:0;;;;;;;:::i;:::-;45494:47:::1;::::0;45502:10:::1;::::0;45519:21:::1;45494:47:::0;::::1;;;::::0;::::1;::::0;;;45519:21;45502:10;45494:47;::::1;;;;;;45486:56;;;::::0;::::1;;45434:114::o:0;43704:666::-;43774:14;43791:13;35407:10;:17;;35319:113;43791:13;43820:6;;43774:30;;-1:-1:-1;43820:6:0;;43819:7;43811:55;;;;-1:-1:-1;;;43811:55:0;;7354:2:1;43811:55:0;;;7336:21:1;7393:2;7373:18;;;7366:30;7432:34;7412:18;;;7405:62;-1:-1:-1;;;7483:18:1;;;7476:33;7526:19;;43811:55:0;7152:399:1;43811:55:0;43895:1;43881:11;:15;43873:60;;;;-1:-1:-1;;;43873:60:0;;6993:2:1;43873:60:0;;;6975:21:1;;;7012:18;;;7005:30;7071:34;7051:18;;;7044:62;7123:18;;43873:60:0;6791:356:1;43873:60:0;43963:13;;43948:11;:28;;43940:89;;;;-1:-1:-1;;;43940:89:0;;14562:2:1;43940:89:0;;;14544:21:1;14601:2;14581:18;;;14574:30;14640:34;14620:18;;;14613:62;-1:-1:-1;;;14691:18:1;;;14684:46;14747:19;;43940:89:0;14360:412:1;43940:89:0;44068:9;;44044:20;44053:11;44044:6;:20;:::i;:::-;:33;;44036:100;;;;-1:-1:-1;;;44036:100:0;;13723:2:1;44036:100:0;;;13705:21:1;13762:2;13742:18;;;13735:30;13801:34;13781:18;;;13774:62;-1:-1:-1;;;13852:18:1;;;13845:52;13914:19;;44036:100:0;13521:418:1;44036:100:0;41890:6;;-1:-1:-1;;;;;41890:6:0;44149:10;:21;44145:126;;44209:11;44202:4;;:18;;;;:::i;:::-;44189:9;:31;;44181:82;;;;-1:-1:-1;;;44181:82:0;;12906:2:1;44181:82:0;;;12888:21:1;12945:2;12925:18;;;12918:30;12984:34;12964:18;;;12957:62;-1:-1:-1;;;13035:18:1;;;13028:36;13081:19;;44181:82:0;12704:402:1;44181:82:0;44296:1;44279:86;44304:11;44299:1;:16;44279:86;;44331:26;44341:3;44346:10;44355:1;44346:6;:10;:::i;:::-;44331:9;:26::i;:::-;44317:3;;;;:::i;:::-;;;;44279:86;;;;43767:603;43704:666;;:::o;25430:185::-;25568:39;25585:4;25591:2;25595:7;25568:39;;;;;;;;;;;;:16;:39::i;44376:348::-;44451:16;44479:23;44505:17;44515:6;44505:9;:17::i;:::-;44479:43;;44529:25;44571:15;44557:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44557:30:0;;44529:58;;44599:9;44594:103;44614:15;44610:1;:19;44594:103;;;44659:30;44679:6;44687:1;44659:19;:30::i;:::-;44645:8;44654:1;44645:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;44631:3;;;;:::i;:::-;;;;44594:103;;;-1:-1:-1;44710:8:0;44376:348;-1:-1:-1;;;44376:348:0:o;45160:82::-;41890:6;;-1:-1:-1;;;;;41890:6:0;20180:10;42037:23;42029:68;;;;-1:-1:-1;;;42029:68:0;;;;;;;:::i;:::-;45221:4:::1;:15:::0;45160:82::o;35509:233::-;35584:7;35620:30;35407:10;:17;;35319:113;35620:30;35612:5;:38;35604:95;;;;-1:-1:-1;;;35604:95:0;;15799:2:1;35604:95:0;;;15781:21:1;15838:2;15818:18;;;15811:30;15877:34;15857:18;;;15850:62;-1:-1:-1;;;15928:18:1;;;15921:42;15980:19;;35604:95:0;15597:408:1;35604:95:0;35717:10;35728:5;35717:17;;;;;;;;:::i;:::-;;;;;;;;;35710:24;;35509:233;;;:::o;45248:98::-;41890:6;;-1:-1:-1;;;;;41890:6:0;20180:10;42037:23;42029:68;;;;-1:-1:-1;;;42029:68:0;;;;;;;:::i;:::-;45319:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45248:98:::0;:::o;22265:239::-;22337:7;22373:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22373:16:0;22408:19;22400:73;;;;-1:-1:-1;;;22400:73:0;;11361:2:1;22400:73:0;;;11343:21:1;11400:2;11380:18;;;11373:30;11439:34;11419:18;;;11412:62;-1:-1:-1;;;11490:18:1;;;11483:39;11539:19;;22400:73:0;11159:405:1;43242:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21995:208::-;22067:7;-1:-1:-1;;;;;22095:19:0;;22087:74;;;;-1:-1:-1;;;22087:74:0;;10950:2:1;22087:74:0;;;10932:21:1;10989:2;10969:18;;;10962:30;11028:34;11008:18;;;11001:62;-1:-1:-1;;;11079:18:1;;;11072:40;11129:19;;22087:74:0;10748:406:1;22087:74:0;-1:-1:-1;;;;;;22179:16:0;;;;;:9;:16;;;;;;;21995:208::o;42468:94::-;41890:6;;-1:-1:-1;;;;;41890:6:0;20180:10;42037:23;42029:68;;;;-1:-1:-1;;;42029:68:0;;;;;;;:::i;:::-;42533:21:::1;42551:1;42533:9;:21::i;22740:104::-:0;22796:13;22829:7;22822:14;;;;;:::i;24423:295::-;-1:-1:-1;;;;;24526:24:0;;20180:10;24526:24;;24518:62;;;;-1:-1:-1;;;24518:62:0;;9758:2:1;24518:62:0;;;9740:21:1;9797:2;9777:18;;;9770:30;9836:27;9816:18;;;9809:55;9881:18;;24518:62:0;9556:349:1;24518:62:0;20180:10;24593:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24593:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24593:53:0;;;;;;;;;;24662:48;;6515:41:1;;;24593:42:0;;20180:10;24662:48;;6488:18:1;24662:48:0;;;;;;;24423:295;;:::o;25686:328::-;25861:41;20180:10;25894:7;25861:18;:41::i;:::-;25853:103;;;;-1:-1:-1;;;25853:103:0;;;;;;;:::i;:::-;25967:39;25981:4;25987:2;25991:7;26000:5;25967:13;:39::i;44730:408::-;27589:4;27613:16;;;:7;:16;;;;;;44828:13;;-1:-1:-1;;;;;27613:16:0;44853:97;;;;-1:-1:-1;;;44853:97:0;;14146:2:1;44853:97:0;;;14128:21:1;14185:2;14165:18;;;14158:30;14224:34;14204:18;;;14197:62;-1:-1:-1;;;14275:18:1;;;14268:45;14330:19;;44853:97:0;13944:411:1;44853:97:0;44959:28;44990:10;:8;:10::i;:::-;44959:41;;45045:1;45020:14;45014:28;:32;:118;;;;;;;;;;;;;;;;;45082:14;45098:18;:7;:16;:18::i;:::-;45065:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45014:118;45007:125;44730:408;-1:-1:-1;;;44730:408:0:o;42717:192::-;41890:6;;-1:-1:-1;;;;;41890:6:0;20180:10;42037:23;42029:68;;;;-1:-1:-1;;;42029:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42806:22:0;::::1;42798:73;;;::::0;-1:-1:-1;;;42798:73:0;;8589:2:1;42798:73:0::1;::::0;::::1;8571:21:1::0;8628:2;8608:18;;;8601:30;8667:34;8647:18;;;8640:62;-1:-1:-1;;;8718:18:1;;;8711:36;8764:19;;42798:73:0::1;8387:402:1::0;42798:73:0::1;42882:19;42892:8;42882:9;:19::i;:::-;42717:192:::0;:::o;10457:387::-;10780:20;10828:8;;;10457:387::o;21626:305::-;21728:4;-1:-1:-1;;;;;;21765:40:0;;-1:-1:-1;;;21765:40:0;;:105;;-1:-1:-1;;;;;;;21822:48:0;;-1:-1:-1;;;21822:48:0;21765:105;:158;;;-1:-1:-1;;;;;;;;;;7566:40:0;;;21887:36;7457:157;31506:174;31581:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31581:29:0;-1:-1:-1;;;;;31581:29:0;;;;;;;;:24;;31635:23;31581:24;31635:14;:23::i;:::-;-1:-1:-1;;;;;31626:46:0;;;;;;;;;;;31506:174;;:::o;27818:348::-;27911:4;27613:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27613:16:0;27928:73;;;;-1:-1:-1;;;27928:73:0;;10112:2:1;27928:73:0;;;10094:21:1;10151:2;10131:18;;;10124:30;10190:34;10170:18;;;10163:62;-1:-1:-1;;;10241:18:1;;;10234:42;10293:19;;27928:73:0;9910:408:1;27928:73:0;28012:13;28028:23;28043:7;28028:14;:23::i;:::-;28012:39;;28081:5;-1:-1:-1;;;;;28070:16:0;:7;-1:-1:-1;;;;;28070:16:0;;:51;;;;28114:7;-1:-1:-1;;;;;28090:31:0;:20;28102:7;28090:11;:20::i;:::-;-1:-1:-1;;;;;28090:31:0;;28070:51;:87;;;-1:-1:-1;;;;;;24910:25:0;;;24886:4;24910:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28125:32;28062:96;27818:348;-1:-1:-1;;;;27818:348:0:o;30810:578::-;30969:4;-1:-1:-1;;;;;30942:31:0;:23;30957:7;30942:14;:23::i;:::-;-1:-1:-1;;;;;30942:31:0;;30934:85;;;;-1:-1:-1;;;30934:85:0;;13313:2:1;30934:85:0;;;13295:21:1;13352:2;13332:18;;;13325:30;13391:34;13371:18;;;13364:62;-1:-1:-1;;;13442:18:1;;;13435:39;13491:19;;30934:85:0;13111:405:1;30934:85:0;-1:-1:-1;;;;;31038:16:0;;31030:65;;;;-1:-1:-1;;;31030:65:0;;9353:2:1;31030:65:0;;;9335:21:1;9392:2;9372:18;;;9365:30;9431:34;9411:18;;;9404:62;-1:-1:-1;;;9482:18:1;;;9475:34;9526:19;;31030:65:0;9151:400:1;31030:65:0;31108:39;31129:4;31135:2;31139:7;31108:20;:39::i;:::-;31212:29;31229:1;31233:7;31212:8;:29::i;:::-;-1:-1:-1;;;;;31254:15:0;;;;;;:9;:15;;;;;:20;;31273:1;;31254:15;:20;;31273:1;;31254:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31285:13:0;;;;;;:9;:13;;;;;:18;;31302:1;;31285:13;:18;;31302:1;;31285:18;:::i;:::-;;;;-1:-1:-1;;31314:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31314:21:0;-1:-1:-1;;;;;31314:21:0;;;;;;;;;31353:27;;31314:16;;31353:27;;;;;;;30810:578;;;:::o;28508:110::-;28584:26;28594:2;28598:7;28584:26;;;;;;;;;;;;:9;:26::i;42917:173::-;42992:6;;;-1:-1:-1;;;;;43009:17:0;;;-1:-1:-1;;;;;;43009:17:0;;;;;;;43042:40;;42992:6;;;43009:17;42992:6;;43042:40;;42973:16;;43042:40;42962:128;42917:173;:::o;26896:315::-;27053:28;27063:4;27069:2;27073:7;27053:9;:28::i;:::-;27100:48;27123:4;27129:2;27133:7;27142:5;27100:22;:48::i;:::-;27092:111;;;;-1:-1:-1;;;27092:111:0;;;;;;;:::i;43581:102::-;43641:13;43670:7;43663:14;;;;;:::i;7932:723::-;7988:13;8209:10;8205:53;;-1:-1:-1;;8236:10:0;;;;;;;;;;;;-1:-1:-1;;;8236:10:0;;;;;7932:723::o;8205:53::-;8283:5;8268:12;8324:78;8331:9;;8324:78;;8357:8;;;;:::i;:::-;;-1:-1:-1;8380:10:0;;-1:-1:-1;8388:2:0;8380:10;;:::i;:::-;;;8324:78;;;8412:19;8444:6;8434:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8434:17:0;;8412:39;;8462:154;8469:10;;8462:154;;8496:11;8506:1;8496:11;;:::i;:::-;;-1:-1:-1;8565:10:0;8573:2;8565:5;:10;:::i;:::-;8552:24;;:2;:24;:::i;:::-;8539:39;;8522:6;8529;8522:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8522:56:0;;;;;;;;-1:-1:-1;8593:11:0;8602:2;8593:11;;:::i;:::-;;;8462:154;;36355:589;-1:-1:-1;;;;;36561:18:0;;36557:187;;36596:40;36628:7;37771:10;:17;;37744:24;;;;:15;:24;;;;;:44;;;37799:24;;;;;;;;;;;;37667:164;36596:40;36557:187;;;36666:2;-1:-1:-1;;;;;36658:10:0;:4;-1:-1:-1;;;;;36658:10:0;;36654:90;;36685:47;36718:4;36724:7;36685:32;:47::i;:::-;-1:-1:-1;;;;;36758:16:0;;36754:183;;36791:45;36828:7;36791:36;:45::i;36754:183::-;36864:4;-1:-1:-1;;;;;36858:10:0;:2;-1:-1:-1;;;;;36858:10:0;;36854:83;;36885:40;36913:2;36917:7;36885:27;:40::i;28845:321::-;28975:18;28981:2;28985:7;28975:5;:18::i;:::-;29026:54;29057:1;29061:2;29065:7;29074:5;29026:22;:54::i;:::-;29004:154;;;;-1:-1:-1;;;29004:154:0;;;;;;;:::i;32245:799::-;32400:4;-1:-1:-1;;;;;32421:13:0;;10780:20;10828:8;32417:620;;32457:72;;-1:-1:-1;;;32457:72:0;;-1:-1:-1;;;;;32457:36:0;;;;;:72;;20180:10;;32508:4;;32514:7;;32523:5;;32457:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32457:72:0;;;;;;;;-1:-1:-1;;32457:72:0;;;;;;;;;;;;:::i;:::-;;;32453:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32699:13:0;;32695:272;;32742:60;;-1:-1:-1;;;32742:60:0;;;;;;;:::i;32695:272::-;32917:6;32911:13;32902:6;32898:2;32894:15;32887:38;32453:529;-1:-1:-1;;;;;;32580:51:0;-1:-1:-1;;;32580:51:0;;-1:-1:-1;32573:58:0;;32417:620;-1:-1:-1;33021:4:0;32245:799;;;;;;:::o;38458:988::-;38724:22;38774:1;38749:22;38766:4;38749:16;:22::i;:::-;:26;;;;:::i;:::-;38786:18;38807:26;;;:17;:26;;;;;;38724:51;;-1:-1:-1;38940:28:0;;;38936:328;;-1:-1:-1;;;;;39007:18:0;;38985:19;39007:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39058:30;;;;;;:44;;;39175:30;;:17;:30;;;;;:43;;;38936:328;-1:-1:-1;39360:26:0;;;;:17;:26;;;;;;;;39353:33;;;-1:-1:-1;;;;;39404:18:0;;;;;:12;:18;;;;;:34;;;;;;;39397:41;38458:988::o;39741:1079::-;40019:10;:17;39994:22;;40019:21;;40039:1;;40019:21;:::i;:::-;40051:18;40072:24;;;:15;:24;;;;;;40445:10;:26;;39994:46;;-1:-1:-1;40072:24:0;;39994:46;;40445:26;;;;;;:::i;:::-;;;;;;;;;40423:48;;40509:11;40484:10;40495;40484:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40589:28;;;:15;:28;;;;;;;:41;;;40761:24;;;;;40754:31;40796:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39812:1008;;;39741:1079;:::o;37245:221::-;37330:14;37347:20;37364:2;37347:16;:20::i;:::-;-1:-1:-1;;;;;37378:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37423:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37245:221:0:o;29502:382::-;-1:-1:-1;;;;;29582:16:0;;29574:61;;;;-1:-1:-1;;;29574:61:0;;11771:2:1;29574:61:0;;;11753:21:1;;;11790:18;;;11783:30;11849:34;11829:18;;;11822:62;11901:18;;29574:61:0;11569:356:1;29574:61:0;27589:4;27613:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27613:16:0;:30;29646:58;;;;-1:-1:-1;;;29646:58:0;;8996:2:1;29646:58:0;;;8978:21:1;9035:2;9015:18;;;9008:30;9074;9054:18;;;9047:58;9122:18;;29646:58:0;8794:352:1;29646:58:0;29717:45;29746:1;29750:2;29754:7;29717:20;:45::i;:::-;-1:-1:-1;;;;;29775:13:0;;;;;;:9;:13;;;;;:18;;29792:1;;29775:13;:18;;29792:1;;29775:18;:::i;:::-;;;;-1:-1:-1;;29804:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29804:21:0;-1:-1:-1;;;;;29804:21:0;;;;;;;;29843:33;;29804:16;;;29843:33;;29804:16;;29843:33;29502:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5245:488::-;-1:-1:-1;;;;;5514:15:1;;;5496:34;;5566:15;;5561:2;5546:18;;5539:43;5613:2;5598:18;;5591:34;;;5661:3;5656:2;5641:18;;5634:31;;;5439:4;;5682:45;;5707:19;;5699:6;5682:45;:::i;:::-;5674:53;5245:488;-1:-1:-1;;;;;;5245:488:1:o;5738:632::-;5909:2;5961:21;;;6031:13;;5934:18;;;6053:22;;;5880:4;;5909:2;6132:15;;;;6106:2;6091:18;;;5880:4;6175:169;6189:6;6186:1;6183:13;6175:169;;;6250:13;;6238:26;;6319:15;;;;6284:12;;;;6211:1;6204:9;6175:169;;;-1:-1:-1;6361:3:1;;5738:632;-1:-1:-1;;;;;;5738:632:1:o;6567:219::-;6716:2;6705:9;6698:21;6679:4;6736:44;6776:2;6765:9;6761:18;6753:6;6736:44;:::i;7968:414::-;8170:2;8152:21;;;8209:2;8189:18;;;8182:30;8248:34;8243:2;8228:18;;8221:62;-1:-1:-1;;;8314:2:1;8299:18;;8292:48;8372:3;8357:19;;7968:414::o;12343:356::-;12545:2;12527:21;;;12564:18;;;12557:30;12623:34;12618:2;12603:18;;12596:62;12690:2;12675:18;;12343:356::o;15179:413::-;15381:2;15363:21;;;15420:2;15400:18;;;15393:30;15459:34;15454:2;15439:18;;15432:62;-1:-1:-1;;;15525:2:1;15510:18;;15503:47;15582:3;15567:19;;15179:413::o;16192:128::-;16232:3;16263:1;16259:6;16256:1;16253:13;16250:39;;;16269:18;;:::i;:::-;-1:-1:-1;16305:9:1;;16192:128::o;16325:120::-;16365:1;16391;16381:35;;16396:18;;:::i;:::-;-1:-1:-1;16430:9:1;;16325:120::o;16450:168::-;16490:7;16556:1;16552;16548:6;16544:14;16541:1;16538:21;16533:1;16526:9;16519:17;16515:45;16512:71;;;16563:18;;:::i;:::-;-1:-1:-1;16603:9:1;;16450:168::o;16623:125::-;16663:4;16691:1;16688;16685:8;16682:34;;;16696:18;;:::i;:::-;-1:-1:-1;16733:9:1;;16623:125::o;16753:258::-;16825:1;16835:113;16849:6;16846:1;16843:13;16835:113;;;16925:11;;;16919:18;16906:11;;;16899:39;16871:2;16864:10;16835:113;;;16966:6;16963:1;16960:13;16957:48;;;-1:-1:-1;;17001:1:1;16983:16;;16976:27;16753:258::o;17016:380::-;17095:1;17091:12;;;;17138;;;17159:61;;17213:4;17205:6;17201:17;17191:27;;17159:61;17266:2;17258:6;17255:14;17235:18;17232:38;17229:161;;;17312:10;17307:3;17303:20;17300:1;17293:31;17347:4;17344:1;17337:15;17375:4;17372:1;17365:15;17229:161;;17016:380;;;:::o;17401:135::-;17440:3;-1:-1:-1;;17461:17:1;;17458:43;;;17481:18;;:::i;:::-;-1:-1:-1;17528:1:1;17517:13;;17401:135::o;17541:112::-;17573:1;17599;17589:35;;17604:18;;:::i;:::-;-1:-1:-1;17638:9:1;;17541:112::o;17658:127::-;17719:10;17714:3;17710:20;17707:1;17700:31;17750:4;17747:1;17740:15;17774:4;17771:1;17764:15;17790:127;17851:10;17846:3;17842:20;17839:1;17832:31;17882:4;17879:1;17872:15;17906:4;17903:1;17896:15;17922:127;17983:10;17978:3;17974:20;17971:1;17964:31;18014:4;18011:1;18004:15;18038:4;18035:1;18028:15;18054:127;18115:10;18110:3;18106:20;18103:1;18096:31;18146:4;18143:1;18136:15;18170:4;18167:1;18160:15;18186:127;18247:10;18242:3;18238:20;18235:1;18228:31;18278:4;18275:1;18268:15;18302:4;18299:1;18292:15;18318:131;-1:-1:-1;;;;;;18392:32:1;;18382:43;;18372:71;;18439:1;18436;18429:12

Swarm Source

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