The Derps (DERPS)

Overview

TokenID

366

Total Transfers

-

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
TheDerps

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-17
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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




/**
 * @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);
    }
}




/*
 * @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;
    }
}









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

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

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

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

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

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

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

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





/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}














/**
 * @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);
}







/**
 * @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);
}





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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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









/**
 * @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;
    }
}


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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







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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


contract TheDerps is ERC721Enumerable, ReentrancyGuard, Ownable {
    using Strings for uint256;
    uint256 public MAX_SUPPLY = 2000;
    uint256 public next_id = 1;
    uint256 public MAX_FREE = 100;

    uint256 public COST = 100 ether;
    address public treasury = 0x68705637c16bF32A28a82914f7aADEFB3aBE31CD;

    function setTreasury(address newTreasury) public onlyOwner {
        treasury = newTreasury;
    }
    
    function _updateNextID(uint256 mintAmount) internal {
        next_id += mintAmount;
    }

    bool public MINT_LIVE = false;
    function startMint() public onlyOwner {
        MINT_LIVE = true;
    }
    function endMint() public onlyOwner {
        MINT_LIVE = false;
    }

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

    error ERC721NonexistentToken(uint256 tokenId);
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

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

    function mintFree(uint256 amount) public nonReentrant onlyOwner {
        require(amount > 0, "must be minting");
        require(next_id + amount - 1 <= MAX_FREE, "free supply has been minted");
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(treasury, next_id + i);
        }
        _updateNextID(amount);
    }
    
    function mint() public nonReentrant payable {
        require(MINT_LIVE, "minting has not started or has finished");
        require(next_id <= MAX_SUPPLY, "no more derps available");
        require(msg.value >= COST, "not enough Sonic");
        payable(treasury).transfer(msg.value);
        _safeMint(_msgSender(), next_id);
        _updateNextID(1);
    }

    function mintMany(uint256 amount) public nonReentrant payable {
        require(amount > 0, "must be minting");
        require(MINT_LIVE, "minting has not started or has finished");
        require(next_id + amount - 1 <= MAX_SUPPLY, "no more derps available");
        require(msg.value >= COST*amount, "not enough Sonic");
        require(amount <= 20, "can only mint 20 in one transaction");
        payable(treasury).transfer(msg.value);
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(_msgSender(), next_id + i);
        }
        _updateNextID(amount);
    }

    constructor() ERC721("The Derps", "DERPS") Ownable() {
        
    }

    function helpWithdrawAccidentalDeposit(address token, address to) public {
        require(msg.sender == treasury, "not the treasury");
        IERC20(token).transfer(to, IERC20(token).balanceOf(address(this)));
    }

    function helpWithdrawAccidentalDeposit2() public {
       require(msg.sender == treasury, "not the treasury");
       (bool success, ) = msg.sender.call{ value: address(this).balance } ("");
       require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_LIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"helpWithdrawAccidentalDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"helpWithdrawAccidentalDeposit2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"next_id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6107d0600c556001600d556064600e5568056bc75e2d63100000600f55601080546001600160a81b0319167368705637c16bf32a28a82914f7aadefb3abe31cd17905560a06040525f608090815260119061005a90826101c1565b50348015610066575f5ffd5b506040518060400160405280600981526020016854686520446572707360b81b81525060405180604001604052806005815260200164444552505360d81b815250815f90816100b591906101c1565b5060016100c282826101c1565b50506001600a55506100d3336100d8565b61027b565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061015157607f821691505b60208210810361016f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101bc57805f5260205f20601f840160051c8101602085101561019a5750805b601f840160051c820191505b818110156101b9575f81556001016101a6565b50505b505050565b81516001600160401b038111156101da576101da610129565b6101ee816101e8845461013d565b84610175565b6020601f821160018114610220575f83156102095750848201515b5f19600385901b1c1916600184901b1784556101b9565b5f84815260208120601f198516915b8281101561024f578785015182556020948501946001909201910161022f565b508482101561026c57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6131b9806102885f395ff3fe60806040526004361061020f575f3560e01c806361d027b311610117578063a4146733116100ac578063e31bfa001161007c578063ed6661c211610062578063ed6661c2146105f8578063f0f442601461060d578063f2fde38b1461062c575f5ffd5b8063e31bfa001461058f578063e985e9c5146105a4575f5ffd5b8063a41467331461051d578063b88d4fde1461053c578063bf8fbbd21461055b578063c87b56dd14610570575f5ffd5b80638180f63f116100e75780638180f63f1461048f5780638da5cb5b146104c057806395d89b41146104ea578063a22cb465146104fe575f5ffd5b806361d027b3146104115780636352211e1461043d57806370a082311461045c578063715018a61461047b575f5ffd5b806318160ddd116101a757806332cb6b0c1161017757806342842e0e1161015d57806342842e0e146103b45780634f6ccce7146103d357806355f804b3146103f2575f5ffd5b806332cb6b0c1461038b57806341c4b106146103a0575f5ffd5b806318160ddd1461031b57806323b872dd146103395780632be09561146103585780632f745c591461036c575f5ffd5b806306fdde03116101e257806306fdde031461028f578063081812fc146102b0578063095ea7b3146102f45780631249c58b14610313575f5ffd5b80630139a53d14610213578063017043a51461023457806301ffc9a714610248578063059513a61461027c575b5f5ffd5b34801561021e575f5ffd5b5061023261022d366004612a0d565b61064b565b005b34801561023f575f5ffd5b506102326107e3565b348015610253575f5ffd5b50610267610262366004612a6b565b610874565b60405190151581526020015b60405180910390f35b61023261028a366004612a8d565b6108cf565b34801561029a575f5ffd5b506102a3610bc1565b6040516102739190612af0565b3480156102bb575f5ffd5b506102cf6102ca366004612a8d565b610c50565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610273565b3480156102ff575f5ffd5b5061023261030e366004612b02565b610d0e565b610232610e60565b348015610326575f5ffd5b506008545b604051908152602001610273565b348015610344575f5ffd5b50610232610353366004612b2a565b61104e565b348015610363575f5ffd5b506102326110d5565b348015610377575f5ffd5b5061032b610386366004612b02565b61117d565b348015610396575f5ffd5b5061032b600c5481565b3480156103ab575f5ffd5b50610232611230565b3480156103bf575f5ffd5b506102326103ce366004612b2a565b61132f565b3480156103de575f5ffd5b5061032b6103ed366004612a8d565b611349565b3480156103fd575f5ffd5b5061023261040c366004612c26565b6113ea565b34801561041c575f5ffd5b506010546102cf9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610448575f5ffd5b506102cf610457366004612a8d565b611461565b348015610467575f5ffd5b5061032b610476366004612c6b565b6114f8565b348015610486575f5ffd5b506102326115aa565b34801561049a575f5ffd5b506010546102679074010000000000000000000000000000000000000000900460ff1681565b3480156104cb575f5ffd5b50600b5473ffffffffffffffffffffffffffffffffffffffff166102cf565b3480156104f5575f5ffd5b506102a361161c565b348015610509575f5ffd5b50610232610518366004612c91565b61162b565b348015610528575f5ffd5b50610232610537366004612a8d565b611726565b348015610547575f5ffd5b50610232610556366004612cc6565b6118dc565b348015610566575f5ffd5b5061032b600f5481565b34801561057b575f5ffd5b506102a361058a366004612a8d565b61196a565b34801561059a575f5ffd5b5061032b600d5481565b3480156105af575f5ffd5b506102676105be366004612a0d565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260056020908152604080832093909416825291909152205460ff1690565b348015610603575f5ffd5b5061032b600e5481565b348015610618575f5ffd5b50610232610627366004612c6b565b6119d0565b348015610637575f5ffd5b50610232610646366004612c6b565b611a7e565b60105473ffffffffffffffffffffffffffffffffffffffff1633146106b75760405162461bcd60e51b815260206004820152601060248201527f6e6f74207468652074726561737572790000000000000000000000000000000060448201526064015b60405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb90839083906370a0823190602401602060405180830381865afa158015610729573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074d9190612d3d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af11580156107ba573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107de9190612d54565b505050565b600b5473ffffffffffffffffffffffffffffffffffffffff16331461084a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806108c957506108c982611b77565b92915050565b6002600a54036109215760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ae565b6002600a55806109735760405162461bcd60e51b815260206004820152600f60248201527f6d757374206265206d696e74696e67000000000000000000000000000000000060448201526064016106ae565b60105474010000000000000000000000000000000000000000900460ff16610a035760405162461bcd60e51b815260206004820152602760248201527f6d696e74696e6720686173206e6f742073746172746564206f7220686173206660448201527f696e69736865640000000000000000000000000000000000000000000000000060648201526084016106ae565b600c54600182600d54610a169190612d9c565b610a209190612daf565b1115610a6e5760405162461bcd60e51b815260206004820152601760248201527f6e6f206d6f726520646572707320617661696c61626c6500000000000000000060448201526064016106ae565b80600f54610a7c9190612dc2565b341015610acb5760405162461bcd60e51b815260206004820152601060248201527f6e6f7420656e6f75676820536f6e69630000000000000000000000000000000060448201526064016106ae565b6014811115610b425760405162461bcd60e51b815260206004820152602360248201527f63616e206f6e6c79206d696e7420323020696e206f6e65207472616e7361637460448201527f696f6e000000000000000000000000000000000000000000000000000000000060648201526084016106ae565b60105460405173ffffffffffffffffffffffffffffffffffffffff909116903480156108fc02915f818181858888f19350505050158015610b85573d5f5f3e3d5ffd5b505f5b81811015610baf57610ba73382600d54610ba29190612d9c565b611c59565b600101610b88565b50610bb981611c72565b506001600a55565b60605f8054610bcf90612dd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfb90612dd9565b8015610c465780601f10610c1d57610100808354040283529160200191610c46565b820191905f5260205f20905b815481529060010190602001808311610c2957829003601f168201915b5050505050905090565b5f8181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610ce65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106ae565b505f9081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b5f610d1882611461565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106ae565b3373ffffffffffffffffffffffffffffffffffffffff82161480610de45750610de481336105be565b610e565760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ae565b6107de8383611c8b565b6002600a5403610eb25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ae565b6002600a5560105474010000000000000000000000000000000000000000900460ff16610f475760405162461bcd60e51b815260206004820152602760248201527f6d696e74696e6720686173206e6f742073746172746564206f7220686173206660448201527f696e69736865640000000000000000000000000000000000000000000000000060648201526084016106ae565b600c54600d541115610f9b5760405162461bcd60e51b815260206004820152601760248201527f6e6f206d6f726520646572707320617661696c61626c6500000000000000000060448201526064016106ae565b600f54341015610fed5760405162461bcd60e51b815260206004820152601060248201527f6e6f7420656e6f75676820536f6e69630000000000000000000000000000000060448201526064016106ae565b60105460405173ffffffffffffffffffffffffffffffffffffffff909116903480156108fc02915f818181858888f19350505050158015611030573d5f5f3e3d5ffd5b5061103d33600d54611c59565b6110476001611c72565b6001600a55565b6110583382611d2a565b6110ca5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106ae565b6107de838383611e7d565b600b5473ffffffffffffffffffffffffffffffffffffffff16331461113c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b5f611187836114f8565b82106111fb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016106ae565b5073ffffffffffffffffffffffffffffffffffffffff919091165f908152600660209081526040808320938352929052205490565b60105473ffffffffffffffffffffffffffffffffffffffff1633146112975760405162461bcd60e51b815260206004820152601060248201527f6e6f74207468652074726561737572790000000000000000000000000000000060448201526064016106ae565b6040515f90339047908381818185875af1925050503d805f81146112d6576040519150601f19603f3d011682016040523d82523d5f602084013e6112db565b606091505b505090508061132c5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016106ae565b50565b6107de83838360405180602001604052805f8152506118dc565b5f61135360085490565b82106113c75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016106ae565b600882815481106113da576113da612e2a565b905f5260205f2001549050919050565b600b5473ffffffffffffffffffffffffffffffffffffffff1633146114515760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b601161145d8282612ea2565b5050565b5f8181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806108c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106ae565b5f73ffffffffffffffffffffffffffffffffffffffff82166115825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106ae565b5073ffffffffffffffffffffffffffffffffffffffff165f9081526003602052604090205490565b600b5473ffffffffffffffffffffffffffffffffffffffff1633146116115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b61161a5f6120b7565b565b606060018054610bcf90612dd9565b3373ffffffffffffffffffffffffffffffffffffffff8316036116905760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ae565b335f81815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600a54036117785760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ae565b6002600a55600b5473ffffffffffffffffffffffffffffffffffffffff1633146117e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b5f81116118335760405162461bcd60e51b815260206004820152600f60248201527f6d757374206265206d696e74696e67000000000000000000000000000000000060448201526064016106ae565b600e54600182600d546118469190612d9c565b6118509190612daf565b111561189e5760405162461bcd60e51b815260206004820152601b60248201527f6672656520737570706c7920686173206265656e206d696e746564000000000060448201526064016106ae565b5f5b81811015610baf57601054600d546118d49173ffffffffffffffffffffffffffffffffffffffff1690610ba2908490612d9c565b6001016118a0565b6118e63383611d2a565b6119585760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106ae565b6119648484848461212d565b50505050565b6060611975826121b6565b505f6011805461198490612dd9565b90501161199f5760405180602001604052805f8152506108c9565b60116119aa83612213565b6040516020016119bb929190612fb9565b60405160208183030381529060405292915050565b600b5473ffffffffffffffffffffffffffffffffffffffff163314611a375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600b5473ffffffffffffffffffffffffffffffffffffffff163314611ae55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b73ffffffffffffffffffffffffffffffffffffffff8116611b6e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106ae565b61132c816120b7565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611c0957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108c957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c9565b61145d828260405180602001604052805f815250612344565b80600d5f828254611c839190612d9c565b909155505050565b5f81815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611ce482611461565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f8181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611dc05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106ae565b5f611dca83611461565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e3957508373ffffffffffffffffffffffffffffffffffffffff16611e2184610c50565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e75575073ffffffffffffffffffffffffffffffffffffffff8082165f9081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611e9d82611461565b73ffffffffffffffffffffffffffffffffffffffff1614611f265760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106ae565b73ffffffffffffffffffffffffffffffffffffffff8216611fae5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106ae565b611fb98383836123cc565b611fc35f82611c8b565b73ffffffffffffffffffffffffffffffffffffffff83165f908152600360205260408120805460019290611ff8908490612daf565b909155505073ffffffffffffffffffffffffffffffffffffffff82165f908152600360205260408120805460019290612032908490612d9c565b90915550505f8181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b612138848484611e7d565b612144848484846124d1565b6119645760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106ae565b5f5f6121c183611461565b905073ffffffffffffffffffffffffffffffffffffffff81166108c9576040517f7e273289000000000000000000000000000000000000000000000000000000008152600481018490526024016106ae565b6060815f0361225557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b815f5b811561227e578061226881613057565b91506122779050600a836130bb565b9150612258565b5f8167ffffffffffffffff81111561229857612298612b64565b6040519080825280601f01601f1916602001820160405280156122c2576020820181803683370190505b5090505b8415611e75576122d7600183612daf565b91506122e4600a866130ce565b6122ef906030612d9c565b60f81b81838151811061230457612304612e2a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a90535061233d600a866130bb565b94506122c6565b61234e83836126a6565b61235a5f8484846124d1565b6107de5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106ae565b73ffffffffffffffffffffffffffffffffffffffff83166124335761242e81600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612470565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461247057612470838261283c565b73ffffffffffffffffffffffffffffffffffffffff8216612494576107de816128ef565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146107de576107de8282612996565b5f73ffffffffffffffffffffffffffffffffffffffff84163b1561269b576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906125479033908990889088906004016130e1565b6020604051808303815f875af192505050801561259f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261259c9181019061313b565b60015b612650573d8080156125cc576040519150601f19603f3d011682016040523d82523d5f602084013e6125d1565b606091505b5080515f036126485760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106ae565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611e75565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166127095760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ae565b5f8181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff161561277a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ae565b6127855f83836123cc565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526003602052604081208054600192906127ba908490612d9c565b90915550505f8181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f6001612848846114f8565b6128529190612daf565b5f838152600760205260409020549091508082146128b05773ffffffffffffffffffffffffffffffffffffffff84165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f91825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008545f9061290090600190612daf565b5f838152600960205260408120546008805493945090928490811061292757612927612e2a565b905f5260205f2001549050806008838154811061294657612946612e2a565b5f91825260208083209091019290925582815260099091526040808220849055858252812055600880548061297d5761297d613156565b600190038181905f5260205f20015f9055905550505050565b5f6129a0836114f8565b73ffffffffffffffffffffffffffffffffffffffff9093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b803573ffffffffffffffffffffffffffffffffffffffff81168114612a08575f5ffd5b919050565b5f5f60408385031215612a1e575f5ffd5b612a27836129e5565b9150612a35602084016129e5565b90509250929050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461132c575f5ffd5b5f60208284031215612a7b575f5ffd5b8135612a8681612a3e565b9392505050565b5f60208284031215612a9d575f5ffd5b5035919050565b5f81518084528060208401602086015e5f6020828601015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011685010191505092915050565b602081525f612a866020830184612aa4565b5f5f60408385031215612b13575f5ffd5b612b1c836129e5565b946020939093013593505050565b5f5f5f60608486031215612b3c575f5ffd5b612b45846129e5565b9250612b53602085016129e5565b929592945050506040919091013590565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f5f67ffffffffffffffff841115612bab57612bab612b64565b506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f85018116603f0116810181811067ffffffffffffffff82111715612bf857612bf8612b64565b604052838152905080828401851015612c0f575f5ffd5b838360208301375f60208583010152509392505050565b5f60208284031215612c36575f5ffd5b813567ffffffffffffffff811115612c4c575f5ffd5b8201601f81018413612c5c575f5ffd5b611e7584823560208401612b91565b5f60208284031215612c7b575f5ffd5b612a86826129e5565b801515811461132c575f5ffd5b5f5f60408385031215612ca2575f5ffd5b612cab836129e5565b91506020830135612cbb81612c84565b809150509250929050565b5f5f5f5f60808587031215612cd9575f5ffd5b612ce2856129e5565b9350612cf0602086016129e5565b925060408501359150606085013567ffffffffffffffff811115612d12575f5ffd5b8501601f81018713612d22575f5ffd5b612d3187823560208401612b91565b91505092959194509250565b5f60208284031215612d4d575f5ffd5b5051919050565b5f60208284031215612d64575f5ffd5b8151612a8681612c84565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b808201808211156108c9576108c9612d6f565b818103818111156108c9576108c9612d6f565b80820281158282048414176108c9576108c9612d6f565b600181811c90821680612ded57607f821691505b602082108103612e24577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b601f8211156107de57805f5260205f20601f840160051c81016020851015612e7c5750805b601f840160051c820191505b81811015612e9b575f8155600101612e88565b5050505050565b815167ffffffffffffffff811115612ebc57612ebc612b64565b612ed081612eca8454612dd9565b84612e57565b6020601f821160018114612f21575f8315612eeb5750848201515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600385901b1c1916600184901b178455612e9b565b5f848152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08516915b82811015612f6e5787850151825560209485019460019092019101612f4e565b5084821015612faa57868401517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b60f8161c191681555b50505050600190811b01905550565b5f5f8454612fc681612dd9565b600182168015612fdd57600181146130105761303d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008316865281151582028601935061303d565b875f5260205f205f5b8381101561303557815488820152600190910190602001613019565b505081860193505b50505083518060208601835e5f9101908152949350505050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361308757613087612d6f565b5060010190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f826130c9576130c961308e565b500490565b5f826130dc576130dc61308e565b500690565b73ffffffffffffffffffffffffffffffffffffffff8516815273ffffffffffffffffffffffffffffffffffffffff84166020820152826040820152608060608201525f6131316080830184612aa4565b9695505050505050565b5f6020828403121561314b575f5ffd5b8151612a8681612a3e565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220372ff3f6e92d34a70053b5bdeade0bc3deefb51edf2d2f2df96972f809879a2964736f6c634300081c0033

Deployed Bytecode

0x60806040526004361061020f575f3560e01c806361d027b311610117578063a4146733116100ac578063e31bfa001161007c578063ed6661c211610062578063ed6661c2146105f8578063f0f442601461060d578063f2fde38b1461062c575f5ffd5b8063e31bfa001461058f578063e985e9c5146105a4575f5ffd5b8063a41467331461051d578063b88d4fde1461053c578063bf8fbbd21461055b578063c87b56dd14610570575f5ffd5b80638180f63f116100e75780638180f63f1461048f5780638da5cb5b146104c057806395d89b41146104ea578063a22cb465146104fe575f5ffd5b806361d027b3146104115780636352211e1461043d57806370a082311461045c578063715018a61461047b575f5ffd5b806318160ddd116101a757806332cb6b0c1161017757806342842e0e1161015d57806342842e0e146103b45780634f6ccce7146103d357806355f804b3146103f2575f5ffd5b806332cb6b0c1461038b57806341c4b106146103a0575f5ffd5b806318160ddd1461031b57806323b872dd146103395780632be09561146103585780632f745c591461036c575f5ffd5b806306fdde03116101e257806306fdde031461028f578063081812fc146102b0578063095ea7b3146102f45780631249c58b14610313575f5ffd5b80630139a53d14610213578063017043a51461023457806301ffc9a714610248578063059513a61461027c575b5f5ffd5b34801561021e575f5ffd5b5061023261022d366004612a0d565b61064b565b005b34801561023f575f5ffd5b506102326107e3565b348015610253575f5ffd5b50610267610262366004612a6b565b610874565b60405190151581526020015b60405180910390f35b61023261028a366004612a8d565b6108cf565b34801561029a575f5ffd5b506102a3610bc1565b6040516102739190612af0565b3480156102bb575f5ffd5b506102cf6102ca366004612a8d565b610c50565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610273565b3480156102ff575f5ffd5b5061023261030e366004612b02565b610d0e565b610232610e60565b348015610326575f5ffd5b506008545b604051908152602001610273565b348015610344575f5ffd5b50610232610353366004612b2a565b61104e565b348015610363575f5ffd5b506102326110d5565b348015610377575f5ffd5b5061032b610386366004612b02565b61117d565b348015610396575f5ffd5b5061032b600c5481565b3480156103ab575f5ffd5b50610232611230565b3480156103bf575f5ffd5b506102326103ce366004612b2a565b61132f565b3480156103de575f5ffd5b5061032b6103ed366004612a8d565b611349565b3480156103fd575f5ffd5b5061023261040c366004612c26565b6113ea565b34801561041c575f5ffd5b506010546102cf9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610448575f5ffd5b506102cf610457366004612a8d565b611461565b348015610467575f5ffd5b5061032b610476366004612c6b565b6114f8565b348015610486575f5ffd5b506102326115aa565b34801561049a575f5ffd5b506010546102679074010000000000000000000000000000000000000000900460ff1681565b3480156104cb575f5ffd5b50600b5473ffffffffffffffffffffffffffffffffffffffff166102cf565b3480156104f5575f5ffd5b506102a361161c565b348015610509575f5ffd5b50610232610518366004612c91565b61162b565b348015610528575f5ffd5b50610232610537366004612a8d565b611726565b348015610547575f5ffd5b50610232610556366004612cc6565b6118dc565b348015610566575f5ffd5b5061032b600f5481565b34801561057b575f5ffd5b506102a361058a366004612a8d565b61196a565b34801561059a575f5ffd5b5061032b600d5481565b3480156105af575f5ffd5b506102676105be366004612a0d565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260056020908152604080832093909416825291909152205460ff1690565b348015610603575f5ffd5b5061032b600e5481565b348015610618575f5ffd5b50610232610627366004612c6b565b6119d0565b348015610637575f5ffd5b50610232610646366004612c6b565b611a7e565b60105473ffffffffffffffffffffffffffffffffffffffff1633146106b75760405162461bcd60e51b815260206004820152601060248201527f6e6f74207468652074726561737572790000000000000000000000000000000060448201526064015b60405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb90839083906370a0823190602401602060405180830381865afa158015610729573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074d9190612d3d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af11580156107ba573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107de9190612d54565b505050565b600b5473ffffffffffffffffffffffffffffffffffffffff16331461084a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806108c957506108c982611b77565b92915050565b6002600a54036109215760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ae565b6002600a55806109735760405162461bcd60e51b815260206004820152600f60248201527f6d757374206265206d696e74696e67000000000000000000000000000000000060448201526064016106ae565b60105474010000000000000000000000000000000000000000900460ff16610a035760405162461bcd60e51b815260206004820152602760248201527f6d696e74696e6720686173206e6f742073746172746564206f7220686173206660448201527f696e69736865640000000000000000000000000000000000000000000000000060648201526084016106ae565b600c54600182600d54610a169190612d9c565b610a209190612daf565b1115610a6e5760405162461bcd60e51b815260206004820152601760248201527f6e6f206d6f726520646572707320617661696c61626c6500000000000000000060448201526064016106ae565b80600f54610a7c9190612dc2565b341015610acb5760405162461bcd60e51b815260206004820152601060248201527f6e6f7420656e6f75676820536f6e69630000000000000000000000000000000060448201526064016106ae565b6014811115610b425760405162461bcd60e51b815260206004820152602360248201527f63616e206f6e6c79206d696e7420323020696e206f6e65207472616e7361637460448201527f696f6e000000000000000000000000000000000000000000000000000000000060648201526084016106ae565b60105460405173ffffffffffffffffffffffffffffffffffffffff909116903480156108fc02915f818181858888f19350505050158015610b85573d5f5f3e3d5ffd5b505f5b81811015610baf57610ba73382600d54610ba29190612d9c565b611c59565b600101610b88565b50610bb981611c72565b506001600a55565b60605f8054610bcf90612dd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfb90612dd9565b8015610c465780601f10610c1d57610100808354040283529160200191610c46565b820191905f5260205f20905b815481529060010190602001808311610c2957829003601f168201915b5050505050905090565b5f8181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610ce65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106ae565b505f9081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b5f610d1882611461565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106ae565b3373ffffffffffffffffffffffffffffffffffffffff82161480610de45750610de481336105be565b610e565760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ae565b6107de8383611c8b565b6002600a5403610eb25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ae565b6002600a5560105474010000000000000000000000000000000000000000900460ff16610f475760405162461bcd60e51b815260206004820152602760248201527f6d696e74696e6720686173206e6f742073746172746564206f7220686173206660448201527f696e69736865640000000000000000000000000000000000000000000000000060648201526084016106ae565b600c54600d541115610f9b5760405162461bcd60e51b815260206004820152601760248201527f6e6f206d6f726520646572707320617661696c61626c6500000000000000000060448201526064016106ae565b600f54341015610fed5760405162461bcd60e51b815260206004820152601060248201527f6e6f7420656e6f75676820536f6e69630000000000000000000000000000000060448201526064016106ae565b60105460405173ffffffffffffffffffffffffffffffffffffffff909116903480156108fc02915f818181858888f19350505050158015611030573d5f5f3e3d5ffd5b5061103d33600d54611c59565b6110476001611c72565b6001600a55565b6110583382611d2a565b6110ca5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106ae565b6107de838383611e7d565b600b5473ffffffffffffffffffffffffffffffffffffffff16331461113c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b5f611187836114f8565b82106111fb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016106ae565b5073ffffffffffffffffffffffffffffffffffffffff919091165f908152600660209081526040808320938352929052205490565b60105473ffffffffffffffffffffffffffffffffffffffff1633146112975760405162461bcd60e51b815260206004820152601060248201527f6e6f74207468652074726561737572790000000000000000000000000000000060448201526064016106ae565b6040515f90339047908381818185875af1925050503d805f81146112d6576040519150601f19603f3d011682016040523d82523d5f602084013e6112db565b606091505b505090508061132c5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016106ae565b50565b6107de83838360405180602001604052805f8152506118dc565b5f61135360085490565b82106113c75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016106ae565b600882815481106113da576113da612e2a565b905f5260205f2001549050919050565b600b5473ffffffffffffffffffffffffffffffffffffffff1633146114515760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b601161145d8282612ea2565b5050565b5f8181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806108c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106ae565b5f73ffffffffffffffffffffffffffffffffffffffff82166115825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106ae565b5073ffffffffffffffffffffffffffffffffffffffff165f9081526003602052604090205490565b600b5473ffffffffffffffffffffffffffffffffffffffff1633146116115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b61161a5f6120b7565b565b606060018054610bcf90612dd9565b3373ffffffffffffffffffffffffffffffffffffffff8316036116905760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ae565b335f81815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600a54036117785760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ae565b6002600a55600b5473ffffffffffffffffffffffffffffffffffffffff1633146117e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b5f81116118335760405162461bcd60e51b815260206004820152600f60248201527f6d757374206265206d696e74696e67000000000000000000000000000000000060448201526064016106ae565b600e54600182600d546118469190612d9c565b6118509190612daf565b111561189e5760405162461bcd60e51b815260206004820152601b60248201527f6672656520737570706c7920686173206265656e206d696e746564000000000060448201526064016106ae565b5f5b81811015610baf57601054600d546118d49173ffffffffffffffffffffffffffffffffffffffff1690610ba2908490612d9c565b6001016118a0565b6118e63383611d2a565b6119585760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106ae565b6119648484848461212d565b50505050565b6060611975826121b6565b505f6011805461198490612dd9565b90501161199f5760405180602001604052805f8152506108c9565b60116119aa83612213565b6040516020016119bb929190612fb9565b60405160208183030381529060405292915050565b600b5473ffffffffffffffffffffffffffffffffffffffff163314611a375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600b5473ffffffffffffffffffffffffffffffffffffffff163314611ae55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106ae565b73ffffffffffffffffffffffffffffffffffffffff8116611b6e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106ae565b61132c816120b7565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611c0957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108c957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c9565b61145d828260405180602001604052805f815250612344565b80600d5f828254611c839190612d9c565b909155505050565b5f81815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611ce482611461565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f8181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611dc05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106ae565b5f611dca83611461565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e3957508373ffffffffffffffffffffffffffffffffffffffff16611e2184610c50565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e75575073ffffffffffffffffffffffffffffffffffffffff8082165f9081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611e9d82611461565b73ffffffffffffffffffffffffffffffffffffffff1614611f265760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106ae565b73ffffffffffffffffffffffffffffffffffffffff8216611fae5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106ae565b611fb98383836123cc565b611fc35f82611c8b565b73ffffffffffffffffffffffffffffffffffffffff83165f908152600360205260408120805460019290611ff8908490612daf565b909155505073ffffffffffffffffffffffffffffffffffffffff82165f908152600360205260408120805460019290612032908490612d9c565b90915550505f8181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b612138848484611e7d565b612144848484846124d1565b6119645760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106ae565b5f5f6121c183611461565b905073ffffffffffffffffffffffffffffffffffffffff81166108c9576040517f7e273289000000000000000000000000000000000000000000000000000000008152600481018490526024016106ae565b6060815f0361225557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b815f5b811561227e578061226881613057565b91506122779050600a836130bb565b9150612258565b5f8167ffffffffffffffff81111561229857612298612b64565b6040519080825280601f01601f1916602001820160405280156122c2576020820181803683370190505b5090505b8415611e75576122d7600183612daf565b91506122e4600a866130ce565b6122ef906030612d9c565b60f81b81838151811061230457612304612e2a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a90535061233d600a866130bb565b94506122c6565b61234e83836126a6565b61235a5f8484846124d1565b6107de5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106ae565b73ffffffffffffffffffffffffffffffffffffffff83166124335761242e81600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612470565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461247057612470838261283c565b73ffffffffffffffffffffffffffffffffffffffff8216612494576107de816128ef565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146107de576107de8282612996565b5f73ffffffffffffffffffffffffffffffffffffffff84163b1561269b576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906125479033908990889088906004016130e1565b6020604051808303815f875af192505050801561259f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261259c9181019061313b565b60015b612650573d8080156125cc576040519150601f19603f3d011682016040523d82523d5f602084013e6125d1565b606091505b5080515f036126485760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106ae565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611e75565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166127095760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ae565b5f8181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff161561277a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ae565b6127855f83836123cc565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526003602052604081208054600192906127ba908490612d9c565b90915550505f8181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f6001612848846114f8565b6128529190612daf565b5f838152600760205260409020549091508082146128b05773ffffffffffffffffffffffffffffffffffffffff84165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f91825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008545f9061290090600190612daf565b5f838152600960205260408120546008805493945090928490811061292757612927612e2a565b905f5260205f2001549050806008838154811061294657612946612e2a565b5f91825260208083209091019290925582815260099091526040808220849055858252812055600880548061297d5761297d613156565b600190038181905f5260205f20015f9055905550505050565b5f6129a0836114f8565b73ffffffffffffffffffffffffffffffffffffffff9093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b803573ffffffffffffffffffffffffffffffffffffffff81168114612a08575f5ffd5b919050565b5f5f60408385031215612a1e575f5ffd5b612a27836129e5565b9150612a35602084016129e5565b90509250929050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461132c575f5ffd5b5f60208284031215612a7b575f5ffd5b8135612a8681612a3e565b9392505050565b5f60208284031215612a9d575f5ffd5b5035919050565b5f81518084528060208401602086015e5f6020828601015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011685010191505092915050565b602081525f612a866020830184612aa4565b5f5f60408385031215612b13575f5ffd5b612b1c836129e5565b946020939093013593505050565b5f5f5f60608486031215612b3c575f5ffd5b612b45846129e5565b9250612b53602085016129e5565b929592945050506040919091013590565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f5f67ffffffffffffffff841115612bab57612bab612b64565b506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f85018116603f0116810181811067ffffffffffffffff82111715612bf857612bf8612b64565b604052838152905080828401851015612c0f575f5ffd5b838360208301375f60208583010152509392505050565b5f60208284031215612c36575f5ffd5b813567ffffffffffffffff811115612c4c575f5ffd5b8201601f81018413612c5c575f5ffd5b611e7584823560208401612b91565b5f60208284031215612c7b575f5ffd5b612a86826129e5565b801515811461132c575f5ffd5b5f5f60408385031215612ca2575f5ffd5b612cab836129e5565b91506020830135612cbb81612c84565b809150509250929050565b5f5f5f5f60808587031215612cd9575f5ffd5b612ce2856129e5565b9350612cf0602086016129e5565b925060408501359150606085013567ffffffffffffffff811115612d12575f5ffd5b8501601f81018713612d22575f5ffd5b612d3187823560208401612b91565b91505092959194509250565b5f60208284031215612d4d575f5ffd5b5051919050565b5f60208284031215612d64575f5ffd5b8151612a8681612c84565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b808201808211156108c9576108c9612d6f565b818103818111156108c9576108c9612d6f565b80820281158282048414176108c9576108c9612d6f565b600181811c90821680612ded57607f821691505b602082108103612e24577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b601f8211156107de57805f5260205f20601f840160051c81016020851015612e7c5750805b601f840160051c820191505b81811015612e9b575f8155600101612e88565b5050505050565b815167ffffffffffffffff811115612ebc57612ebc612b64565b612ed081612eca8454612dd9565b84612e57565b6020601f821160018114612f21575f8315612eeb5750848201515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600385901b1c1916600184901b178455612e9b565b5f848152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08516915b82811015612f6e5787850151825560209485019460019092019101612f4e565b5084821015612faa57868401517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b60f8161c191681555b50505050600190811b01905550565b5f5f8454612fc681612dd9565b600182168015612fdd57600181146130105761303d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008316865281151582028601935061303d565b875f5260205f205f5b8381101561303557815488820152600190910190602001613019565b505081860193505b50505083518060208601835e5f9101908152949350505050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361308757613087612d6f565b5060010190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f826130c9576130c961308e565b500490565b5f826130dc576130dc61308e565b500690565b73ffffffffffffffffffffffffffffffffffffffff8516815273ffffffffffffffffffffffffffffffffffffffff84166020820152826040820152608060608201525f6131316080830184612aa4565b9695505050505050565b5f6020828403121561314b575f5ffd5b8151612a8681612a3e565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220372ff3f6e92d34a70053b5bdeade0bc3deefb51edf2d2f2df96972f809879a2964736f6c634300081c0033

Deployed Bytecode Sourcemap

45128:3288:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47940:220;;;;;;;;;;-1:-1:-1;47940:220:0;;;;;:::i;:::-;;:::i;:::-;;45783:72;;;;;;;;;;;;;:::i;38267:224::-;;;;;;;;;;-1:-1:-1;38267:224:0;;;;;:::i;:::-;;:::i;:::-;;;1077:14:1;;1070:22;1052:41;;1040:2;1025:18;38267:224:0;;;;;;;;47256:597;;;;;;:::i;:::-;;:::i;25381:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26940:221::-;;;;;;;;;;-1:-1:-1;26940:221:0;;;;;:::i;:::-;;:::i;:::-;;;2089:42:1;2077:55;;;2059:74;;2047:2;2032:18;26940:221:0;1913:226:1;26463:411:0;;;;;;;;;;-1:-1:-1;26463:411:0;;;;;:::i;:::-;;:::i;46881:367::-;;;:::i;38907:113::-;;;;;;;;;;-1:-1:-1;38995:10:0;:17;38907:113;;;2595:25:1;;;2583:2;2568:18;38907:113:0;2449:177:1;27830:339:0;;;;;;;;;;-1:-1:-1;27830:339:0;;;;;:::i;:::-;;:::i;45704:73::-;;;;;;;;;;;;;:::i;38575:256::-;;;;;;;;;;-1:-1:-1;38575:256:0;;;;;:::i;:::-;;:::i;45231:32::-;;;;;;;;;;;;;;;;48168:245;;;;;;;;;;;;;:::i;28240:185::-;;;;;;;;;;-1:-1:-1;28240:185:0;;;;;:::i;:::-;;:::i;39097:233::-;;;;;;;;;;-1:-1:-1;39097:233:0;;;;;:::i;:::-;;:::i;45889:94::-;;;;;;;;;;-1:-1:-1;45889:94:0;;;;;:::i;:::-;;:::i;45379:68::-;;;;;;;;;;-1:-1:-1;45379:68:0;;;;;;;;25075:239;;;;;;;;;;-1:-1:-1;25075:239:0;;;;;:::i;:::-;;:::i;24805:208::-;;;;;;;;;;-1:-1:-1;24805:208:0;;;;;:::i;:::-;;:::i;9773:94::-;;;;;;;;;;;;;:::i;45668:29::-;;;;;;;;;;-1:-1:-1;45668:29:0;;;;;;;;;;;9122:87;;;;;;;;;;-1:-1:-1;9195:6:0;;;;9122:87;;25550:104;;;;;;;;;;;;;:::i;27233:295::-;;;;;;;;;;-1:-1:-1;27233:295:0;;;;;:::i;:::-;;:::i;46527:342::-;;;;;;;;;;-1:-1:-1;46527:342:0;;;;;:::i;:::-;;:::i;28496:328::-;;;;;;;;;;-1:-1:-1;28496:328:0;;;;;:::i;:::-;;:::i;45341:31::-;;;;;;;;;;;;;;;;46297:222;;;;;;;;;;-1:-1:-1;46297:222:0;;;;;:::i;:::-;;:::i;45270:26::-;;;;;;;;;;;;;;;;27599:164;;;;;;;;;;-1:-1:-1;27599:164:0;;;;;:::i;:::-;27720:25;;;;27696:4;27720:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27599:164;45303:29;;;;;;;;;;;;;;;;45456:100;;;;;;;;;;-1:-1:-1;45456:100:0;;;;;:::i;:::-;;:::i;10022:192::-;;;;;;;;;;-1:-1:-1;10022:192:0;;;;;:::i;:::-;;:::i;47940:220::-;48046:8;;;;48032:10;:22;48024:51;;;;-1:-1:-1;;;48024:51:0;;6048:2:1;48024:51:0;;;6030:21:1;6087:2;6067:18;;;6060:30;6126:18;6106;;;6099:46;6162:18;;48024:51:0;;;;;;;;;48113:38;;;;;48145:4;48113:38;;;2059:74:1;48086:22:0;;;;;;48109:2;;48086:22;;48113:23;;2032:18:1;;48113:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48086:66;;;;;;;;;;6584:42:1;6572:55;;;48086:66:0;;;6554:74:1;6644:18;;;6637:34;6527:18;;48086:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47940:220;;:::o;45783:72::-;9195:6;;9342:23;9195:6;8062:10;9342:23;9334:68;;;;-1:-1:-1;;;9334:68:0;;7134:2:1;9334:68:0;;;7116:21:1;;;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;7264:18;;9334:68:0;6932:356:1;9334:68:0;45830:9:::1;:17:::0;;;::::1;::::0;;45783:72::o;38267:224::-;38369:4;38393:50;;;38408:35;38393:50;;:90;;;38447:36;38471:11;38447:23;:36::i;:::-;38386:97;38267:224;-1:-1:-1;;38267:224:0:o;47256:597::-;12061:1;12657:7;;:19;12649:63;;;;-1:-1:-1;;;12649:63:0;;7495:2:1;12649:63:0;;;7477:21:1;7534:2;7514:18;;;7507:30;7573:33;7553:18;;;7546:61;7624:18;;12649:63:0;7293:355:1;12649:63:0;12061:1;12790:7;:18;47337:10;47329:38:::1;;;::::0;-1:-1:-1;;;47329:38:0;;7855:2:1;47329:38:0::1;::::0;::::1;7837:21:1::0;7894:2;7874:18;;;7867:30;7933:17;7913:18;;;7906:45;7968:18;;47329:38:0::1;7653:339:1::0;47329:38:0::1;47386:9;::::0;;;::::1;;;47378:61;;;::::0;-1:-1:-1;;;47378:61:0;;8199:2:1;47378:61:0::1;::::0;::::1;8181:21:1::0;8238:2;8218:18;;;8211:30;8277:34;8257:18;;;8250:62;8348:9;8328:18;;;8321:37;8375:19;;47378:61:0::1;7997:403:1::0;47378:61:0::1;47482:10;;47477:1;47468:6;47458:7;;:16;;;;:::i;:::-;:20;;;;:::i;:::-;:34;;47450:70;;;::::0;-1:-1:-1;;;47450:70:0;;9059:2:1;47450:70:0::1;::::0;::::1;9041:21:1::0;9098:2;9078:18;;;9071:30;9137:25;9117:18;;;9110:53;9180:18;;47450:70:0::1;8857:347:1::0;47450:70:0::1;47557:6;47552:4;;:11;;;;:::i;:::-;47539:9;:24;;47531:53;;;::::0;-1:-1:-1;;;47531:53:0;;9584:2:1;47531:53:0::1;::::0;::::1;9566:21:1::0;9623:2;9603:18;;;9596:30;9662:18;9642;;;9635:46;9698:18;;47531:53:0::1;9382:340:1::0;47531:53:0::1;47613:2;47603:6;:12;;47595:60;;;::::0;-1:-1:-1;;;47595:60:0;;9929:2:1;47595:60:0::1;::::0;::::1;9911:21:1::0;9968:2;9948:18;;;9941:30;10007:34;9987:18;;;9980:62;10078:5;10058:18;;;10051:33;10101:19;;47595:60:0::1;9727:399:1::0;47595:60:0::1;47674:8;::::0;47666:37:::1;::::0;47674:8:::1;::::0;;::::1;::::0;47693:9:::1;47666:37:::0;::::1;;;::::0;47674:8:::1;47666:37:::0;47674:8;47666:37;47693:9;47674:8;47666:37;::::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;47719:9:0::1;47714:100;47738:6;47734:1;:10;47714:100;;;47766:36;8062:10:::0;47800:1:::1;47790:7;;:11;;;;:::i;:::-;47766:9;:36::i;:::-;47746:3;;47714:100;;;;47824:21;47838:6;47824:13;:21::i;:::-;-1:-1:-1::0;12017:1:0;12969:7;:22;47256:597::o;25381:100::-;25435:13;25468:5;25461:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25381:100;:::o;26940:221::-;27016:7;30423:16;;;:7;:16;;;;;;:30;:16;27036:73;;;;-1:-1:-1;;;27036:73:0;;10775:2:1;27036:73:0;;;10757:21:1;10814:2;10794:18;;;10787:30;10853:34;10833:18;;;10826:62;10924:14;10904:18;;;10897:42;10956:19;;27036:73:0;10573:408:1;27036:73:0;-1:-1:-1;27129:24:0;;;;:15;:24;;;;;;;;;26940:221::o;26463:411::-;26544:13;26560:23;26575:7;26560:14;:23::i;:::-;26544:39;;26608:5;26602:11;;:2;:11;;;26594:57;;;;-1:-1:-1;;;26594:57:0;;11188:2:1;26594:57:0;;;11170:21:1;11227:2;11207:18;;;11200:30;11266:34;11246:18;;;11239:62;11337:3;11317:18;;;11310:31;11358:19;;26594:57:0;10986:397:1;26594:57:0;8062:10;26686:21;;;;;:62;;-1:-1:-1;26711:37:0;26728:5;8062:10;27599:164;:::i;26711:37::-;26664:168;;;;-1:-1:-1;;;26664:168:0;;11590:2:1;26664:168:0;;;11572:21:1;11629:2;11609:18;;;11602:30;11668:34;11648:18;;;11641:62;11739:26;11719:18;;;11712:54;11783:19;;26664:168:0;11388:420:1;26664:168:0;26845:21;26854:2;26858:7;26845:8;:21::i;46881:367::-;12061:1;12657:7;;:19;12649:63;;;;-1:-1:-1;;;12649:63:0;;7495:2:1;12649:63:0;;;7477:21:1;7534:2;7514:18;;;7507:30;7573:33;7553:18;;;7546:61;7624:18;;12649:63:0;7293:355:1;12649:63:0;12061:1;12790:7;:18;46944:9:::1;::::0;;;::::1;;;46936:61;;;::::0;-1:-1:-1;;;46936:61:0;;8199:2:1;46936:61:0::1;::::0;::::1;8181:21:1::0;8238:2;8218:18;;;8211:30;8277:34;8257:18;;;8250:62;8348:9;8328:18;;;8321:37;8375:19;;46936:61:0::1;7997:403:1::0;46936:61:0::1;47027:10;;47016:7;;:21;;47008:57;;;::::0;-1:-1:-1;;;47008:57:0;;9059:2:1;47008:57:0::1;::::0;::::1;9041:21:1::0;9098:2;9078:18;;;9071:30;9137:25;9117:18;;;9110:53;9180:18;;47008:57:0::1;8857:347:1::0;47008:57:0::1;47097:4;;47084:9;:17;;47076:46;;;::::0;-1:-1:-1;;;47076:46:0;;9584:2:1;47076:46:0::1;::::0;::::1;9566:21:1::0;9623:2;9603:18;;;9596:30;9662:18;9642;;;9635:46;9698:18;;47076:46:0::1;9382:340:1::0;47076:46:0::1;47141:8;::::0;47133:37:::1;::::0;47141:8:::1;::::0;;::::1;::::0;47160:9:::1;47133:37:::0;::::1;;;::::0;47141:8:::1;47133:37:::0;47141:8;47133:37;47160:9;47141:8;47133:37;::::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;47181:32:0::1;8062:10:::0;47205:7:::1;;47181:9;:32::i;:::-;47224:16;47238:1;47224:13;:16::i;:::-;12017:1:::0;12969:7;:22;46881:367::o;27830:339::-;28025:41;8062:10;28058:7;28025:18;:41::i;:::-;28017:103;;;;-1:-1:-1;;;28017:103:0;;12015:2:1;28017:103:0;;;11997:21:1;12054:2;12034:18;;;12027:30;12093:34;12073:18;;;12066:62;12164:19;12144:18;;;12137:47;12201:19;;28017:103:0;11813:413:1;28017:103:0;28133:28;28143:4;28149:2;28153:7;28133:9;:28::i;45704:73::-;9195:6;;9342:23;9195:6;8062:10;9342:23;9334:68;;;;-1:-1:-1;;;9334:68:0;;7134:2:1;9334:68:0;;;7116:21:1;;;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;7264:18;;9334:68:0;6932:356:1;9334:68:0;45753:9:::1;:16:::0;;;::::1;::::0;::::1;::::0;;45704:73::o;38575:256::-;38672:7;38708:23;38725:5;38708:16;:23::i;:::-;38700:5;:31;38692:87;;;;-1:-1:-1;;;38692:87:0;;12433:2:1;38692:87:0;;;12415:21:1;12472:2;12452:18;;;12445:30;12511:34;12491:18;;;12484:62;12582:13;12562:18;;;12555:41;12613:19;;38692:87:0;12231:407:1;38692:87:0;-1:-1:-1;38797:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38575:256::o;48168:245::-;48249:8;;;;48235:10;:22;48227:51;;;;-1:-1:-1;;;48227:51:0;;6048:2:1;48227:51:0;;;6030:21:1;6087:2;6067:18;;;6060:30;6126:18;6106;;;6099:46;6162:18;;48227:51:0;5846:340:1;48227:51:0;48307:52;;48289:12;;48307:10;;48331:21;;48289:12;48307:52;48289:12;48307:52;48331:21;48307:10;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48288:71;;;48377:7;48369:36;;;;-1:-1:-1;;;48369:36:0;;13055:2:1;48369:36:0;;;13037:21:1;13094:2;13074:18;;;13067:30;13133:18;13113;;;13106:46;13169:18;;48369:36:0;12853:340:1;48369:36:0;48217:196;48168:245::o;28240:185::-;28378:39;28395:4;28401:2;28405:7;28378:39;;;;;;;;;;;;:16;:39::i;39097:233::-;39172:7;39208:30;38995:10;:17;;38907:113;39208:30;39200:5;:38;39192:95;;;;-1:-1:-1;;;39192:95:0;;13400:2:1;39192:95:0;;;13382:21:1;13439:2;13419:18;;;13412:30;13478:34;13458:18;;;13451:62;13549:14;13529:18;;;13522:42;13581:19;;39192:95:0;13198:408:1;39192:95:0;39305:10;39316:5;39305:17;;;;;;;;:::i;:::-;;;;;;;;;39298:24;;39097:233;;;:::o;45889:94::-;9195:6;;9342:23;9195:6;8062:10;9342:23;9334:68;;;;-1:-1:-1;;;9334:68:0;;7134:2:1;9334:68:0;;;7116:21:1;;;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;7264:18;;9334:68:0;6932:356:1;9334:68:0;45959:7:::1;:16;45969:6:::0;45959:7;:16:::1;:::i;:::-;;45889:94:::0;:::o;25075:239::-;25147:7;25183:16;;;:7;:16;;;;;;;;;25210:73;;;;-1:-1:-1;;;25210:73:0;;16305:2:1;25210:73:0;;;16287:21:1;16344:2;16324:18;;;16317:30;16383:34;16363:18;;;16356:62;16454:11;16434:18;;;16427:39;16483:19;;25210:73:0;16103:405:1;24805:208:0;24877:7;24905:19;;;24897:74;;;;-1:-1:-1;;;24897:74:0;;16715:2:1;24897:74:0;;;16697:21:1;16754:2;16734:18;;;16727:30;16793:34;16773:18;;;16766:62;16864:12;16844:18;;;16837:40;16894:19;;24897:74:0;16513:406:1;24897:74:0;-1:-1:-1;24989:16:0;;;;;;:9;:16;;;;;;;24805:208::o;9773:94::-;9195:6;;9342:23;9195:6;8062:10;9342:23;9334:68;;;;-1:-1:-1;;;9334:68:0;;7134:2:1;9334:68:0;;;7116:21:1;;;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;7264:18;;9334:68:0;6932:356:1;9334:68:0;9838:21:::1;9856:1;9838:9;:21::i;:::-;9773:94::o:0;25550:104::-;25606:13;25639:7;25632:14;;;;;:::i;27233:295::-;8062:10;27336:24;;;;27328:62;;;;-1:-1:-1;;;27328:62:0;;17126:2:1;27328:62:0;;;17108:21:1;17165:2;17145:18;;;17138:30;17204:27;17184:18;;;17177:55;17249:18;;27328:62:0;16924:349:1;27328:62:0;8062:10;27403:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;27472:48;;1052:41:1;;;27403:42:0;;8062:10;27472:48;;1025:18:1;27472:48:0;;;;;;;27233:295;;:::o;46527:342::-;12061:1;12657:7;;:19;12649:63;;;;-1:-1:-1;;;12649:63:0;;7495:2:1;12649:63:0;;;7477:21:1;7534:2;7514:18;;;7507:30;7573:33;7553:18;;;7546:61;7624:18;;12649:63:0;7293:355:1;12649:63:0;12061:1;12790:7;:18;9195:6;;9342:23:::1;9195:6:::0;8062:10;9342:23:::1;9334:68;;;::::0;-1:-1:-1;;;9334:68:0;;7134:2:1;9334:68:0::1;::::0;::::1;7116:21:1::0;;;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;7264:18;;9334:68:0::1;6932:356:1::0;9334:68:0::1;46619:1:::2;46610:6;:10;46602:38;;;::::0;-1:-1:-1;;;46602:38:0;;7855:2:1;46602:38:0::2;::::0;::::2;7837:21:1::0;7894:2;7874:18;;;7867:30;7933:17;7913:18;;;7906:45;7968:18;;46602:38:0::2;7653:339:1::0;46602:38:0::2;46683:8;;46678:1;46669:6;46659:7;;:16;;;;:::i;:::-;:20;;;;:::i;:::-;:32;;46651:72;;;::::0;-1:-1:-1;;;46651:72:0;;17480:2:1;46651:72:0::2;::::0;::::2;17462:21:1::0;17519:2;17499:18;;;17492:30;17558:29;17538:18;;;17531:57;17605:18;;46651:72:0::2;17278:351:1::0;46651:72:0::2;46739:9;46734:96;46758:6;46754:1;:10;46734:96;;;46796:8;::::0;46806:7:::2;::::0;46786:32:::2;::::0;46796:8:::2;;::::0;46806:11:::2;::::0;46816:1;;46806:11:::2;:::i;46786:32::-;46766:3;;46734:96;;28496:328:::0;28671:41;8062:10;28704:7;28671:18;:41::i;:::-;28663:103;;;;-1:-1:-1;;;28663:103:0;;12015:2:1;28663:103:0;;;11997:21:1;12054:2;12034:18;;;12027:30;12093:34;12073:18;;;12066:62;12164:19;12144:18;;;12137:47;12201:19;;28663:103:0;11813:413:1;28663:103:0;28777:39;28791:4;28797:2;28801:7;28810:5;28777:13;:39::i;:::-;28496:328;;;;:::o;46297:222::-;46370:13;46396:22;46410:7;46396:13;:22::i;:::-;;46460:1;46442:7;46436:21;;;;;:::i;:::-;;;:25;:75;;;;;;;;;;;;;;;;;46478:7;46487:18;:7;:16;:18::i;:::-;46464:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46429:82;46297:222;-1:-1:-1;;46297:222:0:o;45456:100::-;9195:6;;9342:23;9195:6;8062:10;9342:23;9334:68;;;;-1:-1:-1;;;9334:68:0;;7134:2:1;9334:68:0;;;7116:21:1;;;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;7264:18;;9334:68:0;6932:356:1;9334:68:0;45526:8:::1;:22:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;45456:100::o;10022:192::-;9195:6;;9342:23;9195:6;8062:10;9342:23;9334:68;;;;-1:-1:-1;;;9334:68:0;;7134:2:1;9334:68:0;;;7116:21:1;;;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;7264:18;;9334:68:0;6932:356:1;9334:68:0;10111:22:::1;::::0;::::1;10103:73;;;::::0;-1:-1:-1;;;10103:73:0;;18888:2:1;10103:73:0::1;::::0;::::1;18870:21:1::0;18927:2;18907:18;;;18900:30;18966:34;18946:18;;;18939:62;19037:8;19017:18;;;19010:36;19063:19;;10103:73:0::1;18686:402:1::0;10103:73:0::1;10187:19;10197:8;10187:9;:19::i;24436:305::-:0;24538:4;24575:40;;;24590:25;24575:40;;:105;;-1:-1:-1;24632:48:0;;;24647:33;24632:48;24575:105;:158;;;-1:-1:-1;23167:25:0;23152:40;;;;24697:36;23043:157;31318:110;31394:26;31404:2;31408:7;31394:26;;;;;;;;;;;;:9;:26::i;45568:92::-;45642:10;45631:7;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;45568:92:0:o;34316:174::-;34391:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;34445:23;34391:24;34445:14;:23::i;:::-;34436:46;;;;;;;;;;;;34316:174;;:::o;30628:348::-;30721:4;30423:16;;;:7;:16;;;;;;:30;:16;30738:73;;;;-1:-1:-1;;;30738:73:0;;19295:2:1;30738:73:0;;;19277:21:1;19334:2;19314:18;;;19307:30;19373:34;19353:18;;;19346:62;19444:14;19424:18;;;19417:42;19476:19;;30738:73:0;19093:408:1;30738:73:0;30822:13;30838:23;30853:7;30838:14;:23::i;:::-;30822:39;;30891:5;30880:16;;:7;:16;;;:51;;;;30924:7;30900:31;;:20;30912:7;30900:11;:20::i;:::-;:31;;;30880:51;:87;;;-1:-1:-1;27720:25:0;;;;27696:4;27720:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30935:32;30872:96;30628:348;-1:-1:-1;;;;30628:348:0:o;33620:578::-;33779:4;33752:31;;:23;33767:7;33752:14;:23::i;:::-;:31;;;33744:85;;;;-1:-1:-1;;;33744:85:0;;19708:2:1;33744:85:0;;;19690:21:1;19747:2;19727:18;;;19720:30;19786:34;19766:18;;;19759:62;19857:11;19837:18;;;19830:39;19886:19;;33744:85:0;19506:405:1;33744:85:0;33848:16;;;33840:65;;;;-1:-1:-1;;;33840:65:0;;20118:2:1;33840:65:0;;;20100:21:1;20157:2;20137:18;;;20130:30;20196:34;20176:18;;;20169:62;20267:6;20247:18;;;20240:34;20291:19;;33840:65:0;19916:400:1;33840:65:0;33918:39;33939:4;33945:2;33949:7;33918:20;:39::i;:::-;34022:29;34039:1;34043:7;34022:8;:29::i;:::-;34064:15;;;;;;;:9;:15;;;;;:20;;34083:1;;34064:15;:20;;34083:1;;34064:20;:::i;:::-;;;;-1:-1:-1;;34095:13:0;;;;;;;:9;:13;;;;;:18;;34112:1;;34095:13;:18;;34112:1;;34095:18;:::i;:::-;;;;-1:-1:-1;;34124:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;34163:27;;34124:16;;34163:27;;;;;;;33620:578;;;:::o;10222:173::-;10297:6;;;;10314:17;;;;;;;;;;;10347:40;;10297:6;;;10314:17;10297:6;;10347:40;;10278:16;;10347:40;10267:128;10222:173;:::o;29706:315::-;29863:28;29873:4;29879:2;29883:7;29863:9;:28::i;:::-;29910:48;29933:4;29939:2;29943:7;29952:5;29910:22;:48::i;:::-;29902:111;;;;-1:-1:-1;;;29902:111:0;;20523:2:1;29902:111:0;;;20505:21:1;20562:2;20542:18;;;20535:30;20601:34;20581:18;;;20574:62;20672:20;20652:18;;;20645:48;20710:19;;29902:111:0;20321:414:1;46043:246:0;46106:7;46126:13;46142:16;46150:7;46142;:16::i;:::-;46126:32;-1:-1:-1;46173:19:0;;;46169:90;;46216:31;;;;;;;;2595:25:1;;;2568:18;;46216:31:0;2449:177:1;5678:723:0;5734:13;5955:5;5964:1;5955:10;5951:53;;-1:-1:-1;;5982:10:0;;;;;;;;;;;;;;;;;;5678:723::o;5951:53::-;6029:5;6014:12;6070:78;6077:9;;6070:78;;6103:8;;;;:::i;:::-;;-1:-1:-1;6126:10:0;;-1:-1:-1;6134:2:0;6126:10;;:::i;:::-;;;6070:78;;;6158:19;6190:6;6180:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6180:17:0;;6158:39;;6208:154;6215:10;;6208:154;;6242:11;6252:1;6242:11;;:::i;:::-;;-1:-1:-1;6311:10:0;6319:2;6311:5;:10;:::i;:::-;6298:24;;:2;:24;:::i;:::-;6285:39;;6268:6;6275;6268:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;6339:11:0;6348:2;6339:11;;:::i;:::-;;;6208:154;;31655:321;31785:18;31791:2;31795:7;31785:5;:18::i;:::-;31836:54;31867:1;31871:2;31875:7;31884:5;31836:22;:54::i;:::-;31814:154;;;;-1:-1:-1;;;31814:154:0;;20523:2:1;31814:154:0;;;20505:21:1;20562:2;20542:18;;;20535:30;20601:34;20581:18;;;20574:62;20672:20;20652:18;;;20645:48;20710:19;;31814:154:0;20321:414:1;39943:589:0;40149:18;;;40145:187;;40184:40;40216:7;41359:10;:17;;41332:24;;;;:15;:24;;;;;:44;;;41387:24;;;;;;;;;;;;41255:164;40184:40;40145:187;;;40254:2;40246:10;;:4;:10;;;40242:90;;40273:47;40306:4;40312:7;40273:32;:47::i;:::-;40346:16;;;40342:183;;40379:45;40416:7;40379:36;:45::i;40342:183::-;40452:4;40446:10;;:2;:10;;;40442:83;;40473:40;40501:2;40505:7;40473:27;:40::i;35055:803::-;35210:4;35231:13;;;15538:20;15586:8;35227:624;;35267:72;;;;;:36;;;;;;:72;;8062:10;;35318:4;;35324:7;;35333:5;;35267:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35267:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35263:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35513:6;:13;35530:1;35513:18;35509:272;;35556:60;;-1:-1:-1;;;35556:60:0;;20523:2:1;35556:60:0;;;20505:21:1;20562:2;20542:18;;;20535:30;20601:34;20581:18;;;20574:62;20672:20;20652:18;;;20645:48;20710:19;;35556:60:0;20321:414:1;35509:272:0;35731:6;35725:13;35716:6;35712:2;35708:15;35701:38;35263:533;35390:55;;35400:45;35390:55;;-1:-1:-1;35383:62:0;;35227:624;-1:-1:-1;35835:4:0;35055:803;;;;;;:::o;32312:382::-;32392:16;;;32384:61;;;;-1:-1:-1;;;32384:61:0;;22363:2:1;32384:61:0;;;22345:21:1;;;22382:18;;;22375:30;22441:34;22421:18;;;22414:62;22493:18;;32384:61:0;22161:356:1;32384:61:0;30399:4;30423:16;;;:7;:16;;;;;;:30;:16;:30;32456:58;;;;-1:-1:-1;;;32456:58:0;;22724:2:1;32456:58:0;;;22706:21:1;22763:2;22743:18;;;22736:30;22802;22782:18;;;22775:58;22850:18;;32456:58:0;22522:352:1;32456:58:0;32527:45;32556:1;32560:2;32564:7;32527:20;:45::i;:::-;32585:13;;;;;;;:9;:13;;;;;:18;;32602:1;;32585:13;:18;;32602:1;;32585:18;:::i;:::-;;;;-1:-1:-1;;32614:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;32653:33;;32614:16;;;32653:33;;32614:16;;32653:33;32312:382;;:::o;42046:988::-;42312:22;42362:1;42337:22;42354:4;42337:16;:22::i;:::-;:26;;;;:::i;:::-;42374:18;42395:26;;;:17;:26;;;;;;42312:51;;-1:-1:-1;42528:28:0;;;42524:328;;42595:18;;;42573:19;42595:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42646:30;;;;;;:44;;;42763:30;;:17;:30;;;;;:43;;;42524:328;-1:-1:-1;42948:26:0;;;;:17;:26;;;;;;;;42941:33;;;42992:18;;;;;;:12;:18;;;;;:34;;;;;;;42985:41;42046:988::o;43329:1079::-;43607:10;:17;43582:22;;43607:21;;43627:1;;43607:21;:::i;:::-;43639:18;43660:24;;;:15;:24;;;;;;44033:10;:26;;43582:46;;-1:-1:-1;43660:24:0;;43582:46;;44033:26;;;;;;:::i;:::-;;;;;;;;;44011:48;;44097:11;44072:10;44083;44072:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44177:28;;;:15;:28;;;;;;;:41;;;44349:24;;;;;44342:31;44384:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43400:1008;;;43329:1079;:::o;40833:221::-;40918:14;40935:20;40952:2;40935:16;:20::i;:::-;40966:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41011:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40833:221:0:o;14:196:1:-;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:260::-;283:6;291;344:2;332:9;323:7;319:23;315:32;312:52;;;360:1;357;350:12;312:52;383:29;402:9;383:29;:::i;:::-;373:39;;431:38;465:2;454:9;450:18;431:38;:::i;:::-;421:48;;215:260;;;;;:::o;480:177::-;565:66;558:5;554:78;547:5;544:89;534:117;;647:1;644;637:12;662:245;720:6;773:2;761:9;752:7;748:23;744:32;741:52;;;789:1;786;779:12;741:52;828:9;815:23;847:30;871:5;847:30;:::i;:::-;896:5;662:245;-1:-1:-1;;;662:245:1:o;1104:226::-;1163:6;1216:2;1204:9;1195:7;1191:23;1187:32;1184:52;;;1232:1;1229;1222:12;1184:52;-1:-1:-1;1277:23:1;;1104:226;-1:-1:-1;1104:226:1:o;1335:348::-;1377:3;1415:5;1409:12;1442:6;1437:3;1430:19;1498:6;1491:4;1484:5;1480:16;1473:4;1468:3;1464:14;1458:47;1550:1;1543:4;1534:6;1529:3;1525:16;1521:27;1514:38;1672:4;1602:66;1597:2;1589:6;1585:15;1581:88;1576:3;1572:98;1568:109;1561:116;;;1335:348;;;;:::o;1688:220::-;1837:2;1826:9;1819:21;1800:4;1857:45;1898:2;1887:9;1883:18;1875:6;1857:45;:::i;2144:300::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2312:29;2331:9;2312:29;:::i;:::-;2302:39;2410:2;2395:18;;;;2382:32;;-1:-1:-1;;;2144:300:1:o;2631:374::-;2708:6;2716;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:52;;;2793:1;2790;2783:12;2745:52;2816:29;2835:9;2816:29;:::i;:::-;2806:39;;2864:38;2898:2;2887:9;2883:18;2864:38;:::i;:::-;2631:374;;2854:48;;-1:-1:-1;;;2971:2:1;2956:18;;;;2943:32;;2631:374::o;3010:184::-;3062:77;3059:1;3052:88;3159:4;3156:1;3149:15;3183:4;3180:1;3173:15;3199:834;3264:5;3296:1;3320:18;3312:6;3309:30;3306:56;;;3342:18;;:::i;:::-;-1:-1:-1;3556:2:1;3550:9;3406:66;3401:2;3389:15;;3385:88;;3614:2;3602:15;3598:88;3586:101;;3738:22;;;3717:18;3702:34;;3699:62;3696:88;;;3764:18;;:::i;:::-;3800:2;3793:22;3848;;;3833:6;-1:-1:-1;3833:6:1;3885:16;;;3882:25;-1:-1:-1;3879:45:1;;;3920:1;3917;3910:12;3879:45;3970:6;3965:3;3958:4;3950:6;3946:17;3933:44;4025:1;4018:4;4009:6;4001;3997:19;3993:30;3986:41;;3199:834;;;;;:::o;4038:451::-;4107:6;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;4216:9;4203:23;4249:18;4241:6;4238:30;4235:50;;;4281:1;4278;4271:12;4235:50;4304:22;;4357:4;4349:13;;4345:27;-1:-1:-1;4335:55:1;;4386:1;4383;4376:12;4335:55;4409:74;4475:7;4470:2;4457:16;4452:2;4448;4444:11;4409:74;:::i;4494:186::-;4553:6;4606:2;4594:9;4585:7;4581:23;4577:32;4574:52;;;4622:1;4619;4612:12;4574:52;4645:29;4664:9;4645:29;:::i;4685:118::-;4771:5;4764:13;4757:21;4750:5;4747:32;4737:60;;4793:1;4790;4783:12;4808:315;4873:6;4881;4934:2;4922:9;4913:7;4909:23;4905:32;4902:52;;;4950:1;4947;4940:12;4902:52;4973:29;4992:9;4973:29;:::i;:::-;4963:39;;5052:2;5041:9;5037:18;5024:32;5065:28;5087:5;5065:28;:::i;:::-;5112:5;5102:15;;;4808:315;;;;;:::o;5128:713::-;5223:6;5231;5239;5247;5300:3;5288:9;5279:7;5275:23;5271:33;5268:53;;;5317:1;5314;5307:12;5268:53;5340:29;5359:9;5340:29;:::i;:::-;5330:39;;5388:38;5422:2;5411:9;5407:18;5388:38;:::i;:::-;5378:48;-1:-1:-1;5495:2:1;5480:18;;5467:32;;-1:-1:-1;5574:2:1;5559:18;;5546:32;5601:18;5590:30;;5587:50;;;5633:1;5630;5623:12;5587:50;5656:22;;5709:4;5701:13;;5697:27;-1:-1:-1;5687:55:1;;5738:1;5735;5728:12;5687:55;5761:74;5827:7;5822:2;5809:16;5804:2;5800;5796:11;5761:74;:::i;:::-;5751:84;;;5128:713;;;;;;;:::o;6191:184::-;6261:6;6314:2;6302:9;6293:7;6289:23;6285:32;6282:52;;;6330:1;6327;6320:12;6282:52;-1:-1:-1;6353:16:1;;6191:184;-1:-1:-1;6191:184:1:o;6682:245::-;6749:6;6802:2;6790:9;6781:7;6777:23;6773:32;6770:52;;;6818:1;6815;6808:12;6770:52;6850:9;6844:16;6869:28;6891:5;6869:28;:::i;8405:184::-;8457:77;8454:1;8447:88;8554:4;8551:1;8544:15;8578:4;8575:1;8568:15;8594:125;8659:9;;;8680:10;;;8677:36;;;8693:18;;:::i;8724:128::-;8791:9;;;8812:11;;;8809:37;;;8826:18;;:::i;9209:168::-;9282:9;;;9313;;9330:15;;;9324:22;;9310:37;9300:71;;9351:18;;:::i;10131:437::-;10210:1;10206:12;;;;10253;;;10274:61;;10328:4;10320:6;10316:17;10306:27;;10274:61;10381:2;10373:6;10370:14;10350:18;10347:38;10344:218;;10418:77;10415:1;10408:88;10519:4;10516:1;10509:15;10547:4;10544:1;10537:15;10344:218;;10131:437;;;:::o;13611:184::-;13663:77;13660:1;13653:88;13760:4;13757:1;13750:15;13784:4;13781:1;13774:15;13926:518;14028:2;14023:3;14020:11;14017:421;;;14064:5;14061:1;14054:16;14108:4;14105:1;14095:18;14178:2;14166:10;14162:19;14159:1;14155:27;14149:4;14145:38;14214:4;14202:10;14199:20;14196:47;;;-1:-1:-1;14237:4:1;14196:47;14292:2;14287:3;14283:12;14280:1;14276:20;14270:4;14266:31;14256:41;;14347:81;14365:2;14358:5;14355:13;14347:81;;;14424:1;14410:16;;14391:1;14380:13;14347:81;;;14351:3;;13926:518;;;:::o;14680:1418::-;14806:3;14800:10;14833:18;14825:6;14822:30;14819:56;;;14855:18;;:::i;:::-;14884:97;14974:6;14934:38;14966:4;14960:11;14934:38;:::i;:::-;14928:4;14884:97;:::i;:::-;15030:4;15061:2;15050:14;;15078:1;15073:768;;;;15885:1;15902:6;15899:89;;;-1:-1:-1;15954:19:1;;;15948:26;15899:89;14586:66;14577:1;14573:11;;;14569:84;14565:89;14555:100;14661:1;14657:11;;;14552:117;16001:81;;15043:1049;;15073:768;13873:1;13866:14;;;13910:4;13897:18;;15121:66;15109:79;;;15286:222;15300:7;15297:1;15294:14;15286:222;;;15382:19;;;15376:26;15361:42;;15489:4;15474:20;;;;15442:1;15430:14;;;;15316:12;15286:222;;;15290:3;15536:6;15527:7;15524:19;15521:261;;;15597:19;;;15591:26;15698:66;15680:1;15676:14;;;15692:3;15672:24;15668:97;15664:102;15649:118;15634:134;;15521:261;-1:-1:-1;;;;15828:1:1;15812:14;;;15808:22;15795:36;;-1:-1:-1;14680:1418:1:o;17634:1047::-;17810:3;17839:1;17872:6;17866:13;17902:36;17928:9;17902:36;:::i;:::-;17969:1;17954:17;;17980:191;;;;18185:1;18180:332;;;;17947:565;;17980:191;18028:66;18017:9;18013:82;18008:3;18001:95;18151:6;18144:14;18137:22;18129:6;18125:35;18120:3;18116:45;18109:52;;17980:191;;18180:332;18211:6;18208:1;18201:17;18259:4;18256:1;18246:18;18286:1;18300:166;18314:6;18311:1;18308:13;18300:166;;;18394:14;;18381:11;;;18374:35;18450:1;18437:15;;;;18336:4;18329:12;18300:166;;;18304:3;;18495:6;18490:3;18486:16;18479:23;;17947:565;;;;18543:6;18537:13;18589:8;18582:4;18574:6;18570:17;18565:3;18559:39;18655:1;18617:18;;18644:13;;;18617:18;17634:1047;-1:-1:-1;;;;17634:1047:1:o;20740:195::-;20779:3;20810:66;20803:5;20800:77;20797:103;;20880:18;;:::i;:::-;-1:-1:-1;20927:1:1;20916:13;;20740:195::o;20940:184::-;20992:77;20989:1;20982:88;21089:4;21086:1;21079:15;21113:4;21110:1;21103:15;21129:120;21169:1;21195;21185:35;;21200:18;;:::i;:::-;-1:-1:-1;21234:9:1;;21129:120::o;21254:112::-;21286:1;21312;21302:35;;21317:18;;:::i;:::-;-1:-1:-1;21351:9:1;;21254:112::o;21371:531::-;21614:42;21606:6;21602:55;21591:9;21584:74;21706:42;21698:6;21694:55;21689:2;21678:9;21674:18;21667:83;21786:6;21781:2;21770:9;21766:18;21759:34;21829:3;21824:2;21813:9;21809:18;21802:31;21565:4;21850:46;21891:3;21880:9;21876:19;21868:6;21850:46;:::i;:::-;21842:54;21371:531;-1:-1:-1;;;;;;21371:531:1:o;21907:249::-;21976:6;22029:2;22017:9;22008:7;22004:23;22000:32;21997:52;;;22045:1;22042;22035:12;21997:52;22077:9;22071:16;22096:30;22120:5;22096:30;:::i;22879:184::-;22931:77;22928:1;22921:88;23028:4;23025:1;23018:15;23052:4;23049:1;23042:15

Swarm Source

ipfs://372ff3f6e92d34a70053b5bdeade0bc3deefb51edf2d2f2df96972f809879a29
[ 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.