ETH Price: $3,095.86 (+0.92%)
Gas: 15 Gwei

Token

Turtle Tanks (TRLT)
 

Overview

Max Total Supply

615 TRLT

Holders

172

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TRLT
0x518944eb64b16a66a78ae5e6298ca8e321417fdc
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TurtleTanks

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-27
*/

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/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/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/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: @openzeppelin/contracts/utils/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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// 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/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}. 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 || ERC721.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 || ERC721.isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

// 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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



pragma solidity ^0.8.0;




/**
 * @title TurtleTank contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */

contract TurtleTanks is ERC721, ERC721Enumerable, Ownable {
    string public PROVENANCE;
    uint256 public tokenPrice = 30000000000000000; // 0.0005 ETH
    uint256 public MAX_TOKENS = 10000;
    uint public constant maxTokenPurchase = 10;
    bool public saleIsActive = false;

    string public _baseURIextended;
    uint public teamreserve = 500;
    uint public presaleTokens = 1000;

    bool public presaleDone = false;
    
    mapping(address => uint) private freeTokenMinted;
    mapping(address => uint) private reserveInfluencer;



    constructor() ERC721("Turtle Tanks", "TRLT") {
    }

    // CHANGED: needed to resolve conflicting fns in ERC721 and ERC721Enumerable
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // CHANGED: needed to resolve conflicting fns in ERC721 and ERC721Enumerable
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    // CHANGED: added to account for changes in openzeppelin versions
    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

    // CHANGED: added to account for changes in openzeppelin versions
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
        
    }

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }
    // for both giveaway and team
    function reserveTeam(address _to, uint256 _reserveAmount) public {    
        require(totalSupply() + _reserveAmount <= MAX_TOKENS, "Reserve would exceed max supply of tokens");
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= teamreserve, "Not enough reserve left for team");
        teamreserve -= _reserveAmount; // max reserve for both team and influencers

        if (totalSupply() + _reserveAmount >= presaleTokens && totalSupply() < presaleTokens && presaleDone == false){  
            saleIsActive = false;
            presaleDone = true;
        }
        if (msg.sender != owner()){
            require(reserveInfluencer[msg.sender] + _reserveAmount >= 0, "Not enough reserve left");
            reserveInfluencer[msg.sender] -= _reserveAmount;
        }
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    // set free mintable by influencer
    function addInfluencer (address to, uint256 tokensToReserve) public onlyOwner{
        reserveInfluencer[to] = tokensToReserve;
    }
    
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    function mint(uint numberOfTokens) public payable { 
        require(saleIsActive, "Sale must be active to mint Tokens");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply of tokens");
        require(tokenPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");
        require(numberOfTokens <= maxTokenPurchase, "Exceeded max token purchase");

        // Last tokens of presale -> stop presale
        if (totalSupply() + numberOfTokens >= presaleTokens && totalSupply() < presaleTokens && presaleDone == false){  
            saleIsActive = false;
            presaleDone = true;
        }
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_TOKENS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
        
    }
    

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURIextended","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokensToReserve","type":"uint256"}],"name":"addInfluencer","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":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","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":[],"name":"teamreserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"tokenPrice","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052666a94d74f430000600c55612710600d55600e805460ff199081169091556101f46010556103e86011556012805490911690553480156200004457600080fd5b50604080518082018252600c81526b547572746c652054616e6b7360a01b6020808301918252835180850190945260048452631514931560e21b908401528151919291620000959160009162000118565b508051620000ab90600190602084019062000118565b5050506000620000c06200011460201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001fb565b3390565b8280546200012690620001be565b90600052602060002090601f0160209004810192826200014a576000855562000195565b82601f106200016557805160ff191683800117855562000195565b8280016001018555821562000195579182015b828111156200019557825182559160200191906001019062000178565b50620001a3929150620001a7565b5090565b5b80821115620001a35760008155600101620001a8565b600281046001821680620001d357607f821691505b60208210811415620001f557634e487b7160e01b600052602260045260246000fd5b50919050565b612693806200020b6000396000f3fe6080604052600436106102045760003560e01c80635faf855411610118578063a0712d68116100a0578063e985e9c51161006f578063e985e9c514610561578063eb8d244414610581578063f2fde38b14610596578063f47c84c5146105b6578063ffe630b5146105cb57610204565b8063a0712d68146104ee578063a22cb46514610501578063b88d4fde14610521578063c87b56dd1461054157610204565b806370a08231116100e757806370a082311461047a578063715018a61461049a5780637ff9b596146104af5780638da5cb5b146104c457806395d89b41146104d957610204565b80635faf85541461041b5780636352211e146104305780636373a6b1146104505780636826bca81461046557610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e1461037b578063456b62651461039b5780634b8afde1146103bb5780634f6ccce7146103db57806355f804b3146103fb57610204565b806323b872dd146103115780632f745c591461033157806334918dfd146103515780633ccfd60b1461036657610204565b8063095ea7b3116101d7578063095ea7b3146102a357806309aa3dcf146102c55780630a09815c146102e757806318160ddd146102fc57610204565b806301ffc9a71461020957806306fdde031461023f578063081812fc146102615780630928fc221461028e575b600080fd5b34801561021557600080fd5b50610229610224366004611cf5565b6105eb565b6040516102369190611e37565b60405180910390f35b34801561024b57600080fd5b506102546105fe565b6040516102369190611e42565b34801561026d57600080fd5b5061028161027c366004611d73565b610690565b6040516102369190611de6565b34801561029a57600080fd5b506102546106dc565b3480156102af57600080fd5b506102c36102be366004611ccc565b61076a565b005b3480156102d157600080fd5b506102da610802565b6040516102369190612501565b3480156102f357600080fd5b506102da610807565b34801561030857600080fd5b506102da61080d565b34801561031d57600080fd5b506102c361032c366004611bde565b610813565b34801561033d57600080fd5b506102da61034c366004611ccc565b61084b565b34801561035d57600080fd5b506102c361089d565b34801561037257600080fd5b506102c36108f0565b34801561038757600080fd5b506102c3610396366004611bde565b610962565b3480156103a757600080fd5b506102c36103b6366004611ccc565b61097d565b3480156103c757600080fd5b506102c36103d6366004611ccc565b610b10565b3480156103e757600080fd5b506102da6103f6366004611d73565b610b6b565b34801561040757600080fd5b506102c3610416366004611d2d565b610bc6565b34801561042757600080fd5b50610229610c18565b34801561043c57600080fd5b5061028161044b366004611d73565b610c21565b34801561045c57600080fd5b50610254610c56565b34801561047157600080fd5b506102da610c63565b34801561048657600080fd5b506102da610495366004611b92565b610c69565b3480156104a657600080fd5b506102c3610cad565b3480156104bb57600080fd5b506102da610d36565b3480156104d057600080fd5b50610281610d3c565b3480156104e557600080fd5b50610254610d4b565b6102c36104fc366004611d73565b610d5a565b34801561050d57600080fd5b506102c361051c366004611c92565b610e9d565b34801561052d57600080fd5b506102c361053c366004611c19565b610f6b565b34801561054d57600080fd5b5061025461055c366004611d73565b610fa4565b34801561056d57600080fd5b5061022961057c366004611bac565b611027565b34801561058d57600080fd5b50610229611055565b3480156105a257600080fd5b506102c36105b1366004611b92565b61105e565b3480156105c257600080fd5b506102da61111f565b3480156105d757600080fd5b506102c36105e6366004611d2d565b611125565b60006105f682611177565b90505b919050565b60606000805461060d90612598565b80601f016020809104026020016040519081016040528092919081815260200182805461063990612598565b80156106865780601f1061065b57610100808354040283529160200191610686565b820191906000526020600020905b81548152906001019060200180831161066957829003601f168201915b5050505050905090565b600061069b8261119c565b6106c05760405162461bcd60e51b81526004016106b790612253565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600f80546106e990612598565b80601f016020809104026020016040519081016040528092919081815260200182805461071590612598565b80156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b505050505081565b600061077582610c21565b9050806001600160a01b0316836001600160a01b031614156107a95760405162461bcd60e51b81526004016106b7906123a3565b806001600160a01b03166107bb6111b9565b6001600160a01b031614806107d757506107d78161057c6111b9565b6107f35760405162461bcd60e51b81526004016106b7906120e4565b6107fd83836111bd565b505050565b600a81565b60115481565b60085490565b61082461081e6111b9565b8261122b565b6108405760405162461bcd60e51b81526004016106b79061241b565b6107fd8383836112b0565b600061085683610c69565b82106108745760405162461bcd60e51b81526004016106b790611e55565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108a56111b9565b6001600160a01b03166108b6610d3c565b6001600160a01b0316146108dc5760405162461bcd60e51b81526004016106b79061229f565b600e805460ff19811660ff90911615179055565b6108f86111b9565b6001600160a01b0316610909610d3c565b6001600160a01b03161461092f5760405162461bcd60e51b81526004016106b79061229f565b6040514790339082156108fc029083906000818181858888f1935050505015801561095e573d6000803e3d6000fd5b5050565b6107fd83838360405180602001604052806000815250610f6b565b600d548161098961080d565b610993919061250a565b11156109b15760405162461bcd60e51b81526004016106b7906124b8565b60006109bb61080d565b90506000821180156109cf57506010548211155b6109eb5760405162461bcd60e51b81526004016106b790611f6f565b81601060008282546109fd9190612555565b909155505060115482610a0e61080d565b610a18919061250a565b10158015610a2e5750601154610a2c61080d565b105b8015610a3d575060125460ff16155b15610a5c57600e805460ff199081169091556012805490911660011790555b610a64610d3c565b6001600160a01b0316336001600160a01b031614610ada5733600090815260146020526040812054610a9790849061250a565b1015610ab55760405162461bcd60e51b81526004016106b79061236c565b3360009081526014602052604081208054849290610ad4908490612555565b90915550505b60005b82811015610b0a57610af884610af3838561250a565b6113dd565b80610b02816125d3565b915050610add565b50505050565b610b186111b9565b6001600160a01b0316610b29610d3c565b6001600160a01b031614610b4f5760405162461bcd60e51b81526004016106b79061229f565b6001600160a01b03909116600090815260146020526040902055565b6000610b7561080d565b8210610b935760405162461bcd60e51b81526004016106b79061246c565b60088281548110610bb457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610bce6111b9565b6001600160a01b0316610bdf610d3c565b6001600160a01b031614610c055760405162461bcd60e51b81526004016106b79061229f565b805161095e90600f906020840190611a72565b60125460ff1681565b6000818152600260205260408120546001600160a01b0316806105f65760405162461bcd60e51b81526004016106b79061218b565b600b80546106e990612598565b60105481565b60006001600160a01b038216610c915760405162461bcd60e51b81526004016106b790612141565b506001600160a01b031660009081526003602052604090205490565b610cb56111b9565b6001600160a01b0316610cc6610d3c565b6001600160a01b031614610cec5760405162461bcd60e51b81526004016106b79061229f565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600c5481565b600a546001600160a01b031690565b60606001805461060d90612598565b600e5460ff16610d7c5760405162461bcd60e51b81526004016106b790612056565b600d5481610d8861080d565b610d92919061250a565b1115610db05760405162461bcd60e51b81526004016106b7906121d4565b3481600c54610dbf9190612536565b1115610ddd5760405162461bcd60e51b81526004016106b79061201f565b600a811115610dfe5760405162461bcd60e51b81526004016106b7906123e4565b60115481610e0a61080d565b610e14919061250a565b10158015610e2a5750601154610e2861080d565b105b8015610e39575060125460ff16155b15610e5857600e805460ff199081169091556012805490911660011790555b60005b8181101561095e576000610e6d61080d565b9050600d54610e7a61080d565b1015610e8a57610e8a33826113dd565b5080610e95816125d3565b915050610e5b565b610ea56111b9565b6001600160a01b0316826001600160a01b03161415610ed65760405162461bcd60e51b81526004016106b790611fe8565b8060056000610ee36111b9565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f276111b9565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f5f9190611e37565b60405180910390a35050565b610f7c610f766111b9565b8361122b565b610f985760405162461bcd60e51b81526004016106b79061241b565b610b0a848484846113f7565b6060610faf8261119c565b610fcb5760405162461bcd60e51b81526004016106b79061231d565b6000610fd561142a565b90506000815111610ff55760405180602001604052806000815250611020565b80610fff84611439565b604051602001611010929190611db7565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e5460ff1681565b6110666111b9565b6001600160a01b0316611077610d3c565b6001600160a01b03161461109d5760405162461bcd60e51b81526004016106b79061229f565b6001600160a01b0381166110c35760405162461bcd60e51b81526004016106b790611ef2565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600d5481565b61112d6111b9565b6001600160a01b031661113e610d3c565b6001600160a01b0316146111645760405162461bcd60e51b81526004016106b79061229f565b805161095e90600b906020840190611a72565b60006001600160e01b0319821663780e9d6360e01b14806105f657506105f682611554565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111f282610c21565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112368261119c565b6112525760405162461bcd60e51b81526004016106b790612098565b600061125d83610c21565b9050806001600160a01b0316846001600160a01b031614806112985750836001600160a01b031661128d84610690565b6001600160a01b0316145b806112a857506112a88185611027565b949350505050565b826001600160a01b03166112c382610c21565b6001600160a01b0316146112e95760405162461bcd60e51b81526004016106b7906122d4565b6001600160a01b03821661130f5760405162461bcd60e51b81526004016106b790611fa4565b61131a838383611594565b6113256000826111bd565b6001600160a01b038316600090815260036020526040812080546001929061134e908490612555565b90915550506001600160a01b038216600090815260036020526040812080546001929061137c90849061250a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61095e82826040518060200160405280600081525061159f565b6114028484846112b0565b61140e848484846115d2565b610b0a5760405162461bcd60e51b81526004016106b790611ea0565b6060600f805461060d90612598565b60608161145e57506040805180820190915260018152600360fc1b60208201526105f9565b8160005b81156114885780611472816125d3565b91506114819050600a83612522565b9150611462565b60008167ffffffffffffffff8111156114b157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114db576020820181803683370190505b5090505b84156112a8576114f0600183612555565b91506114fd600a866125ee565b61150890603061250a565b60f81b81838151811061152b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061154d600a86612522565b94506114df565b60006001600160e01b031982166380ac58cd60e01b148061158557506001600160e01b03198216635b5e139f60e01b145b806105f657506105f6826116ed565b6107fd838383611706565b6115a9838361178f565b6115b660008484846115d2565b6107fd5760405162461bcd60e51b81526004016106b790611ea0565b60006115e6846001600160a01b031661186e565b156116e257836001600160a01b031663150b7a026116026111b9565b8786866040518563ffffffff1660e01b81526004016116249493929190611dfa565b602060405180830381600087803b15801561163e57600080fd5b505af192505050801561166e575060408051601f3d908101601f1916820190925261166b91810190611d11565b60015b6116c8573d80801561169c576040519150601f19603f3d011682016040523d82523d6000602084013e6116a1565b606091505b5080516116c05760405162461bcd60e51b81526004016106b790611ea0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112a8565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6117118383836107fd565b6001600160a01b03831661172d5761172881611874565b611750565b816001600160a01b0316836001600160a01b0316146117505761175083826118b8565b6001600160a01b03821661176c5761176781611955565b6107fd565b826001600160a01b0316826001600160a01b0316146107fd576107fd8282611a2e565b6001600160a01b0382166117b55760405162461bcd60e51b81526004016106b79061221e565b6117be8161119c565b156117db5760405162461bcd60e51b81526004016106b790611f38565b6117e760008383611594565b6001600160a01b038216600090815260036020526040812080546001929061181090849061250a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016118c584610c69565b6118cf9190612555565b600083815260076020526040902054909150808214611922576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196790600190612555565b6000838152600960205260408120546008805493945090928490811061199d57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106119cc57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a1257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a3983610c69565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611a7e90612598565b90600052602060002090601f016020900481019282611aa05760008555611ae6565b82601f10611ab957805160ff1916838001178555611ae6565b82800160010185558215611ae6579182015b82811115611ae6578251825591602001919060010190611acb565b50611af2929150611af6565b5090565b5b80821115611af25760008155600101611af7565b600067ffffffffffffffff80841115611b2657611b2661262e565b604051601f8501601f191681016020018281118282101715611b4a57611b4a61262e565b604052848152915081838501861015611b6257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105f957600080fd5b600060208284031215611ba3578081fd5b61102082611b7b565b60008060408385031215611bbe578081fd5b611bc783611b7b565b9150611bd560208401611b7b565b90509250929050565b600080600060608486031215611bf2578081fd5b611bfb84611b7b565b9250611c0960208501611b7b565b9150604084013590509250925092565b60008060008060808587031215611c2e578081fd5b611c3785611b7b565b9350611c4560208601611b7b565b925060408501359150606085013567ffffffffffffffff811115611c67578182fd5b8501601f81018713611c77578182fd5b611c8687823560208401611b0b565b91505092959194509250565b60008060408385031215611ca4578182fd5b611cad83611b7b565b915060208301358015158114611cc1578182fd5b809150509250929050565b60008060408385031215611cde578182fd5b611ce783611b7b565b946020939093013593505050565b600060208284031215611d06578081fd5b813561102081612644565b600060208284031215611d22578081fd5b815161102081612644565b600060208284031215611d3e578081fd5b813567ffffffffffffffff811115611d54578182fd5b8201601f81018413611d64578182fd5b6112a884823560208401611b0b565b600060208284031215611d84578081fd5b5035919050565b60008151808452611da381602086016020860161256c565b601f01601f19169290920160200192915050565b60008351611dc981846020880161256c565b835190830190611ddd81836020880161256c565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e2d90830184611d8b565b9695505050505050565b901515815260200190565b6000602082526110206020830184611d8b565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526022908201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656040820152616e7360f01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526017908201527f4e6f7420656e6f7567682072657365727665206c656674000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601b908201527f4578636565646564206d617820746f6b656e2070757263686173650000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526029908201527f5265736572766520776f756c6420657863656564206d617820737570706c79206040820152686f6620746f6b656e7360b81b606082015260800190565b90815260200190565b6000821982111561251d5761251d612602565b500190565b60008261253157612531612618565b500490565b600081600019048311821515161561255057612550612602565b500290565b60008282101561256757612567612602565b500390565b60005b8381101561258757818101518382015260200161256f565b83811115610b0a5750506000910152565b6002810460018216806125ac57607f821691505b602082108114156125cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125e7576125e7612602565b5060010190565b6000826125fd576125fd612618565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461265a57600080fd5b5056fea2646970667358221220099ac81ef58955d0afe58f546e0151552f4cccb1a18522d3c9de947e78bc2c5264736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635faf855411610118578063a0712d68116100a0578063e985e9c51161006f578063e985e9c514610561578063eb8d244414610581578063f2fde38b14610596578063f47c84c5146105b6578063ffe630b5146105cb57610204565b8063a0712d68146104ee578063a22cb46514610501578063b88d4fde14610521578063c87b56dd1461054157610204565b806370a08231116100e757806370a082311461047a578063715018a61461049a5780637ff9b596146104af5780638da5cb5b146104c457806395d89b41146104d957610204565b80635faf85541461041b5780636352211e146104305780636373a6b1146104505780636826bca81461046557610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e1461037b578063456b62651461039b5780634b8afde1146103bb5780634f6ccce7146103db57806355f804b3146103fb57610204565b806323b872dd146103115780632f745c591461033157806334918dfd146103515780633ccfd60b1461036657610204565b8063095ea7b3116101d7578063095ea7b3146102a357806309aa3dcf146102c55780630a09815c146102e757806318160ddd146102fc57610204565b806301ffc9a71461020957806306fdde031461023f578063081812fc146102615780630928fc221461028e575b600080fd5b34801561021557600080fd5b50610229610224366004611cf5565b6105eb565b6040516102369190611e37565b60405180910390f35b34801561024b57600080fd5b506102546105fe565b6040516102369190611e42565b34801561026d57600080fd5b5061028161027c366004611d73565b610690565b6040516102369190611de6565b34801561029a57600080fd5b506102546106dc565b3480156102af57600080fd5b506102c36102be366004611ccc565b61076a565b005b3480156102d157600080fd5b506102da610802565b6040516102369190612501565b3480156102f357600080fd5b506102da610807565b34801561030857600080fd5b506102da61080d565b34801561031d57600080fd5b506102c361032c366004611bde565b610813565b34801561033d57600080fd5b506102da61034c366004611ccc565b61084b565b34801561035d57600080fd5b506102c361089d565b34801561037257600080fd5b506102c36108f0565b34801561038757600080fd5b506102c3610396366004611bde565b610962565b3480156103a757600080fd5b506102c36103b6366004611ccc565b61097d565b3480156103c757600080fd5b506102c36103d6366004611ccc565b610b10565b3480156103e757600080fd5b506102da6103f6366004611d73565b610b6b565b34801561040757600080fd5b506102c3610416366004611d2d565b610bc6565b34801561042757600080fd5b50610229610c18565b34801561043c57600080fd5b5061028161044b366004611d73565b610c21565b34801561045c57600080fd5b50610254610c56565b34801561047157600080fd5b506102da610c63565b34801561048657600080fd5b506102da610495366004611b92565b610c69565b3480156104a657600080fd5b506102c3610cad565b3480156104bb57600080fd5b506102da610d36565b3480156104d057600080fd5b50610281610d3c565b3480156104e557600080fd5b50610254610d4b565b6102c36104fc366004611d73565b610d5a565b34801561050d57600080fd5b506102c361051c366004611c92565b610e9d565b34801561052d57600080fd5b506102c361053c366004611c19565b610f6b565b34801561054d57600080fd5b5061025461055c366004611d73565b610fa4565b34801561056d57600080fd5b5061022961057c366004611bac565b611027565b34801561058d57600080fd5b50610229611055565b3480156105a257600080fd5b506102c36105b1366004611b92565b61105e565b3480156105c257600080fd5b506102da61111f565b3480156105d757600080fd5b506102c36105e6366004611d2d565b611125565b60006105f682611177565b90505b919050565b60606000805461060d90612598565b80601f016020809104026020016040519081016040528092919081815260200182805461063990612598565b80156106865780601f1061065b57610100808354040283529160200191610686565b820191906000526020600020905b81548152906001019060200180831161066957829003601f168201915b5050505050905090565b600061069b8261119c565b6106c05760405162461bcd60e51b81526004016106b790612253565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600f80546106e990612598565b80601f016020809104026020016040519081016040528092919081815260200182805461071590612598565b80156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b505050505081565b600061077582610c21565b9050806001600160a01b0316836001600160a01b031614156107a95760405162461bcd60e51b81526004016106b7906123a3565b806001600160a01b03166107bb6111b9565b6001600160a01b031614806107d757506107d78161057c6111b9565b6107f35760405162461bcd60e51b81526004016106b7906120e4565b6107fd83836111bd565b505050565b600a81565b60115481565b60085490565b61082461081e6111b9565b8261122b565b6108405760405162461bcd60e51b81526004016106b79061241b565b6107fd8383836112b0565b600061085683610c69565b82106108745760405162461bcd60e51b81526004016106b790611e55565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108a56111b9565b6001600160a01b03166108b6610d3c565b6001600160a01b0316146108dc5760405162461bcd60e51b81526004016106b79061229f565b600e805460ff19811660ff90911615179055565b6108f86111b9565b6001600160a01b0316610909610d3c565b6001600160a01b03161461092f5760405162461bcd60e51b81526004016106b79061229f565b6040514790339082156108fc029083906000818181858888f1935050505015801561095e573d6000803e3d6000fd5b5050565b6107fd83838360405180602001604052806000815250610f6b565b600d548161098961080d565b610993919061250a565b11156109b15760405162461bcd60e51b81526004016106b7906124b8565b60006109bb61080d565b90506000821180156109cf57506010548211155b6109eb5760405162461bcd60e51b81526004016106b790611f6f565b81601060008282546109fd9190612555565b909155505060115482610a0e61080d565b610a18919061250a565b10158015610a2e5750601154610a2c61080d565b105b8015610a3d575060125460ff16155b15610a5c57600e805460ff199081169091556012805490911660011790555b610a64610d3c565b6001600160a01b0316336001600160a01b031614610ada5733600090815260146020526040812054610a9790849061250a565b1015610ab55760405162461bcd60e51b81526004016106b79061236c565b3360009081526014602052604081208054849290610ad4908490612555565b90915550505b60005b82811015610b0a57610af884610af3838561250a565b6113dd565b80610b02816125d3565b915050610add565b50505050565b610b186111b9565b6001600160a01b0316610b29610d3c565b6001600160a01b031614610b4f5760405162461bcd60e51b81526004016106b79061229f565b6001600160a01b03909116600090815260146020526040902055565b6000610b7561080d565b8210610b935760405162461bcd60e51b81526004016106b79061246c565b60088281548110610bb457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610bce6111b9565b6001600160a01b0316610bdf610d3c565b6001600160a01b031614610c055760405162461bcd60e51b81526004016106b79061229f565b805161095e90600f906020840190611a72565b60125460ff1681565b6000818152600260205260408120546001600160a01b0316806105f65760405162461bcd60e51b81526004016106b79061218b565b600b80546106e990612598565b60105481565b60006001600160a01b038216610c915760405162461bcd60e51b81526004016106b790612141565b506001600160a01b031660009081526003602052604090205490565b610cb56111b9565b6001600160a01b0316610cc6610d3c565b6001600160a01b031614610cec5760405162461bcd60e51b81526004016106b79061229f565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600c5481565b600a546001600160a01b031690565b60606001805461060d90612598565b600e5460ff16610d7c5760405162461bcd60e51b81526004016106b790612056565b600d5481610d8861080d565b610d92919061250a565b1115610db05760405162461bcd60e51b81526004016106b7906121d4565b3481600c54610dbf9190612536565b1115610ddd5760405162461bcd60e51b81526004016106b79061201f565b600a811115610dfe5760405162461bcd60e51b81526004016106b7906123e4565b60115481610e0a61080d565b610e14919061250a565b10158015610e2a5750601154610e2861080d565b105b8015610e39575060125460ff16155b15610e5857600e805460ff199081169091556012805490911660011790555b60005b8181101561095e576000610e6d61080d565b9050600d54610e7a61080d565b1015610e8a57610e8a33826113dd565b5080610e95816125d3565b915050610e5b565b610ea56111b9565b6001600160a01b0316826001600160a01b03161415610ed65760405162461bcd60e51b81526004016106b790611fe8565b8060056000610ee36111b9565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f276111b9565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f5f9190611e37565b60405180910390a35050565b610f7c610f766111b9565b8361122b565b610f985760405162461bcd60e51b81526004016106b79061241b565b610b0a848484846113f7565b6060610faf8261119c565b610fcb5760405162461bcd60e51b81526004016106b79061231d565b6000610fd561142a565b90506000815111610ff55760405180602001604052806000815250611020565b80610fff84611439565b604051602001611010929190611db7565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e5460ff1681565b6110666111b9565b6001600160a01b0316611077610d3c565b6001600160a01b03161461109d5760405162461bcd60e51b81526004016106b79061229f565b6001600160a01b0381166110c35760405162461bcd60e51b81526004016106b790611ef2565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600d5481565b61112d6111b9565b6001600160a01b031661113e610d3c565b6001600160a01b0316146111645760405162461bcd60e51b81526004016106b79061229f565b805161095e90600b906020840190611a72565b60006001600160e01b0319821663780e9d6360e01b14806105f657506105f682611554565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111f282610c21565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112368261119c565b6112525760405162461bcd60e51b81526004016106b790612098565b600061125d83610c21565b9050806001600160a01b0316846001600160a01b031614806112985750836001600160a01b031661128d84610690565b6001600160a01b0316145b806112a857506112a88185611027565b949350505050565b826001600160a01b03166112c382610c21565b6001600160a01b0316146112e95760405162461bcd60e51b81526004016106b7906122d4565b6001600160a01b03821661130f5760405162461bcd60e51b81526004016106b790611fa4565b61131a838383611594565b6113256000826111bd565b6001600160a01b038316600090815260036020526040812080546001929061134e908490612555565b90915550506001600160a01b038216600090815260036020526040812080546001929061137c90849061250a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61095e82826040518060200160405280600081525061159f565b6114028484846112b0565b61140e848484846115d2565b610b0a5760405162461bcd60e51b81526004016106b790611ea0565b6060600f805461060d90612598565b60608161145e57506040805180820190915260018152600360fc1b60208201526105f9565b8160005b81156114885780611472816125d3565b91506114819050600a83612522565b9150611462565b60008167ffffffffffffffff8111156114b157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114db576020820181803683370190505b5090505b84156112a8576114f0600183612555565b91506114fd600a866125ee565b61150890603061250a565b60f81b81838151811061152b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061154d600a86612522565b94506114df565b60006001600160e01b031982166380ac58cd60e01b148061158557506001600160e01b03198216635b5e139f60e01b145b806105f657506105f6826116ed565b6107fd838383611706565b6115a9838361178f565b6115b660008484846115d2565b6107fd5760405162461bcd60e51b81526004016106b790611ea0565b60006115e6846001600160a01b031661186e565b156116e257836001600160a01b031663150b7a026116026111b9565b8786866040518563ffffffff1660e01b81526004016116249493929190611dfa565b602060405180830381600087803b15801561163e57600080fd5b505af192505050801561166e575060408051601f3d908101601f1916820190925261166b91810190611d11565b60015b6116c8573d80801561169c576040519150601f19603f3d011682016040523d82523d6000602084013e6116a1565b606091505b5080516116c05760405162461bcd60e51b81526004016106b790611ea0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112a8565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6117118383836107fd565b6001600160a01b03831661172d5761172881611874565b611750565b816001600160a01b0316836001600160a01b0316146117505761175083826118b8565b6001600160a01b03821661176c5761176781611955565b6107fd565b826001600160a01b0316826001600160a01b0316146107fd576107fd8282611a2e565b6001600160a01b0382166117b55760405162461bcd60e51b81526004016106b79061221e565b6117be8161119c565b156117db5760405162461bcd60e51b81526004016106b790611f38565b6117e760008383611594565b6001600160a01b038216600090815260036020526040812080546001929061181090849061250a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016118c584610c69565b6118cf9190612555565b600083815260076020526040902054909150808214611922576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196790600190612555565b6000838152600960205260408120546008805493945090928490811061199d57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106119cc57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a1257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a3983610c69565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611a7e90612598565b90600052602060002090601f016020900481019282611aa05760008555611ae6565b82601f10611ab957805160ff1916838001178555611ae6565b82800160010185558215611ae6579182015b82811115611ae6578251825591602001919060010190611acb565b50611af2929150611af6565b5090565b5b80821115611af25760008155600101611af7565b600067ffffffffffffffff80841115611b2657611b2661262e565b604051601f8501601f191681016020018281118282101715611b4a57611b4a61262e565b604052848152915081838501861015611b6257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105f957600080fd5b600060208284031215611ba3578081fd5b61102082611b7b565b60008060408385031215611bbe578081fd5b611bc783611b7b565b9150611bd560208401611b7b565b90509250929050565b600080600060608486031215611bf2578081fd5b611bfb84611b7b565b9250611c0960208501611b7b565b9150604084013590509250925092565b60008060008060808587031215611c2e578081fd5b611c3785611b7b565b9350611c4560208601611b7b565b925060408501359150606085013567ffffffffffffffff811115611c67578182fd5b8501601f81018713611c77578182fd5b611c8687823560208401611b0b565b91505092959194509250565b60008060408385031215611ca4578182fd5b611cad83611b7b565b915060208301358015158114611cc1578182fd5b809150509250929050565b60008060408385031215611cde578182fd5b611ce783611b7b565b946020939093013593505050565b600060208284031215611d06578081fd5b813561102081612644565b600060208284031215611d22578081fd5b815161102081612644565b600060208284031215611d3e578081fd5b813567ffffffffffffffff811115611d54578182fd5b8201601f81018413611d64578182fd5b6112a884823560208401611b0b565b600060208284031215611d84578081fd5b5035919050565b60008151808452611da381602086016020860161256c565b601f01601f19169290920160200192915050565b60008351611dc981846020880161256c565b835190830190611ddd81836020880161256c565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e2d90830184611d8b565b9695505050505050565b901515815260200190565b6000602082526110206020830184611d8b565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526022908201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656040820152616e7360f01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526017908201527f4e6f7420656e6f7567682072657365727665206c656674000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601b908201527f4578636565646564206d617820746f6b656e2070757263686173650000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526029908201527f5265736572766520776f756c6420657863656564206d617820737570706c79206040820152686f6620746f6b656e7360b81b606082015260800190565b90815260200190565b6000821982111561251d5761251d612602565b500190565b60008261253157612531612618565b500490565b600081600019048311821515161561255057612550612602565b500290565b60008282101561256757612567612602565b500390565b60005b8381101561258757818101518382015260200161256f565b83811115610b0a5750506000910152565b6002810460018216806125ac57607f821691505b602082108114156125cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125e7576125e7612602565b5060010190565b6000826125fd576125fd612618565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461265a57600080fd5b5056fea2646970667358221220099ac81ef58955d0afe58f546e0151552f4cccb1a18522d3c9de947e78bc2c5264736f6c63430008000033

Deployed Bytecode Sourcemap

42926:4019:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43908:179;;;;;;;;;;-1:-1:-1;43908:179:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22493:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23960:221::-;;;;;;;;;;-1:-1:-1;23960:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43218:30::-;;;;;;;;;;;;;:::i;23490:404::-;;;;;;;;;;-1:-1:-1;23490:404:0;;;;;:::i;:::-;;:::i;:::-;;43128:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43291:32::-;;;;;;;;;;;;;:::i;37261:113::-;;;;;;;;;;;;;:::i;24850:305::-;;;;;;;;;;-1:-1:-1;24850:305:0;;;;;:::i;:::-;;:::i;36929:256::-;;;;;;;;;;-1:-1:-1;36929:256:0;;;;;:::i;:::-;;:::i;45771:89::-;;;;;;;;;;;;;:::i;46800:140::-;;;;;;;;;;;;;:::i;25226:151::-;;;;;;;;;;-1:-1:-1;25226:151:0;;;;;:::i;:::-;;:::i;44640:936::-;;;;;;;;;;-1:-1:-1;44640:936:0;;;;;:::i;:::-;;:::i;45624:135::-;;;;;;;;;;-1:-1:-1;45624:135:0;;;;;:::i;:::-;;:::i;37451:233::-;;;;;;;;;;-1:-1:-1;37451:233:0;;;;;:::i;:::-;;:::i;44166:111::-;;;;;;;;;;-1:-1:-1;44166:111:0;;;;;:::i;:::-;;:::i;43332:31::-;;;;;;;;;;;;;:::i;22187:239::-;;;;;;;;;;-1:-1:-1;22187:239:0;;;;;:::i;:::-;;:::i;42991:24::-;;;;;;;;;;;;;:::i;43255:29::-;;;;;;;;;;;;;:::i;21917:208::-;;;;;;;;;;-1:-1:-1;21917:208:0;;;;;:::i;:::-;;:::i;35124:148::-;;;;;;;;;;;;;:::i;43022:45::-;;;;;;;;;;;;;:::i;34473:87::-;;;;;;;;;;;;;:::i;22662:104::-;;;;;;;;;;;;;:::i;45872:914::-;;;;;;:::i;:::-;;:::i;24253:295::-;;;;;;;;;;-1:-1:-1;24253:295:0;;;;;:::i;:::-;;:::i;25448:285::-;;;;;;;;;;-1:-1:-1;25448:285:0;;;;;:::i;:::-;;:::i;22837:360::-;;;;;;;;;;-1:-1:-1;22837:360:0;;;;;:::i;:::-;;:::i;24619:164::-;;;;;;;;;;-1:-1:-1;24619:164:0;;;;;:::i;:::-;;:::i;43177:32::-;;;;;;;;;;;;;:::i;35427:244::-;;;;;;;;;;-1:-1:-1;35427:244:0;;;;;:::i;:::-;;:::i;43088:33::-;;;;;;;;;;;;;:::i;44491:108::-;;;;;;;;;;-1:-1:-1;44491:108:0;;;;;:::i;:::-;;:::i;43908:179::-;44019:4;44043:36;44067:11;44043:23;:36::i;:::-;44036:43;;43908:179;;;;:::o;22493:100::-;22547:13;22580:5;22573:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22493:100;:::o;23960:221::-;24036:7;24064:16;24072:7;24064;:16::i;:::-;24056:73;;;;-1:-1:-1;;;24056:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;24149:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24149:24:0;;23960:221::o;43218:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23490:404::-;23571:13;23587:23;23602:7;23587:14;:23::i;:::-;23571:39;;23635:5;-1:-1:-1;;;;;23629:11:0;:2;-1:-1:-1;;;;;23629:11:0;;;23621:57;;;;-1:-1:-1;;;23621:57:0;;;;;;;:::i;:::-;23715:5;-1:-1:-1;;;;;23699:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23699:21:0;;:69;;;;23724:44;23748:5;23755:12;:10;:12::i;23724:44::-;23691:161;;;;-1:-1:-1;;;23691:161:0;;;;;;;:::i;:::-;23865:21;23874:2;23878:7;23865:8;:21::i;:::-;23490:404;;;:::o;43128:42::-;43168:2;43128:42;:::o;43291:32::-;;;;:::o;37261:113::-;37349:10;:17;37261:113;:::o;24850:305::-;25011:41;25030:12;:10;:12::i;:::-;25044:7;25011:18;:41::i;:::-;25003:103;;;;-1:-1:-1;;;25003:103:0;;;;;;;:::i;:::-;25119:28;25129:4;25135:2;25139:7;25119:9;:28::i;36929:256::-;37026:7;37062:23;37079:5;37062:16;:23::i;:::-;37054:5;:31;37046:87;;;;-1:-1:-1;;;37046:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37151:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36929:256::o;45771:89::-;34704:12;:10;:12::i;:::-;-1:-1:-1;;;;;34693:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34693:23:0;;34685:68;;;;-1:-1:-1;;;34685:68:0;;;;;;;:::i;:::-;45840:12:::1;::::0;;-1:-1:-1;;45824:28:0;::::1;45840:12;::::0;;::::1;45839:13;45824:28;::::0;;45771:89::o;46800:140::-;34704:12;:10;:12::i;:::-;-1:-1:-1;;;;;34693:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34693:23:0;;34685:68;;;;-1:-1:-1;;;34685:68:0;;;;;;;:::i;:::-;46895:37:::1;::::0;46863:21:::1;::::0;46903:10:::1;::::0;46895:37;::::1;;;::::0;46863:21;;46848:12:::1;46895:37:::0;46848:12;46895:37;46863:21;46903:10;46895:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34764:1;46800:140::o:0;25226:151::-;25330:39;25347:4;25353:2;25357:7;25330:39;;;;;;;;;;;;:16;:39::i;44640:936::-;44762:10;;44744:14;44728:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;44720:98;;;;-1:-1:-1;;;44720:98:0;;;;;;;:::i;:::-;44829:11;44843:13;:11;:13::i;:::-;44829:27;;44892:1;44875:14;:18;:51;;;;;44915:11;;44897:14;:29;;44875:51;44867:96;;;;-1:-1:-1;;;44867:96:0;;;;;;;:::i;:::-;44989:14;44974:11;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;45099:13:0;;45081:14;45065:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:47;;:80;;;;;45132:13;;45116;:11;:13::i;:::-;:29;45065:80;:104;;;;-1:-1:-1;45149:11:0;;;;:20;45065:104;45061:191;;;45187:12;:20;;-1:-1:-1;;45187:20:0;;;;;;45222:11;:18;;;;;45187:20;45222:18;;;45061:191;45280:7;:5;:7::i;:::-;-1:-1:-1;;;;;45266:21:0;:10;-1:-1:-1;;;;;45266:21:0;;45262:202;;45329:10;45361:1;45311:29;;;:17;:29;;;;;;:46;;45343:14;;45311:46;:::i;:::-;:51;;45303:87;;;;-1:-1:-1;;;45303:87:0;;;;;;;:::i;:::-;45423:10;45405:29;;;;:17;:29;;;;;:47;;45438:14;;45405:29;:47;;45438:14;;45405:47;:::i;:::-;;;;-1:-1:-1;;45262:202:0;45479:6;45474:95;45495:14;45491:1;:18;45474:95;;;45531:26;45541:3;45546:10;45555:1;45546:6;:10;:::i;:::-;45531:9;:26::i;:::-;45511:3;;;;:::i;:::-;;;;45474:95;;;;44640:936;;;:::o;45624:135::-;34704:12;:10;:12::i;:::-;-1:-1:-1;;;;;34693:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34693:23:0;;34685:68;;;;-1:-1:-1;;;34685:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45712:21:0;;::::1;;::::0;;;:17:::1;:21;::::0;;;;:39;45624:135::o;37451:233::-;37526:7;37562:30;:28;:30::i;:::-;37554:5;:38;37546:95;;;;-1:-1:-1;;;37546:95:0;;;;;;;:::i;:::-;37659:10;37670:5;37659:17;;;;;;-1:-1:-1;;;37659:17:0;;;;;;;;;;;;;;;;;37652:24;;37451:233;;;:::o;44166:111::-;34704:12;:10;:12::i;:::-;-1:-1:-1;;;;;34693:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34693:23:0;;34685:68;;;;-1:-1:-1;;;34685:68:0;;;;;;;:::i;:::-;44242:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;43332:31::-:0;;;;;;:::o;22187:239::-;22259:7;22295:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22295:16:0;22330:19;22322:73;;;;-1:-1:-1;;;22322:73:0;;;;;;;:::i;42991:24::-;;;;;;;:::i;43255:29::-;;;;:::o;21917:208::-;21989:7;-1:-1:-1;;;;;22017:19:0;;22009:74;;;;-1:-1:-1;;;22009:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22101:16:0;;;;;:9;:16;;;;;;;21917:208::o;35124:148::-;34704:12;:10;:12::i;:::-;-1:-1:-1;;;;;34693:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34693:23:0;;34685:68;;;;-1:-1:-1;;;34685:68:0;;;;;;;:::i;:::-;35215:6:::1;::::0;35194:40:::1;::::0;35231:1:::1;::::0;-1:-1:-1;;;;;35215:6:0::1;::::0;35194:40:::1;::::0;35231:1;;35194:40:::1;35245:6;:19:::0;;-1:-1:-1;;;;;;35245:19:0::1;::::0;;35124:148::o;43022:45::-;;;;:::o;34473:87::-;34546:6;;-1:-1:-1;;;;;34546:6:0;34473:87;:::o;22662:104::-;22718:13;22751:7;22744:14;;;;;:::i;45872:914::-;45942:12;;;;45934:59;;;;-1:-1:-1;;;45934:59:0;;;;;;;:::i;:::-;46046:10;;46028:14;46012:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;46004:99;;;;-1:-1:-1;;;46004:99:0;;;;;;;:::i;:::-;46153:9;46135:14;46122:10;;:27;;;;:::i;:::-;:40;;46114:84;;;;-1:-1:-1;;;46114:84:0;;;;;;;:::i;:::-;43168:2;46217:14;:34;;46209:74;;;;-1:-1:-1;;;46209:74:0;;;;;;;:::i;:::-;46385:13;;46367:14;46351:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:47;;:80;;;;;46418:13;;46402;:11;:13::i;:::-;:29;46351:80;:104;;;;-1:-1:-1;46435:11:0;;;;:20;46351:104;46347:191;;;46473:12;:20;;-1:-1:-1;;46473:20:0;;;;;;46508:11;:18;;;;;46473:20;46508:18;;;46347:191;46562:6;46558:211;46578:14;46574:1;:18;46558:211;;;46614:14;46631:13;:11;:13::i;:::-;46614:30;;46679:10;;46663:13;:11;:13::i;:::-;:26;46659:99;;;46710:32;46720:10;46732:9;46710;:32::i;:::-;-1:-1:-1;46594:3:0;;;;:::i;:::-;;;;46558:211;;24253:295;24368:12;:10;:12::i;:::-;-1:-1:-1;;;;;24356:24:0;:8;-1:-1:-1;;;;;24356:24:0;;;24348:62;;;;-1:-1:-1;;;24348:62:0;;;;;;;:::i;:::-;24468:8;24423:18;:32;24442:12;:10;:12::i;:::-;-1:-1:-1;;;;;24423:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24423:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24423:53:0;;;;;;;;;;;24507:12;:10;:12::i;:::-;-1:-1:-1;;;;;24492:48:0;;24531:8;24492:48;;;;;;:::i;:::-;;;;;;;;24253:295;;:::o;25448:285::-;25580:41;25599:12;:10;:12::i;:::-;25613:7;25580:18;:41::i;:::-;25572:103;;;;-1:-1:-1;;;25572:103:0;;;;;;;:::i;:::-;25686:39;25700:4;25706:2;25710:7;25719:5;25686:13;:39::i;22837:360::-;22910:13;22944:16;22952:7;22944;:16::i;:::-;22936:76;;;;-1:-1:-1;;;22936:76:0;;;;;;;:::i;:::-;23025:21;23049:10;:8;:10::i;:::-;23025:34;;23101:1;23083:7;23077:21;:25;:112;;;;;;;;;;;;;;;;;23142:7;23151:18;:7;:16;:18::i;:::-;23125:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23077:112;23070:119;22837:360;-1:-1:-1;;;22837:360:0:o;24619:164::-;-1:-1:-1;;;;;24740:25:0;;;24716:4;24740:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24619:164::o;43177:32::-;;;;;;:::o;35427:244::-;34704:12;:10;:12::i;:::-;-1:-1:-1;;;;;34693:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34693:23:0;;34685:68;;;;-1:-1:-1;;;34685:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35516:22:0;::::1;35508:73;;;;-1:-1:-1::0;;;35508:73:0::1;;;;;;;:::i;:::-;35618:6;::::0;35597:38:::1;::::0;-1:-1:-1;;;;;35597:38:0;;::::1;::::0;35618:6:::1;::::0;35597:38:::1;::::0;35618:6:::1;::::0;35597:38:::1;35646:6;:17:::0;;-1:-1:-1;;;;;;35646:17:0::1;-1:-1:-1::0;;;;;35646:17:0;;;::::1;::::0;;;::::1;::::0;;35427:244::o;43088:33::-;;;;:::o;44491:108::-;34704:12;:10;:12::i;:::-;-1:-1:-1;;;;;34693:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34693:23:0;;34685:68;;;;-1:-1:-1;;;34685:68:0;;;;;;;:::i;:::-;44568:23;;::::1;::::0;:10:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;36608:237::-:0;36710:4;-1:-1:-1;;;;;;36734:50:0;;-1:-1:-1;;;36734:50:0;;:103;;;36801:36;36825:11;36801:23;:36::i;27200:127::-;27265:4;27289:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27289:16:0;:30;;;27200:127::o;16847:98::-;16927:10;16847:98;:::o;31084:174::-;31159:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31159:29:0;-1:-1:-1;;;;;31159:29:0;;;;;;;;:24;;31213:23;31159:24;31213:14;:23::i;:::-;-1:-1:-1;;;;;31204:46:0;;;;;;;;;;;31084:174;;:::o;27494:355::-;27587:4;27612:16;27620:7;27612;:16::i;:::-;27604:73;;;;-1:-1:-1;;;27604:73:0;;;;;;;:::i;:::-;27688:13;27704:23;27719:7;27704:14;:23::i;:::-;27688:39;;27757:5;-1:-1:-1;;;;;27746:16:0;:7;-1:-1:-1;;;;;27746:16:0;;:51;;;;27790:7;-1:-1:-1;;;;;27766:31:0;:20;27778:7;27766:11;:20::i;:::-;-1:-1:-1;;;;;27766:31:0;;27746:51;:94;;;;27801:39;27825:5;27832:7;27801:23;:39::i;:::-;27738:103;27494:355;-1:-1:-1;;;;27494:355:0:o;30422:544::-;30547:4;-1:-1:-1;;;;;30520:31:0;:23;30535:7;30520:14;:23::i;:::-;-1:-1:-1;;;;;30520:31:0;;30512:85;;;;-1:-1:-1;;;30512:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30616:16:0;;30608:65;;;;-1:-1:-1;;;30608:65:0;;;;;;;:::i;:::-;30686:39;30707:4;30713:2;30717:7;30686:20;:39::i;:::-;30790:29;30807:1;30811:7;30790:8;:29::i;:::-;-1:-1:-1;;;;;30832:15:0;;;;;;:9;:15;;;;;:20;;30851:1;;30832:15;:20;;30851:1;;30832:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30863:13:0;;;;;;:9;:13;;;;;:18;;30880:1;;30863:13;:18;;30880:1;;30863:18;:::i;:::-;;;;-1:-1:-1;;30892:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30892:21:0;-1:-1:-1;;;;;30892:21:0;;;;;;;;;30931:27;;30892:16;;30931:27;;;;;;;30422:544;;;:::o;28191:110::-;28267:26;28277:2;28281:7;28267:26;;;;;;;;;;;;:9;:26::i;26615:272::-;26729:28;26739:4;26745:2;26749:7;26729:9;:28::i;:::-;26776:48;26799:4;26805:2;26809:7;26818:5;26776:22;:48::i;:::-;26768:111;;;;-1:-1:-1;;;26768:111:0;;;;;;;:::i;44356:127::-;44416:13;44449:16;44442:23;;;;;:::i;17502:723::-;17558:13;17779:10;17775:53;;-1:-1:-1;17806:10:0;;;;;;;;;;;;-1:-1:-1;;;17806:10:0;;;;;;17775:53;17853:5;17838:12;17894:78;17901:9;;17894:78;;17927:8;;;;:::i;:::-;;-1:-1:-1;17950:10:0;;-1:-1:-1;17958:2:0;17950:10;;:::i;:::-;;;17894:78;;;17982:19;18014:6;18004:17;;;;;;-1:-1:-1;;;18004:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18004:17:0;;17982:39;;18032:154;18039:10;;18032:154;;18066:11;18076:1;18066:11;;:::i;:::-;;-1:-1:-1;18135:10:0;18143:2;18135:5;:10;:::i;:::-;18122:24;;:2;:24;:::i;:::-;18109:39;;18092:6;18099;18092:14;;;;;;-1:-1:-1;;;18092:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18092:56:0;;;;;;;;-1:-1:-1;18163:11:0;18172:2;18163:11;;:::i;:::-;;;18032:154;;21561:292;21663:4;-1:-1:-1;;;;;;21687:40:0;;-1:-1:-1;;;21687:40:0;;:105;;-1:-1:-1;;;;;;;21744:48:0;;-1:-1:-1;;;21744:48:0;21687:105;:158;;;;21809:36;21833:11;21809:23;:36::i;43637:181::-;43765:45;43792:4;43798:2;43802:7;43765:26;:45::i;28528:250::-;28624:18;28630:2;28634:7;28624:5;:18::i;:::-;28661:54;28692:1;28696:2;28700:7;28709:5;28661:22;:54::i;:::-;28653:117;;;;-1:-1:-1;;;28653:117:0;;;;;;;:::i;31823:843::-;31944:4;31970:15;:2;-1:-1:-1;;;;;31970:13:0;;:15::i;:::-;31966:693;;;32022:2;-1:-1:-1;;;;;32006:36:0;;32043:12;:10;:12::i;:::-;32057:4;32063:7;32072:5;32006:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32006:72:0;;;;;;;;-1:-1:-1;;32006:72:0;;;;;;;;;;;;:::i;:::-;;;32002:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32252:13:0;;32248:341;;32295:60;;-1:-1:-1;;;32295:60:0;;;;;;;:::i;32248:341::-;32539:6;32533:13;32524:6;32520:2;32516:15;32509:38;32002:602;-1:-1:-1;;;;;;32129:55:0;-1:-1:-1;;;32129:55:0;;-1:-1:-1;32122:62:0;;31966:693;-1:-1:-1;32643:4:0;31823:843;;;;;;:::o;20057:157::-;-1:-1:-1;;;;;;20166:40:0;;-1:-1:-1;;;20166:40:0;20057:157;;;:::o;38297:555::-;38407:45;38434:4;38440:2;38444:7;38407:26;:45::i;:::-;-1:-1:-1;;;;;38469:18:0;;38465:187;;38504:40;38536:7;38504:31;:40::i;:::-;38465:187;;;38574:2;-1:-1:-1;;;;;38566:10:0;:4;-1:-1:-1;;;;;38566:10:0;;38562:90;;38593:47;38626:4;38632:7;38593:32;:47::i;:::-;-1:-1:-1;;;;;38666:16:0;;38662:183;;38699:45;38736:7;38699:36;:45::i;:::-;38662:183;;;38772:4;-1:-1:-1;;;;;38766:10:0;:2;-1:-1:-1;;;;;38766:10:0;;38762:83;;38793:40;38821:2;38825:7;38793:27;:40::i;29114:382::-;-1:-1:-1;;;;;29194:16:0;;29186:61;;;;-1:-1:-1;;;29186:61:0;;;;;;;:::i;:::-;29267:16;29275:7;29267;:16::i;:::-;29266:17;29258:58;;;;-1:-1:-1;;;29258:58:0;;;;;;;:::i;:::-;29329:45;29358:1;29362:2;29366:7;29329:20;:45::i;:::-;-1:-1:-1;;;;;29387:13:0;;;;;;:9;:13;;;;;:18;;29404:1;;29387:13;:18;;29404:1;;29387:18;:::i;:::-;;;;-1:-1:-1;;29416:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29416:21:0;-1:-1:-1;;;;;29416:21:0;;;;;;;;29455:33;;29416:16;;;29455:33;;29416:16;;29455:33;29114:382;;:::o;8964:422::-;9331:20;9370:8;;;8964:422::o;39575:164::-;39679:10;:17;;39652:24;;;;:15;:24;;;;;:44;;;39707:24;;;;;;;;;;;;39575:164::o;40366:988::-;40632:22;40682:1;40657:22;40674:4;40657:16;:22::i;:::-;:26;;;;:::i;:::-;40694:18;40715:26;;;:17;:26;;;;;;40632:51;;-1:-1:-1;40848:28:0;;;40844:328;;-1:-1:-1;;;;;40915:18:0;;40893:19;40915:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40966:30;;;;;;:44;;;41083:30;;:17;:30;;;;;:43;;;40844:328;-1:-1:-1;41268:26:0;;;;:17;:26;;;;;;;;41261:33;;;-1:-1:-1;;;;;41312:18:0;;;;;:12;:18;;;;;:34;;;;;;;41305:41;40366:988::o;41649:1079::-;41927:10;:17;41902:22;;41927:21;;41947:1;;41927:21;:::i;:::-;41959:18;41980:24;;;:15;:24;;;;;;42353:10;:26;;41902:46;;-1:-1:-1;41980:24:0;;41902:46;;42353:26;;;;-1:-1:-1;;;42353:26:0;;;;;;;;;;;;;;;;;42331:48;;42417:11;42392:10;42403;42392:22;;;;;;-1:-1:-1;;;42392:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42497:28;;;:15;:28;;;;;;;:41;;;42669:24;;;;;42662:31;42704:10;:16;;;;;-1:-1:-1;;;42704:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;41649:1079;;;;:::o;39153:221::-;39238:14;39255:20;39272:2;39255:16;:20::i;:::-;-1:-1:-1;;;;;39286:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39331:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39153:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:470::-;;4678:6;4672:13;4694:53;4740:6;4735:3;4728:4;4720:6;4716:17;4694:53;:::i;:::-;4810:13;;4769:16;;;;4832:57;4810:13;4769:16;4866:4;4854:17;;4832:57;:::i;:::-;4905:20;;4648:283;-1:-1:-1;;;;4648:283:1:o;4936:203::-;-1:-1:-1;;;;;5100:32:1;;;;5082:51;;5070:2;5055:18;;5037:102::o;5144:490::-;-1:-1:-1;;;;;5413:15:1;;;5395:34;;5465:15;;5460:2;5445:18;;5438:43;5512:2;5497:18;;5490:34;;;5560:3;5555:2;5540:18;;5533:31;;;5144:490;;5581:47;;5608:19;;5600:6;5581:47;:::i;:::-;5573:55;5347:287;-1:-1:-1;;;;;;5347:287:1:o;5639:187::-;5804:14;;5797:22;5779:41;;5767:2;5752:18;;5734:92::o;5831:221::-;;5980:2;5969:9;5962:21;6000:46;6042:2;6031:9;6027:18;6019:6;6000:46;:::i;6057:407::-;6259:2;6241:21;;;6298:2;6278:18;;;6271:30;6337:34;6332:2;6317:18;;6310:62;-1:-1:-1;;;6403:2:1;6388:18;;6381:41;6454:3;6439:19;;6231:233::o;6469:414::-;6671:2;6653:21;;;6710:2;6690:18;;;6683:30;6749:34;6744:2;6729:18;;6722:62;-1:-1:-1;;;6815:2:1;6800:18;;6793:48;6873:3;6858:19;;6643:240::o;6888:402::-;7090:2;7072:21;;;7129:2;7109:18;;;7102:30;7168:34;7163:2;7148:18;;7141:62;-1:-1:-1;;;7234:2:1;7219:18;;7212:36;7280:3;7265:19;;7062:228::o;7295:352::-;7497:2;7479:21;;;7536:2;7516:18;;;7509:30;7575;7570:2;7555:18;;7548:58;7638:2;7623:18;;7469:178::o;7652:356::-;7854:2;7836:21;;;7873:18;;;7866:30;7932:34;7927:2;7912:18;;7905:62;7999:2;7984:18;;7826:182::o;8013:400::-;8215:2;8197:21;;;8254:2;8234:18;;;8227:30;8293:34;8288:2;8273:18;;8266:62;-1:-1:-1;;;8359:2:1;8344:18;;8337:34;8403:3;8388:19;;8187:226::o;8418:349::-;8620:2;8602:21;;;8659:2;8639:18;;;8632:30;8698:27;8693:2;8678:18;;8671:55;8758:2;8743:18;;8592:175::o;8772:355::-;8974:2;8956:21;;;9013:2;8993:18;;;8986:30;9052:33;9047:2;9032:18;;9025:61;9118:2;9103:18;;8946:181::o;9132:398::-;9334:2;9316:21;;;9373:2;9353:18;;;9346:30;9412:34;9407:2;9392:18;;9385:62;-1:-1:-1;;;9478:2:1;9463:18;;9456:32;9520:3;9505:19;;9306:224::o;9535:408::-;9737:2;9719:21;;;9776:2;9756:18;;;9749:30;9815:34;9810:2;9795:18;;9788:62;-1:-1:-1;;;9881:2:1;9866:18;;9859:42;9933:3;9918:19;;9709:234::o;9948:420::-;10150:2;10132:21;;;10189:2;10169:18;;;10162:30;10228:34;10223:2;10208:18;;10201:62;10299:26;10294:2;10279:18;;10272:54;10358:3;10343:19;;10122:246::o;10373:406::-;10575:2;10557:21;;;10614:2;10594:18;;;10587:30;10653:34;10648:2;10633:18;;10626:62;-1:-1:-1;;;10719:2:1;10704:18;;10697:40;10769:3;10754:19;;10547:232::o;10784:405::-;10986:2;10968:21;;;11025:2;11005:18;;;10998:30;11064:34;11059:2;11044:18;;11037:62;-1:-1:-1;;;11130:2:1;11115:18;;11108:39;11179:3;11164:19;;10958:231::o;11194:406::-;11396:2;11378:21;;;11435:2;11415:18;;;11408:30;11474:34;11469:2;11454:18;;11447:62;-1:-1:-1;;;11540:2:1;11525:18;;11518:40;11590:3;11575:19;;11368:232::o;11605:356::-;11807:2;11789:21;;;11826:18;;;11819:30;11885:34;11880:2;11865:18;;11858:62;11952:2;11937:18;;11779:182::o;11966:408::-;12168:2;12150:21;;;12207:2;12187:18;;;12180:30;12246:34;12241:2;12226:18;;12219:62;-1:-1:-1;;;12312:2:1;12297:18;;12290:42;12364:3;12349:19;;12140:234::o;12379:356::-;12581:2;12563:21;;;12600:18;;;12593:30;12659:34;12654:2;12639:18;;12632:62;12726:2;12711:18;;12553:182::o;12740:405::-;12942:2;12924:21;;;12981:2;12961:18;;;12954:30;13020:34;13015:2;13000:18;;12993:62;-1:-1:-1;;;13086:2:1;13071:18;;13064:39;13135:3;13120:19;;12914:231::o;13150:411::-;13352:2;13334:21;;;13391:2;13371:18;;;13364:30;13430:34;13425:2;13410:18;;13403:62;-1:-1:-1;;;13496:2:1;13481:18;;13474:45;13551:3;13536:19;;13324:237::o;13566:347::-;13768:2;13750:21;;;13807:2;13787:18;;;13780:30;13846:25;13841:2;13826:18;;13819:53;13904:2;13889:18;;13740:173::o;13918:397::-;14120:2;14102:21;;;14159:2;14139:18;;;14132:30;14198:34;14193:2;14178:18;;14171:62;-1:-1:-1;;;14264:2:1;14249:18;;14242:31;14305:3;14290:19;;14092:223::o;14320:351::-;14522:2;14504:21;;;14561:2;14541:18;;;14534:30;14600:29;14595:2;14580:18;;14573:57;14662:2;14647:18;;14494:177::o;14676:413::-;14878:2;14860:21;;;14917:2;14897:18;;;14890:30;14956:34;14951:2;14936:18;;14929:62;-1:-1:-1;;;15022:2:1;15007:18;;15000:47;15079:3;15064:19;;14850:239::o;15094:408::-;15296:2;15278:21;;;15335:2;15315:18;;;15308:30;15374:34;15369:2;15354:18;;15347:62;-1:-1:-1;;;15440:2:1;15425:18;;15418:42;15492:3;15477:19;;15268:234::o;15507:405::-;15709:2;15691:21;;;15748:2;15728:18;;;15721:30;15787:34;15782:2;15767:18;;15760:62;-1:-1:-1;;;15853:2:1;15838:18;;15831:39;15902:3;15887:19;;15681:231::o;15917:177::-;16063:25;;;16051:2;16036:18;;16018:76::o;16099:128::-;;16170:1;16166:6;16163:1;16160:13;16157:2;;;16176:18;;:::i;:::-;-1:-1:-1;16212:9:1;;16147:80::o;16232:120::-;;16298:1;16288:2;;16303:18;;:::i;:::-;-1:-1:-1;16337:9:1;;16278:74::o;16357:168::-;;16463:1;16459;16455:6;16451:14;16448:1;16445:21;16440:1;16433:9;16426:17;16422:45;16419:2;;;16470:18;;:::i;:::-;-1:-1:-1;16510:9:1;;16409:116::o;16530:125::-;;16598:1;16595;16592:8;16589:2;;;16603:18;;:::i;:::-;-1:-1:-1;16640:9:1;;16579:76::o;16660:258::-;16732:1;16742:113;16756:6;16753:1;16750:13;16742:113;;;16832:11;;;16826:18;16813:11;;;16806:39;16778:2;16771:10;16742:113;;;16873:6;16870:1;16867:13;16864:2;;;-1:-1:-1;;16908:1:1;16890:16;;16883:27;16713:205::o;16923:380::-;17008:1;16998:12;;17055:1;17045:12;;;17066:2;;17120:4;17112:6;17108:17;17098:27;;17066:2;17173;17165:6;17162:14;17142:18;17139:38;17136:2;;;17219:10;17214:3;17210:20;17207:1;17200:31;17254:4;17251:1;17244:15;17282:4;17279:1;17272:15;17136:2;;16978:325;;;:::o;17308:135::-;;-1:-1:-1;;17368:17:1;;17365:2;;;17388:18;;:::i;:::-;-1:-1:-1;17435:1:1;17424:13;;17355:88::o;17448:112::-;;17506:1;17496:2;;17511:18;;:::i;:::-;-1:-1:-1;17545:9:1;;17486:74::o;17565:127::-;17626:10;17621:3;17617:20;17614:1;17607:31;17657:4;17654:1;17647:15;17681:4;17678:1;17671:15;17697:127;17758:10;17753:3;17749:20;17746:1;17739:31;17789:4;17786:1;17779:15;17813:4;17810:1;17803:15;17829:127;17890:10;17885:3;17881:20;17878:1;17871:31;17921:4;17918:1;17911:15;17945:4;17942:1;17935:15;17961:133;-1:-1:-1;;;;;;18037:32:1;;18027:43;;18017:2;;18084:1;18081;18074:12;18017:2;18007:87;:::o

Swarm Source

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