ETH Price: $3,483.20 (+3.61%)
Gas: 1 Gwei

Token

NINFA (NINFA)
 

Overview

Max Total Supply

7 NINFA

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ditherpunk.eth
0x26a875df5a179e648eb1ab6c5adcd6c3c8c84c87
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NinfaERC1155

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : NinfaERC1155.sol
/*----------------------------------------------------------*|
|*          ███    ██ ██ ███    ██ ███████  █████           *|
|*          ████   ██ ██ ████   ██ ██      ██   ██          *|
|*          ██ ██  ██ ██ ██ ██  ██ █████   ███████          *|
|*          ██  ██ ██ ██ ██  ██ ██ ██      ██   ██          *|
|*          ██   ████ ██ ██   ████ ██      ██   ██          *|
|*----------------------------------------------------------*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "./access/AccessControl.sol";
import "./token/common/ERC2981CommunalEditions.sol";
import "./token/ERC1155/extensions/ERC1155Burnable.sol";
import "./token/ERC1155/extensions/ERC1155URIStorage.sol";
import "./token/ERC1155/extensions/ERC1155Supply.sol";

/************************************************************
 * @title NinfaERC1155                                      *
 *                                                          *
 * @notice Communal Ninfa ERC-1155 collection               *
 *                                                          *
 * @dev {ERC1155} token implements lazy minting             *
 *      in order to guarantee primary market fee payments   *
 *                                                          *
 * @custom:security-contact [email protected]                   *
 ***********************************************************/

contract NinfaERC1155 is
    AccessControl,
    ERC2981CommunalEditions,
    ERC1155Burnable,
    ERC1155URIStorage,
    ERC1155Supply
{
    // EIP-712
    bytes32 private immutable DOMAIN_SEPARATOR;
    bytes32 private immutable VOUCHER_TYPEHASH;

    // Acces Control
    bytes32 private constant MINTER_ROLE =
        0x9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6; // keccak256("MINTER_ROLE"); one or more smart contracts allowed to call the mint function, eg. the Marketplace contract
    bytes32 private constant CURATOR_ROLE =
        0x850d585eb7f024ccee5e68e55f2c26cc72e1e6ee456acf62135757a5eb9d4a10; // keccak256("CURATOR_ROLE")

    // Market fees
    uint24 private _primaryFeeBps;
    address private _marketFeeRecipient;

    // Metadata (OPTIONAL non-standard, see https://eips.ethereum.org/EIPS/eip-1155#metadata-choices)
    string public name = "NINFA";
    string public symbol = "NINFA";

    /**
     * @param totalValue maximum tokenId editions cap, if unlimited supply use `type(uint256).max` i.e. 2**256 - 1
     * @param endTime timestamp for when the signed voucher should expire,
     *      if no expiration is needed, timestamp should be `type(uint256).max` i.e. 2**256 - 1,
     *      or anything above 2^32, i.e. 4294967296, i.e. voucher expires after 2106 (in 83 years time)
     */
    struct Voucher {
        bytes32 tokenUri;
        uint256 unitPrice;
        uint256 totalValue;
        uint256 endTime;
        uint256 saleCommissionBps;
        address saleCommissionRecipient;
    }

    /*----------------------------------------------------------*|
    |*  # MINTER FUNCTIONS                                      *|
    |*----------------------------------------------------------*/

    /**
     * @param _tokenId may correspond to an already existing tokenId, if so, the corresponding tokenUri at `_tokenURIs[_tokenId]` MUST equal `voucher.tokenUri`,
     *      or it may be an inexisting tokenId such as 2^256-1 in which case a new token will be minted, provided that `voucher.tokenUri` has never been minted before.
     * @param _value the amount/supply of `tokenId` to be minted, provided that the total tokenId's circulating supply does not exceed the one (if any) specified in `voucher.totalValue`.
     * @param _to buyer, needed if using a external payment gateway, so that the minted tokenId value is sent to the address specified insead of `msg.sender`
     * @param _data data bytes are passed to `onErc1155Received` function if the `_to` address is a contract, for example a marketplace.
     *      `onErc1155Received` is not being called on the minter's address when a new tokenId is minted however, even if it was contract.
     */
    function lazyMint(
        Voucher calldata _voucher,
        uint256 _tokenId,
        uint256 _value,
        address _to,
        bytes memory _signature,
        bytes calldata _data
    ) external payable {
        /*----------------------------------------------------------*|
        |*  # EIP-712 TYPED DATA SIGNATURE VERIFICATION             *|
        |*----------------------------------------------------------*/

        address signer = _recover(_voucher, _signature);

        uint256 sellerAmount = _voucher.unitPrice * _value;

        require(
            // `msg.value` MUST equal ETH unit price multiplied by token value/amount
            msg.value == sellerAmount &&
                // _voucher MUST not be expired
                block.timestamp < _voucher.endTime
        );

        /*----------------------------------------------------------*|
        |*  # MINT                                                  *|
        |*----------------------------------------------------------*/

        if (exists(_tokenId)) {
            /**
             * @dev since `_tokenId` is a user-supplied parameter it can't be trusted, therefore if increasing supply fot an existing token,
             *      the `tokenUri` contained in the `_voucher` MUST match the one stored at `_tokenURIs[_tokenId]`.
             */
            require(
                _voucher.tokenUri == _tokenURIs[_tokenId] &&
                    (_totalSupply[_tokenId] += _value) <= _voucher.totalValue &&
                    /**
                     * @dev The `_voucher` signer MUST be the original artist or at least a royalty recipient for the user-supplied `_tokenId`,
                     *      otherwise a malicious artist could sign a _voucher with the same URI of another artist's token they want to mint and set price to 0,
                     *      alowing them to mint new tokens for free; although minter's address will result as the malicious signer, it is still a risk as these "fake" tokens may still be traded.
                     *      this check is only needed for communal ERC-1155 editions where there are multiple artists,
                     *      as opposed to self-sovreign ERC-1155 editions where there is a single deployer/artist
                     */
                    (signer == _royaltyRecipients[_tokenId] ||
                        signer == artists[_tokenId])
            );
        } else {
            require(
                _value <= _voucher.totalValue && hasRole(MINTER_ROLE, signer)
            );
            /// @dev since `_tokenId` is user-supplied it MUST be reassigned the correct value for the rest of the function work correctly
            _tokenId = _totalSupply.length;
            _totalSupply.push(_value);
            _tokenURIs[_tokenId] = _voucher.tokenUri;
            _royaltyRecipients[_tokenId] = payable(signer);
        }

        /**
         * @dev the following is the net state change after tokenId `_value` has been minted and transferred to a buyer,
         *      rather than calling the internal `_mint` function which whould increase balance of minter, followed by `safeTransferFrom`, which would decrease it.
         *      I.e. minter balance is not updated as it would cancel out anyway after sending the newly minted tokenId `_value` to buyer.
         *      Additionally `safeTransferFrom` function has been omitted otherwise `msg.sender` would have to be an authorized operator by the seller/minter.
         */
        unchecked {
            _balanceOf[_to][_tokenId] += _value;
        }

        // event is needed in order to signal to DApps that a mint has occurred
        emit TransferSingle(msg.sender, address(0), signer, _tokenId, _value);
        // event is needed in order to signal to DApps that a token transfer has occurred
        emit TransferSingle(msg.sender, signer, _to, _tokenId, _value);

        /*----------------------------------------------------------*|
        |*  # PAY MARKET FEES                                       *|
        |*----------------------------------------------------------*/

        uint256 marketFeeAmount = (msg.value * _primaryFeeBps) / 10000;
        sellerAmount -= marketFeeAmount;
        _sendValue(_marketFeeRecipient, marketFeeAmount);

        /*----------------------------------------------------------*|
        |*  # CHECK-EFFECTS-INTERACTIONS                            *|
        |*----------------------------------------------------------*/
        /// @dev perform external calls to untrusted addresses last

        /*----------------------------------------------------------*|
        |*  # PAY SELLER (AND COMMISSIONS)                          *|
        |*----------------------------------------------------------*/

        if (_voucher.saleCommissionBps > 0) {
            uint256 commissionAmount = (msg.value *
                _voucher.saleCommissionBps) / 10000;
            sellerAmount -= commissionAmount;
            _sendValue(_voucher.saleCommissionRecipient, commissionAmount);
        }

        _sendValue(signer, sellerAmount);

        /*----------------------------------------------------------*|
        |*  # SAFE TRANSFER                                         *|
        |*----------------------------------------------------------*/
        /// @dev onERC1155Received is not called on the minter's account

        if (_to.code.length > 0)
            require(
                IERC1155Receiver(_to).onERC1155Received(
                    msg.sender, // operator
                    signer, // from
                    _tokenId, // token id
                    _value, // value
                    _data
                ) == 0xf23a6e61, // IERC1155Receiver.onERC1155Received.selector,
                "UNSAFE_RECIPIENT"
            );
    }

    /*----------------------------------------------------------*|
    |*  # BURN                                                  *|
    |*----------------------------------------------------------*/

    function burn(address _from, uint256 _id, uint256 _value) public override {
        super.burn(_from, _id, _value);
        /// @dev since balance has already been decremented without underflow,
        // `_totalSupply` may be safely decremented. See {ERC1155-_burn}
        unchecked {
            _totalSupply[_id] -= _value;
        }
        // if all supply has been burned, _tokenURIs[_id] is deleted from storage
        if (_totalSupply[_id] == 0) delete _tokenURIs[_id];
    }

    /*----------------------------------------------------------*|
    |*  # PRIVATE FUNCTIONS                                     *|
    |*----------------------------------------------------------*/

    function _recover(
        Voucher calldata _voucher,
        bytes memory _signature
    ) private view returns (address _signer) {
        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(
                    abi.encode(
                        VOUCHER_TYPEHASH,
                        _voucher.tokenUri,
                        _voucher.unitPrice,
                        _voucher.totalValue,
                        _voucher.endTime,
                        _voucher.saleCommissionBps,
                        _voucher.saleCommissionRecipient
                    )
                )
            )
        );

        bytes32 r;
        bytes32 s;
        uint8 v;

        assembly {
            r := mload(add(_signature, 0x20))
            s := mload(add(_signature, 0x40))
            v := byte(0, mload(add(_signature, 0x60)))
        }

        _signer = ecrecover(digest, v, r, s);
        if (_signer == address(0)) revert();
    }

    function _sendValue(address _receiver, uint256 _amount) private {
        (bool success, ) = payable(_receiver).call{value: _amount}("");
        require(success);
    }

    /*----------------------------------------------------------*|
    |*  # ERC-165 LOGIC                                         *|
    |*----------------------------------------------------------*/

    function supportsInterface(
        bytes4 interfaceId
    ) external pure returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // Interface ID for IERC165
            interfaceId == 0xd9b67a26 || // Interface ID for IERC1155
            interfaceId == 0x0e89341c || // Interface ID for IERC1155MetadataURI
            interfaceId == 0x2a55205a || // Interface ID for IERC2981
            interfaceId == 0x7965db0b; // Interface ID for IAccessControl
    }

    /*----------------------------------------------------------*|
    |*  # ADMIN FUNCTIONS                                       *|
    |*----------------------------------------------------------*/

    function setFeeAccount(
        address feeAccount_
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        _marketFeeRecipient = feeAccount_;
    }

    function setPrimaryFeeBps(
        uint24 primaryFeeBps_
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        _primaryFeeBps = primaryFeeBps_;
    }

    /**
     * @notice creates `DOMAIN_SEPARATOR` and `VOUCHER_TYPEHASH`,
     *      Grants `DEFAULT_ADMIN_ROLE` to the account that deploys the contract,
     *      assigns `CURATOR_ROLE` as the admin role for `MINTER_ROLE`,
     *      sets fee account address and fee BPS to 10% on primary market sales.
     * @param feeAccount_ admin multisig contract for receiving market fees on sales.
     */
    constructor(address feeAccount_) {
        /**
         * @dev The EIP712Domain fields should be the order as above, skipping any absent fields.
         *      Protocol designers only need to include the fields that make sense for their signing domain. Unused fields are left out of the struct type.
         * @param name the user readable name of signing domain, i.e. the name of the DApp or the protocol.
         * @param chainId the EIP-155 chain id. The user-agent should refuse signing if it does not match the currently active chain.
         * @param verifyingContract the address of the contract that will verify the signature. The user-agent may do contract specific phishing prevention.
         *      verifyingContract is the only variable parameter in the DOMAIN_SEPARATOR in order to avoid signature replay across different contracts
         *      therefore the DOMAIN_SEPARATOR MUST be calculated inside of the `initialize` function rather than the constructor.
         */
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                0x8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866, // hardcoded value for keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"), DOMAIN_TYPEHASH
                0xdb3dd9b854cdb7551722584c7e89b5df9798432c0c9ee9bc6f62a8edfed5dac4, // hardcoded value for keccak256(bytes("ninfa.io")),
                block.chainid,
                address(this)
            )
        );
        VOUCHER_TYPEHASH = keccak256(
            "Voucher(bytes32 tokenUri,uint256 unitPrice,uint256 totalValue,uint256 endTime,uint256 saleCommissionBps,address saleCommissionRecipient)"
        );

        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setRoleAdmin(MINTER_ROLE, CURATOR_ROLE);

        _marketFeeRecipient = feeAccount_;
        _primaryFeeBps = 1000; // 10% marketplace fees on primary market sales
    }
}

File 2 of 10 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity 0.8.17;

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

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

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

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

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

File 3 of 10 : DecodeTokenURI.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;

/// @dev stripped down version of https://github.com/MrChico/verifyIPFS/
library DecodeTokenURI {
    bytes constant ALPHABET =
        "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";

    /**
     * @dev Converts hex string to base 58
     */
    function toBase58(bytes memory source)
        internal
        pure
        returns (bytes memory)
    {
        if (source.length == 0) return new bytes(0);
        uint8[] memory digits = new uint8[](64);
        digits[0] = 0;
        uint8 digitlength = 1;
        for (uint256 i = 0; i < source.length; ++i) {
            uint256 carry = uint8(source[i]);
            for (uint256 j = 0; j < digitlength; ++j) {
                carry += uint256(digits[j]) * 256;
                digits[j] = uint8(carry % 58);
                carry = carry / 58;
            }

            while (carry > 0) {
                digits[digitlength] = uint8(carry % 58);
                digitlength++;
                carry = carry / 58;
            }
        }
        return toAlphabet(reverse(truncate(digits, digitlength)));
    }

    function toAlphabet(uint8[] memory indices)
        private
        pure
        returns (bytes memory)
    {
        bytes memory output = new bytes(indices.length);
        for (uint256 i = 0; i < indices.length; i++) {
            output[i] = ALPHABET[indices[i]];
        }
        return output;
    }

    function truncate(uint8[] memory array, uint8 length)
        private
        pure
        returns (uint8[] memory)
    {
        uint8[] memory output = new uint8[](length);
        for (uint256 i = 0; i < length; i++) {
            output[i] = array[i];
        }
        return output;
    }

    function reverse(uint8[] memory input)
        private
        pure
        returns (uint8[] memory)
    {
        uint8[] memory output = new uint8[](input.length);
        for (uint256 i = 0; i < input.length; i++) {
            output[i] = input[input.length - 1 - i];
        }
        return output;
    }
}

File 4 of 10 : ERC2981CommunalEditions.sol
/*----------------------------------------------------------*|
|*          ███    ██ ██ ███    ██ ███████  █████           *|
|*          ████   ██ ██ ████   ██ ██      ██   ██          *|
|*          ██ ██  ██ ██ ██ ██  ██ █████   ███████          *|
|*          ██  ██ ██ ██ ██  ██ ██ ██      ██   ██          *|
|*          ██   ████ ██ ██   ████ ██      ██   ██          *|
|*----------------------------------------------------------*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

/*************************************************************
 * @title ERC2981CommunalEditions                            *
 *                                                           *
 * @notice Adds ERC-2981 support to {ERC1155}                *
 *                                                           *
 * @dev {ERC2981} royalties for communal collections         *
 *                                                           *
 * @custom:security-contact [email protected]                    *
 ************************************************************/

contract ERC2981CommunalEditions {
    /**
     * @notice `_royaltyRecipients` maps token ID to original artist, used for sending royalties to _royaltyRecipients on all secondary sales.
     *      This is meant for communal editions; in self-sovreign editions there is a single contract-wide royalty recipient
     * @dev "If you plan on having a contract where NFTs are created by multiple authors AND they can update royalty details after minting,
     *      you will need to record the original author of each token." - https://forum.openzeppelin.com/t/setting-erc2981/16065/2
     */
    mapping(uint256 => address payable) internal _royaltyRecipients; // internal as used by child contract
    mapping(uint256 => address) internal artists; // tokenId to original creator address
    /// @dev "For precision purposes, it's better to express the royalty percentage as "basis points" (points per 10_000, e.g., 10% = 1000 bps) and compute the amount is `(royaltyBps[_tokenId] * _salePrice) / 10000`" - https://forum.openzeppelin.com/t/setting-erc2981/16065/2
    uint24 internal constant ROYALTY_BPS = 1000; // 10% fixed royalties
    uint24 private constant TOTAL_SHARES = 10000; // 10,000 = 100% (total sale price)

    /**
     * @notice Called with the sale price to determine how much royalty
     *          is owed and to whom.
     * @param _tokenId - the NFT asset queried for royalty information
     * @param _salePrice - the sale price of the NFT asset specified by _tokenId
     * @return recipient - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for _salePrice
     */
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (address recipient, uint256 royaltyAmount) {
        recipient = _royaltyRecipients[_tokenId];
        royaltyAmount = (_salePrice * ROYALTY_BPS) / TOTAL_SHARES;
    }

    /**
     * @notice This function is used when the artist decides to set the royalty recipient to an address other than its own.
     * It adds the artist address to the `artists` mapping in {ERC2981Communal}, in order to use it for access control in `setRoyaltyRecipient()`. This removes the burden of setting this mapping in the `mint()` function as it will rarely be needed.
     * @param _royaltyRecipient (likely a payment splitter contract) may be 0x0 although it is not intended as ETH would be burnt if sent to 0x0. If the user only wants to mint it should call mint() instead, so that the roy
     *
     * Require:
     *
     * - If the `artists` for `_tokenId` mapping is empty, the minter's address is equal to `_royaltyRecipients[_tokenId]`. I.e. the caller must correspond to `_royaltyRecipients[_tokenId]`, i.e. the token minter/artist
     * - Else, the caller must correspond to the `_tokenId`'s minter address set in `artists[_tokenId]`, i.e. if `artists[_tokenId]` is not 0x0. Note that the artist address cannot be reset.
     *
     * Allow:
     *
     * - the minter may (re)set `_royaltyRecipients[_tokenId]` to the same address as `artists[_tokenId]`, i.e. the minter/artist. This would be quite useless, but not dangerous. The frontend should disallow it.
     *
     */
    function setRoyaltyRecipient(
        address _royaltyRecipient,
        uint256 _tokenId
    ) external {
        if (artists[_tokenId] == address(0)) {
            require(msg.sender == _royaltyRecipients[_tokenId]); // require that the token has already been minted and that the caller is the minter
            artists[_tokenId] = msg.sender;
        } else {
            require(msg.sender == artists[_tokenId]);
        }

        _royaltyRecipients[_tokenId] = payable(_royaltyRecipient);
    }
}

File 5 of 10 : ERC1155URIStorage.sol
/*----------------------------------------------------------*|
|*          ███    ██ ██ ███    ██ ███████  █████           *|
|*          ████   ██ ██ ████   ██ ██      ██   ██          *|
|*          ██ ██  ██ ██ ██ ██  ██ █████   ███████          *|
|*          ██  ██ ██ ██ ██  ██ ██ ██      ██   ██          *|
|*          ██   ████ ██ ██   ████ ██      ██   ██          *|
|*----------------------------------------------------------*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "../ERC1155.sol";
import "../../../utils/DecodeTokenURI.sol";

/**
 * @dev ERC1155 token with storage based token URI management.
 */
abstract contract ERC1155URIStorage is ERC1155 {
    using DecodeTokenURI for bytes;

    /**
     * @dev _baseURI is hardcoded and cannot be modified, as the expected token URI MUST be an IPFSv1 hash
     */
    string private _baseURI = "ipfs://";
    /**
     * @dev Optional mapping for token URIs. Internal as needs to be read by child implementation
     *      returns bytes32 IPFS hash
     */
    mapping(uint256 => bytes32) internal _tokenURIs;

    /**
     * @dev Returns the URI for token type `id`.
     */
    function uri(uint256 tokenId) public view returns (string memory) {
        require(_tokenURIs[tokenId] != 0x00, "ERC1155: nonexistent token");
        return
            string( // once hex decoded base58 is converted to string, we get the initial IPFS hash
                abi.encodePacked(
                    _baseURI,
                    abi
                    .encodePacked( // full bytes of base58 + hex encoded IPFS hash example.
                        bytes2(0x1220), // prepending 2 bytes IPFS hash identifier that was removed before storing the hash in order to fit in bytes32. 0x1220 is "Qm" base58 and hex encoded
                        _tokenURIs[tokenId] // bytes32(tokenId) // tokenURI (IPFS hash) with its first 2 bytes truncated, base58 and hex encoded returned as bytes32
                    ).toBase58()
                )
            );
    }
}

File 6 of 10 : ERC1155Supply.sol
/*----------------------------------------------------------*|
|*          ███    ██ ██ ███    ██ ███████  █████           *|
|*          ████   ██ ██ ████   ██ ██      ██   ██          *|
|*          ██ ██  ██ ██ ██ ██  ██ █████   ███████          *|
|*          ██  ██ ██ ██ ██  ██ ██ ██      ██   ██          *|
|*          ██   ████ ██ ██   ████ ██      ██   ██          *|
|*----------------------------------------------------------*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 *
 */
abstract contract ERC1155Supply is ERC1155 {
    /**
     * @dev keeps track of per-token id's total supply, as well as overall supply.
     *      also used as a counter when minting, by reading the .length property of the array.
     * @dev toalSupply MUST be incremented by the implementing contract, as `_beforeTokenTransfer` function
     *      has been removed in order to make normal (non-mint) transfers cheaper.
     */
    uint256[] internal _totalSupply;

    /**
     * @dev Total amount of tokens in with a given _id.
     * @dev > The total value transferred from address 0x0 minus the total value transferred to 0x0 observed via the TransferSingle and TransferBatch events MAY be used by clients and exchanges to determine the “circulating supply” for a given token ID.
     */
    function totalSupply(uint256 _id) public view returns (uint256) {
        return _totalSupply[_id];
    }

    /**
     * @dev Amount of unique token ids in this collection, required in order to
     *      enumerate `_totalSupply` (or `_tokenURIs`, see {ERC1155URIStorage-uri}) from a client
     */
    function totalSupply() external view returns (uint256) {
        return _totalSupply.length;
    }

    /**
     * @dev Indicates whether any token exist with a given _id, or not.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function exists(uint256 _id) public view returns (bool) {
        return _totalSupply.length > _id;
    }
}

File 7 of 10 : ERC1155Burnable.sol
/*----------------------------------------------------------*|
|*          ███    ██ ██ ███    ██ ███████  █████           *|
|*          ████   ██ ██ ████   ██ ██      ██   ██          *|
|*          ██ ██  ██ ██ ██ ██  ██ █████   ███████          *|
|*          ██  ██ ██ ██ ██  ██ ██ ██      ██   ██          *|
|*          ██   ████ ██ ██   ████ ██      ██   ██          *|
|*----------------------------------------------------------*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "../ERC1155.sol";

/*************************************************************
 * @title ERC1155Burnable                                    *
 *                                                           *
 * @notice  ERC-1155 burnable extension                      *
 *                                                           *
 * @custom:security-contact [email protected]                    *
 ************************************************************/

contract ERC1155Burnable is ERC1155 {
    function burn(address _from, uint256 _id, uint256 _value) public virtual {
        require(msg.sender == _from || isApprovedForAll[_from][msg.sender]);

        _burn(_from, _id, _value);
    }
}

File 8 of 10 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;

interface IERC1155Receiver {
    /**
     * @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 9 of 10 : ERC1155.sol
/*----------------------------------------------------------*|
|*          ███    ██ ██ ███    ██ ███████  █████           *|
|*          ████   ██ ██ ████   ██ ██      ██   ██          *|
|*          ██ ██  ██ ██ ██ ██  ██ █████   ███████          *|
|*          ██  ██ ██ ██ ██  ██ ██ ██      ██   ██          *|
|*          ██   ████ ██ ██   ████ ██      ██   ██          *|
|*----------------------------------------------------------*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

import "./IERC1155Receiver.sol";

/*************************************************************
 * @title ERC1155                                            *
 *                                                           *
 * @notice Gas efficient standard ERC1155 implementation.    *
 *                                                           *
 * @author Fork of solmate ERC1155                           *
 *      https://github.com/Rari-Capital/solmate/             *
 *                                                           *
 * @dev includes `_totalSupply` array needed in order to     *
 *      implement a maxSupply limit for lazy minting         *
 *                                                           *
 * @custom:security-contact [email protected]                    *
 ************************************************************/

contract ERC1155 {
    /*----------------------------------------------------------*|
    |*  # EVENTS                                                *|
    |*----------------------------------------------------------*/

    event TransferSingle(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256 id,
        uint256 value
    );

    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    event URI(string value, uint256 indexed id);

    /*----------------------------------------------------------*|
    |*  # ERC-1155 STORAGE LOGIC                                *|
    |*----------------------------------------------------------*/

    mapping(address => mapping(uint256 => uint256)) internal _balanceOf;

    mapping(address => mapping(address => bool)) public isApprovedForAll; // Mapping from account to operator approvals

    /*----------------------------------------------------------*|
    |*  # ERC-1155 LOGIC                                        *|
    |*----------------------------------------------------------*/

    function setApprovalForAll(address operator, bool approved) public {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) public {
        require(
            msg.sender == from || isApprovedForAll[from][msg.sender],
            "ERC1155: NOT_AUTHORIZED"
        );

        _balanceOf[from][id] -= amount;
        _balanceOf[to][id] += amount;

        emit TransferSingle(msg.sender, from, to, id, amount);

        require(
            to.code.length == 0
                ? to != address(0)
                : IERC1155Receiver(to).onERC1155Received(
                    msg.sender,
                    from,
                    id,
                    amount,
                    data
                ) == IERC1155Receiver.onERC1155Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external {
        require(ids.length == amounts.length, "LENGTH_MISMATCH");

        require(
            msg.sender == from || isApprovedForAll[from][msg.sender],
            "NOT_AUTHORIZED"
        );

        // Storing these outside the loop saves ~15 gas per iteration.
        uint256 id;
        uint256 amount;

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

            _balanceOf[from][id] -= amount;
            _balanceOf[to][id] += amount;

            // An array can't have a total length
            // larger than the max uint256 value.
            unchecked {
                ++i;
            }
        }

        emit TransferBatch(msg.sender, from, to, ids, amounts);

        require(
            to.code.length == 0
                ? to != address(0)
                : IERC1155Receiver(to).onERC1155BatchReceived(
                    msg.sender,
                    from,
                    ids,
                    amounts,
                    data
                ) == IERC1155Receiver.onERC1155BatchReceived.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function balanceOfBatch(
        address[] calldata owners,
        uint256[] calldata ids
    ) external view returns (uint256[] memory balances) {
        require(owners.length == ids.length, "LENGTH_MISMATCH");

        balances = new uint256[](owners.length);

        // Unchecked because the only math done is incrementing
        // the array index counter which cannot possibly overflow.
        unchecked {
            for (uint256 i = 0; i < owners.length; ++i) {
                balances[i] = _balanceOf[owners[i]][ids[i]];
            }
        }
    }

    function balanceOf(
        address _owner,
        uint256 _id
    ) external view returns (uint256 balance) {
        balance = _balanceOf[_owner][_id];
    }

    /*----------------------------------------------------------*|
    |*  # INTERNAL MINT/BURN LOGIC                              *|
    |*----------------------------------------------------------*/

    function _mint(
        address _to,
        uint256 _id,
        uint256 _amount,
        bytes memory _data
    ) internal {
        _balanceOf[_to][_id] += _amount;

        emit TransferSingle(msg.sender, address(0), _to, _id, _amount);

        if (_to.code.length > 0)
            require(
                IERC1155Receiver(_to).onERC1155Received(
                    msg.sender,
                    address(0),
                    _id,
                    _amount,
                    _data
                ) == IERC1155Receiver.onERC1155Received.selector,
                "UNSAFE_RECIPIENT"
            );
    }

    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal {
        uint256 idsLength = ids.length; // Saves MLOADs.

        require(idsLength == amounts.length, "LENGTH_MISMATCH");

        for (uint256 i = 0; i < idsLength; ) {
            _balanceOf[to][ids[i]] += amounts[i];

            // An array can't have a total length
            // larger than the max uint256 value.
            unchecked {
                ++i;
            }
        }

        emit TransferBatch(msg.sender, address(0), to, ids, amounts);

        require(
            to.code.length == 0
                ? to != address(0)
                : IERC1155Receiver(to).onERC1155BatchReceived(
                    msg.sender,
                    address(0),
                    ids,
                    amounts,
                    data
                ) == IERC1155Receiver.onERC1155BatchReceived.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function _burn(address _from, uint256 _id, uint256 _value) internal {
        // `require(fromBalance >= _value)` is implicitly enforced
        _balanceOf[_from][_id] -= _value;

        emit TransferSingle(msg.sender, _from, address(0), _id, _value);
    }
}

File 10 of 10 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity 0.8.17;

import "../utils/Strings.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 internal constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, msg.sender);
        _;
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(
        bytes32 role,
        address account
    ) external onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(
        bytes32 role,
        address account
    ) external onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external {
        require(
            account == msg.sender,
            "AccessControl: can only renounce roles for self"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, msg.sender);
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, msg.sender);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"feeAccount_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"balances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"tokenUri","type":"bytes32"},{"internalType":"uint256","name":"unitPrice","type":"uint256"},{"internalType":"uint256","name":"totalValue","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"saleCommissionBps","type":"uint256"},{"internalType":"address","name":"saleCommissionRecipient","type":"address"}],"internalType":"struct NinfaERC1155.Voucher","name":"_voucher","type":"tuple"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"lazyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feeAccount_","type":"address"}],"name":"setFeeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"primaryFeeBps_","type":"uint24"}],"name":"setPrimaryFeeBps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"setRoyaltyRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60c06040526040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600590816200004a9190620006c8565b506040518060400160405280600581526020017f4e494e464100000000000000000000000000000000000000000000000000000081525060099081620000919190620006c8565b506040518060400160405280600581526020017f4e494e4641000000000000000000000000000000000000000000000000000000815250600a9081620000d89190620006c8565b50348015620000e657600080fd5b5060405162004ce638038062004ce683398181016040528101906200010c919062000819565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fdb3dd9b854cdb7551722584c7e89b5df9798432c0c9ee9bc6f62a8edfed5dac44630604051602001620001659493929190620008f3565b60405160208183030381529060405280519060200120608081815250507f350a233db2f54fda9b566a45e905d414d1a8b530448fee5695f50c84740c678c60a08181525050620001bf6000801b336200028060201b60201c565b620002177f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a660001b7f850d585eb7f024ccee5e68e55f2c26cc72e1e6ee456acf62135757a5eb9d4a1060001b6200036260201b60201c565b80600860036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103e8600860006101000a81548162ffffff021916908362ffffff1602179055505062000940565b620002928282620003c560201b60201c565b6200035e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000375836200042f60201b60201c565b905081600080858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000806000838152602001908152602001600020600101549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004d057607f821691505b602082108103620004e657620004e562000488565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000511565b6200055c868362000511565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005a9620005a36200059d8462000574565b6200057e565b62000574565b9050919050565b6000819050919050565b620005c58362000588565b620005dd620005d482620005b0565b8484546200051e565b825550505050565b600090565b620005f4620005e5565b62000601818484620005ba565b505050565b5b8181101562000629576200061d600082620005ea565b60018101905062000607565b5050565b601f82111562000678576200064281620004ec565b6200064d8462000501565b810160208510156200065d578190505b620006756200066c8562000501565b83018262000606565b50505b505050565b600082821c905092915050565b60006200069d600019846008026200067d565b1980831691505092915050565b6000620006b883836200068a565b9150826002028217905092915050565b620006d3826200044e565b67ffffffffffffffff811115620006ef57620006ee62000459565b5b620006fb8254620004b7565b620007088282856200062d565b600060209050601f8311600181146200074057600084156200072b578287015190505b620007378582620006aa565b865550620007a7565b601f1984166200075086620004ec565b60005b828110156200077a5784890151825560018201915060208501945060208101905062000753565b868310156200079a578489015162000796601f8916826200068a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007e182620007b4565b9050919050565b620007f381620007d4565b8114620007ff57600080fd5b50565b6000815190506200081381620007e8565b92915050565b600060208284031215620008325762000831620007af565b5b6000620008428482850162000802565b91505092915050565b6000819050919050565b600062000876620008706200086a846200084b565b6200057e565b62000574565b9050919050565b620008888162000855565b82525050565b6000819050919050565b6000620008b9620008b3620008ad846200088e565b6200057e565b62000574565b9050919050565b620008cb8162000898565b82525050565b620008dc8162000574565b82525050565b620008ed81620007d4565b82525050565b60006080820190506200090a60008301876200087d565b620009196020830186620008c0565b620009286040830185620008d1565b620009376060830184620008e2565b95945050505050565b60805160a051614380620009666000396000612311015260006122f001526143806000f3fe60806040526004361061014a5760003560e01c80634e1273f4116100b6578063a22cb4651161006f578063a22cb465146104cb578063bd85b039146104f4578063d547741f14610531578063e985e9c51461055a578063f242432a14610597578063f5298aca146105c05761014a565b80634e1273f4146103a45780634f558e79146103e15780636ca2045b1461041e57806391d148541461043a57806395d89b41146104775780639fd43085146104a25761014a565b80632a55205a116101085780632a55205a146102995780632eb2c2d6146102d75780632f2ff15d1461030057806336568abe146103295780634b023cf8146103525780634c0f05da1461037b5761014a565b8062fdd58e1461014f57806301ffc9a71461018c57806306fdde03146101c95780630e89341c146101f457806318160ddd14610231578063248a9ca31461025c575b600080fd5b34801561015b57600080fd5b5061017660048036038101906101719190612c2a565b6105e9565b6040516101839190612c79565b60405180910390f35b34801561019857600080fd5b506101b360048036038101906101ae9190612cec565b610644565b6040516101c09190612d34565b60405180910390f35b3480156101d557600080fd5b506101de610736565b6040516101eb9190612ddf565b60405180910390f35b34801561020057600080fd5b5061021b60048036038101906102169190612e01565b6107c4565b6040516102289190612ddf565b60405180910390f35b34801561023d57600080fd5b50610246610889565b6040516102539190612c79565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612e64565b610896565b6040516102909190612ea0565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612ebb565b6108b5565b6040516102ce929190612f0a565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612fee565b61091c565b005b34801561030c57600080fd5b50610327600480360381019061032291906130ca565b610d7a565b005b34801561033557600080fd5b50610350600480360381019061034b91906130ca565b610d9c565b005b34801561035e57600080fd5b506103796004803603810190610374919061310a565b610e18565b005b34801561038757600080fd5b506103a2600480360381019061039d9190613172565b610e6b565b005b3480156103b057600080fd5b506103cb60048036038101906103c691906131f5565b610e9c565b6040516103d89190613334565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612e01565b611006565b6040516104159190612d34565b60405180910390f35b610438600480360381019061043391906134aa565b611017565b005b34801561044657600080fd5b50610461600480360381019061045c91906130ca565b6115cc565b60405161046e9190612d34565b60405180910390f35b34801561048357600080fd5b5061048c611636565b6040516104999190612ddf565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190612c2a565b6116c4565b005b3480156104d757600080fd5b506104f260048036038101906104ed91906135a5565b6118af565b005b34801561050057600080fd5b5061051b60048036038101906105169190612e01565b6119ac565b6040516105289190612c79565b60405180910390f35b34801561053d57600080fd5b50610558600480360381019061055391906130ca565b6119d4565b005b34801561056657600080fd5b50610581600480360381019061057c91906135e5565b6119f6565b60405161058e9190612d34565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190613625565b611a25565b005b3480156105cc57600080fd5b506105e760048036038101906105e291906136bf565b611dda565b005b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069f575063d9b67a2660e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cf5750630e89341c60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ff5750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072f5750637965db0b60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6009805461074390613741565b80601f016020809104026020016040519081016040528092919081815260200182805461076f90613741565b80156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b505050505081565b60606000801b60066000848152602001908152602001600020540361081e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610815906137be565b60405180910390fd5b600561086261122060f01b600660008681526020019081526020016000205460405160200161084e92919061384c565b604051602081830303815290604052611e54565b604051602001610873929190613962565b6040516020818303038152906040529050919050565b6000600780549050905090565b6000806000838152602001908152602001600020600101549050919050565b6000806001600085815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915061271062ffffff166103e862ffffff168461090991906139b5565b6109139190613a26565b90509250929050565b838390508686905014610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90613aa3565b60405180910390fd5b8773ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a245750600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613b0f565b60405180910390fd5b60008060005b88889050811015610b8557888882818110610a8757610a86613b2f565b5b905060200201359250868682818110610aa357610aa2613b2f565b5b90506020020135915081600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008581526020019081526020016000206000828254610b0c9190613b5e565b9250508190555081600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008581526020019081526020016000206000828254610b739190613b92565b92505081905550806001019050610a69565b508873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8b8b8b8b604051610c009493929190613c30565b60405180910390a460008973ffffffffffffffffffffffffffffffffffffffff163b14610cfd5763bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168973ffffffffffffffffffffffffffffffffffffffff1663bc197c81338d8c8c8c8c8c8c6040518963ffffffff1660e01b8152600401610c95989796959493929190613ca9565b6020604051808303816000875af1158015610cb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd89190613d2c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610d2f565b600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590613da5565b60405180910390fd5b50505050505050505050565b610d8382610896565b610d8d813361209b565b610d978383612138565b505050565b3373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190613e37565b60405180910390fd5b610e148282612211565b5050565b6000801b610e26813361209b565b81600860036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000801b610e79813361209b565b81600860006101000a81548162ffffff021916908362ffffff1602179055505050565b6060828290508585905014610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90613aa3565b60405180910390fd5b8484905067ffffffffffffffff811115610f0357610f0261337f565b5b604051908082528060200260200182016040528015610f315781602001602082028036833780820191505090505b50905060005b85859050811015610ffd5760036000878784818110610f5957610f58613b2f565b5b9050602002016020810190610f6e919061310a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858584818110610fbd57610fbc613b2f565b5b90506020020135815260200190815260200160002054828281518110610fe657610fe5613b2f565b5b602002602001018181525050806001019050610f37565b50949350505050565b600081600780549050119050919050565b600061102388856122eb565b9050600086896020013561103791906139b5565b9050803414801561104b5750886060013542105b61105457600080fd5b61105d88611006565b156111a057600660008981526020019081526020016000205489600001351480156110bf575088604001358760078a8154811061109d5761109c613b2f565b5b9060005260206000200160008282546110b69190613b92565b92505081905511155b801561119257506001600089815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061119157506002600089815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b61119b57600080fd5b611286565b886040013587111580156111dd57506111dc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a660001b836115cc565b5b6111e657600080fd5b600780549050975060078790806001815401808255809150506001900390600052602060002001600090919091909150558860000135600660008a81526020019081526020016000208190555081600160008a815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b86600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a8152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628b8b60405161135b929190613e57565b60405180910390a48573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628b8b6040516113d9929190613e57565b60405180910390a46000612710600860009054906101000a900462ffffff1662ffffff163461140891906139b5565b6114129190613a26565b905080826114209190613b5e565b915061144e600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612462565b60008a6080013511156114a85760006127108b608001353461147091906139b5565b61147a9190613a26565b905080836114889190613b5e565b92506114a68b60a00160208101906114a0919061310a565b82612462565b505b6114b28383612462565b60008773ffffffffffffffffffffffffffffffffffffffff163b11156115c05763f23a6e6160e01b8773ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133868d8d8b8b6040518763ffffffff1660e01b815260040161151d96959493929190613e80565b6020604051808303816000875af115801561153c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115609190613d2c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b690613da5565b60405180910390fd5b5b50505050505050505050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a805461164390613741565b80601f016020809104026020016040519081016040528092919081815260200182805461166f90613741565b80156116bc5780601f10611691576101008083540402835291602001916116bc565b820191906000526020600020905b81548152906001019060200180831161169f57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036117ed576001600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461179657600080fd5b336002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611859565b6002600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461185857600080fd5b5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a09190612d34565b60405180910390a35050565b6000600782815481106119c2576119c1613b2f565b5b90600052602060002001549050919050565b6119dd82610896565b6119e7813361209b565b6119f18383612211565b505050565b60046020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b8573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611ae55750600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b90613f28565b60405180910390fd5b82600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000206000828254611b849190613b5e565b9250508190555082600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000206000828254611beb9190613b92565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611c68929190613e57565b60405180910390a460008573ffffffffffffffffffffffffffffffffffffffff163b14611d615763f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168573ffffffffffffffffffffffffffffffffffffffff1663f23a6e613389888888886040518763ffffffff1660e01b8152600401611cf996959493929190613e80565b6020604051808303816000875af1158015611d18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3c9190613d2c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611d93565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613da5565b60405180910390fd5b505050505050565b611de58383836124dd565b8060078381548110611dfa57611df9613b2f565b5b9060005260206000200160008282540392505081905550600060078381548110611e2757611e26613b2f565b5b906000526020600020015403611e4f5760066000838152602001908152602001600020600090555b505050565b60606000825103611eb457600067ffffffffffffffff811115611e7a57611e7961337f565b5b6040519080825280601f01601f191660200182016040528015611eac5781602001600182028036833780820191505090505b509050612096565b6000604067ffffffffffffffff811115611ed157611ed061337f565b5b604051908082528060200260200182016040528015611eff5781602001602082028036833780820191505090505b509050600081600081518110611f1857611f17613b2f565b5b602002602001019060ff16908160ff168152505060006001905060005b8451811015612076576000858281518110611f5357611f52613b2f565b5b602001015160f81c60f81b60f81c60ff16905060005b8360ff1681101561200057610100858281518110611f8a57611f89613b2f565b5b602002602001015160ff16611f9f91906139b5565b82611faa9190613b92565b9150603a82611fb99190613f48565b858281518110611fcc57611fcb613b2f565b5b602002602001019060ff16908160ff1681525050603a82611fed9190613a26565b915080611ff990613f79565b9050611f69565b505b600081111561206457603a816120189190613f48565b848460ff168151811061202e5761202d613b2f565b5b602002602001019060ff16908160ff1681525050828061204d90613fce565b935050603a8161205d9190613a26565b9050612002565b508061206f90613f79565b9050611f35565b5061209161208c61208784846125b6565b612676565b612749565b925050505b919050565b6120a582826115cc565b612134576120ca8173ffffffffffffffffffffffffffffffffffffffff16601461285b565b6120d88360001c602061285b565b6040516020016120e99291906140c0565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b9190612ddf565b60405180910390fd5b5050565b61214282826115cc565b61220d57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61221b82826115cc565b156122e757600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000807f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000856000013586602001358760400135886060013589608001358a60a001602081019061235c919061310a565b60405160200161237297969594939291906140fa565b604051602081830303815290604052805190602001206040516020016123999291906141b5565b60405160208183030381529060405280519060200120905060008060006020860151925060408601519150606086015160001a9050600184828585604051600081526020016040526040516123f194939291906141fb565b6020604051602081039080840390855afa158015612413573d6000803e3d6000fd5b505050602060405103519450600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361245857600080fd5b5050505092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161248890614266565b60006040518083038185875af1925050503d80600081146124c5576040519150601f19603f3d011682016040523d82523d6000602084013e6124ca565b606091505b50509050806124d857600080fd5b505050565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061259d5750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6125a657600080fd5b6125b1838383612a97565b505050565b606060008260ff1667ffffffffffffffff8111156125d7576125d661337f565b5b6040519080825280602002602001820160405280156126055781602001602082028036833780820191505090505b50905060005b8360ff1681101561266b5784818151811061262957612628613b2f565b5b602002602001015182828151811061264457612643613b2f565b5b602002602001019060ff16908160ff1681525050808061266390613f79565b91505061260b565b508091505092915050565b60606000825167ffffffffffffffff8111156126955761269461337f565b5b6040519080825280602002602001820160405280156126c35781602001602082028036833780820191505090505b50905060005b835181101561273f578381600186516126e29190613b5e565b6126ec9190613b5e565b815181106126fd576126fc613b2f565b5b602002602001015182828151811061271857612717613b2f565b5b602002602001019060ff16908160ff1681525050808061273790613f79565b9150506126c9565b5080915050919050565b60606000825167ffffffffffffffff8111156127685761276761337f565b5b6040519080825280601f01601f19166020018201604052801561279a5781602001600182028036833780820191505090505b50905060005b8351811015612851576040518060600160405280603a8152602001614311603a91398482815181106127d5576127d4613b2f565b5b602002602001015160ff16815181106127f1576127f0613b2f565b5b602001015160f81c60f81b82828151811061280f5761280e613b2f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061284990613f79565b9150506127a0565b5080915050919050565b60606000600283600261286e91906139b5565b6128789190613b92565b67ffffffffffffffff8111156128915761289061337f565b5b6040519080825280601f01601f1916602001820160405280156128c35781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106128fb576128fa613b2f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061295f5761295e613b2f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261299f91906139b5565b6129a99190613b92565b90505b6001811115612a49577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106129eb576129ea613b2f565b5b1a60f81b828281518110612a0257612a01613b2f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612a429061427b565b90506129ac565b5060008414612a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a84906142f0565b60405180910390fd5b8091505092915050565b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000206000828254612af79190613b5e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051612b75929190613e57565b60405180910390a4505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bc182612b96565b9050919050565b612bd181612bb6565b8114612bdc57600080fd5b50565b600081359050612bee81612bc8565b92915050565b6000819050919050565b612c0781612bf4565b8114612c1257600080fd5b50565b600081359050612c2481612bfe565b92915050565b60008060408385031215612c4157612c40612b8c565b5b6000612c4f85828601612bdf565b9250506020612c6085828601612c15565b9150509250929050565b612c7381612bf4565b82525050565b6000602082019050612c8e6000830184612c6a565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cc981612c94565b8114612cd457600080fd5b50565b600081359050612ce681612cc0565b92915050565b600060208284031215612d0257612d01612b8c565b5b6000612d1084828501612cd7565b91505092915050565b60008115159050919050565b612d2e81612d19565b82525050565b6000602082019050612d496000830184612d25565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d89578082015181840152602081019050612d6e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612db182612d4f565b612dbb8185612d5a565b9350612dcb818560208601612d6b565b612dd481612d95565b840191505092915050565b60006020820190508181036000830152612df98184612da6565b905092915050565b600060208284031215612e1757612e16612b8c565b5b6000612e2584828501612c15565b91505092915050565b6000819050919050565b612e4181612e2e565b8114612e4c57600080fd5b50565b600081359050612e5e81612e38565b92915050565b600060208284031215612e7a57612e79612b8c565b5b6000612e8884828501612e4f565b91505092915050565b612e9a81612e2e565b82525050565b6000602082019050612eb56000830184612e91565b92915050565b60008060408385031215612ed257612ed1612b8c565b5b6000612ee085828601612c15565b9250506020612ef185828601612c15565b9150509250929050565b612f0481612bb6565b82525050565b6000604082019050612f1f6000830185612efb565b612f2c6020830184612c6a565b9392505050565b600080fd5b600080fd5b600080fd5b60008083601f840112612f5857612f57612f33565b5b8235905067ffffffffffffffff811115612f7557612f74612f38565b5b602083019150836020820283011115612f9157612f90612f3d565b5b9250929050565b60008083601f840112612fae57612fad612f33565b5b8235905067ffffffffffffffff811115612fcb57612fca612f38565b5b602083019150836001820283011115612fe757612fe6612f3d565b5b9250929050565b60008060008060008060008060a0898b03121561300e5761300d612b8c565b5b600061301c8b828c01612bdf565b985050602061302d8b828c01612bdf565b975050604089013567ffffffffffffffff81111561304e5761304d612b91565b5b61305a8b828c01612f42565b9650965050606089013567ffffffffffffffff81111561307d5761307c612b91565b5b6130898b828c01612f42565b9450945050608089013567ffffffffffffffff8111156130ac576130ab612b91565b5b6130b88b828c01612f98565b92509250509295985092959890939650565b600080604083850312156130e1576130e0612b8c565b5b60006130ef85828601612e4f565b925050602061310085828601612bdf565b9150509250929050565b6000602082840312156131205761311f612b8c565b5b600061312e84828501612bdf565b91505092915050565b600062ffffff82169050919050565b61314f81613137565b811461315a57600080fd5b50565b60008135905061316c81613146565b92915050565b60006020828403121561318857613187612b8c565b5b60006131968482850161315d565b91505092915050565b60008083601f8401126131b5576131b4612f33565b5b8235905067ffffffffffffffff8111156131d2576131d1612f38565b5b6020830191508360208202830111156131ee576131ed612f3d565b5b9250929050565b6000806000806040858703121561320f5761320e612b8c565b5b600085013567ffffffffffffffff81111561322d5761322c612b91565b5b6132398782880161319f565b9450945050602085013567ffffffffffffffff81111561325c5761325b612b91565b5b61326887828801612f42565b925092505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6132ab81612bf4565b82525050565b60006132bd83836132a2565b60208301905092915050565b6000602082019050919050565b60006132e182613276565b6132eb8185613281565b93506132f683613292565b8060005b8381101561332757815161330e88826132b1565b9750613319836132c9565b9250506001810190506132fa565b5085935050505092915050565b6000602082019050818103600083015261334e81846132d6565b905092915050565b600080fd5b600060c0828403121561337157613370613356565b5b81905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133b782612d95565b810181811067ffffffffffffffff821117156133d6576133d561337f565b5b80604052505050565b60006133e9612b82565b90506133f582826133ae565b919050565b600067ffffffffffffffff8211156134155761341461337f565b5b61341e82612d95565b9050602081019050919050565b82818337600083830152505050565b600061344d613448846133fa565b6133df565b9050828152602081018484840111156134695761346861337a565b5b61347484828561342b565b509392505050565b600082601f83011261349157613490612f33565b5b81356134a184826020860161343a565b91505092915050565b6000806000806000806000610160888a0312156134ca576134c9612b8c565b5b60006134d88a828b0161335b565b97505060c06134e98a828b01612c15565b96505060e06134fa8a828b01612c15565b95505061010061350c8a828b01612bdf565b94505061012088013567ffffffffffffffff81111561352e5761352d612b91565b5b61353a8a828b0161347c565b93505061014088013567ffffffffffffffff81111561355c5761355b612b91565b5b6135688a828b01612f98565b925092505092959891949750929550565b61358281612d19565b811461358d57600080fd5b50565b60008135905061359f81613579565b92915050565b600080604083850312156135bc576135bb612b8c565b5b60006135ca85828601612bdf565b92505060206135db85828601613590565b9150509250929050565b600080604083850312156135fc576135fb612b8c565b5b600061360a85828601612bdf565b925050602061361b85828601612bdf565b9150509250929050565b60008060008060008060a0878903121561364257613641612b8c565b5b600061365089828a01612bdf565b965050602061366189828a01612bdf565b955050604061367289828a01612c15565b945050606061368389828a01612c15565b935050608087013567ffffffffffffffff8111156136a4576136a3612b91565b5b6136b089828a01612f98565b92509250509295509295509295565b6000806000606084860312156136d8576136d7612b8c565b5b60006136e686828701612bdf565b93505060206136f786828701612c15565b925050604061370886828701612c15565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061375957607f821691505b60208210810361376c5761376b613712565b5b50919050565b7f455243313135353a206e6f6e6578697374656e7420746f6b656e000000000000600082015250565b60006137a8601a83612d5a565b91506137b382613772565b602082019050919050565b600060208201905081810360008301526137d78161379b565b9050919050565b60007fffff00000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b613825613820826137de565b61380a565b82525050565b6000819050919050565b61384661384182612e2e565b61382b565b82525050565b60006138588285613814565b6002820191506138688284613835565b6020820191508190509392505050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138a581613741565b6138af8186613878565b945060018216600081146138ca57600181146138df57613912565b60ff1983168652811515820286019350613912565b6138e885613883565b60005b8381101561390a578154818901526001820191506020810190506138eb565b838801955050505b50505092915050565b600081519050919050565b600081905092915050565b600061393c8261391b565b6139468185613926565b9350613956818560208601612d6b565b80840191505092915050565b600061396e8285613898565b915061397a8284613931565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139c082612bf4565b91506139cb83612bf4565b92508282026139d981612bf4565b915082820484148315176139f0576139ef613986565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a3182612bf4565b9150613a3c83612bf4565b925082613a4c57613a4b6139f7565b5b828204905092915050565b7f4c454e4754485f4d49534d415443480000000000000000000000000000000000600082015250565b6000613a8d600f83612d5a565b9150613a9882613a57565b602082019050919050565b60006020820190508181036000830152613abc81613a80565b9050919050565b7f4e4f545f415554484f52495a4544000000000000000000000000000000000000600082015250565b6000613af9600e83612d5a565b9150613b0482613ac3565b602082019050919050565b60006020820190508181036000830152613b2881613aec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b6982612bf4565b9150613b7483612bf4565b9250828203905081811115613b8c57613b8b613986565b5b92915050565b6000613b9d82612bf4565b9150613ba883612bf4565b9250828201905080821115613bc057613bbf613986565b5b92915050565b600080fd5b82818337505050565b6000613be08385613281565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115613c1357613c12613bc6565b5b602083029250613c24838584613bcb565b82840190509392505050565b60006040820190508181036000830152613c4b818688613bd4565b90508181036020830152613c60818486613bd4565b905095945050505050565b600082825260208201905092915050565b6000613c888385613c6b565b9350613c9583858461342b565b613c9e83612d95565b840190509392505050565b600060a082019050613cbe600083018b612efb565b613ccb602083018a612efb565b8181036040830152613cde81888a613bd4565b90508181036060830152613cf3818688613bd4565b90508181036080830152613d08818486613c7c565b90509998505050505050505050565b600081519050613d2681612cc0565b92915050565b600060208284031215613d4257613d41612b8c565b5b6000613d5084828501613d17565b91505092915050565b7f554e534146455f524543495049454e5400000000000000000000000000000000600082015250565b6000613d8f601083612d5a565b9150613d9a82613d59565b602082019050919050565b60006020820190508181036000830152613dbe81613d82565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613e21602f83612d5a565b9150613e2c82613dc5565b604082019050919050565b60006020820190508181036000830152613e5081613e14565b9050919050565b6000604082019050613e6c6000830185612c6a565b613e796020830184612c6a565b9392505050565b600060a082019050613e956000830189612efb565b613ea26020830188612efb565b613eaf6040830187612c6a565b613ebc6060830186612c6a565b8181036080830152613ecf818486613c7c565b9050979650505050505050565b7f455243313135353a204e4f545f415554484f52495a4544000000000000000000600082015250565b6000613f12601783612d5a565b9150613f1d82613edc565b602082019050919050565b60006020820190508181036000830152613f4181613f05565b9050919050565b6000613f5382612bf4565b9150613f5e83612bf4565b925082613f6e57613f6d6139f7565b5b828206905092915050565b6000613f8482612bf4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613fb657613fb5613986565b5b600182019050919050565b600060ff82169050919050565b6000613fd982613fc1565b915060ff8203613fec57613feb613986565b5b600182019050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061402d601783613878565b915061403882613ff7565b601782019050919050565b600061404e82612d4f565b6140588185613878565b9350614068818560208601612d6b565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006140aa601183613878565b91506140b582614074565b601182019050919050565b60006140cb82614020565b91506140d78285614043565b91506140e28261409d565b91506140ee8284614043565b91508190509392505050565b600060e08201905061410f600083018a612e91565b61411c6020830189612e91565b6141296040830188612c6a565b6141366060830187612c6a565b6141436080830186612c6a565b61415060a0830185612c6a565b61415d60c0830184612efb565b98975050505050505050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061419f600283613878565b91506141aa82614169565b600282019050919050565b60006141c082614192565b91506141cc8285613835565b6020820191506141dc8284613835565b6020820191508190509392505050565b6141f581613fc1565b82525050565b60006080820190506142106000830187612e91565b61421d60208301866141ec565b61422a6040830185612e91565b6142376060830184612e91565b95945050505050565b50565b6000614250600083613926565b915061425b82614240565b600082019050919050565b600061427182614243565b9150819050919050565b600061428682612bf4565b91506000820361429957614298613986565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006142da602083612d5a565b91506142e5826142a4565b602082019050919050565b60006020820190508181036000830152614309816142cd565b905091905056fe31323334353637383941424344454647484a4b4c4d4e505152535455565758595a6162636465666768696a6b6d6e6f707172737475767778797aa2646970667358221220d75fc6cc12463052af2b8d9a189a71ae7954ef8d5040a8384cac2776b8c73f9064736f6c63430008110033000000000000000000000000229946a96c34edd89c06d23dccbfa259e9752a7c

Deployed Bytecode

0x60806040526004361061014a5760003560e01c80634e1273f4116100b6578063a22cb4651161006f578063a22cb465146104cb578063bd85b039146104f4578063d547741f14610531578063e985e9c51461055a578063f242432a14610597578063f5298aca146105c05761014a565b80634e1273f4146103a45780634f558e79146103e15780636ca2045b1461041e57806391d148541461043a57806395d89b41146104775780639fd43085146104a25761014a565b80632a55205a116101085780632a55205a146102995780632eb2c2d6146102d75780632f2ff15d1461030057806336568abe146103295780634b023cf8146103525780634c0f05da1461037b5761014a565b8062fdd58e1461014f57806301ffc9a71461018c57806306fdde03146101c95780630e89341c146101f457806318160ddd14610231578063248a9ca31461025c575b600080fd5b34801561015b57600080fd5b5061017660048036038101906101719190612c2a565b6105e9565b6040516101839190612c79565b60405180910390f35b34801561019857600080fd5b506101b360048036038101906101ae9190612cec565b610644565b6040516101c09190612d34565b60405180910390f35b3480156101d557600080fd5b506101de610736565b6040516101eb9190612ddf565b60405180910390f35b34801561020057600080fd5b5061021b60048036038101906102169190612e01565b6107c4565b6040516102289190612ddf565b60405180910390f35b34801561023d57600080fd5b50610246610889565b6040516102539190612c79565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612e64565b610896565b6040516102909190612ea0565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190612ebb565b6108b5565b6040516102ce929190612f0a565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612fee565b61091c565b005b34801561030c57600080fd5b50610327600480360381019061032291906130ca565b610d7a565b005b34801561033557600080fd5b50610350600480360381019061034b91906130ca565b610d9c565b005b34801561035e57600080fd5b506103796004803603810190610374919061310a565b610e18565b005b34801561038757600080fd5b506103a2600480360381019061039d9190613172565b610e6b565b005b3480156103b057600080fd5b506103cb60048036038101906103c691906131f5565b610e9c565b6040516103d89190613334565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612e01565b611006565b6040516104159190612d34565b60405180910390f35b610438600480360381019061043391906134aa565b611017565b005b34801561044657600080fd5b50610461600480360381019061045c91906130ca565b6115cc565b60405161046e9190612d34565b60405180910390f35b34801561048357600080fd5b5061048c611636565b6040516104999190612ddf565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190612c2a565b6116c4565b005b3480156104d757600080fd5b506104f260048036038101906104ed91906135a5565b6118af565b005b34801561050057600080fd5b5061051b60048036038101906105169190612e01565b6119ac565b6040516105289190612c79565b60405180910390f35b34801561053d57600080fd5b50610558600480360381019061055391906130ca565b6119d4565b005b34801561056657600080fd5b50610581600480360381019061057c91906135e5565b6119f6565b60405161058e9190612d34565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190613625565b611a25565b005b3480156105cc57600080fd5b506105e760048036038101906105e291906136bf565b611dda565b005b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069f575063d9b67a2660e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cf5750630e89341c60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ff5750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072f5750637965db0b60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6009805461074390613741565b80601f016020809104026020016040519081016040528092919081815260200182805461076f90613741565b80156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b505050505081565b60606000801b60066000848152602001908152602001600020540361081e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610815906137be565b60405180910390fd5b600561086261122060f01b600660008681526020019081526020016000205460405160200161084e92919061384c565b604051602081830303815290604052611e54565b604051602001610873929190613962565b6040516020818303038152906040529050919050565b6000600780549050905090565b6000806000838152602001908152602001600020600101549050919050565b6000806001600085815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915061271062ffffff166103e862ffffff168461090991906139b5565b6109139190613a26565b90509250929050565b838390508686905014610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90613aa3565b60405180910390fd5b8773ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a245750600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613b0f565b60405180910390fd5b60008060005b88889050811015610b8557888882818110610a8757610a86613b2f565b5b905060200201359250868682818110610aa357610aa2613b2f565b5b90506020020135915081600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008581526020019081526020016000206000828254610b0c9190613b5e565b9250508190555081600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008581526020019081526020016000206000828254610b739190613b92565b92505081905550806001019050610a69565b508873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8b8b8b8b604051610c009493929190613c30565b60405180910390a460008973ffffffffffffffffffffffffffffffffffffffff163b14610cfd5763bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168973ffffffffffffffffffffffffffffffffffffffff1663bc197c81338d8c8c8c8c8c8c6040518963ffffffff1660e01b8152600401610c95989796959493929190613ca9565b6020604051808303816000875af1158015610cb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd89190613d2c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610d2f565b600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590613da5565b60405180910390fd5b50505050505050505050565b610d8382610896565b610d8d813361209b565b610d978383612138565b505050565b3373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190613e37565b60405180910390fd5b610e148282612211565b5050565b6000801b610e26813361209b565b81600860036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000801b610e79813361209b565b81600860006101000a81548162ffffff021916908362ffffff1602179055505050565b6060828290508585905014610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90613aa3565b60405180910390fd5b8484905067ffffffffffffffff811115610f0357610f0261337f565b5b604051908082528060200260200182016040528015610f315781602001602082028036833780820191505090505b50905060005b85859050811015610ffd5760036000878784818110610f5957610f58613b2f565b5b9050602002016020810190610f6e919061310a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858584818110610fbd57610fbc613b2f565b5b90506020020135815260200190815260200160002054828281518110610fe657610fe5613b2f565b5b602002602001018181525050806001019050610f37565b50949350505050565b600081600780549050119050919050565b600061102388856122eb565b9050600086896020013561103791906139b5565b9050803414801561104b5750886060013542105b61105457600080fd5b61105d88611006565b156111a057600660008981526020019081526020016000205489600001351480156110bf575088604001358760078a8154811061109d5761109c613b2f565b5b9060005260206000200160008282546110b69190613b92565b92505081905511155b801561119257506001600089815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061119157506002600089815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b61119b57600080fd5b611286565b886040013587111580156111dd57506111dc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a660001b836115cc565b5b6111e657600080fd5b600780549050975060078790806001815401808255809150506001900390600052602060002001600090919091909150558860000135600660008a81526020019081526020016000208190555081600160008a815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b86600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a8152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628b8b60405161135b929190613e57565b60405180910390a48573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628b8b6040516113d9929190613e57565b60405180910390a46000612710600860009054906101000a900462ffffff1662ffffff163461140891906139b5565b6114129190613a26565b905080826114209190613b5e565b915061144e600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612462565b60008a6080013511156114a85760006127108b608001353461147091906139b5565b61147a9190613a26565b905080836114889190613b5e565b92506114a68b60a00160208101906114a0919061310a565b82612462565b505b6114b28383612462565b60008773ffffffffffffffffffffffffffffffffffffffff163b11156115c05763f23a6e6160e01b8773ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133868d8d8b8b6040518763ffffffff1660e01b815260040161151d96959493929190613e80565b6020604051808303816000875af115801561153c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115609190613d2c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b690613da5565b60405180910390fd5b5b50505050505050505050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a805461164390613741565b80601f016020809104026020016040519081016040528092919081815260200182805461166f90613741565b80156116bc5780601f10611691576101008083540402835291602001916116bc565b820191906000526020600020905b81548152906001019060200180831161169f57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036117ed576001600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461179657600080fd5b336002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611859565b6002600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461185857600080fd5b5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a09190612d34565b60405180910390a35050565b6000600782815481106119c2576119c1613b2f565b5b90600052602060002001549050919050565b6119dd82610896565b6119e7813361209b565b6119f18383612211565b505050565b60046020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b8573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611ae55750600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b90613f28565b60405180910390fd5b82600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000206000828254611b849190613b5e565b9250508190555082600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000206000828254611beb9190613b92565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611c68929190613e57565b60405180910390a460008573ffffffffffffffffffffffffffffffffffffffff163b14611d615763f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168573ffffffffffffffffffffffffffffffffffffffff1663f23a6e613389888888886040518763ffffffff1660e01b8152600401611cf996959493929190613e80565b6020604051808303816000875af1158015611d18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3c9190613d2c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611d93565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613da5565b60405180910390fd5b505050505050565b611de58383836124dd565b8060078381548110611dfa57611df9613b2f565b5b9060005260206000200160008282540392505081905550600060078381548110611e2757611e26613b2f565b5b906000526020600020015403611e4f5760066000838152602001908152602001600020600090555b505050565b60606000825103611eb457600067ffffffffffffffff811115611e7a57611e7961337f565b5b6040519080825280601f01601f191660200182016040528015611eac5781602001600182028036833780820191505090505b509050612096565b6000604067ffffffffffffffff811115611ed157611ed061337f565b5b604051908082528060200260200182016040528015611eff5781602001602082028036833780820191505090505b509050600081600081518110611f1857611f17613b2f565b5b602002602001019060ff16908160ff168152505060006001905060005b8451811015612076576000858281518110611f5357611f52613b2f565b5b602001015160f81c60f81b60f81c60ff16905060005b8360ff1681101561200057610100858281518110611f8a57611f89613b2f565b5b602002602001015160ff16611f9f91906139b5565b82611faa9190613b92565b9150603a82611fb99190613f48565b858281518110611fcc57611fcb613b2f565b5b602002602001019060ff16908160ff1681525050603a82611fed9190613a26565b915080611ff990613f79565b9050611f69565b505b600081111561206457603a816120189190613f48565b848460ff168151811061202e5761202d613b2f565b5b602002602001019060ff16908160ff1681525050828061204d90613fce565b935050603a8161205d9190613a26565b9050612002565b508061206f90613f79565b9050611f35565b5061209161208c61208784846125b6565b612676565b612749565b925050505b919050565b6120a582826115cc565b612134576120ca8173ffffffffffffffffffffffffffffffffffffffff16601461285b565b6120d88360001c602061285b565b6040516020016120e99291906140c0565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b9190612ddf565b60405180910390fd5b5050565b61214282826115cc565b61220d57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61221b82826115cc565b156122e757600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000807f7cd632181152e012e1120f1cd4eebe3efba561389e1778e293be780a8e8817ca7f350a233db2f54fda9b566a45e905d414d1a8b530448fee5695f50c84740c678c856000013586602001358760400135886060013589608001358a60a001602081019061235c919061310a565b60405160200161237297969594939291906140fa565b604051602081830303815290604052805190602001206040516020016123999291906141b5565b60405160208183030381529060405280519060200120905060008060006020860151925060408601519150606086015160001a9050600184828585604051600081526020016040526040516123f194939291906141fb565b6020604051602081039080840390855afa158015612413573d6000803e3d6000fd5b505050602060405103519450600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361245857600080fd5b5050505092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161248890614266565b60006040518083038185875af1925050503d80600081146124c5576040519150601f19603f3d011682016040523d82523d6000602084013e6124ca565b606091505b50509050806124d857600080fd5b505050565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061259d5750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6125a657600080fd5b6125b1838383612a97565b505050565b606060008260ff1667ffffffffffffffff8111156125d7576125d661337f565b5b6040519080825280602002602001820160405280156126055781602001602082028036833780820191505090505b50905060005b8360ff1681101561266b5784818151811061262957612628613b2f565b5b602002602001015182828151811061264457612643613b2f565b5b602002602001019060ff16908160ff1681525050808061266390613f79565b91505061260b565b508091505092915050565b60606000825167ffffffffffffffff8111156126955761269461337f565b5b6040519080825280602002602001820160405280156126c35781602001602082028036833780820191505090505b50905060005b835181101561273f578381600186516126e29190613b5e565b6126ec9190613b5e565b815181106126fd576126fc613b2f565b5b602002602001015182828151811061271857612717613b2f565b5b602002602001019060ff16908160ff1681525050808061273790613f79565b9150506126c9565b5080915050919050565b60606000825167ffffffffffffffff8111156127685761276761337f565b5b6040519080825280601f01601f19166020018201604052801561279a5781602001600182028036833780820191505090505b50905060005b8351811015612851576040518060600160405280603a8152602001614311603a91398482815181106127d5576127d4613b2f565b5b602002602001015160ff16815181106127f1576127f0613b2f565b5b602001015160f81c60f81b82828151811061280f5761280e613b2f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061284990613f79565b9150506127a0565b5080915050919050565b60606000600283600261286e91906139b5565b6128789190613b92565b67ffffffffffffffff8111156128915761289061337f565b5b6040519080825280601f01601f1916602001820160405280156128c35781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106128fb576128fa613b2f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061295f5761295e613b2f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261299f91906139b5565b6129a99190613b92565b90505b6001811115612a49577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106129eb576129ea613b2f565b5b1a60f81b828281518110612a0257612a01613b2f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612a429061427b565b90506129ac565b5060008414612a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a84906142f0565b60405180910390fd5b8091505092915050565b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000206000828254612af79190613b5e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051612b75929190613e57565b60405180910390a4505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bc182612b96565b9050919050565b612bd181612bb6565b8114612bdc57600080fd5b50565b600081359050612bee81612bc8565b92915050565b6000819050919050565b612c0781612bf4565b8114612c1257600080fd5b50565b600081359050612c2481612bfe565b92915050565b60008060408385031215612c4157612c40612b8c565b5b6000612c4f85828601612bdf565b9250506020612c6085828601612c15565b9150509250929050565b612c7381612bf4565b82525050565b6000602082019050612c8e6000830184612c6a565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cc981612c94565b8114612cd457600080fd5b50565b600081359050612ce681612cc0565b92915050565b600060208284031215612d0257612d01612b8c565b5b6000612d1084828501612cd7565b91505092915050565b60008115159050919050565b612d2e81612d19565b82525050565b6000602082019050612d496000830184612d25565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d89578082015181840152602081019050612d6e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612db182612d4f565b612dbb8185612d5a565b9350612dcb818560208601612d6b565b612dd481612d95565b840191505092915050565b60006020820190508181036000830152612df98184612da6565b905092915050565b600060208284031215612e1757612e16612b8c565b5b6000612e2584828501612c15565b91505092915050565b6000819050919050565b612e4181612e2e565b8114612e4c57600080fd5b50565b600081359050612e5e81612e38565b92915050565b600060208284031215612e7a57612e79612b8c565b5b6000612e8884828501612e4f565b91505092915050565b612e9a81612e2e565b82525050565b6000602082019050612eb56000830184612e91565b92915050565b60008060408385031215612ed257612ed1612b8c565b5b6000612ee085828601612c15565b9250506020612ef185828601612c15565b9150509250929050565b612f0481612bb6565b82525050565b6000604082019050612f1f6000830185612efb565b612f2c6020830184612c6a565b9392505050565b600080fd5b600080fd5b600080fd5b60008083601f840112612f5857612f57612f33565b5b8235905067ffffffffffffffff811115612f7557612f74612f38565b5b602083019150836020820283011115612f9157612f90612f3d565b5b9250929050565b60008083601f840112612fae57612fad612f33565b5b8235905067ffffffffffffffff811115612fcb57612fca612f38565b5b602083019150836001820283011115612fe757612fe6612f3d565b5b9250929050565b60008060008060008060008060a0898b03121561300e5761300d612b8c565b5b600061301c8b828c01612bdf565b985050602061302d8b828c01612bdf565b975050604089013567ffffffffffffffff81111561304e5761304d612b91565b5b61305a8b828c01612f42565b9650965050606089013567ffffffffffffffff81111561307d5761307c612b91565b5b6130898b828c01612f42565b9450945050608089013567ffffffffffffffff8111156130ac576130ab612b91565b5b6130b88b828c01612f98565b92509250509295985092959890939650565b600080604083850312156130e1576130e0612b8c565b5b60006130ef85828601612e4f565b925050602061310085828601612bdf565b9150509250929050565b6000602082840312156131205761311f612b8c565b5b600061312e84828501612bdf565b91505092915050565b600062ffffff82169050919050565b61314f81613137565b811461315a57600080fd5b50565b60008135905061316c81613146565b92915050565b60006020828403121561318857613187612b8c565b5b60006131968482850161315d565b91505092915050565b60008083601f8401126131b5576131b4612f33565b5b8235905067ffffffffffffffff8111156131d2576131d1612f38565b5b6020830191508360208202830111156131ee576131ed612f3d565b5b9250929050565b6000806000806040858703121561320f5761320e612b8c565b5b600085013567ffffffffffffffff81111561322d5761322c612b91565b5b6132398782880161319f565b9450945050602085013567ffffffffffffffff81111561325c5761325b612b91565b5b61326887828801612f42565b925092505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6132ab81612bf4565b82525050565b60006132bd83836132a2565b60208301905092915050565b6000602082019050919050565b60006132e182613276565b6132eb8185613281565b93506132f683613292565b8060005b8381101561332757815161330e88826132b1565b9750613319836132c9565b9250506001810190506132fa565b5085935050505092915050565b6000602082019050818103600083015261334e81846132d6565b905092915050565b600080fd5b600060c0828403121561337157613370613356565b5b81905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133b782612d95565b810181811067ffffffffffffffff821117156133d6576133d561337f565b5b80604052505050565b60006133e9612b82565b90506133f582826133ae565b919050565b600067ffffffffffffffff8211156134155761341461337f565b5b61341e82612d95565b9050602081019050919050565b82818337600083830152505050565b600061344d613448846133fa565b6133df565b9050828152602081018484840111156134695761346861337a565b5b61347484828561342b565b509392505050565b600082601f83011261349157613490612f33565b5b81356134a184826020860161343a565b91505092915050565b6000806000806000806000610160888a0312156134ca576134c9612b8c565b5b60006134d88a828b0161335b565b97505060c06134e98a828b01612c15565b96505060e06134fa8a828b01612c15565b95505061010061350c8a828b01612bdf565b94505061012088013567ffffffffffffffff81111561352e5761352d612b91565b5b61353a8a828b0161347c565b93505061014088013567ffffffffffffffff81111561355c5761355b612b91565b5b6135688a828b01612f98565b925092505092959891949750929550565b61358281612d19565b811461358d57600080fd5b50565b60008135905061359f81613579565b92915050565b600080604083850312156135bc576135bb612b8c565b5b60006135ca85828601612bdf565b92505060206135db85828601613590565b9150509250929050565b600080604083850312156135fc576135fb612b8c565b5b600061360a85828601612bdf565b925050602061361b85828601612bdf565b9150509250929050565b60008060008060008060a0878903121561364257613641612b8c565b5b600061365089828a01612bdf565b965050602061366189828a01612bdf565b955050604061367289828a01612c15565b945050606061368389828a01612c15565b935050608087013567ffffffffffffffff8111156136a4576136a3612b91565b5b6136b089828a01612f98565b92509250509295509295509295565b6000806000606084860312156136d8576136d7612b8c565b5b60006136e686828701612bdf565b93505060206136f786828701612c15565b925050604061370886828701612c15565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061375957607f821691505b60208210810361376c5761376b613712565b5b50919050565b7f455243313135353a206e6f6e6578697374656e7420746f6b656e000000000000600082015250565b60006137a8601a83612d5a565b91506137b382613772565b602082019050919050565b600060208201905081810360008301526137d78161379b565b9050919050565b60007fffff00000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b613825613820826137de565b61380a565b82525050565b6000819050919050565b61384661384182612e2e565b61382b565b82525050565b60006138588285613814565b6002820191506138688284613835565b6020820191508190509392505050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138a581613741565b6138af8186613878565b945060018216600081146138ca57600181146138df57613912565b60ff1983168652811515820286019350613912565b6138e885613883565b60005b8381101561390a578154818901526001820191506020810190506138eb565b838801955050505b50505092915050565b600081519050919050565b600081905092915050565b600061393c8261391b565b6139468185613926565b9350613956818560208601612d6b565b80840191505092915050565b600061396e8285613898565b915061397a8284613931565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139c082612bf4565b91506139cb83612bf4565b92508282026139d981612bf4565b915082820484148315176139f0576139ef613986565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a3182612bf4565b9150613a3c83612bf4565b925082613a4c57613a4b6139f7565b5b828204905092915050565b7f4c454e4754485f4d49534d415443480000000000000000000000000000000000600082015250565b6000613a8d600f83612d5a565b9150613a9882613a57565b602082019050919050565b60006020820190508181036000830152613abc81613a80565b9050919050565b7f4e4f545f415554484f52495a4544000000000000000000000000000000000000600082015250565b6000613af9600e83612d5a565b9150613b0482613ac3565b602082019050919050565b60006020820190508181036000830152613b2881613aec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b6982612bf4565b9150613b7483612bf4565b9250828203905081811115613b8c57613b8b613986565b5b92915050565b6000613b9d82612bf4565b9150613ba883612bf4565b9250828201905080821115613bc057613bbf613986565b5b92915050565b600080fd5b82818337505050565b6000613be08385613281565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115613c1357613c12613bc6565b5b602083029250613c24838584613bcb565b82840190509392505050565b60006040820190508181036000830152613c4b818688613bd4565b90508181036020830152613c60818486613bd4565b905095945050505050565b600082825260208201905092915050565b6000613c888385613c6b565b9350613c9583858461342b565b613c9e83612d95565b840190509392505050565b600060a082019050613cbe600083018b612efb565b613ccb602083018a612efb565b8181036040830152613cde81888a613bd4565b90508181036060830152613cf3818688613bd4565b90508181036080830152613d08818486613c7c565b90509998505050505050505050565b600081519050613d2681612cc0565b92915050565b600060208284031215613d4257613d41612b8c565b5b6000613d5084828501613d17565b91505092915050565b7f554e534146455f524543495049454e5400000000000000000000000000000000600082015250565b6000613d8f601083612d5a565b9150613d9a82613d59565b602082019050919050565b60006020820190508181036000830152613dbe81613d82565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613e21602f83612d5a565b9150613e2c82613dc5565b604082019050919050565b60006020820190508181036000830152613e5081613e14565b9050919050565b6000604082019050613e6c6000830185612c6a565b613e796020830184612c6a565b9392505050565b600060a082019050613e956000830189612efb565b613ea26020830188612efb565b613eaf6040830187612c6a565b613ebc6060830186612c6a565b8181036080830152613ecf818486613c7c565b9050979650505050505050565b7f455243313135353a204e4f545f415554484f52495a4544000000000000000000600082015250565b6000613f12601783612d5a565b9150613f1d82613edc565b602082019050919050565b60006020820190508181036000830152613f4181613f05565b9050919050565b6000613f5382612bf4565b9150613f5e83612bf4565b925082613f6e57613f6d6139f7565b5b828206905092915050565b6000613f8482612bf4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613fb657613fb5613986565b5b600182019050919050565b600060ff82169050919050565b6000613fd982613fc1565b915060ff8203613fec57613feb613986565b5b600182019050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061402d601783613878565b915061403882613ff7565b601782019050919050565b600061404e82612d4f565b6140588185613878565b9350614068818560208601612d6b565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006140aa601183613878565b91506140b582614074565b601182019050919050565b60006140cb82614020565b91506140d78285614043565b91506140e28261409d565b91506140ee8284614043565b91508190509392505050565b600060e08201905061410f600083018a612e91565b61411c6020830189612e91565b6141296040830188612c6a565b6141366060830187612c6a565b6141436080830186612c6a565b61415060a0830185612c6a565b61415d60c0830184612efb565b98975050505050505050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061419f600283613878565b91506141aa82614169565b600282019050919050565b60006141c082614192565b91506141cc8285613835565b6020820191506141dc8284613835565b6020820191508190509392505050565b6141f581613fc1565b82525050565b60006080820190506142106000830187612e91565b61421d60208301866141ec565b61422a6040830185612e91565b6142376060830184612e91565b95945050505050565b50565b6000614250600083613926565b915061425b82614240565b600082019050919050565b600061427182614243565b9150819050919050565b600061428682612bf4565b91506000820361429957614298613986565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006142da602083612d5a565b91506142e5826142a4565b602082019050919050565b60006020820190508181036000830152614309816142cd565b905091905056fe31323334353637383941424344454647484a4b4c4d4e505152535455565758595a6162636465666768696a6b6d6e6f707172737475767778797aa2646970667358221220d75fc6cc12463052af2b8d9a189a71ae7954ef8d5040a8384cac2776b8c73f9064736f6c63430008110033

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

000000000000000000000000229946a96c34edd89c06d23dccbfa259e9752a7c

-----Decoded View---------------
Arg [0] : feeAccount_ (address): 0x229946a96C34edD89c06d23DCcbFA259E9752a7c

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000229946a96c34edd89c06d23dccbfa259e9752a7c


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.