ETH Price: $3,048.53 (+2.29%)
Gas: 1 Gwei

Token

RTFKT X TAKASHI MURAKAMI X GEISAI EVENT ()
 

Overview

Max Total Supply

2,858

Holders

647

Market

Volume (24H)

0.026 ETH

Min Price (24H)

$39.63 @ 0.013000 ETH

Max Price (24H)

$39.63 @ 0.013000 ETH

Other Info

0x6bfb0ffb9555ecf503e5b2278fa533769f27f32b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Minted by the RTFKT Mint Machine during the GEISAI Event 2023 celebration with Takashi Murakami. 🌸

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RTFKTxMurakamiEvent

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : RTFKTxMurakamiEvent.sol
// SPDX-License-Identifier: MIT
//
//          .@@@                                                                  
//               ,@@@@@@@&,                  #@@%                                  
//                    @@@@@@@@@@@@@@.          @@@@@@@@@                           
//                        @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@                      
//                            @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@                   
//                                @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.                 
//                                    @@@@@@@    &@@@@@@@@@@@@@@@@@                
//                                        @@@/        &@@@@@@@@@@@@@,              
//                                            @            @@@@@@@@@@@             
//                                                             /@@@@@@@#           
//                                                                  @@@@@          
//                                                                      *@&   
//         RTFKT Studios (https://twitter.com/RTFKT)
//         RTFKT x Murakami Event Contract (made by @CardilloSamuel, co-paired with @Maximonee_)

/**
    RTFKT Legal Overview [https://rtfkt.com/legaloverview]
    1. RTFKT Platform Terms of Services [Document #1, https://rtfkt.com/tos]
    2. End Use License Terms
    A. Digital Collectible Terms (RTFKT-Owned Content) [Document #2-A, https://rtfkt.com/legal-2A]
    B. Digital Collectible Terms (Third Party Content) [Document #2-B, https://rtfkt.com/legal-2B]
    C. Digital Collectible Limited Commercial Use License Terms (RTFKT-Owned Content) [Document #2-C, https://rtfkt.com/legal-2C]
    D. Digital Collectible Terms [Document #2-D, https://rtfkt.com/legal-2D]
    
    3. Policies or other documentation
    A. RTFKT Privacy Policy [Document #3-A, https://rtfkt.com/privacy]
    B. NFT Issuance and Marketing Policy [Document #3-B, https://rtfkt.com/legal-3B]
    C. Transfer Fees [Document #3C, https://rtfkt.com/legal-3C]
    C. 1. Commercialization Registration [https://rtfkt.typeform.com/to/u671kiRl]
    
    4. General notices
    A. Murakami Short Verbiage – User Experience Notice [Document #X-1, https://rtfkt.com/legal-X1]
**/

pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";

contract RTFKTxMurakamiEvent is ERC1155, ERC1155Burnable, Ownable, DefaultOperatorFilterer {
    constructor() ERC1155("") {
        authorizedAdmins[msg.sender] = true;

        supplyLimits[1] = 5;
        supplyLimits[2] = 100;
        supplyLimits[3] = 250;
        supplyLimits[4] = 2500;
    }

    modifier isAuthorizedAdmin() {
        require(msg.sender == owner() || authorizedAdmins[msg.sender], "Unauthorized");
        _;
    }

    bool tokenSupplyLocked;
    mapping (address => bool) public authorizedAdmins;
    mapping (uint256 => string) public tokenURIs;
    mapping (uint256 => uint256) public supplyLimits;
    mapping (uint256 => uint256) public mintedByTokenId;

    function mint(uint256 tokenId, uint256 amount, address recipient) public isAuthorizedAdmin {
        require(mintedByTokenId[tokenId] + amount <= supplyLimits[tokenId], "Max supply reached");
        
        mintedByTokenId[tokenId] += amount;
        _mint(recipient, tokenId, amount, "");
    }

    function uri(uint256 tokenId) public view virtual override returns (string memory) {
        return tokenURIs[tokenId];
    }

    /////////////////////////////
    // CONTRACT MANAGEMENT 
    /////////////////////////////

    function setTokenUri(uint256 tokenId, string calldata uri_) public isAuthorizedAdmin {
        tokenURIs[tokenId] = uri_;
    }

    function toggleApprovedAdmin(address admin) public onlyOwner {
        authorizedAdmins[admin] = !authorizedAdmins[admin];
    }

    function setTokenSupply(uint256 supply, uint256 tokenId) public isAuthorizedAdmin {
        require(!tokenSupplyLocked, "Token supply is locked");
        supplyLimits[tokenId] = supply;
    }

    function withdrawFunds(address to) public isAuthorizedAdmin {
        payable(to).transfer(address(this).balance);
    }

    function lockTokenSupply() public isAuthorizedAdmin {
        tokenSupplyLocked = true;
    }

    /////////////////////////////////
    // OPENSEA ROYALTIES MANAGEMENT
    /////////////////////////////////

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        uint256 amount,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, amount, data);
    }

    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override onlyAllowedOperator(from) {
        super.safeBatchTransferFrom(from, to, ids, amounts, data);
    }
}

File 2 of 15 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 3 of 15 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";
import {CANONICAL_CORI_SUBSCRIPTION} from "./lib/Constants.sol";
/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

File 4 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 5 of 15 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

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

File 6 of 15 : Constants.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

File 7 of 15 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
import {CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS} from "./lib/Constants.sol";
/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 8 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 9 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// 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 10 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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 11 of 15 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @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 12 of 15 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 13 of 15 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 14 of 15 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorizedAdmins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","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":"lockTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintedByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"tokenId","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":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri_","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supplyLimits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"admin","type":"address"}],"name":"toggleApprovedAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURIs","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb66001604051806020016040528060008152506200004a816200032960201b60201c565b506200006b6200005f6200033e60201b60201c565b6200034660201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200026057801562000126576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620000ec92919062000451565b600060405180830381600087803b1580156200010757600080fd5b505af11580156200011c573d6000803e3d6000fd5b505050506200025f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620001e0576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001a692919062000451565b600060405180830381600087803b158015620001c157600080fd5b505af1158015620001d6573d6000803e3d6000fd5b505050506200025e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200022991906200047e565b600060405180830381600087803b1580156200024457600080fd5b505af115801562000259573d6000803e3d6000fd5b505050505b5b5b50506001600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005600660006001815260200190815260200160002081905550606460066000600281526020019081526020016000208190555060fa6006600060038152602001908152602001600020819055506109c4600660006004815260200190815260200160002081905550620007fc565b80600290816200033a919062000715565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000439826200040c565b9050919050565b6200044b816200042c565b82525050565b600060408201905062000468600083018562000440565b62000477602083018462000440565b9392505050565b600060208201905062000495600083018462000440565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051d57607f821691505b602082108103620005335762000532620004d5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200059d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200055e565b620005a986836200055e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005f6620005f0620005ea84620005c1565b620005cb565b620005c1565b9050919050565b6000819050919050565b6200061283620005d5565b6200062a6200062182620005fd565b8484546200056b565b825550505050565b600090565b6200064162000632565b6200064e81848462000607565b505050565b5b8181101562000676576200066a60008262000637565b60018101905062000654565b5050565b601f821115620006c5576200068f8162000539565b6200069a846200054e565b81016020851015620006aa578190505b620006c2620006b9856200054e565b83018262000653565b50505b505050565b600082821c905092915050565b6000620006ea60001984600802620006ca565b1980831691505092915050565b6000620007058383620006d7565b9150826002028217905092915050565b62000720826200049b565b67ffffffffffffffff8111156200073c576200073b620004a6565b5b62000748825462000504565b620007558282856200067a565b600060209050601f8311600181146200078d576000841562000778578287015190505b620007848582620006f7565b865550620007f4565b601f1984166200079d8662000539565b60005b82811015620007c757848901518255600182019150602085019450602081019050620007a0565b86831015620007e75784890151620007e3601f891682620006d7565b8355505b6001600288020188555050505b505050505050565b6144ac806200080c6000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c80636c8b703f116100c3578063c10460d81161007c578063c10460d8146103c0578063e7d3fe6b146103f0578063e985e9c51461040c578063f242432a1461043c578063f2fde38b14610458578063f5298aca1461047457610157565b80636c8b703f14610300578063715018a6146103305780638da5cb5b1461033a5780638e33cdc5146103585780639354f17514610374578063a22cb465146103a457610157565b806344447f471161011557806344447f47146102425780634e1273f41461024c57806357f7789e1461027c5780635ed6b5ba1461029857806368742da6146102c85780636b20c454146102e457610157565b8062fdd58e1461015c57806301ffc9a71461018c5780630e89341c146101bc578063278d17ad146101ec5780632eb2c2d61461020857806341f4343414610224575b600080fd5b61017660048036038101906101719190612997565b610490565b60405161018391906129e6565b60405180910390f35b6101a660048036038101906101a19190612a59565b610558565b6040516101b39190612aa1565b60405180910390f35b6101d660048036038101906101d19190612abc565b61063a565b6040516101e39190612b79565b60405180910390f35b61020660048036038101906102019190612b9b565b6106df565b005b610222600480360381019061021d9190612dd8565b610814565b005b61022c610867565b6040516102399190612f06565b60405180910390f35b61024a610879565b005b61026660048036038101906102619190612fe4565b61095f565b604051610273919061311a565b60405180910390f35b61029660048036038101906102919190613197565b610a78565b005b6102b260048036038101906102ad9190612abc565b610b69565b6040516102bf91906129e6565b60405180910390f35b6102e260048036038101906102dd91906131f7565b610b81565b005b6102fe60048036038101906102f99190613224565b610c94565b005b61031a60048036038101906103159190612abc565b610d31565b6040516103279190612b79565b60405180910390f35b610338610dd1565b005b610342610de5565b60405161034f91906132be565b60405180910390f35b610372600480360381019061036d91906131f7565b610e0f565b005b61038e60048036038101906103899190612abc565b610ebe565b60405161039b91906129e6565b60405180910390f35b6103be60048036038101906103b99190613305565b610ed6565b005b6103da60048036038101906103d591906131f7565b610eef565b6040516103e79190612aa1565b60405180910390f35b61040a60048036038101906104059190613345565b610f0f565b005b61042660048036038101906104219190613398565b611096565b6040516104339190612aa1565b60405180910390f35b610456600480360381019061045191906133d8565b61112a565b005b610472600480360381019061046d91906131f7565b61117d565b005b61048e6004803603810190610489919061346f565b611200565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f790613534565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063357506106328261129d565b5b9050919050565b606060056000838152602001908152602001600020805461065a90613583565b80601f016020809104026020016040519081016040528092919081815260200182805461068690613583565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b50505050509050919050565b6106e7610de5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806107695750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f90613600565b60405180910390fd5b600360149054906101000a900460ff16156107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef9061366c565b60405180910390fd5b8160066000838152602001908152602001600020819055505050565b843373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108525761085133611307565b5b61085f8686868686611404565b505050505050565b6daaeb6d7670e522a718067333cd4e81565b610881610de5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109035750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990613600565b60405180910390fd5b6001600360146101000a81548160ff021916908315150217905550565b606081518351146109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c906136fe565b60405180910390fd5b6000835167ffffffffffffffff8111156109c2576109c1612be0565b5b6040519080825280602002602001820160405280156109f05781602001602082028036833780820191505090505b50905060005b8451811015610a6d57610a3d858281518110610a1557610a1461371e565b5b6020026020010151858381518110610a3057610a2f61371e565b5b6020026020010151610490565b828281518110610a5057610a4f61371e565b5b60200260200101818152505080610a669061377c565b90506109f6565b508091505092915050565b610a80610de5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b025750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890613600565b60405180910390fd5b8181600560008681526020019081526020016000209182610b63929190613971565b50505050565b60076020528060005260406000206000915090505481565b610b89610de5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c0b5750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613600565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c90573d6000803e3d6000fd5b5050565b610c9c6114a5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ce25750610ce183610cdc6114a5565b611096565b5b610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890613ab3565b60405180910390fd5b610d2c8383836114ad565b505050565b60056020528060005260406000206000915090508054610d5090613583565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7c90613583565b8015610dc95780601f10610d9e57610100808354040283529160200191610dc9565b820191906000526020600020905b815481529060010190602001808311610dac57829003601f168201915b505050505081565b610dd961177b565b610de360006117f9565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e1761177b565b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60066020528060005260406000206000915090505481565b81610ee081611307565b610eea83836118bf565b505050565b60046020528060005260406000206000915054906101000a900460ff1681565b610f17610de5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f995750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90613600565b60405180910390fd5b600660008481526020019081526020016000205482600760008681526020019081526020016000205461100b9190613ad3565b111561104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390613b53565b60405180910390fd5b8160076000858152602001908152602001600020600082825461106f9190613ad3565b92505081905550611091818484604051806020016040528060008152506118d5565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b843373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111685761116733611307565b5b6111758686868686611a85565b505050505050565b61118561177b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90613be5565b60405180910390fd5b6111fd816117f9565b50565b6112086114a5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061124e575061124d836112486114a5565b611096565b5b61128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613ab3565b60405180910390fd5b611298838383611b26565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611401576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161137e929190613c05565b602060405180830381865afa15801561139b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113bf9190613c43565b61140057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113f791906132be565b60405180910390fd5b5b50565b61140c6114a5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061145257506114518561144c6114a5565b611096565b5b611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890613ab3565b60405180910390fd5b61149e8585858585611d6c565b5050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390613ce2565b60405180910390fd5b8051825114611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155790613d74565b60405180910390fd5b600061156a6114a5565b905061158a8185600086866040518060200160405280600081525061208d565b60005b83518110156116d75760008482815181106115ab576115aa61371e565b5b6020026020010151905060008483815181106115ca576115c961371e565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290613e06565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806116cf9061377c565b91505061158d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161174f929190613e26565b60405180910390a461177581856000868660405180602001604052806000815250612095565b50505050565b6117836114a5565b73ffffffffffffffffffffffffffffffffffffffff166117a1610de5565b73ffffffffffffffffffffffffffffffffffffffff16146117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee90613ea9565b60405180910390fd5b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118d16118ca6114a5565b838361209d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613f3b565b60405180910390fd5b600061194e6114a5565b9050600061195b85612209565b9050600061196885612209565b90506119798360008985858961208d565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119d89190613ad3565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611a56929190613f5b565b60405180910390a4611a6d83600089858589612095565b611a7c83600089898989612283565b50505050505050565b611a8d6114a5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611ad35750611ad285611acd6114a5565b611096565b5b611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0990613ab3565b60405180910390fd5b611b1f858585858561245a565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90613ce2565b60405180910390fd5b6000611b9f6114a5565b90506000611bac84612209565b90506000611bb984612209565b9050611bd98387600085856040518060200160405280600081525061208d565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6790613e06565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611d3d929190613f5b565b60405180910390a4611d6384886000868660405180602001604052806000815250612095565b50505050505050565b8151835114611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613d74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690613ff6565b60405180910390fd5b6000611e296114a5565b9050611e3981878787878761208d565b60005b8451811015611fea576000858281518110611e5a57611e5961371e565b5b602002602001015190506000858381518110611e7957611e7861371e565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190614088565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fcf9190613ad3565b9250508190555050505080611fe39061377c565b9050611e3c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612061929190613e26565b60405180910390a4612077818787878787612095565b6120858187878787876126f5565b505050505050565b505050505050565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361210b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121029061411a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121fc9190612aa1565b60405180910390a3505050565b60606000600167ffffffffffffffff81111561222857612227612be0565b5b6040519080825280602002602001820160405280156122565781602001602082028036833780820191505090505b509050828160008151811061226e5761226d61371e565b5b60200260200101818152505080915050919050565b6122a28473ffffffffffffffffffffffffffffffffffffffff166128cc565b15612452578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016122e895949392919061418f565b6020604051808303816000875af192505050801561232457506040513d601f19601f8201168201806040525081019061232191906141fe565b60015b6123c957612330614238565b806308c379a00361238c575061234461425a565b8061234f575061238e565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123839190612b79565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c09061435c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612447906143ee565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090613ff6565b60405180910390fd5b60006124d36114a5565b905060006124e085612209565b905060006124ed85612209565b90506124fd83898985858961208d565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90614088565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126499190613ad3565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516126c6929190613f5b565b60405180910390a46126dc848a8a86868a612095565b6126ea848a8a8a8a8a612283565b505050505050505050565b6127148473ffffffffffffffffffffffffffffffffffffffff166128cc565b156128c4578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161275a95949392919061440e565b6020604051808303816000875af192505050801561279657506040513d601f19601f8201168201806040525081019061279391906141fe565b60015b61283b576127a2614238565b806308c379a0036127fe57506127b661425a565b806127c15750612800565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f59190612b79565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128329061435c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b9906143ee565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061292e82612903565b9050919050565b61293e81612923565b811461294957600080fd5b50565b60008135905061295b81612935565b92915050565b6000819050919050565b61297481612961565b811461297f57600080fd5b50565b6000813590506129918161296b565b92915050565b600080604083850312156129ae576129ad6128f9565b5b60006129bc8582860161294c565b92505060206129cd85828601612982565b9150509250929050565b6129e081612961565b82525050565b60006020820190506129fb60008301846129d7565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a3681612a01565b8114612a4157600080fd5b50565b600081359050612a5381612a2d565b92915050565b600060208284031215612a6f57612a6e6128f9565b5b6000612a7d84828501612a44565b91505092915050565b60008115159050919050565b612a9b81612a86565b82525050565b6000602082019050612ab66000830184612a92565b92915050565b600060208284031215612ad257612ad16128f9565b5b6000612ae084828501612982565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b23578082015181840152602081019050612b08565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b4b82612ae9565b612b558185612af4565b9350612b65818560208601612b05565b612b6e81612b2f565b840191505092915050565b60006020820190508181036000830152612b938184612b40565b905092915050565b60008060408385031215612bb257612bb16128f9565b5b6000612bc085828601612982565b9250506020612bd185828601612982565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c1882612b2f565b810181811067ffffffffffffffff82111715612c3757612c36612be0565b5b80604052505050565b6000612c4a6128ef565b9050612c568282612c0f565b919050565b600067ffffffffffffffff821115612c7657612c75612be0565b5b602082029050602081019050919050565b600080fd5b6000612c9f612c9a84612c5b565b612c40565b90508083825260208201905060208402830185811115612cc257612cc1612c87565b5b835b81811015612ceb5780612cd78882612982565b845260208401935050602081019050612cc4565b5050509392505050565b600082601f830112612d0a57612d09612bdb565b5b8135612d1a848260208601612c8c565b91505092915050565b600080fd5b600067ffffffffffffffff821115612d4357612d42612be0565b5b612d4c82612b2f565b9050602081019050919050565b82818337600083830152505050565b6000612d7b612d7684612d28565b612c40565b905082815260208101848484011115612d9757612d96612d23565b5b612da2848285612d59565b509392505050565b600082601f830112612dbf57612dbe612bdb565b5b8135612dcf848260208601612d68565b91505092915050565b600080600080600060a08688031215612df457612df36128f9565b5b6000612e028882890161294c565b9550506020612e138882890161294c565b945050604086013567ffffffffffffffff811115612e3457612e336128fe565b5b612e4088828901612cf5565b935050606086013567ffffffffffffffff811115612e6157612e606128fe565b5b612e6d88828901612cf5565b925050608086013567ffffffffffffffff811115612e8e57612e8d6128fe565b5b612e9a88828901612daa565b9150509295509295909350565b6000819050919050565b6000612ecc612ec7612ec284612903565b612ea7565b612903565b9050919050565b6000612ede82612eb1565b9050919050565b6000612ef082612ed3565b9050919050565b612f0081612ee5565b82525050565b6000602082019050612f1b6000830184612ef7565b92915050565b600067ffffffffffffffff821115612f3c57612f3b612be0565b5b602082029050602081019050919050565b6000612f60612f5b84612f21565b612c40565b90508083825260208201905060208402830185811115612f8357612f82612c87565b5b835b81811015612fac5780612f98888261294c565b845260208401935050602081019050612f85565b5050509392505050565b600082601f830112612fcb57612fca612bdb565b5b8135612fdb848260208601612f4d565b91505092915050565b60008060408385031215612ffb57612ffa6128f9565b5b600083013567ffffffffffffffff811115613019576130186128fe565b5b61302585828601612fb6565b925050602083013567ffffffffffffffff811115613046576130456128fe565b5b61305285828601612cf5565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61309181612961565b82525050565b60006130a38383613088565b60208301905092915050565b6000602082019050919050565b60006130c78261305c565b6130d18185613067565b93506130dc83613078565b8060005b8381101561310d5781516130f48882613097565b97506130ff836130af565b9250506001810190506130e0565b5085935050505092915050565b6000602082019050818103600083015261313481846130bc565b905092915050565b600080fd5b60008083601f84011261315757613156612bdb565b5b8235905067ffffffffffffffff8111156131745761317361313c565b5b6020830191508360018202830111156131905761318f612c87565b5b9250929050565b6000806000604084860312156131b0576131af6128f9565b5b60006131be86828701612982565b935050602084013567ffffffffffffffff8111156131df576131de6128fe565b5b6131eb86828701613141565b92509250509250925092565b60006020828403121561320d5761320c6128f9565b5b600061321b8482850161294c565b91505092915050565b60008060006060848603121561323d5761323c6128f9565b5b600061324b8682870161294c565b935050602084013567ffffffffffffffff81111561326c5761326b6128fe565b5b61327886828701612cf5565b925050604084013567ffffffffffffffff811115613299576132986128fe565b5b6132a586828701612cf5565b9150509250925092565b6132b881612923565b82525050565b60006020820190506132d360008301846132af565b92915050565b6132e281612a86565b81146132ed57600080fd5b50565b6000813590506132ff816132d9565b92915050565b6000806040838503121561331c5761331b6128f9565b5b600061332a8582860161294c565b925050602061333b858286016132f0565b9150509250929050565b60008060006060848603121561335e5761335d6128f9565b5b600061336c86828701612982565b935050602061337d86828701612982565b925050604061338e8682870161294c565b9150509250925092565b600080604083850312156133af576133ae6128f9565b5b60006133bd8582860161294c565b92505060206133ce8582860161294c565b9150509250929050565b600080600080600060a086880312156133f4576133f36128f9565b5b60006134028882890161294c565b95505060206134138882890161294c565b945050604061342488828901612982565b935050606061343588828901612982565b925050608086013567ffffffffffffffff811115613456576134556128fe565b5b61346288828901612daa565b9150509295509295909350565b600080600060608486031215613488576134876128f9565b5b60006134968682870161294c565b93505060206134a786828701612982565b92505060406134b886828701612982565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061351e602a83612af4565b9150613529826134c2565b604082019050919050565b6000602082019050818103600083015261354d81613511565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061359b57607f821691505b6020821081036135ae576135ad613554565b5b50919050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b60006135ea600c83612af4565b91506135f5826135b4565b602082019050919050565b60006020820190508181036000830152613619816135dd565b9050919050565b7f546f6b656e20737570706c79206973206c6f636b656400000000000000000000600082015250565b6000613656601683612af4565b915061366182613620565b602082019050919050565b6000602082019050818103600083015261368581613649565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006136e8602983612af4565b91506136f38261368c565b604082019050919050565b60006020820190508181036000830152613717816136db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061378782612961565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137b9576137b861374d565b5b600182019050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137f4565b61383b86836137f4565b95508019841693508086168417925050509392505050565b600061386e61386961386484612961565b612ea7565b612961565b9050919050565b6000819050919050565b61388883613853565b61389c61389482613875565b848454613801565b825550505050565b600090565b6138b16138a4565b6138bc81848461387f565b505050565b5b818110156138e0576138d56000826138a9565b6001810190506138c2565b5050565b601f821115613925576138f6816137cf565b6138ff846137e4565b8101602085101561390e578190505b61392261391a856137e4565b8301826138c1565b50505b505050565b600082821c905092915050565b60006139486000198460080261392a565b1980831691505092915050565b60006139618383613937565b9150826002028217905092915050565b61397b83836137c4565b67ffffffffffffffff81111561399457613993612be0565b5b61399e8254613583565b6139a98282856138e4565b6000601f8311600181146139d857600084156139c6578287013590505b6139d08582613955565b865550613a38565b601f1984166139e6866137cf565b60005b82811015613a0e578489013582556001820191506020850194506020810190506139e9565b86831015613a2b5784890135613a27601f891682613937565b8355505b6001600288020188555050505b50505050505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613a9d602e83612af4565b9150613aa882613a41565b604082019050919050565b60006020820190508181036000830152613acc81613a90565b9050919050565b6000613ade82612961565b9150613ae983612961565b9250828201905080821115613b0157613b0061374d565b5b92915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000613b3d601283612af4565b9150613b4882613b07565b602082019050919050565b60006020820190508181036000830152613b6c81613b30565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bcf602683612af4565b9150613bda82613b73565b604082019050919050565b60006020820190508181036000830152613bfe81613bc2565b9050919050565b6000604082019050613c1a60008301856132af565b613c2760208301846132af565b9392505050565b600081519050613c3d816132d9565b92915050565b600060208284031215613c5957613c586128f9565b5b6000613c6784828501613c2e565b91505092915050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ccc602383612af4565b9150613cd782613c70565b604082019050919050565b60006020820190508181036000830152613cfb81613cbf565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613d5e602883612af4565b9150613d6982613d02565b604082019050919050565b60006020820190508181036000830152613d8d81613d51565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000613df0602483612af4565b9150613dfb82613d94565b604082019050919050565b60006020820190508181036000830152613e1f81613de3565b9050919050565b60006040820190508181036000830152613e4081856130bc565b90508181036020830152613e5481846130bc565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e93602083612af4565b9150613e9e82613e5d565b602082019050919050565b60006020820190508181036000830152613ec281613e86565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f25602183612af4565b9150613f3082613ec9565b604082019050919050565b60006020820190508181036000830152613f5481613f18565b9050919050565b6000604082019050613f7060008301856129d7565b613f7d60208301846129d7565b9392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613fe0602583612af4565b9150613feb82613f84565b604082019050919050565b6000602082019050818103600083015261400f81613fd3565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614072602a83612af4565b915061407d82614016565b604082019050919050565b600060208201905081810360008301526140a181614065565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614104602983612af4565b915061410f826140a8565b604082019050919050565b60006020820190508181036000830152614133816140f7565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141618261413a565b61416b8185614145565b935061417b818560208601612b05565b61418481612b2f565b840191505092915050565b600060a0820190506141a460008301886132af565b6141b160208301876132af565b6141be60408301866129d7565b6141cb60608301856129d7565b81810360808301526141dd8184614156565b90509695505050505050565b6000815190506141f881612a2d565b92915050565b600060208284031215614214576142136128f9565b5b6000614222848285016141e9565b91505092915050565b60008160e01c9050919050565b600060033d11156142575760046000803e61425460005161422b565b90505b90565b600060443d106142e75761426c6128ef565b60043d036004823e80513d602482011167ffffffffffffffff821117156142945750506142e7565b808201805167ffffffffffffffff8111156142b257505050506142e7565b80602083010160043d0385018111156142cf5750505050506142e7565b6142de82602001850186612c0f565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614346603483612af4565b9150614351826142ea565b604082019050919050565b6000602082019050818103600083015261437581614339565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006143d8602883612af4565b91506143e38261437c565b604082019050919050565b60006020820190508181036000830152614407816143cb565b9050919050565b600060a08201905061442360008301886132af565b61443060208301876132af565b818103604083015261444281866130bc565b9050818103606083015261445681856130bc565b9050818103608083015261446a8184614156565b9050969550505050505056fea2646970667358221220443ec29b37d1c131cd1f8e1671ef6f8ff04fd83a8ef090efc06640c808fe250c64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101575760003560e01c80636c8b703f116100c3578063c10460d81161007c578063c10460d8146103c0578063e7d3fe6b146103f0578063e985e9c51461040c578063f242432a1461043c578063f2fde38b14610458578063f5298aca1461047457610157565b80636c8b703f14610300578063715018a6146103305780638da5cb5b1461033a5780638e33cdc5146103585780639354f17514610374578063a22cb465146103a457610157565b806344447f471161011557806344447f47146102425780634e1273f41461024c57806357f7789e1461027c5780635ed6b5ba1461029857806368742da6146102c85780636b20c454146102e457610157565b8062fdd58e1461015c57806301ffc9a71461018c5780630e89341c146101bc578063278d17ad146101ec5780632eb2c2d61461020857806341f4343414610224575b600080fd5b61017660048036038101906101719190612997565b610490565b60405161018391906129e6565b60405180910390f35b6101a660048036038101906101a19190612a59565b610558565b6040516101b39190612aa1565b60405180910390f35b6101d660048036038101906101d19190612abc565b61063a565b6040516101e39190612b79565b60405180910390f35b61020660048036038101906102019190612b9b565b6106df565b005b610222600480360381019061021d9190612dd8565b610814565b005b61022c610867565b6040516102399190612f06565b60405180910390f35b61024a610879565b005b61026660048036038101906102619190612fe4565b61095f565b604051610273919061311a565b60405180910390f35b61029660048036038101906102919190613197565b610a78565b005b6102b260048036038101906102ad9190612abc565b610b69565b6040516102bf91906129e6565b60405180910390f35b6102e260048036038101906102dd91906131f7565b610b81565b005b6102fe60048036038101906102f99190613224565b610c94565b005b61031a60048036038101906103159190612abc565b610d31565b6040516103279190612b79565b60405180910390f35b610338610dd1565b005b610342610de5565b60405161034f91906132be565b60405180910390f35b610372600480360381019061036d91906131f7565b610e0f565b005b61038e60048036038101906103899190612abc565b610ebe565b60405161039b91906129e6565b60405180910390f35b6103be60048036038101906103b99190613305565b610ed6565b005b6103da60048036038101906103d591906131f7565b610eef565b6040516103e79190612aa1565b60405180910390f35b61040a60048036038101906104059190613345565b610f0f565b005b61042660048036038101906104219190613398565b611096565b6040516104339190612aa1565b60405180910390f35b610456600480360381019061045191906133d8565b61112a565b005b610472600480360381019061046d91906131f7565b61117d565b005b61048e6004803603810190610489919061346f565b611200565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f790613534565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063357506106328261129d565b5b9050919050565b606060056000838152602001908152602001600020805461065a90613583565b80601f016020809104026020016040519081016040528092919081815260200182805461068690613583565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b50505050509050919050565b6106e7610de5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806107695750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f90613600565b60405180910390fd5b600360149054906101000a900460ff16156107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef9061366c565b60405180910390fd5b8160066000838152602001908152602001600020819055505050565b843373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108525761085133611307565b5b61085f8686868686611404565b505050505050565b6daaeb6d7670e522a718067333cd4e81565b610881610de5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109035750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990613600565b60405180910390fd5b6001600360146101000a81548160ff021916908315150217905550565b606081518351146109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c906136fe565b60405180910390fd5b6000835167ffffffffffffffff8111156109c2576109c1612be0565b5b6040519080825280602002602001820160405280156109f05781602001602082028036833780820191505090505b50905060005b8451811015610a6d57610a3d858281518110610a1557610a1461371e565b5b6020026020010151858381518110610a3057610a2f61371e565b5b6020026020010151610490565b828281518110610a5057610a4f61371e565b5b60200260200101818152505080610a669061377c565b90506109f6565b508091505092915050565b610a80610de5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b025750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890613600565b60405180910390fd5b8181600560008681526020019081526020016000209182610b63929190613971565b50505050565b60076020528060005260406000206000915090505481565b610b89610de5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c0b5750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613600565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c90573d6000803e3d6000fd5b5050565b610c9c6114a5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ce25750610ce183610cdc6114a5565b611096565b5b610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890613ab3565b60405180910390fd5b610d2c8383836114ad565b505050565b60056020528060005260406000206000915090508054610d5090613583565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7c90613583565b8015610dc95780601f10610d9e57610100808354040283529160200191610dc9565b820191906000526020600020905b815481529060010190602001808311610dac57829003601f168201915b505050505081565b610dd961177b565b610de360006117f9565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e1761177b565b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60066020528060005260406000206000915090505481565b81610ee081611307565b610eea83836118bf565b505050565b60046020528060005260406000206000915054906101000a900460ff1681565b610f17610de5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f995750600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90613600565b60405180910390fd5b600660008481526020019081526020016000205482600760008681526020019081526020016000205461100b9190613ad3565b111561104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390613b53565b60405180910390fd5b8160076000858152602001908152602001600020600082825461106f9190613ad3565b92505081905550611091818484604051806020016040528060008152506118d5565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b843373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111685761116733611307565b5b6111758686868686611a85565b505050505050565b61118561177b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90613be5565b60405180910390fd5b6111fd816117f9565b50565b6112086114a5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061124e575061124d836112486114a5565b611096565b5b61128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613ab3565b60405180910390fd5b611298838383611b26565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611401576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161137e929190613c05565b602060405180830381865afa15801561139b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113bf9190613c43565b61140057806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113f791906132be565b60405180910390fd5b5b50565b61140c6114a5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061145257506114518561144c6114a5565b611096565b5b611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890613ab3565b60405180910390fd5b61149e8585858585611d6c565b5050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390613ce2565b60405180910390fd5b8051825114611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155790613d74565b60405180910390fd5b600061156a6114a5565b905061158a8185600086866040518060200160405280600081525061208d565b60005b83518110156116d75760008482815181106115ab576115aa61371e565b5b6020026020010151905060008483815181106115ca576115c961371e565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290613e06565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806116cf9061377c565b91505061158d565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161174f929190613e26565b60405180910390a461177581856000868660405180602001604052806000815250612095565b50505050565b6117836114a5565b73ffffffffffffffffffffffffffffffffffffffff166117a1610de5565b73ffffffffffffffffffffffffffffffffffffffff16146117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee90613ea9565b60405180910390fd5b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118d16118ca6114a5565b838361209d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613f3b565b60405180910390fd5b600061194e6114a5565b9050600061195b85612209565b9050600061196885612209565b90506119798360008985858961208d565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119d89190613ad3565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611a56929190613f5b565b60405180910390a4611a6d83600089858589612095565b611a7c83600089898989612283565b50505050505050565b611a8d6114a5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611ad35750611ad285611acd6114a5565b611096565b5b611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0990613ab3565b60405180910390fd5b611b1f858585858561245a565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90613ce2565b60405180910390fd5b6000611b9f6114a5565b90506000611bac84612209565b90506000611bb984612209565b9050611bd98387600085856040518060200160405280600081525061208d565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6790613e06565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611d3d929190613f5b565b60405180910390a4611d6384886000868660405180602001604052806000815250612095565b50505050505050565b8151835114611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613d74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690613ff6565b60405180910390fd5b6000611e296114a5565b9050611e3981878787878761208d565b60005b8451811015611fea576000858281518110611e5a57611e5961371e565b5b602002602001015190506000858381518110611e7957611e7861371e565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190614088565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fcf9190613ad3565b9250508190555050505080611fe39061377c565b9050611e3c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612061929190613e26565b60405180910390a4612077818787878787612095565b6120858187878787876126f5565b505050505050565b505050505050565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361210b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121029061411a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121fc9190612aa1565b60405180910390a3505050565b60606000600167ffffffffffffffff81111561222857612227612be0565b5b6040519080825280602002602001820160405280156122565781602001602082028036833780820191505090505b509050828160008151811061226e5761226d61371e565b5b60200260200101818152505080915050919050565b6122a28473ffffffffffffffffffffffffffffffffffffffff166128cc565b15612452578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016122e895949392919061418f565b6020604051808303816000875af192505050801561232457506040513d601f19601f8201168201806040525081019061232191906141fe565b60015b6123c957612330614238565b806308c379a00361238c575061234461425a565b8061234f575061238e565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123839190612b79565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c09061435c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612447906143ee565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090613ff6565b60405180910390fd5b60006124d36114a5565b905060006124e085612209565b905060006124ed85612209565b90506124fd83898985858961208d565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90614088565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126499190613ad3565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516126c6929190613f5b565b60405180910390a46126dc848a8a86868a612095565b6126ea848a8a8a8a8a612283565b505050505050505050565b6127148473ffffffffffffffffffffffffffffffffffffffff166128cc565b156128c4578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161275a95949392919061440e565b6020604051808303816000875af192505050801561279657506040513d601f19601f8201168201806040525081019061279391906141fe565b60015b61283b576127a2614238565b806308c379a0036127fe57506127b661425a565b806127c15750612800565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f59190612b79565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128329061435c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b9906143ee565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061292e82612903565b9050919050565b61293e81612923565b811461294957600080fd5b50565b60008135905061295b81612935565b92915050565b6000819050919050565b61297481612961565b811461297f57600080fd5b50565b6000813590506129918161296b565b92915050565b600080604083850312156129ae576129ad6128f9565b5b60006129bc8582860161294c565b92505060206129cd85828601612982565b9150509250929050565b6129e081612961565b82525050565b60006020820190506129fb60008301846129d7565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a3681612a01565b8114612a4157600080fd5b50565b600081359050612a5381612a2d565b92915050565b600060208284031215612a6f57612a6e6128f9565b5b6000612a7d84828501612a44565b91505092915050565b60008115159050919050565b612a9b81612a86565b82525050565b6000602082019050612ab66000830184612a92565b92915050565b600060208284031215612ad257612ad16128f9565b5b6000612ae084828501612982565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b23578082015181840152602081019050612b08565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b4b82612ae9565b612b558185612af4565b9350612b65818560208601612b05565b612b6e81612b2f565b840191505092915050565b60006020820190508181036000830152612b938184612b40565b905092915050565b60008060408385031215612bb257612bb16128f9565b5b6000612bc085828601612982565b9250506020612bd185828601612982565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c1882612b2f565b810181811067ffffffffffffffff82111715612c3757612c36612be0565b5b80604052505050565b6000612c4a6128ef565b9050612c568282612c0f565b919050565b600067ffffffffffffffff821115612c7657612c75612be0565b5b602082029050602081019050919050565b600080fd5b6000612c9f612c9a84612c5b565b612c40565b90508083825260208201905060208402830185811115612cc257612cc1612c87565b5b835b81811015612ceb5780612cd78882612982565b845260208401935050602081019050612cc4565b5050509392505050565b600082601f830112612d0a57612d09612bdb565b5b8135612d1a848260208601612c8c565b91505092915050565b600080fd5b600067ffffffffffffffff821115612d4357612d42612be0565b5b612d4c82612b2f565b9050602081019050919050565b82818337600083830152505050565b6000612d7b612d7684612d28565b612c40565b905082815260208101848484011115612d9757612d96612d23565b5b612da2848285612d59565b509392505050565b600082601f830112612dbf57612dbe612bdb565b5b8135612dcf848260208601612d68565b91505092915050565b600080600080600060a08688031215612df457612df36128f9565b5b6000612e028882890161294c565b9550506020612e138882890161294c565b945050604086013567ffffffffffffffff811115612e3457612e336128fe565b5b612e4088828901612cf5565b935050606086013567ffffffffffffffff811115612e6157612e606128fe565b5b612e6d88828901612cf5565b925050608086013567ffffffffffffffff811115612e8e57612e8d6128fe565b5b612e9a88828901612daa565b9150509295509295909350565b6000819050919050565b6000612ecc612ec7612ec284612903565b612ea7565b612903565b9050919050565b6000612ede82612eb1565b9050919050565b6000612ef082612ed3565b9050919050565b612f0081612ee5565b82525050565b6000602082019050612f1b6000830184612ef7565b92915050565b600067ffffffffffffffff821115612f3c57612f3b612be0565b5b602082029050602081019050919050565b6000612f60612f5b84612f21565b612c40565b90508083825260208201905060208402830185811115612f8357612f82612c87565b5b835b81811015612fac5780612f98888261294c565b845260208401935050602081019050612f85565b5050509392505050565b600082601f830112612fcb57612fca612bdb565b5b8135612fdb848260208601612f4d565b91505092915050565b60008060408385031215612ffb57612ffa6128f9565b5b600083013567ffffffffffffffff811115613019576130186128fe565b5b61302585828601612fb6565b925050602083013567ffffffffffffffff811115613046576130456128fe565b5b61305285828601612cf5565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61309181612961565b82525050565b60006130a38383613088565b60208301905092915050565b6000602082019050919050565b60006130c78261305c565b6130d18185613067565b93506130dc83613078565b8060005b8381101561310d5781516130f48882613097565b97506130ff836130af565b9250506001810190506130e0565b5085935050505092915050565b6000602082019050818103600083015261313481846130bc565b905092915050565b600080fd5b60008083601f84011261315757613156612bdb565b5b8235905067ffffffffffffffff8111156131745761317361313c565b5b6020830191508360018202830111156131905761318f612c87565b5b9250929050565b6000806000604084860312156131b0576131af6128f9565b5b60006131be86828701612982565b935050602084013567ffffffffffffffff8111156131df576131de6128fe565b5b6131eb86828701613141565b92509250509250925092565b60006020828403121561320d5761320c6128f9565b5b600061321b8482850161294c565b91505092915050565b60008060006060848603121561323d5761323c6128f9565b5b600061324b8682870161294c565b935050602084013567ffffffffffffffff81111561326c5761326b6128fe565b5b61327886828701612cf5565b925050604084013567ffffffffffffffff811115613299576132986128fe565b5b6132a586828701612cf5565b9150509250925092565b6132b881612923565b82525050565b60006020820190506132d360008301846132af565b92915050565b6132e281612a86565b81146132ed57600080fd5b50565b6000813590506132ff816132d9565b92915050565b6000806040838503121561331c5761331b6128f9565b5b600061332a8582860161294c565b925050602061333b858286016132f0565b9150509250929050565b60008060006060848603121561335e5761335d6128f9565b5b600061336c86828701612982565b935050602061337d86828701612982565b925050604061338e8682870161294c565b9150509250925092565b600080604083850312156133af576133ae6128f9565b5b60006133bd8582860161294c565b92505060206133ce8582860161294c565b9150509250929050565b600080600080600060a086880312156133f4576133f36128f9565b5b60006134028882890161294c565b95505060206134138882890161294c565b945050604061342488828901612982565b935050606061343588828901612982565b925050608086013567ffffffffffffffff811115613456576134556128fe565b5b61346288828901612daa565b9150509295509295909350565b600080600060608486031215613488576134876128f9565b5b60006134968682870161294c565b93505060206134a786828701612982565b92505060406134b886828701612982565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061351e602a83612af4565b9150613529826134c2565b604082019050919050565b6000602082019050818103600083015261354d81613511565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061359b57607f821691505b6020821081036135ae576135ad613554565b5b50919050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b60006135ea600c83612af4565b91506135f5826135b4565b602082019050919050565b60006020820190508181036000830152613619816135dd565b9050919050565b7f546f6b656e20737570706c79206973206c6f636b656400000000000000000000600082015250565b6000613656601683612af4565b915061366182613620565b602082019050919050565b6000602082019050818103600083015261368581613649565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006136e8602983612af4565b91506136f38261368c565b604082019050919050565b60006020820190508181036000830152613717816136db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061378782612961565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137b9576137b861374d565b5b600182019050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137f4565b61383b86836137f4565b95508019841693508086168417925050509392505050565b600061386e61386961386484612961565b612ea7565b612961565b9050919050565b6000819050919050565b61388883613853565b61389c61389482613875565b848454613801565b825550505050565b600090565b6138b16138a4565b6138bc81848461387f565b505050565b5b818110156138e0576138d56000826138a9565b6001810190506138c2565b5050565b601f821115613925576138f6816137cf565b6138ff846137e4565b8101602085101561390e578190505b61392261391a856137e4565b8301826138c1565b50505b505050565b600082821c905092915050565b60006139486000198460080261392a565b1980831691505092915050565b60006139618383613937565b9150826002028217905092915050565b61397b83836137c4565b67ffffffffffffffff81111561399457613993612be0565b5b61399e8254613583565b6139a98282856138e4565b6000601f8311600181146139d857600084156139c6578287013590505b6139d08582613955565b865550613a38565b601f1984166139e6866137cf565b60005b82811015613a0e578489013582556001820191506020850194506020810190506139e9565b86831015613a2b5784890135613a27601f891682613937565b8355505b6001600288020188555050505b50505050505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613a9d602e83612af4565b9150613aa882613a41565b604082019050919050565b60006020820190508181036000830152613acc81613a90565b9050919050565b6000613ade82612961565b9150613ae983612961565b9250828201905080821115613b0157613b0061374d565b5b92915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000613b3d601283612af4565b9150613b4882613b07565b602082019050919050565b60006020820190508181036000830152613b6c81613b30565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bcf602683612af4565b9150613bda82613b73565b604082019050919050565b60006020820190508181036000830152613bfe81613bc2565b9050919050565b6000604082019050613c1a60008301856132af565b613c2760208301846132af565b9392505050565b600081519050613c3d816132d9565b92915050565b600060208284031215613c5957613c586128f9565b5b6000613c6784828501613c2e565b91505092915050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ccc602383612af4565b9150613cd782613c70565b604082019050919050565b60006020820190508181036000830152613cfb81613cbf565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613d5e602883612af4565b9150613d6982613d02565b604082019050919050565b60006020820190508181036000830152613d8d81613d51565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000613df0602483612af4565b9150613dfb82613d94565b604082019050919050565b60006020820190508181036000830152613e1f81613de3565b9050919050565b60006040820190508181036000830152613e4081856130bc565b90508181036020830152613e5481846130bc565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e93602083612af4565b9150613e9e82613e5d565b602082019050919050565b60006020820190508181036000830152613ec281613e86565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f25602183612af4565b9150613f3082613ec9565b604082019050919050565b60006020820190508181036000830152613f5481613f18565b9050919050565b6000604082019050613f7060008301856129d7565b613f7d60208301846129d7565b9392505050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613fe0602583612af4565b9150613feb82613f84565b604082019050919050565b6000602082019050818103600083015261400f81613fd3565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614072602a83612af4565b915061407d82614016565b604082019050919050565b600060208201905081810360008301526140a181614065565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614104602983612af4565b915061410f826140a8565b604082019050919050565b60006020820190508181036000830152614133816140f7565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141618261413a565b61416b8185614145565b935061417b818560208601612b05565b61418481612b2f565b840191505092915050565b600060a0820190506141a460008301886132af565b6141b160208301876132af565b6141be60408301866129d7565b6141cb60608301856129d7565b81810360808301526141dd8184614156565b90509695505050505050565b6000815190506141f881612a2d565b92915050565b600060208284031215614214576142136128f9565b5b6000614222848285016141e9565b91505092915050565b60008160e01c9050919050565b600060033d11156142575760046000803e61425460005161422b565b90505b90565b600060443d106142e75761426c6128ef565b60043d036004823e80513d602482011167ffffffffffffffff821117156142945750506142e7565b808201805167ffffffffffffffff8111156142b257505050506142e7565b80602083010160043d0385018111156142cf5750505050506142e7565b6142de82602001850186612c0f565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614346603483612af4565b9150614351826142ea565b604082019050919050565b6000602082019050818103600083015261437581614339565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006143d8602883612af4565b91506143e38261437c565b604082019050919050565b60006020820190508181036000830152614407816143cb565b9050919050565b600060a08201905061442360008301886132af565b61443060208301876132af565b818103604083015261444281866130bc565b9050818103606083015261445681856130bc565b9050818103608083015261446a8184614156565b9050969550505050505056fea2646970667358221220443ec29b37d1c131cd1f8e1671ef6f8ff04fd83a8ef090efc06640c808fe250c64736f6c63430008130033

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.