Address Details
contract

0x21C8bb31426c901C6F875Ef7CDa90477fb70e1Cc

Contract Name
StarNFTLogic
Creator
0x7d6740–c9cfce at 0x8ff364–cd3053
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
0 Transactions
Transfers
0 Transfers
Gas Used
Fetching gas used...
Last Balance Update
8940444
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
StarNFTLogic




Optimization enabled
true
Compiler version
v0.8.10+commit.fc410830




Optimization runs
200
EVM Version
london




Verified at
2023-02-07T07:37:04.057534Z

contracts/StarNFTLogic.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "./IStarNFT.sol";

interface IERC20Burnable is IERC20Upgradeable {
    function burnFrom(address account, uint256 amount) external;
}

interface IBonus {
    function lockRatio() view external returns (uint256);
}

contract StarNFTLogic is ContextUpgradeable, OwnableUpgradeable {
    using SafeERC20Upgradeable for IERC20Upgradeable;
    using SafeMathUpgradeable for uint256;

    using CountersUpgradeable for CountersUpgradeable.Counter;
    CountersUpgradeable.Counter private cateIds;
    IBonus public Bonus;

    struct StarCate {
        uint256 maxUnit;
        uint256 multiple;
        uint256 usedUnit;
    }

    struct StarMeta {
        StarLevel level;
        uint256 cateId;
        uint256 price;
        uint256 multiple;
    }

    struct LevelMethod {
        uint256 usedUnit;
        uint256 burned;
        uint256 price;
        bool isInc;
        uint256 base;
        uint256 step;
        bool isUnique;
    }

    enum StarLevel {
        COMMON,
        SPECIAL,
        EXCLUSIVE
    }

    IERC20Burnable public starToken;
    IStarNFT public starNFT;
    address public bonusAddr;
    uint256 public totalPrice;
    uint256 bonunsAmount;
    uint256 public fee;

    mapping(uint256 => StarCate) public cateId;
    mapping(StarLevel => uint256[]) public starCate;
    mapping(StarLevel => LevelMethod) public levelMethod;
    mapping(uint256 => StarMeta) public starMeta;
    mapping (address => mapping (uint256 => uint256)) public bonusToken;

    function initialize(address _starToken, address _bonus, address _starNFT, uint256 _fee) public initializer {
        __starNFTLogic_init(_starToken, _bonus, _starNFT, _fee);
    }

    function __starNFTLogic_init(address _starToken, address _bonus, address _starNFT, uint256 _fee) internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
        __starNFTLogic_init_unchained(_starToken, _bonus, _starNFT, _fee);
    }

    function __starNFTLogic_init_unchained(address _starToken, address _bonus, address _starNFT, uint256 _fee) internal initializer {
        starToken = IERC20Burnable(_starToken);
        starNFT = IStarNFT(_starNFT);
        Bonus = IBonus(_bonus);
        bonusAddr = _bonus;
        fee = _fee;
    }

    //mint function
    function mint() public returns (uint256) {
        uint256 _cateId = starCate[StarLevel.COMMON][getRndCateIndex(StarLevel.COMMON)];
        LevelMethod storage _levelMethod = levelMethod[StarLevel.COMMON];
        uint256 _price = _levelMethod.price;
        require(_price > 0, "level price error");
        if (_levelMethod.isInc && _levelMethod.base > 0) {
            _price = _price.add(_levelMethod.usedUnit.mod(_levelMethod.base).mul(_levelMethod.step));
        }
        uint256 _fee = _price.mul(fee).div(100);   
        starToken.transferFrom(_msgSender(), address(this), _price); 
        starToken.burnFrom(address(this), _price.sub(_fee));   
        starToken.transfer(bonusAddr, _fee);        
        uint256 _starId = starNFT.mint(_msgSender(), _cateId);
        uint256 _multi = cateId[_cateId].multiple;
        starMeta[_starId] = StarMeta(StarLevel.COMMON, _cateId, _price, _multi);
        cateId[_cateId].usedUnit += 1;
        _levelMethod.usedUnit += 1;
        totalPrice = totalPrice.add(_price.mul(_multi).div(100));
        
        uint256 lockRatio = Bonus.lockRatio();
        // uint256 lockAmount = _fee.mul(lockRatio).div(100);
        // bonunsAmount = _fee - lockAmount;
        // bonunsAmount = bonusToken[_msgSender()][_starId];
        return lockRatio;
    }

    function melt(uint256[] memory _tokenIds, StarLevel _from, StarLevel _to) public returns (uint256) {
        require(uint256(_to) == uint256(_from) + 1, "melt level error");
        require(starNFT.massVerifyOwner(_msgSender(), _tokenIds), "not your tokens");
        (uint256 _price, uint256 _multiple) = verifyTokens(_from, _to, _tokenIds);
        require(_price != 0, "token error");
        starNFT.massBurn(_tokenIds);
        levelMethod[_from].burned += _tokenIds.length;

        uint256 _cateId = starCate[_to][getRndCateIndex(_to)];
        uint256 _starId = starNFT.mint(_msgSender(), _cateId);
        uint256 _multi = _multiple.mul(cateId[_cateId].multiple).div(100);
        starMeta[_starId] = StarMeta(_to, _cateId, _price, _multi);
        cateId[_cateId].usedUnit += 1;
        levelMethod[_to].usedUnit += 1;
        totalPrice = totalPrice.add(_price.mul(_multi).div(100));
        return _starId;
    }

    function verifyTokens(StarLevel _level, StarLevel _newLevel, uint256[] memory _tokenIds) view internal returns (uint256, uint256) {
        LevelMethod memory _levelMethod = levelMethod[_newLevel];
        uint256 _price = _levelMethod.price;

        if (_levelMethod.isInc && _levelMethod.base > 0) {
            _price = _price.add(_levelMethod.usedUnit.div(_levelMethod.base).mul(_levelMethod.step));
        }

        require(_tokenIds.length == _price, "token amount error");
        uint256 multiple;
        uint256 price;
        uint256[] memory _cateIds = new uint256[](_tokenIds.length);
        for (uint256 i = 0; i < _tokenIds.length; i ++) {
            require(starMeta[_tokenIds[i]].level == _level, "error level");
            price = price.add(starMeta[_tokenIds[i]].price);
            multiple = multiple.add(starMeta[_tokenIds[i]].multiple);
            if (!_levelMethod.isUnique) {
                require(!indexOf(_cateIds, starMeta[_tokenIds[i]].cateId), "must be unique cate");
            }
            _cateIds[i] = starMeta[_tokenIds[i]].cateId;
        }
        return (price, multiple.div(_tokenIds.length));
    }

    function getCateLength(StarLevel _level) internal view returns (uint256) {
        return starCate[_level].length;
    }

    function getRndCateIndex(StarLevel _level) view public returns (uint256) {
        uint256[] storage _cate = starCate[_level];
        require(_cate.length > 0, "no cate");
        uint256 _rndCateIndex;
        uint256 _rndCateIndex2;
        uint256 nonce;
        do {
            _rndCateIndex = uint256(keccak256(abi.encodePacked(block.coinbase, msg.sender, nonce, block.timestamp))) % (_cate.length -1);
            _rndCateIndex2 = uint256(keccak256(abi.encodePacked(block.coinbase, msg.sender, nonce, block.timestamp))) % (_cate.length -1) + 1;
            if (cateId[_cate[_rndCateIndex2]].maxUnit > cateId[_cate[_rndCateIndex2]].usedUnit){
                 _rndCateIndex = _rndCateIndex2;
            }
            if (cateId[_cate[_rndCateIndex]].maxUnit > cateId[_cate[_rndCateIndex]].usedUnit) break;
            nonce ++;
        } while (true);
        return _rndCateIndex;
    }

    function addCate(StarLevel _level, uint256 _maxUnit, uint256 _multiple, string memory _cateUri) onlyOwner public {
        cateIds.increment();
        uint256 _cateId = cateIds.current();
        cateId[_cateId] = StarCate(_maxUnit, _multiple, 0);
        starCate[_level].push(_cateId);
        starNFT.setCateURI(_cateId, _cateUri);
    }

    function editCate(uint256 _cateId, uint256 _maxUnit, uint256 _multiple, string memory _cateUri) onlyOwner public {
        StarCate storage _cate = cateId[_cateId];
        _cate.maxUnit = _maxUnit;
        _cate.multiple = _multiple;
        starNFT.setCateURI(_cateId, _cateUri);
    }

    function setLevelMethod(StarLevel _level, uint256 _price, bool _isInc, uint256 _base, uint256 _step, bool _isUnique) onlyOwner public {
        LevelMethod storage _levelMethod = levelMethod[_level];
        _levelMethod.price = _price;
        _levelMethod.isInc = _isInc;
        _levelMethod.base = _base;
        _levelMethod.step = _step;
        _levelMethod.isUnique = _isUnique;
    }

    function disposeBonusToke(address _user,uint256 _tokenId) view external returns (uint256) {
        return bonusToken[_user][_tokenId];
    }

    function setStarNFT(address _starNFT) onlyOwner public {
        require(_starNFT != address(0), "address error");
        starNFT = IStarNFT(_starNFT);
    }

    function indexOf(uint256[] memory A, uint256 a) internal pure returns (bool) {
        uint256 length = A.length;
        for (uint256 i = 0; i < length; i++) {
            if (A[i] == a) {
                return true;
            }
        }
        return false;
    }
}
        

/_openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

/_openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (proxy/utils/Initializable.sol)

pragma solidity ^0.8.0;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20Upgradeable.sol";
import "../../../utils/AddressUpgradeable.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20Upgradeable {
    using AddressUpgradeable for address;

    function safeTransfer(
        IERC20Upgradeable token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20Upgradeable token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20Upgradeable token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20Upgradeable token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20Upgradeable token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}
          

/_openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}
          

/_openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[50] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library CountersUpgradeable {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 IERC165Upgradeable {
    /**
     * @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);
}
          

/_openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMathUpgradeable {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
          

/contracts/IStarNFT.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IStarNFT {
    function mint(address _owner, uint256 _cateId) external returns (uint256);
    function setCateURI(uint256 _cateId, string memory _cateUri) external;
    function massVerifyOwner(address owner, uint256[] memory _tokenIds) view external returns (bool);
    function massBurn(uint256[] memory _tokenIds) external;
    function setSale(bool _sale) external;
    function balanceOf(address owner) view external returns (uint256);
    function tokenOfOwnerByIndex(address owner,uint256 tokenid) view external returns (uint256);
}
          

Contract ABI

[{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IBonus"}],"name":"Bonus","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addCate","inputs":[{"type":"uint8","name":"_level","internalType":"enum StarNFTLogic.StarLevel"},{"type":"uint256","name":"_maxUnit","internalType":"uint256"},{"type":"uint256","name":"_multiple","internalType":"uint256"},{"type":"string","name":"_cateUri","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"bonusAddr","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"bonusToken","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"maxUnit","internalType":"uint256"},{"type":"uint256","name":"multiple","internalType":"uint256"},{"type":"uint256","name":"usedUnit","internalType":"uint256"}],"name":"cateId","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"disposeBonusToke","inputs":[{"type":"address","name":"_user","internalType":"address"},{"type":"uint256","name":"_tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"editCate","inputs":[{"type":"uint256","name":"_cateId","internalType":"uint256"},{"type":"uint256","name":"_maxUnit","internalType":"uint256"},{"type":"uint256","name":"_multiple","internalType":"uint256"},{"type":"string","name":"_cateUri","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"fee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getRndCateIndex","inputs":[{"type":"uint8","name":"_level","internalType":"enum StarNFTLogic.StarLevel"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"address","name":"_starToken","internalType":"address"},{"type":"address","name":"_bonus","internalType":"address"},{"type":"address","name":"_starNFT","internalType":"address"},{"type":"uint256","name":"_fee","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"usedUnit","internalType":"uint256"},{"type":"uint256","name":"burned","internalType":"uint256"},{"type":"uint256","name":"price","internalType":"uint256"},{"type":"bool","name":"isInc","internalType":"bool"},{"type":"uint256","name":"base","internalType":"uint256"},{"type":"uint256","name":"step","internalType":"uint256"},{"type":"bool","name":"isUnique","internalType":"bool"}],"name":"levelMethod","inputs":[{"type":"uint8","name":"","internalType":"enum StarNFTLogic.StarLevel"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"melt","inputs":[{"type":"uint256[]","name":"_tokenIds","internalType":"uint256[]"},{"type":"uint8","name":"_from","internalType":"enum StarNFTLogic.StarLevel"},{"type":"uint8","name":"_to","internalType":"enum StarNFTLogic.StarLevel"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"mint","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setLevelMethod","inputs":[{"type":"uint8","name":"_level","internalType":"enum StarNFTLogic.StarLevel"},{"type":"uint256","name":"_price","internalType":"uint256"},{"type":"bool","name":"_isInc","internalType":"bool"},{"type":"uint256","name":"_base","internalType":"uint256"},{"type":"uint256","name":"_step","internalType":"uint256"},{"type":"bool","name":"_isUnique","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setStarNFT","inputs":[{"type":"address","name":"_starNFT","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"starCate","inputs":[{"type":"uint8","name":"","internalType":"enum StarNFTLogic.StarLevel"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"level","internalType":"enum StarNFTLogic.StarLevel"},{"type":"uint256","name":"cateId","internalType":"uint256"},{"type":"uint256","name":"price","internalType":"uint256"},{"type":"uint256","name":"multiple","internalType":"uint256"}],"name":"starMeta","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IStarNFT"}],"name":"starNFT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20Burnable"}],"name":"starToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalPrice","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
              

Contract Creation Code

0x608060405234801561001057600080fd5b50612106806100206000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063ca7c15d41161007c578063ca7c15d414610382578063cc64310f14610395578063cf756fdf146103c0578063ddca3f43146103d3578063ef8fdfd8146103dc578063f2fde38b146103ef57600080fd5b80638da5cb5b146102e6578063971276ae146102f75780639c2fc62314610340578063ab0d92dd14610353578063b0bf74e31461035c578063b7ca51e81461036f57600080fd5b80634d85ca26116101155780634d85ca26146102085780636b57d9bd1461021d57806370dca97414610230578063715018a614610243578063866285421461024b5780638a28e80e146102d357600080fd5b8063069f2c0d146101525780631249c58b1461017857806313eaabb8146101805780631d7cf6c6146101ab5780632018ce8b146101be575b600080fd5b610165610160366004611a5a565b610402565b6040519081526020015b60405180910390f35b610165610433565b606954610193906001600160a01b031681565b6040516001600160a01b03909116815260200161016f565b6101656101b9366004611acb565b610901565b6101ed6101cc366004611b93565b606d6020526000908152604090208054600182015460029092015490919083565b6040805193845260208401929092529082015260600161016f565b61021b610216366004611c1c565b610d50565b005b61021b61022b366004611c84565b610dfe565b606854610193906001600160a01b031681565b61021b610ea0565b61029c610259366004611ce9565b606f60205260009081526040902080546001820154600283015460038401546004850154600586015460069096015494959394929360ff92831693919290911687565b604080519788526020880196909652948601939093529015156060850152608084015260a0830152151560c082015260e00161016f565b6101656102e1366004611d1b565b610ed6565b6033546001600160a01b0316610193565b610330610305366004611b93565b607060205260009081526040902080546001820154600283015460039093015460ff90921692909184565b60405161016f9493929190611d4d565b61021b61034e366004611d8b565b610f01565b610165606a5481565b61021b61036a366004611dd4565b610fff565b606754610193906001600160a01b031681565b610165610390366004611ce9565b611091565b6101656103a3366004611d1b565b607160209081526000928352604080842090915290825290205481565b61021b6103ce366004611def565b6112ae565b610165606c5481565b606654610193906001600160a01b031681565b61021b6103fd366004611dd4565b61132a565b606e602052816000526040600020818154811061041e57600080fd5b90600052602060002001600091509150505481565b6000808052606e602052807f136eb4aae73f7618d8559a84c5ff3678edc6b16994db052447ebc43c429b7d6f61046882611091565b8154811061047857610478611e3a565b600091825260208083209190910154918052606f90527fd0170a6220fef73a7dd2c1e9984b0b3831956884ac33b7728dde627780a65be7549091507fd0170a6220fef73a7dd2c1e9984b0b3831956884ac33b7728dde627780a65be5908061051b5760405162461bcd60e51b81526020600482015260116024820152703632bb32b610383934b1b29032b93937b960791b60448201526064015b60405180910390fd5b600382015460ff168015610533575060008260040154115b1561056e5761056b610564836005015461055e856004015486600001546113c590919063ffffffff16565b906113d8565b82906113e4565b90505b6000610590606461058a606c54856113d890919063ffffffff16565b906113f0565b6067549091506001600160a01b03166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018590526064016020604051808303816000875af11580156105f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061c9190611e50565b506067546001600160a01b03166379cc67903061063985856113fc565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561067f57600080fd5b505af1158015610693573d6000803e3d6000fd5b505060675460695460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690529116925063a9059cbb91506044016020604051808303816000875af11580156106ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107109190611e50565b506068546000906001600160a01b03166340c10f19336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018890526044016020604051808303816000875af1158015610773573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107979190611e6d565b6000868152606d6020526040808220600101548151608081019092529293509081908152602080820189905260408083018890526060909201849052600085815260709091522081518154829060ff191660018360028111156107fc576107fc611d37565b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d600088815260200190815260200160002060020160008282546108499190611e9c565b909155505084546001908690600090610863908490611e9c565b90915550610884905061087b606461058a87856113d8565b606a54906113e4565b606a5560665460408051634e1b84f560e11b815290516000926001600160a01b031691639c3709ea9160048083019260209291908290030181865afa1580156108d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f59190611e6d565b98975050505050505050565b600082600281111561091557610915611d37565b610920906001611e9c565b82600281111561093257610932611d37565b146109725760405162461bcd60e51b815260206004820152601060248201526f36b2b63a103632bb32b61032b93937b960811b6044820152606401610512565b6068546001600160a01b0316634f69b86233866040518363ffffffff1660e01b81526004016109a2929190611eef565b602060405180830381865afa1580156109bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e39190611e50565b610a215760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420796f757220746f6b656e7360881b6044820152606401610512565b600080610a2f858588611408565b915091508160001415610a725760405162461bcd60e51b815260206004820152600b60248201526a3a37b5b2b71032b93937b960a91b6044820152606401610512565b6068546040516358eb981360e11b81526001600160a01b039091169063b1d7302690610aa2908990600401611f1b565b600060405180830381600087803b158015610abc57600080fd5b505af1158015610ad0573d6000803e3d6000fd5b505050508551606f6000876002811115610aec57610aec611d37565b6002811115610afd57610afd611d37565b81526020019081526020016000206001016000828254610b1d9190611e9c565b9091555060009050606e81866002811115610b3a57610b3a611d37565b6002811115610b4b57610b4b611d37565b8152602001908152602001600020610b6286611091565b81548110610b7257610b72611e3a565b60009182526020822001546068549092506001600160a01b03166340c10f19336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015610bdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c039190611e6d565b6000838152606d602052604081206001015491925090610c2b9060649061058a9087906113d8565b90506040518060800160405280886002811115610c4a57610c4a611d37565b8152602080820186905260408083018990526060909201849052600085815260709091522081518154829060ff19166001836002811115610c8d57610c8d611d37565b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d60008581526020019081526020016000206002016000828254610cda9190611e9c565b9091555060019050606f6000896002811115610cf857610cf8611d37565b6002811115610d0957610d09611d37565b81526020019081526020016000206000016000828254610d299190611e9c565b90915550610d41905061087b606461058a88856113d8565b606a5550979650505050505050565b6033546001600160a01b03163314610d7a5760405162461bcd60e51b815260040161051290611f2e565b6000848152606d6020526040908190208481556001810184905560685491516356e4269760e11b815290916001600160a01b03169063adc84d2e90610dc59088908690600401611f63565b600060405180830381600087803b158015610ddf57600080fd5b505af1158015610df3573d6000803e3d6000fd5b505050505050505050565b6033546001600160a01b03163314610e285760405162461bcd60e51b815260040161051290611f2e565b6000606f6000886002811115610e4057610e40611d37565b6002811115610e5157610e51611d37565b8152602081019190915260400160002060028101969096555060038501805494151560ff1995861617905560048501929092556005840155600690920180549215159290911691909117905550565b6033546001600160a01b03163314610eca5760405162461bcd60e51b815260040161051290611f2e565b610ed460006117a4565b565b6001600160a01b03821660009081526071602090815260408083208484529091529020545b92915050565b6033546001600160a01b03163314610f2b5760405162461bcd60e51b815260040161051290611f2e565b610f39606580546001019055565b6000610f4460655490565b6040805160608101825286815260208082018781526000838501818152868252606d9093529384209251835551600183015551600291820155919250606e918790811115610f9457610f94611d37565b6002811115610fa557610fa5611d37565b815260208082019290925260409081016000908120805460018101825590825292902090910182905560685490516356e4269760e11b81526001600160a01b039091169063adc84d2e90610dc59084908690600401611f63565b6033546001600160a01b031633146110295760405162461bcd60e51b815260040161051290611f2e565b6001600160a01b03811661106f5760405162461bcd60e51b815260206004820152600d60248201526c30b2323932b9b99032b93937b960991b6044820152606401610512565b606880546001600160a01b0319166001600160a01b0392909216919091179055565b600080606e60008460028111156110aa576110aa611d37565b60028111156110bb576110bb611d37565b8152602001908152602001600020905060008180549050116111095760405162461bcd60e51b81526020600482015260076024820152666e6f206361746560c81b6044820152606401610512565b60008060005b835461111d90600190611fc0565b413383426040516020016111349493929190611fd7565b6040516020818303038152906040528051906020012060001c6111579190612020565b845490935061116890600190611fc0565b4133834260405160200161117f9493929190611fd7565b6040516020818303038152906040528051906020012060001c6111a29190612020565b6111ad906001611e9c565b9150606d60008584815481106111c5576111c5611e3a565b9060005260206000200154815260200190815260200160002060020154606d60008685815481106111f8576111f8611e3a565b9060005260206000200154815260200190815260200160002060000154111561121f578192505b606d600085858154811061123557611235611e3a565b9060005260206000200154815260200190815260200160002060020154606d600086868154811061126857611268611e3a565b90600052602060002001548152602001908152602001600020600001541115611290576112a4565b8061129a81612034565b915050600161110f575b5090949350505050565b600054610100900460ff16806112c7575060005460ff16155b6112e35760405162461bcd60e51b81526004016105129061204f565b600054610100900460ff16158015611305576000805461ffff19166101011790555b611311858585856117f6565b8015611323576000805461ff00191690555b5050505050565b6033546001600160a01b031633146113545760405162461bcd60e51b815260040161051290611f2e565b6001600160a01b0381166113b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610512565b6113c2816117a4565b50565b60006113d18284612020565b9392505050565b60006113d1828461209d565b60006113d18284611e9c565b60006113d182846120bc565b60006113d18284611fc0565b6000806000606f600086600281111561142357611423611d37565b600281111561143457611434611d37565b81526020808201929092526040908101600020815160e081018352815481526001820154938101939093526002810154918301829052600381015460ff9081161580156060860181905260048401546080870152600584015460a0870152600690930154909116151560c085015292935090916114b5575060008260800151115b156114e3576114e06105648360a0015161055e856080015186600001516113f090919063ffffffff16565b90505b808551146115285760405162461bcd60e51b81526020600482015260126024820152713a37b5b2b71030b6b7bab73a1032b93937b960711b6044820152606401610512565b6000806000875167ffffffffffffffff81111561154757611547611a84565b604051908082528060200260200182016040528015611570578160200160208202803683370190505b50905060005b885181101561177d578a600281111561159157611591611d37565b607060008b84815181106115a7576115a7611e3a565b60209081029190910181015182528101919091526040016000205460ff1660028111156115d6576115d6611d37565b146116115760405162461bcd60e51b815260206004820152600b60248201526a195c9c9bdc881b195d995b60aa1b6044820152606401610512565b611653607060008b848151811061162a5761162a611e3a565b6020026020010151815260200190815260200160002060020154846113e490919063ffffffff16565b9250611697607060008b848151811061166e5761166e611e3a565b6020026020010151815260200190815260200160002060030154856113e490919063ffffffff16565b93508560c0015161171e576116db82607060008c85815181106116bc576116bc611e3a565b6020026020010151815260200190815260200160002060010154611869565b1561171e5760405162461bcd60e51b81526020600482015260136024820152726d75737420626520756e69717565206361746560681b6044820152606401610512565b607060008a838151811061173457611734611e3a565b602002602001015181526020019081526020016000206001015482828151811061176057611760611e3a565b60209081029190910101528061177581612034565b915050611576565b50816117938951856113f090919063ffffffff16565b965096505050505050935093915050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff168061180f575060005460ff16155b61182b5760405162461bcd60e51b81526004016105129061204f565b600054610100900460ff1615801561184d576000805461ffff19166101011790555b6118556118c1565b61185d61192c565b6113118585858561198c565b8151600090815b818110156118b6578385828151811061188b5761188b611e3a565b602002602001015114156118a457600192505050610efb565b806118ae81612034565b915050611870565b506000949350505050565b600054610100900460ff16806118da575060005460ff16155b6118f65760405162461bcd60e51b81526004016105129061204f565b600054610100900460ff16158015611918576000805461ffff19166101011790555b80156113c2576000805461ff001916905550565b600054610100900460ff1680611945575060005460ff16155b6119615760405162461bcd60e51b81526004016105129061204f565b600054610100900460ff16158015611983576000805461ffff19166101011790555b611918336117a4565b600054610100900460ff16806119a5575060005460ff16155b6119c15760405162461bcd60e51b81526004016105129061204f565b600054610100900460ff161580156119e3576000805461ffff19166101011790555b606780546001600160a01b038088166001600160a01b031992831617909255606880548684169083161790556066805492871692821683179055606980549091169091179055606c8290558015611323576000805461ff00191690555050505050565b803560038110611a5557600080fd5b919050565b60008060408385031215611a6d57600080fd5b611a7683611a46565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611ac357611ac3611a84565b604052919050565b600080600060608486031215611ae057600080fd5b833567ffffffffffffffff80821115611af857600080fd5b818601915086601f830112611b0c57600080fd5b8135602082821115611b2057611b20611a84565b8160051b9250611b31818401611a9a565b828152928401810192818101908a851115611b4b57600080fd5b948201945b84861015611b6957853582529482019490820190611b50565b9750611b789050888201611a46565b955050505050611b8a60408501611a46565b90509250925092565b600060208284031215611ba557600080fd5b5035919050565b600082601f830112611bbd57600080fd5b813567ffffffffffffffff811115611bd757611bd7611a84565b611bea601f8201601f1916602001611a9a565b818152846020838601011115611bff57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060808587031215611c3257600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff811115611c5e57600080fd5b611c6a87828801611bac565b91505092959194509250565b80151581146113c257600080fd5b60008060008060008060c08789031215611c9d57600080fd5b611ca687611a46565b9550602087013594506040870135611cbd81611c76565b9350606087013592506080870135915060a0870135611cdb81611c76565b809150509295509295509295565b600060208284031215611cfb57600080fd5b6113d182611a46565b80356001600160a01b0381168114611a5557600080fd5b60008060408385031215611d2e57600080fd5b611a7683611d04565b634e487b7160e01b600052602160045260246000fd5b6080810160038610611d6f57634e487b7160e01b600052602160045260246000fd5b9481526020810193909352604083019190915260609091015290565b60008060008060808587031215611da157600080fd5b611daa85611a46565b93506020850135925060408501359150606085013567ffffffffffffffff811115611c5e57600080fd5b600060208284031215611de657600080fd5b6113d182611d04565b60008060008060808587031215611e0557600080fd5b611e0e85611d04565b9350611e1c60208601611d04565b9250611e2a60408601611d04565b9396929550929360600135925050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611e6257600080fd5b81516113d181611c76565b600060208284031215611e7f57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611eaf57611eaf611e86565b500190565b600081518084526020808501945080840160005b83811015611ee457815187529582019590820190600101611ec8565b509495945050505050565b6001600160a01b0383168152604060208201819052600090611f1390830184611eb4565b949350505050565b6020815260006113d16020830184611eb4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b82815260006020604081840152835180604085015260005b81811015611f9757858101830151858201606001528201611f7b565b81811115611fa9576000606083870101525b50601f01601f191692909201606001949350505050565b600082821015611fd257611fd2611e86565b500390565b6bffffffffffffffffffffffff19606095861b811682529390941b90921660148401526028830152604882015260680190565b634e487b7160e01b600052601260045260246000fd5b60008261202f5761202f61200a565b500690565b600060001982141561204857612048611e86565b5060010190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60008160001904831182151516156120b7576120b7611e86565b500290565b6000826120cb576120cb61200a565b50049056fea264697066735822122045fa60cb3f5a727aeee6af4e00680f2d0606b1cb4f59b0dfabc6b688bd67988a64736f6c634300080a0033

Deployed ByteCode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063ca7c15d41161007c578063ca7c15d414610382578063cc64310f14610395578063cf756fdf146103c0578063ddca3f43146103d3578063ef8fdfd8146103dc578063f2fde38b146103ef57600080fd5b80638da5cb5b146102e6578063971276ae146102f75780639c2fc62314610340578063ab0d92dd14610353578063b0bf74e31461035c578063b7ca51e81461036f57600080fd5b80634d85ca26116101155780634d85ca26146102085780636b57d9bd1461021d57806370dca97414610230578063715018a614610243578063866285421461024b5780638a28e80e146102d357600080fd5b8063069f2c0d146101525780631249c58b1461017857806313eaabb8146101805780631d7cf6c6146101ab5780632018ce8b146101be575b600080fd5b610165610160366004611a5a565b610402565b6040519081526020015b60405180910390f35b610165610433565b606954610193906001600160a01b031681565b6040516001600160a01b03909116815260200161016f565b6101656101b9366004611acb565b610901565b6101ed6101cc366004611b93565b606d6020526000908152604090208054600182015460029092015490919083565b6040805193845260208401929092529082015260600161016f565b61021b610216366004611c1c565b610d50565b005b61021b61022b366004611c84565b610dfe565b606854610193906001600160a01b031681565b61021b610ea0565b61029c610259366004611ce9565b606f60205260009081526040902080546001820154600283015460038401546004850154600586015460069096015494959394929360ff92831693919290911687565b604080519788526020880196909652948601939093529015156060850152608084015260a0830152151560c082015260e00161016f565b6101656102e1366004611d1b565b610ed6565b6033546001600160a01b0316610193565b610330610305366004611b93565b607060205260009081526040902080546001820154600283015460039093015460ff90921692909184565b60405161016f9493929190611d4d565b61021b61034e366004611d8b565b610f01565b610165606a5481565b61021b61036a366004611dd4565b610fff565b606754610193906001600160a01b031681565b610165610390366004611ce9565b611091565b6101656103a3366004611d1b565b607160209081526000928352604080842090915290825290205481565b61021b6103ce366004611def565b6112ae565b610165606c5481565b606654610193906001600160a01b031681565b61021b6103fd366004611dd4565b61132a565b606e602052816000526040600020818154811061041e57600080fd5b90600052602060002001600091509150505481565b6000808052606e602052807f136eb4aae73f7618d8559a84c5ff3678edc6b16994db052447ebc43c429b7d6f61046882611091565b8154811061047857610478611e3a565b600091825260208083209190910154918052606f90527fd0170a6220fef73a7dd2c1e9984b0b3831956884ac33b7728dde627780a65be7549091507fd0170a6220fef73a7dd2c1e9984b0b3831956884ac33b7728dde627780a65be5908061051b5760405162461bcd60e51b81526020600482015260116024820152703632bb32b610383934b1b29032b93937b960791b60448201526064015b60405180910390fd5b600382015460ff168015610533575060008260040154115b1561056e5761056b610564836005015461055e856004015486600001546113c590919063ffffffff16565b906113d8565b82906113e4565b90505b6000610590606461058a606c54856113d890919063ffffffff16565b906113f0565b6067549091506001600160a01b03166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018590526064016020604051808303816000875af11580156105f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061c9190611e50565b506067546001600160a01b03166379cc67903061063985856113fc565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561067f57600080fd5b505af1158015610693573d6000803e3d6000fd5b505060675460695460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690529116925063a9059cbb91506044016020604051808303816000875af11580156106ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107109190611e50565b506068546000906001600160a01b03166340c10f19336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018890526044016020604051808303816000875af1158015610773573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107979190611e6d565b6000868152606d6020526040808220600101548151608081019092529293509081908152602080820189905260408083018890526060909201849052600085815260709091522081518154829060ff191660018360028111156107fc576107fc611d37565b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d600088815260200190815260200160002060020160008282546108499190611e9c565b909155505084546001908690600090610863908490611e9c565b90915550610884905061087b606461058a87856113d8565b606a54906113e4565b606a5560665460408051634e1b84f560e11b815290516000926001600160a01b031691639c3709ea9160048083019260209291908290030181865afa1580156108d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f59190611e6d565b98975050505050505050565b600082600281111561091557610915611d37565b610920906001611e9c565b82600281111561093257610932611d37565b146109725760405162461bcd60e51b815260206004820152601060248201526f36b2b63a103632bb32b61032b93937b960811b6044820152606401610512565b6068546001600160a01b0316634f69b86233866040518363ffffffff1660e01b81526004016109a2929190611eef565b602060405180830381865afa1580156109bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e39190611e50565b610a215760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420796f757220746f6b656e7360881b6044820152606401610512565b600080610a2f858588611408565b915091508160001415610a725760405162461bcd60e51b815260206004820152600b60248201526a3a37b5b2b71032b93937b960a91b6044820152606401610512565b6068546040516358eb981360e11b81526001600160a01b039091169063b1d7302690610aa2908990600401611f1b565b600060405180830381600087803b158015610abc57600080fd5b505af1158015610ad0573d6000803e3d6000fd5b505050508551606f6000876002811115610aec57610aec611d37565b6002811115610afd57610afd611d37565b81526020019081526020016000206001016000828254610b1d9190611e9c565b9091555060009050606e81866002811115610b3a57610b3a611d37565b6002811115610b4b57610b4b611d37565b8152602001908152602001600020610b6286611091565b81548110610b7257610b72611e3a565b60009182526020822001546068549092506001600160a01b03166340c10f19336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015610bdf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c039190611e6d565b6000838152606d602052604081206001015491925090610c2b9060649061058a9087906113d8565b90506040518060800160405280886002811115610c4a57610c4a611d37565b8152602080820186905260408083018990526060909201849052600085815260709091522081518154829060ff19166001836002811115610c8d57610c8d611d37565b02179055506020820151816001015560408201518160020155606082015181600301559050506001606d60008581526020019081526020016000206002016000828254610cda9190611e9c565b9091555060019050606f6000896002811115610cf857610cf8611d37565b6002811115610d0957610d09611d37565b81526020019081526020016000206000016000828254610d299190611e9c565b90915550610d41905061087b606461058a88856113d8565b606a5550979650505050505050565b6033546001600160a01b03163314610d7a5760405162461bcd60e51b815260040161051290611f2e565b6000848152606d6020526040908190208481556001810184905560685491516356e4269760e11b815290916001600160a01b03169063adc84d2e90610dc59088908690600401611f63565b600060405180830381600087803b158015610ddf57600080fd5b505af1158015610df3573d6000803e3d6000fd5b505050505050505050565b6033546001600160a01b03163314610e285760405162461bcd60e51b815260040161051290611f2e565b6000606f6000886002811115610e4057610e40611d37565b6002811115610e5157610e51611d37565b8152602081019190915260400160002060028101969096555060038501805494151560ff1995861617905560048501929092556005840155600690920180549215159290911691909117905550565b6033546001600160a01b03163314610eca5760405162461bcd60e51b815260040161051290611f2e565b610ed460006117a4565b565b6001600160a01b03821660009081526071602090815260408083208484529091529020545b92915050565b6033546001600160a01b03163314610f2b5760405162461bcd60e51b815260040161051290611f2e565b610f39606580546001019055565b6000610f4460655490565b6040805160608101825286815260208082018781526000838501818152868252606d9093529384209251835551600183015551600291820155919250606e918790811115610f9457610f94611d37565b6002811115610fa557610fa5611d37565b815260208082019290925260409081016000908120805460018101825590825292902090910182905560685490516356e4269760e11b81526001600160a01b039091169063adc84d2e90610dc59084908690600401611f63565b6033546001600160a01b031633146110295760405162461bcd60e51b815260040161051290611f2e565b6001600160a01b03811661106f5760405162461bcd60e51b815260206004820152600d60248201526c30b2323932b9b99032b93937b960991b6044820152606401610512565b606880546001600160a01b0319166001600160a01b0392909216919091179055565b600080606e60008460028111156110aa576110aa611d37565b60028111156110bb576110bb611d37565b8152602001908152602001600020905060008180549050116111095760405162461bcd60e51b81526020600482015260076024820152666e6f206361746560c81b6044820152606401610512565b60008060005b835461111d90600190611fc0565b413383426040516020016111349493929190611fd7565b6040516020818303038152906040528051906020012060001c6111579190612020565b845490935061116890600190611fc0565b4133834260405160200161117f9493929190611fd7565b6040516020818303038152906040528051906020012060001c6111a29190612020565b6111ad906001611e9c565b9150606d60008584815481106111c5576111c5611e3a565b9060005260206000200154815260200190815260200160002060020154606d60008685815481106111f8576111f8611e3a565b9060005260206000200154815260200190815260200160002060000154111561121f578192505b606d600085858154811061123557611235611e3a565b9060005260206000200154815260200190815260200160002060020154606d600086868154811061126857611268611e3a565b90600052602060002001548152602001908152602001600020600001541115611290576112a4565b8061129a81612034565b915050600161110f575b5090949350505050565b600054610100900460ff16806112c7575060005460ff16155b6112e35760405162461bcd60e51b81526004016105129061204f565b600054610100900460ff16158015611305576000805461ffff19166101011790555b611311858585856117f6565b8015611323576000805461ff00191690555b5050505050565b6033546001600160a01b031633146113545760405162461bcd60e51b815260040161051290611f2e565b6001600160a01b0381166113b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610512565b6113c2816117a4565b50565b60006113d18284612020565b9392505050565b60006113d1828461209d565b60006113d18284611e9c565b60006113d182846120bc565b60006113d18284611fc0565b6000806000606f600086600281111561142357611423611d37565b600281111561143457611434611d37565b81526020808201929092526040908101600020815160e081018352815481526001820154938101939093526002810154918301829052600381015460ff9081161580156060860181905260048401546080870152600584015460a0870152600690930154909116151560c085015292935090916114b5575060008260800151115b156114e3576114e06105648360a0015161055e856080015186600001516113f090919063ffffffff16565b90505b808551146115285760405162461bcd60e51b81526020600482015260126024820152713a37b5b2b71030b6b7bab73a1032b93937b960711b6044820152606401610512565b6000806000875167ffffffffffffffff81111561154757611547611a84565b604051908082528060200260200182016040528015611570578160200160208202803683370190505b50905060005b885181101561177d578a600281111561159157611591611d37565b607060008b84815181106115a7576115a7611e3a565b60209081029190910181015182528101919091526040016000205460ff1660028111156115d6576115d6611d37565b146116115760405162461bcd60e51b815260206004820152600b60248201526a195c9c9bdc881b195d995b60aa1b6044820152606401610512565b611653607060008b848151811061162a5761162a611e3a565b6020026020010151815260200190815260200160002060020154846113e490919063ffffffff16565b9250611697607060008b848151811061166e5761166e611e3a565b6020026020010151815260200190815260200160002060030154856113e490919063ffffffff16565b93508560c0015161171e576116db82607060008c85815181106116bc576116bc611e3a565b6020026020010151815260200190815260200160002060010154611869565b1561171e5760405162461bcd60e51b81526020600482015260136024820152726d75737420626520756e69717565206361746560681b6044820152606401610512565b607060008a838151811061173457611734611e3a565b602002602001015181526020019081526020016000206001015482828151811061176057611760611e3a565b60209081029190910101528061177581612034565b915050611576565b50816117938951856113f090919063ffffffff16565b965096505050505050935093915050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff168061180f575060005460ff16155b61182b5760405162461bcd60e51b81526004016105129061204f565b600054610100900460ff1615801561184d576000805461ffff19166101011790555b6118556118c1565b61185d61192c565b6113118585858561198c565b8151600090815b818110156118b6578385828151811061188b5761188b611e3a565b602002602001015114156118a457600192505050610efb565b806118ae81612034565b915050611870565b506000949350505050565b600054610100900460ff16806118da575060005460ff16155b6118f65760405162461bcd60e51b81526004016105129061204f565b600054610100900460ff16158015611918576000805461ffff19166101011790555b80156113c2576000805461ff001916905550565b600054610100900460ff1680611945575060005460ff16155b6119615760405162461bcd60e51b81526004016105129061204f565b600054610100900460ff16158015611983576000805461ffff19166101011790555b611918336117a4565b600054610100900460ff16806119a5575060005460ff16155b6119c15760405162461bcd60e51b81526004016105129061204f565b600054610100900460ff161580156119e3576000805461ffff19166101011790555b606780546001600160a01b038088166001600160a01b031992831617909255606880548684169083161790556066805492871692821683179055606980549091169091179055606c8290558015611323576000805461ff00191690555050505050565b803560038110611a5557600080fd5b919050565b60008060408385031215611a6d57600080fd5b611a7683611a46565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611ac357611ac3611a84565b604052919050565b600080600060608486031215611ae057600080fd5b833567ffffffffffffffff80821115611af857600080fd5b818601915086601f830112611b0c57600080fd5b8135602082821115611b2057611b20611a84565b8160051b9250611b31818401611a9a565b828152928401810192818101908a851115611b4b57600080fd5b948201945b84861015611b6957853582529482019490820190611b50565b9750611b789050888201611a46565b955050505050611b8a60408501611a46565b90509250925092565b600060208284031215611ba557600080fd5b5035919050565b600082601f830112611bbd57600080fd5b813567ffffffffffffffff811115611bd757611bd7611a84565b611bea601f8201601f1916602001611a9a565b818152846020838601011115611bff57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060808587031215611c3257600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff811115611c5e57600080fd5b611c6a87828801611bac565b91505092959194509250565b80151581146113c257600080fd5b60008060008060008060c08789031215611c9d57600080fd5b611ca687611a46565b9550602087013594506040870135611cbd81611c76565b9350606087013592506080870135915060a0870135611cdb81611c76565b809150509295509295509295565b600060208284031215611cfb57600080fd5b6113d182611a46565b80356001600160a01b0381168114611a5557600080fd5b60008060408385031215611d2e57600080fd5b611a7683611d04565b634e487b7160e01b600052602160045260246000fd5b6080810160038610611d6f57634e487b7160e01b600052602160045260246000fd5b9481526020810193909352604083019190915260609091015290565b60008060008060808587031215611da157600080fd5b611daa85611a46565b93506020850135925060408501359150606085013567ffffffffffffffff811115611c5e57600080fd5b600060208284031215611de657600080fd5b6113d182611d04565b60008060008060808587031215611e0557600080fd5b611e0e85611d04565b9350611e1c60208601611d04565b9250611e2a60408601611d04565b9396929550929360600135925050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611e6257600080fd5b81516113d181611c76565b600060208284031215611e7f57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611eaf57611eaf611e86565b500190565b600081518084526020808501945080840160005b83811015611ee457815187529582019590820190600101611ec8565b509495945050505050565b6001600160a01b0383168152604060208201819052600090611f1390830184611eb4565b949350505050565b6020815260006113d16020830184611eb4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b82815260006020604081840152835180604085015260005b81811015611f9757858101830151858201606001528201611f7b565b81811115611fa9576000606083870101525b50601f01601f191692909201606001949350505050565b600082821015611fd257611fd2611e86565b500390565b6bffffffffffffffffffffffff19606095861b811682529390941b90921660148401526028830152604882015260680190565b634e487b7160e01b600052601260045260246000fd5b60008261202f5761202f61200a565b500690565b600060001982141561204857612048611e86565b5060010190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60008160001904831182151516156120b7576120b7611e86565b500290565b6000826120cb576120cb61200a565b50049056fea264697066735822122045fa60cb3f5a727aeee6af4e00680f2d0606b1cb4f59b0dfabc6b688bd67988a64736f6c634300080a0033