Address Details
contract

0x69b780E40F8563c09Cf1Dd7D8EA0f936E59b3727

Contract Name
StarNFTLogic
Creator
0x7d6740–c9cfce at 0xd176a5–b4a7c5
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
8737798
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
StarNFTLogic




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




EVM Version
london




Verified at
2023-02-06T09:06:04.042769Z

scripts/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;
}

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

    using CountersUpgradeable for CountersUpgradeable.Counter;
    CountersUpgradeable.Counter private cateIds;

    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 fee;

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

    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);
        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));
        return _starId;
    }

    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 123123;
    }

    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;
    }

    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) public view returns (uint256) {
        return starCate[_level].length;
    }

    function getRndCateIndex(StarLevel _level) internal view returns (uint256) {
        uint256[] storage _cate = starCate[_level];
        require(_cate.length > 0, "no cate");
        uint256 _rndCateIndex;
        uint256 nonce;
        do {
            _rndCateIndex = uint256(keccak256(abi.encodePacked(block.coinbase, msg.sender, nonce, block.timestamp))) % (_cate.length -1) + 1;
            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 setStarNFT(address _starNFT) onlyOwner public {
        require(_starNFT != address(0), "address error");
        starNFT = IStarNFT(_starNFT);
    }
}
        

/_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;
        }
    }
}
          

/scripts/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":"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":"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":"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":"getCateLength","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

0x608060405234801561001057600080fd5b50613563806100206000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063ab0d92dd11610071578063ab0d92dd14610327578063b0bf74e314610345578063b7ca51e814610361578063cf756fdf1461037f578063f2fde38b1461039b57610121565b8063715018a61461027a57806386628542146102845780638da5cb5b146102ba578063971276ae146102d85780639c2fc6231461030b57610121565b80632018ce8b116100f45780632018ce8b146101c25780634d85ca26146101f45780636b57d9bd146102105780636fa0feb91461022c57806370dca9741461025c57610121565b8063069f2c0d146101265780631249c58b1461015657806313eaabb8146101745780631d7cf6c614610192575b600080fd5b610140600480360381019061013b91906121c8565b6103b7565b60405161014d9190612217565b60405180910390f35b61015e6103e8565b60405161016b9190612217565b60405180910390f35b61017c61096c565b6040516101899190612273565b60405180910390f35b6101ac60048036038101906101a791906123e7565b610992565b6040516101b99190612217565b60405180910390f35b6101dc60048036038101906101d79190612456565b610c8f565b6040516101eb93929190612483565b60405180910390f35b61020e6004803603810190610209919061256f565b610cb9565b005b61022a6004803603810190610225919061262a565b610df4565b005b610246600480360381019061024191906126b7565b610f07565b6040516102539190612217565b60405180910390f35b610264610f4b565b6040516102719190612743565b60405180910390f35b610282610f71565b005b61029e600480360381019061029991906126b7565b610ff9565b6040516102b1979695949392919061276d565b60405180910390f35b6102c2611055565b6040516102cf9190612273565b60405180910390f35b6102f260048036038101906102ed9190612456565b61107f565b6040516103029493929190612853565b60405180910390f35b61032560048036038101906103209190612898565b6110bc565b005b61032f611294565b60405161033c9190612217565b60405180910390f35b61035f600480360381019061035a9190612947565b61129a565b005b6103696113ca565b6040516103769190612995565b60405180910390f35b610399600480360381019061039491906129b0565b6113f0565b005b6103b560048036038101906103b09190612947565b6114d9565b005b606c60205281600052604060002081815481106103d357600080fd5b90600052602060002001600091509150505481565b600080606c6000806002811115610402576104016127dc565b5b6002811115610414576104136127dc565b5b815260200190815260200160002061042c60006115d1565b8154811061043d5761043c612a17565b5b906000526020600020015490506000606d6000806002811115610463576104626127dc565b5b6002811115610475576104746127dc565b5b81526020019081526020016000209050600081600201549050600081116104d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c890612aa3565b60405180910390fd5b8160030160009054906101000a900460ff1680156104f3575060008260040154115b1561053e5761053b61052c836005015461051e8560040154866000015461174390919063ffffffff16565b61175990919063ffffffff16565b8261176f90919063ffffffff16565b90505b6000610568606461055a606a548561175990919063ffffffff16565b61178590919063ffffffff16565b9050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd6105b061179b565b30856040518463ffffffff1660e01b81526004016105d093929190612ac3565b6020604051808303816000875af11580156105ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106139190612b0f565b50606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc67903061066684866117a390919063ffffffff16565b6040518363ffffffff1660e01b8152600401610683929190612b3c565b600060405180830381600087803b15801561069d57600080fd5b505af11580156106b1573d6000803e3d6000fd5b50505050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610734929190612b3c565b6020604051808303816000875af1158015610753573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107779190612b0f565b506000606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f196107c061179b565b876040518363ffffffff1660e01b81526004016107de929190612b3c565b6020604051808303816000875af11580156107fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108219190612b7a565b90506000606b600087815260200190815260200160002060010154905060405180608001604052806000600281111561085d5761085c6127dc565b5b815260200187815260200185815260200182815250606e600084815260200190815260200160002060008201518160000160006101000a81548160ff021916908360028111156108b0576108af6127dc565b5b02179055506020820151816001015560408201518160020155606082015181600301559050506001606b600088815260200190815260200160002060020160008282546108fd9190612bd6565b9250508190555060018560000160008282546109199190612bd6565b9250508190555061095a610949606461093b848861175990919063ffffffff16565b61178590919063ffffffff16565b60695461176f90919063ffffffff16565b60698190555081965050505050505090565b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060018360028111156109a9576109a86127dc565b5b6109b39190612bd6565b8260028111156109c6576109c56127dc565b5b14610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90612c78565b60405180910390fd5b606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f69b862610a4c61179b565b866040518363ffffffff1660e01b8152600401610a6a929190612d56565b602060405180830381865afa158015610a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aab9190612b0f565b610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190612dd2565b60405180910390fd5b600080610af88585886117b9565b915091506000821415610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790612e3e565b60405180910390fd5b606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b1d73026876040518263ffffffff1660e01b8152600401610b9b9190612e5e565b600060405180830381600087803b158015610bb557600080fd5b505af1158015610bc9573d6000803e3d6000fd5b505050508551606d6000876002811115610be657610be56127dc565b5b6002811115610bf857610bf76127dc565b5b81526020019081526020016000206001016000828254610c189190612bd6565b925050819055506000606c6000866002811115610c3857610c376127dc565b5b6002811115610c4a57610c496127dc565b5b8152602001908152602001600020610c61866115d1565b81548110610c7257610c71612a17565b5b906000526020600020015490506201e0f393505050509392505050565b606b6020528060005260406000206000915090508060000154908060010154908060020154905083565b610cc161179b565b73ffffffffffffffffffffffffffffffffffffffff16610cdf611055565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90612ecc565b60405180910390fd5b6000606b60008681526020019081526020016000209050838160000181905550828160010181905550606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e86846040518363ffffffff1660e01b8152600401610dbb929190612f63565b600060405180830381600087803b158015610dd557600080fd5b505af1158015610de9573d6000803e3d6000fd5b505050505050505050565b610dfc61179b565b73ffffffffffffffffffffffffffffffffffffffff16610e1a611055565b73ffffffffffffffffffffffffffffffffffffffff1614610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790612ecc565b60405180910390fd5b6000606d6000886002811115610e8957610e886127dc565b5b6002811115610e9b57610e9a6127dc565b5b81526020019081526020016000209050858160020181905550848160030160006101000a81548160ff021916908315150217905550838160040181905550828160050181905550818160060160006101000a81548160ff02191690831515021790555050505050505050565b6000606c6000836002811115610f2057610f1f6127dc565b5b6002811115610f3257610f316127dc565b5b8152602001908152602001600020805490509050919050565b606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f7961179b565b73ffffffffffffffffffffffffffffffffffffffff16610f97611055565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490612ecc565b60405180910390fd5b610ff76000611bae565b565b606d6020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16908060040154908060050154908060060160009054906101000a900460ff16905087565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606e6020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020154908060030154905084565b6110c461179b565b73ffffffffffffffffffffffffffffffffffffffff166110e2611055565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90612ecc565b60405180910390fd5b6111426065611c74565b600061114e6065611c8a565b905060405180606001604052808581526020018481526020016000815250606b6000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050606c60008660028111156111b7576111b66127dc565b5b60028111156111c9576111c86127dc565b5b8152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e82846040518363ffffffff1660e01b815260040161125b929190612f63565b600060405180830381600087803b15801561127557600080fd5b505af1158015611289573d6000803e3d6000fd5b505050505050505050565b60695481565b6112a261179b565b73ffffffffffffffffffffffffffffffffffffffff166112c0611055565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612ecc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90612fdf565b60405180910390fd5b80606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060019054906101000a900460ff1680611416575060008054906101000a900460ff16155b611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90613071565b60405180910390fd5b60008060019054906101000a900460ff1615905080156114a5576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6114b185858585611c98565b80156114d25760008060016101000a81548160ff0219169083151502179055505b5050505050565b6114e161179b565b73ffffffffffffffffffffffffffffffffffffffff166114ff611055565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612ecc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90613103565b60405180910390fd5b6115ce81611bae565b50565b600080606c60008460028111156115eb576115ea6127dc565b5b60028111156115fd576115fc6127dc565b5b815260200190815260200160002090506000818054905011611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b9061316f565b60405180910390fd5b6000805b600180848054905061166a919061318f565b413384426040516020016116819493929190613267565b6040516020818303038152906040528051906020012060001c6116a491906132e4565b6116ae9190612bd6565b9150606b60008484815481106116c7576116c6612a17565b5b9060005260206000200154815260200190815260200160002060020154606b60008585815481106116fb576116fa612a17565b5b9060005260206000200154815260200190815260200160002060000154111561172357611738565b808061172e90613315565b9150506001611658575b819350505050919050565b6000818361175191906132e4565b905092915050565b60008183611767919061335e565b905092915050565b6000818361177d9190612bd6565b905092915050565b6000818361179391906133b8565b905092915050565b600033905090565b600081836117b1919061318f565b905092915050565b6000806000606d60008660028111156117d5576117d46127dc565b5b60028111156117e7576117e66127dc565b5b81526020019081526020016000206040518060e00160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815260200160048201548152602001600582015481526020016006820160009054906101000a900460ff161515151581525050905060008160400151905081606001518015611888575060008260800151115b156118d3576118d06118c18360a001516118b38560800151866000015161178590919063ffffffff16565b61175990919063ffffffff16565b8261176f90919063ffffffff16565b90505b80855114611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d90613435565b60405180910390fd5b6000806000875167ffffffffffffffff811115611936576119356122a4565b5b6040519080825280602002602001820160405280156119645781602001602082028036833780820191505090505b50905060005b8851811015611b87578a6002811115611986576119856127dc565b5b606e60008b848151811061199d5761199c612a17565b5b6020026020010151815260200190815260200160002060000160009054906101000a900460ff1660028111156119d6576119d56127dc565b5b14611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d906134a1565b60405180910390fd5b611a59606e60008b8481518110611a3057611a2f612a17565b5b60200260200101518152602001908152602001600020600201548461176f90919063ffffffff16565b9250611a9e606e60008b8481518110611a7557611a74612a17565b5b60200260200101518152602001908152602001600020600301548561176f90919063ffffffff16565b93508560c00151611b2457611ae382606e60008c8581518110611ac457611ac3612a17565b5b6020026020010151815260200190815260200160002060010154611d91565b15611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a9061350d565b60405180910390fd5b5b606e60008a8381518110611b3b57611b3a612a17565b5b6020026020010151815260200190815260200160002060010154828281518110611b6857611b67612a17565b5b6020026020010181815250508080611b7f90613315565b91505061196a565b5081611b9d89518561178590919063ffffffff16565b965096505050505050935093915050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600060019054906101000a900460ff1680611cbe575060008054906101000a900460ff16155b611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490613071565b60405180910390fd5b60008060019054906101000a900460ff161590508015611d4d576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611d55611df0565b611d5d611ec9565b611d6985858585611fb2565b8015611d8a5760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000808351905060005b81811015611de35783858281518110611db757611db6612a17565b5b60200260200101511415611dd057600192505050611dea565b8080611ddb90613315565b915050611d9b565b5060009150505b92915050565b600060019054906101000a900460ff1680611e16575060008054906101000a900460ff16155b611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90613071565b60405180910390fd5b60008060019054906101000a900460ff161590508015611ea5576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015611ec65760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680611eef575060008054906101000a900460ff16155b611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2590613071565b60405180910390fd5b60008060019054906101000a900460ff161590508015611f7e576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611f8e611f8961179b565b611bae565b8015611faf5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680611fd8575060008054906101000a900460ff16155b612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e90613071565b60405180910390fd5b60008060019054906101000a900460ff161590508015612067576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b84606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081606a8190555080156121525760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000604051905090565b600080fd5b600080fd5b6003811061217a57600080fd5b50565b60008135905061218c8161216d565b92915050565b6000819050919050565b6121a581612192565b81146121b057600080fd5b50565b6000813590506121c28161219c565b92915050565b600080604083850312156121df576121de612163565b5b60006121ed8582860161217d565b92505060206121fe858286016121b3565b9150509250929050565b61221181612192565b82525050565b600060208201905061222c6000830184612208565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061225d82612232565b9050919050565b61226d81612252565b82525050565b60006020820190506122886000830184612264565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122dc82612293565b810181811067ffffffffffffffff821117156122fb576122fa6122a4565b5b80604052505050565b600061230e612159565b905061231a82826122d3565b919050565b600067ffffffffffffffff82111561233a576123396122a4565b5b602082029050602081019050919050565b600080fd5b600061236361235e8461231f565b612304565b905080838252602082019050602084028301858111156123865761238561234b565b5b835b818110156123af578061239b88826121b3565b845260208401935050602081019050612388565b5050509392505050565b600082601f8301126123ce576123cd61228e565b5b81356123de848260208601612350565b91505092915050565b600080600060608486031215612400576123ff612163565b5b600084013567ffffffffffffffff81111561241e5761241d612168565b5b61242a868287016123b9565b935050602061243b8682870161217d565b925050604061244c8682870161217d565b9150509250925092565b60006020828403121561246c5761246b612163565b5b600061247a848285016121b3565b91505092915050565b60006060820190506124986000830186612208565b6124a56020830185612208565b6124b26040830184612208565b949350505050565b600080fd5b600067ffffffffffffffff8211156124da576124d96122a4565b5b6124e382612293565b9050602081019050919050565b82818337600083830152505050565b600061251261250d846124bf565b612304565b90508281526020810184848401111561252e5761252d6124ba565b5b6125398482856124f0565b509392505050565b600082601f8301126125565761255561228e565b5b81356125668482602086016124ff565b91505092915050565b6000806000806080858703121561258957612588612163565b5b6000612597878288016121b3565b94505060206125a8878288016121b3565b93505060406125b9878288016121b3565b925050606085013567ffffffffffffffff8111156125da576125d9612168565b5b6125e687828801612541565b91505092959194509250565b60008115159050919050565b612607816125f2565b811461261257600080fd5b50565b600081359050612624816125fe565b92915050565b60008060008060008060c0878903121561264757612646612163565b5b600061265589828a0161217d565b965050602061266689828a016121b3565b955050604061267789828a01612615565b945050606061268889828a016121b3565b935050608061269989828a016121b3565b92505060a06126aa89828a01612615565b9150509295509295509295565b6000602082840312156126cd576126cc612163565b5b60006126db8482850161217d565b91505092915050565b6000819050919050565b60006127096127046126ff84612232565b6126e4565b612232565b9050919050565b600061271b826126ee565b9050919050565b600061272d82612710565b9050919050565b61273d81612722565b82525050565b60006020820190506127586000830184612734565b92915050565b612767816125f2565b82525050565b600060e082019050612782600083018a612208565b61278f6020830189612208565b61279c6040830188612208565b6127a9606083018761275e565b6127b66080830186612208565b6127c360a0830185612208565b6127d060c083018461275e565b98975050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061281c5761281b6127dc565b5b50565b600081905061282d8261280b565b919050565b600061283d8261281f565b9050919050565b61284d81612832565b82525050565b60006080820190506128686000830187612844565b6128756020830186612208565b6128826040830185612208565b61288f6060830184612208565b95945050505050565b600080600080608085870312156128b2576128b1612163565b5b60006128c08782880161217d565b94505060206128d1878288016121b3565b93505060406128e2878288016121b3565b925050606085013567ffffffffffffffff81111561290357612902612168565b5b61290f87828801612541565b91505092959194509250565b61292481612252565b811461292f57600080fd5b50565b6000813590506129418161291b565b92915050565b60006020828403121561295d5761295c612163565b5b600061296b84828501612932565b91505092915050565b600061297f82612710565b9050919050565b61298f81612974565b82525050565b60006020820190506129aa6000830184612986565b92915050565b600080600080608085870312156129ca576129c9612163565b5b60006129d887828801612932565b94505060206129e987828801612932565b93505060406129fa87828801612932565b9250506060612a0b878288016121b3565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b7f6c6576656c207072696365206572726f72000000000000000000000000000000600082015250565b6000612a8d601183612a46565b9150612a9882612a57565b602082019050919050565b60006020820190508181036000830152612abc81612a80565b9050919050565b6000606082019050612ad86000830186612264565b612ae56020830185612264565b612af26040830184612208565b949350505050565b600081519050612b09816125fe565b92915050565b600060208284031215612b2557612b24612163565b5b6000612b3384828501612afa565b91505092915050565b6000604082019050612b516000830185612264565b612b5e6020830184612208565b9392505050565b600081519050612b748161219c565b92915050565b600060208284031215612b9057612b8f612163565b5b6000612b9e84828501612b65565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612be182612192565b9150612bec83612192565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c2157612c20612ba7565b5b828201905092915050565b7f6d656c74206c6576656c206572726f7200000000000000000000000000000000600082015250565b6000612c62601083612a46565b9150612c6d82612c2c565b602082019050919050565b60006020820190508181036000830152612c9181612c55565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ccd81612192565b82525050565b6000612cdf8383612cc4565b60208301905092915050565b6000602082019050919050565b6000612d0382612c98565b612d0d8185612ca3565b9350612d1883612cb4565b8060005b83811015612d49578151612d308882612cd3565b9750612d3b83612ceb565b925050600181019050612d1c565b5085935050505092915050565b6000604082019050612d6b6000830185612264565b8181036020830152612d7d8184612cf8565b90509392505050565b7f6e6f7420796f757220746f6b656e730000000000000000000000000000000000600082015250565b6000612dbc600f83612a46565b9150612dc782612d86565b602082019050919050565b60006020820190508181036000830152612deb81612daf565b9050919050565b7f746f6b656e206572726f72000000000000000000000000000000000000000000600082015250565b6000612e28600b83612a46565b9150612e3382612df2565b602082019050919050565b60006020820190508181036000830152612e5781612e1b565b9050919050565b60006020820190508181036000830152612e788184612cf8565b905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eb6602083612a46565b9150612ec182612e80565b602082019050919050565b60006020820190508181036000830152612ee581612ea9565b9050919050565b600081519050919050565b60005b83811015612f15578082015181840152602081019050612efa565b83811115612f24576000848401525b50505050565b6000612f3582612eec565b612f3f8185612a46565b9350612f4f818560208601612ef7565b612f5881612293565b840191505092915050565b6000604082019050612f786000830185612208565b8181036020830152612f8a8184612f2a565b90509392505050565b7f61646472657373206572726f7200000000000000000000000000000000000000600082015250565b6000612fc9600d83612a46565b9150612fd482612f93565b602082019050919050565b60006020820190508181036000830152612ff881612fbc565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600061305b602e83612a46565b915061306682612fff565b604082019050919050565b6000602082019050818103600083015261308a8161304e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130ed602683612a46565b91506130f882613091565b604082019050919050565b6000602082019050818103600083015261311c816130e0565b9050919050565b7f6e6f206361746500000000000000000000000000000000000000000000000000600082015250565b6000613159600783612a46565b915061316482613123565b602082019050919050565b600060208201905081810360008301526131888161314c565b9050919050565b600061319a82612192565b91506131a583612192565b9250828210156131b8576131b7612ba7565b5b828203905092915050565b60006131ce82612232565b9050919050565b60008160601b9050919050565b60006131ed826131d5565b9050919050565b60006131ff826131e2565b9050919050565b613217613212826131c3565b6131f4565b82525050565b6000613228826131e2565b9050919050565b61324061323b82612252565b61321d565b82525050565b6000819050919050565b61326161325c82612192565b613246565b82525050565b60006132738287613206565b601482019150613283828661322f565b6014820191506132938285613250565b6020820191506132a38284613250565b60208201915081905095945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132ef82612192565b91506132fa83612192565b92508261330a576133096132b5565b5b828206905092915050565b600061332082612192565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561335357613352612ba7565b5b600182019050919050565b600061336982612192565b915061337483612192565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133ad576133ac612ba7565b5b828202905092915050565b60006133c382612192565b91506133ce83612192565b9250826133de576133dd6132b5565b5b828204905092915050565b7f746f6b656e20616d6f756e74206572726f720000000000000000000000000000600082015250565b600061341f601283612a46565b915061342a826133e9565b602082019050919050565b6000602082019050818103600083015261344e81613412565b9050919050565b7f6572726f72206c6576656c000000000000000000000000000000000000000000600082015250565b600061348b600b83612a46565b915061349682613455565b602082019050919050565b600060208201905081810360008301526134ba8161347e565b9050919050565b7f6d75737420626520756e69717565206361746500000000000000000000000000600082015250565b60006134f7601383612a46565b9150613502826134c1565b602082019050919050565b60006020820190508181036000830152613526816134ea565b905091905056fea26469706673582212208fce0189eb2c03d4b54389f18906963afd4250c003c98e09965463c7ca5ef6b164736f6c634300080a0033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063ab0d92dd11610071578063ab0d92dd14610327578063b0bf74e314610345578063b7ca51e814610361578063cf756fdf1461037f578063f2fde38b1461039b57610121565b8063715018a61461027a57806386628542146102845780638da5cb5b146102ba578063971276ae146102d85780639c2fc6231461030b57610121565b80632018ce8b116100f45780632018ce8b146101c25780634d85ca26146101f45780636b57d9bd146102105780636fa0feb91461022c57806370dca9741461025c57610121565b8063069f2c0d146101265780631249c58b1461015657806313eaabb8146101745780631d7cf6c614610192575b600080fd5b610140600480360381019061013b91906121c8565b6103b7565b60405161014d9190612217565b60405180910390f35b61015e6103e8565b60405161016b9190612217565b60405180910390f35b61017c61096c565b6040516101899190612273565b60405180910390f35b6101ac60048036038101906101a791906123e7565b610992565b6040516101b99190612217565b60405180910390f35b6101dc60048036038101906101d79190612456565b610c8f565b6040516101eb93929190612483565b60405180910390f35b61020e6004803603810190610209919061256f565b610cb9565b005b61022a6004803603810190610225919061262a565b610df4565b005b610246600480360381019061024191906126b7565b610f07565b6040516102539190612217565b60405180910390f35b610264610f4b565b6040516102719190612743565b60405180910390f35b610282610f71565b005b61029e600480360381019061029991906126b7565b610ff9565b6040516102b1979695949392919061276d565b60405180910390f35b6102c2611055565b6040516102cf9190612273565b60405180910390f35b6102f260048036038101906102ed9190612456565b61107f565b6040516103029493929190612853565b60405180910390f35b61032560048036038101906103209190612898565b6110bc565b005b61032f611294565b60405161033c9190612217565b60405180910390f35b61035f600480360381019061035a9190612947565b61129a565b005b6103696113ca565b6040516103769190612995565b60405180910390f35b610399600480360381019061039491906129b0565b6113f0565b005b6103b560048036038101906103b09190612947565b6114d9565b005b606c60205281600052604060002081815481106103d357600080fd5b90600052602060002001600091509150505481565b600080606c6000806002811115610402576104016127dc565b5b6002811115610414576104136127dc565b5b815260200190815260200160002061042c60006115d1565b8154811061043d5761043c612a17565b5b906000526020600020015490506000606d6000806002811115610463576104626127dc565b5b6002811115610475576104746127dc565b5b81526020019081526020016000209050600081600201549050600081116104d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c890612aa3565b60405180910390fd5b8160030160009054906101000a900460ff1680156104f3575060008260040154115b1561053e5761053b61052c836005015461051e8560040154866000015461174390919063ffffffff16565b61175990919063ffffffff16565b8261176f90919063ffffffff16565b90505b6000610568606461055a606a548561175990919063ffffffff16565b61178590919063ffffffff16565b9050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd6105b061179b565b30856040518463ffffffff1660e01b81526004016105d093929190612ac3565b6020604051808303816000875af11580156105ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106139190612b0f565b50606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc67903061066684866117a390919063ffffffff16565b6040518363ffffffff1660e01b8152600401610683929190612b3c565b600060405180830381600087803b15801561069d57600080fd5b505af11580156106b1573d6000803e3d6000fd5b50505050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610734929190612b3c565b6020604051808303816000875af1158015610753573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107779190612b0f565b506000606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f196107c061179b565b876040518363ffffffff1660e01b81526004016107de929190612b3c565b6020604051808303816000875af11580156107fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108219190612b7a565b90506000606b600087815260200190815260200160002060010154905060405180608001604052806000600281111561085d5761085c6127dc565b5b815260200187815260200185815260200182815250606e600084815260200190815260200160002060008201518160000160006101000a81548160ff021916908360028111156108b0576108af6127dc565b5b02179055506020820151816001015560408201518160020155606082015181600301559050506001606b600088815260200190815260200160002060020160008282546108fd9190612bd6565b9250508190555060018560000160008282546109199190612bd6565b9250508190555061095a610949606461093b848861175990919063ffffffff16565b61178590919063ffffffff16565b60695461176f90919063ffffffff16565b60698190555081965050505050505090565b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060018360028111156109a9576109a86127dc565b5b6109b39190612bd6565b8260028111156109c6576109c56127dc565b5b14610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90612c78565b60405180910390fd5b606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f69b862610a4c61179b565b866040518363ffffffff1660e01b8152600401610a6a929190612d56565b602060405180830381865afa158015610a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aab9190612b0f565b610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190612dd2565b60405180910390fd5b600080610af88585886117b9565b915091506000821415610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790612e3e565b60405180910390fd5b606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b1d73026876040518263ffffffff1660e01b8152600401610b9b9190612e5e565b600060405180830381600087803b158015610bb557600080fd5b505af1158015610bc9573d6000803e3d6000fd5b505050508551606d6000876002811115610be657610be56127dc565b5b6002811115610bf857610bf76127dc565b5b81526020019081526020016000206001016000828254610c189190612bd6565b925050819055506000606c6000866002811115610c3857610c376127dc565b5b6002811115610c4a57610c496127dc565b5b8152602001908152602001600020610c61866115d1565b81548110610c7257610c71612a17565b5b906000526020600020015490506201e0f393505050509392505050565b606b6020528060005260406000206000915090508060000154908060010154908060020154905083565b610cc161179b565b73ffffffffffffffffffffffffffffffffffffffff16610cdf611055565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90612ecc565b60405180910390fd5b6000606b60008681526020019081526020016000209050838160000181905550828160010181905550606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e86846040518363ffffffff1660e01b8152600401610dbb929190612f63565b600060405180830381600087803b158015610dd557600080fd5b505af1158015610de9573d6000803e3d6000fd5b505050505050505050565b610dfc61179b565b73ffffffffffffffffffffffffffffffffffffffff16610e1a611055565b73ffffffffffffffffffffffffffffffffffffffff1614610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790612ecc565b60405180910390fd5b6000606d6000886002811115610e8957610e886127dc565b5b6002811115610e9b57610e9a6127dc565b5b81526020019081526020016000209050858160020181905550848160030160006101000a81548160ff021916908315150217905550838160040181905550828160050181905550818160060160006101000a81548160ff02191690831515021790555050505050505050565b6000606c6000836002811115610f2057610f1f6127dc565b5b6002811115610f3257610f316127dc565b5b8152602001908152602001600020805490509050919050565b606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f7961179b565b73ffffffffffffffffffffffffffffffffffffffff16610f97611055565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490612ecc565b60405180910390fd5b610ff76000611bae565b565b606d6020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16908060040154908060050154908060060160009054906101000a900460ff16905087565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606e6020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020154908060030154905084565b6110c461179b565b73ffffffffffffffffffffffffffffffffffffffff166110e2611055565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90612ecc565b60405180910390fd5b6111426065611c74565b600061114e6065611c8a565b905060405180606001604052808581526020018481526020016000815250606b6000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050606c60008660028111156111b7576111b66127dc565b5b60028111156111c9576111c86127dc565b5b8152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663adc84d2e82846040518363ffffffff1660e01b815260040161125b929190612f63565b600060405180830381600087803b15801561127557600080fd5b505af1158015611289573d6000803e3d6000fd5b505050505050505050565b60695481565b6112a261179b565b73ffffffffffffffffffffffffffffffffffffffff166112c0611055565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612ecc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90612fdf565b60405180910390fd5b80606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060019054906101000a900460ff1680611416575060008054906101000a900460ff16155b611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90613071565b60405180910390fd5b60008060019054906101000a900460ff1615905080156114a5576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6114b185858585611c98565b80156114d25760008060016101000a81548160ff0219169083151502179055505b5050505050565b6114e161179b565b73ffffffffffffffffffffffffffffffffffffffff166114ff611055565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612ecc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90613103565b60405180910390fd5b6115ce81611bae565b50565b600080606c60008460028111156115eb576115ea6127dc565b5b60028111156115fd576115fc6127dc565b5b815260200190815260200160002090506000818054905011611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b9061316f565b60405180910390fd5b6000805b600180848054905061166a919061318f565b413384426040516020016116819493929190613267565b6040516020818303038152906040528051906020012060001c6116a491906132e4565b6116ae9190612bd6565b9150606b60008484815481106116c7576116c6612a17565b5b9060005260206000200154815260200190815260200160002060020154606b60008585815481106116fb576116fa612a17565b5b9060005260206000200154815260200190815260200160002060000154111561172357611738565b808061172e90613315565b9150506001611658575b819350505050919050565b6000818361175191906132e4565b905092915050565b60008183611767919061335e565b905092915050565b6000818361177d9190612bd6565b905092915050565b6000818361179391906133b8565b905092915050565b600033905090565b600081836117b1919061318f565b905092915050565b6000806000606d60008660028111156117d5576117d46127dc565b5b60028111156117e7576117e66127dc565b5b81526020019081526020016000206040518060e00160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815260200160048201548152602001600582015481526020016006820160009054906101000a900460ff161515151581525050905060008160400151905081606001518015611888575060008260800151115b156118d3576118d06118c18360a001516118b38560800151866000015161178590919063ffffffff16565b61175990919063ffffffff16565b8261176f90919063ffffffff16565b90505b80855114611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d90613435565b60405180910390fd5b6000806000875167ffffffffffffffff811115611936576119356122a4565b5b6040519080825280602002602001820160405280156119645781602001602082028036833780820191505090505b50905060005b8851811015611b87578a6002811115611986576119856127dc565b5b606e60008b848151811061199d5761199c612a17565b5b6020026020010151815260200190815260200160002060000160009054906101000a900460ff1660028111156119d6576119d56127dc565b5b14611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d906134a1565b60405180910390fd5b611a59606e60008b8481518110611a3057611a2f612a17565b5b60200260200101518152602001908152602001600020600201548461176f90919063ffffffff16565b9250611a9e606e60008b8481518110611a7557611a74612a17565b5b60200260200101518152602001908152602001600020600301548561176f90919063ffffffff16565b93508560c00151611b2457611ae382606e60008c8581518110611ac457611ac3612a17565b5b6020026020010151815260200190815260200160002060010154611d91565b15611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a9061350d565b60405180910390fd5b5b606e60008a8381518110611b3b57611b3a612a17565b5b6020026020010151815260200190815260200160002060010154828281518110611b6857611b67612a17565b5b6020026020010181815250508080611b7f90613315565b91505061196a565b5081611b9d89518561178590919063ffffffff16565b965096505050505050935093915050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600060019054906101000a900460ff1680611cbe575060008054906101000a900460ff16155b611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490613071565b60405180910390fd5b60008060019054906101000a900460ff161590508015611d4d576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611d55611df0565b611d5d611ec9565b611d6985858585611fb2565b8015611d8a5760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000808351905060005b81811015611de35783858281518110611db757611db6612a17565b5b60200260200101511415611dd057600192505050611dea565b8080611ddb90613315565b915050611d9b565b5060009150505b92915050565b600060019054906101000a900460ff1680611e16575060008054906101000a900460ff16155b611e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4c90613071565b60405180910390fd5b60008060019054906101000a900460ff161590508015611ea5576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015611ec65760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680611eef575060008054906101000a900460ff16155b611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2590613071565b60405180910390fd5b60008060019054906101000a900460ff161590508015611f7e576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611f8e611f8961179b565b611bae565b8015611faf5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680611fd8575060008054906101000a900460ff16155b612017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200e90613071565b60405180910390fd5b60008060019054906101000a900460ff161590508015612067576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b84606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081606a8190555080156121525760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000604051905090565b600080fd5b600080fd5b6003811061217a57600080fd5b50565b60008135905061218c8161216d565b92915050565b6000819050919050565b6121a581612192565b81146121b057600080fd5b50565b6000813590506121c28161219c565b92915050565b600080604083850312156121df576121de612163565b5b60006121ed8582860161217d565b92505060206121fe858286016121b3565b9150509250929050565b61221181612192565b82525050565b600060208201905061222c6000830184612208565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061225d82612232565b9050919050565b61226d81612252565b82525050565b60006020820190506122886000830184612264565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122dc82612293565b810181811067ffffffffffffffff821117156122fb576122fa6122a4565b5b80604052505050565b600061230e612159565b905061231a82826122d3565b919050565b600067ffffffffffffffff82111561233a576123396122a4565b5b602082029050602081019050919050565b600080fd5b600061236361235e8461231f565b612304565b905080838252602082019050602084028301858111156123865761238561234b565b5b835b818110156123af578061239b88826121b3565b845260208401935050602081019050612388565b5050509392505050565b600082601f8301126123ce576123cd61228e565b5b81356123de848260208601612350565b91505092915050565b600080600060608486031215612400576123ff612163565b5b600084013567ffffffffffffffff81111561241e5761241d612168565b5b61242a868287016123b9565b935050602061243b8682870161217d565b925050604061244c8682870161217d565b9150509250925092565b60006020828403121561246c5761246b612163565b5b600061247a848285016121b3565b91505092915050565b60006060820190506124986000830186612208565b6124a56020830185612208565b6124b26040830184612208565b949350505050565b600080fd5b600067ffffffffffffffff8211156124da576124d96122a4565b5b6124e382612293565b9050602081019050919050565b82818337600083830152505050565b600061251261250d846124bf565b612304565b90508281526020810184848401111561252e5761252d6124ba565b5b6125398482856124f0565b509392505050565b600082601f8301126125565761255561228e565b5b81356125668482602086016124ff565b91505092915050565b6000806000806080858703121561258957612588612163565b5b6000612597878288016121b3565b94505060206125a8878288016121b3565b93505060406125b9878288016121b3565b925050606085013567ffffffffffffffff8111156125da576125d9612168565b5b6125e687828801612541565b91505092959194509250565b60008115159050919050565b612607816125f2565b811461261257600080fd5b50565b600081359050612624816125fe565b92915050565b60008060008060008060c0878903121561264757612646612163565b5b600061265589828a0161217d565b965050602061266689828a016121b3565b955050604061267789828a01612615565b945050606061268889828a016121b3565b935050608061269989828a016121b3565b92505060a06126aa89828a01612615565b9150509295509295509295565b6000602082840312156126cd576126cc612163565b5b60006126db8482850161217d565b91505092915050565b6000819050919050565b60006127096127046126ff84612232565b6126e4565b612232565b9050919050565b600061271b826126ee565b9050919050565b600061272d82612710565b9050919050565b61273d81612722565b82525050565b60006020820190506127586000830184612734565b92915050565b612767816125f2565b82525050565b600060e082019050612782600083018a612208565b61278f6020830189612208565b61279c6040830188612208565b6127a9606083018761275e565b6127b66080830186612208565b6127c360a0830185612208565b6127d060c083018461275e565b98975050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061281c5761281b6127dc565b5b50565b600081905061282d8261280b565b919050565b600061283d8261281f565b9050919050565b61284d81612832565b82525050565b60006080820190506128686000830187612844565b6128756020830186612208565b6128826040830185612208565b61288f6060830184612208565b95945050505050565b600080600080608085870312156128b2576128b1612163565b5b60006128c08782880161217d565b94505060206128d1878288016121b3565b93505060406128e2878288016121b3565b925050606085013567ffffffffffffffff81111561290357612902612168565b5b61290f87828801612541565b91505092959194509250565b61292481612252565b811461292f57600080fd5b50565b6000813590506129418161291b565b92915050565b60006020828403121561295d5761295c612163565b5b600061296b84828501612932565b91505092915050565b600061297f82612710565b9050919050565b61298f81612974565b82525050565b60006020820190506129aa6000830184612986565b92915050565b600080600080608085870312156129ca576129c9612163565b5b60006129d887828801612932565b94505060206129e987828801612932565b93505060406129fa87828801612932565b9250506060612a0b878288016121b3565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b7f6c6576656c207072696365206572726f72000000000000000000000000000000600082015250565b6000612a8d601183612a46565b9150612a9882612a57565b602082019050919050565b60006020820190508181036000830152612abc81612a80565b9050919050565b6000606082019050612ad86000830186612264565b612ae56020830185612264565b612af26040830184612208565b949350505050565b600081519050612b09816125fe565b92915050565b600060208284031215612b2557612b24612163565b5b6000612b3384828501612afa565b91505092915050565b6000604082019050612b516000830185612264565b612b5e6020830184612208565b9392505050565b600081519050612b748161219c565b92915050565b600060208284031215612b9057612b8f612163565b5b6000612b9e84828501612b65565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612be182612192565b9150612bec83612192565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c2157612c20612ba7565b5b828201905092915050565b7f6d656c74206c6576656c206572726f7200000000000000000000000000000000600082015250565b6000612c62601083612a46565b9150612c6d82612c2c565b602082019050919050565b60006020820190508181036000830152612c9181612c55565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ccd81612192565b82525050565b6000612cdf8383612cc4565b60208301905092915050565b6000602082019050919050565b6000612d0382612c98565b612d0d8185612ca3565b9350612d1883612cb4565b8060005b83811015612d49578151612d308882612cd3565b9750612d3b83612ceb565b925050600181019050612d1c565b5085935050505092915050565b6000604082019050612d6b6000830185612264565b8181036020830152612d7d8184612cf8565b90509392505050565b7f6e6f7420796f757220746f6b656e730000000000000000000000000000000000600082015250565b6000612dbc600f83612a46565b9150612dc782612d86565b602082019050919050565b60006020820190508181036000830152612deb81612daf565b9050919050565b7f746f6b656e206572726f72000000000000000000000000000000000000000000600082015250565b6000612e28600b83612a46565b9150612e3382612df2565b602082019050919050565b60006020820190508181036000830152612e5781612e1b565b9050919050565b60006020820190508181036000830152612e788184612cf8565b905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eb6602083612a46565b9150612ec182612e80565b602082019050919050565b60006020820190508181036000830152612ee581612ea9565b9050919050565b600081519050919050565b60005b83811015612f15578082015181840152602081019050612efa565b83811115612f24576000848401525b50505050565b6000612f3582612eec565b612f3f8185612a46565b9350612f4f818560208601612ef7565b612f5881612293565b840191505092915050565b6000604082019050612f786000830185612208565b8181036020830152612f8a8184612f2a565b90509392505050565b7f61646472657373206572726f7200000000000000000000000000000000000000600082015250565b6000612fc9600d83612a46565b9150612fd482612f93565b602082019050919050565b60006020820190508181036000830152612ff881612fbc565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600061305b602e83612a46565b915061306682612fff565b604082019050919050565b6000602082019050818103600083015261308a8161304e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130ed602683612a46565b91506130f882613091565b604082019050919050565b6000602082019050818103600083015261311c816130e0565b9050919050565b7f6e6f206361746500000000000000000000000000000000000000000000000000600082015250565b6000613159600783612a46565b915061316482613123565b602082019050919050565b600060208201905081810360008301526131888161314c565b9050919050565b600061319a82612192565b91506131a583612192565b9250828210156131b8576131b7612ba7565b5b828203905092915050565b60006131ce82612232565b9050919050565b60008160601b9050919050565b60006131ed826131d5565b9050919050565b60006131ff826131e2565b9050919050565b613217613212826131c3565b6131f4565b82525050565b6000613228826131e2565b9050919050565b61324061323b82612252565b61321d565b82525050565b6000819050919050565b61326161325c82612192565b613246565b82525050565b60006132738287613206565b601482019150613283828661322f565b6014820191506132938285613250565b6020820191506132a38284613250565b60208201915081905095945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132ef82612192565b91506132fa83612192565b92508261330a576133096132b5565b5b828206905092915050565b600061332082612192565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561335357613352612ba7565b5b600182019050919050565b600061336982612192565b915061337483612192565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133ad576133ac612ba7565b5b828202905092915050565b60006133c382612192565b91506133ce83612192565b9250826133de576133dd6132b5565b5b828204905092915050565b7f746f6b656e20616d6f756e74206572726f720000000000000000000000000000600082015250565b600061341f601283612a46565b915061342a826133e9565b602082019050919050565b6000602082019050818103600083015261344e81613412565b9050919050565b7f6572726f72206c6576656c000000000000000000000000000000000000000000600082015250565b600061348b600b83612a46565b915061349682613455565b602082019050919050565b600060208201905081810360008301526134ba8161347e565b9050919050565b7f6d75737420626520756e69717565206361746500000000000000000000000000600082015250565b60006134f7601383612a46565b9150613502826134c1565b602082019050919050565b60006020820190508181036000830152613526816134ea565b905091905056fea26469706673582212208fce0189eb2c03d4b54389f18906963afd4250c003c98e09965463c7ca5ef6b164736f6c634300080a0033