ETH Price: $3,304.69 (-0.09%)
Gas: 14 Gwei

Token

wojak (wojak)
 

Overview

Max Total Supply

0 wojak

Holders

1,196

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
dabloon.eth
Balance
1 wojak
0xb60827E66f3CAc095B43C945D11f76B49544cf12
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
wojak

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-27
*/

// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}

// File: wojak.sol



pragma solidity ^0.8.13;







contract wojak is Ownable, ERC721Burnable, DefaultOperatorFilterer {

    string private baseURI;

    string public uriSuffix = '.json';

    uint256 public max_supply = 1553;

    uint256 public amountMintPerAccount = 1;

    uint256 public currentToken = 0;



    event MintSuccessful(address user);



    constructor() ERC721("wojak", "wojak") { 

    }



    function mint() external {

        require(balanceOf(msg.sender) < amountMintPerAccount);

        require(currentToken < max_supply);



        currentToken += 1;

        _safeMint(msg.sender, currentToken);

        

        emit MintSuccessful(msg.sender);

    }





    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {

        require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');



        string memory currentBaseURI = _baseURI();

        return bytes(currentBaseURI).length > 0

            ? string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), uriSuffix))

            : '';

    }



     function setBaseURI(string memory baseURI_) external onlyOwner {

      baseURI = baseURI_;

    }





    function _baseURI() internal view virtual override returns (string memory) {

      return baseURI;

    }



    function contractURI() public pure returns (string memory) {

        return "ipfs://QmcqDqLqfNFyVQV9t2Wvf7WJzMDT3x7YvUT6fgRz6ZX7QN/";

    }



    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {

        super.transferFrom(from, to, tokenId);

    }



    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {

        super.safeTransferFrom(from, to, tokenId);

    }



    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)

        public

        override

        onlyAllowedOperator(from)

    {

        super.safeTransferFrom(from, to, tokenId, data);

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":false,"internalType":"address","name":"user","type":"address"}],"name":"MintSuccessful","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":"amountMintPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"currentToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a05260089062000026908262000318565b506106116009556001600a556000600b553480156200004457600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb6600160405180604001604052806005815260200164776f6a616b60d81b81525060405180604001604052806005815260200164776f6a616b60d81b815250620000b2620000ac6200021f60201b60201c565b62000223565b6001620000c0838262000318565b506002620000cf828262000318565b5050506daaeb6d7670e522a718067333cd4e3b15620002175780156200016557604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200014657600080fd5b505af11580156200015b573d6000803e3d6000fd5b5050505062000217565b6001600160a01b03821615620001b65760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200012b565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001fd57600080fd5b505af115801562000212573d6000803e3d6000fd5b505050505b5050620003e4565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200029e57607f821691505b602082108103620002bf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031357600081815260208120601f850160051c81016020861015620002ee5750805b601f850160051c820191505b818110156200030f57828155600101620002fa565b5050505b505050565b81516001600160401b0381111562000334576200033462000273565b6200034c8162000345845462000289565b84620002c5565b602080601f8311600181146200038457600084156200036b5750858301515b600019600386901b1c1916600185901b1785556200030f565b600085815260208120601f198616915b82811015620003b55788860151825594840194600190910190840162000394565b5085821015620003d45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611ecb80620003f46000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063a827b5ff1161007c578063a827b5ff146102b0578063b88d4fde146102b9578063c87b56dd146102cc578063e8a3d485146102df578063e985e9c5146102e7578063f2fde38b146102fa57600080fd5b8063715018a61461026a578063836c081d146102725780638a333b501461027b5780638da5cb5b1461028457806395d89b4114610295578063a22cb4651461029d57600080fd5b806342842e0e1161011557806342842e0e146101f557806342966c68146102085780635503a0e81461021b57806355f804b3146102235780636352211e1461023657806370a082311461024957600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c55780631249c58b146101da57806323b872dd146101e2575b600080fd5b61017061016b366004611780565b61030d565b60405190151581526020015b60405180910390f35b61018d61035f565b60405161017c91906117ed565b6101ad6101a8366004611800565b6103f1565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004611835565b61048b565b005b6101d86105a0565b6101d86101f036600461185f565b610621565b6101d861020336600461185f565b61077d565b6101d8610216366004611800565b6108ce565b61018d610947565b6101d8610231366004611927565b6109d5565b6101ad610244366004611800565b610a0f565b61025c610257366004611970565b610a86565b60405190815260200161017c565b6101d8610b0d565b61025c600b5481565b61025c60095481565b6000546001600160a01b03166101ad565b61018d610b43565b6101d86102ab366004611999565b610b52565b61025c600a5481565b6101d86102c73660046119d0565b610b5d565b61018d6102da366004611800565b610cbc565b61018d610d9a565b6101706102f5366004611a4c565b610dba565b6101d8610308366004611970565b610de8565b60006001600160e01b031982166380ac58cd60e01b148061033e57506001600160e01b03198216635b5e139f60e01b145b8061035957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461036e90611a7f565b80601f016020809104026020016040519081016040528092919081815260200182805461039a90611a7f565b80156103e75780601f106103bc576101008083540402835291602001916103e7565b820191906000526020600020905b8154815290600101906020018083116103ca57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661046f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061049682610a0f565b9050806001600160a01b0316836001600160a01b0316036105035760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610466565b336001600160a01b038216148061051f575061051f8133610dba565b6105915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610466565b61059b8383610e80565b505050565b600a546105ac33610a86565b106105b657600080fd5b600954600b54106105c657600080fd5b6001600b60008282546105d99190611acf565b925050819055506105ec33600b54610eee565b6040513381527ff5535ccd9f40eb4bc73fac8710dbb2effbf3329da83f62b35d9aa88161bb85ca9060200160405180910390a1565b826daaeb6d7670e522a718067333cd4e3b1561076c57336001600160a01b0382160361065757610652848484610f08565b610777565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156106a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ca9190611ae2565b801561074d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074d9190611ae2565b61076c57604051633b79c77360e21b8152336004820152602401610466565b610777848484610f08565b50505050565b826daaeb6d7670e522a718067333cd4e3b156108c357336001600160a01b038216036107ae57610652848484610f38565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156107fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108219190611ae2565b80156108a45750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610880573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a49190611ae2565b6108c357604051633b79c77360e21b8152336004820152602401610466565b610777848484610f38565b6108d9335b82610f53565b61093b5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610466565b6109448161102a565b50565b6008805461095490611a7f565b80601f016020809104026020016040519081016040528092919081815260200182805461098090611a7f565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b505050505081565b6000546001600160a01b031633146109ff5760405162461bcd60e51b815260040161046690611aff565b6007610a0b8282611b82565b5050565b6000818152600360205260408120546001600160a01b0316806103595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610466565b60006001600160a01b038216610af15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610466565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610b375760405162461bcd60e51b815260040161046690611aff565b610b4160006110c5565b565b60606002805461036e90611a7f565b610a0b338383611115565b836daaeb6d7670e522a718067333cd4e3b15610ca957336001600160a01b03821603610b9457610b8f858585856111e3565b610cb5565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610be3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c079190611ae2565b8015610c8a5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8a9190611ae2565b610ca957604051633b79c77360e21b8152336004820152602401610466565b610cb5858585856111e3565b5050505050565b6000818152600360205260409020546060906001600160a01b0316610d3b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610466565b6000610d45611215565b90506000815111610d655760405180602001604052806000815250610d93565b80610d6f84611224565b6008604051602001610d8393929190611c42565b6040516020818303038152906040525b9392505050565b6060604051806060016040528060368152602001611e6060369139905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b03163314610e125760405162461bcd60e51b815260040161046690611aff565b6001600160a01b038116610e775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610466565b610944816110c5565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eb582610a0f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610a0b828260405180602001604052806000815250611325565b610f11336108d3565b610f2d5760405162461bcd60e51b815260040161046690611ce2565b61059b838383611358565b61059b83838360405180602001604052806000815250610b5d565b6000818152600360205260408120546001600160a01b0316610fcc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610466565b6000610fd783610a0f565b9050806001600160a01b0316846001600160a01b03161480610ffe5750610ffe8185610dba565b806110225750836001600160a01b0316611017846103f1565b6001600160a01b0316145b949350505050565b600061103582610a0f565b9050611042600083610e80565b6001600160a01b038116600090815260046020526040812080546001929061106b908490611d33565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036111765760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610466565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6111ed3383610f53565b6112095760405162461bcd60e51b815260040161046690611ce2565b610777848484846114f4565b60606007805461036e90611a7f565b60608160000361124b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611275578061125f81611d46565b915061126e9050600a83611d75565b915061124f565b60008167ffffffffffffffff8111156112905761129061189b565b6040519080825280601f01601f1916602001820160405280156112ba576020820181803683370190505b5090505b8415611022576112cf600183611d33565b91506112dc600a86611d89565b6112e7906030611acf565b60f81b8183815181106112fc576112fc611d9d565b60200101906001600160f81b031916908160001a90535061131e600a86611d75565b94506112be565b61132f8383611527565b61133c6000848484611669565b61059b5760405162461bcd60e51b815260040161046690611db3565b826001600160a01b031661136b82610a0f565b6001600160a01b0316146113cf5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610466565b6001600160a01b0382166114315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610466565b61143c600082610e80565b6001600160a01b0383166000908152600460205260408120805460019290611465908490611d33565b90915550506001600160a01b0382166000908152600460205260408120805460019290611493908490611acf565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6114ff848484611358565b61150b84848484611669565b6107775760405162461bcd60e51b815260040161046690611db3565b6001600160a01b03821661157d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610466565b6000818152600360205260409020546001600160a01b0316156115e25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610466565b6001600160a01b038216600090815260046020526040812080546001929061160b908490611acf565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561175f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116ad903390899088908890600401611e05565b6020604051808303816000875af19250505080156116e8575060408051601f3d908101601f191682019092526116e591810190611e42565b60015b611745573d808015611716576040519150601f19603f3d011682016040523d82523d6000602084013e61171b565b606091505b50805160000361173d5760405162461bcd60e51b815260040161046690611db3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611022565b506001949350505050565b6001600160e01b03198116811461094457600080fd5b60006020828403121561179257600080fd5b8135610d938161176a565b60005b838110156117b85781810151838201526020016117a0565b50506000910152565b600081518084526117d981602086016020860161179d565b601f01601f19169290920160200192915050565b602081526000610d9360208301846117c1565b60006020828403121561181257600080fd5b5035919050565b80356001600160a01b038116811461183057600080fd5b919050565b6000806040838503121561184857600080fd5b61185183611819565b946020939093013593505050565b60008060006060848603121561187457600080fd5b61187d84611819565b925061188b60208501611819565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118cc576118cc61189b565b604051601f8501601f19908116603f011681019082821181831017156118f4576118f461189b565b8160405280935085815286868601111561190d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561193957600080fd5b813567ffffffffffffffff81111561195057600080fd5b8201601f8101841361196157600080fd5b611022848235602084016118b1565b60006020828403121561198257600080fd5b610d9382611819565b801515811461094457600080fd5b600080604083850312156119ac57600080fd5b6119b583611819565b915060208301356119c58161198b565b809150509250929050565b600080600080608085870312156119e657600080fd5b6119ef85611819565b93506119fd60208601611819565b925060408501359150606085013567ffffffffffffffff811115611a2057600080fd5b8501601f81018713611a3157600080fd5b611a40878235602084016118b1565b91505092959194509250565b60008060408385031215611a5f57600080fd5b611a6883611819565b9150611a7660208401611819565b90509250929050565b600181811c90821680611a9357607f821691505b602082108103611ab357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561035957610359611ab9565b600060208284031215611af457600080fd5b8151610d938161198b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561059b57600081815260208120601f850160051c81016020861015611b5b5750805b601f850160051c820191505b81811015611b7a57828155600101611b67565b505050505050565b815167ffffffffffffffff811115611b9c57611b9c61189b565b611bb081611baa8454611a7f565b84611b34565b602080601f831160018114611be55760008415611bcd5750858301515b600019600386901b1c1916600185901b178555611b7a565b600085815260208120601f198616915b82811015611c1457888601518255948401946001909101908401611bf5565b5085821015611c325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600084516020611c558285838a0161179d565b855191840191611c688184848a0161179d565b8554920191600090611c7981611a7f565b60018281168015611c915760018114611ca657611cd2565b60ff1984168752821515830287019450611cd2565b896000528560002060005b84811015611cca57815489820152908301908701611cb1565b505082870194505b50929a9950505050505050505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b8181038181111561035957610359611ab9565b600060018201611d5857611d58611ab9565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611d8457611d84611d5f565b500490565b600082611d9857611d98611d5f565b500690565b634e487b7160e01b600052603260045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e38908301846117c1565b9695505050505050565b600060208284031215611e5457600080fd5b8151610d938161176a56fe697066733a2f2f516d637144714c71664e467956515639743257766637574a7a4d445433783759765554366667527a365a5837514e2fa26469706673582212203f1f51c771e9ab5b32199ca85ed5914612315556baf00e027c7c7c2fade58d8264736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063a827b5ff1161007c578063a827b5ff146102b0578063b88d4fde146102b9578063c87b56dd146102cc578063e8a3d485146102df578063e985e9c5146102e7578063f2fde38b146102fa57600080fd5b8063715018a61461026a578063836c081d146102725780638a333b501461027b5780638da5cb5b1461028457806395d89b4114610295578063a22cb4651461029d57600080fd5b806342842e0e1161011557806342842e0e146101f557806342966c68146102085780635503a0e81461021b57806355f804b3146102235780636352211e1461023657806370a082311461024957600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c55780631249c58b146101da57806323b872dd146101e2575b600080fd5b61017061016b366004611780565b61030d565b60405190151581526020015b60405180910390f35b61018d61035f565b60405161017c91906117ed565b6101ad6101a8366004611800565b6103f1565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004611835565b61048b565b005b6101d86105a0565b6101d86101f036600461185f565b610621565b6101d861020336600461185f565b61077d565b6101d8610216366004611800565b6108ce565b61018d610947565b6101d8610231366004611927565b6109d5565b6101ad610244366004611800565b610a0f565b61025c610257366004611970565b610a86565b60405190815260200161017c565b6101d8610b0d565b61025c600b5481565b61025c60095481565b6000546001600160a01b03166101ad565b61018d610b43565b6101d86102ab366004611999565b610b52565b61025c600a5481565b6101d86102c73660046119d0565b610b5d565b61018d6102da366004611800565b610cbc565b61018d610d9a565b6101706102f5366004611a4c565b610dba565b6101d8610308366004611970565b610de8565b60006001600160e01b031982166380ac58cd60e01b148061033e57506001600160e01b03198216635b5e139f60e01b145b8061035957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461036e90611a7f565b80601f016020809104026020016040519081016040528092919081815260200182805461039a90611a7f565b80156103e75780601f106103bc576101008083540402835291602001916103e7565b820191906000526020600020905b8154815290600101906020018083116103ca57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661046f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061049682610a0f565b9050806001600160a01b0316836001600160a01b0316036105035760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610466565b336001600160a01b038216148061051f575061051f8133610dba565b6105915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610466565b61059b8383610e80565b505050565b600a546105ac33610a86565b106105b657600080fd5b600954600b54106105c657600080fd5b6001600b60008282546105d99190611acf565b925050819055506105ec33600b54610eee565b6040513381527ff5535ccd9f40eb4bc73fac8710dbb2effbf3329da83f62b35d9aa88161bb85ca9060200160405180910390a1565b826daaeb6d7670e522a718067333cd4e3b1561076c57336001600160a01b0382160361065757610652848484610f08565b610777565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156106a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ca9190611ae2565b801561074d5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074d9190611ae2565b61076c57604051633b79c77360e21b8152336004820152602401610466565b610777848484610f08565b50505050565b826daaeb6d7670e522a718067333cd4e3b156108c357336001600160a01b038216036107ae57610652848484610f38565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156107fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108219190611ae2565b80156108a45750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610880573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a49190611ae2565b6108c357604051633b79c77360e21b8152336004820152602401610466565b610777848484610f38565b6108d9335b82610f53565b61093b5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610466565b6109448161102a565b50565b6008805461095490611a7f565b80601f016020809104026020016040519081016040528092919081815260200182805461098090611a7f565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b505050505081565b6000546001600160a01b031633146109ff5760405162461bcd60e51b815260040161046690611aff565b6007610a0b8282611b82565b5050565b6000818152600360205260408120546001600160a01b0316806103595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610466565b60006001600160a01b038216610af15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610466565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610b375760405162461bcd60e51b815260040161046690611aff565b610b4160006110c5565b565b60606002805461036e90611a7f565b610a0b338383611115565b836daaeb6d7670e522a718067333cd4e3b15610ca957336001600160a01b03821603610b9457610b8f858585856111e3565b610cb5565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610be3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c079190611ae2565b8015610c8a5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8a9190611ae2565b610ca957604051633b79c77360e21b8152336004820152602401610466565b610cb5858585856111e3565b5050505050565b6000818152600360205260409020546060906001600160a01b0316610d3b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610466565b6000610d45611215565b90506000815111610d655760405180602001604052806000815250610d93565b80610d6f84611224565b6008604051602001610d8393929190611c42565b6040516020818303038152906040525b9392505050565b6060604051806060016040528060368152602001611e6060369139905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b03163314610e125760405162461bcd60e51b815260040161046690611aff565b6001600160a01b038116610e775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610466565b610944816110c5565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eb582610a0f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610a0b828260405180602001604052806000815250611325565b610f11336108d3565b610f2d5760405162461bcd60e51b815260040161046690611ce2565b61059b838383611358565b61059b83838360405180602001604052806000815250610b5d565b6000818152600360205260408120546001600160a01b0316610fcc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610466565b6000610fd783610a0f565b9050806001600160a01b0316846001600160a01b03161480610ffe5750610ffe8185610dba565b806110225750836001600160a01b0316611017846103f1565b6001600160a01b0316145b949350505050565b600061103582610a0f565b9050611042600083610e80565b6001600160a01b038116600090815260046020526040812080546001929061106b908490611d33565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036111765760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610466565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6111ed3383610f53565b6112095760405162461bcd60e51b815260040161046690611ce2565b610777848484846114f4565b60606007805461036e90611a7f565b60608160000361124b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611275578061125f81611d46565b915061126e9050600a83611d75565b915061124f565b60008167ffffffffffffffff8111156112905761129061189b565b6040519080825280601f01601f1916602001820160405280156112ba576020820181803683370190505b5090505b8415611022576112cf600183611d33565b91506112dc600a86611d89565b6112e7906030611acf565b60f81b8183815181106112fc576112fc611d9d565b60200101906001600160f81b031916908160001a90535061131e600a86611d75565b94506112be565b61132f8383611527565b61133c6000848484611669565b61059b5760405162461bcd60e51b815260040161046690611db3565b826001600160a01b031661136b82610a0f565b6001600160a01b0316146113cf5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610466565b6001600160a01b0382166114315760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610466565b61143c600082610e80565b6001600160a01b0383166000908152600460205260408120805460019290611465908490611d33565b90915550506001600160a01b0382166000908152600460205260408120805460019290611493908490611acf565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6114ff848484611358565b61150b84848484611669565b6107775760405162461bcd60e51b815260040161046690611db3565b6001600160a01b03821661157d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610466565b6000818152600360205260409020546001600160a01b0316156115e25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610466565b6001600160a01b038216600090815260046020526040812080546001929061160b908490611acf565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561175f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116ad903390899088908890600401611e05565b6020604051808303816000875af19250505080156116e8575060408051601f3d908101601f191682019092526116e591810190611e42565b60015b611745573d808015611716576040519150601f19603f3d011682016040523d82523d6000602084013e61171b565b606091505b50805160000361173d5760405162461bcd60e51b815260040161046690611db3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611022565b506001949350505050565b6001600160e01b03198116811461094457600080fd5b60006020828403121561179257600080fd5b8135610d938161176a565b60005b838110156117b85781810151838201526020016117a0565b50506000910152565b600081518084526117d981602086016020860161179d565b601f01601f19169290920160200192915050565b602081526000610d9360208301846117c1565b60006020828403121561181257600080fd5b5035919050565b80356001600160a01b038116811461183057600080fd5b919050565b6000806040838503121561184857600080fd5b61185183611819565b946020939093013593505050565b60008060006060848603121561187457600080fd5b61187d84611819565b925061188b60208501611819565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118cc576118cc61189b565b604051601f8501601f19908116603f011681019082821181831017156118f4576118f461189b565b8160405280935085815286868601111561190d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561193957600080fd5b813567ffffffffffffffff81111561195057600080fd5b8201601f8101841361196157600080fd5b611022848235602084016118b1565b60006020828403121561198257600080fd5b610d9382611819565b801515811461094457600080fd5b600080604083850312156119ac57600080fd5b6119b583611819565b915060208301356119c58161198b565b809150509250929050565b600080600080608085870312156119e657600080fd5b6119ef85611819565b93506119fd60208601611819565b925060408501359150606085013567ffffffffffffffff811115611a2057600080fd5b8501601f81018713611a3157600080fd5b611a40878235602084016118b1565b91505092959194509250565b60008060408385031215611a5f57600080fd5b611a6883611819565b9150611a7660208401611819565b90509250929050565b600181811c90821680611a9357607f821691505b602082108103611ab357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561035957610359611ab9565b600060208284031215611af457600080fd5b8151610d938161198b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561059b57600081815260208120601f850160051c81016020861015611b5b5750805b601f850160051c820191505b81811015611b7a57828155600101611b67565b505050505050565b815167ffffffffffffffff811115611b9c57611b9c61189b565b611bb081611baa8454611a7f565b84611b34565b602080601f831160018114611be55760008415611bcd5750858301515b600019600386901b1c1916600185901b178555611b7a565b600085815260208120601f198616915b82811015611c1457888601518255948401946001909101908401611bf5565b5085821015611c325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600084516020611c558285838a0161179d565b855191840191611c688184848a0161179d565b8554920191600090611c7981611a7f565b60018281168015611c915760018114611ca657611cd2565b60ff1984168752821515830287019450611cd2565b896000528560002060005b84811015611cca57815489820152908301908701611cb1565b505082870194505b50929a9950505050505050505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b8181038181111561035957610359611ab9565b600060018201611d5857611d58611ab9565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611d8457611d84611d5f565b500490565b600082611d9857611d98611d5f565b500690565b634e487b7160e01b600052603260045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e38908301846117c1565b9695505050505050565b600060208284031215611e5457600080fd5b8151610d938161176a56fe697066733a2f2f516d637144714c71664e467956515639743257766637574a7a4d445433783759765554366667527a365a5837514e2fa26469706673582212203f1f51c771e9ab5b32199ca85ed5914612315556baf00e027c7c7c2fade58d8264736f6c63430008110033

Deployed Bytecode Sourcemap

42669:2130:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28701:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28701:305:0;;;;;;;;29646:100;;;:::i;:::-;;;;;;;:::i;31206:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;31206:221:0;1533:203:1;30729:411:0;;;;;;:::i;:::-;;:::i;:::-;;43060:286;;;:::i;44188:167::-;;;;;;:::i;:::-;;:::i;44367:175::-;;;;;;:::i;:::-;;:::i;42354:242::-;;;;;;:::i;:::-;;:::i;42776:33::-;;;:::i;43791:102::-;;;;;;:::i;:::-;;:::i;29340:239::-;;;;;;:::i;:::-;;:::i;29070:208::-;;;;;;:::i;:::-;;:::i;:::-;;;4073:25:1;;;4061:2;4046:18;29070:208:0;3927:177:1;24353:103:0;;;:::i;42907:31::-;;;;;;42818:32;;;;;;23702:87;23748:7;23775:6;-1:-1:-1;;;;;23775:6:0;23702:87;;29815:104;;;:::i;31499:155::-;;;;;;:::i;:::-;;:::i;42859:39::-;;;;;;44554:240;;;;;;:::i;:::-;;:::i;43362:416::-;;;;;;:::i;:::-;;:::i;44031:145::-;;;:::i;31725:164::-;;;;;;:::i;:::-;;:::i;24611:201::-;;;;;;:::i;:::-;;:::i;28701:305::-;28803:4;-1:-1:-1;;;;;;28840:40:0;;-1:-1:-1;;;28840:40:0;;:105;;-1:-1:-1;;;;;;;28897:48:0;;-1:-1:-1;;;28897:48:0;28840:105;:158;;;-1:-1:-1;;;;;;;;;;16002:40:0;;;28962:36;28820:178;28701:305;-1:-1:-1;;28701:305:0:o;29646:100::-;29700:13;29733:5;29726:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29646:100;:::o;31206:221::-;31282:7;34549:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34549:16:0;31302:73;;;;-1:-1:-1;;;31302:73:0;;6076:2:1;31302:73:0;;;6058:21:1;6115:2;6095:18;;;6088:30;6154:34;6134:18;;;6127:62;-1:-1:-1;;;6205:18:1;;;6198:42;6257:19;;31302:73:0;;;;;;;;;-1:-1:-1;31395:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31395:24:0;;31206:221::o;30729:411::-;30810:13;30826:23;30841:7;30826:14;:23::i;:::-;30810:39;;30874:5;-1:-1:-1;;;;;30868:11:0;:2;-1:-1:-1;;;;;30868:11:0;;30860:57;;;;-1:-1:-1;;;30860:57:0;;6489:2:1;30860:57:0;;;6471:21:1;6528:2;6508:18;;;6501:30;6567:34;6547:18;;;6540:62;-1:-1:-1;;;6618:18:1;;;6611:31;6659:19;;30860:57:0;6287:397:1;30860:57:0;22506:10;-1:-1:-1;;;;;30952:21:0;;;;:62;;-1:-1:-1;30977:37:0;30994:5;22506:10;31725:164;:::i;30977:37::-;30930:168;;;;-1:-1:-1;;;30930:168:0;;6891:2:1;30930:168:0;;;6873:21:1;6930:2;6910:18;;;6903:30;6969:34;6949:18;;;6942:62;7040:26;7020:18;;;7013:54;7084:19;;30930:168:0;6689:420:1;30930:168:0;31111:21;31120:2;31124:7;31111:8;:21::i;:::-;30799:341;30729:411;;:::o;43060:286::-;43130:20;;43106:21;43116:10;43106:9;:21::i;:::-;:44;43098:53;;;;;;43187:10;;43172:12;;:25;43164:34;;;;;;43231:1;43215:12;;:17;;;;;;;:::i;:::-;;;;;;;;43245:35;43255:10;43267:12;;43245:9;:35::i;:::-;43310:26;;43325:10;1679:51:1;;43310:26:0;;1667:2:1;1652:18;43310:26:0;;;;;;;43060:286::o;44188:167::-;44289:4;2386:42;3526:43;:47;3522:699;;3813:10;-1:-1:-1;;;;;3805:18:0;;;3801:85;;44308:37:::1;44327:4;44333:2;44337:7;44308:18;:37::i;:::-;3864:7:::0;;3801:85;3946:67;;-1:-1:-1;;;3946:67:0;;3995:4;3946:67;;;7588:34:1;4002:10:0;7638:18:1;;;7631:43;2386:42:0;;3946:40;;7523:18:1;;3946:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4042:61:0;;-1:-1:-1;;;4042:61:0;;4091:4;4042:61;;;7588:34:1;-1:-1:-1;;;;;7658:15:1;;7638:18;;;7631:43;2386:42:0;;4042:40;;7523:18:1;;4042:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3900:310;;4164:30;;-1:-1:-1;;;4164:30:0;;4183:10;4164:30;;;1679:51:1;1652:18;;4164:30:0;1533:203:1;3900:310:0;44308:37:::1;44327:4;44333:2;44337:7;44308:18;:37::i;:::-;44188:167:::0;;;;:::o;44367:175::-;44472:4;2386:42;3526:43;:47;3522:699;;3813:10;-1:-1:-1;;;;;3805:18:0;;;3801:85;;44491:41:::1;44514:4;44520:2;44524:7;44491:22;:41::i;3801:85::-:0;3946:67;;-1:-1:-1;;;3946:67:0;;3995:4;3946:67;;;7588:34:1;4002:10:0;7638:18:1;;;7631:43;2386:42:0;;3946:40;;7523:18:1;;3946:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4042:61:0;;-1:-1:-1;;;4042:61:0;;4091:4;4042:61;;;7588:34:1;-1:-1:-1;;;;;7658:15:1;;7638:18;;;7631:43;2386:42:0;;4042:40;;7523:18:1;;4042:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3900:310;;4164:30;;-1:-1:-1;;;4164:30:0;;4183:10;4164:30;;;1679:51:1;1652:18;;4164:30:0;1533:203:1;3900:310:0;44491:41:::1;44514:4;44520:2;44524:7;44491:22;:41::i;42354:242::-:0;42472:41;22506:10;42491:12;42505:7;42472:18;:41::i;:::-;42464:99;;;;-1:-1:-1;;;42464:99:0;;8137:2:1;42464:99:0;;;8119:21:1;8176:2;8156:18;;;8149:30;8215:34;8195:18;;;8188:62;-1:-1:-1;;;8266:18:1;;;8259:43;8319:19;;42464:99:0;7935:409:1;42464:99:0;42574:14;42580:7;42574:5;:14::i;:::-;42354:242;:::o;42776:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43791:102::-;23748:7;23775:6;-1:-1:-1;;;;;23775:6:0;22506:10;23922:23;23914:68;;;;-1:-1:-1;;;23914:68:0;;;;;;;:::i;:::-;43865:7:::1;:18;43875:8:::0;43865:7;:18:::1;:::i;:::-;;43791:102:::0;:::o;29340:239::-;29412:7;29448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29448:16:0;;29475:73;;;;-1:-1:-1;;;29475:73:0;;11116:2:1;29475:73:0;;;11098:21:1;11155:2;11135:18;;;11128:30;11194:34;11174:18;;;11167:62;-1:-1:-1;;;11245:18:1;;;11238:39;11294:19;;29475:73:0;10914:405:1;29070:208:0;29142:7;-1:-1:-1;;;;;29170:19:0;;29162:74;;;;-1:-1:-1;;;29162:74:0;;11526:2:1;29162:74:0;;;11508:21:1;11565:2;11545:18;;;11538:30;11604:34;11584:18;;;11577:62;-1:-1:-1;;;11655:18:1;;;11648:40;11705:19;;29162:74:0;11324:406:1;29162:74:0;-1:-1:-1;;;;;;29254:16:0;;;;;:9;:16;;;;;;;29070:208::o;24353:103::-;23748:7;23775:6;-1:-1:-1;;;;;23775:6:0;22506:10;23922:23;23914:68;;;;-1:-1:-1;;;23914:68:0;;;;;;;:::i;:::-;24418:30:::1;24445:1;24418:18;:30::i;:::-;24353:103::o:0;29815:104::-;29871:13;29904:7;29897:14;;;;;:::i;31499:155::-;31594:52;22506:10;31627:8;31637;31594:18;:52::i;44554:240::-;44711:4;2386:42;3526:43;:47;3522:699;;3813:10;-1:-1:-1;;;;;3805:18:0;;;3801:85;;44737:47:::1;44760:4;44766:2;44770:7;44779:4;44737:22;:47::i;:::-;3864:7:::0;;3801:85;3946:67;;-1:-1:-1;;;3946:67:0;;3995:4;3946:67;;;7588:34:1;4002:10:0;7638:18:1;;;7631:43;2386:42:0;;3946:40;;7523:18:1;;3946:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4042:61:0;;-1:-1:-1;;;4042:61:0;;4091:4;4042:61;;;7588:34:1;-1:-1:-1;;;;;7658:15:1;;7638:18;;;7631:43;2386:42:0;;4042:40;;7523:18:1;;4042:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3900:310;;4164:30;;-1:-1:-1;;;4164:30:0;;4183:10;4164:30;;;1679:51:1;1652:18;;4164:30:0;1533:203:1;3900:310:0;44737:47:::1;44760:4;44766:2;44770:7;44779:4;44737:22;:47::i;:::-;44554:240:::0;;;;;:::o;43362:416::-;34525:4;34549:16;;;:7;:16;;;;;;43436:13;;-1:-1:-1;;;;;34549:16:0;43464:77;;;;-1:-1:-1;;;43464:77:0;;11937:2:1;43464:77:0;;;11919:21:1;11976:2;11956:18;;;11949:30;12015:34;11995:18;;;11988:62;-1:-1:-1;;;12066:18:1;;;12059:45;12121:19;;43464:77:0;11735:411:1;43464:77:0;43558:28;43589:10;:8;:10::i;:::-;43558:41;;43650:1;43625:14;43619:28;:32;:149;;;;;;;;;;;;;;;;;43693:14;43709:26;43726:8;43709:16;:26::i;:::-;43737:9;43676:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43619:149;43612:156;43362:416;-1:-1:-1;;;43362:416:0:o;44031:145::-;44075:13;44103:63;;;;;;;;;;;;;;;;;;;44031:145;:::o;31725:164::-;-1:-1:-1;;;;;31846:25:0;;;31822:4;31846:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31725:164::o;24611:201::-;23748:7;23775:6;-1:-1:-1;;;;;23775:6:0;22506:10;23922:23;23914:68;;;;-1:-1:-1;;;23914:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24700:22:0;::::1;24692:73;;;::::0;-1:-1:-1;;;24692:73:0;;13614:2:1;24692:73:0::1;::::0;::::1;13596:21:1::0;13653:2;13633:18;;;13626:30;13692:34;13672:18;;;13665:62;-1:-1:-1;;;13743:18:1;;;13736:36;13789:19;;24692:73:0::1;13412:402:1::0;24692:73:0::1;24776:28;24795:8;24776:18;:28::i;38606:174::-:0;38681:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38681:29:0;-1:-1:-1;;;;;38681:29:0;;;;;;;;:24;;38735:23;38681:24;38735:14;:23::i;:::-;-1:-1:-1;;;;;38726:46:0;;;;;;;;;;;38606:174;;:::o;35444:110::-;35520:26;35530:2;35534:7;35520:26;;;;;;;;;;;;:9;:26::i;31956:339::-;32151:41;22506:10;32170:12;22426:98;32151:41;32143:103;;;;-1:-1:-1;;;32143:103:0;;;;;;;:::i;:::-;32259:28;32269:4;32275:2;32279:7;32259:9;:28::i;32366:185::-;32504:39;32521:4;32527:2;32531:7;32504:39;;;;;;;;;;;;:16;:39::i;34754:348::-;34847:4;34549:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34549:16:0;34864:73;;;;-1:-1:-1;;;34864:73:0;;14439:2:1;34864:73:0;;;14421:21:1;14478:2;14458:18;;;14451:30;14517:34;14497:18;;;14490:62;-1:-1:-1;;;14568:18:1;;;14561:42;14620:19;;34864:73:0;14237:408:1;34864:73:0;34948:13;34964:23;34979:7;34964:14;:23::i;:::-;34948:39;;35017:5;-1:-1:-1;;;;;35006:16:0;:7;-1:-1:-1;;;;;35006:16:0;;:52;;;;35026:32;35043:5;35050:7;35026:16;:32::i;:::-;35006:87;;;;35086:7;-1:-1:-1;;;;;35062:31:0;:20;35074:7;35062:11;:20::i;:::-;-1:-1:-1;;;;;35062:31:0;;35006:87;34998:96;34754:348;-1:-1:-1;;;;34754:348:0:o;37106:420::-;37166:13;37182:23;37197:7;37182:14;:23::i;:::-;37166:39;;37307:29;37324:1;37328:7;37307:8;:29::i;:::-;-1:-1:-1;;;;;37349:16:0;;;;;;:9;:16;;;;;:21;;37369:1;;37349:16;:21;;37369:1;;37349:21;:::i;:::-;;;;-1:-1:-1;;37388:16:0;;;;:7;:16;;;;;;37381:23;;-1:-1:-1;;;;;;37381:23:0;;;37422:36;37396:7;;37388:16;-1:-1:-1;;;;;37422:36:0;;;;;37388:16;;37422:36;43865:18:::1;43791:102:::0;:::o;24972:191::-;25046:16;25065:6;;-1:-1:-1;;;;;25082:17:0;;;-1:-1:-1;;;;;;25082:17:0;;;;;;25115:40;;25065:6;;;;;;;25115:40;;25046:16;25115:40;25035:128;24972:191;:::o;38922:315::-;39077:8;-1:-1:-1;;;;;39068:17:0;:5;-1:-1:-1;;;;;39068:17:0;;39060:55;;;;-1:-1:-1;;;39060:55:0;;14985:2:1;39060:55:0;;;14967:21:1;15024:2;15004:18;;;14997:30;15063:27;15043:18;;;15036:55;15108:18;;39060:55:0;14783:349:1;39060:55:0;-1:-1:-1;;;;;39126:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39126:46:0;;;;;;;;;;39188:41;;540::1;;;39188::0;;513:18:1;39188:41:0;;;;;;;38922:315;;;:::o;32622:328::-;32797:41;22506:10;32830:7;32797:18;:41::i;:::-;32789:103;;;;-1:-1:-1;;;32789:103:0;;;;;;;:::i;:::-;32903:39;32917:4;32923:2;32927:7;32936:5;32903:13;:39::i;43909:110::-;43969:13;44002:7;43995:14;;;;;:::i;25535:723::-;25591:13;25812:5;25821:1;25812:10;25808:53;;-1:-1:-1;;25839:10:0;;;;;;;;;;;;-1:-1:-1;;;25839:10:0;;;;;25535:723::o;25808:53::-;25886:5;25871:12;25927:78;25934:9;;25927:78;;25960:8;;;;:::i;:::-;;-1:-1:-1;25983:10:0;;-1:-1:-1;25991:2:0;25983:10;;:::i;:::-;;;25927:78;;;26015:19;26047:6;26037:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26037:17:0;;26015:39;;26065:154;26072:10;;26065:154;;26099:11;26109:1;26099:11;;:::i;:::-;;-1:-1:-1;26168:10:0;26176:2;26168:5;:10;:::i;:::-;26155:24;;:2;:24;:::i;:::-;26142:39;;26125:6;26132;26125:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;26125:56:0;;;;;;;;-1:-1:-1;26196:11:0;26205:2;26196:11;;:::i;:::-;;;26065:154;;35781:321;35911:18;35917:2;35921:7;35911:5;:18::i;:::-;35962:54;35993:1;35997:2;36001:7;36010:5;35962:22;:54::i;:::-;35940:154;;;;-1:-1:-1;;;35940:154:0;;;;;;;:::i;37863:625::-;38022:4;-1:-1:-1;;;;;37995:31:0;:23;38010:7;37995:14;:23::i;:::-;-1:-1:-1;;;;;37995:31:0;;37987:81;;;;-1:-1:-1;;;37987:81:0;;16404:2:1;37987:81:0;;;16386:21:1;16443:2;16423:18;;;16416:30;16482:34;16462:18;;;16455:62;-1:-1:-1;;;16533:18:1;;;16526:35;16578:19;;37987:81:0;16202:401:1;37987:81:0;-1:-1:-1;;;;;38087:16:0;;38079:65;;;;-1:-1:-1;;;38079:65:0;;16810:2:1;38079:65:0;;;16792:21:1;16849:2;16829:18;;;16822:30;16888:34;16868:18;;;16861:62;-1:-1:-1;;;16939:18:1;;;16932:34;16983:19;;38079:65:0;16608:400:1;38079:65:0;38261:29;38278:1;38282:7;38261:8;:29::i;:::-;-1:-1:-1;;;;;38303:15:0;;;;;;:9;:15;;;;;:20;;38322:1;;38303:15;:20;;38322:1;;38303:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38334:13:0;;;;;;:9;:13;;;;;:18;;38351:1;;38334:13;:18;;38351:1;;38334:18;:::i;:::-;;;;-1:-1:-1;;38363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38363:21:0;-1:-1:-1;;;;;38363:21:0;;;;;;;;;38402:27;;38363:16;;38402:27;;;;;;;30799:341;30729:411;;:::o;33832:315::-;33989:28;33999:4;34005:2;34009:7;33989:9;:28::i;:::-;34036:48;34059:4;34065:2;34069:7;34078:5;34036:22;:48::i;:::-;34028:111;;;;-1:-1:-1;;;34028:111:0;;;;;;;:::i;36438:439::-;-1:-1:-1;;;;;36518:16:0;;36510:61;;;;-1:-1:-1;;;36510:61:0;;17215:2:1;36510:61:0;;;17197:21:1;;;17234:18;;;17227:30;17293:34;17273:18;;;17266:62;17345:18;;36510:61:0;17013:356:1;36510:61:0;34525:4;34549:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34549:16:0;:30;36582:58;;;;-1:-1:-1;;;36582:58:0;;17576:2:1;36582:58:0;;;17558:21:1;17615:2;17595:18;;;17588:30;17654;17634:18;;;17627:58;17702:18;;36582:58:0;17374:352:1;36582:58:0;-1:-1:-1;;;;;36711:13:0;;;;;;:9;:13;;;;;:18;;36728:1;;36711:13;:18;;36728:1;;36711:18;:::i;:::-;;;;-1:-1:-1;;36740:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36740:21:0;-1:-1:-1;;;;;36740:21:0;;;;;;;;36779:33;;36740:16;;;36779:33;;36740:16;;36779:33;43865:18:::1;43791:102:::0;:::o;39802:799::-;39957:4;-1:-1:-1;;;;;39978:13:0;;6084:19;:23;39974:620;;40014:72;;-1:-1:-1;;;40014:72:0;;-1:-1:-1;;;;;40014:36:0;;;;;:72;;22506:10;;40065:4;;40071:7;;40080:5;;40014:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40014:72:0;;;;;;;;-1:-1:-1;;40014:72:0;;;;;;;;;;;;:::i;:::-;;;40010:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40256:6;:13;40273:1;40256:18;40252:272;;40299:60;;-1:-1:-1;;;40299:60:0;;;;;;;:::i;40252:272::-;40474:6;40468:13;40459:6;40455:2;40451:15;40444:38;40010:529;-1:-1:-1;;;;;;40137:51:0;-1:-1:-1;;;40137:51:0;;-1:-1:-1;40130:58:0;;39974:620;-1:-1:-1;40578:4:0;39802:799;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:328::-;2255:6;2263;2271;2324:2;2312:9;2303:7;2299:23;2295:32;2292:52;;;2340:1;2337;2330:12;2292:52;2363:29;2382:9;2363:29;:::i;:::-;2353:39;;2411:38;2445:2;2434:9;2430:18;2411:38;:::i;:::-;2401:48;;2496:2;2485:9;2481:18;2468:32;2458:42;;2178:328;;;;;:::o;2511:127::-;2572:10;2567:3;2563:20;2560:1;2553:31;2603:4;2600:1;2593:15;2627:4;2624:1;2617:15;2643:632;2708:5;2738:18;2779:2;2771:6;2768:14;2765:40;;;2785:18;;:::i;:::-;2860:2;2854:9;2828:2;2914:15;;-1:-1:-1;;2910:24:1;;;2936:2;2906:33;2902:42;2890:55;;;2960:18;;;2980:22;;;2957:46;2954:72;;;3006:18;;:::i;:::-;3046:10;3042:2;3035:22;3075:6;3066:15;;3105:6;3097;3090:22;3145:3;3136:6;3131:3;3127:16;3124:25;3121:45;;;3162:1;3159;3152:12;3121:45;3212:6;3207:3;3200:4;3192:6;3188:17;3175:44;3267:1;3260:4;3251:6;3243;3239:19;3235:30;3228:41;;;;2643:632;;;;;:::o;3280:451::-;3349:6;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3458:9;3445:23;3491:18;3483:6;3480:30;3477:50;;;3523:1;3520;3513:12;3477:50;3546:22;;3599:4;3591:13;;3587:27;-1:-1:-1;3577:55:1;;3628:1;3625;3618:12;3577:55;3651:74;3717:7;3712:2;3699:16;3694:2;3690;3686:11;3651:74;:::i;3736:186::-;3795:6;3848:2;3836:9;3827:7;3823:23;3819:32;3816:52;;;3864:1;3861;3854:12;3816:52;3887:29;3906:9;3887:29;:::i;4109:118::-;4195:5;4188:13;4181:21;4174:5;4171:32;4161:60;;4217:1;4214;4207:12;4232:315;4297:6;4305;4358:2;4346:9;4337:7;4333:23;4329:32;4326:52;;;4374:1;4371;4364:12;4326:52;4397:29;4416:9;4397:29;:::i;:::-;4387:39;;4476:2;4465:9;4461:18;4448:32;4489:28;4511:5;4489:28;:::i;:::-;4536:5;4526:15;;;4232:315;;;;;:::o;4552:667::-;4647:6;4655;4663;4671;4724:3;4712:9;4703:7;4699:23;4695:33;4692:53;;;4741:1;4738;4731:12;4692:53;4764:29;4783:9;4764:29;:::i;:::-;4754:39;;4812:38;4846:2;4835:9;4831:18;4812:38;:::i;:::-;4802:48;;4897:2;4886:9;4882:18;4869:32;4859:42;;4952:2;4941:9;4937:18;4924:32;4979:18;4971:6;4968:30;4965:50;;;5011:1;5008;5001:12;4965:50;5034:22;;5087:4;5079:13;;5075:27;-1:-1:-1;5065:55:1;;5116:1;5113;5106:12;5065:55;5139:74;5205:7;5200:2;5187:16;5182:2;5178;5174:11;5139:74;:::i;:::-;5129:84;;;4552:667;;;;;;;:::o;5224:260::-;5292:6;5300;5353:2;5341:9;5332:7;5328:23;5324:32;5321:52;;;5369:1;5366;5359:12;5321:52;5392:29;5411:9;5392:29;:::i;:::-;5382:39;;5440:38;5474:2;5463:9;5459:18;5440:38;:::i;:::-;5430:48;;5224:260;;;;;:::o;5489:380::-;5568:1;5564:12;;;;5611;;;5632:61;;5686:4;5678:6;5674:17;5664:27;;5632:61;5739:2;5731:6;5728:14;5708:18;5705:38;5702:161;;5785:10;5780:3;5776:20;5773:1;5766:31;5820:4;5817:1;5810:15;5848:4;5845:1;5838:15;5702:161;;5489:380;;;:::o;7114:127::-;7175:10;7170:3;7166:20;7163:1;7156:31;7206:4;7203:1;7196:15;7230:4;7227:1;7220:15;7246:125;7311:9;;;7332:10;;;7329:36;;;7345:18;;:::i;7685:245::-;7752:6;7805:2;7793:9;7784:7;7780:23;7776:32;7773:52;;;7821:1;7818;7811:12;7773:52;7853:9;7847:16;7872:28;7894:5;7872:28;:::i;8349:356::-;8551:2;8533:21;;;8570:18;;;8563:30;8629:34;8624:2;8609:18;;8602:62;8696:2;8681:18;;8349:356::o;8836:545::-;8938:2;8933:3;8930:11;8927:448;;;8974:1;8999:5;8995:2;8988:17;9044:4;9040:2;9030:19;9114:2;9102:10;9098:19;9095:1;9091:27;9085:4;9081:38;9150:4;9138:10;9135:20;9132:47;;;-1:-1:-1;9173:4:1;9132:47;9228:2;9223:3;9219:12;9216:1;9212:20;9206:4;9202:31;9192:41;;9283:82;9301:2;9294:5;9291:13;9283:82;;;9346:17;;;9327:1;9316:13;9283:82;;;9287:3;;;8836:545;;;:::o;9557:1352::-;9683:3;9677:10;9710:18;9702:6;9699:30;9696:56;;;9732:18;;:::i;:::-;9761:97;9851:6;9811:38;9843:4;9837:11;9811:38;:::i;:::-;9805:4;9761:97;:::i;:::-;9913:4;;9977:2;9966:14;;9994:1;9989:663;;;;10696:1;10713:6;10710:89;;;-1:-1:-1;10765:19:1;;;10759:26;10710:89;-1:-1:-1;;9514:1:1;9510:11;;;9506:24;9502:29;9492:40;9538:1;9534:11;;;9489:57;10812:81;;9959:944;;9989:663;8783:1;8776:14;;;8820:4;8807:18;;-1:-1:-1;;10025:20:1;;;10143:236;10157:7;10154:1;10151:14;10143:236;;;10246:19;;;10240:26;10225:42;;10338:27;;;;10306:1;10294:14;;;;10173:19;;10143:236;;;10147:3;10407:6;10398:7;10395:19;10392:201;;;10468:19;;;10462:26;-1:-1:-1;;10551:1:1;10547:14;;;10563:3;10543:24;10539:37;10535:42;10520:58;10505:74;;10392:201;-1:-1:-1;;;;;10639:1:1;10623:14;;;10619:22;10606:36;;-1:-1:-1;9557:1352:1:o;12151:1256::-;12375:3;12413:6;12407:13;12439:4;12452:64;12509:6;12504:3;12499:2;12491:6;12487:15;12452:64;:::i;:::-;12579:13;;12538:16;;;;12601:68;12579:13;12538:16;12636:15;;;12601:68;:::i;:::-;12758:13;;12691:20;;;12731:1;;12796:36;12758:13;12796:36;:::i;:::-;12851:1;12868:18;;;12895:141;;;;13050:1;13045:337;;;;12861:521;;12895:141;-1:-1:-1;;12930:24:1;;12916:39;;13007:16;;13000:24;12986:39;;12975:51;;;-1:-1:-1;12895:141:1;;13045:337;13076:6;13073:1;13066:17;13124:2;13121:1;13111:16;13149:1;13163:169;13177:8;13174:1;13171:15;13163:169;;;13259:14;;13244:13;;;13237:37;13302:16;;;;13194:10;;13163:169;;;13167:3;;13363:8;13356:5;13352:20;13345:27;;12861:521;-1:-1:-1;13398:3:1;;12151:1256;-1:-1:-1;;;;;;;;;;12151:1256:1:o;13819:413::-;14021:2;14003:21;;;14060:2;14040:18;;;14033:30;14099:34;14094:2;14079:18;;14072:62;-1:-1:-1;;;14165:2:1;14150:18;;14143:47;14222:3;14207:19;;13819:413::o;14650:128::-;14717:9;;;14738:11;;;14735:37;;;14752:18;;:::i;15137:135::-;15176:3;15197:17;;;15194:43;;15217:18;;:::i;:::-;-1:-1:-1;15264:1:1;15253:13;;15137:135::o;15277:127::-;15338:10;15333:3;15329:20;15326:1;15319:31;15369:4;15366:1;15359:15;15393:4;15390:1;15383:15;15409:120;15449:1;15475;15465:35;;15480:18;;:::i;:::-;-1:-1:-1;15514:9:1;;15409:120::o;15534:112::-;15566:1;15592;15582:35;;15597:18;;:::i;:::-;-1:-1:-1;15631:9:1;;15534:112::o;15651:127::-;15712:10;15707:3;15703:20;15700:1;15693:31;15743:4;15740:1;15733:15;15767:4;15764:1;15757:15;15783:414;15985:2;15967:21;;;16024:2;16004:18;;;15997:30;16063:34;16058:2;16043:18;;16036:62;-1:-1:-1;;;16129:2:1;16114:18;;16107:48;16187:3;16172:19;;15783:414::o;17731:489::-;-1:-1:-1;;;;;18000:15:1;;;17982:34;;18052:15;;18047:2;18032:18;;18025:43;18099:2;18084:18;;18077:34;;;18147:3;18142:2;18127:18;;18120:31;;;17925:4;;18168:46;;18194:19;;18186:6;18168:46;:::i;:::-;18160:54;17731:489;-1:-1:-1;;;;;;17731:489:1:o;18225:249::-;18294:6;18347:2;18335:9;18326:7;18322:23;18318:32;18315:52;;;18363:1;18360;18353:12;18315:52;18395:9;18389:16;18414:30;18438:5;18414:30;:::i

Swarm Source

ipfs://3f1f51c771e9ab5b32199ca85ed5914612315556baf00e027c7c7c2fade58d82
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.