ETH Price: $2,364.02 (-4.00%)

Token

 

Overview

Max Total Supply

999

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0xf097ab883dbfb864671ed7251af91f9d07914155
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:
ChankoGoneOff

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// 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/ERC1155/IERC1155Receiver.sol


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

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

pragma solidity ^0.8.0;

// (ノ-o-)ノ 🍲∵:.

contract ChankoGoneOff is ERC1155, Ownable {
    using Strings for uint256;
    uint256 public constant offId = 0;
    address private sumogoneoff;
    string private baseURI;

    constructor(string memory _baseURI) ERC1155(_baseURI) {
        baseURI = _baseURI;
    }

    function setsumogoneoff(address _sumogoneoff) external onlyOwner {
        sumogoneoff = _sumogoneoff;
    }

    function getoffId() external pure returns (uint256) {
        return offId;
    }

    function ownerMint(uint256 _amount, address _address) external onlyOwner { 
        _mint(_address, offId, _amount, "");
    }

    function airdrop(address[] calldata addrs) external onlyOwner {
        for (uint256 i = 0; i < addrs.length; i++) {
            _mint(addrs[i], offId, 1, "");
        }
    }

    function eatOffChanko(address burnTokenAddress) external {
        require(msg.sender == sumogoneoff, "Invalid burner address");
        _burn(burnTokenAddress, offId, 1);
    }

    function updateBaseUri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function uri(uint256 typeId) public view override returns (string memory) {
        require(typeId == offId, "Id 0 only");
        return string(abi.encodePacked(baseURI, Strings.toString(typeId), ".json"));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"burnTokenAddress","type":"address"}],"name":"eatOffChanko","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getoffId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"offId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"address","name":"_sumogoneoff","type":"address"}],"name":"setsumogoneoff","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620020473803806200204783398101604081905262000034916200017a565b80620000408162000069565b506200004c3362000082565b805162000061906005906020840190620000d4565b5050620002a9565b80516200007e906002906020840190620000d4565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000e29062000256565b90600052602060002090601f01602090048101928262000106576000855562000151565b82601f106200012157805160ff191683800117855562000151565b8280016001018555821562000151579182015b828111156200015157825182559160200191906001019062000134565b506200015f92915062000163565b5090565b5b808211156200015f576000815560010162000164565b600060208083850312156200018e57600080fd5b82516001600160401b0380821115620001a657600080fd5b818501915085601f830112620001bb57600080fd5b815181811115620001d057620001d062000293565b604051601f8201601f19908116603f01168101908382118183101715620001fb57620001fb62000293565b8160405282815288868487010111156200021457600080fd5b600093505b8284101562000238578484018601518185018701529285019262000219565b828411156200024a5760008684830101525b98975050505050505050565b600181811c908216806200026b57607f821691505b602082108114156200028d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611d8e80620002b96000396000f3fe608060405234801561001057600080fd5b50600436106101155760003560e01c8063729ad39e116100a2578063a22cb46511610071578063a22cb46514610236578063d52c57e014610249578063e985e9c51461025c578063f242432a14610298578063f2fde38b146102ab57600080fd5b8063729ad39e146101ed5780637e86cd51146102005780638da5cb5b146102085780639e066b961461022357600080fd5b80632eb2c2d6116100e95780632eb2c2d61461018a57806339f7e37f1461019f5780634759627c146101b25780634e1273f4146101c5578063715018a6146101e557600080fd5b8062fdd58e1461011a57806301ffc9a71461014057806302b8d20d146101635780630e89341c1461016a575b600080fd5b61012d610128366004611595565b6102be565b6040519081526020015b60405180910390f35b61015361014e366004611705565b610354565b6040519015158152602001610137565b600061012d565b61017d610178366004611788565b6103a6565b60405161013791906119dd565b61019d61019836600461144a565b610414565b005b61019d6101ad36600461173f565b610460565b61019d6101c03660046113fc565b61047f565b6101d86101d3366004611634565b6104a9565b60405161013791906119a5565b61019d6105d3565b61019d6101fb3660046115bf565b6105e7565b61012d600081565b6003546040516001600160a01b039091168152602001610137565b61019d6102313660046113fc565b610654565b61019d610244366004611559565b6106b7565b61019d6102573660046117a1565b6106c2565b61015361026a366004611417565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61019d6102a63660046114f4565b6106e6565b61019d6102b93660046113fc565b61072b565b60006001600160a01b03831661032e5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061038557506001600160e01b031982166303a24d0760e21b145b806103a057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606081156103e25760405162461bcd60e51b815260206004820152600960248201526849642030206f6e6c7960b81b6044820152606401610325565b60056103ed836107a1565b6040516020016103fe929190611847565b6040516020818303038152906040529050919050565b6001600160a01b0385163314806104305750610430853361026a565b61044c5760405162461bcd60e51b8152600401610325906119f0565b61045985858585856108a7565b5050505050565b610468610a84565b805161047b90600590602084019061124b565b5050565b610487610a84565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6060815183511461050e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610325565b6000835167ffffffffffffffff81111561052a5761052a611c86565b604051908082528060200260200182016040528015610553578160200160208202803683370190505b50905060005b84518110156105cb5761059e85828151811061057757610577611c70565b602002602001015185838151811061059157610591611c70565b60200260200101516102be565b8282815181106105b0576105b0611c70565b60209081029190910101526105c481611c15565b9050610559565b509392505050565b6105db610a84565b6105e56000610ade565b565b6105ef610a84565b60005b8181101561064f5761063d83838381811061060f5761060f611c70565b905060200201602081019061062491906113fc565b6000600160405180602001604052806000815250610b30565b8061064781611c15565b9150506105f2565b505050565b6004546001600160a01b031633146106a75760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206275726e6572206164647265737360501b6044820152606401610325565b6106b48160006001610c44565b50565b61047b338383610dc0565b6106ca610a84565b61047b8160008460405180602001604052806000815250610b30565b6001600160a01b0385163314806107025750610702853361026a565b61071e5760405162461bcd60e51b8152600401610325906119f0565b6104598585858585610ea1565b610733610a84565b6001600160a01b0381166107985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610325565b6106b481610ade565b6060816107c55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156107ef57806107d981611c15565b91506107e89050600a83611b52565b91506107c9565b60008167ffffffffffffffff81111561080a5761080a611c86565b6040519080825280601f01601f191660200182016040528015610834576020820181803683370190505b5090505b841561089f57610849600183611b66565b9150610856600a86611c30565b610861906030611b3a565b60f81b81838151811061087657610876611c70565b60200101906001600160f81b031916908160001a905350610898600a86611b52565b9450610838565b949350505050565b81518351146109095760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610325565b6001600160a01b03841661092f5760405162461bcd60e51b815260040161032590611a87565b3360005b8451811015610a1657600085828151811061095057610950611c70565b60200260200101519050600085838151811061096e5761096e611c70565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156109be5760405162461bcd60e51b815260040161032590611acc565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906109fb908490611b3a565b9250508190555050505080610a0f90611c15565b9050610933565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610a669291906119b8565b60405180910390a4610a7c818787878787610fcb565b505050505050565b6003546001600160a01b031633146105e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610325565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610b905760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610325565b336000610b9c85611136565b90506000610ba985611136565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290610bdb908490611b3a565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610c3b83600089898989611181565b50505050505050565b6001600160a01b038316610ca65760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610325565b336000610cb284611136565b90506000610cbf84611136565b60408051602080820183526000918290528882528181528282206001600160a01b038b1683529052205490915084811015610d485760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610325565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052610c3b565b816001600160a01b0316836001600160a01b03161415610e345760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610325565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610ec75760405162461bcd60e51b815260040161032590611a87565b336000610ed385611136565b90506000610ee085611136565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015610f235760405162461bcd60e51b815260040161032590611acc565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290610f60908490611b3a565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610fc0848a8a8a8a8a611181565b505050505050505050565b6001600160a01b0384163b15610a7c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061100f9089908990889088908890600401611902565b602060405180830381600087803b15801561102957600080fd5b505af1925050508015611059575060408051601f3d908101601f1916820190925261105691810190611722565b60015b61110657611065611c9c565b806308c379a0141561109f575061107a611cb8565b8061108557506110a1565b8060405162461bcd60e51b815260040161032591906119dd565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610325565b6001600160e01b0319811663bc197c8160e01b14610c3b5760405162461bcd60e51b815260040161032590611a3f565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061117057611170611c70565b602090810291909101015292915050565b6001600160a01b0384163b15610a7c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906111c59089908990889088908890600401611960565b602060405180830381600087803b1580156111df57600080fd5b505af192505050801561120f575060408051601f3d908101601f1916820190925261120c91810190611722565b60015b61121b57611065611c9c565b6001600160e01b0319811663f23a6e6160e01b14610c3b5760405162461bcd60e51b815260040161032590611a3f565b82805461125790611bad565b90600052602060002090601f01602090048101928261127957600085556112bf565b82601f1061129257805160ff19168380011785556112bf565b828001600101855582156112bf579182015b828111156112bf5782518255916020019190600101906112a4565b506112cb9291506112cf565b5090565b5b808211156112cb57600081556001016112d0565b600067ffffffffffffffff8311156112fe576112fe611c86565b604051611315601f8501601f191660200182611be8565b80915083815284848401111561132a57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461135957600080fd5b919050565b600082601f83011261136f57600080fd5b8135602061137c82611b16565b6040516113898282611be8565b8381528281019150858301600585901b870184018810156113a957600080fd5b60005b858110156113c8578135845292840192908401906001016113ac565b5090979650505050505050565b600082601f8301126113e657600080fd5b6113f5838335602085016112e4565b9392505050565b60006020828403121561140e57600080fd5b6113f582611342565b6000806040838503121561142a57600080fd5b61143383611342565b915061144160208401611342565b90509250929050565b600080600080600060a0868803121561146257600080fd5b61146b86611342565b945061147960208701611342565b9350604086013567ffffffffffffffff8082111561149657600080fd5b6114a289838a0161135e565b945060608801359150808211156114b857600080fd5b6114c489838a0161135e565b935060808801359150808211156114da57600080fd5b506114e7888289016113d5565b9150509295509295909350565b600080600080600060a0868803121561150c57600080fd5b61151586611342565b945061152360208701611342565b93506040860135925060608601359150608086013567ffffffffffffffff81111561154d57600080fd5b6114e7888289016113d5565b6000806040838503121561156c57600080fd5b61157583611342565b91506020830135801515811461158a57600080fd5b809150509250929050565b600080604083850312156115a857600080fd5b6115b183611342565b946020939093013593505050565b600080602083850312156115d257600080fd5b823567ffffffffffffffff808211156115ea57600080fd5b818501915085601f8301126115fe57600080fd5b81358181111561160d57600080fd5b8660208260051b850101111561162257600080fd5b60209290920196919550909350505050565b6000806040838503121561164757600080fd5b823567ffffffffffffffff8082111561165f57600080fd5b818501915085601f83011261167357600080fd5b8135602061168082611b16565b60405161168d8282611be8565b8381528281019150858301600585901b870184018b10156116ad57600080fd5b600096505b848710156116d7576116c381611342565b8352600196909601959183019183016116b2565b50965050860135925050808211156116ee57600080fd5b506116fb8582860161135e565b9150509250929050565b60006020828403121561171757600080fd5b81356113f581611d42565b60006020828403121561173457600080fd5b81516113f581611d42565b60006020828403121561175157600080fd5b813567ffffffffffffffff81111561176857600080fd5b8201601f8101841361177957600080fd5b61089f848235602084016112e4565b60006020828403121561179a57600080fd5b5035919050565b600080604083850312156117b457600080fd5b8235915061144160208401611342565b600081518084526020808501945080840160005b838110156117f4578151875295820195908201906001016117d8565b509495945050505050565b60008151808452611817816020860160208601611b7d565b601f01601f19169290920160200192915050565b6000815161183d818560208601611b7d565b9290920192915050565b600080845481600182811c91508083168061186357607f831692505b602080841082141561188357634e487b7160e01b86526022600452602486fd5b81801561189757600181146118a8576118d5565b60ff198616895284890196506118d5565b60008b81526020902060005b868110156118cd5781548b8201529085019083016118b4565b505084890196505b5050505050506118f96118e8828661182b565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061192e908301866117c4565b828103606084015261194081866117c4565b9050828103608084015261195481856117ff565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061199a908301846117ff565b979650505050505050565b6020815260006113f560208301846117c4565b6040815260006119cb60408301856117c4565b82810360208401526118f981856117c4565b6020815260006113f560208301846117ff565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b600067ffffffffffffffff821115611b3057611b30611c86565b5060051b60200190565b60008219821115611b4d57611b4d611c44565b500190565b600082611b6157611b61611c5a565b500490565b600082821015611b7857611b78611c44565b500390565b60005b83811015611b98578181015183820152602001611b80565b83811115611ba7576000848401525b50505050565b600181811c90821680611bc157607f821691505b60208210811415611be257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611c0e57611c0e611c86565b6040525050565b6000600019821415611c2957611c29611c44565b5060010190565b600082611c3f57611c3f611c5a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611cb55760046000803e5060005160e01c5b90565b600060443d1015611cc65790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611cf657505050505090565b8285019150815181811115611d0e5750505050505090565b843d8701016020828501011115611d285750505050505090565b611d3760208286010187611be8565b509095945050505050565b6001600160e01b0319811681146106b457600080fdfea2646970667358221220a220939470bf9aec9553a948d09ea52ea1391a4ead9dc269321e3df6a407c8e164736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654331567a56543561453376466b5233366657713532616b3379726d3652674b6e6a4c6237485156754e6b742f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101155760003560e01c8063729ad39e116100a2578063a22cb46511610071578063a22cb46514610236578063d52c57e014610249578063e985e9c51461025c578063f242432a14610298578063f2fde38b146102ab57600080fd5b8063729ad39e146101ed5780637e86cd51146102005780638da5cb5b146102085780639e066b961461022357600080fd5b80632eb2c2d6116100e95780632eb2c2d61461018a57806339f7e37f1461019f5780634759627c146101b25780634e1273f4146101c5578063715018a6146101e557600080fd5b8062fdd58e1461011a57806301ffc9a71461014057806302b8d20d146101635780630e89341c1461016a575b600080fd5b61012d610128366004611595565b6102be565b6040519081526020015b60405180910390f35b61015361014e366004611705565b610354565b6040519015158152602001610137565b600061012d565b61017d610178366004611788565b6103a6565b60405161013791906119dd565b61019d61019836600461144a565b610414565b005b61019d6101ad36600461173f565b610460565b61019d6101c03660046113fc565b61047f565b6101d86101d3366004611634565b6104a9565b60405161013791906119a5565b61019d6105d3565b61019d6101fb3660046115bf565b6105e7565b61012d600081565b6003546040516001600160a01b039091168152602001610137565b61019d6102313660046113fc565b610654565b61019d610244366004611559565b6106b7565b61019d6102573660046117a1565b6106c2565b61015361026a366004611417565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61019d6102a63660046114f4565b6106e6565b61019d6102b93660046113fc565b61072b565b60006001600160a01b03831661032e5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061038557506001600160e01b031982166303a24d0760e21b145b806103a057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606081156103e25760405162461bcd60e51b815260206004820152600960248201526849642030206f6e6c7960b81b6044820152606401610325565b60056103ed836107a1565b6040516020016103fe929190611847565b6040516020818303038152906040529050919050565b6001600160a01b0385163314806104305750610430853361026a565b61044c5760405162461bcd60e51b8152600401610325906119f0565b61045985858585856108a7565b5050505050565b610468610a84565b805161047b90600590602084019061124b565b5050565b610487610a84565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6060815183511461050e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610325565b6000835167ffffffffffffffff81111561052a5761052a611c86565b604051908082528060200260200182016040528015610553578160200160208202803683370190505b50905060005b84518110156105cb5761059e85828151811061057757610577611c70565b602002602001015185838151811061059157610591611c70565b60200260200101516102be565b8282815181106105b0576105b0611c70565b60209081029190910101526105c481611c15565b9050610559565b509392505050565b6105db610a84565b6105e56000610ade565b565b6105ef610a84565b60005b8181101561064f5761063d83838381811061060f5761060f611c70565b905060200201602081019061062491906113fc565b6000600160405180602001604052806000815250610b30565b8061064781611c15565b9150506105f2565b505050565b6004546001600160a01b031633146106a75760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206275726e6572206164647265737360501b6044820152606401610325565b6106b48160006001610c44565b50565b61047b338383610dc0565b6106ca610a84565b61047b8160008460405180602001604052806000815250610b30565b6001600160a01b0385163314806107025750610702853361026a565b61071e5760405162461bcd60e51b8152600401610325906119f0565b6104598585858585610ea1565b610733610a84565b6001600160a01b0381166107985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610325565b6106b481610ade565b6060816107c55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156107ef57806107d981611c15565b91506107e89050600a83611b52565b91506107c9565b60008167ffffffffffffffff81111561080a5761080a611c86565b6040519080825280601f01601f191660200182016040528015610834576020820181803683370190505b5090505b841561089f57610849600183611b66565b9150610856600a86611c30565b610861906030611b3a565b60f81b81838151811061087657610876611c70565b60200101906001600160f81b031916908160001a905350610898600a86611b52565b9450610838565b949350505050565b81518351146109095760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610325565b6001600160a01b03841661092f5760405162461bcd60e51b815260040161032590611a87565b3360005b8451811015610a1657600085828151811061095057610950611c70565b60200260200101519050600085838151811061096e5761096e611c70565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156109be5760405162461bcd60e51b815260040161032590611acc565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906109fb908490611b3a565b9250508190555050505080610a0f90611c15565b9050610933565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610a669291906119b8565b60405180910390a4610a7c818787878787610fcb565b505050505050565b6003546001600160a01b031633146105e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610325565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610b905760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610325565b336000610b9c85611136565b90506000610ba985611136565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290610bdb908490611b3a565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610c3b83600089898989611181565b50505050505050565b6001600160a01b038316610ca65760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610325565b336000610cb284611136565b90506000610cbf84611136565b60408051602080820183526000918290528882528181528282206001600160a01b038b1683529052205490915084811015610d485760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610325565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052610c3b565b816001600160a01b0316836001600160a01b03161415610e345760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610325565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610ec75760405162461bcd60e51b815260040161032590611a87565b336000610ed385611136565b90506000610ee085611136565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015610f235760405162461bcd60e51b815260040161032590611acc565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290610f60908490611b3a565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610fc0848a8a8a8a8a611181565b505050505050505050565b6001600160a01b0384163b15610a7c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061100f9089908990889088908890600401611902565b602060405180830381600087803b15801561102957600080fd5b505af1925050508015611059575060408051601f3d908101601f1916820190925261105691810190611722565b60015b61110657611065611c9c565b806308c379a0141561109f575061107a611cb8565b8061108557506110a1565b8060405162461bcd60e51b815260040161032591906119dd565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610325565b6001600160e01b0319811663bc197c8160e01b14610c3b5760405162461bcd60e51b815260040161032590611a3f565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061117057611170611c70565b602090810291909101015292915050565b6001600160a01b0384163b15610a7c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906111c59089908990889088908890600401611960565b602060405180830381600087803b1580156111df57600080fd5b505af192505050801561120f575060408051601f3d908101601f1916820190925261120c91810190611722565b60015b61121b57611065611c9c565b6001600160e01b0319811663f23a6e6160e01b14610c3b5760405162461bcd60e51b815260040161032590611a3f565b82805461125790611bad565b90600052602060002090601f01602090048101928261127957600085556112bf565b82601f1061129257805160ff19168380011785556112bf565b828001600101855582156112bf579182015b828111156112bf5782518255916020019190600101906112a4565b506112cb9291506112cf565b5090565b5b808211156112cb57600081556001016112d0565b600067ffffffffffffffff8311156112fe576112fe611c86565b604051611315601f8501601f191660200182611be8565b80915083815284848401111561132a57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461135957600080fd5b919050565b600082601f83011261136f57600080fd5b8135602061137c82611b16565b6040516113898282611be8565b8381528281019150858301600585901b870184018810156113a957600080fd5b60005b858110156113c8578135845292840192908401906001016113ac565b5090979650505050505050565b600082601f8301126113e657600080fd5b6113f5838335602085016112e4565b9392505050565b60006020828403121561140e57600080fd5b6113f582611342565b6000806040838503121561142a57600080fd5b61143383611342565b915061144160208401611342565b90509250929050565b600080600080600060a0868803121561146257600080fd5b61146b86611342565b945061147960208701611342565b9350604086013567ffffffffffffffff8082111561149657600080fd5b6114a289838a0161135e565b945060608801359150808211156114b857600080fd5b6114c489838a0161135e565b935060808801359150808211156114da57600080fd5b506114e7888289016113d5565b9150509295509295909350565b600080600080600060a0868803121561150c57600080fd5b61151586611342565b945061152360208701611342565b93506040860135925060608601359150608086013567ffffffffffffffff81111561154d57600080fd5b6114e7888289016113d5565b6000806040838503121561156c57600080fd5b61157583611342565b91506020830135801515811461158a57600080fd5b809150509250929050565b600080604083850312156115a857600080fd5b6115b183611342565b946020939093013593505050565b600080602083850312156115d257600080fd5b823567ffffffffffffffff808211156115ea57600080fd5b818501915085601f8301126115fe57600080fd5b81358181111561160d57600080fd5b8660208260051b850101111561162257600080fd5b60209290920196919550909350505050565b6000806040838503121561164757600080fd5b823567ffffffffffffffff8082111561165f57600080fd5b818501915085601f83011261167357600080fd5b8135602061168082611b16565b60405161168d8282611be8565b8381528281019150858301600585901b870184018b10156116ad57600080fd5b600096505b848710156116d7576116c381611342565b8352600196909601959183019183016116b2565b50965050860135925050808211156116ee57600080fd5b506116fb8582860161135e565b9150509250929050565b60006020828403121561171757600080fd5b81356113f581611d42565b60006020828403121561173457600080fd5b81516113f581611d42565b60006020828403121561175157600080fd5b813567ffffffffffffffff81111561176857600080fd5b8201601f8101841361177957600080fd5b61089f848235602084016112e4565b60006020828403121561179a57600080fd5b5035919050565b600080604083850312156117b457600080fd5b8235915061144160208401611342565b600081518084526020808501945080840160005b838110156117f4578151875295820195908201906001016117d8565b509495945050505050565b60008151808452611817816020860160208601611b7d565b601f01601f19169290920160200192915050565b6000815161183d818560208601611b7d565b9290920192915050565b600080845481600182811c91508083168061186357607f831692505b602080841082141561188357634e487b7160e01b86526022600452602486fd5b81801561189757600181146118a8576118d5565b60ff198616895284890196506118d5565b60008b81526020902060005b868110156118cd5781548b8201529085019083016118b4565b505084890196505b5050505050506118f96118e8828661182b565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061192e908301866117c4565b828103606084015261194081866117c4565b9050828103608084015261195481856117ff565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061199a908301846117ff565b979650505050505050565b6020815260006113f560208301846117c4565b6040815260006119cb60408301856117c4565b82810360208401526118f981856117c4565b6020815260006113f560208301846117ff565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b600067ffffffffffffffff821115611b3057611b30611c86565b5060051b60200190565b60008219821115611b4d57611b4d611c44565b500190565b600082611b6157611b61611c5a565b500490565b600082821015611b7857611b78611c44565b500390565b60005b83811015611b98578181015183820152602001611b80565b83811115611ba7576000848401525b50505050565b600181811c90821680611bc157607f821691505b60208210811415611be257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611c0e57611c0e611c86565b6040525050565b6000600019821415611c2957611c29611c44565b5060010190565b600082611c3f57611c3f611c5a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611cb55760046000803e5060005160e01c5b90565b600060443d1015611cc65790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611cf657505050505090565b8285019150815181811115611d0e5750505050505090565b843d8701016020828501011115611d285750505050505090565b611d3760208286010187611be8565b509095945050505050565b6001600160e01b0319811681146106b457600080fdfea2646970667358221220a220939470bf9aec9553a948d09ea52ea1391a4ead9dc269321e3df6a407c8e164736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654331567a56543561453376466b5233366657713532616b3379726d3652674b6e6a4c6237485156754e6b742f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmeC1VzVT5aE3vFkR36fWq52ak3yrm6RgKnjLb7HQVuNkt/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d654331567a56543561453376466b523336665771353261
Arg [3] : 6b3379726d3652674b6e6a4c6237485156754e6b742f00000000000000000000


Deployed Bytecode Sourcemap

41742:1336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26154:230;;;;;;:::i;:::-;;:::i;:::-;;;19091:25:1;;;19079:2;19064:18;26154:230:0;;;;;;;;25177:310;;;;;;:::i;:::-;;:::i;:::-;;;12324:14:1;;12317:22;12299:41;;12287:2;12272:18;25177:310:0;12159:187:1;42146:83:0;42189:7;42146:83;;42859:216;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28098:439::-;;;;;;:::i;:::-;;:::i;:::-;;42748:103;;;;;;:::i;:::-;;:::i;42028:110::-;;;;;;:::i;:::-;;:::i;26550:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5306:103::-;;;:::i;42373:179::-;;;;;;:::i;:::-;;:::i;41824:33::-;;41856:1;41824:33;;4658:87;4731:6;;4658:87;;-1:-1:-1;;;;;4731:6:0;;;9965:51:1;;9953:2;9938:18;4658:87:0;9819:203:1;42560:180:0;;;;;;:::i;:::-;;:::i;27147:155::-;;;;;;:::i;:::-;;:::i;42237:128::-;;;;;;:::i;:::-;;:::i;27374:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27497:27:0;;;27473:4;27497:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;27374:168;27614:407;;;;;;:::i;:::-;;:::i;5564:201::-;;;;;;:::i;:::-;;:::i;26154:230::-;26240:7;-1:-1:-1;;;;;26268:21:0;;26260:76;;;;-1:-1:-1;;;26260:76:0;;15172:2:1;26260:76:0;;;15154:21:1;15211:2;15191:18;;;15184:30;15250:34;15230:18;;;15223:62;-1:-1:-1;;;15301:18:1;;;15294:40;15351:19;;26260:76:0;;;;;;;;;-1:-1:-1;26354:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;26354:22:0;;;;;;;;;;;;26154:230::o;25177:310::-;25279:4;-1:-1:-1;;;;;;25316:41:0;;-1:-1:-1;;;25316:41:0;;:110;;-1:-1:-1;;;;;;;25374:52:0;;-1:-1:-1;;;25374:52:0;25316:110;:163;;;-1:-1:-1;;;;;;;;;;16567:40:0;;;25443:36;25296:183;25177:310;-1:-1:-1;;25177:310:0:o;42859:216::-;42918:13;42952:15;;42944:37;;;;-1:-1:-1;;;42944:37:0;;14023:2:1;42944:37:0;;;14005:21:1;14062:1;14042:18;;;14035:29;-1:-1:-1;;;14080:18:1;;;14073:39;14129:18;;42944:37:0;13821:332:1;42944:37:0;43023:7;43032:24;43049:6;43032:16;:24::i;:::-;43006:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42992:75;;42859:216;;;:::o;28098:439::-;-1:-1:-1;;;;;28331:20:0;;3289:10;28331:20;;:60;;-1:-1:-1;28355:36:0;28372:4;3289:10;27374:168;:::i;28355:36::-;28309:157;;;;-1:-1:-1;;;28309:157:0;;;;;;;:::i;:::-;28477:52;28500:4;28506:2;28510:3;28515:7;28524:4;28477:22;:52::i;:::-;28098:439;;;;;:::o;42748:103::-;4544:13;:11;:13::i;:::-;42825:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42748:103:::0;:::o;42028:110::-;4544:13;:11;:13::i;:::-;42104:11:::1;:26:::0;;-1:-1:-1;;;;;;42104:26:0::1;-1:-1:-1::0;;;;;42104:26:0;;;::::1;::::0;;;::::1;::::0;;42028:110::o;26550:524::-;26706:16;26767:3;:10;26748:8;:15;:29;26740:83;;;;-1:-1:-1;;;26740:83:0;;17575:2:1;26740:83:0;;;17557:21:1;17614:2;17594:18;;;17587:30;17653:34;17633:18;;;17626:62;-1:-1:-1;;;17704:18:1;;;17697:39;17753:19;;26740:83:0;17373:405:1;26740:83:0;26836:30;26883:8;:15;26869:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26869:30:0;;26836:63;;26917:9;26912:122;26936:8;:15;26932:1;:19;26912:122;;;26992:30;27002:8;27011:1;27002:11;;;;;;;;:::i;:::-;;;;;;;27015:3;27019:1;27015:6;;;;;;;;:::i;:::-;;;;;;;26992:9;:30::i;:::-;26973:13;26987:1;26973:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;26953:3;;;:::i;:::-;;;26912:122;;;-1:-1:-1;27053:13:0;26550:524;-1:-1:-1;;;26550:524:0:o;5306:103::-;4544:13;:11;:13::i;:::-;5371:30:::1;5398:1;5371:18;:30::i;:::-;5306:103::o:0;42373:179::-;4544:13;:11;:13::i;:::-;42451:9:::1;42446:99;42466:16:::0;;::::1;42446:99;;;42504:29;42510:5;;42516:1;42510:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;41856:1;42527;42504:29;;;;;;;;;;;::::0;:5:::1;:29::i;:::-;42484:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42446:99;;;;42373:179:::0;;:::o;42560:180::-;42650:11;;-1:-1:-1;;;;;42650:11:0;42636:10;:25;42628:60;;;;-1:-1:-1;;;42628:60:0;;17985:2:1;42628:60:0;;;17967:21:1;18024:2;18004:18;;;17997:30;-1:-1:-1;;;18043:18:1;;;18036:52;18105:18;;42628:60:0;17783:346:1;42628:60:0;42699:33;42705:16;41856:1;42730;42699:5;:33::i;:::-;42560:180;:::o;27147:155::-;27242:52;3289:10;27275:8;27285;27242:18;:52::i;42237:128::-;4544:13;:11;:13::i;:::-;42322:35:::1;42328:8;41856:1;42345:7;42322:35;;;;;;;;;;;::::0;:5:::1;:35::i;27614:407::-:0;-1:-1:-1;;;;;27822:20:0;;3289:10;27822:20;;:60;;-1:-1:-1;27846:36:0;27863:4;3289:10;27374:168;:::i;27846:36::-;27800:157;;;;-1:-1:-1;;;27800:157:0;;;;;;;:::i;:::-;27968:45;27986:4;27992:2;27996;28000:6;28008:4;27968:17;:45::i;5564:201::-;4544:13;:11;:13::i;:::-;-1:-1:-1;;;;;5653:22:0;::::1;5645:73;;;::::0;-1:-1:-1;;;5645:73:0;;14360:2:1;5645:73:0::1;::::0;::::1;14342:21:1::0;14399:2;14379:18;;;14372:30;14438:34;14418:18;;;14411:62;-1:-1:-1;;;14489:18:1;;;14482:36;14535:19;;5645:73:0::1;14158:402:1::0;5645:73:0::1;5729:28;5748:8;5729:18;:28::i;463:723::-:0;519:13;740:10;736:53;;-1:-1:-1;;767:10:0;;;;;;;;;;;;-1:-1:-1;;;767:10:0;;;;;463:723::o;736:53::-;814:5;799:12;855:78;862:9;;855:78;;888:8;;;;:::i;:::-;;-1:-1:-1;911:10:0;;-1:-1:-1;919:2:0;911:10;;:::i;:::-;;;855:78;;;943:19;975:6;965:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;965:17:0;;943:39;;993:154;1000:10;;993:154;;1027:11;1037:1;1027:11;;:::i;:::-;;-1:-1:-1;1096:10:0;1104:2;1096:5;:10;:::i;:::-;1083:24;;:2;:24;:::i;:::-;1070:39;;1053:6;1060;1053:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1053:56:0;;;;;;;;-1:-1:-1;1124:11:0;1133:2;1124:11;;:::i;:::-;;;993:154;;;1171:6;463:723;-1:-1:-1;;;;463:723:0:o;30333:1146::-;30560:7;:14;30546:3;:10;:28;30538:81;;;;-1:-1:-1;;;30538:81:0;;18336:2:1;30538:81:0;;;18318:21:1;18375:2;18355:18;;;18348:30;18414:34;18394:18;;;18387:62;-1:-1:-1;;;18465:18:1;;;18458:38;18513:19;;30538:81:0;18134:404:1;30538:81:0;-1:-1:-1;;;;;30638:16:0;;30630:66;;;;-1:-1:-1;;;30630:66:0;;;;;;;:::i;:::-;3289:10;30709:16;30826:421;30850:3;:10;30846:1;:14;30826:421;;;30882:10;30895:3;30899:1;30895:6;;;;;;;;:::i;:::-;;;;;;;30882:19;;30916:14;30933:7;30941:1;30933:10;;;;;;;;:::i;:::-;;;;;;;;;;;;30960:19;30982:13;;;;;;;;;;-1:-1:-1;;;;;30982:19:0;;;;;;;;;;;;30933:10;;-1:-1:-1;31024:21:0;;;;31016:76;;;;-1:-1:-1;;;31016:76:0;;;;;;;:::i;:::-;31136:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31136:19:0;;;;;;;;;;31158:20;;;31136:42;;31208:17;;;;;;;:27;;31158:20;;31136:9;31208:27;;31158:20;;31208:27;:::i;:::-;;;;;;;;30867:380;;;30862:3;;;;:::i;:::-;;;30826:421;;;;31294:2;-1:-1:-1;;;;;31264:47:0;31288:4;-1:-1:-1;;;;;31264:47:0;31278:8;-1:-1:-1;;;;;31264:47:0;;31298:3;31303:7;31264:47;;;;;;;:::i;:::-;;;;;;;;31396:75;31432:8;31442:4;31448:2;31452:3;31457:7;31466:4;31396:35;:75::i;:::-;30527:952;30333:1146;;;;;:::o;4823:132::-;4731:6;;-1:-1:-1;;;;;4731:6:0;3289:10;4887:23;4879:68;;;;-1:-1:-1;;;4879:68:0;;16804:2:1;4879:68:0;;;16786:21:1;;;16823:18;;;16816:30;16882:34;16862:18;;;16855:62;16934:18;;4879:68:0;16602:356:1;5925:191:0;6018:6;;;-1:-1:-1;;;;;6035:17:0;;;-1:-1:-1;;;;;;6035:17:0;;;;;;;6068:40;;6018:6;;;6035:17;6018:6;;6068:40;;5999:16;;6068:40;5988:128;5925:191;:::o;32797:729::-;-1:-1:-1;;;;;32950:16:0;;32942:62;;;;-1:-1:-1;;;32942:62:0;;18745:2:1;32942:62:0;;;18727:21:1;18784:2;18764:18;;;18757:30;18823:34;18803:18;;;18796:62;-1:-1:-1;;;18874:18:1;;;18867:31;18915:19;;32942:62:0;18543:397:1;32942:62:0;3289:10;33017:16;33082:21;33100:2;33082:17;:21::i;:::-;33059:44;;33114:24;33141:25;33159:6;33141:17;:25::i;:::-;33114:52;;33258:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33258:17:0;;;;;;;;;:27;;33279:6;;33258:9;:27;;33279:6;;33258:27;:::i;:::-;;;;-1:-1:-1;;33301:52:0;;;19301:25:1;;;19357:2;19342:18;;19335:34;;;-1:-1:-1;;;;;33301:52:0;;;;33334:1;;33301:52;;;;;;19274:18:1;33301:52:0;;;;;;;33444:74;33475:8;33493:1;33497:2;33501;33505:6;33513:4;33444:30;:74::i;:::-;32931:595;;;32797:729;;;;:::o;35040:808::-;-1:-1:-1;;;;;35167:18:0;;35159:66;;;;-1:-1:-1;;;35159:66:0;;15989:2:1;35159:66:0;;;15971:21:1;16028:2;16008:18;;;16001:30;16067:34;16047:18;;;16040:62;-1:-1:-1;;;16118:18:1;;;16111:33;16161:19;;35159:66:0;15787:399:1;35159:66:0;3289:10;35238:16;35303:21;35321:2;35303:17;:21::i;:::-;35280:44;;35335:24;35362:25;35380:6;35362:17;:25::i;:::-;35400:66;;;;;;;;;-1:-1:-1;35400:66:0;;;;35501:13;;;;;;;;;-1:-1:-1;;;;;35501:19:0;;;;;;;;35335:52;;-1:-1:-1;35539:21:0;;;;35531:70;;;;-1:-1:-1;;;35531:70:0;;14767:2:1;35531:70:0;;;14749:21:1;14806:2;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;-1:-1:-1;;;14896:18:1;;;14889:34;14940:19;;35531:70:0;14565:400:1;35531:70:0;35637:9;:13;;;;;;;;;;;-1:-1:-1;;;;;35637:19:0;;;;;;;;;;;;35659:20;;;35637:42;;35708:54;;19301:25:1;;;19342:18;;;19335:34;;;35637:19:0;;35708:54;;;;;;19274:18:1;35708:54:0;;;;;;;35775:65;;;;;;;;;35819:1;35775:65;;;30333:1146;37210:331;37365:8;-1:-1:-1;;;;;37356:17:0;:5;-1:-1:-1;;;;;37356:17:0;;;37348:71;;;;-1:-1:-1;;;37348:71:0;;17165:2:1;37348:71:0;;;17147:21:1;17204:2;17184:18;;;17177:30;17243:34;17223:18;;;17216:62;-1:-1:-1;;;17294:18:1;;;17287:39;17343:19;;37348:71:0;16963:405:1;37348:71:0;-1:-1:-1;;;;;37430:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37430:46:0;;;;;;;;;;37492:41;;12299::1;;;37492::0;;12272:18:1;37492:41:0;;;;;;;37210:331;;;:::o;29001:974::-;-1:-1:-1;;;;;29189:16:0;;29181:66;;;;-1:-1:-1;;;29181:66:0;;;;;;;:::i;:::-;3289:10;29260:16;29325:21;29343:2;29325:17;:21::i;:::-;29302:44;;29357:24;29384:25;29402:6;29384:17;:25::i;:::-;29357:52;;29495:19;29517:13;;;;;;;;;;;-1:-1:-1;;;;;29517:19:0;;;;;;;;;;29555:21;;;;29547:76;;;;-1:-1:-1;;;29547:76:0;;;;;;;:::i;:::-;29659:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29659:19:0;;;;;;;;;;29681:20;;;29659:42;;29723:17;;;;;;;:27;;29681:20;;29659:9;29723:27;;29681:20;;29723:27;:::i;:::-;;;;-1:-1:-1;;29768:46:0;;;19301:25:1;;;19357:2;19342:18;;19335:34;;;-1:-1:-1;;;;;29768:46:0;;;;;;;;;;;;;;19274:18:1;29768:46:0;;;;;;;29899:68;29930:8;29940:4;29946:2;29950;29954:6;29962:4;29899:30;:68::i;:::-;29170:805;;;;29001:974;;;;;:::o;40655:813::-;-1:-1:-1;;;;;40895:13:0;;7651:19;:23;40891:570;;40931:79;;-1:-1:-1;;;40931:79:0;;-1:-1:-1;;;;;40931:43:0;;;;;:79;;40975:8;;40985:4;;40991:3;;40996:7;;41005:4;;40931:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40931:79:0;;;;;;;;-1:-1:-1;;40931:79:0;;;;;;;;;;;;:::i;:::-;;;40927:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;41323:6;41316:14;;-1:-1:-1;;;41316:14:0;;;;;;;;:::i;40927:523::-;;;41372:62;;-1:-1:-1;;;41372:62:0;;12777:2:1;41372:62:0;;;12759:21:1;12816:2;12796:18;;;12789:30;12855:34;12835:18;;;12828:62;-1:-1:-1;;;12906:18:1;;;12899:50;12966:19;;41372:62:0;12575:416:1;40927:523:0;-1:-1:-1;;;;;;41092:60:0;;-1:-1:-1;;;41092:60:0;41088:159;;41177:50;;-1:-1:-1;;;41177:50:0;;;;;;;:::i;41476:198::-;41596:16;;;41610:1;41596:16;;;;;;;;;41542;;41571:22;;41596:16;;;;;;;;;;;;-1:-1:-1;41596:16:0;41571:41;;41634:7;41623:5;41629:1;41623:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;41661:5;41476:198;-1:-1:-1;;41476:198:0:o;39903:744::-;-1:-1:-1;;;;;40118:13:0;;7651:19;:23;40114:526;;40154:72;;-1:-1:-1;;;40154:72:0;;-1:-1:-1;;;;;40154:38:0;;;;;:72;;40193:8;;40203:4;;40209:2;;40213:6;;40221:4;;40154:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40154:72:0;;;;;;;;-1:-1:-1;;40154:72:0;;;;;;;;;;;;:::i;:::-;;;40150:479;;;;:::i;:::-;-1:-1:-1;;;;;;40276:55:0;;-1:-1:-1;;;40276:55:0;40272:154;;40356:50;;-1:-1:-1;;;40356:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;:::-;1531:88;1405:220;-1:-1:-1;;;1405:220:1:o;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;2525:18;2566:2;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:606::-;3138:6;3146;3154;3162;3170;3223:3;3211:9;3202:7;3198:23;3194:33;3191:53;;;3240:1;3237;3230:12;3191:53;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3447:2;3436:9;3432:18;3419:32;3409:42;;3502:3;3491:9;3487:19;3474:33;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3585:49;3626:7;3617:6;3606:9;3602:22;3585:49;:::i;3645:347::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;;3889:2;3878:9;3874:18;3861:32;3936:5;3929:13;3922:21;3915:5;3912:32;3902:60;;3958:1;3955;3948:12;3902:60;3981:5;3971:15;;;3645:347;;;;;:::o;3997:254::-;4065:6;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:52;;;4142:1;4139;4132:12;4094:52;4165:29;4184:9;4165:29;:::i;:::-;4155:39;4241:2;4226:18;;;;4213:32;;-1:-1:-1;;;3997:254:1:o;4256:615::-;4342:6;4350;4403:2;4391:9;4382:7;4378:23;4374:32;4371:52;;;4419:1;4416;4409:12;4371:52;4459:9;4446:23;4488:18;4529:2;4521:6;4518:14;4515:34;;;4545:1;4542;4535:12;4515:34;4583:6;4572:9;4568:22;4558:32;;4628:7;4621:4;4617:2;4613:13;4609:27;4599:55;;4650:1;4647;4640:12;4599:55;4690:2;4677:16;4716:2;4708:6;4705:14;4702:34;;;4732:1;4729;4722:12;4702:34;4785:7;4780:2;4770:6;4767:1;4763:14;4759:2;4755:23;4751:32;4748:45;4745:65;;;4806:1;4803;4796:12;4745:65;4837:2;4829:11;;;;;4859:6;;-1:-1:-1;4256:615:1;;-1:-1:-1;;;;4256:615:1:o;4876:1219::-;4994:6;5002;5055:2;5043:9;5034:7;5030:23;5026:32;5023:52;;;5071:1;5068;5061:12;5023:52;5111:9;5098:23;5140:18;5181:2;5173:6;5170:14;5167:34;;;5197:1;5194;5187:12;5167:34;5235:6;5224:9;5220:22;5210:32;;5280:7;5273:4;5269:2;5265:13;5261:27;5251:55;;5302:1;5299;5292:12;5251:55;5338:2;5325:16;5360:4;5383:43;5423:2;5383:43;:::i;:::-;5455:2;5449:9;5467:31;5495:2;5487:6;5467:31;:::i;:::-;5533:18;;;5567:15;;;;-1:-1:-1;5602:11:1;;;5644:1;5640:10;;;5632:19;;5628:28;;5625:41;-1:-1:-1;5622:61:1;;;5679:1;5676;5669:12;5622:61;5701:1;5692:10;;5711:169;5725:2;5722:1;5719:9;5711:169;;;5782:23;5801:3;5782:23;:::i;:::-;5770:36;;5743:1;5736:9;;;;;5826:12;;;;5858;;5711:169;;;-1:-1:-1;5899:6:1;-1:-1:-1;;5943:18:1;;5930:32;;-1:-1:-1;;5974:16:1;;;5971:36;;;6003:1;6000;5993:12;5971:36;;6026:63;6081:7;6070:8;6059:9;6055:24;6026:63;:::i;:::-;6016:73;;;4876:1219;;;;;:::o;6100:245::-;6158:6;6211:2;6199:9;6190:7;6186:23;6182:32;6179:52;;;6227:1;6224;6217:12;6179:52;6266:9;6253:23;6285:30;6309:5;6285:30;:::i;6350:249::-;6419:6;6472:2;6460:9;6451:7;6447:23;6443:32;6440:52;;;6488:1;6485;6478:12;6440:52;6520:9;6514:16;6539:30;6563:5;6539:30;:::i;6604:450::-;6673:6;6726:2;6714:9;6705:7;6701:23;6697:32;6694:52;;;6742:1;6739;6732:12;6694:52;6782:9;6769:23;6815:18;6807:6;6804:30;6801:50;;;6847:1;6844;6837:12;6801:50;6870:22;;6923:4;6915:13;;6911:27;-1:-1:-1;6901:55:1;;6952:1;6949;6942:12;6901:55;6975:73;7040:7;7035:2;7022:16;7017:2;7013;7009:11;6975:73;:::i;7059:180::-;7118:6;7171:2;7159:9;7150:7;7146:23;7142:32;7139:52;;;7187:1;7184;7177:12;7139:52;-1:-1:-1;7210:23:1;;7059:180;-1:-1:-1;7059:180:1:o;7244:254::-;7312:6;7320;7373:2;7361:9;7352:7;7348:23;7344:32;7341:52;;;7389:1;7386;7379:12;7341:52;7425:9;7412:23;7402:33;;7454:38;7488:2;7477:9;7473:18;7454:38;:::i;7503:435::-;7556:3;7594:5;7588:12;7621:6;7616:3;7609:19;7647:4;7676:2;7671:3;7667:12;7660:19;;7713:2;7706:5;7702:14;7734:1;7744:169;7758:6;7755:1;7752:13;7744:169;;;7819:13;;7807:26;;7853:12;;;;7888:15;;;;7780:1;7773:9;7744:169;;;-1:-1:-1;7929:3:1;;7503:435;-1:-1:-1;;;;;7503:435:1:o;7943:257::-;7984:3;8022:5;8016:12;8049:6;8044:3;8037:19;8065:63;8121:6;8114:4;8109:3;8105:14;8098:4;8091:5;8087:16;8065:63;:::i;:::-;8182:2;8161:15;-1:-1:-1;;8157:29:1;8148:39;;;;8189:4;8144:50;;7943:257;-1:-1:-1;;7943:257:1:o;8205:185::-;8247:3;8285:5;8279:12;8300:52;8345:6;8340:3;8333:4;8326:5;8322:16;8300:52;:::i;:::-;8368:16;;;;;8205:185;-1:-1:-1;;8205:185:1:o;8513:1301::-;8790:3;8819:1;8852:6;8846:13;8882:3;8904:1;8932:9;8928:2;8924:18;8914:28;;8992:2;8981:9;8977:18;9014;9004:61;;9058:4;9050:6;9046:17;9036:27;;9004:61;9084:2;9132;9124:6;9121:14;9101:18;9098:38;9095:165;;;-1:-1:-1;;;9159:33:1;;9215:4;9212:1;9205:15;9245:4;9166:3;9233:17;9095:165;9276:18;9303:104;;;;9421:1;9416:320;;;;9269:467;;9303:104;-1:-1:-1;;9336:24:1;;9324:37;;9381:16;;;;-1:-1:-1;9303:104:1;;9416:320;19641:1;19634:14;;;19678:4;19665:18;;9511:1;9525:165;9539:6;9536:1;9533:13;9525:165;;;9617:14;;9604:11;;;9597:35;9660:16;;;;9554:10;;9525:165;;;9529:3;;9719:6;9714:3;9710:16;9703:23;;9269:467;;;;;;;9752:56;9777:30;9803:3;9795:6;9777:30;:::i;:::-;-1:-1:-1;;;8455:20:1;;8500:1;8491:11;;8395:113;9752:56;9745:63;8513:1301;-1:-1:-1;;;;;8513:1301:1:o;10027:826::-;-1:-1:-1;;;;;10424:15:1;;;10406:34;;10476:15;;10471:2;10456:18;;10449:43;10386:3;10523:2;10508:18;;10501:31;;;10349:4;;10555:57;;10592:19;;10584:6;10555:57;:::i;:::-;10660:9;10652:6;10648:22;10643:2;10632:9;10628:18;10621:50;10694:44;10731:6;10723;10694:44;:::i;:::-;10680:58;;10787:9;10779:6;10775:22;10769:3;10758:9;10754:19;10747:51;10815:32;10840:6;10832;10815:32;:::i;:::-;10807:40;10027:826;-1:-1:-1;;;;;;;;10027:826:1:o;10858:560::-;-1:-1:-1;;;;;11155:15:1;;;11137:34;;11207:15;;11202:2;11187:18;;11180:43;11254:2;11239:18;;11232:34;;;11297:2;11282:18;;11275:34;;;11117:3;11340;11325:19;;11318:32;;;11080:4;;11367:45;;11392:19;;11384:6;11367:45;:::i;:::-;11359:53;10858:560;-1:-1:-1;;;;;;;10858:560:1:o;11423:261::-;11602:2;11591:9;11584:21;11565:4;11622:56;11674:2;11663:9;11659:18;11651:6;11622:56;:::i;11689:465::-;11946:2;11935:9;11928:21;11909:4;11972:56;12024:2;12013:9;12009:18;12001:6;11972:56;:::i;:::-;12076:9;12068:6;12064:22;12059:2;12048:9;12044:18;12037:50;12104:44;12141:6;12133;12104:44;:::i;12351:219::-;12500:2;12489:9;12482:21;12463:4;12520:44;12560:2;12549:9;12545:18;12537:6;12520:44;:::i;12996:411::-;13198:2;13180:21;;;13237:2;13217:18;;;13210:30;13276:34;13271:2;13256:18;;13249:62;-1:-1:-1;;;13342:2:1;13327:18;;13320:45;13397:3;13382:19;;12996:411::o;13412:404::-;13614:2;13596:21;;;13653:2;13633:18;;;13626:30;13692:34;13687:2;13672:18;;13665:62;-1:-1:-1;;;13758:2:1;13743:18;;13736:38;13806:3;13791:19;;13412:404::o;15381:401::-;15583:2;15565:21;;;15622:2;15602:18;;;15595:30;15661:34;15656:2;15641:18;;15634:62;-1:-1:-1;;;15727:2:1;15712:18;;15705:35;15772:3;15757:19;;15381:401::o;16191:406::-;16393:2;16375:21;;;16432:2;16412:18;;;16405:30;16471:34;16466:2;16451:18;;16444:62;-1:-1:-1;;;16537:2:1;16522:18;;16515:40;16587:3;16572:19;;16191:406::o;19380:183::-;19440:4;19473:18;19465:6;19462:30;19459:56;;;19495:18;;:::i;:::-;-1:-1:-1;19540:1:1;19536:14;19552:4;19532:25;;19380:183::o;19694:128::-;19734:3;19765:1;19761:6;19758:1;19755:13;19752:39;;;19771:18;;:::i;:::-;-1:-1:-1;19807:9:1;;19694:128::o;19827:120::-;19867:1;19893;19883:35;;19898:18;;:::i;:::-;-1:-1:-1;19932:9:1;;19827:120::o;19952:125::-;19992:4;20020:1;20017;20014:8;20011:34;;;20025:18;;:::i;:::-;-1:-1:-1;20062:9:1;;19952:125::o;20082:258::-;20154:1;20164:113;20178:6;20175:1;20172:13;20164:113;;;20254:11;;;20248:18;20235:11;;;20228:39;20200:2;20193:10;20164:113;;;20295:6;20292:1;20289:13;20286:48;;;20330:1;20321:6;20316:3;20312:16;20305:27;20286:48;;20082:258;;;:::o;20345:380::-;20424:1;20420:12;;;;20467;;;20488:61;;20542:4;20534:6;20530:17;20520:27;;20488:61;20595:2;20587:6;20584:14;20564:18;20561:38;20558:161;;;20641:10;20636:3;20632:20;20629:1;20622:31;20676:4;20673:1;20666:15;20704:4;20701:1;20694:15;20558:161;;20345:380;;;:::o;20730:249::-;20840:2;20821:13;;-1:-1:-1;;20817:27:1;20805:40;;20875:18;20860:34;;20896:22;;;20857:62;20854:88;;;20922:18;;:::i;:::-;20958:2;20951:22;-1:-1:-1;;20730:249:1:o;20984:135::-;21023:3;-1:-1:-1;;21044:17:1;;21041:43;;;21064:18;;:::i;:::-;-1:-1:-1;21111:1:1;21100:13;;20984:135::o;21124:112::-;21156:1;21182;21172:35;;21187:18;;:::i;:::-;-1:-1:-1;21221:9:1;;21124:112::o;21241:127::-;21302:10;21297:3;21293:20;21290:1;21283:31;21333:4;21330:1;21323:15;21357:4;21354:1;21347:15;21373:127;21434:10;21429:3;21425:20;21422:1;21415:31;21465:4;21462:1;21455:15;21489:4;21486:1;21479:15;21505:127;21566:10;21561:3;21557:20;21554:1;21547:31;21597:4;21594:1;21587:15;21621:4;21618:1;21611:15;21637:127;21698:10;21693:3;21689:20;21686:1;21679:31;21729:4;21726:1;21719:15;21753:4;21750:1;21743:15;21769:179;21804:3;21846:1;21828:16;21825:23;21822:120;;;21892:1;21889;21886;21871:23;-1:-1:-1;21929:1:1;21923:8;21918:3;21914:18;21822:120;21769:179;:::o;21953:671::-;21992:3;22034:4;22016:16;22013:26;22010:39;;;21953:671;:::o;22010:39::-;22076:2;22070:9;-1:-1:-1;;22141:16:1;22137:25;;22134:1;22070:9;22113:50;22192:4;22186:11;22216:16;22251:18;22322:2;22315:4;22307:6;22303:17;22300:25;22295:2;22287:6;22284:14;22281:45;22278:58;;;22329:5;;;;;21953:671;:::o;22278:58::-;22366:6;22360:4;22356:17;22345:28;;22402:3;22396:10;22429:2;22421:6;22418:14;22415:27;;;22435:5;;;;;;21953:671;:::o;22415:27::-;22519:2;22500:16;22494:4;22490:27;22486:36;22479:4;22470:6;22465:3;22461:16;22457:27;22454:69;22451:82;;;22526:5;;;;;;21953:671;:::o;22451:82::-;22542:57;22593:4;22584:6;22576;22572:19;22568:30;22562:4;22542:57;:::i;:::-;-1:-1:-1;22615:3:1;;21953:671;-1:-1:-1;;;;;21953:671:1:o;22629:131::-;-1:-1:-1;;;;;;22703:32:1;;22693:43;;22683:71;;22750:1;22747;22740:12

Swarm Source

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