ETH Price: $3,797.87 (+0.74%)
Gas: 10 Gwei

Token

FlowerGirls (FLGS)
 

Overview

Max Total Supply

10,000 FLGS

Holders

4,012

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 FLGS
0x7b5658e5212377020b953d232875fc59ee6edbef
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

[Roadmap](https://www.flowergirlsnft.com/) | [Christmas Special](https://opensea.io/collection/the-flower-girls-special) | [Children's Art Fund](https://opensea.io/flowergirlsartfund) | [Nifty Gateway](https://niftygateway.com/marketplace?collectible=0x2efa07cac3395599db83035d196f2a0e7263f766) 10,000 unique Flower Girls by **Varvara Alay**, generated from over 950 hand-drawn elements and stored as ERC-721 tokens on the Ethereum Blockchain. ⟶ 20% of Primary & Secondary profits donated to a range of Children’s charities ⟶ 5% of Primary & Secondary profits used to collect Children’s NFT Art Please visit our **[Website](https://www.flowergirlsnft.com/)** for the full Roadmap.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FlowerGirls

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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/Context.sol



pragma solidity ^0.8.0;

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

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

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



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

// 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/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/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



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/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

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



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: contracts/FlowerGirls.sol


pragma solidity ^0.8.6;



contract FlowerGirls is ERC721Enumerable, Ownable {

    address add1 = 0x3a3B26938ad0341cD48Be9Cf92bf39cd47c5Bd9E;
    address add2 = 0x12723aD63dA5D0C9Cfa671Ddf8f208b7eA03C913;
    address add3 = 0x25548c91A36b686271F555891A5E48b731d5A51e;
    address add4 = 0xdF09b919392687072AD42eE6986c861751C2559D;
    address add5 = 0xF58E8ef86c49556CE0bEFe9d4FE279362A230d2d;
    address add6 = 0x58136e0909b71981F1a37F1f87859c562ed3657a;
    address add7 = 0x4783D0f494b83a1f9eFf660AA7993706fE32f18c;
    address add8 = 0x4dC2b63dA5FEeCd1eEcCE784b964B7CE85be9C30;

    string private _baseTokenURI;
    uint256 private _maxSupply = 10000;
    uint256 private _price = 0.04 ether;
    uint256 public _presaleLimit = 10;
    uint256 public _reserved = 500;
    bool private _preSaleActive = false;
    bool private _mainSaleActive = false;

    constructor() ERC721("FlowerGirls", "FLGS")  {
    }
    
    mapping(address => bool) private _inPresale;
    mapping(address => uint256) private _totalClaimed;
    
    function addToPresale(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            _inPresale[addresses[i]] = true;
            _totalClaimed[addresses[i]] > 0 ? _totalClaimed[addresses[i]] : 0;
        }
    }
    
    function mintPresale(uint256 num) public payable 
    {
        uint256 supply = totalSupply();
        require( _preSaleActive, "Presale has not started");
        require( _inPresale[msg.sender], "You are not eligible for the presale");
        require( _reserved + supply + num <= _maxSupply, "No more NFT's available for mint");
        require( _totalClaimed[msg.sender] + num <= _presaleLimit, "Not enough available to mint during presale");
        require( msg.value >= _price * num, "Please send correct amount of ether" );
        
        for (uint256 i = 0; i < num; i++){ 
               _totalClaimed[msg.sender] += 1;
               _safeMint( msg.sender, supply + i + 1);
        }
    }

    function mintMainSale(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( _mainSaleActive, "Main Sale is not available yet" );
        require( num > 0 && num < 21, "Only 1 to 20 mints per transaction" );
        require( _reserved + supply + num <= _maxSupply, "No more available to mint" );
        require( msg.value >= _price * num, "Please send correct amount of ether" );

        for(uint256 i = 0; i < num; i++){
            _safeMint( msg.sender, supply + i + 1);
        }
    } 

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

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

    function inPresale(address addr) external view returns(bool)
    {
        return _inPresale[addr];
    }
    
    function resumePresale() public onlyOwner()
    {
        _preSaleActive = true;
    }
    
    function resumeMainSale() public onlyOwner()
    {
        _mainSaleActive = true;
    }

    function pausePresale() public onlyOwner()
    {
        _preSaleActive = false;
    }
    
    function pauseMainSale() public onlyOwner()
    {
        _mainSaleActive = false;
    }

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

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

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

    function getBaseTokenURI() public view onlyOwner returns (string memory){
        return _baseTokenURI;
    }
    
    function getTokensLeft() public view returns (uint256){
        uint256 supply = totalSupply();
        return _maxSupply - supply - _reserved;
    }

    function giveAway(address to, uint256 quantity) external onlyOwner() {
        uint256 supply = totalSupply();
        require(quantity <= _reserved , "Exceeds NFT minting limit");

        _reserved -= quantity;
        for(uint256 i = 0; i < quantity; i++){
            _safeMint( to, supply + i + 1);
        }
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(add1).send(address(this).balance / 100 * 5));
        require(payable(add2).send(address(this).balance / 100 * 5));
        require(payable(add3).send(address(this).balance / 100 * 10));
        require(payable(add4).send(address(this).balance / 100 * 5));
        require(payable(add5).send(address(this).balance / 100 * 5));
        require(payable(add6).send(address(this).balance / 100 * 45));
        require(payable(add7).send(address(this).balance / 100 * 20));
        require(payable(add8).send(address(this).balance / 100 * 5));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_presaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokensLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"inPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintMainSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintPresale","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":[],"name":"pauseMainSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pausePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resumeMainSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resumePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600b80546001600160a01b0319908116733a3b26938ad0341cd48be9cf92bf39cd47c5bd9e17909155600c805482167312723ad63da5d0c9cfa671ddf8f208b7ea03c913179055600d805482167325548c91a36b686271f555891a5e48b731d5a51e179055600e8054821673df09b919392687072ad42ee6986c861751c2559d179055600f8054821673f58e8ef86c49556ce0befe9d4fe279362a230d2d1790556010805482167358136e0909b71981f1a37f1f87859c562ed3657a179055601180548216734783d0f494b83a1f9eff660aa7993706fe32f18c17905560128054909116734dc2b63da5feecd1eecce784b964b7ce85be9c30179055612710601455668e1bc9bf040000601555600a6016556101f46017556018805461ffff191690553480156200013457600080fd5b50604080518082018252600b81526a466c6f7765724769726c7360a81b602080830191825283518085019094526004845263464c475360e01b908401528151919291620001849160009162000213565b5080516200019a90600190602084019062000213565b505050620001b7620001b1620001bd60201b60201c565b620001c1565b620002f6565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022190620002b9565b90600052602060002090601f01602090048101928262000245576000855562000290565b82601f106200026057805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200029057825182559160200191906001019062000273565b506200029e929150620002a2565b5090565b5b808211156200029e5760008155600101620002a3565b600181811c90821680620002ce57607f821691505b60208210811415620002f057634e487b7160e01b600052602260045260246000fd5b50919050565b612a8480620003066000396000f3fe60806040526004361061021a5760003560e01c80636aaa571d11610123578063a58e640a116100ab578063ca8001441161006f578063ca800144146105e2578063de5f986614610602578063e985e9c514610617578063f2fde38b14610660578063f759867a1461068057600080fd5b8063a58e640a14610534578063aef6ee1f1461056d578063b88d4fde1461058d578063bdc32be0146105ad578063c87b56dd146105c257600080fd5b80638da5cb5b116100f25780638da5cb5b146104ac57806391b7f5ed146104ca57806395d89b41146104ea57806398d5fdca146104ff578063a22cb4651461051457600080fd5b80636aaa571d1461045957806370a082311461046f578063715018a61461048f578063853828b6146104a457600080fd5b806335c6b22b116101a65780634f6ccce7116101755780634f6ccce7146103cf57806354f63ee5146103ef57806355f804b3146104045780635e55b5c6146104245780636352211e1461043957600080fd5b806335c6b22b1461035957806342842e0e1461036f578063438b63001461038f5780634a759ecc146103bc57600080fd5b80630869f72d116101ed5780630869f72d146102c5578063095ea7b3146102da57806318160ddd146102fa57806323b872dd146103195780632f745c591461033957600080fd5b806301ffc9a71461021f57806306fdde0314610254578063070f5c0914610276578063081812fc1461028d575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461262c565b610693565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106be565b60405161024b91906127a4565b34801561028257600080fd5b5061028b610750565b005b34801561029957600080fd5b506102ad6102a83660046126af565b61078f565b6040516001600160a01b03909116815260200161024b565b3480156102d157600080fd5b5061028b610824565b3480156102e657600080fd5b5061028b6102f536600461258d565b61085b565b34801561030657600080fd5b506008545b60405190815260200161024b565b34801561032557600080fd5b5061028b610334366004612499565b610971565b34801561034557600080fd5b5061030b61035436600461258d565b6109a2565b34801561036557600080fd5b5061030b60165481565b34801561037b57600080fd5b5061028b61038a366004612499565b610a38565b34801561039b57600080fd5b506103af6103aa36600461244b565b610a53565b60405161024b9190612760565b61028b6103ca3660046126af565b610af5565b3480156103db57600080fd5b5061030b6103ea3660046126af565b610c93565b3480156103fb57600080fd5b5061028b610d26565b34801561041057600080fd5b5061028b61041f366004612666565b610d5f565b34801561043057600080fd5b5061028b610da0565b34801561044557600080fd5b506102ad6104543660046126af565b610ddb565b34801561046557600080fd5b5061030b60175481565b34801561047b57600080fd5b5061030b61048a36600461244b565b610e52565b34801561049b57600080fd5b5061028b610ed9565b61028b610f0f565b3480156104b857600080fd5b50600a546001600160a01b03166102ad565b3480156104d657600080fd5b5061028b6104e53660046126af565b611161565b3480156104f657600080fd5b50610269611190565b34801561050b57600080fd5b5060155461030b565b34801561052057600080fd5b5061028b61052f366004612551565b61119f565b34801561054057600080fd5b5061023f61054f36600461244b565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561057957600080fd5b5061028b6105883660046125b7565b611264565b34801561059957600080fd5b5061028b6105a83660046124d5565b611428565b3480156105b957600080fd5b50610269611460565b3480156105ce57600080fd5b506102696105dd3660046126af565b61149a565b3480156105ee57600080fd5b5061028b6105fd36600461258d565b611575565b34801561060e57600080fd5b5061030b611641565b34801561062357600080fd5b5061023f610632366004612466565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066c57600080fd5b5061028b61067b36600461244b565b611670565b61028b61068e3660046126af565b61170b565b60006001600160e01b0319821663780e9d6360e01b14806106b857506106b88261193e565b92915050565b6060600080546106cd90612960565b80601f01602080910402602001604051908101604052809291908181526020018280546106f990612960565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b600a546001600160a01b031633146107835760405162461bcd60e51b815260040161077a9061284c565b60405180910390fd5b6018805460ff19169055565b6000818152600260205260408120546001600160a01b03166108085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077a565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b0316331461084e5760405162461bcd60e51b815260040161077a9061284c565b6018805461ff0019169055565b600061086682610ddb565b9050806001600160a01b0316836001600160a01b031614156108d45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161077a565b336001600160a01b03821614806108f057506108f08133610632565b6109625760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161077a565b61096c838361198e565b505050565b61097b33826119fc565b6109975760405162461bcd60e51b815260040161077a90612881565b61096c838383611af3565b60006109ad83610e52565b8210610a0f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161077a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61096c83838360405180602001604052806000815250611428565b60606000610a6083610e52565b905060008167ffffffffffffffff811115610a7d57610a7d612a22565b604051908082528060200260200182016040528015610aa6578160200160208202803683370190505b50905060005b82811015610aed57610abe85826109a2565b828281518110610ad057610ad0612a0c565b602090810291909101015280610ae58161299b565b915050610aac565b509392505050565b6000610b0060085490565b601854909150610100900460ff16610b5a5760405162461bcd60e51b815260206004820152601e60248201527f4d61696e2053616c65206973206e6f7420617661696c61626c65207965740000604482015260640161077a565b600082118015610b6a5750601582105b610bc15760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79203120746f203230206d696e747320706572207472616e736163746960448201526137b760f11b606482015260840161077a565b6014548282601754610bd391906128d2565b610bdd91906128d2565b1115610c2b5760405162461bcd60e51b815260206004820152601960248201527f4e6f206d6f726520617661696c61626c6520746f206d696e7400000000000000604482015260640161077a565b81601554610c3991906128fe565b341015610c585760405162461bcd60e51b815260040161077a90612809565b60005b8281101561096c57610c8133610c7183856128d2565b610c7c9060016128d2565b611c9e565b80610c8b8161299b565b915050610c5b565b6000610c9e60085490565b8210610d015760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161077a565b60088281548110610d1457610d14612a0c565b90600052602060002001549050919050565b600a546001600160a01b03163314610d505760405162461bcd60e51b815260040161077a9061284c565b6018805460ff19166001179055565b600a546001600160a01b03163314610d895760405162461bcd60e51b815260040161077a9061284c565b8051610d9c906013906020840190612320565b5050565b600a546001600160a01b03163314610dca5760405162461bcd60e51b815260040161077a9061284c565b6018805461ff001916610100179055565b6000818152600260205260408120546001600160a01b0316806106b85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161077a565b60006001600160a01b038216610ebd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161077a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f035760405162461bcd60e51b815260040161077a9061284c565b610f0d6000611cb8565b565b600a546001600160a01b03163314610f395760405162461bcd60e51b815260040161077a9061284c565b600b546001600160a01b03166108fc610f536064476128ea565b610f5e9060056128fe565b6040518115909202916000818181858888f19350505050610f7e57600080fd5b600c546001600160a01b03166108fc610f986064476128ea565b610fa39060056128fe565b6040518115909202916000818181858888f19350505050610fc357600080fd5b600d546001600160a01b03166108fc610fdd6064476128ea565b610fe890600a6128fe565b6040518115909202916000818181858888f1935050505061100857600080fd5b600e546001600160a01b03166108fc6110226064476128ea565b61102d9060056128fe565b6040518115909202916000818181858888f1935050505061104d57600080fd5b600f546001600160a01b03166108fc6110676064476128ea565b6110729060056128fe565b6040518115909202916000818181858888f1935050505061109257600080fd5b6010546001600160a01b03166108fc6110ac6064476128ea565b6110b790602d6128fe565b6040518115909202916000818181858888f193505050506110d757600080fd5b6011546001600160a01b03166108fc6110f16064476128ea565b6110fc9060146128fe565b6040518115909202916000818181858888f1935050505061111c57600080fd5b6012546001600160a01b03166108fc6111366064476128ea565b6111419060056128fe565b6040518115909202916000818181858888f19350505050610f0d57600080fd5b600a546001600160a01b0316331461118b5760405162461bcd60e51b815260040161077a9061284c565b601555565b6060600180546106cd90612960565b6001600160a01b0382163314156111f85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161077a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461128e5760405162461bcd60e51b815260040161077a9061284c565b60005b8181101561096c5760008383838181106112ad576112ad612a0c565b90506020020160208101906112c2919061244b565b6001600160a01b031614156113195760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161077a565b60016019600085858581811061133157611331612a0c565b9050602002016020810190611346919061244b565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601a8185858581811061138657611386612a0c565b905060200201602081019061139b919061244b565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116113c8576000611415565b601a60008484848181106113de576113de612a0c565b90506020020160208101906113f3919061244b565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806114208161299b565b915050611291565b61143233836119fc565b61144e5760405162461bcd60e51b815260040161077a90612881565b61145a84848484611d0a565b50505050565b600a546060906001600160a01b0316331461148d5760405162461bcd60e51b815260040161077a9061284c565b601380546106cd90612960565b6000818152600260205260409020546060906001600160a01b03166115195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077a565b6000611523611d3d565b90506000815111611543576040518060200160405280600081525061156e565b8061154d84611d4c565b60405160200161155e9291906126f4565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461159f5760405162461bcd60e51b815260040161077a9061284c565b60006115aa60085490565b90506017548211156115fe5760405162461bcd60e51b815260206004820152601960248201527f45786365656473204e4654206d696e74696e67206c696d697400000000000000604482015260640161077a565b8160176000828254611610919061291d565b90915550600090505b8281101561145a5761162f84610c7183856128d2565b806116398161299b565b915050611619565b60008061164d60085490565b905060175481601454611660919061291d565b61166a919061291d565b91505090565b600a546001600160a01b0316331461169a5760405162461bcd60e51b815260040161077a9061284c565b6001600160a01b0381166116ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077a565b61170881611cb8565b50565b600061171660085490565b60185490915060ff1661176b5760405162461bcd60e51b815260206004820152601760248201527f50726573616c6520686173206e6f742073746172746564000000000000000000604482015260640161077a565b3360009081526019602052604090205460ff166117d65760405162461bcd60e51b8152602060048201526024808201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560448201526373616c6560e01b606482015260840161077a565b60145482826017546117e891906128d2565b6117f291906128d2565b11156118405760405162461bcd60e51b815260206004820181905260248201527f4e6f206d6f7265204e4654277320617661696c61626c6520666f72206d696e74604482015260640161077a565b601654336000908152601a602052604090205461185e9084906128d2565b11156118c05760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f75676820617661696c61626c6520746f206d696e742064757260448201526a696e672070726573616c6560a81b606482015260840161077a565b816015546118ce91906128fe565b3410156118ed5760405162461bcd60e51b815260040161077a90612809565b60005b8281101561096c57336000908152601a602052604081208054600192906119189084906128d2565b9091555061192c905033610c7183856128d2565b806119368161299b565b9150506118f0565b60006001600160e01b031982166380ac58cd60e01b148061196f57506001600160e01b03198216635b5e139f60e01b145b806106b857506301ffc9a760e01b6001600160e01b03198316146106b8565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119c382610ddb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077a565b6000611a8083610ddb565b9050806001600160a01b0316846001600160a01b03161480611abb5750836001600160a01b0316611ab08461078f565b6001600160a01b0316145b80611aeb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b0682610ddb565b6001600160a01b031614611b6e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161077a565b6001600160a01b038216611bd05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161077a565b611bdb838383611e4a565b611be660008261198e565b6001600160a01b0383166000908152600360205260408120805460019290611c0f90849061291d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c3d9084906128d2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d9c828260405180602001604052806000815250611f02565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d15848484611af3565b611d2184848484611f35565b61145a5760405162461bcd60e51b815260040161077a906127b7565b6060601380546106cd90612960565b606081611d705750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d9a5780611d848161299b565b9150611d939050600a836128ea565b9150611d74565b60008167ffffffffffffffff811115611db557611db5612a22565b6040519080825280601f01601f191660200182016040528015611ddf576020820181803683370190505b5090505b8415611aeb57611df460018361291d565b9150611e01600a866129b6565b611e0c9060306128d2565b60f81b818381518110611e2157611e21612a0c565b60200101906001600160f81b031916908160001a905350611e43600a866128ea565b9450611de3565b6001600160a01b038316611ea557611ea081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ec8565b816001600160a01b0316836001600160a01b031614611ec857611ec88382612042565b6001600160a01b038216611edf5761096c816120df565b826001600160a01b0316826001600160a01b03161461096c5761096c828261218e565b611f0c83836121d2565b611f196000848484611f35565b61096c5760405162461bcd60e51b815260040161077a906127b7565b60006001600160a01b0384163b1561203757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f79903390899088908890600401612723565b602060405180830381600087803b158015611f9357600080fd5b505af1925050508015611fc3575060408051601f3d908101601f19168201909252611fc091810190612649565b60015b61201d573d808015611ff1576040519150601f19603f3d011682016040523d82523d6000602084013e611ff6565b606091505b5080516120155760405162461bcd60e51b815260040161077a906127b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aeb565b506001949350505050565b6000600161204f84610e52565b612059919061291d565b6000838152600760205260409020549091508082146120ac576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120f19060019061291d565b6000838152600960205260408120546008805493945090928490811061211957612119612a0c565b90600052602060002001549050806008838154811061213a5761213a612a0c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612172576121726129f6565b6001900381819060005260206000200160009055905550505050565b600061219983610e52565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161077a565b6000818152600260205260409020546001600160a01b03161561228d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161077a565b61229960008383611e4a565b6001600160a01b03821660009081526003602052604081208054600192906122c29084906128d2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461232c90612960565b90600052602060002090601f01602090048101928261234e5760008555612394565b82601f1061236757805160ff1916838001178555612394565b82800160010185558215612394579182015b82811115612394578251825591602001919060010190612379565b506123a09291506123a4565b5090565b5b808211156123a057600081556001016123a5565b600067ffffffffffffffff808411156123d4576123d4612a22565b604051601f8501601f19908116603f011681019082821181831017156123fc576123fc612a22565b8160405280935085815286868601111561241557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461244657600080fd5b919050565b60006020828403121561245d57600080fd5b61156e8261242f565b6000806040838503121561247957600080fd5b6124828361242f565b91506124906020840161242f565b90509250929050565b6000806000606084860312156124ae57600080fd5b6124b78461242f565b92506124c56020850161242f565b9150604084013590509250925092565b600080600080608085870312156124eb57600080fd5b6124f48561242f565b93506125026020860161242f565b925060408501359150606085013567ffffffffffffffff81111561252557600080fd5b8501601f8101871361253657600080fd5b612545878235602084016123b9565b91505092959194509250565b6000806040838503121561256457600080fd5b61256d8361242f565b91506020830135801515811461258257600080fd5b809150509250929050565b600080604083850312156125a057600080fd5b6125a98361242f565b946020939093013593505050565b600080602083850312156125ca57600080fd5b823567ffffffffffffffff808211156125e257600080fd5b818501915085601f8301126125f657600080fd5b81358181111561260557600080fd5b8660208260051b850101111561261a57600080fd5b60209290920196919550909350505050565b60006020828403121561263e57600080fd5b813561156e81612a38565b60006020828403121561265b57600080fd5b815161156e81612a38565b60006020828403121561267857600080fd5b813567ffffffffffffffff81111561268f57600080fd5b8201601f810184136126a057600080fd5b611aeb848235602084016123b9565b6000602082840312156126c157600080fd5b5035919050565b600081518084526126e0816020860160208601612934565b601f01601f19169290920160200192915050565b60008351612706818460208801612934565b83519083019061271a818360208801612934565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612756908301846126c8565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127985783518352928401929184019160010161277c565b50909695505050505050565b60208152600061156e60208301846126c8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526023908201527f506c656173652073656e6420636f727265637420616d6f756e74206f662065746040820152623432b960e91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128e5576128e56129ca565b500190565b6000826128f9576128f96129e0565b500490565b6000816000190483118215151615612918576129186129ca565b500290565b60008282101561292f5761292f6129ca565b500390565b60005b8381101561294f578181015183820152602001612937565b8381111561145a5750506000910152565b600181811c9082168061297457607f821691505b6020821081141561299557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129af576129af6129ca565b5060010190565b6000826129c5576129c56129e0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461170857600080fdfea264697066735822122061d9c0636717249e68a69fab6459aff86f4079f4d85ddc7094976a512df9d63d64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636aaa571d11610123578063a58e640a116100ab578063ca8001441161006f578063ca800144146105e2578063de5f986614610602578063e985e9c514610617578063f2fde38b14610660578063f759867a1461068057600080fd5b8063a58e640a14610534578063aef6ee1f1461056d578063b88d4fde1461058d578063bdc32be0146105ad578063c87b56dd146105c257600080fd5b80638da5cb5b116100f25780638da5cb5b146104ac57806391b7f5ed146104ca57806395d89b41146104ea57806398d5fdca146104ff578063a22cb4651461051457600080fd5b80636aaa571d1461045957806370a082311461046f578063715018a61461048f578063853828b6146104a457600080fd5b806335c6b22b116101a65780634f6ccce7116101755780634f6ccce7146103cf57806354f63ee5146103ef57806355f804b3146104045780635e55b5c6146104245780636352211e1461043957600080fd5b806335c6b22b1461035957806342842e0e1461036f578063438b63001461038f5780634a759ecc146103bc57600080fd5b80630869f72d116101ed5780630869f72d146102c5578063095ea7b3146102da57806318160ddd146102fa57806323b872dd146103195780632f745c591461033957600080fd5b806301ffc9a71461021f57806306fdde0314610254578063070f5c0914610276578063081812fc1461028d575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461262c565b610693565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106be565b60405161024b91906127a4565b34801561028257600080fd5b5061028b610750565b005b34801561029957600080fd5b506102ad6102a83660046126af565b61078f565b6040516001600160a01b03909116815260200161024b565b3480156102d157600080fd5b5061028b610824565b3480156102e657600080fd5b5061028b6102f536600461258d565b61085b565b34801561030657600080fd5b506008545b60405190815260200161024b565b34801561032557600080fd5b5061028b610334366004612499565b610971565b34801561034557600080fd5b5061030b61035436600461258d565b6109a2565b34801561036557600080fd5b5061030b60165481565b34801561037b57600080fd5b5061028b61038a366004612499565b610a38565b34801561039b57600080fd5b506103af6103aa36600461244b565b610a53565b60405161024b9190612760565b61028b6103ca3660046126af565b610af5565b3480156103db57600080fd5b5061030b6103ea3660046126af565b610c93565b3480156103fb57600080fd5b5061028b610d26565b34801561041057600080fd5b5061028b61041f366004612666565b610d5f565b34801561043057600080fd5b5061028b610da0565b34801561044557600080fd5b506102ad6104543660046126af565b610ddb565b34801561046557600080fd5b5061030b60175481565b34801561047b57600080fd5b5061030b61048a36600461244b565b610e52565b34801561049b57600080fd5b5061028b610ed9565b61028b610f0f565b3480156104b857600080fd5b50600a546001600160a01b03166102ad565b3480156104d657600080fd5b5061028b6104e53660046126af565b611161565b3480156104f657600080fd5b50610269611190565b34801561050b57600080fd5b5060155461030b565b34801561052057600080fd5b5061028b61052f366004612551565b61119f565b34801561054057600080fd5b5061023f61054f36600461244b565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561057957600080fd5b5061028b6105883660046125b7565b611264565b34801561059957600080fd5b5061028b6105a83660046124d5565b611428565b3480156105b957600080fd5b50610269611460565b3480156105ce57600080fd5b506102696105dd3660046126af565b61149a565b3480156105ee57600080fd5b5061028b6105fd36600461258d565b611575565b34801561060e57600080fd5b5061030b611641565b34801561062357600080fd5b5061023f610632366004612466565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066c57600080fd5b5061028b61067b36600461244b565b611670565b61028b61068e3660046126af565b61170b565b60006001600160e01b0319821663780e9d6360e01b14806106b857506106b88261193e565b92915050565b6060600080546106cd90612960565b80601f01602080910402602001604051908101604052809291908181526020018280546106f990612960565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b600a546001600160a01b031633146107835760405162461bcd60e51b815260040161077a9061284c565b60405180910390fd5b6018805460ff19169055565b6000818152600260205260408120546001600160a01b03166108085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077a565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b0316331461084e5760405162461bcd60e51b815260040161077a9061284c565b6018805461ff0019169055565b600061086682610ddb565b9050806001600160a01b0316836001600160a01b031614156108d45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161077a565b336001600160a01b03821614806108f057506108f08133610632565b6109625760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161077a565b61096c838361198e565b505050565b61097b33826119fc565b6109975760405162461bcd60e51b815260040161077a90612881565b61096c838383611af3565b60006109ad83610e52565b8210610a0f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161077a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61096c83838360405180602001604052806000815250611428565b60606000610a6083610e52565b905060008167ffffffffffffffff811115610a7d57610a7d612a22565b604051908082528060200260200182016040528015610aa6578160200160208202803683370190505b50905060005b82811015610aed57610abe85826109a2565b828281518110610ad057610ad0612a0c565b602090810291909101015280610ae58161299b565b915050610aac565b509392505050565b6000610b0060085490565b601854909150610100900460ff16610b5a5760405162461bcd60e51b815260206004820152601e60248201527f4d61696e2053616c65206973206e6f7420617661696c61626c65207965740000604482015260640161077a565b600082118015610b6a5750601582105b610bc15760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79203120746f203230206d696e747320706572207472616e736163746960448201526137b760f11b606482015260840161077a565b6014548282601754610bd391906128d2565b610bdd91906128d2565b1115610c2b5760405162461bcd60e51b815260206004820152601960248201527f4e6f206d6f726520617661696c61626c6520746f206d696e7400000000000000604482015260640161077a565b81601554610c3991906128fe565b341015610c585760405162461bcd60e51b815260040161077a90612809565b60005b8281101561096c57610c8133610c7183856128d2565b610c7c9060016128d2565b611c9e565b80610c8b8161299b565b915050610c5b565b6000610c9e60085490565b8210610d015760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161077a565b60088281548110610d1457610d14612a0c565b90600052602060002001549050919050565b600a546001600160a01b03163314610d505760405162461bcd60e51b815260040161077a9061284c565b6018805460ff19166001179055565b600a546001600160a01b03163314610d895760405162461bcd60e51b815260040161077a9061284c565b8051610d9c906013906020840190612320565b5050565b600a546001600160a01b03163314610dca5760405162461bcd60e51b815260040161077a9061284c565b6018805461ff001916610100179055565b6000818152600260205260408120546001600160a01b0316806106b85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161077a565b60006001600160a01b038216610ebd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161077a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f035760405162461bcd60e51b815260040161077a9061284c565b610f0d6000611cb8565b565b600a546001600160a01b03163314610f395760405162461bcd60e51b815260040161077a9061284c565b600b546001600160a01b03166108fc610f536064476128ea565b610f5e9060056128fe565b6040518115909202916000818181858888f19350505050610f7e57600080fd5b600c546001600160a01b03166108fc610f986064476128ea565b610fa39060056128fe565b6040518115909202916000818181858888f19350505050610fc357600080fd5b600d546001600160a01b03166108fc610fdd6064476128ea565b610fe890600a6128fe565b6040518115909202916000818181858888f1935050505061100857600080fd5b600e546001600160a01b03166108fc6110226064476128ea565b61102d9060056128fe565b6040518115909202916000818181858888f1935050505061104d57600080fd5b600f546001600160a01b03166108fc6110676064476128ea565b6110729060056128fe565b6040518115909202916000818181858888f1935050505061109257600080fd5b6010546001600160a01b03166108fc6110ac6064476128ea565b6110b790602d6128fe565b6040518115909202916000818181858888f193505050506110d757600080fd5b6011546001600160a01b03166108fc6110f16064476128ea565b6110fc9060146128fe565b6040518115909202916000818181858888f1935050505061111c57600080fd5b6012546001600160a01b03166108fc6111366064476128ea565b6111419060056128fe565b6040518115909202916000818181858888f19350505050610f0d57600080fd5b600a546001600160a01b0316331461118b5760405162461bcd60e51b815260040161077a9061284c565b601555565b6060600180546106cd90612960565b6001600160a01b0382163314156111f85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161077a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461128e5760405162461bcd60e51b815260040161077a9061284c565b60005b8181101561096c5760008383838181106112ad576112ad612a0c565b90506020020160208101906112c2919061244b565b6001600160a01b031614156113195760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161077a565b60016019600085858581811061133157611331612a0c565b9050602002016020810190611346919061244b565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601a8185858581811061138657611386612a0c565b905060200201602081019061139b919061244b565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116113c8576000611415565b601a60008484848181106113de576113de612a0c565b90506020020160208101906113f3919061244b565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806114208161299b565b915050611291565b61143233836119fc565b61144e5760405162461bcd60e51b815260040161077a90612881565b61145a84848484611d0a565b50505050565b600a546060906001600160a01b0316331461148d5760405162461bcd60e51b815260040161077a9061284c565b601380546106cd90612960565b6000818152600260205260409020546060906001600160a01b03166115195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077a565b6000611523611d3d565b90506000815111611543576040518060200160405280600081525061156e565b8061154d84611d4c565b60405160200161155e9291906126f4565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461159f5760405162461bcd60e51b815260040161077a9061284c565b60006115aa60085490565b90506017548211156115fe5760405162461bcd60e51b815260206004820152601960248201527f45786365656473204e4654206d696e74696e67206c696d697400000000000000604482015260640161077a565b8160176000828254611610919061291d565b90915550600090505b8281101561145a5761162f84610c7183856128d2565b806116398161299b565b915050611619565b60008061164d60085490565b905060175481601454611660919061291d565b61166a919061291d565b91505090565b600a546001600160a01b0316331461169a5760405162461bcd60e51b815260040161077a9061284c565b6001600160a01b0381166116ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077a565b61170881611cb8565b50565b600061171660085490565b60185490915060ff1661176b5760405162461bcd60e51b815260206004820152601760248201527f50726573616c6520686173206e6f742073746172746564000000000000000000604482015260640161077a565b3360009081526019602052604090205460ff166117d65760405162461bcd60e51b8152602060048201526024808201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560448201526373616c6560e01b606482015260840161077a565b60145482826017546117e891906128d2565b6117f291906128d2565b11156118405760405162461bcd60e51b815260206004820181905260248201527f4e6f206d6f7265204e4654277320617661696c61626c6520666f72206d696e74604482015260640161077a565b601654336000908152601a602052604090205461185e9084906128d2565b11156118c05760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f75676820617661696c61626c6520746f206d696e742064757260448201526a696e672070726573616c6560a81b606482015260840161077a565b816015546118ce91906128fe565b3410156118ed5760405162461bcd60e51b815260040161077a90612809565b60005b8281101561096c57336000908152601a602052604081208054600192906119189084906128d2565b9091555061192c905033610c7183856128d2565b806119368161299b565b9150506118f0565b60006001600160e01b031982166380ac58cd60e01b148061196f57506001600160e01b03198216635b5e139f60e01b145b806106b857506301ffc9a760e01b6001600160e01b03198316146106b8565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119c382610ddb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077a565b6000611a8083610ddb565b9050806001600160a01b0316846001600160a01b03161480611abb5750836001600160a01b0316611ab08461078f565b6001600160a01b0316145b80611aeb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b0682610ddb565b6001600160a01b031614611b6e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161077a565b6001600160a01b038216611bd05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161077a565b611bdb838383611e4a565b611be660008261198e565b6001600160a01b0383166000908152600360205260408120805460019290611c0f90849061291d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c3d9084906128d2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d9c828260405180602001604052806000815250611f02565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d15848484611af3565b611d2184848484611f35565b61145a5760405162461bcd60e51b815260040161077a906127b7565b6060601380546106cd90612960565b606081611d705750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d9a5780611d848161299b565b9150611d939050600a836128ea565b9150611d74565b60008167ffffffffffffffff811115611db557611db5612a22565b6040519080825280601f01601f191660200182016040528015611ddf576020820181803683370190505b5090505b8415611aeb57611df460018361291d565b9150611e01600a866129b6565b611e0c9060306128d2565b60f81b818381518110611e2157611e21612a0c565b60200101906001600160f81b031916908160001a905350611e43600a866128ea565b9450611de3565b6001600160a01b038316611ea557611ea081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ec8565b816001600160a01b0316836001600160a01b031614611ec857611ec88382612042565b6001600160a01b038216611edf5761096c816120df565b826001600160a01b0316826001600160a01b03161461096c5761096c828261218e565b611f0c83836121d2565b611f196000848484611f35565b61096c5760405162461bcd60e51b815260040161077a906127b7565b60006001600160a01b0384163b1561203757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f79903390899088908890600401612723565b602060405180830381600087803b158015611f9357600080fd5b505af1925050508015611fc3575060408051601f3d908101601f19168201909252611fc091810190612649565b60015b61201d573d808015611ff1576040519150601f19603f3d011682016040523d82523d6000602084013e611ff6565b606091505b5080516120155760405162461bcd60e51b815260040161077a906127b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aeb565b506001949350505050565b6000600161204f84610e52565b612059919061291d565b6000838152600760205260409020549091508082146120ac576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120f19060019061291d565b6000838152600960205260408120546008805493945090928490811061211957612119612a0c565b90600052602060002001549050806008838154811061213a5761213a612a0c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612172576121726129f6565b6001900381819060005260206000200160009055905550505050565b600061219983610e52565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161077a565b6000818152600260205260409020546001600160a01b03161561228d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161077a565b61229960008383611e4a565b6001600160a01b03821660009081526003602052604081208054600192906122c29084906128d2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461232c90612960565b90600052602060002090601f01602090048101928261234e5760008555612394565b82601f1061236757805160ff1916838001178555612394565b82800160010185558215612394579182015b82811115612394578251825591602001919060010190612379565b506123a09291506123a4565b5090565b5b808211156123a057600081556001016123a5565b600067ffffffffffffffff808411156123d4576123d4612a22565b604051601f8501601f19908116603f011681019082821181831017156123fc576123fc612a22565b8160405280935085815286868601111561241557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461244657600080fd5b919050565b60006020828403121561245d57600080fd5b61156e8261242f565b6000806040838503121561247957600080fd5b6124828361242f565b91506124906020840161242f565b90509250929050565b6000806000606084860312156124ae57600080fd5b6124b78461242f565b92506124c56020850161242f565b9150604084013590509250925092565b600080600080608085870312156124eb57600080fd5b6124f48561242f565b93506125026020860161242f565b925060408501359150606085013567ffffffffffffffff81111561252557600080fd5b8501601f8101871361253657600080fd5b612545878235602084016123b9565b91505092959194509250565b6000806040838503121561256457600080fd5b61256d8361242f565b91506020830135801515811461258257600080fd5b809150509250929050565b600080604083850312156125a057600080fd5b6125a98361242f565b946020939093013593505050565b600080602083850312156125ca57600080fd5b823567ffffffffffffffff808211156125e257600080fd5b818501915085601f8301126125f657600080fd5b81358181111561260557600080fd5b8660208260051b850101111561261a57600080fd5b60209290920196919550909350505050565b60006020828403121561263e57600080fd5b813561156e81612a38565b60006020828403121561265b57600080fd5b815161156e81612a38565b60006020828403121561267857600080fd5b813567ffffffffffffffff81111561268f57600080fd5b8201601f810184136126a057600080fd5b611aeb848235602084016123b9565b6000602082840312156126c157600080fd5b5035919050565b600081518084526126e0816020860160208601612934565b601f01601f19169290920160200192915050565b60008351612706818460208801612934565b83519083019061271a818360208801612934565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612756908301846126c8565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127985783518352928401929184019160010161277c565b50909695505050505050565b60208152600061156e60208301846126c8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526023908201527f506c656173652073656e6420636f727265637420616d6f756e74206f662065746040820152623432b960e91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128e5576128e56129ca565b500190565b6000826128f9576128f96129e0565b500490565b6000816000190483118215151615612918576129186129ca565b500290565b60008282101561292f5761292f6129ca565b500390565b60005b8381101561294f578181015183820152602001612937565b8381111561145a5750506000910152565b600181811c9082168061297457607f821691505b6020821081141561299557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129af576129af6129ca565b5060010190565b6000826129c5576129c56129e0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461170857600080fdfea264697066735822122061d9c0636717249e68a69fab6459aff86f4079f4d85ddc7094976a512df9d63d64736f6c63430008070033

Deployed Bytecode Sourcemap

43186:5203:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36967:224;;;;;;;;;;-1:-1:-1;36967:224:0;;;;;:::i;:::-;;:::i;:::-;;;6903:14:1;;6896:22;6878:41;;6866:2;6851:18;36967:224:0;;;;;;;;24859:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46620:89::-;;;;;;;;;;;;;:::i;:::-;;26418:221;;;;;;;;;;-1:-1:-1;26418:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5564:32:1;;;5546:51;;5534:2;5519:18;26418:221:0;5400:203:1;46721:91:0;;;;;;;;;;;;;:::i;25941:411::-;;;;;;;;;;-1:-1:-1;25941:411:0;;;;;:::i;:::-;;:::i;37607:113::-;;;;;;;;;;-1:-1:-1;37695:10:0;:17;37607:113;;;18263:25:1;;;18251:2;18236:18;37607:113:0;18117:177:1;27308:339:0;;;;;;;;;;-1:-1:-1;27308:339:0;;;;;:::i;:::-;;:::i;37275:256::-;;;;;;;;;;-1:-1:-1;37275:256:0;;;;;:::i;:::-;;:::i;43877:33::-;;;;;;;;;;;;;;;;27718:185;;;;;;;;;;-1:-1:-1;27718:185:0;;;;;:::i;:::-;;:::i;45849:342::-;;;;;;;;;;-1:-1:-1;45849:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45307:533::-;;;;;;:::i;:::-;;:::i;37797:233::-;;;;;;;;;;-1:-1:-1;37797:233:0;;;;;:::i;:::-;;:::i;46420:89::-;;;;;;;;;;;;;:::i;46942:102::-;;;;;;;;;;-1:-1:-1;46942:102:0;;;;;:::i;:::-;;:::i;46521:91::-;;;;;;;;;;;;;:::i;24553:239::-;;;;;;;;;;-1:-1:-1;24553:239:0;;;;;:::i;:::-;;:::i;43917:30::-;;;;;;;;;;;;;;;;24283:208;;;;;;;;;;-1:-1:-1;24283:208:0;;;;;:::i;:::-;;:::i;4558:94::-;;;;;;;;;;;;;:::i;47759:627::-;;;:::i;3907:87::-;;;;;;;;;;-1:-1:-1;3980:6:0;;-1:-1:-1;;;;;3980:6:0;3907:87;;46199:93;;;;;;;;;;-1:-1:-1;46199:93:0;;;;;:::i;:::-;;:::i;25028:104::-;;;;;;;;;;;;;:::i;47052:81::-;;;;;;;;;;-1:-1:-1;47119:6:0;;47052:81;;26711:295;;;;;;;;;;-1:-1:-1;26711:295:0;;;;;:::i;:::-;;:::i;46300:108::-;;;;;;;;;;-1:-1:-1;46300:108:0;;;;;:::i;:::-;-1:-1:-1;;;;;46384:16:0;46355:4;46384:16;;;:10;:16;;;;;;;;;46300:108;44218:353;;;;;;;;;;-1:-1:-1;44218:353:0;;;;;:::i;:::-;;:::i;27974:328::-;;;;;;;;;;-1:-1:-1;27974:328:0;;;;;:::i;:::-;;:::i;47141:111::-;;;;;;;;;;;;;:::i;25203:334::-;;;;;;;;;;-1:-1:-1;25203:334:0;;;;;:::i;:::-;;:::i;47424:327::-;;;;;;;;;;-1:-1:-1;47424:327:0;;;;;:::i;:::-;;:::i;47264:152::-;;;;;;;;;;;;;:::i;27077:164::-;;;;;;;;;;-1:-1:-1;27077:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27198:25:0;;;27174:4;27198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27077:164;4807:192;;;;;;;;;;-1:-1:-1;4807:192:0;;;;;:::i;:::-;;:::i;44583:716::-;;;;;;:::i;:::-;;:::i;36967:224::-;37069:4;-1:-1:-1;;;;;;37093:50:0;;-1:-1:-1;;;37093:50:0;;:90;;;37147:36;37171:11;37147:23;:36::i;:::-;37086:97;36967:224;-1:-1:-1;;36967:224:0:o;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;46620:89::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;;;;;;;;;46679:14:::1;:22:::0;;-1:-1:-1;;46679:22:0::1;::::0;;46620:89::o;26418:221::-;26494:7;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;26514:73;;;;-1:-1:-1;;;26514:73:0;;14722:2:1;26514:73:0;;;14704:21:1;14761:2;14741:18;;;14734:30;14800:34;14780:18;;;14773:62;-1:-1:-1;;;14851:18:1;;;14844:42;14903:19;;26514:73:0;14520:408:1;26514:73:0;-1:-1:-1;26607:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26607:24:0;;26418:221::o;46721:91::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46781:15:::1;:23:::0;;-1:-1:-1;;46781:23:0::1;::::0;;46721:91::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;-1:-1:-1;;;;;26080:11:0;:2;-1:-1:-1;;;;;26080:11:0;;;26072:57;;;;-1:-1:-1;;;26072:57:0;;16322:2:1;26072:57:0;;;16304:21:1;16361:2;16341:18;;;16334:30;16400:34;16380:18;;;16373:62;-1:-1:-1;;;16451:18:1;;;16444:31;16492:19;;26072:57:0;16120:397:1;26072:57:0;2775:10;-1:-1:-1;;;;;26164:21:0;;;;:62;;-1:-1:-1;26189:37:0;26206:5;2775:10;27077:164;:::i;26189:37::-;26142:168;;;;-1:-1:-1;;;26142:168:0;;12711:2:1;26142:168:0;;;12693:21:1;12750:2;12730:18;;;12723:30;12789:34;12769:18;;;12762:62;12860:26;12840:18;;;12833:54;12904:19;;26142:168:0;12509:420:1;26142:168:0;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;27308:339::-;27503:41;2775:10;27536:7;27503:18;:41::i;:::-;27495:103;;;;-1:-1:-1;;;27495:103:0;;;;;;;:::i;:::-;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;37275:256::-;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;-1:-1:-1;;;37392:87:0;;8831:2:1;37392:87:0;;;8813:21:1;8870:2;8850:18;;;8843:30;8909:34;8889:18;;;8882:62;-1:-1:-1;;;8960:18:1;;;8953:41;9011:19;;37392:87:0;8629:407:1;37392:87:0;-1:-1:-1;;;;;;37497:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37275:256::o;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;45849:342::-;45908:16;45937:18;45958:17;45968:6;45958:9;:17::i;:::-;45937:38;;45988:25;46030:10;46016:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46016:25:0;;45988:53;;46056:9;46052:106;46071:10;46067:1;:14;46052:106;;;46116:30;46136:6;46144:1;46116:19;:30::i;:::-;46102:8;46111:1;46102:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46083:3;;;;:::i;:::-;;;;46052:106;;;-1:-1:-1;46175:8:0;45849:342;-1:-1:-1;;;45849:342:0:o;45307:533::-;45368:14;45385:13;37695:10;:17;;37607:113;45385:13;45418:15;;45368:30;;-1:-1:-1;45418:15:0;;;;;45409:60;;;;-1:-1:-1;;;45409:60:0;;8472:2:1;45409:60:0;;;8454:21:1;8511:2;8491:18;;;8484:30;8550:32;8530:18;;;8523:60;8600:18;;45409:60:0;8270:354:1;45409:60:0;45495:1;45489:3;:7;:19;;;;;45506:2;45500:3;:8;45489:19;45480:68;;;;-1:-1:-1;;;45480:68:0;;7356:2:1;45480:68:0;;;7338:21:1;7395:2;7375:18;;;7368:30;7434:34;7414:18;;;7407:62;-1:-1:-1;;;7485:18:1;;;7478:32;7527:19;;45480:68:0;7154:398:1;45480:68:0;45596:10;;45589:3;45580:6;45568:9;;:18;;;;:::i;:::-;:24;;;;:::i;:::-;:38;;45559:78;;;;-1:-1:-1;;;45559:78:0;;12003:2:1;45559:78:0;;;11985:21:1;12042:2;12022:18;;;12015:30;12081:27;12061:18;;;12054:55;12126:18;;45559:78:0;11801:349:1;45559:78:0;45679:3;45670:6;;:12;;;;:::i;:::-;45657:9;:25;;45648:75;;;;-1:-1:-1;;;45648:75:0;;;;;;;:::i;:::-;45740:9;45736:97;45759:3;45755:1;:7;45736:97;;;45783:38;45794:10;45806;45815:1;45806:6;:10;:::i;:::-;:14;;45819:1;45806:14;:::i;:::-;45783:9;:38::i;:::-;45764:3;;;;:::i;:::-;;;;45736:97;;37797:233;37872:7;37908:30;37695:10;:17;;37607:113;37908:30;37900:5;:38;37892:95;;;;-1:-1:-1;;;37892:95:0;;17494:2:1;37892:95:0;;;17476:21:1;17533:2;17513:18;;;17506:30;17572:34;17552:18;;;17545:62;-1:-1:-1;;;17623:18:1;;;17616:42;17675:19;;37892:95:0;17292:408:1;37892:95:0;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;37998:24;;37797:233;;;:::o;46420:89::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46480:14:::1;:21:::0;;-1:-1:-1;;46480:21:0::1;46497:4;46480:21;::::0;;46420:89::o;46942:102::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;47009:27;;::::1;::::0;:13:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46942:102:::0;:::o;46521:91::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46582:15:::1;:22:::0;;-1:-1:-1;;46582:22:0::1;;;::::0;;46521:91::o;24553:239::-;24625:7;24661:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24661:16:0;24696:19;24688:73;;;;-1:-1:-1;;;24688:73:0;;13951:2:1;24688:73:0;;;13933:21:1;13990:2;13970:18;;;13963:30;14029:34;14009:18;;;14002:62;-1:-1:-1;;;14080:18:1;;;14073:39;14129:19;;24688:73:0;13749:405:1;24283:208:0;24355:7;-1:-1:-1;;;;;24383:19:0;;24375:74;;;;-1:-1:-1;;;24375:74:0;;13540:2:1;24375:74:0;;;13522:21:1;13579:2;13559:18;;;13552:30;13618:34;13598:18;;;13591:62;-1:-1:-1;;;13669:18:1;;;13662:40;13719:19;;24375:74:0;13338:406:1;24375:74:0;-1:-1:-1;;;;;;24467:16:0;;;;;:9;:16;;;;;;;24283:208::o;4558:94::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;47759:627::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;47834:4:::1;::::0;-1:-1:-1;;;;;47834:4:0::1;47826:51;47845:27;47869:3;47845:21;:27;:::i;:::-;:31;::::0;47875:1:::1;47845:31;:::i;:::-;47826:51;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;47818:60;;;::::0;::::1;;47905:4;::::0;-1:-1:-1;;;;;47905:4:0::1;47897:51;47916:27;47940:3;47916:21;:27;:::i;:::-;:31;::::0;47946:1:::1;47916:31;:::i;:::-;47897:51;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;47889:60;;;::::0;::::1;;47976:4;::::0;-1:-1:-1;;;;;47976:4:0::1;47968:52;47987:27;48011:3;47987:21;:27;:::i;:::-;:32;::::0;48017:2:::1;47987:32;:::i;:::-;47968:52;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;47960:61;;;::::0;::::1;;48048:4;::::0;-1:-1:-1;;;;;48048:4:0::1;48040:51;48059:27;48083:3;48059:21;:27;:::i;:::-;:31;::::0;48089:1:::1;48059:31;:::i;:::-;48040:51;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48032:60;;;::::0;::::1;;48119:4;::::0;-1:-1:-1;;;;;48119:4:0::1;48111:51;48130:27;48154:3;48130:21;:27;:::i;:::-;:31;::::0;48160:1:::1;48130:31;:::i;:::-;48111:51;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48103:60;;;::::0;::::1;;48190:4;::::0;-1:-1:-1;;;;;48190:4:0::1;48182:52;48201:27;48225:3;48201:21;:27;:::i;:::-;:32;::::0;48231:2:::1;48201:32;:::i;:::-;48182:52;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48174:61;;;::::0;::::1;;48262:4;::::0;-1:-1:-1;;;;;48262:4:0::1;48254:52;48273:27;48297:3;48273:21;:27;:::i;:::-;:32;::::0;48303:2:::1;48273:32;:::i;:::-;48254:52;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48246:61;;;::::0;::::1;;48334:4;::::0;-1:-1:-1;;;;;48334:4:0::1;48326:51;48345:27;48369:3;48345:21;:27;:::i;:::-;:31;::::0;48375:1:::1;48345:31;:::i;:::-;48326:51;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48318:60;;;::::0;::::1;46199:93:::0;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46266:6:::1;:18:::0;46199:93::o;25028:104::-;25084:13;25117:7;25110:14;;;;;:::i;26711:295::-;-1:-1:-1;;;;;26814:24:0;;2775:10;26814:24;;26806:62;;;;-1:-1:-1;;;26806:62:0;;10831:2:1;26806:62:0;;;10813:21:1;10870:2;10850:18;;;10843:30;10909:27;10889:18;;;10882:55;10954:18;;26806:62:0;10629:349:1;26806:62:0;2775:10;26881:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26881:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26881:53:0;;;;;;;;;;26950:48;;6878:41:1;;;26881:42:0;;2775:10;26950:48;;6851:18:1;26950:48:0;;;;;;;26711:295;;:::o;44218:353::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;44305:9:::1;44300:264;44320:20:::0;;::::1;44300:264;;;44394:1;44370:9:::0;;44380:1;44370:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44370:26:0::1;;;44362:62;;;::::0;-1:-1:-1;;;44362:62:0;;16724:2:1;44362:62:0::1;::::0;::::1;16706:21:1::0;16763:2;16743:18;;;16736:30;16802:25;16782:18;;;16775:53;16845:18;;44362:62:0::1;16522:347:1::0;44362:62:0::1;44468:4;44441:10;:24;44452:9;;44462:1;44452:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44441:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;44441:24:0;;;:31;;-1:-1:-1;;44441:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;44487:13:::1;-1:-1:-1::0;44501:9:0;;44511:1;44501:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44487:27:0::1;-1:-1:-1::0;;;;;44487:27:0::1;;;;;;;;;;;;;:31;:65;;44551:1;44487:65;;;44521:13;:27;44535:9;;44545:1;44535:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44521:27:0::1;-1:-1:-1::0;;;;;44521:27:0::1;;;;;;;;;;;;;44487:65;-1:-1:-1::0;44342:3:0;::::1;::::0;::::1;:::i;:::-;;;;44300:264;;27974:328:::0;28149:41;2775:10;28182:7;28149:18;:41::i;:::-;28141:103;;;;-1:-1:-1;;;28141:103:0;;;;;;;:::i;:::-;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;:::-;27974:328;;;;:::o;47141:111::-;3980:6;;47199:13;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;47231:13:::1;47224:20;;;;;:::i;25203:334::-:0;29877:4;29901:16;;;:7;:16;;;;;;25276:13;;-1:-1:-1;;;;;29901:16:0;25302:76;;;;-1:-1:-1;;;25302:76:0;;15906:2:1;25302:76:0;;;15888:21:1;15945:2;15925:18;;;15918:30;15984:34;15964:18;;;15957:62;-1:-1:-1;;;16035:18:1;;;16028:45;16090:19;;25302:76:0;15704:411:1;25302:76:0;25391:21;25415:10;:8;:10::i;:::-;25391:34;;25467:1;25449:7;25443:21;:25;:86;;;;;;;;;;;;;;;;;25495:7;25504:18;:7;:16;:18::i;:::-;25478:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25443:86;25436:93;25203:334;-1:-1:-1;;;25203:334:0:o;47424:327::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;47504:14:::1;47521:13;37695:10:::0;:17;;37607:113;47521:13:::1;47504:30;;47565:9;;47553:8;:21;;47545:60;;;::::0;-1:-1:-1;;;47545:60:0;;12357:2:1;47545:60:0::1;::::0;::::1;12339:21:1::0;12396:2;12376:18;;;12369:30;12435:27;12415:18;;;12408:55;12480:18;;47545:60:0::1;12155:349:1::0;47545:60:0::1;47631:8;47618:9;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;47654:9:0::1;::::0;-1:-1:-1;47650:94:0::1;47673:8;47669:1;:12;47650:94;;;47702:30;47713:2:::0;47717:10:::1;47726:1:::0;47717:6;:10:::1;:::i;47702:30::-;47683:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47650:94;;47264:152:::0;47310:7;47329:14;47346:13;37695:10;:17;;37607:113;47346:13;47329:30;;47399:9;;47390:6;47377:10;;:19;;;;:::i;:::-;:31;;;;:::i;:::-;47370:38;;;47264:152;:::o;4807:192::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4896:22:0;::::1;4888:73;;;::::0;-1:-1:-1;;;4888:73:0;;9662:2:1;4888:73:0::1;::::0;::::1;9644:21:1::0;9701:2;9681:18;;;9674:30;9740:34;9720:18;;;9713:62;-1:-1:-1;;;9791:18:1;;;9784:36;9837:19;;4888:73:0::1;9460:402:1::0;4888:73:0::1;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;44583:716::-;44649:14;44666:13;37695:10;:17;;37607:113;44666:13;44699:14;;44649:30;;-1:-1:-1;44699:14:0;;44690:51;;;;-1:-1:-1;;;44690:51:0;;7759:2:1;44690:51:0;;;7741:21:1;7798:2;7778:18;;;7771:30;7837:25;7817:18;;;7810:53;7880:18;;44690:51:0;7557:347:1;44690:51:0;44772:10;44761:22;;;;:10;:22;;;;;;;;44752:72;;;;-1:-1:-1;;;44752:72:0;;11185:2:1;44752:72:0;;;11167:21:1;11224:2;11204:18;;;11197:30;11263:34;11243:18;;;11236:62;-1:-1:-1;;;11314:18:1;;;11307:34;11358:19;;44752:72:0;10983:400:1;44752:72:0;44872:10;;44865:3;44856:6;44844:9;;:18;;;;:::i;:::-;:24;;;;:::i;:::-;:38;;44835:84;;;;-1:-1:-1;;;44835:84:0;;8111:2:1;44835:84:0;;;8093:21:1;;;8130:18;;;8123:30;8189:34;8169:18;;;8162:62;8241:18;;44835:84:0;7909:356:1;44835:84:0;44974:13;;44953:10;44939:25;;;;:13;:25;;;;;;:31;;44967:3;;44939:31;:::i;:::-;:48;;44930:105;;;;-1:-1:-1;;;44930:105:0;;17907:2:1;44930:105:0;;;17889:21:1;17946:2;17926:18;;;17919:30;17985:34;17965:18;;;17958:62;-1:-1:-1;;;18036:18:1;;;18029:41;18087:19;;44930:105:0;17705:407:1;44930:105:0;45077:3;45068:6;;:12;;;;:::i;:::-;45055:9;:25;;45046:75;;;;-1:-1:-1;;;45046:75:0;;;;;;;:::i;:::-;45147:9;45142:150;45166:3;45162:1;:7;45142:150;;;45208:10;45194:25;;;;:13;:25;;;;;:30;;45223:1;;45194:25;:30;;45223:1;;45194:30;:::i;:::-;;;;-1:-1:-1;45242:38:0;;-1:-1:-1;45253:10:0;45265;45274:1;45265:6;:10;:::i;45242:38::-;45171:3;;;;:::i;:::-;;;;45142:150;;23914:305;24016:4;-1:-1:-1;;;;;;24053:40:0;;-1:-1:-1;;;24053:40:0;;:105;;-1:-1:-1;;;;;;;24110:48:0;;-1:-1:-1;;;24110:48:0;24053:105;:158;;;-1:-1:-1;;;;;;;;;;16002:40:0;;;24175:36;15893:157;33794:174;33869:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33869:29:0;-1:-1:-1;;;;;33869:29:0;;;;;;;;:24;;33923:23;33869:24;33923:14;:23::i;:::-;-1:-1:-1;;;;;33914:46:0;;;;;;;;;;;33794:174;;:::o;30106:348::-;30199:4;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;30216:73;;;;-1:-1:-1;;;30216:73:0;;11590:2:1;30216:73:0;;;11572:21:1;11629:2;11609:18;;;11602:30;11668:34;11648:18;;;11641:62;-1:-1:-1;;;11719:18:1;;;11712:42;11771:19;;30216:73:0;11388:408:1;30216:73:0;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;-1:-1:-1;;;;;30358:16:0;:7;-1:-1:-1;;;;;30358:16:0;;:51;;;;30402:7;-1:-1:-1;;;;;30378:31:0;:20;30390:7;30378:11;:20::i;:::-;-1:-1:-1;;;;;30378:31:0;;30358:51;:87;;;-1:-1:-1;;;;;;27198:25:0;;;27174:4;27198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30413:32;30350:96;30106:348;-1:-1:-1;;;;30106:348:0:o;33098:578::-;33257:4;-1:-1:-1;;;;;33230:31:0;:23;33245:7;33230:14;:23::i;:::-;-1:-1:-1;;;;;33230:31:0;;33222:85;;;;-1:-1:-1;;;33222:85:0;;15496:2:1;33222:85:0;;;15478:21:1;15535:2;15515:18;;;15508:30;15574:34;15554:18;;;15547:62;-1:-1:-1;;;15625:18:1;;;15618:39;15674:19;;33222:85:0;15294:405:1;33222:85:0;-1:-1:-1;;;;;33326:16:0;;33318:65;;;;-1:-1:-1;;;33318:65:0;;10426:2:1;33318:65:0;;;10408:21:1;10465:2;10445:18;;;10438:30;10504:34;10484:18;;;10477:62;-1:-1:-1;;;10555:18:1;;;10548:34;10599:19;;33318:65:0;10224:400:1;33318:65:0;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;-1:-1:-1;;;;;33542:15:0;;;;;;:9;:15;;;;;:20;;33561:1;;33542:15;:20;;33561:1;;33542:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33573:13:0;;;;;;:9;:13;;;;;:18;;33590:1;;33573:13;:18;;33590:1;;33573:18;:::i;:::-;;;;-1:-1:-1;;33602:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33602:21:0;-1:-1:-1;;;;;33602:21:0;;;;;;;;;33641:27;;33602:16;;33641:27;;;;;;;33098:578;;;:::o;30796:110::-;30872:26;30882:2;30886:7;30872:26;;;;;;;;;;;;:9;:26::i;5007:173::-;5082:6;;;-1:-1:-1;;;;;5099:17:0;;;-1:-1:-1;;;;;;5099:17:0;;;;;;;5132:40;;5082:6;;;5099:17;5082:6;;5132:40;;5063:16;;5132:40;5052:128;5007:173;:::o;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;-1:-1:-1;;;29380:111:0;;;;;;;:::i;46820:114::-;46880:13;46913;46906:20;;;;;:::i;311:723::-;367:13;588:10;584:53;;-1:-1:-1;;615:10:0;;;;;;;;;;;;-1:-1:-1;;;615:10:0;;;;;311:723::o;584:53::-;662:5;647:12;703:78;710:9;;703:78;;736:8;;;;:::i;:::-;;-1:-1:-1;759:10:0;;-1:-1:-1;767:2:0;759:10;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;813:17:0;;791:39;;841:154;848:10;;841:154;;875:11;885:1;875:11;;:::i;:::-;;-1:-1:-1;944:10:0;952:2;944:5;:10;:::i;:::-;931:24;;:2;:24;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;901:56:0;;;;;;;;-1:-1:-1;972:11:0;981:2;972:11;;:::i;:::-;;;841:154;;38643:589;-1:-1:-1;;;;;38849:18:0;;38845:187;;38884:40;38916:7;40059:10;:17;;40032:24;;;;:15;:24;;;;;:44;;;40087:24;;;;;;;;;;;;39955:164;38884:40;38845:187;;;38954:2;-1:-1:-1;;;;;38946:10:0;:4;-1:-1:-1;;;;;38946:10:0;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;-1:-1:-1;;;;;39046:16:0;;39042:183;;39079:45;39116:7;39079:36;:45::i;39042:183::-;39152:4;-1:-1:-1;;;;;39146:10:0;:2;-1:-1:-1;;;;;39146:10:0;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;31133:321::-;31263:18;31269:2;31273:7;31263:5;:18::i;:::-;31314:54;31345:1;31349:2;31353:7;31362:5;31314:22;:54::i;:::-;31292:154;;;;-1:-1:-1;;;31292:154:0;;;;;;;:::i;34533:799::-;34688:4;-1:-1:-1;;;;;34709:13:0;;6276:20;6324:8;34705:620;;34745:72;;-1:-1:-1;;;34745:72:0;;-1:-1:-1;;;;;34745:36:0;;;;;:72;;2775:10;;34796:4;;34802:7;;34811:5;;34745:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34745:72:0;;;;;;;;-1:-1:-1;;34745:72:0;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34987:13:0;;34983:272;;35030:60;;-1:-1:-1;;;35030:60:0;;;;;;;:::i;34983:272::-;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;-1:-1:-1;;;;;;34868:51:0;-1:-1:-1;;;34868:51:0;;-1:-1:-1;34861:58:0;;34705:620;-1:-1:-1;35309:4:0;34533:799;;;;;;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41074:18;41095:26;;;:17;:26;;;;;;41012:51;;-1:-1:-1;41228:28:0;;;41224:328;;-1:-1:-1;;;;;41295:18:0;;41273:19;41295:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41346:30;;;;;;:44;;;41463:30;;:17;:30;;;;;:43;;;41224:328;-1:-1:-1;41648:26:0;;;;:17;:26;;;;;;;;41641:33;;;-1:-1:-1;;;;;41692:18:0;;;;;:12;:18;;;;;:34;;;;;;;41685:41;40746:988::o;42029:1079::-;42307:10;:17;42282:22;;42307:21;;42327:1;;42307:21;:::i;:::-;42339:18;42360:24;;;:15;:24;;;;;;42733:10;:26;;42282:46;;-1:-1:-1;42360:24:0;;42282:46;;42733:26;;;;;;:::i;:::-;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42877:28;;;:15;:28;;;;;;;:41;;;43049:24;;;;;43042:31;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;-1:-1:-1;;;;;39666:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39711:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39533:221:0:o;31790:382::-;-1:-1:-1;;;;;31870:16:0;;31862:61;;;;-1:-1:-1;;;31862:61:0;;14361:2:1;31862:61:0;;;14343:21:1;;;14380:18;;;14373:30;14439:34;14419:18;;;14412:62;14491:18;;31862:61:0;14159:356:1;31862:61:0;29877:4;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;:30;31934:58;;;;-1:-1:-1;;;31934:58:0;;10069:2:1;31934:58:0;;;10051:21:1;10108:2;10088:18;;;10081:30;10147;10127:18;;;10120:58;10195:18;;31934:58:0;9867:352:1;31934:58:0;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;-1:-1:-1;;;;;32063:13:0;;;;;;:9;:13;;;;;:18;;32080:1;;32063:13;:18;;32080:1;;32063:18;:::i;:::-;;;;-1:-1:-1;;32092:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32092:21:0;-1:-1:-1;;;;;32092:21:0;;;;;;;;32131:33;;32092:16;;;32131:33;;32092:16;;32131:33;31790: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:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:470::-;5104:3;5142:6;5136:13;5158:53;5204:6;5199:3;5192:4;5184:6;5180:17;5158:53;:::i;:::-;5274:13;;5233:16;;;;5296:57;5274:13;5233:16;5330:4;5318:17;;5296:57;:::i;:::-;5369:20;;4925:470;-1:-1:-1;;;;4925:470:1:o;5608:488::-;-1:-1:-1;;;;;5877:15:1;;;5859:34;;5929:15;;5924:2;5909:18;;5902:43;5976:2;5961:18;;5954:34;;;6024:3;6019:2;6004:18;;5997:31;;;5802:4;;6045:45;;6070:19;;6062:6;6045:45;:::i;:::-;6037:53;5608:488;-1:-1:-1;;;;;;5608:488:1:o;6101:632::-;6272:2;6324:21;;;6394:13;;6297:18;;;6416:22;;;6243:4;;6272:2;6495:15;;;;6469:2;6454:18;;;6243:4;6538:169;6552:6;6549:1;6546:13;6538:169;;;6613:13;;6601:26;;6682:15;;;;6647:12;;;;6574:1;6567:9;6538:169;;;-1:-1:-1;6724:3:1;;6101:632;-1:-1:-1;;;;;;6101:632:1:o;6930:219::-;7079:2;7068:9;7061:21;7042:4;7099:44;7139:2;7128:9;7124:18;7116:6;7099:44;:::i;9041:414::-;9243:2;9225:21;;;9282:2;9262:18;;;9255:30;9321:34;9316:2;9301:18;;9294:62;-1:-1:-1;;;9387:2:1;9372:18;;9365:48;9445:3;9430:19;;9041:414::o;12934:399::-;13136:2;13118:21;;;13175:2;13155:18;;;13148:30;13214:34;13209:2;13194:18;;13187:62;-1:-1:-1;;;13280:2:1;13265:18;;13258:33;13323:3;13308:19;;12934:399::o;14933:356::-;15135:2;15117:21;;;15154:18;;;15147:30;15213:34;15208:2;15193:18;;15186:62;15280:2;15265:18;;14933:356::o;16874:413::-;17076:2;17058:21;;;17115:2;17095:18;;;17088:30;17154:34;17149:2;17134:18;;17127:62;-1:-1:-1;;;17220:2:1;17205:18;;17198:47;17277:3;17262:19;;16874:413::o;18299:128::-;18339:3;18370:1;18366:6;18363:1;18360:13;18357:39;;;18376:18;;:::i;:::-;-1:-1:-1;18412:9:1;;18299:128::o;18432:120::-;18472:1;18498;18488:35;;18503:18;;:::i;:::-;-1:-1:-1;18537:9:1;;18432:120::o;18557:168::-;18597:7;18663:1;18659;18655:6;18651:14;18648:1;18645:21;18640:1;18633:9;18626:17;18622:45;18619:71;;;18670:18;;:::i;:::-;-1:-1:-1;18710:9:1;;18557:168::o;18730:125::-;18770:4;18798:1;18795;18792:8;18789:34;;;18803:18;;:::i;:::-;-1:-1:-1;18840:9:1;;18730:125::o;18860:258::-;18932:1;18942:113;18956:6;18953:1;18950:13;18942:113;;;19032:11;;;19026:18;19013:11;;;19006:39;18978:2;18971:10;18942:113;;;19073:6;19070:1;19067:13;19064:48;;;-1:-1:-1;;19108:1:1;19090:16;;19083:27;18860:258::o;19123:380::-;19202:1;19198:12;;;;19245;;;19266:61;;19320:4;19312:6;19308:17;19298:27;;19266:61;19373:2;19365:6;19362:14;19342:18;19339:38;19336:161;;;19419:10;19414:3;19410:20;19407:1;19400:31;19454:4;19451:1;19444:15;19482:4;19479:1;19472:15;19336:161;;19123:380;;;:::o;19508:135::-;19547:3;-1:-1:-1;;19568:17:1;;19565:43;;;19588:18;;:::i;:::-;-1:-1:-1;19635:1:1;19624:13;;19508:135::o;19648:112::-;19680:1;19706;19696:35;;19711:18;;:::i;:::-;-1:-1:-1;19745:9:1;;19648:112::o;19765:127::-;19826:10;19821:3;19817:20;19814:1;19807:31;19857:4;19854:1;19847:15;19881:4;19878:1;19871:15;19897:127;19958:10;19953:3;19949:20;19946:1;19939:31;19989:4;19986:1;19979:15;20013:4;20010:1;20003:15;20029:127;20090:10;20085:3;20081:20;20078:1;20071:31;20121:4;20118:1;20111:15;20145:4;20142:1;20135:15;20161:127;20222:10;20217:3;20213:20;20210:1;20203:31;20253:4;20250:1;20243:15;20277:4;20274:1;20267:15;20293:127;20354:10;20349:3;20345:20;20342:1;20335:31;20385:4;20382:1;20375:15;20409:4;20406:1;20399:15;20425:131;-1:-1:-1;;;;;;20499:32:1;;20489:43;;20479:71;;20546:1;20543;20536:12

Swarm Source

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