ETH Price: $3,337.59 (-4.18%)
Gas: 3 Gwei

Token

Red Box (RBX)
 

Overview

Max Total Supply

21 RBX

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ryanaz.eth
0x30784Ec9B03c039Ebb880E3936538E652b1Cf5bA
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:
RedBox

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 20 : RedBox.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "operator-filter-registry/src/RevokableOperatorFilterer.sol";

/**
 * @author Created with HeyMint Launchpad https://launchpad.heymint.xyz
 * @notice This contract handles minting Red Box tokens.
 */
contract RedBox is
    ERC1155Supply,
    Ownable,
    Pausable,
    ReentrancyGuard,
    ERC2981,
    RevokableOperatorFilterer
{
    using ECDSA for bytes32;

    // Default address to subscribe to for determining blocklisted exchanges
    address constant DEFAULT_SUBSCRIPTION =
        address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
    // Used to validate authorized presale mint addresses
    address private presaleSignerAddress =
        0xce7e888ACBA5fc3F53A6635ba69BB8274791e291;
    // Address where HeyMint fees are sent
    address public heymintPayoutAddress =
        0xE1FaC470dE8dE91c66778eaa155C64c7ceEFc851;
    address public royaltyAddress = 0x3b92473F283cB469c992963108BEba988daF26c0;
    address[] public payoutAddresses = [
        0x3b92473F283cB469c992963108BEba988daF26c0
    ];
    // Permanently freezes metadata for all tokens so they can never be changed
    bool public allMetadataFrozen = false;
    // If true, payout addresses and basis points are permanently frozen and can never be updated
    bool public payoutAddressesFrozen;
    // The amount of tokens minted by a given address for a given token id
    mapping(address => mapping(uint256 => uint256))
        public tokensMintedByAddress;
    // Permanently freezes metadata for a specific token id so it can never be changed
    mapping(uint256 => bool) public tokenMetadataFrozen;
    // If true, the given token id can never be minted again
    mapping(uint256 => bool) public tokenMintingPermanentlyDisabled;
    mapping(uint256 => bool) public tokenPresaleSaleActive;
    mapping(uint256 => bool) public tokenPublicSaleActive;
    // If true, sale start and end times for the presale will be enforced, else ignored
    mapping(uint256 => bool) public tokenUsePresaleTimes;
    // If true, sale start and end times for the public sale will be enforced, else ignored
    mapping(uint256 => bool) public tokenUsePublicSaleTimes;
    mapping(uint256 => string) public tokenURI;
    // Maximum supply of tokens that can be minted for each token id. If zero, this token is open edition and has no mint limit
    mapping(uint256 => uint256) public tokenMaxSupply;
    // If zero, this token is open edition and has no mint limit
    mapping(uint256 => uint256) public tokenPresaleMaxSupply;
    mapping(uint256 => uint256) public tokenPresaleMintsPerAddress;
    mapping(uint256 => uint256) public tokenPresalePrice;
    mapping(uint256 => uint256) public tokenPresaleSaleEndTime;
    mapping(uint256 => uint256) public tokenPresaleSaleStartTime;
    mapping(uint256 => uint256) public tokenPublicMintsPerAddress;
    mapping(uint256 => uint256) public tokenPublicPrice;
    mapping(uint256 => uint256) public tokenPublicSaleEndTime;
    mapping(uint256 => uint256) public tokenPublicSaleStartTime;
    string public name = "Red Box";
    string public symbol = "RBX";
    // Fee paid to HeyMint per NFT minted
    uint256 public heymintFeePerToken;
    // The respective share of funds to be sent to each address in payoutAddresses in basis points
    uint256[] public payoutBasisPoints = [10000];
    uint96 public royaltyFee = 500;

    constructor(
        uint256 _heymintFeePerToken
    )
        ERC1155(
            "ipfs://bafybeif23fep4oj2n6gwf6iscgux5mqt3gz3gyfa5hb4fk2i66utj3ehxe/{id}"
        )
        RevokableOperatorFilterer(
            0x000000000000AAeB6D7670E522A718067333cd4E,
            DEFAULT_SUBSCRIPTION,
            true
        )
    {
        heymintFeePerToken = _heymintFeePerToken;
        _setDefaultRoyalty(royaltyAddress, royaltyFee);
        tokenMaxSupply[1] = 8000;
        tokenPublicPrice[1] = 0.0125 ether;
        tokenPublicMintsPerAddress[1] = 20;
        require(
            payoutAddresses.length == payoutBasisPoints.length,
            "PAYOUT_ARRAYS_NOT_SAME_LENGTH"
        );
        uint256 totalPayoutBasisPoints = 0;
        for (uint256 i = 0; i < payoutBasisPoints.length; i++) {
            totalPayoutBasisPoints += payoutBasisPoints[i];
        }
        require(
            totalPayoutBasisPoints == 10000,
            "TOTAL_BASIS_POINTS_MUST_BE_10000"
        );
    }

    modifier originalUser() {
        require(tx.origin == msg.sender, "CANNOT_CALL_FROM_CONTRACT");
        _;
    }

    /**
     * @notice Returns a custom URI for each token id if set
     */
    function uri(
        uint256 _tokenId
    ) public view override returns (string memory) {
        // If no URI exists for the specific id requested, fallback to the default ERC-1155 URI.
        if (bytes(tokenURI[_tokenId]).length == 0) {
            return super.uri(_tokenId);
        }
        return tokenURI[_tokenId];
    }

    /**
     * @notice Sets a URI for a specific token id.
     */
    function setURI(
        uint256 _tokenId,
        string calldata _newTokenURI
    ) external onlyOwner {
        require(
            !allMetadataFrozen && !tokenMetadataFrozen[_tokenId],
            "METADATA_HAS_BEEN_FROZEN"
        );
        tokenURI[_tokenId] = _newTokenURI;
    }

    /**
     * @notice Update the global default ERC-1155 base URI
     */
    function setGlobalURI(string calldata _newTokenURI) external onlyOwner {
        require(!allMetadataFrozen, "METADATA_HAS_BEEN_FROZEN");
        _setURI(_newTokenURI);
    }

    /**
     * @notice Freeze metadata for a specific token id so it can never be changed again
     */
    function freezeTokenMetadata(uint256 _tokenId) external onlyOwner {
        require(
            !tokenMetadataFrozen[_tokenId],
            "METADATA_HAS_ALREADY_BEEN_FROZEN"
        );
        tokenMetadataFrozen[_tokenId] = true;
    }

    /**
     * @notice Freeze all metadata so it can never be changed again
     */
    function freezeAllMetadata() external onlyOwner {
        require(!allMetadataFrozen, "METADATA_HAS_ALREADY_BEEN_FROZEN");
        allMetadataFrozen = true;
    }

    /**
     * @notice Reduce the max supply of tokens for a given token id
     * @param _newMaxSupply The new maximum supply of tokens available to mint
     * @param _tokenId The token id to reduce the max supply for
     */
    function reduceMaxSupply(
        uint256 _tokenId,
        uint256 _newMaxSupply
    ) external onlyOwner {
        require(
            tokenMaxSupply[_tokenId] == 0 ||
                _newMaxSupply < tokenMaxSupply[_tokenId],
            "NEW_MAX_SUPPLY_TOO_HIGH"
        );
        require(
            _newMaxSupply >= totalSupply(_tokenId),
            "SUPPLY_LOWER_THAN_MINTED_TOKENS"
        );
        tokenMaxSupply[_tokenId] = _newMaxSupply;
    }

    /**
     * @notice Lock a token id so that it can never be minted again
     */
    function permanentlyDisableTokenMinting(
        uint256 _tokenId
    ) external onlyOwner {
        tokenMintingPermanentlyDisabled[_tokenId] = true;
    }

    /**
     * @notice Change the royalty fee for the collection
     */
    function setRoyaltyFee(uint96 _feeNumerator) external onlyOwner {
        royaltyFee = _feeNumerator;
        _setDefaultRoyalty(royaltyAddress, royaltyFee);
    }

    /**
     * @notice Change the royalty address where royalty payouts are sent
     */
    function setRoyaltyAddress(address _royaltyAddress) external onlyOwner {
        royaltyAddress = _royaltyAddress;
        _setDefaultRoyalty(royaltyAddress, royaltyFee);
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function supportsInterface(
        bytes4 _interfaceId
    ) public view override(ERC1155, ERC2981) returns (bool) {
        return super.supportsInterface(_interfaceId);
    }

    /**
     * @notice Allow owner to send tokens without cost to multiple addresses
     */
    function giftTokens(
        uint256 _tokenId,
        address[] calldata _receivers,
        uint256[] calldata _mintNumber
    ) external onlyOwner {
        require(
            !tokenMintingPermanentlyDisabled[_tokenId],
            "MINTING_PERMANENTLY_DISABLED"
        );
        uint256 totalMint = 0;
        for (uint256 i = 0; i < _mintNumber.length; i++) {
            totalMint += _mintNumber[i];
        }
        // require either no tokenMaxSupply set or tokenMaxSupply not maxed out
        require(
            tokenMaxSupply[_tokenId] == 0 ||
                totalSupply(_tokenId) + totalMint <= tokenMaxSupply[_tokenId],
            "MINT_TOO_LARGE"
        );
        for (uint256 i = 0; i < _receivers.length; i++) {
            _mint(_receivers[i], _tokenId, _mintNumber[i], "");
        }
    }

    /**
     * @notice To be updated by contract owner to allow public sale minting for a given token
     */
    function setTokenPublicSaleState(
        uint256 _tokenId,
        bool _saleActiveState
    ) external onlyOwner {
        require(
            tokenPublicSaleActive[_tokenId] != _saleActiveState,
            "NEW_STATE_IDENTICAL_TO_OLD_STATE"
        );
        tokenPublicSaleActive[_tokenId] = _saleActiveState;
    }

    /**
     * @notice Update the public mint price for a given token
     */
    function setTokenPublicPrice(
        uint256 _tokenId,
        uint256 _publicPrice
    ) external onlyOwner {
        tokenPublicPrice[_tokenId] = _publicPrice;
    }

    /**
     * @notice Set the maximum public mints allowed per a given address for a given token
     */
    function setTokenPublicMintsAllowedPerAddress(
        uint256 _tokenId,
        uint256 _mintsAllowed
    ) external onlyOwner {
        tokenPublicMintsPerAddress[_tokenId] = _mintsAllowed;
    }

    /**
     * @notice Update the start time for public mint for a given token
     */
    function setTokenPublicSaleStartTime(
        uint256 _tokenId,
        uint256 _publicSaleStartTime
    ) external onlyOwner {
        require(_publicSaleStartTime > block.timestamp, "TIME_IN_PAST");
        tokenPublicSaleStartTime[_tokenId] = _publicSaleStartTime;
    }

    /**
     * @notice Update the end time for public mint for a given token
     */
    function setTokenPublicSaleEndTime(
        uint256 _tokenId,
        uint256 _publicSaleEndTime
    ) external onlyOwner {
        require(_publicSaleEndTime > block.timestamp, "TIME_IN_PAST");
        tokenPublicSaleEndTime[_tokenId] = _publicSaleEndTime;
    }

    /**
     * @notice Update whether or not to use the automatic public sale times for a given token
     */
    function setTokenUsePublicSaleTimes(
        uint256 _tokenId,
        bool _usePublicSaleTimes
    ) external onlyOwner {
        require(
            tokenUsePublicSaleTimes[_tokenId] != _usePublicSaleTimes,
            "NEW_STATE_IDENTICAL_TO_OLD_STATE"
        );
        tokenUsePublicSaleTimes[_tokenId] = _usePublicSaleTimes;
    }

    /**
     * @notice Returns if public sale times are active for a given token
     */
    function tokenPublicSaleTimeIsActive(
        uint256 _tokenId
    ) public view returns (bool) {
        if (tokenUsePublicSaleTimes[_tokenId] == false) {
            return true;
        }
        return
            block.timestamp >= tokenPublicSaleStartTime[_tokenId] &&
            block.timestamp <= tokenPublicSaleEndTime[_tokenId];
    }

    /**
     * @notice Allow for public minting of tokens for a given token
     */
    function mintToken(
        uint256 _tokenId,
        uint256 _numTokens
    ) external payable originalUser nonReentrant {
        require(tokenPublicSaleActive[_tokenId], "PUBLIC_SALE_IS_NOT_ACTIVE");
        require(
            tokenPublicSaleTimeIsActive(_tokenId),
            "PUBLIC_SALE_TIME_IS_NOT_ACTIVE"
        );
        require(
            tokenPublicMintsPerAddress[_tokenId] == 0 ||
                tokensMintedByAddress[msg.sender][_tokenId] + _numTokens <=
                tokenPublicMintsPerAddress[_tokenId],
            "MAX_MINTS_FOR_ADDRESS_EXCEEDED"
        );
        require(
            tokenMaxSupply[_tokenId] == 0 ||
                totalSupply(_tokenId) + _numTokens <= tokenMaxSupply[_tokenId],
            "MAX_SUPPLY_EXCEEDED"
        );
        uint256 heymintFee = _numTokens * heymintFeePerToken;
        require(
            msg.value == tokenPublicPrice[_tokenId] * _numTokens + heymintFee,
            "PAYMENT_INCORRECT"
        );
        require(
            !tokenMintingPermanentlyDisabled[_tokenId],
            "MINTING_PERMANENTLY_DISABLED"
        );

        (bool success, ) = heymintPayoutAddress.call{value: heymintFee}("");
        require(success, "Transfer failed.");
        tokensMintedByAddress[msg.sender][_tokenId] += _numTokens;
        _mint(msg.sender, _tokenId, _numTokens, "");

        if (
            tokenMaxSupply[_tokenId] != 0 &&
            totalSupply(_tokenId) >= tokenMaxSupply[_tokenId]
        ) {
            tokenPublicSaleActive[_tokenId] = false;
        }
    }

    /**
     * @notice Mint using a credit card
     */
    function creditCardMint(
        uint256 _tokenId,
        uint256 _numTokens,
        address _to
    ) external payable originalUser nonReentrant {
        require(tokenPublicSaleActive[_tokenId], "PUBLIC_SALE_IS_NOT_ACTIVE");
        require(
            tokenPublicSaleTimeIsActive(_tokenId),
            "PUBLIC_SALE_TIME_IS_NOT_ACTIVE"
        );
        require(
            tokenPublicMintsPerAddress[_tokenId] == 0 ||
                tokensMintedByAddress[_to][_tokenId] + _numTokens <=
                tokenPublicMintsPerAddress[_tokenId],
            "MAX_MINTS_FOR_ADDRESS_EXCEEDED"
        );
        require(
            tokenMaxSupply[_tokenId] == 0 ||
                totalSupply(_tokenId) + _numTokens <= tokenMaxSupply[_tokenId],
            "MAX_SUPPLY_EXCEEDED"
        );

        uint256 heymintFee = _numTokens * heymintFeePerToken;
        require(
            msg.value == tokenPublicPrice[_tokenId] * _numTokens + heymintFee,
            "PAYMENT_INCORRECT"
        );
        require(
            !tokenMintingPermanentlyDisabled[_tokenId],
            "MINTING_PERMANENTLY_DISABLED"
        );

        (bool success, ) = heymintPayoutAddress.call{value: heymintFee}("");
        require(success, "Transfer failed.");
        tokensMintedByAddress[_to][_tokenId] += _numTokens;
        _mint(_to, _tokenId, _numTokens, "");

        if (
            tokenMaxSupply[_tokenId] != 0 &&
            totalSupply(_tokenId) >= tokenMaxSupply[_tokenId]
        ) {
            tokenPublicSaleActive[_tokenId] = false;
        }
    }

    /**
     * @notice Set the signer address used to verify presale minting
     */
    function setPresaleSignerAddress(
        address _presaleSignerAddress
    ) external onlyOwner {
        require(_presaleSignerAddress != address(0));
        presaleSignerAddress = _presaleSignerAddress;
    }

    /**
     * @notice To be updated by contract owner to allow presale minting for a given token
     */
    function setTokenPresaleState(
        uint256 _tokenId,
        bool _saleActiveState
    ) external onlyOwner {
        require(
            tokenPresaleSaleActive[_tokenId] != _saleActiveState,
            "NEW_STATE_IDENTICAL_TO_OLD_STATE"
        );
        tokenPresaleSaleActive[_tokenId] = _saleActiveState;
    }

    /**
     * @notice Update the presale mint price for a given token
     */
    function setTokenPresalePrice(
        uint256 _tokenId,
        uint256 _presalePrice
    ) external onlyOwner {
        tokenPresalePrice[_tokenId] = _presalePrice;
    }

    /**
     * @notice Set the maximum presale mints allowed per a given address for a given token
     */
    function setTokenPresaleMintsAllowedPerAddress(
        uint256 _tokenId,
        uint256 _mintsAllowed
    ) external onlyOwner {
        tokenPresaleMintsPerAddress[_tokenId] = _mintsAllowed;
    }

    /**
     * @notice Reduce the presale max supply of tokens for a given token id
     * @param _newPresaleMaxSupply The new maximum supply of tokens available to mint
     * @param _tokenId The token id to reduce the max supply for
     */
    function reducePresaleMaxSupply(
        uint256 _tokenId,
        uint256 _newPresaleMaxSupply
    ) external onlyOwner {
        require(
            tokenPresaleMaxSupply[_tokenId] == 0 ||
                _newPresaleMaxSupply < tokenPresaleMaxSupply[_tokenId],
            "NEW_MAX_SUPPLY_TOO_HIGH"
        );
        tokenPresaleMaxSupply[_tokenId] = _newPresaleMaxSupply;
    }

    /**
     * @notice Update the start time for presale mint for a given token
     */
    function setTokenPresaleStartTime(
        uint256 _tokenId,
        uint256 _presaleStartTime
    ) external onlyOwner {
        require(_presaleStartTime > block.timestamp, "TIME_IN_PAST");
        tokenPresaleSaleStartTime[_tokenId] = _presaleStartTime;
    }

    /**
     * @notice Update the end time for presale mint for a given token
     */
    function setTokenPresaleEndTime(
        uint256 _tokenId,
        uint256 _presaleEndTime
    ) external onlyOwner {
        require(_presaleEndTime > block.timestamp, "TIME_IN_PAST");
        tokenPresaleSaleEndTime[_tokenId] = _presaleEndTime;
    }

    /**
     * @notice Update whether or not to use the automatic presale times for a given token
     */
    function setTokenUsePresaleTimes(
        uint256 _tokenId,
        bool _usePresaleTimes
    ) external onlyOwner {
        require(
            tokenUsePresaleTimes[_tokenId] != _usePresaleTimes,
            "NEW_STATE_IDENTICAL_TO_OLD_STATE"
        );
        tokenUsePresaleTimes[_tokenId] = _usePresaleTimes;
    }

    /**
     * @notice Returns if presale times are active for a given token
     */
    function tokenPresaleTimeIsActive(
        uint256 _tokenId
    ) public view returns (bool) {
        if (tokenUsePresaleTimes[_tokenId] == false) {
            return true;
        }
        return
            block.timestamp >= tokenPresaleSaleStartTime[_tokenId] &&
            block.timestamp <= tokenPresaleSaleEndTime[_tokenId];
    }

    /**
     * @notice Verify that a signed message is validly signed by the presaleSignerAddress
     */
    function verifySignerAddress(
        bytes32 _messageHash,
        bytes calldata _signature
    ) private view returns (bool) {
        return
            presaleSignerAddress ==
            _messageHash.toEthSignedMessageHash().recover(_signature);
    }

    /**
     * @notice Allow for allowlist minting of tokens
     */
    function presaleMint(
        bytes32 _messageHash,
        bytes calldata _signature,
        uint256 _tokenId,
        uint256 _numTokens,
        uint256 _maximumAllowedMints
    ) external payable originalUser nonReentrant {
        require(tokenPresaleSaleActive[_tokenId], "PRESALE_IS_NOT_ACTIVE");
        require(
            tokenPresaleTimeIsActive(_tokenId),
            "PRESALE_TIME_IS_NOT_ACTIVE"
        );
        require(
            !tokenMintingPermanentlyDisabled[_tokenId],
            "MINTING_PERMANENTLY_DISABLED"
        );
        require(
            tokenPresaleMintsPerAddress[_tokenId] == 0 ||
                tokensMintedByAddress[msg.sender][_tokenId] + _numTokens <=
                tokenPresaleMintsPerAddress[_tokenId],
            "MAX_MINTS_PER_ADDRESS_EXCEEDED"
        );
        require(
            _maximumAllowedMints == 0 ||
                tokensMintedByAddress[msg.sender][_tokenId] + _numTokens <=
                _maximumAllowedMints,
            "MAX_MINTS_EXCEEDED"
        );
        require(
            tokenPresaleMaxSupply[_tokenId] == 0 ||
                totalSupply(_tokenId) + _numTokens <=
                tokenPresaleMaxSupply[_tokenId],
            "MAX_SUPPLY_EXCEEDED"
        );
        uint256 heymintFee = _numTokens * heymintFeePerToken;
        require(
            msg.value == tokenPresalePrice[_tokenId] * _numTokens + heymintFee,
            "PAYMENT_INCORRECT"
        );
        require(
            keccak256(abi.encode(msg.sender, _maximumAllowedMints, _tokenId)) ==
                _messageHash,
            "MESSAGE_INVALID"
        );
        require(
            verifySignerAddress(_messageHash, _signature),
            "SIGNATURE_VALIDATION_FAILED"
        );

        (bool success, ) = heymintPayoutAddress.call{value: heymintFee}("");
        require(success, "Transfer failed.");
        tokensMintedByAddress[msg.sender][_tokenId] += _numTokens;
        _mint(msg.sender, _tokenId, _numTokens, "");

        if (
            tokenPresaleMaxSupply[_tokenId] != 0 &&
            totalSupply(_tokenId) >= tokenPresaleMaxSupply[_tokenId]
        ) {
            tokenPresaleSaleActive[_tokenId] = false;
        }
    }

    /**
     * @notice Freeze all payout addresses and percentages so they can never be changed again
     */
    function freezePayoutAddresses() external onlyOwner {
        require(!payoutAddressesFrozen, "PAYOUT_ADDRESSES_ALREADY_FROZEN");
        payoutAddressesFrozen = true;
    }

    /**
     * @notice Update payout addresses and basis points for each addresses' respective share of contract funds
     */
    function updatePayoutAddressesAndBasisPoints(
        address[] calldata _payoutAddresses,
        uint256[] calldata _payoutBasisPoints
    ) external onlyOwner {
        require(!payoutAddressesFrozen, "PAYOUT_ADDRESSES_FROZEN");
        require(
            _payoutAddresses.length == _payoutBasisPoints.length,
            "ARRAY_LENGTHS_MUST_MATCH"
        );
        uint256 totalBasisPoints = 0;
        for (uint i = 0; i < _payoutBasisPoints.length; i++) {
            totalBasisPoints += _payoutBasisPoints[i];
        }
        require(totalBasisPoints == 10000, "TOTAL_BASIS_POINTS_MUST_BE_10000");
        payoutAddresses = _payoutAddresses;
        payoutBasisPoints = _payoutBasisPoints;
    }

    /**
     * @notice Withdraws all funds held within contract
     */
    function withdraw() external onlyOwner nonReentrant {
        require(address(this).balance > 0, "CONTRACT_HAS_NO_BALANCE");
        require(payoutAddresses.length > 0, "NO_PAYOUT_ADDRESSES");
        uint256 balance = address(this).balance;
        for (uint i = 0; i < payoutAddresses.length; i++) {
            uint256 amount = (balance * payoutBasisPoints[i]) / 10000;
            (bool success, ) = payoutAddresses[i].call{value: amount}("");
            require(success, "Transfer failed.");
        }
    }

    /**
     * @notice Override default ERC-1155 setApprovalForAll to require that the operator is not from a blocklisted exchange
     * @param operator Address to add to the set of authorized operators
     * @param approved True if the operator is approved, false to revoke approval
     */
    function setApprovalForAll(
        address operator,
        bool approved
    ) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    /**
     * @notice Override ERC1155 such that zero amount token transfers are disallowed.
     * This prevents arbitrary 'creation' of new tokens in the collection by anyone.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        uint256 amount,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        require(amount > 0, "AMOUNT_CANNOT_BE_ZERO");
        super.safeTransferFrom(from, to, tokenId, amount, data);
    }

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

    function owner()
        public
        view
        virtual
        override(Ownable, UpdatableOperatorFilterer)
        returns (address)
    {
        return Ownable.owner();
    }
}

File 2 of 20 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 3 of 20 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

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 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

File 5 of 20 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 6 of 20 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 7 of 20 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 8 of 20 : RevokableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {UpdatableOperatorFilterer} from "./UpdatableOperatorFilterer.sol";
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently skip OperatorFilterRegistry checks if desired. The
 *         Registry itself has an "unregister" function, but if the contract is ownable, the owner can re-register at
 *         any point. As implemented, this abstract contract allows the contract owner to permanently skip the
 *         OperatorFilterRegistry checks by calling revokeOperatorFilterRegistry. Once done, the registry
 *         address cannot be further updated.
 *         Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableOperatorFilterer is UpdatableOperatorFilterer {
    error RegistryHasBeenRevoked();
    error InitialRegistryAddressCannotBeZeroAddress();

    bool public isOperatorFilterRegistryRevoked;

    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe)
        UpdatableOperatorFilterer(_registry, subscriptionOrRegistrantToCopy, subscribe)
    {
        // don't allow creating a contract with a permanently revoked registry
        if (_registry == address(0)) {
            revert InitialRegistryAddressCannotBeZeroAddress();
        }
    }

    function _checkFilterOperator(address operator) internal view virtual override {
        if (address(operatorFilterRegistry) != address(0)) {
            super._checkFilterOperator(operator);
        }
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be permanently bypassed, and the address cannot be updated again. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public override {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
    }

    /**
     * @notice Revoke the OperatorFilterRegistry address, permanently bypassing checks. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() public {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        // set to zero address to bypass checks
        operatorFilterRegistry = IOperatorFilterRegistry(address(0));
        isOperatorFilterRegistryRevoked = true;
    }
}

File 9 of 20 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 20 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 11 of 20 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 20 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 14 of 20 : UpdatableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  UpdatableOperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry. This contract allows the Owner to update the
 *         OperatorFilterRegistry address via updateOperatorFilterRegistryAddress, including to the zero address,
 *         which will bypass registry checks.
 *         Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract UpdatableOperatorFilterer {
    error OperatorNotAllowed(address operator);
    error OnlyOwner();

    IOperatorFilterRegistry public operatorFilterRegistry;

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

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be bypassed. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public virtual {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
    }

    /**
     * @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract
     */
    function owner() public view virtual returns (address);

    function _checkFilterOperator(address operator) internal view virtual {
        IOperatorFilterRegistry registry = operatorFilterRegistry;
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(registry) != address(0) && address(registry).code.length > 0) {
            if (!registry.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

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

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

File 16 of 20 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 17 of 20 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

File 18 of 20 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 19 of 20 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 20 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_heymintFeePerToken","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InitialRegistryAddressCannotBeZeroAddress","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"RegistryHasBeenRevoked","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"allMetadataFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_numTokens","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"creditCardMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeAllMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezePayoutAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"freezeTokenMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address[]","name":"_receivers","type":"address[]"},{"internalType":"uint256[]","name":"_mintNumber","type":"uint256[]"}],"name":"giftTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"heymintFeePerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"heymintPayoutAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payoutAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payoutAddressesFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payoutBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"permanentlyDisableTokenMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_messageHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_numTokens","type":"uint256"},{"internalType":"uint256","name":"_maximumAllowedMints","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"reduceMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_newPresaleMaxSupply","type":"uint256"}],"name":"reducePresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyFee","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newTokenURI","type":"string"}],"name":"setGlobalURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_presaleSignerAddress","type":"address"}],"name":"setPresaleSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setRoyaltyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_presaleEndTime","type":"uint256"}],"name":"setTokenPresaleEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_mintsAllowed","type":"uint256"}],"name":"setTokenPresaleMintsAllowedPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_presalePrice","type":"uint256"}],"name":"setTokenPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_presaleStartTime","type":"uint256"}],"name":"setTokenPresaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_saleActiveState","type":"bool"}],"name":"setTokenPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_mintsAllowed","type":"uint256"}],"name":"setTokenPublicMintsAllowedPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setTokenPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_publicSaleEndTime","type":"uint256"}],"name":"setTokenPublicSaleEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_publicSaleStartTime","type":"uint256"}],"name":"setTokenPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_saleActiveState","type":"bool"}],"name":"setTokenPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_usePresaleTimes","type":"bool"}],"name":"setTokenUsePresaleTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_usePublicSaleTimes","type":"bool"}],"name":"setTokenUsePublicSaleTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_newTokenURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMetadataFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMintingPermanentlyDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPresaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPresaleMintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPresalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPresaleSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPresaleSaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPresaleSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenPresaleTimeIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPublicMintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPublicSaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenPublicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenPublicSaleTimeIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenUsePresaleTimes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenUsePublicSaleTimes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokensMintedByAddress","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRegistry","type":"address"}],"name":"updateOperatorFilterRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_payoutAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_payoutBasisPoints","type":"uint256[]"}],"name":"updatePayoutAddressesAndBasisPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6009805473ce7e888acba5fc3f53a6635ba69bb8274791e2916001600160a01b031991821617909155600a805473e1fac470de8de91c66778eaa155c64c7ceefc851908316179055600b8054733b92473f283cb469c992963108beba988daf26c092168217905560a060405260809081526200008090600c90600162000633565b50600d805460ff191690556040805180820190915260078152660a4cac84084def60cb1b60208083019190915290620000ba90826200079d565b506040805180820190915260038152620a484b60eb1b6020820152602190620000e490826200079d565b5060408051602081019091526127108152620001059060239060016200069d565b50602480546001600160601b0319166101f41790553480156200012757600080fd5b50604051620059ce380380620059ce8339810160408190526200014a9162000869565b6daaeb6d7670e522a718067333cd4e733cc6cdda760b79bafa08df41ecfa224f810dceb6600182828260405180608001604052806047815260200162005987604791396200019881620004ce565b50620001a433620004e0565b6004805460ff60a01b191690556001600555600880546001600160a01b0319166001600160a01b03851690811790915583903b15620002ef5781156200024e57604051633e9f1edf60e11b81523060048201526001600160a01b038481166024830152821690637d3e3dbe906044015b600060405180830381600087803b1580156200022f57600080fd5b505af115801562000244573d6000803e3d6000fd5b50505050620002ef565b6001600160a01b03831615620002935760405163a0af290360e01b81523060048201526001600160a01b03848116602483015282169063a0af29039060440162000214565b604051632210724360e11b81523060048201526001600160a01b03821690634420e48690602401600060405180830381600087803b158015620002d557600080fd5b505af1158015620002ea573d6000803e3d6000fd5b505050505b5050506001600160a01b03841690506200031c5760405163c49d17ad60e01b815260040160405180910390fd5b5050506022819055600b5460245462000348916001600160a01b0316906001600160601b031662000532565b6001600052611f407f4c4dc693d7db52f85fe052106f4b4b920e78e8ef37dee82878a60ab8585faf4955662c68af0bb140007f9de6abd965d55c3bb0cdbf6fa175050624c6ff8fe86f682dc08f2a450ede227855601c60205260147f6de76108811faf2f94afbe5ac6c98e8393206cd093932de1fbfd61bbeec43a0255602354600c54146200041e5760405162461bcd60e51b815260206004820152601d60248201527f5041594f55545f4152524159535f4e4f545f53414d455f4c454e47544800000060448201526064015b60405180910390fd5b6000805b60235481101562000472576023818154811062000443576200044362000883565b9060005260206000200154826200045b9190620008af565b9150806200046981620008cb565b91505062000422565b508061271014620004c65760405162461bcd60e51b815260206004820181905260248201527f544f54414c5f42415349535f504f494e54535f4d5553545f42455f3130303030604482015260640162000415565b5050620008e7565b6002620004dc82826200079d565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620005a25760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000415565b6001600160a01b038216620005fa5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000415565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b8280548282559060005260206000209081019282156200068b579160200282015b828111156200068b57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000654565b5062000699929150620006e1565b5090565b8280548282559060005260206000209081019282156200068b579160200282015b828111156200068b578251829061ffff16905591602001919060010190620006be565b5b80821115620006995760008155600101620006e2565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200072357607f821691505b6020821081036200074457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200079857600081815260208120601f850160051c81016020861015620007735750805b601f850160051c820191505b8181101562000794578281556001016200077f565b5050505b505050565b81516001600160401b03811115620007b957620007b9620006f8565b620007d181620007ca84546200070e565b846200074a565b602080601f831160018114620008095760008415620007f05750858301515b600019600386901b1c1916600185901b17855562000794565b600085815260208120601f198616915b828110156200083a5788860151825594840194600190910190840162000819565b5085821015620008595787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200087c57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b80820180821115620008c557620008c562000899565b92915050565b600060018201620008e057620008e062000899565b5060010190565b61509080620008f76000396000f3fe6080604052600436106104715760003560e01c806376ca9c4c1161024a578063b8d1e53211610139578063e985e9c5116100b6578063f47749fc1161007a578063f47749fc14610ef0578063f487077414610f10578063f5842f9514610f30578063fc49e58f14610f5d578063fe93926314610f8a57600080fd5b8063e985e9c514610e26578063ecba222a14610e6f578063efd3af1a14610e90578063f242432a14610eb0578063f2fde38b14610ed057600080fd5b8063c87b56dd116100fd578063c87b56dd14610d59578063d35cdb3a14610d79578063d569d80714610da9578063d976637014610dd9578063e5aa68a214610e0657600080fd5b8063b8d1e53214610cad578063ba75298914610ccd578063bd85b03914610cec578063c15d0e2114610d19578063c872d0e814610d3957600080fd5b806394901dd4116101c7578063a78f075c1161018b578063a78f075c14610bf5578063ac80165814610c15578063ad2f852a14610c35578063b0ccc31e14610c55578063b8997a9714610c7557600080fd5b806394901dd414610b5057806395d89b4114610b705780639d86a76614610b85578063a22cb46514610ba5578063a451aeb014610bc557600080fd5b80638834e93b1161020e5780638834e93b14610abb5780638a01860f14610adb5780638a78bdf614610b085780638b665b1114610b1b5780638da5cb5b14610b3b57600080fd5b806376ca9c4c14610a19578063795a257514610a395780637c55351214610a595780638456cb5914610a86578063862440e214610a9b57600080fd5b80633ccfd60b116103665780635ef9432a116102e3578063715018a6116102a7578063715018a61461096757806371f0d5ab1461097c578063750074771461099c5780637521f3bc146109bc578063756f520d146109ec57600080fd5b80635ef9432a146108c5578063629c51bc146108da578063635c4ce7146108ef5780636703dad81461092757806368e8490b1461094757600080fd5b80634db168571161032a5780634db16857146107f05780634e1273f41461081d5780634ed314911461084a5780634f558e79146108775780635c975abb146108a657600080fd5b80633ccfd60b146107605780633e5c68ba146107755780633f4ba83a1461078b5780633fa71b3f146107a0578063493b4665146107d057600080fd5b806314d3fcf8116103f457806329b6bfa5116103b857806329b6bfa5146106945780632a55205a146106c15780632c260ae5146107005780632eb2c2d61461072057806331faafb41461074057600080fd5b806314d3fcf8146105d957806315ad371f146106115780631d723bf11461063157806320cbf5f91461066157806325153e131461067457600080fd5b806306d254da1161043b57806306d254da1461053757806306d4c8b41461055757806306fdde031461057757806307c981f2146105995780630e89341c146105b957600080fd5b80624221f014610476578062fdd58e146104b657806301ffc9a7146104d657806304ff2d0714610506578063060b01e11461051d575b600080fd5b34801561048257600080fd5b506104a361049136600461416b565b60166020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156104c257600080fd5b506104a36104d13660046141a0565b610f9d565b3480156104e257600080fd5b506104f66104f13660046141e0565b611036565b60405190151581526020016104ad565b34801561051257600080fd5b5061051b611041565b005b34801561052957600080fd5b50600d546104f69060ff1681565b34801561054357600080fd5b5061051b610552366004614204565b6110b2565b34801561056357600080fd5b5061051b61057236600461421f565b6110f1565b34801561058357600080fd5b5061058c6111d7565b6040516104ad9190614287565b3480156105a557600080fd5b5061051b6105b43660046142a8565b611265565b3480156105c557600080fd5b5061058c6105d436600461416b565b6112c3565b3480156105e557600080fd5b50600a546105f9906001600160a01b031681565b6040516001600160a01b0390911681526020016104ad565b34801561061d57600080fd5b5061051b61062c3660046142a8565b611390565b34801561063d57600080fd5b506104f661064c36600461416b565b60146020526000908152604090205460ff1681565b61051b61066f36600461421f565b6113ee565b34801561068057600080fd5b5061051b61068f36600461416b565b611776565b3480156106a057600080fd5b506104a36106af36600461416b565b601e6020526000908152604090205481565b3480156106cd57600080fd5b506106e16106dc36600461421f565b611799565b604080516001600160a01b0390931683526020830191909152016104ad565b34801561070c57600080fd5b506104f661071b36600461416b565b611847565b34801561072c57600080fd5b5061051b61073b366004614421565b611898565b34801561074c57600080fd5b5061051b61075b3660046144ca565b6118c7565b34801561076c57600080fd5b5061051b61190a565b34801561078157600080fd5b506104a360225481565b34801561079757600080fd5b5061051b611ac0565b3480156107ac57600080fd5b506104f66107bb36600461416b565b60106020526000908152604090205460ff1681565b3480156107dc57600080fd5b5061051b6107eb36600461421f565b611ad2565b3480156107fc57600080fd5b506104a361080b36600461416b565b601b6020526000908152604090205481565b34801561082957600080fd5b5061083d6108383660046144f3565b611b0b565b6040516104ad91906145f8565b34801561085657600080fd5b506104a361086536600461416b565b60196020526000908152604090205481565b34801561088357600080fd5b506104f661089236600461416b565b600090815260036020526040902054151590565b3480156108b257600080fd5b50600454600160a01b900460ff166104f6565b3480156108d157600080fd5b5061051b611c34565b3480156108e657600080fd5b5061051b611cb0565b3480156108fb57600080fd5b506104a361090a3660046141a0565b600e60209081526000928352604080842090915290825290205481565b34801561093357600080fd5b5061051b61094236600461421f565b611d1a565b34801561095357600080fd5b5061051b61096236600461421f565b611d53565b34801561097357600080fd5b5061051b611d8c565b34801561098857600080fd5b506104f661099736600461416b565b611d9e565b3480156109a857600080fd5b5061051b6109b736600461464f565b611def565b3480156109c857600080fd5b506104f66109d736600461416b565b60126020526000908152604090205460ff1681565b3480156109f857600080fd5b506104a3610a0736600461416b565b60186020526000908152604090205481565b348015610a2557600080fd5b5061051b610a3436600461421f565b611f66565b348015610a4557600080fd5b5061051b610a5436600461416b565b611fee565b348015610a6557600080fd5b506104a3610a7436600461416b565b60176020526000908152604090205481565b348015610a9257600080fd5b5061051b612070565b348015610aa757600080fd5b5061051b610ab6366004614709565b612080565b348015610ac757600080fd5b506104a3610ad636600461416b565b612110565b348015610ae757600080fd5b506104a3610af636600461416b565b601d6020526000908152604090205481565b61051b610b16366004614754565b612131565b348015610b2757600080fd5b5061051b610b3636600461421f565b6125f5565b348015610b4757600080fd5b506105f961262e565b348015610b5c57600080fd5b5061051b610b6b36600461421f565b612647565b348015610b7c57600080fd5b5061058c612661565b348015610b9157600080fd5b5061051b610ba03660046142a8565b61266e565b348015610bb157600080fd5b5061051b610bc03660046147b9565b6126cc565b348015610bd157600080fd5b506104f6610be036600461416b565b60116020526000908152604090205460ff1681565b348015610c0157600080fd5b5061051b610c103660046142a8565b6126e5565b348015610c2157600080fd5b5061051b610c3036600461421f565b612743565b348015610c4157600080fd5b50600b546105f9906001600160a01b031681565b348015610c6157600080fd5b506008546105f9906001600160a01b031681565b348015610c8157600080fd5b50602454610c95906001600160601b031681565b6040516001600160601b0390911681526020016104ad565b348015610cb957600080fd5b5061051b610cc8366004614204565b61275d565b348015610cd957600080fd5b50600d546104f690610100900460ff1681565b348015610cf857600080fd5b506104a3610d0736600461416b565b60009081526003602052604090205490565b348015610d2557600080fd5b5061051b610d343660046147e5565b6127e3565b348015610d4557600080fd5b5061051b610d54366004614826565b61287c565b348015610d6557600080fd5b5061058c610d7436600461416b565b6129da565b348015610d8557600080fd5b506104f6610d9436600461416b565b60136020526000908152604090205460ff1681565b348015610db557600080fd5b506104f6610dc436600461416b565b600f6020526000908152604090205460ff1681565b348015610de557600080fd5b506104a3610df436600461416b565b601a6020526000908152604090205481565b348015610e1257600080fd5b5061051b610e2136600461421f565b6129f3565b348015610e3257600080fd5b506104f6610e41366004614891565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b348015610e7b57600080fd5b506008546104f690600160a01b900460ff1681565b348015610e9c57600080fd5b5061051b610eab36600461421f565b612a0d565b348015610ebc57600080fd5b5061051b610ecb3660046148c4565b612a27565b348015610edc57600080fd5b5061051b610eeb366004614204565b612a96565b348015610efc57600080fd5b5061051b610f0b366004614204565b612b0c565b348015610f1c57600080fd5b506105f9610f2b36600461416b565b612b49565b348015610f3c57600080fd5b506104a3610f4b36600461416b565b601f6020526000908152604090205481565b348015610f6957600080fd5b506104a3610f7836600461416b565b601c6020526000908152604090205481565b61051b610f98366004614928565b612b73565b60006001600160a01b03831661100d5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b600061103082612f0e565b611049612f33565b600d54610100900460ff16156110a15760405162461bcd60e51b815260206004820152601f60248201527f5041594f55545f4144445245535345535f414c52454144595f46524f5a454e006044820152606401611004565b600d805461ff001916610100179055565b6110ba612f33565b600b80546001600160a01b0319166001600160a01b0383169081179091556024546110ee91906001600160601b0316612f92565b50565b6110f9612f33565b6000828152601660205260409020541580611121575060008281526016602052604090205481105b6111675760405162461bcd60e51b815260206004820152601760248201527609c8aaebe9a82b0bea6aaa0a098b2bea89e9ebe90928e9604b1b6044820152606401611004565b6000828152600360205260409020548110156111c55760405162461bcd60e51b815260206004820152601f60248201527f535550504c595f4c4f5745525f5448414e5f4d494e5445445f544f4b454e53006044820152606401611004565b60009182526016602052604090912055565b602080546111e49061495d565b80601f01602080910402602001604051908101604052809291908181526020018280546112109061495d565b801561125d5780601f106112325761010080835404028352916020019161125d565b820191906000526020600020905b81548152906001019060200180831161124057829003601f168201915b505050505081565b61126d612f33565b60008281526013602052604090205481151560ff9091161515036112a35760405162461bcd60e51b815260040161100490614997565b600091825260136020526040909120805460ff1916911515919091179055565b60008181526015602052604090208054606091906112e09061495d565b90506000036112f2576110308261308f565b6000828152601560205260409020805461130b9061495d565b80601f01602080910402602001604051908101604052809291908181526020018280546113379061495d565b80156113845780601f1061135957610100808354040283529160200191611384565b820191906000526020600020905b81548152906001019060200180831161136757829003601f168201915b50505050509050919050565b611398612f33565b60008281526011602052604090205481151560ff9091161515036113ce5760405162461bcd60e51b815260040161100490614997565b600091825260116020526040909120805460ff1916911515919091179055565b32331461140d5760405162461bcd60e51b8152600401611004906149cc565b60026005540361142f5760405162461bcd60e51b815260040161100490614a03565b600260055560008281526012602052604090205460ff1661148e5760405162461bcd60e51b81526020600482015260196024820152785055424c49435f53414c455f49535f4e4f545f41435449564560381b6044820152606401611004565b61149782611d9e565b6114e35760405162461bcd60e51b815260206004820152601e60248201527f5055424c49435f53414c455f54494d455f49535f4e4f545f41435449564500006044820152606401611004565b6000828152601c6020526040902054158061152d57506000828152601c6020908152604080832054338452600e83528184208685529092529091205461152a908390614a50565b11155b6115795760405162461bcd60e51b815260206004820152601e60248201527f4d41585f4d494e54535f464f525f414444524553535f455843454544454400006044820152606401611004565b60008281526016602052604090205415806115b857506000828152601660209081526040808320546003909252909120546115b5908390614a50565b11155b6115d45760405162461bcd60e51b815260040161100490614a63565b6000602254826115e49190614a90565b6000848152601d60205260409020549091508190611603908490614a90565b61160d9190614a50565b341461162b5760405162461bcd60e51b815260040161100490614aa7565b60008381526010602052604090205460ff161561165a5760405162461bcd60e51b815260040161100490614ad2565b600a546040516000916001600160a01b03169083908381818185875af1925050503d80600081146116a7576040519150601f19603f3d011682016040523d82523d6000602084013e6116ac565b606091505b50509050806116cd5760405162461bcd60e51b815260040161100490614b09565b336000908152600e60209081526040808320878452909152812080548592906116f7908490614a50565b925050819055506117193385856040518060200160405280600081525061309e565b6000848152601660205260409020541580159061174f575060008481526016602090815260408083205460039092529091205410155b1561176b576000848152601260205260409020805460ff191690555b505060016005555050565b61177e612f33565b6000908152601060205260409020805460ff19166001179055565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161180e5750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061182d906001600160601b031687614a90565b6118379190614b33565b91519350909150505b9250929050565b60008181526013602052604081205460ff161515810361186957506001919050565b6000828152601b602052604090205442108015906110305750506000908152601a602052604090205442111590565b846001600160a01b03811633146118b2576118b2336131b8565b6118bf86868686866131d2565b505050505050565b6118cf612f33565b602480546bffffffffffffffffffffffff19166001600160601b038316908117909155600b546110ee916001600160a01b0390911690612f92565b611912612f33565b6002600554036119345760405162461bcd60e51b815260040161100490614a03565b6002600555476119865760405162461bcd60e51b815260206004820152601760248201527f434f4e54524143545f4841535f4e4f5f42414c414e43450000000000000000006044820152606401611004565b600c546119cb5760405162461bcd60e51b81526020600482015260136024820152724e4f5f5041594f55545f41444452455353455360681b6044820152606401611004565b4760005b600c54811015611ab7576000612710602383815481106119f1576119f1614b55565b906000526020600020015484611a079190614a90565b611a119190614b33565b90506000600c8381548110611a2857611a28614b55565b60009182526020822001546040516001600160a01b039091169184919081818185875af1925050503d8060008114611a7c576040519150601f19603f3d011682016040523d82523d6000602084013e611a81565b606091505b5050905080611aa25760405162461bcd60e51b815260040161100490614b09565b50508080611aaf90614b6b565b9150506119cf565b50506001600555565b611ac8612f33565b611ad061321e565b565b611ada612f33565b428111611af95760405162461bcd60e51b815260040161100490614b84565b6000918252601b602052604090912055565b60608151835114611b705760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401611004565b600083516001600160401b03811115611b8b57611b8b6142d8565b604051908082528060200260200182016040528015611bb4578160200160208202803683370190505b50905060005b8451811015611c2c57611bff858281518110611bd857611bd8614b55565b6020026020010151858381518110611bf257611bf2614b55565b6020026020010151610f9d565b828281518110611c1157611c11614b55565b6020908102919091010152611c2581614b6b565b9050611bba565b509392505050565b611c3c61262e565b6001600160a01b0316336001600160a01b031614611c6d57604051635fc483c560e01b815260040160405180910390fd5b600854600160a01b900460ff1615611c9857604051631551a48f60e11b815260040160405180910390fd5b600880546001600160a81b031916600160a01b179055565b611cb8612f33565b600d5460ff1615611d0b5760405162461bcd60e51b815260206004820181905260248201527f4d455441444154415f4841535f414c52454144595f4245454e5f46524f5a454e6044820152606401611004565b600d805460ff19166001179055565b611d22612f33565b428111611d415760405162461bcd60e51b815260040161100490614b84565b6000918252601a602052604090912055565b611d5b612f33565b428111611d7a5760405162461bcd60e51b815260040161100490614b84565b6000918252601f602052604090912055565b611d94612f33565b611ad06000613273565b60008181526014602052604081205460ff1615158103611dc057506001919050565b6000828152601f602052604090205442108015906110305750506000908152601e602052604090205442111590565b611df7612f33565b60008581526010602052604090205460ff1615611e265760405162461bcd60e51b815260040161100490614ad2565b6000805b82811015611e6a57838382818110611e4457611e44614b55565b9050602002013582611e569190614a50565b915080611e6281614b6b565b915050611e2a565b506000868152601660205260409020541580611eaa5750600086815260166020908152604080832054600390925290912054611ea7908390614a50565b11155b611ee75760405162461bcd60e51b815260206004820152600e60248201526d4d494e545f544f4f5f4c4152474560901b6044820152606401611004565b60005b84811015611f5d57611f4b868683818110611f0757611f07614b55565b9050602002016020810190611f1c9190614204565b88868685818110611f2f57611f2f614b55565b905060200201356040518060200160405280600081525061309e565b80611f5581614b6b565b915050611eea565b50505050505050565b611f6e612f33565b6000828152601760205260409020541580611f96575060008281526017602052604090205481105b611fdc5760405162461bcd60e51b815260206004820152601760248201527609c8aaebe9a82b0bea6aaa0a098b2bea89e9ebe90928e9604b1b6044820152606401611004565b60009182526017602052604090912055565b611ff6612f33565b6000818152600f602052604090205460ff16156120555760405162461bcd60e51b815260206004820181905260248201527f4d455441444154415f4841535f414c52454144595f4245454e5f46524f5a454e6044820152606401611004565b6000908152600f60205260409020805460ff19166001179055565b612078612f33565b611ad06132c5565b612088612f33565b600d5460ff161580156120aa57506000838152600f602052604090205460ff16155b6120f15760405162461bcd60e51b815260206004820152601860248201527726a2aa20a220aa20afa420a9afa122a2a72fa32927ad22a760411b6044820152606401611004565b600083815260156020526040902061210a828483614bf0565b50505050565b6023818154811061212057600080fd5b600091825260209091200154905081565b3233146121505760405162461bcd60e51b8152600401611004906149cc565b6002600554036121725760405162461bcd60e51b815260040161100490614a03565b600260055560008381526011602052604090205460ff166121cd5760405162461bcd60e51b815260206004820152601560248201527450524553414c455f49535f4e4f545f41435449564560581b6044820152606401611004565b6121d683611847565b6122225760405162461bcd60e51b815260206004820152601a60248201527f50524553414c455f54494d455f49535f4e4f545f4143544956450000000000006044820152606401611004565b60008381526010602052604090205460ff16156122515760405162461bcd60e51b815260040161100490614ad2565b600083815260186020526040902054158061229b5750600083815260186020908152604080832054338452600e835281842087855290925290912054612298908490614a50565b11155b6122e75760405162461bcd60e51b815260206004820152601e60248201527f4d41585f4d494e54535f5045525f414444524553535f455843454544454400006044820152606401611004565b80158061231a5750336000908152600e602090815260408083208684529091529020548190612317908490614a50565b11155b61235b5760405162461bcd60e51b815260206004820152601260248201527113505617d352539514d7d15610d15151115160721b6044820152606401611004565b600083815260176020526040902054158061239a5750600083815260176020908152604080832054600390925290912054612397908490614a50565b11155b6123b65760405162461bcd60e51b815260040161100490614a63565b6000602254836123c69190614a90565b60008581526019602052604090205490915081906123e5908590614a90565b6123ef9190614a50565b341461240d5760405162461bcd60e51b815260040161100490614aa7565b60408051336020820152908101839052606081018590528790608001604051602081830303815290604052805190602001201461247e5760405162461bcd60e51b815260206004820152600f60248201526e135154d4d051d157d2539590531251608a1b6044820152606401611004565b612489878787613308565b6124d55760405162461bcd60e51b815260206004820152601b60248201527f5349474e41545552455f56414c49444154494f4e5f4641494c454400000000006044820152606401611004565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612522576040519150601f19603f3d011682016040523d82523d6000602084013e612527565b606091505b50509050806125485760405162461bcd60e51b815260040161100490614b09565b336000908152600e6020908152604080832088845290915281208054869290612572908490614a50565b925050819055506125943386866040518060200160405280600081525061309e565b600085815260176020526040902054158015906125ca575060008581526017602090815260408083205460039092529091205410155b156125e6576000858152601160205260409020805460ff191690555b50506001600555505050505050565b6125fd612f33565b42811161261c5760405162461bcd60e51b815260040161100490614b84565b6000918252601e602052604090912055565b60006126426004546001600160a01b031690565b905090565b61264f612f33565b60009182526019602052604090912055565b602180546111e49061495d565b612676612f33565b60008281526012602052604090205481151560ff9091161515036126ac5760405162461bcd60e51b815260040161100490614997565b600091825260126020526040909120805460ff1916911515919091179055565b816126d6816131b8565b6126e0838361336e565b505050565b6126ed612f33565b60008281526014602052604090205481151560ff9091161515036127235760405162461bcd60e51b815260040161100490614997565b600091825260146020526040909120805460ff1916911515919091179055565b61274b612f33565b60009182526018602052604090912055565b61276561262e565b6001600160a01b0316336001600160a01b03161461279657604051635fc483c560e01b815260040160405180910390fd5b600854600160a01b900460ff16156127c157604051631551a48f60e11b815260040160405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6127eb612f33565b600d5460ff16156128395760405162461bcd60e51b815260206004820152601860248201527726a2aa20a220aa20afa420a9afa122a2a72fa32927ad22a760411b6044820152606401611004565b61287882828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061337992505050565b5050565b612884612f33565b600d54610100900460ff16156128dc5760405162461bcd60e51b815260206004820152601760248201527f5041594f55545f4144445245535345535f46524f5a454e0000000000000000006044820152606401611004565b82811461292b5760405162461bcd60e51b815260206004820152601860248201527f41525241595f4c454e475448535f4d5553545f4d4154434800000000000000006044820152606401611004565b6000805b8281101561296f5783838281811061294957612949614b55565b905060200201358261295b9190614a50565b91508061296781614b6b565b91505061292f565b5080612710146129c15760405162461bcd60e51b815260206004820181905260248201527f544f54414c5f42415349535f504f494e54535f4d5553545f42455f31303030306044820152606401611004565b6129cd600c86866140b8565b506118bf6023848461411b565b601560205260009081526040902080546111e49061495d565b6129fb612f33565b6000918252601c602052604090912055565b612a15612f33565b6000918252601d602052604090912055565b846001600160a01b0381163314612a4157612a41336131b8565b60008311612a895760405162461bcd60e51b8152602060048201526015602482015274414d4f554e545f43414e4e4f545f42455f5a45524f60581b6044820152606401611004565b6118bf8686868686613385565b612a9e612f33565b6001600160a01b038116612b035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611004565b6110ee81613273565b612b14612f33565b6001600160a01b038116612b2757600080fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600c8181548110612b5957600080fd5b6000918252602090912001546001600160a01b0316905081565b323314612b925760405162461bcd60e51b8152600401611004906149cc565b600260055403612bb45760405162461bcd60e51b815260040161100490614a03565b600260055560008381526012602052604090205460ff16612c135760405162461bcd60e51b81526020600482015260196024820152785055424c49435f53414c455f49535f4e4f545f41435449564560381b6044820152606401611004565b612c1c83611d9e565b612c685760405162461bcd60e51b815260206004820152601e60248201527f5055424c49435f53414c455f54494d455f49535f4e4f545f41435449564500006044820152606401611004565b6000838152601c60205260409020541580612cbb57506000838152601c60209081526040808320546001600160a01b0385168452600e835281842087855290925290912054612cb8908490614a50565b11155b612d075760405162461bcd60e51b815260206004820152601e60248201527f4d41585f4d494e54535f464f525f414444524553535f455843454544454400006044820152606401611004565b6000838152601660205260409020541580612d465750600083815260166020908152604080832054600390925290912054612d43908490614a50565b11155b612d625760405162461bcd60e51b815260040161100490614a63565b600060225483612d729190614a90565b6000858152601d60205260409020549091508190612d91908590614a90565b612d9b9190614a50565b3414612db95760405162461bcd60e51b815260040161100490614aa7565b60008481526010602052604090205460ff1615612de85760405162461bcd60e51b815260040161100490614ad2565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612e35576040519150601f19603f3d011682016040523d82523d6000602084013e612e3a565b606091505b5050905080612e5b5760405162461bcd60e51b815260040161100490614b09565b6001600160a01b0383166000908152600e6020908152604080832088845290915281208054869290612e8e908490614a50565b92505081905550612eb08386866040518060200160405280600081525061309e565b60008581526016602052604090205415801590612ee6575060008581526016602090815260408083205460039092529091205410155b15612f02576000858152601260205260409020805460ff191690555b50506001600555505050565b60006001600160e01b0319821663152a902d60e11b14806110305750611030826133ca565b33612f3c61262e565b6001600160a01b031614611ad05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611004565b6127106001600160601b03821611156130005760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611004565b6001600160a01b0382166130565760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611004565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b60606002805461130b9061495d565b6001600160a01b0384166130fe5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401611004565b33600061310a8561341a565b905060006131178561341a565b905061312883600089858589613465565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290613158908490614a50565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611f5d8360008989898961347b565b6008546001600160a01b0316156110ee576110ee816135d6565b6001600160a01b0385163314806131ee57506131ee8533610e41565b61320a5760405162461bcd60e51b815260040161100490614caf565b6132178585858585613698565b5050505050565b61322661387b565b6004805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6132cd6138cb565b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586132563390565b600061335583838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061334f92508891506139189050565b9061396b565b6009546001600160a01b03918216911614949350505050565b612878338383613987565b60026128788282614cfe565b6001600160a01b0385163314806133a157506133a18533610e41565b6133bd5760405162461bcd60e51b815260040161100490614caf565b6132178585858585613a67565b60006001600160e01b03198216636cdb3d1360e11b14806133fb57506001600160e01b031982166303a24d0760e21b145b8061103057506301ffc9a760e01b6001600160e01b0319831614611030565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061345457613454614b55565b602090810291909101015292915050565b61346d6138cb565b6118bf868686868686613b9f565b6001600160a01b0384163b156118bf5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906134bf9089908990889088908890600401614dbd565b6020604051808303816000875af19250505080156134fa575060408051601f3d908101601f191682019092526134f791810190614e02565b60015b6135a657613506614e1f565b806308c379a00361353f575061351a614e3b565b806135255750613541565b8060405162461bcd60e51b81526004016110049190614287565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401611004565b6001600160e01b0319811663f23a6e6160e01b14611f5d5760405162461bcd60e51b815260040161100490614ec4565b6008546001600160a01b031680158015906135fb57506000816001600160a01b03163b115b1561287857604051633185c44d60e21b81523060048201526001600160a01b03838116602483015282169063c617113490604401602060405180830381865afa15801561364c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136709190614f0c565b61287857604051633b79c77360e21b81526001600160a01b0383166004820152602401611004565b81518351146136fa5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401611004565b6001600160a01b0384166137205760405162461bcd60e51b815260040161100490614f29565b3361372f818787878787613465565b60005b845181101561381557600085828151811061374f5761374f614b55565b60200260200101519050600085838151811061376d5761376d614b55565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156137bd5760405162461bcd60e51b815260040161100490614f6e565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906137fa908490614a50565b925050819055505050508061380e90614b6b565b9050613732565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613865929190614fb8565b60405180910390a46118bf818787878787613d18565b600454600160a01b900460ff16611ad05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401611004565b600454600160a01b900460ff1615611ad05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401611004565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b600080600061397a8585613dd3565b91509150611c2c81613e15565b816001600160a01b0316836001600160a01b0316036139fa5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401611004565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416613a8d5760405162461bcd60e51b815260040161100490614f29565b336000613a998561341a565b90506000613aa68561341a565b9050613ab6838989858589613465565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015613af75760405162461bcd60e51b815260040161100490614f6e565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290613b34908490614a50565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4613b94848a8a8a8a8a61347b565b505050505050505050565b6001600160a01b038516613c265760005b8351811015613c2457828181518110613bcb57613bcb614b55565b602002602001015160036000868481518110613be957613be9614b55565b602002602001015181526020019081526020016000206000828254613c0e9190614a50565b90915550613c1d905081614b6b565b9050613bb0565b505b6001600160a01b0384166118bf5760005b8351811015611f5d576000848281518110613c5457613c54614b55565b602002602001015190506000848381518110613c7257613c72614b55565b6020026020010151905060006003600084815260200190815260200160002054905081811015613cf55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401611004565b60009283526003602052604090922091039055613d1181614b6b565b9050613c37565b6001600160a01b0384163b156118bf5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190613d5c9089908990889088908890600401614fe6565b6020604051808303816000875af1925050508015613d97575060408051601f3d908101601f19168201909252613d9491810190614e02565b60015b613da357613506614e1f565b6001600160e01b0319811663bc197c8160e01b14611f5d5760405162461bcd60e51b815260040161100490614ec4565b6000808251604103613e095760208301516040840151606085015160001a613dfd87828585613fcb565b94509450505050611840565b50600090506002611840565b6000816004811115613e2957613e29615044565b03613e315750565b6001816004811115613e4557613e45615044565b03613e925760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401611004565b6002816004811115613ea657613ea6615044565b03613ef35760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401611004565b6003816004811115613f0757613f07615044565b03613f5f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401611004565b6004816004811115613f7357613f73615044565b036110ee5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401611004565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561400257506000905060036140af565b8460ff16601b1415801561401a57508460ff16601c14155b1561402b57506000905060046140af565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561407f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166140a8576000600192509250506140af565b9150600090505b94509492505050565b82805482825590600052602060002090810192821561410b579160200282015b8281111561410b5781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906140d8565b50614117929150614156565b5090565b82805482825590600052602060002090810192821561410b579160200282015b8281111561410b57823582559160200191906001019061413b565b5b808211156141175760008155600101614157565b60006020828403121561417d57600080fd5b5035919050565b80356001600160a01b038116811461419b57600080fd5b919050565b600080604083850312156141b357600080fd5b6141bc83614184565b946020939093013593505050565b6001600160e01b0319811681146110ee57600080fd5b6000602082840312156141f257600080fd5b81356141fd816141ca565b9392505050565b60006020828403121561421657600080fd5b6141fd82614184565b6000806040838503121561423257600080fd5b50508035926020909101359150565b6000815180845260005b818110156142675760208185018101518683018201520161424b565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006141fd6020830184614241565b80151581146110ee57600080fd5b600080604083850312156142bb57600080fd5b8235915060208301356142cd8161429a565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715614313576143136142d8565b6040525050565b60006001600160401b03821115614333576143336142d8565b5060051b60200190565b600082601f83011261434e57600080fd5b8135602061435b8261431a565b60405161436882826142ee565b83815260059390931b850182019282810191508684111561438857600080fd5b8286015b848110156143a3578035835291830191830161438c565b509695505050505050565b600082601f8301126143bf57600080fd5b81356001600160401b038111156143d8576143d86142d8565b6040516143ef601f8301601f1916602001826142ee565b81815284602083860101111561440457600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561443957600080fd5b61444286614184565b945061445060208701614184565b935060408601356001600160401b038082111561446c57600080fd5b61447889838a0161433d565b9450606088013591508082111561448e57600080fd5b61449a89838a0161433d565b935060808801359150808211156144b057600080fd5b506144bd888289016143ae565b9150509295509295909350565b6000602082840312156144dc57600080fd5b81356001600160601b03811681146141fd57600080fd5b6000806040838503121561450657600080fd5b82356001600160401b038082111561451d57600080fd5b818501915085601f83011261453157600080fd5b8135602061453e8261431a565b60405161454b82826142ee565b83815260059390931b850182019282810191508984111561456b57600080fd5b948201945b838610156145905761458186614184565b82529482019490820190614570565b965050860135925050808211156145a657600080fd5b506145b38582860161433d565b9150509250929050565b600081518084526020808501945080840160005b838110156145ed578151875295820195908201906001016145d1565b509495945050505050565b6020815260006141fd60208301846145bd565b60008083601f84011261461d57600080fd5b5081356001600160401b0381111561463457600080fd5b6020830191508360208260051b850101111561184057600080fd5b60008060008060006060868803121561466757600080fd5b8535945060208601356001600160401b038082111561468557600080fd5b61469189838a0161460b565b909650945060408801359150808211156146aa57600080fd5b506146b78882890161460b565b969995985093965092949392505050565b60008083601f8401126146da57600080fd5b5081356001600160401b038111156146f157600080fd5b60208301915083602082850101111561184057600080fd5b60008060006040848603121561471e57600080fd5b8335925060208401356001600160401b0381111561473b57600080fd5b614747868287016146c8565b9497909650939450505050565b60008060008060008060a0878903121561476d57600080fd5b8635955060208701356001600160401b0381111561478a57600080fd5b61479689828a016146c8565b979a90995096976040810135976060820135975060809091013595509350505050565b600080604083850312156147cc57600080fd5b6147d583614184565b915060208301356142cd8161429a565b600080602083850312156147f857600080fd5b82356001600160401b0381111561480e57600080fd5b61481a858286016146c8565b90969095509350505050565b6000806000806040858703121561483c57600080fd5b84356001600160401b038082111561485357600080fd5b61485f8883890161460b565b9096509450602087013591508082111561487857600080fd5b506148858782880161460b565b95989497509550505050565b600080604083850312156148a457600080fd5b6148ad83614184565b91506148bb60208401614184565b90509250929050565b600080600080600060a086880312156148dc57600080fd5b6148e586614184565b94506148f360208701614184565b9350604086013592506060860135915060808601356001600160401b0381111561491c57600080fd5b6144bd888289016143ae565b60008060006060848603121561493d57600080fd5b833592506020840135915061495460408501614184565b90509250925092565b600181811c9082168061497157607f821691505b60208210810361499157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4e45575f53544154455f4944454e544943414c5f544f5f4f4c445f5354415445604082015260600190565b60208082526019908201527f43414e4e4f545f43414c4c5f46524f4d5f434f4e545241435400000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561103057611030614a3a565b60208082526013908201527213505617d4d55414131657d15610d151511151606a1b604082015260600190565b808202811582820484141761103057611030614a3a565b6020808252601190820152701410565351539517d25390d3d4949150d5607a1b604082015260600190565b6020808252601c908201527f4d494e54494e475f5045524d414e454e544c595f44495341424c454400000000604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b600082614b5057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201614b7d57614b7d614a3a565b5060010190565b6020808252600c908201526b1512535157d25397d41054d560a21b604082015260600190565b601f8211156126e057600081815260208120601f850160051c81016020861015614bd15750805b601f850160051c820191505b818110156118bf57828155600101614bdd565b6001600160401b03831115614c0757614c076142d8565b614c1b83614c15835461495d565b83614baa565b6000601f841160018114614c4f5760008515614c375750838201355b600019600387901b1c1916600186901b178355613217565b600083815260209020601f19861690835b82811015614c805786850135825560209485019460019092019101614c60565b5086821015614c9d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b81516001600160401b03811115614d1757614d176142d8565b614d2b81614d25845461495d565b84614baa565b602080601f831160018114614d605760008415614d485750858301515b600019600386901b1c1916600185901b1785556118bf565b600085815260208120601f198616915b82811015614d8f57888601518255948401946001909101908401614d70565b5085821015614dad5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090614df790830184614241565b979650505050505050565b600060208284031215614e1457600080fd5b81516141fd816141ca565b600060033d1115614e385760046000803e5060005160e01c5b90565b600060443d1015614e495790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715614e7857505050505090565b8285019150815181811115614e905750505050505090565b843d8701016020828501011115614eaa5750505050505090565b614eb9602082860101876142ee565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b600060208284031215614f1e57600080fd5b81516141fd8161429a565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000614fcb60408301856145bd565b8281036020840152614fdd81856145bd565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090615012908301866145bd565b828103606084015261502481866145bd565b905082810360808401526150388185614241565b98975050505050505050565b634e487b7160e01b600052602160045260246000fdfea26469706673582212202db068fced5e00720ac8020a5e435b37ab764cc20d3a53343cbf23b6bff8dc9a64736f6c63430008110033697066733a2f2f62616679626569663233666570346f6a326e3667776636697363677578356d717433677a336779666135686234666b3269363675746a33656878652f7b69647d00000000000000000000000000000000000000000000000000027ca57357c000

Deployed Bytecode

0x6080604052600436106104715760003560e01c806376ca9c4c1161024a578063b8d1e53211610139578063e985e9c5116100b6578063f47749fc1161007a578063f47749fc14610ef0578063f487077414610f10578063f5842f9514610f30578063fc49e58f14610f5d578063fe93926314610f8a57600080fd5b8063e985e9c514610e26578063ecba222a14610e6f578063efd3af1a14610e90578063f242432a14610eb0578063f2fde38b14610ed057600080fd5b8063c87b56dd116100fd578063c87b56dd14610d59578063d35cdb3a14610d79578063d569d80714610da9578063d976637014610dd9578063e5aa68a214610e0657600080fd5b8063b8d1e53214610cad578063ba75298914610ccd578063bd85b03914610cec578063c15d0e2114610d19578063c872d0e814610d3957600080fd5b806394901dd4116101c7578063a78f075c1161018b578063a78f075c14610bf5578063ac80165814610c15578063ad2f852a14610c35578063b0ccc31e14610c55578063b8997a9714610c7557600080fd5b806394901dd414610b5057806395d89b4114610b705780639d86a76614610b85578063a22cb46514610ba5578063a451aeb014610bc557600080fd5b80638834e93b1161020e5780638834e93b14610abb5780638a01860f14610adb5780638a78bdf614610b085780638b665b1114610b1b5780638da5cb5b14610b3b57600080fd5b806376ca9c4c14610a19578063795a257514610a395780637c55351214610a595780638456cb5914610a86578063862440e214610a9b57600080fd5b80633ccfd60b116103665780635ef9432a116102e3578063715018a6116102a7578063715018a61461096757806371f0d5ab1461097c578063750074771461099c5780637521f3bc146109bc578063756f520d146109ec57600080fd5b80635ef9432a146108c5578063629c51bc146108da578063635c4ce7146108ef5780636703dad81461092757806368e8490b1461094757600080fd5b80634db168571161032a5780634db16857146107f05780634e1273f41461081d5780634ed314911461084a5780634f558e79146108775780635c975abb146108a657600080fd5b80633ccfd60b146107605780633e5c68ba146107755780633f4ba83a1461078b5780633fa71b3f146107a0578063493b4665146107d057600080fd5b806314d3fcf8116103f457806329b6bfa5116103b857806329b6bfa5146106945780632a55205a146106c15780632c260ae5146107005780632eb2c2d61461072057806331faafb41461074057600080fd5b806314d3fcf8146105d957806315ad371f146106115780631d723bf11461063157806320cbf5f91461066157806325153e131461067457600080fd5b806306d254da1161043b57806306d254da1461053757806306d4c8b41461055757806306fdde031461057757806307c981f2146105995780630e89341c146105b957600080fd5b80624221f014610476578062fdd58e146104b657806301ffc9a7146104d657806304ff2d0714610506578063060b01e11461051d575b600080fd5b34801561048257600080fd5b506104a361049136600461416b565b60166020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156104c257600080fd5b506104a36104d13660046141a0565b610f9d565b3480156104e257600080fd5b506104f66104f13660046141e0565b611036565b60405190151581526020016104ad565b34801561051257600080fd5b5061051b611041565b005b34801561052957600080fd5b50600d546104f69060ff1681565b34801561054357600080fd5b5061051b610552366004614204565b6110b2565b34801561056357600080fd5b5061051b61057236600461421f565b6110f1565b34801561058357600080fd5b5061058c6111d7565b6040516104ad9190614287565b3480156105a557600080fd5b5061051b6105b43660046142a8565b611265565b3480156105c557600080fd5b5061058c6105d436600461416b565b6112c3565b3480156105e557600080fd5b50600a546105f9906001600160a01b031681565b6040516001600160a01b0390911681526020016104ad565b34801561061d57600080fd5b5061051b61062c3660046142a8565b611390565b34801561063d57600080fd5b506104f661064c36600461416b565b60146020526000908152604090205460ff1681565b61051b61066f36600461421f565b6113ee565b34801561068057600080fd5b5061051b61068f36600461416b565b611776565b3480156106a057600080fd5b506104a36106af36600461416b565b601e6020526000908152604090205481565b3480156106cd57600080fd5b506106e16106dc36600461421f565b611799565b604080516001600160a01b0390931683526020830191909152016104ad565b34801561070c57600080fd5b506104f661071b36600461416b565b611847565b34801561072c57600080fd5b5061051b61073b366004614421565b611898565b34801561074c57600080fd5b5061051b61075b3660046144ca565b6118c7565b34801561076c57600080fd5b5061051b61190a565b34801561078157600080fd5b506104a360225481565b34801561079757600080fd5b5061051b611ac0565b3480156107ac57600080fd5b506104f66107bb36600461416b565b60106020526000908152604090205460ff1681565b3480156107dc57600080fd5b5061051b6107eb36600461421f565b611ad2565b3480156107fc57600080fd5b506104a361080b36600461416b565b601b6020526000908152604090205481565b34801561082957600080fd5b5061083d6108383660046144f3565b611b0b565b6040516104ad91906145f8565b34801561085657600080fd5b506104a361086536600461416b565b60196020526000908152604090205481565b34801561088357600080fd5b506104f661089236600461416b565b600090815260036020526040902054151590565b3480156108b257600080fd5b50600454600160a01b900460ff166104f6565b3480156108d157600080fd5b5061051b611c34565b3480156108e657600080fd5b5061051b611cb0565b3480156108fb57600080fd5b506104a361090a3660046141a0565b600e60209081526000928352604080842090915290825290205481565b34801561093357600080fd5b5061051b61094236600461421f565b611d1a565b34801561095357600080fd5b5061051b61096236600461421f565b611d53565b34801561097357600080fd5b5061051b611d8c565b34801561098857600080fd5b506104f661099736600461416b565b611d9e565b3480156109a857600080fd5b5061051b6109b736600461464f565b611def565b3480156109c857600080fd5b506104f66109d736600461416b565b60126020526000908152604090205460ff1681565b3480156109f857600080fd5b506104a3610a0736600461416b565b60186020526000908152604090205481565b348015610a2557600080fd5b5061051b610a3436600461421f565b611f66565b348015610a4557600080fd5b5061051b610a5436600461416b565b611fee565b348015610a6557600080fd5b506104a3610a7436600461416b565b60176020526000908152604090205481565b348015610a9257600080fd5b5061051b612070565b348015610aa757600080fd5b5061051b610ab6366004614709565b612080565b348015610ac757600080fd5b506104a3610ad636600461416b565b612110565b348015610ae757600080fd5b506104a3610af636600461416b565b601d6020526000908152604090205481565b61051b610b16366004614754565b612131565b348015610b2757600080fd5b5061051b610b3636600461421f565b6125f5565b348015610b4757600080fd5b506105f961262e565b348015610b5c57600080fd5b5061051b610b6b36600461421f565b612647565b348015610b7c57600080fd5b5061058c612661565b348015610b9157600080fd5b5061051b610ba03660046142a8565b61266e565b348015610bb157600080fd5b5061051b610bc03660046147b9565b6126cc565b348015610bd157600080fd5b506104f6610be036600461416b565b60116020526000908152604090205460ff1681565b348015610c0157600080fd5b5061051b610c103660046142a8565b6126e5565b348015610c2157600080fd5b5061051b610c3036600461421f565b612743565b348015610c4157600080fd5b50600b546105f9906001600160a01b031681565b348015610c6157600080fd5b506008546105f9906001600160a01b031681565b348015610c8157600080fd5b50602454610c95906001600160601b031681565b6040516001600160601b0390911681526020016104ad565b348015610cb957600080fd5b5061051b610cc8366004614204565b61275d565b348015610cd957600080fd5b50600d546104f690610100900460ff1681565b348015610cf857600080fd5b506104a3610d0736600461416b565b60009081526003602052604090205490565b348015610d2557600080fd5b5061051b610d343660046147e5565b6127e3565b348015610d4557600080fd5b5061051b610d54366004614826565b61287c565b348015610d6557600080fd5b5061058c610d7436600461416b565b6129da565b348015610d8557600080fd5b506104f6610d9436600461416b565b60136020526000908152604090205460ff1681565b348015610db557600080fd5b506104f6610dc436600461416b565b600f6020526000908152604090205460ff1681565b348015610de557600080fd5b506104a3610df436600461416b565b601a6020526000908152604090205481565b348015610e1257600080fd5b5061051b610e2136600461421f565b6129f3565b348015610e3257600080fd5b506104f6610e41366004614891565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b348015610e7b57600080fd5b506008546104f690600160a01b900460ff1681565b348015610e9c57600080fd5b5061051b610eab36600461421f565b612a0d565b348015610ebc57600080fd5b5061051b610ecb3660046148c4565b612a27565b348015610edc57600080fd5b5061051b610eeb366004614204565b612a96565b348015610efc57600080fd5b5061051b610f0b366004614204565b612b0c565b348015610f1c57600080fd5b506105f9610f2b36600461416b565b612b49565b348015610f3c57600080fd5b506104a3610f4b36600461416b565b601f6020526000908152604090205481565b348015610f6957600080fd5b506104a3610f7836600461416b565b601c6020526000908152604090205481565b61051b610f98366004614928565b612b73565b60006001600160a01b03831661100d5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b600061103082612f0e565b611049612f33565b600d54610100900460ff16156110a15760405162461bcd60e51b815260206004820152601f60248201527f5041594f55545f4144445245535345535f414c52454144595f46524f5a454e006044820152606401611004565b600d805461ff001916610100179055565b6110ba612f33565b600b80546001600160a01b0319166001600160a01b0383169081179091556024546110ee91906001600160601b0316612f92565b50565b6110f9612f33565b6000828152601660205260409020541580611121575060008281526016602052604090205481105b6111675760405162461bcd60e51b815260206004820152601760248201527609c8aaebe9a82b0bea6aaa0a098b2bea89e9ebe90928e9604b1b6044820152606401611004565b6000828152600360205260409020548110156111c55760405162461bcd60e51b815260206004820152601f60248201527f535550504c595f4c4f5745525f5448414e5f4d494e5445445f544f4b454e53006044820152606401611004565b60009182526016602052604090912055565b602080546111e49061495d565b80601f01602080910402602001604051908101604052809291908181526020018280546112109061495d565b801561125d5780601f106112325761010080835404028352916020019161125d565b820191906000526020600020905b81548152906001019060200180831161124057829003601f168201915b505050505081565b61126d612f33565b60008281526013602052604090205481151560ff9091161515036112a35760405162461bcd60e51b815260040161100490614997565b600091825260136020526040909120805460ff1916911515919091179055565b60008181526015602052604090208054606091906112e09061495d565b90506000036112f2576110308261308f565b6000828152601560205260409020805461130b9061495d565b80601f01602080910402602001604051908101604052809291908181526020018280546113379061495d565b80156113845780601f1061135957610100808354040283529160200191611384565b820191906000526020600020905b81548152906001019060200180831161136757829003601f168201915b50505050509050919050565b611398612f33565b60008281526011602052604090205481151560ff9091161515036113ce5760405162461bcd60e51b815260040161100490614997565b600091825260116020526040909120805460ff1916911515919091179055565b32331461140d5760405162461bcd60e51b8152600401611004906149cc565b60026005540361142f5760405162461bcd60e51b815260040161100490614a03565b600260055560008281526012602052604090205460ff1661148e5760405162461bcd60e51b81526020600482015260196024820152785055424c49435f53414c455f49535f4e4f545f41435449564560381b6044820152606401611004565b61149782611d9e565b6114e35760405162461bcd60e51b815260206004820152601e60248201527f5055424c49435f53414c455f54494d455f49535f4e4f545f41435449564500006044820152606401611004565b6000828152601c6020526040902054158061152d57506000828152601c6020908152604080832054338452600e83528184208685529092529091205461152a908390614a50565b11155b6115795760405162461bcd60e51b815260206004820152601e60248201527f4d41585f4d494e54535f464f525f414444524553535f455843454544454400006044820152606401611004565b60008281526016602052604090205415806115b857506000828152601660209081526040808320546003909252909120546115b5908390614a50565b11155b6115d45760405162461bcd60e51b815260040161100490614a63565b6000602254826115e49190614a90565b6000848152601d60205260409020549091508190611603908490614a90565b61160d9190614a50565b341461162b5760405162461bcd60e51b815260040161100490614aa7565b60008381526010602052604090205460ff161561165a5760405162461bcd60e51b815260040161100490614ad2565b600a546040516000916001600160a01b03169083908381818185875af1925050503d80600081146116a7576040519150601f19603f3d011682016040523d82523d6000602084013e6116ac565b606091505b50509050806116cd5760405162461bcd60e51b815260040161100490614b09565b336000908152600e60209081526040808320878452909152812080548592906116f7908490614a50565b925050819055506117193385856040518060200160405280600081525061309e565b6000848152601660205260409020541580159061174f575060008481526016602090815260408083205460039092529091205410155b1561176b576000848152601260205260409020805460ff191690555b505060016005555050565b61177e612f33565b6000908152601060205260409020805460ff19166001179055565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161180e5750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061182d906001600160601b031687614a90565b6118379190614b33565b91519350909150505b9250929050565b60008181526013602052604081205460ff161515810361186957506001919050565b6000828152601b602052604090205442108015906110305750506000908152601a602052604090205442111590565b846001600160a01b03811633146118b2576118b2336131b8565b6118bf86868686866131d2565b505050505050565b6118cf612f33565b602480546bffffffffffffffffffffffff19166001600160601b038316908117909155600b546110ee916001600160a01b0390911690612f92565b611912612f33565b6002600554036119345760405162461bcd60e51b815260040161100490614a03565b6002600555476119865760405162461bcd60e51b815260206004820152601760248201527f434f4e54524143545f4841535f4e4f5f42414c414e43450000000000000000006044820152606401611004565b600c546119cb5760405162461bcd60e51b81526020600482015260136024820152724e4f5f5041594f55545f41444452455353455360681b6044820152606401611004565b4760005b600c54811015611ab7576000612710602383815481106119f1576119f1614b55565b906000526020600020015484611a079190614a90565b611a119190614b33565b90506000600c8381548110611a2857611a28614b55565b60009182526020822001546040516001600160a01b039091169184919081818185875af1925050503d8060008114611a7c576040519150601f19603f3d011682016040523d82523d6000602084013e611a81565b606091505b5050905080611aa25760405162461bcd60e51b815260040161100490614b09565b50508080611aaf90614b6b565b9150506119cf565b50506001600555565b611ac8612f33565b611ad061321e565b565b611ada612f33565b428111611af95760405162461bcd60e51b815260040161100490614b84565b6000918252601b602052604090912055565b60608151835114611b705760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401611004565b600083516001600160401b03811115611b8b57611b8b6142d8565b604051908082528060200260200182016040528015611bb4578160200160208202803683370190505b50905060005b8451811015611c2c57611bff858281518110611bd857611bd8614b55565b6020026020010151858381518110611bf257611bf2614b55565b6020026020010151610f9d565b828281518110611c1157611c11614b55565b6020908102919091010152611c2581614b6b565b9050611bba565b509392505050565b611c3c61262e565b6001600160a01b0316336001600160a01b031614611c6d57604051635fc483c560e01b815260040160405180910390fd5b600854600160a01b900460ff1615611c9857604051631551a48f60e11b815260040160405180910390fd5b600880546001600160a81b031916600160a01b179055565b611cb8612f33565b600d5460ff1615611d0b5760405162461bcd60e51b815260206004820181905260248201527f4d455441444154415f4841535f414c52454144595f4245454e5f46524f5a454e6044820152606401611004565b600d805460ff19166001179055565b611d22612f33565b428111611d415760405162461bcd60e51b815260040161100490614b84565b6000918252601a602052604090912055565b611d5b612f33565b428111611d7a5760405162461bcd60e51b815260040161100490614b84565b6000918252601f602052604090912055565b611d94612f33565b611ad06000613273565b60008181526014602052604081205460ff1615158103611dc057506001919050565b6000828152601f602052604090205442108015906110305750506000908152601e602052604090205442111590565b611df7612f33565b60008581526010602052604090205460ff1615611e265760405162461bcd60e51b815260040161100490614ad2565b6000805b82811015611e6a57838382818110611e4457611e44614b55565b9050602002013582611e569190614a50565b915080611e6281614b6b565b915050611e2a565b506000868152601660205260409020541580611eaa5750600086815260166020908152604080832054600390925290912054611ea7908390614a50565b11155b611ee75760405162461bcd60e51b815260206004820152600e60248201526d4d494e545f544f4f5f4c4152474560901b6044820152606401611004565b60005b84811015611f5d57611f4b868683818110611f0757611f07614b55565b9050602002016020810190611f1c9190614204565b88868685818110611f2f57611f2f614b55565b905060200201356040518060200160405280600081525061309e565b80611f5581614b6b565b915050611eea565b50505050505050565b611f6e612f33565b6000828152601760205260409020541580611f96575060008281526017602052604090205481105b611fdc5760405162461bcd60e51b815260206004820152601760248201527609c8aaebe9a82b0bea6aaa0a098b2bea89e9ebe90928e9604b1b6044820152606401611004565b60009182526017602052604090912055565b611ff6612f33565b6000818152600f602052604090205460ff16156120555760405162461bcd60e51b815260206004820181905260248201527f4d455441444154415f4841535f414c52454144595f4245454e5f46524f5a454e6044820152606401611004565b6000908152600f60205260409020805460ff19166001179055565b612078612f33565b611ad06132c5565b612088612f33565b600d5460ff161580156120aa57506000838152600f602052604090205460ff16155b6120f15760405162461bcd60e51b815260206004820152601860248201527726a2aa20a220aa20afa420a9afa122a2a72fa32927ad22a760411b6044820152606401611004565b600083815260156020526040902061210a828483614bf0565b50505050565b6023818154811061212057600080fd5b600091825260209091200154905081565b3233146121505760405162461bcd60e51b8152600401611004906149cc565b6002600554036121725760405162461bcd60e51b815260040161100490614a03565b600260055560008381526011602052604090205460ff166121cd5760405162461bcd60e51b815260206004820152601560248201527450524553414c455f49535f4e4f545f41435449564560581b6044820152606401611004565b6121d683611847565b6122225760405162461bcd60e51b815260206004820152601a60248201527f50524553414c455f54494d455f49535f4e4f545f4143544956450000000000006044820152606401611004565b60008381526010602052604090205460ff16156122515760405162461bcd60e51b815260040161100490614ad2565b600083815260186020526040902054158061229b5750600083815260186020908152604080832054338452600e835281842087855290925290912054612298908490614a50565b11155b6122e75760405162461bcd60e51b815260206004820152601e60248201527f4d41585f4d494e54535f5045525f414444524553535f455843454544454400006044820152606401611004565b80158061231a5750336000908152600e602090815260408083208684529091529020548190612317908490614a50565b11155b61235b5760405162461bcd60e51b815260206004820152601260248201527113505617d352539514d7d15610d15151115160721b6044820152606401611004565b600083815260176020526040902054158061239a5750600083815260176020908152604080832054600390925290912054612397908490614a50565b11155b6123b65760405162461bcd60e51b815260040161100490614a63565b6000602254836123c69190614a90565b60008581526019602052604090205490915081906123e5908590614a90565b6123ef9190614a50565b341461240d5760405162461bcd60e51b815260040161100490614aa7565b60408051336020820152908101839052606081018590528790608001604051602081830303815290604052805190602001201461247e5760405162461bcd60e51b815260206004820152600f60248201526e135154d4d051d157d2539590531251608a1b6044820152606401611004565b612489878787613308565b6124d55760405162461bcd60e51b815260206004820152601b60248201527f5349474e41545552455f56414c49444154494f4e5f4641494c454400000000006044820152606401611004565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612522576040519150601f19603f3d011682016040523d82523d6000602084013e612527565b606091505b50509050806125485760405162461bcd60e51b815260040161100490614b09565b336000908152600e6020908152604080832088845290915281208054869290612572908490614a50565b925050819055506125943386866040518060200160405280600081525061309e565b600085815260176020526040902054158015906125ca575060008581526017602090815260408083205460039092529091205410155b156125e6576000858152601160205260409020805460ff191690555b50506001600555505050505050565b6125fd612f33565b42811161261c5760405162461bcd60e51b815260040161100490614b84565b6000918252601e602052604090912055565b60006126426004546001600160a01b031690565b905090565b61264f612f33565b60009182526019602052604090912055565b602180546111e49061495d565b612676612f33565b60008281526012602052604090205481151560ff9091161515036126ac5760405162461bcd60e51b815260040161100490614997565b600091825260126020526040909120805460ff1916911515919091179055565b816126d6816131b8565b6126e0838361336e565b505050565b6126ed612f33565b60008281526014602052604090205481151560ff9091161515036127235760405162461bcd60e51b815260040161100490614997565b600091825260146020526040909120805460ff1916911515919091179055565b61274b612f33565b60009182526018602052604090912055565b61276561262e565b6001600160a01b0316336001600160a01b03161461279657604051635fc483c560e01b815260040160405180910390fd5b600854600160a01b900460ff16156127c157604051631551a48f60e11b815260040160405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6127eb612f33565b600d5460ff16156128395760405162461bcd60e51b815260206004820152601860248201527726a2aa20a220aa20afa420a9afa122a2a72fa32927ad22a760411b6044820152606401611004565b61287882828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061337992505050565b5050565b612884612f33565b600d54610100900460ff16156128dc5760405162461bcd60e51b815260206004820152601760248201527f5041594f55545f4144445245535345535f46524f5a454e0000000000000000006044820152606401611004565b82811461292b5760405162461bcd60e51b815260206004820152601860248201527f41525241595f4c454e475448535f4d5553545f4d4154434800000000000000006044820152606401611004565b6000805b8281101561296f5783838281811061294957612949614b55565b905060200201358261295b9190614a50565b91508061296781614b6b565b91505061292f565b5080612710146129c15760405162461bcd60e51b815260206004820181905260248201527f544f54414c5f42415349535f504f494e54535f4d5553545f42455f31303030306044820152606401611004565b6129cd600c86866140b8565b506118bf6023848461411b565b601560205260009081526040902080546111e49061495d565b6129fb612f33565b6000918252601c602052604090912055565b612a15612f33565b6000918252601d602052604090912055565b846001600160a01b0381163314612a4157612a41336131b8565b60008311612a895760405162461bcd60e51b8152602060048201526015602482015274414d4f554e545f43414e4e4f545f42455f5a45524f60581b6044820152606401611004565b6118bf8686868686613385565b612a9e612f33565b6001600160a01b038116612b035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611004565b6110ee81613273565b612b14612f33565b6001600160a01b038116612b2757600080fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600c8181548110612b5957600080fd5b6000918252602090912001546001600160a01b0316905081565b323314612b925760405162461bcd60e51b8152600401611004906149cc565b600260055403612bb45760405162461bcd60e51b815260040161100490614a03565b600260055560008381526012602052604090205460ff16612c135760405162461bcd60e51b81526020600482015260196024820152785055424c49435f53414c455f49535f4e4f545f41435449564560381b6044820152606401611004565b612c1c83611d9e565b612c685760405162461bcd60e51b815260206004820152601e60248201527f5055424c49435f53414c455f54494d455f49535f4e4f545f41435449564500006044820152606401611004565b6000838152601c60205260409020541580612cbb57506000838152601c60209081526040808320546001600160a01b0385168452600e835281842087855290925290912054612cb8908490614a50565b11155b612d075760405162461bcd60e51b815260206004820152601e60248201527f4d41585f4d494e54535f464f525f414444524553535f455843454544454400006044820152606401611004565b6000838152601660205260409020541580612d465750600083815260166020908152604080832054600390925290912054612d43908490614a50565b11155b612d625760405162461bcd60e51b815260040161100490614a63565b600060225483612d729190614a90565b6000858152601d60205260409020549091508190612d91908590614a90565b612d9b9190614a50565b3414612db95760405162461bcd60e51b815260040161100490614aa7565b60008481526010602052604090205460ff1615612de85760405162461bcd60e51b815260040161100490614ad2565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612e35576040519150601f19603f3d011682016040523d82523d6000602084013e612e3a565b606091505b5050905080612e5b5760405162461bcd60e51b815260040161100490614b09565b6001600160a01b0383166000908152600e6020908152604080832088845290915281208054869290612e8e908490614a50565b92505081905550612eb08386866040518060200160405280600081525061309e565b60008581526016602052604090205415801590612ee6575060008581526016602090815260408083205460039092529091205410155b15612f02576000858152601260205260409020805460ff191690555b50506001600555505050565b60006001600160e01b0319821663152a902d60e11b14806110305750611030826133ca565b33612f3c61262e565b6001600160a01b031614611ad05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611004565b6127106001600160601b03821611156130005760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611004565b6001600160a01b0382166130565760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611004565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b60606002805461130b9061495d565b6001600160a01b0384166130fe5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401611004565b33600061310a8561341a565b905060006131178561341a565b905061312883600089858589613465565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290613158908490614a50565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611f5d8360008989898961347b565b6008546001600160a01b0316156110ee576110ee816135d6565b6001600160a01b0385163314806131ee57506131ee8533610e41565b61320a5760405162461bcd60e51b815260040161100490614caf565b6132178585858585613698565b5050505050565b61322661387b565b6004805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6132cd6138cb565b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586132563390565b600061335583838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061334f92508891506139189050565b9061396b565b6009546001600160a01b03918216911614949350505050565b612878338383613987565b60026128788282614cfe565b6001600160a01b0385163314806133a157506133a18533610e41565b6133bd5760405162461bcd60e51b815260040161100490614caf565b6132178585858585613a67565b60006001600160e01b03198216636cdb3d1360e11b14806133fb57506001600160e01b031982166303a24d0760e21b145b8061103057506301ffc9a760e01b6001600160e01b0319831614611030565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061345457613454614b55565b602090810291909101015292915050565b61346d6138cb565b6118bf868686868686613b9f565b6001600160a01b0384163b156118bf5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906134bf9089908990889088908890600401614dbd565b6020604051808303816000875af19250505080156134fa575060408051601f3d908101601f191682019092526134f791810190614e02565b60015b6135a657613506614e1f565b806308c379a00361353f575061351a614e3b565b806135255750613541565b8060405162461bcd60e51b81526004016110049190614287565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401611004565b6001600160e01b0319811663f23a6e6160e01b14611f5d5760405162461bcd60e51b815260040161100490614ec4565b6008546001600160a01b031680158015906135fb57506000816001600160a01b03163b115b1561287857604051633185c44d60e21b81523060048201526001600160a01b03838116602483015282169063c617113490604401602060405180830381865afa15801561364c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136709190614f0c565b61287857604051633b79c77360e21b81526001600160a01b0383166004820152602401611004565b81518351146136fa5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401611004565b6001600160a01b0384166137205760405162461bcd60e51b815260040161100490614f29565b3361372f818787878787613465565b60005b845181101561381557600085828151811061374f5761374f614b55565b60200260200101519050600085838151811061376d5761376d614b55565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156137bd5760405162461bcd60e51b815260040161100490614f6e565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906137fa908490614a50565b925050819055505050508061380e90614b6b565b9050613732565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613865929190614fb8565b60405180910390a46118bf818787878787613d18565b600454600160a01b900460ff16611ad05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401611004565b600454600160a01b900460ff1615611ad05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401611004565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b600080600061397a8585613dd3565b91509150611c2c81613e15565b816001600160a01b0316836001600160a01b0316036139fa5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401611004565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416613a8d5760405162461bcd60e51b815260040161100490614f29565b336000613a998561341a565b90506000613aa68561341a565b9050613ab6838989858589613465565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015613af75760405162461bcd60e51b815260040161100490614f6e565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290613b34908490614a50565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4613b94848a8a8a8a8a61347b565b505050505050505050565b6001600160a01b038516613c265760005b8351811015613c2457828181518110613bcb57613bcb614b55565b602002602001015160036000868481518110613be957613be9614b55565b602002602001015181526020019081526020016000206000828254613c0e9190614a50565b90915550613c1d905081614b6b565b9050613bb0565b505b6001600160a01b0384166118bf5760005b8351811015611f5d576000848281518110613c5457613c54614b55565b602002602001015190506000848381518110613c7257613c72614b55565b6020026020010151905060006003600084815260200190815260200160002054905081811015613cf55760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401611004565b60009283526003602052604090922091039055613d1181614b6b565b9050613c37565b6001600160a01b0384163b156118bf5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190613d5c9089908990889088908890600401614fe6565b6020604051808303816000875af1925050508015613d97575060408051601f3d908101601f19168201909252613d9491810190614e02565b60015b613da357613506614e1f565b6001600160e01b0319811663bc197c8160e01b14611f5d5760405162461bcd60e51b815260040161100490614ec4565b6000808251604103613e095760208301516040840151606085015160001a613dfd87828585613fcb565b94509450505050611840565b50600090506002611840565b6000816004811115613e2957613e29615044565b03613e315750565b6001816004811115613e4557613e45615044565b03613e925760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401611004565b6002816004811115613ea657613ea6615044565b03613ef35760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401611004565b6003816004811115613f0757613f07615044565b03613f5f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401611004565b6004816004811115613f7357613f73615044565b036110ee5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401611004565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561400257506000905060036140af565b8460ff16601b1415801561401a57508460ff16601c14155b1561402b57506000905060046140af565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561407f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166140a8576000600192509250506140af565b9150600090505b94509492505050565b82805482825590600052602060002090810192821561410b579160200282015b8281111561410b5781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906140d8565b50614117929150614156565b5090565b82805482825590600052602060002090810192821561410b579160200282015b8281111561410b57823582559160200191906001019061413b565b5b808211156141175760008155600101614157565b60006020828403121561417d57600080fd5b5035919050565b80356001600160a01b038116811461419b57600080fd5b919050565b600080604083850312156141b357600080fd5b6141bc83614184565b946020939093013593505050565b6001600160e01b0319811681146110ee57600080fd5b6000602082840312156141f257600080fd5b81356141fd816141ca565b9392505050565b60006020828403121561421657600080fd5b6141fd82614184565b6000806040838503121561423257600080fd5b50508035926020909101359150565b6000815180845260005b818110156142675760208185018101518683018201520161424b565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006141fd6020830184614241565b80151581146110ee57600080fd5b600080604083850312156142bb57600080fd5b8235915060208301356142cd8161429a565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715614313576143136142d8565b6040525050565b60006001600160401b03821115614333576143336142d8565b5060051b60200190565b600082601f83011261434e57600080fd5b8135602061435b8261431a565b60405161436882826142ee565b83815260059390931b850182019282810191508684111561438857600080fd5b8286015b848110156143a3578035835291830191830161438c565b509695505050505050565b600082601f8301126143bf57600080fd5b81356001600160401b038111156143d8576143d86142d8565b6040516143ef601f8301601f1916602001826142ee565b81815284602083860101111561440457600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561443957600080fd5b61444286614184565b945061445060208701614184565b935060408601356001600160401b038082111561446c57600080fd5b61447889838a0161433d565b9450606088013591508082111561448e57600080fd5b61449a89838a0161433d565b935060808801359150808211156144b057600080fd5b506144bd888289016143ae565b9150509295509295909350565b6000602082840312156144dc57600080fd5b81356001600160601b03811681146141fd57600080fd5b6000806040838503121561450657600080fd5b82356001600160401b038082111561451d57600080fd5b818501915085601f83011261453157600080fd5b8135602061453e8261431a565b60405161454b82826142ee565b83815260059390931b850182019282810191508984111561456b57600080fd5b948201945b838610156145905761458186614184565b82529482019490820190614570565b965050860135925050808211156145a657600080fd5b506145b38582860161433d565b9150509250929050565b600081518084526020808501945080840160005b838110156145ed578151875295820195908201906001016145d1565b509495945050505050565b6020815260006141fd60208301846145bd565b60008083601f84011261461d57600080fd5b5081356001600160401b0381111561463457600080fd5b6020830191508360208260051b850101111561184057600080fd5b60008060008060006060868803121561466757600080fd5b8535945060208601356001600160401b038082111561468557600080fd5b61469189838a0161460b565b909650945060408801359150808211156146aa57600080fd5b506146b78882890161460b565b969995985093965092949392505050565b60008083601f8401126146da57600080fd5b5081356001600160401b038111156146f157600080fd5b60208301915083602082850101111561184057600080fd5b60008060006040848603121561471e57600080fd5b8335925060208401356001600160401b0381111561473b57600080fd5b614747868287016146c8565b9497909650939450505050565b60008060008060008060a0878903121561476d57600080fd5b8635955060208701356001600160401b0381111561478a57600080fd5b61479689828a016146c8565b979a90995096976040810135976060820135975060809091013595509350505050565b600080604083850312156147cc57600080fd5b6147d583614184565b915060208301356142cd8161429a565b600080602083850312156147f857600080fd5b82356001600160401b0381111561480e57600080fd5b61481a858286016146c8565b90969095509350505050565b6000806000806040858703121561483c57600080fd5b84356001600160401b038082111561485357600080fd5b61485f8883890161460b565b9096509450602087013591508082111561487857600080fd5b506148858782880161460b565b95989497509550505050565b600080604083850312156148a457600080fd5b6148ad83614184565b91506148bb60208401614184565b90509250929050565b600080600080600060a086880312156148dc57600080fd5b6148e586614184565b94506148f360208701614184565b9350604086013592506060860135915060808601356001600160401b0381111561491c57600080fd5b6144bd888289016143ae565b60008060006060848603121561493d57600080fd5b833592506020840135915061495460408501614184565b90509250925092565b600181811c9082168061497157607f821691505b60208210810361499157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4e45575f53544154455f4944454e544943414c5f544f5f4f4c445f5354415445604082015260600190565b60208082526019908201527f43414e4e4f545f43414c4c5f46524f4d5f434f4e545241435400000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561103057611030614a3a565b60208082526013908201527213505617d4d55414131657d15610d151511151606a1b604082015260600190565b808202811582820484141761103057611030614a3a565b6020808252601190820152701410565351539517d25390d3d4949150d5607a1b604082015260600190565b6020808252601c908201527f4d494e54494e475f5045524d414e454e544c595f44495341424c454400000000604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b600082614b5057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201614b7d57614b7d614a3a565b5060010190565b6020808252600c908201526b1512535157d25397d41054d560a21b604082015260600190565b601f8211156126e057600081815260208120601f850160051c81016020861015614bd15750805b601f850160051c820191505b818110156118bf57828155600101614bdd565b6001600160401b03831115614c0757614c076142d8565b614c1b83614c15835461495d565b83614baa565b6000601f841160018114614c4f5760008515614c375750838201355b600019600387901b1c1916600186901b178355613217565b600083815260209020601f19861690835b82811015614c805786850135825560209485019460019092019101614c60565b5086821015614c9d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b81516001600160401b03811115614d1757614d176142d8565b614d2b81614d25845461495d565b84614baa565b602080601f831160018114614d605760008415614d485750858301515b600019600386901b1c1916600185901b1785556118bf565b600085815260208120601f198616915b82811015614d8f57888601518255948401946001909101908401614d70565b5085821015614dad5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090614df790830184614241565b979650505050505050565b600060208284031215614e1457600080fd5b81516141fd816141ca565b600060033d1115614e385760046000803e5060005160e01c5b90565b600060443d1015614e495790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715614e7857505050505090565b8285019150815181811115614e905750505050505090565b843d8701016020828501011115614eaa5750505050505090565b614eb9602082860101876142ee565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b600060208284031215614f1e57600080fd5b81516141fd8161429a565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000614fcb60408301856145bd565b8281036020840152614fdd81856145bd565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090615012908301866145bd565b828103606084015261502481866145bd565b905082810360808401526150388185614241565b98975050505050505050565b634e487b7160e01b600052602160045260246000fdfea26469706673582212202db068fced5e00720ac8020a5e435b37ab764cc20d3a53343cbf23b6bff8dc9a64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000027ca57357c000

-----Decoded View---------------
Arg [0] : _heymintFeePerToken (uint256): 700000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000027ca57357c000


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.