ETH Price: $3,393.30 (-1.25%)
Gas: 2 Gwei

Token

PFTO Labs (PFTO)
 

Overview

Max Total Supply

0 PFTO

Holders

23

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
slutzky.eth
Balance
2 PFTO
0x6861eb97c53395e168d320345ac86a7307a7a7cc
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:
PftoLabs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

// File: contracts/Pfto.sol

pragma solidity ^0.8.7;

contract PftoLabs is ERC721, Ownable {

    uint256 public constant MAX_SUPPLY = 4900;
    uint256 constant MAX_RESERVED = 50;
    uint256 constant MAX_PER_WALLET = 20;
    uint256 public price = 0.111 ether;
    bool public isSaleActive = false;
    uint256 public totalMinted = 0;
    uint256 public totalReserved = 0;
    using Strings for uint256;
    string private baseURI;

    uint256[4900] public ids;
    uint256 private index;

    mapping(address => uint256) addressToNumMinted;

    constructor() ERC721("PFTO Labs", "PFTO") {
        baseURI = "https://pftolabs.io/collection/metadata/";
    }

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

    function tokenURI(uint256 tokenId) public override view returns (string memory) {
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
    }

    function setBaseURI(string memory uri) external onlyOwner {
        baseURI = uri;
    }

    function toggleSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function reserveTokens(uint256 amount) external onlyOwner {
        require(totalReserved + amount <= MAX_RESERVED, "Would exceed maximum number of reserved tokens");
        require(totalMinted + amount <= MAX_SUPPLY, "Would exceed maximum supply of tokens");
        totalReserved += amount;
        totalMinted += amount;
        for (uint256 i = 0; i < amount; i++) {
            uint256 _random = uint256(keccak256(abi.encodePacked(index, msg.sender, block.timestamp)));
            _safeMint(msg.sender, _pickRandomUniqueId(_random));
        }
    }

    function mint(uint256 amount) external payable {
        require(isSaleActive, "Sale currently closed");
        require(addressToNumMinted[msg.sender] + amount <= MAX_PER_WALLET, "Would exceed maximum allowed mints per wallet");
        require(amount * price == msg.value, "Incorrect amount of eth sent");
        totalMinted += amount;
        addressToNumMinted[msg.sender] += amount;
        for (uint256 i = 0; i < amount; i++) {
            uint256 _random = uint256(keccak256(abi.encodePacked(index, msg.sender, block.timestamp)));
            _safeMint(msg.sender, _pickRandomUniqueId(_random));
        }
    }
 
    function _pickRandomUniqueId(uint256 random) private returns (uint256 id) {
        uint256 len = ids.length - index++;
        require(len > 0, "no ids left");
        uint256 randomIndex = random % len;
        id = ids[randomIndex] != 0 ? ids[randomIndex] + 1 : randomIndex + 1;
        ids[randomIndex] = uint16(ids[len - 1] == 0 ? len - 1 : ids[len - 1]);
        ids[len - 1] = 0;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(0xb1549dd05A0630EF0f1a8faE8d437afcAAc2415c).transfer(balance / 100 * 5 / 2);
        payable(0x9ab016A98181860b790C43E3eCaa9f5E9722C716).transfer(balance / 100 * 175 / 2);
        payable(0x388CcBf8c1A37F444DcFF6eDE0014DfA85BeDC1B).transfer(balance / 100 * 10);
    }

    function burn(uint256 tokenId) public virtual {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":"uint256","name":"","type":"uint256"}],"name":"ids","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReserved","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"}]

608060405267018a59e9721180006007556008805460ff1916905560006009819055600a553480156200003157600080fd5b5060408051808201825260098152685046544f204c61627360b81b6020808301918252835180850190945260048452635046544f60e01b9084015281519192916200007f916000916200013f565b508051620000959060019060208401906200013f565b505050620000b2620000ac620000e960201b60201c565b620000ed565b604051806060016040528060288152602001620023a0602891398051620000e291600b916020909101906200013f565b5062000222565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014d90620001e5565b90600052602060002090601f016020900481019282620001715760008555620001bc565b82601f106200018c57805160ff1916838001178555620001bc565b82800160010185558215620001bc579182015b82811115620001bc5782518255916020019190600101906200019f565b50620001ca929150620001ce565b5090565b5b80821115620001ca5760008155600101620001cf565b600181811c90821680620001fa57607f821691505b602082108114156200021c57634e487b7160e01b600052602260045260246000fd5b50919050565b61216e80620002326000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063c71b0e1c1161008a578063daaeec8611610064578063daaeec861461049d578063e985e9c5146104b2578063f2fde38b146104fb578063fac333ac1461051b57600080fd5b8063c71b0e1c14610447578063c87b56dd1461045d578063d031370b1461047d57600080fd5b8063a0712d68116100c6578063a0712d68146103de578063a22cb465146103f1578063a2309ff814610411578063b88d4fde1461042757600080fd5b80638da5cb5b1461039557806395d89b41146103b3578063a035b1fe146103c857600080fd5b806342842e0e11610159578063564566a811610133578063564566a8146103265780636352211e1461034057806370a0823114610360578063715018a61461038057600080fd5b806342842e0e146102c657806342966c68146102e657806355f804b31461030657600080fd5b8063095ea7b311610195578063095ea7b31461024b57806323b872dd1461026d57806332cb6b0c1461028d5780633ccfd60b146102b157600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611d0b565b61053b565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661058d565b6040516101e89190611ee7565b34801561021f57600080fd5b5061023361022e366004611d8e565b61061f565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611ce1565b6106b9565b005b34801561027957600080fd5b5061026b610288366004611bed565b6107cf565b34801561029957600080fd5b506102a361132481565b6040519081526020016101e8565b3480156102bd57600080fd5b5061026b610801565b3480156102d257600080fd5b5061026b6102e1366004611bed565b61094c565b3480156102f257600080fd5b5061026b610301366004611d8e565b610967565b34801561031257600080fd5b5061026b610321366004611d45565b6109e1565b34801561033257600080fd5b506008546101dc9060ff1681565b34801561034c57600080fd5b5061023361035b366004611d8e565b610a1e565b34801561036c57600080fd5b506102a361037b366004611b98565b610a95565b34801561038c57600080fd5b5061026b610b1c565b3480156103a157600080fd5b506006546001600160a01b0316610233565b3480156103bf57600080fd5b50610206610b52565b3480156103d457600080fd5b506102a360075481565b61026b6103ec366004611d8e565b610b61565b3480156103fd57600080fd5b5061026b61040c366004611ca5565b610d45565b34801561041d57600080fd5b506102a360095481565b34801561043357600080fd5b5061026b610442366004611c29565b610d50565b34801561045357600080fd5b506102a3600a5481565b34801561046957600080fd5b50610206610478366004611d8e565b610d88565b34801561048957600080fd5b5061026b610498366004611d8e565b610de6565b3480156104a957600080fd5b5061026b610f9c565b3480156104be57600080fd5b506101dc6104cd366004611bba565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561050757600080fd5b5061026b610516366004611b98565b610fda565b34801561052757600080fd5b506102a3610536366004611d8e565b611072565b60006001600160e01b031982166380ac58cd60e01b148061056c57506001600160e01b03198216635b5e139f60e01b145b8061058757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461059c90612060565b80601f01602080910402602001604051908101604052809291908181526020018280546105c890612060565b80156106155780601f106105ea57610100808354040283529160200191610615565b820191906000526020600020905b8154815290600101906020018083116105f857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661069d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c482610a1e565b9050806001600160a01b0316836001600160a01b031614156107325760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610694565b336001600160a01b038216148061074e575061074e81336104cd565b6107c05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610694565b6107ca838361108a565b505050565b6107da335b826110f8565b6107f65760405162461bcd60e51b815260040161069490611f81565b6107ca8383836111ef565b6006546001600160a01b0316331461082b5760405162461bcd60e51b815260040161069490611f4c565b4773b1549dd05a0630ef0f1a8fae8d437afcaac2415c6108fc6002610851606485611fea565b61085c906005611ffe565b6108669190611fea565b6040518115909202916000818181858888f1935050505015801561088e573d6000803e3d6000fd5b50739ab016a98181860b790c43e3ecaa9f5e9722c7166108fc60026108b4606485611fea565b6108bf9060af611ffe565b6108c99190611fea565b6040518115909202916000818181858888f193505050501580156108f1573d6000803e3d6000fd5b5073388ccbf8c1a37f444dcff6ede0014dfa85bedc1b6108fc610915606484611fea565b61092090600a611ffe565b6040518115909202916000818181858888f19350505050158015610948573d6000803e3d6000fd5b5050565b6107ca83838360405180602001604052806000815250610d50565b610970336107d4565b6109d55760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610694565b6109de8161138b565b50565b6006546001600160a01b03163314610a0b5760405162461bcd60e51b815260040161069490611f4c565b805161094890600b906020840190611a6d565b6000818152600260205260408120546001600160a01b0316806105875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610694565b60006001600160a01b038216610b005760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610694565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b465760405162461bcd60e51b815260040161069490611f4c565b610b506000611426565b565b60606001805461059c90612060565b60085460ff16610bab5760405162461bcd60e51b815260206004820152601560248201527414d85b194818dd5c9c995b9d1b1e4818db1bdcd959605a1b6044820152606401610694565b3360009081526113316020526040902054601490610bca908390611fd2565b1115610c2e5760405162461bcd60e51b815260206004820152602d60248201527f576f756c6420657863656564206d6178696d756d20616c6c6f776564206d696e60448201526c1d1cc81c195c881dd85b1b195d609a1b6064820152608401610694565b3460075482610c3d9190611ffe565b14610c8a5760405162461bcd60e51b815260206004820152601c60248201527f496e636f727265637420616d6f756e74206f66206574682073656e74000000006044820152606401610694565b8060096000828254610c9c9190611fd2565b9091555050336000908152611331602052604081208054839290610cc1908490611fd2565b90915550600090505b8181101561094857611330546040805160208101929092526bffffffffffffffffffffffff193360601b16908201524260548201526000906074016040516020818303038152906040528051906020012060001c9050610d3233610d2d83611478565b6115d1565b5080610d3d8161209b565b915050610cca565b6109483383836115eb565b610d5a33836110f8565b610d765760405162461bcd60e51b815260040161069490611f81565b610d82848484846116ba565b50505050565b60606000600b8054610d9990612060565b905011610db55760405180602001604052806000815250610587565b600b610dc0836116ed565b604051602001610dd1929190611def565b60405160208183030381529060405292915050565b6006546001600160a01b03163314610e105760405162461bcd60e51b815260040161069490611f4c565b603281600a54610e209190611fd2565b1115610e855760405162461bcd60e51b815260206004820152602e60248201527f576f756c6420657863656564206d6178696d756d206e756d626572206f66207260448201526d6573657276656420746f6b656e7360901b6064820152608401610694565b61132481600954610e969190611fd2565b1115610ef25760405162461bcd60e51b815260206004820152602560248201527f576f756c6420657863656564206d6178696d756d20737570706c79206f6620746044820152646f6b656e7360d81b6064820152608401610694565b80600a6000828254610f049190611fd2565b925050819055508060096000828254610f1d9190611fd2565b90915550600090505b8181101561094857611330546040805160208101929092526bffffffffffffffffffffffff193360601b16908201524260548201526000906074016040516020818303038152906040528051906020012060001c9050610f8933610d2d83611478565b5080610f948161209b565b915050610f26565b6006546001600160a01b03163314610fc65760405162461bcd60e51b815260040161069490611f4c565b6008805460ff19811660ff90911615179055565b6006546001600160a01b031633146110045760405162461bcd60e51b815260040161069490611f4c565b6001600160a01b0381166110695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610694565b6109de81611426565b600c81611324811061108357600080fd5b0154905081565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110bf82610a1e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610694565b600061117c83610a1e565b9050806001600160a01b0316846001600160a01b031614806111b75750836001600160a01b03166111ac8461061f565b6001600160a01b0316145b806111e757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661120282610a1e565b6001600160a01b0316146112665760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610694565b6001600160a01b0382166112c85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610694565b6112d360008261108a565b6001600160a01b03831660009081526003602052604081208054600192906112fc90849061201d565b90915550506001600160a01b038216600090815260036020526040812080546001929061132a908490611fd2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061139682610a1e565b90506113a360008361108a565b6001600160a01b03811660009081526003602052604081208054600192906113cc90849061201d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61133080546000918291908261148d8361209b565b9091555061149d9061132461201d565b9050600081116114dd5760405162461bcd60e51b815260206004820152600b60248201526a1b9bc81a591cc81b19599d60aa1b6044820152606401610694565b60006114e982856120b6565b9050600c8161132481106114ff576114ff6120f6565b015461151557611510816001611fd2565b611536565b600c816113248110611529576115296120f6565b0154611536906001611fd2565b9250600c61154560018461201d565b6113248110611556576115566120f6565b01541561158257600c61156a60018461201d565b611324811061157b5761157b6120f6565b015461158d565b61158d60018361201d565b61ffff16600c8261132481106115a5576115a56120f6565b01556000600c6115b660018561201d565b61132481106115c7576115c76120f6565b0155509092915050565b6109488282604051806020016040528060008152506117eb565b816001600160a01b0316836001600160a01b0316141561164d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610694565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116c58484846111ef565b6116d18484848461181e565b610d825760405162461bcd60e51b815260040161069490611efa565b6060816117115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173b57806117258161209b565b91506117349050600a83611fea565b9150611715565b60008167ffffffffffffffff8111156117565761175661210c565b6040519080825280601f01601f191660200182016040528015611780576020820181803683370190505b5090505b84156111e75761179560018361201d565b91506117a2600a866120b6565b6117ad906030611fd2565b60f81b8183815181106117c2576117c26120f6565b60200101906001600160f81b031916908160001a9053506117e4600a86611fea565b9450611784565b6117f5838361192b565b611802600084848461181e565b6107ca5760405162461bcd60e51b815260040161069490611efa565b60006001600160a01b0384163b1561192057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611862903390899088908890600401611eaa565b602060405180830381600087803b15801561187c57600080fd5b505af19250505080156118ac575060408051601f3d908101601f191682019092526118a991810190611d28565b60015b611906573d8080156118da576040519150601f19603f3d011682016040523d82523d6000602084013e6118df565b606091505b5080516118fe5760405162461bcd60e51b815260040161069490611efa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111e7565b506001949350505050565b6001600160a01b0382166119815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610694565b6000818152600260205260409020546001600160a01b0316156119e65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610694565b6001600160a01b0382166000908152600360205260408120805460019290611a0f908490611fd2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a7990612060565b90600052602060002090601f016020900481019282611a9b5760008555611ae1565b82601f10611ab457805160ff1916838001178555611ae1565b82800160010185558215611ae1579182015b82811115611ae1578251825591602001919060010190611ac6565b50611aed929150611af1565b5090565b5b80821115611aed5760008155600101611af2565b600067ffffffffffffffff80841115611b2157611b2161210c565b604051601f8501601f19908116603f01168101908282118183101715611b4957611b4961210c565b81604052809350858152868686011115611b6257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b9357600080fd5b919050565b600060208284031215611baa57600080fd5b611bb382611b7c565b9392505050565b60008060408385031215611bcd57600080fd5b611bd683611b7c565b9150611be460208401611b7c565b90509250929050565b600080600060608486031215611c0257600080fd5b611c0b84611b7c565b9250611c1960208501611b7c565b9150604084013590509250925092565b60008060008060808587031215611c3f57600080fd5b611c4885611b7c565b9350611c5660208601611b7c565b925060408501359150606085013567ffffffffffffffff811115611c7957600080fd5b8501601f81018713611c8a57600080fd5b611c9987823560208401611b06565b91505092959194509250565b60008060408385031215611cb857600080fd5b611cc183611b7c565b915060208301358015158114611cd657600080fd5b809150509250929050565b60008060408385031215611cf457600080fd5b611cfd83611b7c565b946020939093013593505050565b600060208284031215611d1d57600080fd5b8135611bb381612122565b600060208284031215611d3a57600080fd5b8151611bb381612122565b600060208284031215611d5757600080fd5b813567ffffffffffffffff811115611d6e57600080fd5b8201601f81018413611d7f57600080fd5b6111e784823560208401611b06565b600060208284031215611da057600080fd5b5035919050565b60008151808452611dbf816020860160208601612034565b601f01601f19169290920160200192915050565b60008151611de5818560208601612034565b9290920192915050565b600080845481600182811c915080831680611e0b57607f831692505b6020808410821415611e2b57634e487b7160e01b86526022600452602486fd5b818015611e3f5760018114611e5057611e7d565b60ff19861689528489019650611e7d565b60008b81526020902060005b86811015611e755781548b820152908501908301611e5c565b505084890196505b505050505050611ea1611e908286611dd3565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611edd90830184611da7565b9695505050505050565b602081526000611bb36020830184611da7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611fe557611fe56120ca565b500190565b600082611ff957611ff96120e0565b500490565b6000816000190483118215151615612018576120186120ca565b500290565b60008282101561202f5761202f6120ca565b500390565b60005b8381101561204f578181015183820152602001612037565b83811115610d825750506000910152565b600181811c9082168061207457607f821691505b6020821081141561209557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120af576120af6120ca565b5060010190565b6000826120c5576120c56120e0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109de57600080fdfea264697066735822122022cd4402cdac3dd5222650f35267e6f090b56f0c4207f8dec53e823bb48405f564736f6c6343000807003368747470733a2f2f7066746f6c6162732e696f2f636f6c6c656374696f6e2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063c71b0e1c1161008a578063daaeec8611610064578063daaeec861461049d578063e985e9c5146104b2578063f2fde38b146104fb578063fac333ac1461051b57600080fd5b8063c71b0e1c14610447578063c87b56dd1461045d578063d031370b1461047d57600080fd5b8063a0712d68116100c6578063a0712d68146103de578063a22cb465146103f1578063a2309ff814610411578063b88d4fde1461042757600080fd5b80638da5cb5b1461039557806395d89b41146103b3578063a035b1fe146103c857600080fd5b806342842e0e11610159578063564566a811610133578063564566a8146103265780636352211e1461034057806370a0823114610360578063715018a61461038057600080fd5b806342842e0e146102c657806342966c68146102e657806355f804b31461030657600080fd5b8063095ea7b311610195578063095ea7b31461024b57806323b872dd1461026d57806332cb6b0c1461028d5780633ccfd60b146102b157600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611d0b565b61053b565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661058d565b6040516101e89190611ee7565b34801561021f57600080fd5b5061023361022e366004611d8e565b61061f565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611ce1565b6106b9565b005b34801561027957600080fd5b5061026b610288366004611bed565b6107cf565b34801561029957600080fd5b506102a361132481565b6040519081526020016101e8565b3480156102bd57600080fd5b5061026b610801565b3480156102d257600080fd5b5061026b6102e1366004611bed565b61094c565b3480156102f257600080fd5b5061026b610301366004611d8e565b610967565b34801561031257600080fd5b5061026b610321366004611d45565b6109e1565b34801561033257600080fd5b506008546101dc9060ff1681565b34801561034c57600080fd5b5061023361035b366004611d8e565b610a1e565b34801561036c57600080fd5b506102a361037b366004611b98565b610a95565b34801561038c57600080fd5b5061026b610b1c565b3480156103a157600080fd5b506006546001600160a01b0316610233565b3480156103bf57600080fd5b50610206610b52565b3480156103d457600080fd5b506102a360075481565b61026b6103ec366004611d8e565b610b61565b3480156103fd57600080fd5b5061026b61040c366004611ca5565b610d45565b34801561041d57600080fd5b506102a360095481565b34801561043357600080fd5b5061026b610442366004611c29565b610d50565b34801561045357600080fd5b506102a3600a5481565b34801561046957600080fd5b50610206610478366004611d8e565b610d88565b34801561048957600080fd5b5061026b610498366004611d8e565b610de6565b3480156104a957600080fd5b5061026b610f9c565b3480156104be57600080fd5b506101dc6104cd366004611bba565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561050757600080fd5b5061026b610516366004611b98565b610fda565b34801561052757600080fd5b506102a3610536366004611d8e565b611072565b60006001600160e01b031982166380ac58cd60e01b148061056c57506001600160e01b03198216635b5e139f60e01b145b8061058757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461059c90612060565b80601f01602080910402602001604051908101604052809291908181526020018280546105c890612060565b80156106155780601f106105ea57610100808354040283529160200191610615565b820191906000526020600020905b8154815290600101906020018083116105f857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661069d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c482610a1e565b9050806001600160a01b0316836001600160a01b031614156107325760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610694565b336001600160a01b038216148061074e575061074e81336104cd565b6107c05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610694565b6107ca838361108a565b505050565b6107da335b826110f8565b6107f65760405162461bcd60e51b815260040161069490611f81565b6107ca8383836111ef565b6006546001600160a01b0316331461082b5760405162461bcd60e51b815260040161069490611f4c565b4773b1549dd05a0630ef0f1a8fae8d437afcaac2415c6108fc6002610851606485611fea565b61085c906005611ffe565b6108669190611fea565b6040518115909202916000818181858888f1935050505015801561088e573d6000803e3d6000fd5b50739ab016a98181860b790c43e3ecaa9f5e9722c7166108fc60026108b4606485611fea565b6108bf9060af611ffe565b6108c99190611fea565b6040518115909202916000818181858888f193505050501580156108f1573d6000803e3d6000fd5b5073388ccbf8c1a37f444dcff6ede0014dfa85bedc1b6108fc610915606484611fea565b61092090600a611ffe565b6040518115909202916000818181858888f19350505050158015610948573d6000803e3d6000fd5b5050565b6107ca83838360405180602001604052806000815250610d50565b610970336107d4565b6109d55760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610694565b6109de8161138b565b50565b6006546001600160a01b03163314610a0b5760405162461bcd60e51b815260040161069490611f4c565b805161094890600b906020840190611a6d565b6000818152600260205260408120546001600160a01b0316806105875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610694565b60006001600160a01b038216610b005760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610694565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b465760405162461bcd60e51b815260040161069490611f4c565b610b506000611426565b565b60606001805461059c90612060565b60085460ff16610bab5760405162461bcd60e51b815260206004820152601560248201527414d85b194818dd5c9c995b9d1b1e4818db1bdcd959605a1b6044820152606401610694565b3360009081526113316020526040902054601490610bca908390611fd2565b1115610c2e5760405162461bcd60e51b815260206004820152602d60248201527f576f756c6420657863656564206d6178696d756d20616c6c6f776564206d696e60448201526c1d1cc81c195c881dd85b1b195d609a1b6064820152608401610694565b3460075482610c3d9190611ffe565b14610c8a5760405162461bcd60e51b815260206004820152601c60248201527f496e636f727265637420616d6f756e74206f66206574682073656e74000000006044820152606401610694565b8060096000828254610c9c9190611fd2565b9091555050336000908152611331602052604081208054839290610cc1908490611fd2565b90915550600090505b8181101561094857611330546040805160208101929092526bffffffffffffffffffffffff193360601b16908201524260548201526000906074016040516020818303038152906040528051906020012060001c9050610d3233610d2d83611478565b6115d1565b5080610d3d8161209b565b915050610cca565b6109483383836115eb565b610d5a33836110f8565b610d765760405162461bcd60e51b815260040161069490611f81565b610d82848484846116ba565b50505050565b60606000600b8054610d9990612060565b905011610db55760405180602001604052806000815250610587565b600b610dc0836116ed565b604051602001610dd1929190611def565b60405160208183030381529060405292915050565b6006546001600160a01b03163314610e105760405162461bcd60e51b815260040161069490611f4c565b603281600a54610e209190611fd2565b1115610e855760405162461bcd60e51b815260206004820152602e60248201527f576f756c6420657863656564206d6178696d756d206e756d626572206f66207260448201526d6573657276656420746f6b656e7360901b6064820152608401610694565b61132481600954610e969190611fd2565b1115610ef25760405162461bcd60e51b815260206004820152602560248201527f576f756c6420657863656564206d6178696d756d20737570706c79206f6620746044820152646f6b656e7360d81b6064820152608401610694565b80600a6000828254610f049190611fd2565b925050819055508060096000828254610f1d9190611fd2565b90915550600090505b8181101561094857611330546040805160208101929092526bffffffffffffffffffffffff193360601b16908201524260548201526000906074016040516020818303038152906040528051906020012060001c9050610f8933610d2d83611478565b5080610f948161209b565b915050610f26565b6006546001600160a01b03163314610fc65760405162461bcd60e51b815260040161069490611f4c565b6008805460ff19811660ff90911615179055565b6006546001600160a01b031633146110045760405162461bcd60e51b815260040161069490611f4c565b6001600160a01b0381166110695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610694565b6109de81611426565b600c81611324811061108357600080fd5b0154905081565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110bf82610a1e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610694565b600061117c83610a1e565b9050806001600160a01b0316846001600160a01b031614806111b75750836001600160a01b03166111ac8461061f565b6001600160a01b0316145b806111e757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661120282610a1e565b6001600160a01b0316146112665760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610694565b6001600160a01b0382166112c85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610694565b6112d360008261108a565b6001600160a01b03831660009081526003602052604081208054600192906112fc90849061201d565b90915550506001600160a01b038216600090815260036020526040812080546001929061132a908490611fd2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061139682610a1e565b90506113a360008361108a565b6001600160a01b03811660009081526003602052604081208054600192906113cc90849061201d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61133080546000918291908261148d8361209b565b9091555061149d9061132461201d565b9050600081116114dd5760405162461bcd60e51b815260206004820152600b60248201526a1b9bc81a591cc81b19599d60aa1b6044820152606401610694565b60006114e982856120b6565b9050600c8161132481106114ff576114ff6120f6565b015461151557611510816001611fd2565b611536565b600c816113248110611529576115296120f6565b0154611536906001611fd2565b9250600c61154560018461201d565b6113248110611556576115566120f6565b01541561158257600c61156a60018461201d565b611324811061157b5761157b6120f6565b015461158d565b61158d60018361201d565b61ffff16600c8261132481106115a5576115a56120f6565b01556000600c6115b660018561201d565b61132481106115c7576115c76120f6565b0155509092915050565b6109488282604051806020016040528060008152506117eb565b816001600160a01b0316836001600160a01b0316141561164d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610694565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116c58484846111ef565b6116d18484848461181e565b610d825760405162461bcd60e51b815260040161069490611efa565b6060816117115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173b57806117258161209b565b91506117349050600a83611fea565b9150611715565b60008167ffffffffffffffff8111156117565761175661210c565b6040519080825280601f01601f191660200182016040528015611780576020820181803683370190505b5090505b84156111e75761179560018361201d565b91506117a2600a866120b6565b6117ad906030611fd2565b60f81b8183815181106117c2576117c26120f6565b60200101906001600160f81b031916908160001a9053506117e4600a86611fea565b9450611784565b6117f5838361192b565b611802600084848461181e565b6107ca5760405162461bcd60e51b815260040161069490611efa565b60006001600160a01b0384163b1561192057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611862903390899088908890600401611eaa565b602060405180830381600087803b15801561187c57600080fd5b505af19250505080156118ac575060408051601f3d908101601f191682019092526118a991810190611d28565b60015b611906573d8080156118da576040519150601f19603f3d011682016040523d82523d6000602084013e6118df565b606091505b5080516118fe5760405162461bcd60e51b815260040161069490611efa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111e7565b506001949350505050565b6001600160a01b0382166119815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610694565b6000818152600260205260409020546001600160a01b0316156119e65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610694565b6001600160a01b0382166000908152600360205260408120805460019290611a0f908490611fd2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a7990612060565b90600052602060002090601f016020900481019282611a9b5760008555611ae1565b82601f10611ab457805160ff1916838001178555611ae1565b82800160010185558215611ae1579182015b82811115611ae1578251825591602001919060010190611ac6565b50611aed929150611af1565b5090565b5b80821115611aed5760008155600101611af2565b600067ffffffffffffffff80841115611b2157611b2161210c565b604051601f8501601f19908116603f01168101908282118183101715611b4957611b4961210c565b81604052809350858152868686011115611b6257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b9357600080fd5b919050565b600060208284031215611baa57600080fd5b611bb382611b7c565b9392505050565b60008060408385031215611bcd57600080fd5b611bd683611b7c565b9150611be460208401611b7c565b90509250929050565b600080600060608486031215611c0257600080fd5b611c0b84611b7c565b9250611c1960208501611b7c565b9150604084013590509250925092565b60008060008060808587031215611c3f57600080fd5b611c4885611b7c565b9350611c5660208601611b7c565b925060408501359150606085013567ffffffffffffffff811115611c7957600080fd5b8501601f81018713611c8a57600080fd5b611c9987823560208401611b06565b91505092959194509250565b60008060408385031215611cb857600080fd5b611cc183611b7c565b915060208301358015158114611cd657600080fd5b809150509250929050565b60008060408385031215611cf457600080fd5b611cfd83611b7c565b946020939093013593505050565b600060208284031215611d1d57600080fd5b8135611bb381612122565b600060208284031215611d3a57600080fd5b8151611bb381612122565b600060208284031215611d5757600080fd5b813567ffffffffffffffff811115611d6e57600080fd5b8201601f81018413611d7f57600080fd5b6111e784823560208401611b06565b600060208284031215611da057600080fd5b5035919050565b60008151808452611dbf816020860160208601612034565b601f01601f19169290920160200192915050565b60008151611de5818560208601612034565b9290920192915050565b600080845481600182811c915080831680611e0b57607f831692505b6020808410821415611e2b57634e487b7160e01b86526022600452602486fd5b818015611e3f5760018114611e5057611e7d565b60ff19861689528489019650611e7d565b60008b81526020902060005b86811015611e755781548b820152908501908301611e5c565b505084890196505b505050505050611ea1611e908286611dd3565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611edd90830184611da7565b9695505050505050565b602081526000611bb36020830184611da7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611fe557611fe56120ca565b500190565b600082611ff957611ff96120e0565b500490565b6000816000190483118215151615612018576120186120ca565b500290565b60008282101561202f5761202f6120ca565b500390565b60005b8381101561204f578181015183820152602001612037565b83811115610d825750506000910152565b600181811c9082168061207457607f821691505b6020821081141561209557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120af576120af6120ca565b5060010190565b6000826120c5576120c56120e0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109de57600080fdfea264697066735822122022cd4402cdac3dd5222650f35267e6f090b56f0c4207f8dec53e823bb48405f564736f6c63430008070033

Deployed Bytecode Sourcemap

37314:3348:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24142:305;;;;;;;;;;-1:-1:-1;24142:305:0;;;;;:::i;:::-;;:::i;:::-;;;7149:14:1;;7142:22;7124:41;;7112:2;7097:18;24142:305:0;;;;;;;;25087:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26646:221::-;;;;;;;;;;-1:-1:-1;26646:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6447:32:1;;;6429:51;;6417:2;6402:18;26646:221:0;6283:203:1;26169:411:0;;;;;;;;;;-1:-1:-1;26169:411:0;;;;;:::i;:::-;;:::i;:::-;;27396:339;;;;;;;;;;-1:-1:-1;27396:339:0;;;;;:::i;:::-;;:::i;37360:41::-;;;;;;;;;;;;37397:4;37360:41;;;;;16207:25:1;;;16195:2;16180:18;37360:41:0;16061:177:1;40083:376:0;;;;;;;;;;;;;:::i;27806:185::-;;;;;;;;;;-1:-1:-1;27806:185:0;;;;;:::i;:::-;;:::i;40467:192::-;;;;;;;;;;-1:-1:-1;40467:192:0;;;;;:::i;:::-;;:::i;38265:90::-;;;;;;;;;;-1:-1:-1;38265:90:0;;;;;:::i;:::-;;:::i;37533:32::-;;;;;;;;;;-1:-1:-1;37533:32:0;;;;;;;;24781:239;;;;;;;;;;-1:-1:-1;24781:239:0;;;;;:::i;:::-;;:::i;24511:208::-;;;;;;;;;;-1:-1:-1;24511:208:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;4112:87::-;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;25256:104;;;;;;;;;;;;;:::i;37492:34::-;;;;;;;;;;;;;;;;39037:630;;;;;;:::i;:::-;;:::i;26939:155::-;;;;;;;;;;-1:-1:-1;26939:155:0;;;;;:::i;:::-;;:::i;37572:30::-;;;;;;;;;;;;;;;;28062:328;;;;;;;;;;-1:-1:-1;28062:328:0;;;;;:::i;:::-;;:::i;37609:32::-;;;;;;;;;;;;;;;;38056:201;;;;;;;;;;-1:-1:-1;38056:201:0;;;;;:::i;:::-;;:::i;38464:565::-;;;;;;;;;;-1:-1:-1;38464:565:0;;;;;:::i;:::-;;:::i;38363:93::-;;;;;;;;;;;;;:::i;27165:164::-;;;;;;;;;;-1:-1:-1;27165:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27286:25:0;;;27262:4;27286:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27165:164;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;37711:24::-;;;;;;;;;;-1:-1:-1;37711:24:0;;;;;:::i;:::-;;:::i;24142:305::-;24244:4;-1:-1:-1;;;;;;24281:40:0;;-1:-1:-1;;;24281:40:0;;:105;;-1:-1:-1;;;;;;;24338:48:0;;-1:-1:-1;;;24338:48:0;24281:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;24403:36;24261:178;24142:305;-1:-1:-1;;24142:305:0:o;25087:100::-;25141:13;25174:5;25167:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25087:100;:::o;26646:221::-;26722:7;29989:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29989:16:0;26742:73;;;;-1:-1:-1;;;26742:73:0;;13912:2:1;26742:73:0;;;13894:21:1;13951:2;13931:18;;;13924:30;13990:34;13970:18;;;13963:62;-1:-1:-1;;;14041:18:1;;;14034:42;14093:19;;26742:73:0;;;;;;;;;-1:-1:-1;26835:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26835:24:0;;26646:221::o;26169:411::-;26250:13;26266:23;26281:7;26266:14;:23::i;:::-;26250:39;;26314:5;-1:-1:-1;;;;;26308:11:0;:2;-1:-1:-1;;;;;26308:11:0;;;26300:57;;;;-1:-1:-1;;;26300:57:0;;14686:2:1;26300:57:0;;;14668:21:1;14725:2;14705:18;;;14698:30;14764:34;14744:18;;;14737:62;-1:-1:-1;;;14815:18:1;;;14808:31;14856:19;;26300:57:0;14484:397:1;26300:57:0;2916:10;-1:-1:-1;;;;;26392:21:0;;;;:62;;-1:-1:-1;26417:37:0;26434:5;2916:10;27165:164;:::i;26417:37::-;26370:168;;;;-1:-1:-1;;;26370:168:0;;12305:2:1;26370:168:0;;;12287:21:1;12344:2;12324:18;;;12317:30;12383:34;12363:18;;;12356:62;12454:26;12434:18;;;12427:54;12498:19;;26370:168:0;12103:420:1;26370:168:0;26551:21;26560:2;26564:7;26551:8;:21::i;:::-;26239:341;26169:411;;:::o;27396:339::-;27591:41;2916:10;27610:12;27624:7;27591:18;:41::i;:::-;27583:103;;;;-1:-1:-1;;;27583:103:0;;;;;;;:::i;:::-;27699:28;27709:4;27715:2;27719:7;27699:9;:28::i;40083:376::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;40149:21:::1;40189:42;40181:83;40262:1;40242:13;40252:3;40149:21:::0;40242:13:::1;:::i;:::-;:17;::::0;40258:1:::1;40242:17;:::i;:::-;:21;;;;:::i;:::-;40181:83;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40283:42:0::1;40275:85;40358:1;40336:13;40346:3;40336:7:::0;:13:::1;:::i;:::-;:19;::::0;40352:3:::1;40336:19;:::i;:::-;:23;;;;:::i;:::-;40275:85;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40379:42:0::1;40371:80;40432:13;40442:3;40432:7:::0;:13:::1;:::i;:::-;:18;::::0;40448:2:::1;40432:18;:::i;:::-;40371:80;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40120:339;40083:376::o:0;27806:185::-;27944:39;27961:4;27967:2;27971:7;27944:39;;;;;;;;;;;;:16;:39::i;40467:192::-;40532:41;2916:10;40551:12;2836:98;40532:41;40524:102;;;;-1:-1:-1;;;40524:102:0;;15846:2:1;40524:102:0;;;15828:21:1;15885:2;15865:18;;;15858:30;15924:34;15904:18;;;15897:62;-1:-1:-1;;;15975:18:1;;;15968:46;16031:19;;40524:102:0;15644:412:1;40524:102:0;40637:14;40643:7;40637:5;:14::i;:::-;40467:192;:::o;38265:90::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;38334:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;24781:239::-:0;24853:7;24889:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24889:16:0;24924:19;24916:73;;;;-1:-1:-1;;;24916:73:0;;13141:2:1;24916:73:0;;;13123:21:1;13180:2;13160:18;;;13153:30;13219:34;13199:18;;;13192:62;-1:-1:-1;;;13270:18:1;;;13263:39;13319:19;;24916:73:0;12939:405:1;24511:208:0;24583:7;-1:-1:-1;;;;;24611:19:0;;24603:74;;;;-1:-1:-1;;;24603:74:0;;12730:2:1;24603:74:0;;;12712:21:1;12769:2;12749:18;;;12742:30;12808:34;12788:18;;;12781:62;-1:-1:-1;;;12859:18:1;;;12852:40;12909:19;;24603:74:0;12528:406:1;24603:74:0;-1:-1:-1;;;;;;24695:16:0;;;;;:9;:16;;;;;;;24511:208::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;25256:104::-;25312:13;25345:7;25338:14;;;;;:::i;39037:630::-;39103:12;;;;39095:46;;;;-1:-1:-1;;;39095:46:0;;9248:2:1;39095:46:0;;;9230:21:1;9287:2;9267:18;;;9260:30;-1:-1:-1;;;9306:18:1;;;9299:51;9367:18;;39095:46:0;9046:345:1;39095:46:0;39179:10;39160:30;;;;:18;:30;;;;;;37483:2;;39160:39;;39193:6;;39160:39;:::i;:::-;:57;;39152:115;;;;-1:-1:-1;;;39152:115:0;;7602:2:1;39152:115:0;;;7584:21:1;7641:2;7621:18;;;7614:30;7680:34;7660:18;;;7653:62;-1:-1:-1;;;7731:18:1;;;7724:43;7784:19;;39152:115:0;7400:409:1;39152:115:0;39304:9;39295:5;;39286:6;:14;;;;:::i;:::-;:27;39278:68;;;;-1:-1:-1;;;39278:68:0;;10714:2:1;39278:68:0;;;10696:21:1;10753:2;10733:18;;;10726:30;10792;10772:18;;;10765:58;10840:18;;39278:68:0;10512:352:1;39278:68:0;39372:6;39357:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;39408:10:0;39389:30;;;;:18;:30;;;;;:40;;39423:6;;39389:30;:40;;39423:6;;39389:40;:::i;:::-;;;;-1:-1:-1;39445:9:0;;-1:-1:-1;39440:220:0;39464:6;39460:1;:10;39440:220;;;39545:5;;39528:52;;;;;;6104:19:1;;;;-1:-1:-1;;39552:10:0;6161:2:1;6157:15;6153:53;6139:12;;;6132:75;39564:15:0;6223:12:1;;;6216:28;39492:15:0;;6260:12:1;;39528:52:0;;;;;;;;;;;;39518:63;;;;;;39510:72;;39492:90;;39597:51;39607:10;39619:28;39639:7;39619:19;:28::i;:::-;39597:9;:51::i;:::-;-1:-1:-1;39472:3:0;;;;:::i;:::-;;;;39440:220;;26939:155;27034:52;2916:10;27067:8;27077;27034:18;:52::i;28062:328::-;28237:41;2916:10;28270:7;28237:18;:41::i;:::-;28229:103;;;;-1:-1:-1;;;28229:103:0;;;;;;;:::i;:::-;28343:39;28357:4;28363:2;28367:7;28376:5;28343:13;:39::i;:::-;28062:328;;;;:::o;38056:201::-;38121:13;38178:1;38160:7;38154:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;38206:7;38215:18;:7;:16;:18::i;:::-;38189:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38147:102;38056:201;-1:-1:-1;;38056:201:0:o;38464:565::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;37440:2:::1;38557:6;38541:13;;:22;;;;:::i;:::-;:38;;38533:97;;;::::0;-1:-1:-1;;;38533:97:0;;11890:2:1;38533:97:0::1;::::0;::::1;11872:21:1::0;11929:2;11909:18;;;11902:30;11968:34;11948:18;;;11941:62;-1:-1:-1;;;12019:18:1;;;12012:44;12073:19;;38533:97:0::1;11688:410:1::0;38533:97:0::1;37397:4;38663:6;38649:11;;:20;;;;:::i;:::-;:34;;38641:84;;;::::0;-1:-1:-1;;;38641:84:0;;11071:2:1;38641:84:0::1;::::0;::::1;11053:21:1::0;11110:2;11090:18;;;11083:30;11149:34;11129:18;;;11122:62;-1:-1:-1;;;11200:18:1;;;11193:35;11245:19;;38641:84:0::1;10869:401:1::0;38641:84:0::1;38753:6;38736:13;;:23;;;;;;;:::i;:::-;;;;;;;;38785:6;38770:11;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;38807:9:0::1;::::0;-1:-1:-1;38802:220:0::1;38826:6;38822:1;:10;38802:220;;;38907:5;::::0;38890:52:::1;::::0;;::::1;::::0;::::1;6104:19:1::0;;;;-1:-1:-1;;38914:10:0::1;6161:2:1::0;6157:15;6153:53;6139:12;;;6132:75;38926:15:0::1;6223:12:1::0;;;6216:28;38854:15:0::1;::::0;6260:12:1;;38890:52:0::1;;;;;;;;;;;;38880:63;;;;;;38872:72;;38854:90;;38959:51;38969:10;38981:28;39001:7;38981:19;:28::i;38959:51::-;-1:-1:-1::0;38834:3:0;::::1;::::0;::::1;:::i;:::-;;;;38802:220;;38363:93:::0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;38436:12:::1;::::0;;-1:-1:-1;;38420:28:0;::::1;38436:12;::::0;;::::1;38435:13;38420:28;::::0;;38363:93::o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;8435:2:1;5102:73:0::1;::::0;::::1;8417:21:1::0;8474:2;8454:18;;;8447:30;8513:34;8493:18;;;8486:62;-1:-1:-1;;;8564:18:1;;;8557:36;8610:19;;5102:73:0::1;8233:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;37711:24::-:0;;;;;;;;;;;;;;;-1:-1:-1;37711:24:0;:::o;34046:174::-;34121:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34121:29:0;-1:-1:-1;;;;;34121:29:0;;;;;;;;:24;;34175:23;34121:24;34175:14;:23::i;:::-;-1:-1:-1;;;;;34166:46:0;;;;;;;;;;;34046:174;;:::o;30194:348::-;30287:4;29989:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29989:16:0;30304:73;;;;-1:-1:-1;;;30304:73:0;;11477:2:1;30304:73:0;;;11459:21:1;11516:2;11496:18;;;11489:30;11555:34;11535:18;;;11528:62;-1:-1:-1;;;11606:18:1;;;11599:42;11658:19;;30304:73:0;11275:408:1;30304:73:0;30388:13;30404:23;30419:7;30404:14;:23::i;:::-;30388:39;;30457:5;-1:-1:-1;;;;;30446:16:0;:7;-1:-1:-1;;;;;30446:16:0;;:51;;;;30490:7;-1:-1:-1;;;;;30466:31:0;:20;30478:7;30466:11;:20::i;:::-;-1:-1:-1;;;;;30466:31:0;;30446:51;:87;;;-1:-1:-1;;;;;;27286:25:0;;;27262:4;27286:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30501:32;30438:96;30194:348;-1:-1:-1;;;;30194:348:0:o;33303:625::-;33462:4;-1:-1:-1;;;;;33435:31:0;:23;33450:7;33435:14;:23::i;:::-;-1:-1:-1;;;;;33435:31:0;;33427:81;;;;-1:-1:-1;;;33427:81:0;;8842:2:1;33427:81:0;;;8824:21:1;8881:2;8861:18;;;8854:30;8920:34;8900:18;;;8893:62;-1:-1:-1;;;8971:18:1;;;8964:35;9016:19;;33427:81:0;8640:401:1;33427:81:0;-1:-1:-1;;;;;33527:16:0;;33519:65;;;;-1:-1:-1;;;33519:65:0;;9955:2:1;33519:65:0;;;9937:21:1;9994:2;9974:18;;;9967:30;10033:34;10013:18;;;10006:62;-1:-1:-1;;;10084:18:1;;;10077:34;10128:19;;33519:65:0;9753:400:1;33519:65:0;33701:29;33718:1;33722:7;33701:8;:29::i;:::-;-1:-1:-1;;;;;33743:15:0;;;;;;:9;:15;;;;;:20;;33762:1;;33743:15;:20;;33762:1;;33743:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33774:13:0;;;;;;:9;:13;;;;;:18;;33791:1;;33774:13;:18;;33791:1;;33774:18;:::i;:::-;;;;-1:-1:-1;;33803:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33803:21:0;-1:-1:-1;;;;;33803:21:0;;;;;;;;;33842:27;;33803:16;;33842:27;;;;;;;26239:341;26169:411;;:::o;32546:420::-;32606:13;32622:23;32637:7;32622:14;:23::i;:::-;32606:39;;32747:29;32764:1;32768:7;32747:8;:29::i;:::-;-1:-1:-1;;;;;32789:16:0;;;;;;:9;:16;;;;;:21;;32809:1;;32789:16;:21;;32809:1;;32789:21;:::i;:::-;;;;-1:-1:-1;;32828:16:0;;;;:7;:16;;;;;;32821:23;;-1:-1:-1;;;;;;32821:23:0;;;32862:36;32836:7;;32828:16;-1:-1:-1;;;;;32862:36:0;;;;;32828:16;;32862:36;40371:80:::1;40120:339;40083:376::o:0;5382:191::-;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;39676:399::-;39788:5;:7;;39738:10;;;;39788:7;39738:10;39788:7;;;:::i;:::-;;;;-1:-1:-1;39775:20:0;;:10;:20;:::i;:::-;39761:34;;39820:1;39814:3;:7;39806:31;;;;-1:-1:-1;;;39806:31:0;;15506:2:1;39806:31:0;;;15488:21:1;15545:2;15525:18;;;15518:30;-1:-1:-1;;;15564:18:1;;;15557:41;15615:18;;39806:31:0;15304:335:1;39806:31:0;39848:19;39870:12;39879:3;39870:6;:12;:::i;:::-;39848:34;;39898:3;39902:11;39898:16;;;;;;;:::i;:::-;;;:62;;39945:15;:11;39959:1;39945:15;:::i;:::-;39898:62;;;39922:3;39926:11;39922:16;;;;;;;:::i;:::-;;;:20;;39941:1;39922:20;:::i;:::-;39893:67;-1:-1:-1;39997:3:0;40001:7;40007:1;40001:3;:7;:::i;:::-;39997:12;;;;;;;:::i;:::-;;;:17;:42;;40027:3;40031:7;40037:1;40031:3;:7;:::i;:::-;40027:12;;;;;;;:::i;:::-;;;39997:42;;;40017:7;40023:1;40017:3;:7;:::i;:::-;39971:69;;:3;39975:11;39971:16;;;;;;;:::i;:::-;;:69;40066:1;40051:3;40055:7;40061:1;40055:3;:7;:::i;:::-;40051:12;;;;;;;:::i;:::-;;:16;-1:-1:-1;39676:399:0;;;-1:-1:-1;;39676:399:0:o;30884:110::-;30960:26;30970:2;30974:7;30960:26;;;;;;;;;;;;:9;:26::i;34362:315::-;34517:8;-1:-1:-1;;;;;34508:17:0;:5;-1:-1:-1;;;;;34508:17:0;;;34500:55;;;;-1:-1:-1;;;34500:55:0;;10360:2:1;34500:55:0;;;10342:21:1;10399:2;10379:18;;;10372:30;10438:27;10418:18;;;10411:55;10483:18;;34500:55:0;10158:349:1;34500:55:0;-1:-1:-1;;;;;34566:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34566:46:0;;;;;;;;;;34628:41;;7124::1;;;34628::0;;7097:18:1;34628:41:0;;;;;;;34362:315;;;:::o;29272:::-;29429:28;29439:4;29445:2;29449:7;29429:9;:28::i;:::-;29476:48;29499:4;29505:2;29509:7;29518:5;29476:22;:48::i;:::-;29468:111;;;;-1:-1:-1;;;29468:111:0;;;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;31221:321;31351:18;31357:2;31361:7;31351:5;:18::i;:::-;31402:54;31433:1;31437:2;31441:7;31450:5;31402:22;:54::i;:::-;31380:154;;;;-1:-1:-1;;;31380:154:0;;;;;;;:::i;35242:799::-;35397:4;-1:-1:-1;;;;;35418:13:0;;7108:19;:23;35414:620;;35454:72;;-1:-1:-1;;;35454:72:0;;-1:-1:-1;;;;;35454:36:0;;;;;:72;;2916:10;;35505:4;;35511:7;;35520:5;;35454:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35454:72:0;;;;;;;;-1:-1:-1;;35454:72:0;;;;;;;;;;;;:::i;:::-;;;35450:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35696:13:0;;35692:272;;35739:60;;-1:-1:-1;;;35739:60:0;;;;;;;:::i;35692:272::-;35914:6;35908:13;35899:6;35895:2;35891:15;35884:38;35450:529;-1:-1:-1;;;;;;35577:51:0;-1:-1:-1;;;35577:51:0;;-1:-1:-1;35570:58:0;;35414:620;-1:-1:-1;36018:4:0;35242:799;;;;;;:::o;31878:439::-;-1:-1:-1;;;;;31958:16:0;;31950:61;;;;-1:-1:-1;;;31950:61:0;;13551:2:1;31950:61:0;;;13533:21:1;;;13570:18;;;13563:30;13629:34;13609:18;;;13602:62;13681:18;;31950:61:0;13349:356:1;31950:61:0;29965:4;29989:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29989:16:0;:30;32022:58;;;;-1:-1:-1;;;32022:58:0;;9598:2:1;32022:58:0;;;9580:21:1;9637:2;9617:18;;;9610:30;9676;9656:18;;;9649:58;9724:18;;32022:58:0;9396:352:1;32022:58:0;-1:-1:-1;;;;;32151:13:0;;;;;;:9;:13;;;;;:18;;32168:1;;32151:13;:18;;32168:1;;32151:18;:::i;:::-;;;;-1:-1:-1;;32180:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32180:21:0;-1:-1:-1;;;;;32180:21:0;;;;;;;;32219:33;;32180:16;;;32219:33;;32180:16;;32219:33;40371:80:::1;40120:339;40083:376::o:0;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;16316:1;16309:14;;;16353:4;16340:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6491:488::-;-1:-1:-1;;;;;6760:15:1;;;6742:34;;6812:15;;6807:2;6792:18;;6785:43;6859:2;6844:18;;6837:34;;;6907:3;6902:2;6887:18;;6880:31;;;6685:4;;6928:45;;6953:19;;6945:6;6928:45;:::i;:::-;6920:53;6491:488;-1:-1:-1;;;;;;6491:488:1:o;7176:219::-;7325:2;7314:9;7307:21;7288:4;7345:44;7385:2;7374:9;7370:18;7362:6;7345:44;:::i;7814:414::-;8016:2;7998:21;;;8055:2;8035:18;;;8028:30;8094:34;8089:2;8074:18;;8067:62;-1:-1:-1;;;8160:2:1;8145:18;;8138:48;8218:3;8203:19;;7814:414::o;14123:356::-;14325:2;14307:21;;;14344:18;;;14337:30;14403:34;14398:2;14383:18;;14376:62;14470:2;14455:18;;14123:356::o;14886:413::-;15088:2;15070:21;;;15127:2;15107:18;;;15100:30;15166:34;15161:2;15146:18;;15139:62;-1:-1:-1;;;15232:2:1;15217:18;;15210:47;15289:3;15274:19;;14886:413::o;16369:128::-;16409:3;16440:1;16436:6;16433:1;16430:13;16427:39;;;16446:18;;:::i;:::-;-1:-1:-1;16482:9:1;;16369:128::o;16502:120::-;16542:1;16568;16558:35;;16573:18;;:::i;:::-;-1:-1:-1;16607:9:1;;16502:120::o;16627:168::-;16667:7;16733:1;16729;16725:6;16721:14;16718:1;16715:21;16710:1;16703:9;16696:17;16692:45;16689:71;;;16740:18;;:::i;:::-;-1:-1:-1;16780:9:1;;16627:168::o;16800:125::-;16840:4;16868:1;16865;16862:8;16859:34;;;16873:18;;:::i;:::-;-1:-1:-1;16910:9:1;;16800:125::o;16930:258::-;17002:1;17012:113;17026:6;17023:1;17020:13;17012:113;;;17102:11;;;17096:18;17083:11;;;17076:39;17048:2;17041:10;17012:113;;;17143:6;17140:1;17137:13;17134:48;;;-1:-1:-1;;17178:1:1;17160:16;;17153:27;16930:258::o;17193:380::-;17272:1;17268:12;;;;17315;;;17336:61;;17390:4;17382:6;17378:17;17368:27;;17336:61;17443:2;17435:6;17432:14;17412:18;17409:38;17406:161;;;17489:10;17484:3;17480:20;17477:1;17470:31;17524:4;17521:1;17514:15;17552:4;17549:1;17542:15;17406:161;;17193:380;;;:::o;17578:135::-;17617:3;-1:-1:-1;;17638:17:1;;17635:43;;;17658:18;;:::i;:::-;-1:-1:-1;17705:1:1;17694:13;;17578:135::o;17718:112::-;17750:1;17776;17766:35;;17781:18;;:::i;:::-;-1:-1:-1;17815:9:1;;17718:112::o;17835:127::-;17896:10;17891:3;17887:20;17884:1;17877:31;17927:4;17924:1;17917:15;17951:4;17948:1;17941:15;17967:127;18028:10;18023:3;18019:20;18016:1;18009:31;18059:4;18056:1;18049:15;18083:4;18080:1;18073:15;18099:127;18160:10;18155:3;18151:20;18148:1;18141:31;18191:4;18188:1;18181:15;18215:4;18212:1;18205:15;18231:127;18292:10;18287:3;18283:20;18280:1;18273:31;18323:4;18320:1;18313:15;18347:4;18344:1;18337:15;18363:131;-1:-1:-1;;;;;;18437:32:1;;18427:43;;18417:71;;18484:1;18481;18474:12

Swarm Source

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