ETH Price: $2,548.26 (-2.03%)

Contract

0xB86AE6f528ECF6563BA7323264999B954158CD72
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw Stake163537862023-01-07 8:42:47655 days ago1673080967IN
0xB86AE6f5...54158CD72
0 ETH0.006370212.99329192
Withdraw Stake161946402022-12-16 3:41:59678 days ago1671162119IN
0xB86AE6f5...54158CD72
0 ETH0.0038131317.97240741
Withdraw Stake161946332022-12-16 3:40:35678 days ago1671162035IN
0xB86AE6f5...54158CD72
0 ETH0.0038063317.16372279
Withdraw Stake161946282022-12-16 3:39:35678 days ago1671161975IN
0xB86AE6f5...54158CD72
0 ETH0.0037346416.60476321
Withdraw Stake161946222022-12-16 3:38:23678 days ago1671161903IN
0xB86AE6f5...54158CD72
0 ETH0.00378316.81978902
Withdraw Stake161946182022-12-16 3:37:35678 days ago1671161855IN
0xB86AE6f5...54158CD72
0 ETH0.0038572217.3932284
Withdraw Stake158724362022-11-01 3:12:35723 days ago1667272355IN
0xB86AE6f5...54158CD72
0 ETH0.0032787814.3
Stake158057292022-10-22 19:26:35732 days ago1666466795IN
0xB86AE6f5...54158CD72
0 ETH0.0018196216.6321677
Stake157657362022-10-17 5:26:35738 days ago1665984395IN
0xB86AE6f5...54158CD72
0 ETH0.0013673513.07176115
Withdraw Stake157655622022-10-17 4:51:11738 days ago1665982271IN
0xB86AE6f5...54158CD72
0 ETH0.0027860311
Withdraw Stake157327692022-10-12 14:57:35742 days ago1665586655IN
0xB86AE6f5...54158CD72
0 ETH0.0102354223.2239007
Stake157306262022-10-12 7:45:35742 days ago1665560735IN
0xB86AE6f5...54158CD72
0 ETH0.0015584416.88383848
Withdraw Stake157304582022-10-12 7:11:59742 days ago1665558719IN
0xB86AE6f5...54158CD72
0 ETH0.004513220.20478917
Stake156936432022-10-07 3:49:35748 days ago1665114575IN
0xB86AE6f5...54158CD72
0 ETH0.000461525
Withdraw Stake156935392022-10-07 3:28:47748 days ago1665113327IN
0xB86AE6f5...54158CD72
0 ETH0.0026095711
Stake156883402022-10-06 10:02:59748 days ago1665050579IN
0xB86AE6f5...54158CD72
0 ETH0.000748678.11101067
Stake156740682022-10-04 10:06:23750 days ago1664877983IN
0xB86AE6f5...54158CD72
0 ETH0.001846067
Withdraw Stake156732492022-10-04 7:21:23750 days ago1664868083IN
0xB86AE6f5...54158CD72
0 ETH0.003730028.44597212
Stake156678912022-10-03 13:21:35751 days ago1664803295IN
0xB86AE6f5...54158CD72
0 ETH0.0013291214.39944886
Withdraw Stake156674752022-10-03 11:58:11751 days ago1664798291IN
0xB86AE6f5...54158CD72
0 ETH0.0016057
Stake156673142022-10-03 11:25:47751 days ago1664796347IN
0xB86AE6f5...54158CD72
0 ETH0.000612527
Stake156672862022-10-03 11:20:11751 days ago1664796011IN
0xB86AE6f5...54158CD72
0 ETH0.000877999.5132711
Withdraw Stake156672282022-10-03 11:08:35751 days ago1664795315IN
0xB86AE6f5...54158CD72
0 ETH0.002309629.85751496
Withdraw Stake156665622022-10-03 8:54:23751 days ago1664787263IN
0xB86AE6f5...54158CD72
0 ETH0.001925358.68076922
Stake156591552022-10-02 8:06:11752 days ago1664697971IN
0xB86AE6f5...54158CD72
0 ETH0.001342675.09120348
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MonsterBattle

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-18
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: contracts/MonsterHole.sol


pragma solidity ^0.8.0;





interface ICheck {

    function checkTorch(address _address, uint256 _amount, string memory signedMessage) external view returns (bool);

    function checkEth(address _address, uint256 _amount, string memory signedMessage) external view returns (bool);

    function checkStakeMonster(address _address,uint256[] memory _tokenId,string memory signedMessage) external view returns (bool);

    function checkGetProp(address _address,uint256[] memory _tokenId,uint256[] memory _amounts,string memory signedMessage) external view returns (bool);
}

contract MonsterBattle is Ownable{
    IERC721 public Monster;
    IERC1155 public Storage;
    IERC20 public Torch;
    ICheck private Check;

    bool public _isActiveRecharge = true;
    bool public _isActiveWithdrawal = true;
    bool public _isActiveStake = true;
    bool public _isActiveExtract = true;
    bool public _isActiveWithdrawalETH = true;
    bool public _isActiveReceive = true; 

    uint256 maxWithdrawETH = 0.2 ether;
    uint256 maxWithdrawTorch = 100000000 ether;
    uint256 withdrawTimes = 3600;
    

    address public receiver = 0xDAC226421Fe37a1B00A469Cf03Ba5629ef5a3db6;
    address public HoleAddress = 0xB63B32CaD8510572210987f489eD6F7547c0b0b1;

    mapping(address => uint256) private Signature;
    mapping(address => uint256) private SignatureETH;
    mapping(address => uint256[]) public StakingNumber; 

    event rechargeTorchEvent(address indexed from,uint256 indexed _amount,uint256 indexed _timestamp); 
    event withdrawTorchEvent(address indexed to,uint256 indexed _amount,uint256 indexed _timestamp); 
    event withdrawETHEvent(address indexed to,uint256 indexed _amount,uint256 indexed _timestamp); 
    event Synthesis(address indexed from,uint256 indexed _tokenId, uint256 indexed  _amount);

    constructor(address _monster, address _token, address _check,address _storage) {
        Monster = IERC721(_monster);
        Torch = IERC20(_token);
        Check = ICheck(_check);
        Storage = IERC1155(_storage);
    }

    function rechargeTorch(uint256 _amount) public {
        require(
            _isActiveRecharge,
            "Recharge must be active"
        );

        require(
            _amount > 0,
            "Recharge torch must be greater than 0"
        );

        Torch.transferFrom(msg.sender, address(this), _amount);

        emit rechargeTorchEvent(msg.sender, _amount, block.timestamp);
    }
    

    function withdrawTorch(uint256 _amount, string memory _signature) public {
        require(
            _isActiveWithdrawal,
            "Withdraw must be active"
        );

        require(
            _amount > 0,
            "Withdraw torch must be greater than 0"
        );

        require(
            _amount <= maxWithdrawTorch,
            "Withdraw torch must  be less than max withdraw torch at 1 time"
        );

        require(
            Signature[msg.sender] + withdrawTimes <= block.timestamp,
            "Can only withdraw 1 times at 1 hour"
        );

        require(
            Check.checkTorch(msg.sender, _amount, _signature) == true,
            "Audit error"
        );

        require(
            Torch.balanceOf(address(this)) >= _amount,
            "Torch credit is running low"
        );

        Signature[msg.sender] = block.timestamp;

        Torch.transfer( msg.sender, _amount);

        emit withdrawTorchEvent(msg.sender, _amount, block.timestamp);
    }

    function withdrawETH(uint256 _amount, string memory _signature) public {
        require(
            _isActiveWithdrawalETH,
            "Withdraw must be active"
        );

         require(
            _amount > 0,
            "Withdraw torch must be greater than 0"
        );

        require(
            _amount <= maxWithdrawETH,
            "Withdraw ETH must be less than max withdraw ETH at 1 time"
        );

        require(
            SignatureETH[msg.sender] + withdrawTimes <= block.timestamp,
            "Can only withdraw 1 times at 1 hour"
        );

        require(
            Check.checkEth(msg.sender, _amount, _signature) == true,
            "Audit error"
        );

        require(
            address(this).balance >= _amount,
            "ETH credit is running low"
        );

        SignatureETH[msg.sender] = block.timestamp;

        payable(msg.sender).transfer(_amount);

        emit withdrawETHEvent(msg.sender, _amount, block.timestamp);
    }

    function stake(uint256[] memory _tokenId) public {
        require(
            _isActiveStake,
            "Stake must be active"
        );

        uint256  tokenIdLength  = _tokenId.length;
        require(tokenIdLength > 0, "Tokens must be greater than 0");

        for(uint i = 0;i < tokenIdLength;i++){
            require(Monster.ownerOf(_tokenId[i]) ==  msg.sender, "Insufficient balance");

            Monster.transferFrom(msg.sender,address(this),_tokenId[i]);
            StakingNumber[msg.sender].push(_tokenId[i]);
        }
    

    }

   
    function withdrawStake(uint256[] memory _tokenId, string memory _signature) public {
        require(
            _isActiveExtract,
            "Withdraw staking must be active"
        );

        require(
            Check.checkStakeMonster(msg.sender, _tokenId, _signature) == true,
            "Audit error"
        );

 
        uint256  tokenIdLength  = _tokenId.length;
    
        for(uint i = 0;i < tokenIdLength;i++){
            require(getAddressStakingNumberbool(_tokenId[i]), "No collateral found");

            Monster.transferFrom(address(this), msg.sender, _tokenId[i]);

            (bool respond, uint256 _num)  = getAddressStakingNumberkey(_tokenId[i]);
            if(respond == true)
                deleteAddressStakingNumber(_num);
        }

    }

    
    function receiveStorage(uint256[] memory _tokenIds,uint256[] memory _amounts,string memory _signature) public{
        require(_isActiveReceive, "Receive storage must be active");

        require(
            Check.checkGetProp(msg.sender, _tokenIds, _amounts, _signature) == true,
            "Audit error"
        );   

        Storage.safeBatchTransferFrom(HoleAddress, msg.sender, _tokenIds, _amounts, "0x00");

        uint256  tokenIdLength  = _tokenIds.length;

        for(uint i = 0;i < tokenIdLength;i++){
            emit Synthesis(HoleAddress,_tokenIds[i], _amounts[i]);
        }

    }

    function getAddressStakingNumberlength(address _addr) public view returns(uint256){
        return StakingNumber[_addr].length;
    }

    function getAddressStakingNumberbool(uint256 _tokenId) public view returns(bool){
        uint256 popNum = getAddressStakingNumberlength(msg.sender);
        for(uint i = 0; i < popNum; i++){
            if(StakingNumber[msg.sender][i] == _tokenId){
                return true;
            }
        }
        return false;
    }

    function deleteAddressStakingNumber(uint256 _num) private {
        uint256 popNum = getAddressStakingNumberlength(msg.sender) -1;
        StakingNumber[msg.sender][_num] = StakingNumber[msg.sender][popNum];
        StakingNumber[msg.sender].pop();
    }

    function getAddressStakingNumberkey(uint256 _tokenId) private view returns(bool,uint){
        uint256 popNum = getAddressStakingNumberlength(msg.sender);
        for(uint i = 0; i < popNum; i++){
            if(StakingNumber[msg.sender][i] == _tokenId){
                return (true,i);
            }
        }
        return (false,0);
    }

    function getStakeTokenIds(address _addr) public view returns(uint256[] memory){
        return StakingNumber[_addr];
    }

    function setActiveRecharge() public onlyOwner {
        _isActiveRecharge = !_isActiveRecharge;
    }

    function setActiveWithdrawal() public onlyOwner {
        _isActiveWithdrawal = !_isActiveWithdrawal;
    }

    function setActiveStake() public onlyOwner {
        _isActiveStake = !_isActiveStake;
    }

    function setActiveExtract() public onlyOwner {
        _isActiveExtract = !_isActiveExtract;
    }

    function setActiveWithdrawalETH() public onlyOwner {
        _isActiveWithdrawalETH = !_isActiveWithdrawalETH;
    }

    function setActiveReceive() public onlyOwner {
        _isActiveReceive = !_isActiveReceive;
    }

    function setReceiver(address _addr) public onlyOwner{
        receiver = _addr;
    }

    function setHoleAddress(address _addr) public onlyOwner{
        HoleAddress = _addr;
    }

    function setTorchContract(address _addr) public onlyOwner{  
        Torch = IERC20(_addr);
    }

    function setCheckContract(address _addr) public onlyOwner{
        Check = ICheck(_addr);
    }

    function setMonsterContract(address _addr) public onlyOwner{
         Monster = IERC721(_addr);
    }

    function setStorageContract(address _addr) public onlyOwner{
        Storage = IERC1155(_addr);
    }

    function setMaxWithdrawETH(uint256 _amount) public onlyOwner{
        maxWithdrawETH = _amount;
    }

    function setMaxWithdrawTorch(uint256 _amount) public onlyOwner{
        maxWithdrawTorch = _amount;
    }

    function setWithdrawTimes(uint256 _timestamp) public onlyOwner{
        withdrawTimes = _timestamp;
    }

    function withdrawTorch(uint256 _amount) public onlyOwner {
        Torch.transfer(receiver, _amount);
    }

    function withdrawEth() public onlyOwner {
        uint256 amount = address(this).balance;
        payable(receiver).transfer(amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_monster","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_check","type":"address"},{"internalType":"address","name":"_storage","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Synthesis","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"rechargeTorchEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"withdrawETHEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"withdrawTorchEvent","type":"event"},{"inputs":[],"name":"HoleAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Monster","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"StakingNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Storage","outputs":[{"internalType":"contract IERC1155","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Torch","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isActiveExtract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isActiveReceive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isActiveRecharge","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isActiveStake","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isActiveWithdrawal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isActiveWithdrawalETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getAddressStakingNumberbool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getAddressStakingNumberlength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getStakeTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"string","name":"_signature","type":"string"}],"name":"receiveStorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"receiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rechargeTorch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setActiveExtract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setActiveReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setActiveRecharge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setActiveStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setActiveWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setActiveWithdrawalETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setCheckContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setHoleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxWithdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxWithdrawTorch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setMonsterContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setStorageContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setTorchContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"setWithdrawTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_signature","type":"string"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"},{"internalType":"string","name":"_signature","type":"string"}],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTorch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_signature","type":"string"}],"name":"withdrawTorch","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600460146101000a81548160ff0219169083151502179055506001600460156101000a81548160ff0219169083151502179055506001600460166101000a81548160ff0219169083151502179055506001600460176101000a81548160ff0219169083151502179055506001600460186101000a81548160ff0219169083151502179055506001600460196101000a81548160ff0219169083151502179055506702c68af0bb1400006005556a52b7d2dcc80cd2e4000000600655610e1060075573dac226421fe37a1b00a469cf03ba5629ef5a3db6600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b63b32cad8510572210987f489ed6f7547c0b0b1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200017e57600080fd5b5060405162003d9038038062003d908339818101604052810190620001a49190620003b5565b620001c4620001b8620002d260201b60201c565b620002da60201b60201c565b83600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050506200047a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050620003af8162000460565b92915050565b60008060008060808587031215620003d257620003d16200045b565b5b6000620003e2878288016200039e565b9450506020620003f5878288016200039e565b935050604062000408878288016200039e565b92505060606200041b878288016200039e565b91505092959194509250565b600062000434826200043b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b6200046b8162000427565b81146200047757600080fd5b50565b613906806200048a6000396000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c80639bc7258811610146578063cc113622116100c3578063ef60a9bf11610087578063ef60a9bf146105ea578063f2a7f35814610608578063f2fde38b14610638578063f3c8268514610654578063f71bc58014610672578063f7260d3e1461068e57610253565b8063cc1136221461055a578063d5f4037614610576578063dc38b0a214610592578063e72d0bd0146105ae578063ee3711be146105cc57610253565b8063b4797c8f1161010a578063b4797c8f146104dc578063b4e7fee9146104fa578063b840bada14610516578063bfa16b9b14610534578063c62b600c1461053e57610253565b80639bc7258814610486578063a0ef91df14610490578063a3dfd8f61461049a578063a95508ef146104b6578063b2c084d6146104d257610253565b80634db7d3af116101d4578063718da7ee11610198578063718da7ee146103f85780637aa4e8fa14610414578063808d83eb1461043057806389d712711461044c5780638da5cb5b1461046857610253565b80634db7d3af146103785780636153d0471461039457806368fba652146103b25780636add9228146103d0578063715018a6146103ee57610253565b806334d5e8041161021b57806334d5e804146102e8578063363667d1146103185780633824392e1461032257806342fa82481461033e5780634cea7a901461034857610253565b80630fbf0a93146102585780631026318d1461027457806314089a881461029057806318d21b701461029a5780631995fc7e146102ca575b600080fd5b610272600480360381019061026d9190612643565b6106ac565b005b61028e600480360381019061028991906127d8565b6109c4565b005b6102986109d6565b005b6102b460048036038101906102af9190612603565b610a0a565b6040516102c191906130cb565b60405180910390f35b6102d2610a3b565b6040516102df9190612e1f565b60405180910390f35b61030260048036038101906102fd91906127d8565b610a4e565b60405161030f9190612e1f565b60405180910390f35b610320610af4565b005b61033c600480360381019061033791906125a9565b610b28565b005b610346610b74565b005b610362600480360381019061035d91906125a9565b610ba8565b60405161036f9190612dfd565b60405180910390f35b610392600480360381019061038d91906125a9565b610c3f565b005b61039c610c8b565b6040516103a99190612e55565b60405180910390f35b6103ba610cb1565b6040516103c79190612e1f565b60405180910390f35b6103d8610cc4565b6040516103e59190612e1f565b60405180910390f35b6103f6610cd7565b005b610412600480360381019061040d91906125a9565b610ceb565b005b61042e600480360381019061042991906127d8565b610d37565b005b61044a600480360381019061044591906125a9565b610e14565b005b610466600480360381019061046191906127d8565b610e60565b005b610470610e72565b60405161047d9190612c3f565b60405180910390f35b61048e610e9b565b005b610498610ecf565b005b6104b460048036038101906104af9190612832565b610f48565b005b6104d060048036038101906104cb919061268c565b6113cd565b005b6104da61168e565b005b6104e46116c2565b6040516104f19190612e1f565b60405180910390f35b610514600480360381019061050f91906127d8565b6116d5565b005b61051e611861565b60405161052b9190612e1f565b60405180910390f35b61053c611874565b005b610558600480360381019061055391906125a9565b6118a8565b005b610574600480360381019061056f9190612832565b6118f4565b005b610590600480360381019061058b9190612733565b611c66565b005b6105ac60048036038101906105a791906125a9565b611f24565b005b6105b6611f70565b6040516105c39190612e70565b60405180910390f35b6105d4611f96565b6040516105e19190612e3a565b60405180910390f35b6105f2611fbc565b6040516105ff9190612c3f565b60405180910390f35b610622600480360381019061061d91906125a9565b611fe2565b60405161062f91906130cb565b60405180910390f35b610652600480360381019061064d91906125a9565b61202e565b005b61065c6120b2565b6040516106699190612e1f565b60405180910390f35b61068c600480360381019061068791906127d8565b6120c5565b005b6106966120d7565b6040516106a39190612c3f565b60405180910390f35b600460169054906101000a900460ff166106fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f290612f4b565b60405180910390fd5b60008151905060008111610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b90612f6b565b60405180910390fd5b60005b818110156109bf573373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8584815181106107b7576107b6613414565b5b60200260200101516040518263ffffffff1660e01b81526004016107db91906130cb565b60206040518083038186803b1580156107f357600080fd5b505afa158015610807573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082b91906125d6565b73ffffffffffffffffffffffffffffffffffffffff1614610881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087890612f0b565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33308685815181106108d4576108d3613414565b5b60200260200101516040518463ffffffff1660e01b81526004016108fa93929190612cc0565b600060405180830381600087803b15801561091457600080fd5b505af1158015610928573d6000803e3d6000fd5b50505050600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083828151811061097e5761097d613414565b5b6020026020010151908060018154018082558091505060019003906000526020600020016000909190919091505580806109b79061336d565b915050610747565b505050565b6109cc6120fd565b8060058190555050565b6109de6120fd565b600460189054906101000a900460ff1615600460186101000a81548160ff021916908315150217905550565b600c6020528160005260406000208181548110610a2657600080fd5b90600052602060002001600091509150505481565b600460179054906101000a900460ff1681565b600080610a5a33611fe2565b905060005b81811015610ae85783600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610ab957610ab8613414565b5b90600052602060002001541415610ad557600192505050610aef565b8080610ae09061336d565b915050610a5f565b5060009150505b919050565b610afc6120fd565b600460199054906101000a900460ff1615600460196101000a81548160ff021916908315150217905550565b610b306120fd565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b7c6120fd565b600460149054906101000a900460ff1615600460146101000a81548160ff021916908315150217905550565b6060600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610c3357602002820191906000526020600020905b815481526020019060010190808311610c1f575b50505050509050919050565b610c476120fd565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460149054906101000a900460ff1681565b600460199054906101000a900460ff1681565b610cdf6120fd565b610ce9600061217b565b565b610cf36120fd565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d3f6120fd565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610dbe929190612d96565b602060405180830381600087803b158015610dd857600080fd5b505af1158015610dec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1091906127ab565b5050565b610e1c6120fd565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e686120fd565b8060068190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ea36120fd565b600460159054906101000a900460ff1615600460156101000a81548160ff021916908315150217905550565b610ed76120fd565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f44573d6000803e3d6000fd5b5050565b600460159054906101000a900460ff16610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e906130ab565b60405180910390fd5b60008211610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd19061300b565b60405180910390fd5b60065482111561101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690612eab565b60405180910390fd5b42600754600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106d91906131ce565b11156110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590612eeb565b60405180910390fd5b60011515600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ddc729053385856040518463ffffffff1660e01b815260040161111193929190612dbf565b60206040518083038186803b15801561112957600080fd5b505afa15801561113d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116191906127ab565b1515146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90612fcb565b60405180910390fd5b81600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111ff9190612c3f565b60206040518083038186803b15801561121757600080fd5b505afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124f9190612805565b1015611290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112879061308b565b60405180910390fd5b42600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401611331929190612d96565b602060405180830381600087803b15801561134b57600080fd5b505af115801561135f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138391906127ab565b5042823373ffffffffffffffffffffffffffffffffffffffff167f4ea6f32d5c8d02512066570e7509c23d7bb4a94af54603a28e76fc7afb2065a060405160405180910390a45050565b600460199054906101000a900460ff1661141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390612feb565b60405180910390fd5b60011515600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663888bea6a338686866040518563ffffffff1660e01b81526004016114819493929190612cf7565b60206040518083038186803b15801561149957600080fd5b505afa1580156114ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d191906127ab565b151514611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90612fcb565b60405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632eb2c2d6600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163386866040518563ffffffff1660e01b81526004016115969493929190612c5a565b600060405180830381600087803b1580156115b057600080fd5b505af11580156115c4573d6000803e3d6000fd5b5050505060008351905060005b81811015611687578381815181106115ec576115eb613414565b5b602002602001015185828151811061160757611606613414565b5b6020026020010151600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffa16e5fd1b0805acb958820d1abb56f5dbf38abaf5a87eea104a9ab0aaf9810660405160405180910390a4808061167f9061336d565b9150506115d1565b5050505050565b6116966120fd565b600460179054906101000a900460ff1615600460176101000a81548160ff021916908315150217905550565b600460159054906101000a900460ff1681565b600460149054906101000a900460ff16611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b9061304b565b60405180910390fd5b60008111611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e9061302b565b60405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016117c693929190612cc0565b602060405180830381600087803b1580156117e057600080fd5b505af11580156117f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181891906127ab565b5042813373ffffffffffffffffffffffffffffffffffffffff167f7c68788ad904b1eed6981abcc1b498a9fe164ce941c17c6b8ce3d4d9eaa43a1f60405160405180910390a450565b600460169054906101000a900460ff1681565b61187c6120fd565b600460169054906101000a900460ff1615600460166101000a81548160ff021916908315150217905550565b6118b06120fd565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460189054906101000a900460ff16611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a906130ab565b60405180910390fd5b60008211611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d9061300b565b60405180910390fd5b6005548211156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290612f2b565b60405180910390fd5b42600754600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a1991906131ce565b1115611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5190612eeb565b60405180910390fd5b60011515600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663de5a0caf3385856040518463ffffffff1660e01b8152600401611abd93929190612dbf565b60206040518083038186803b158015611ad557600080fd5b505afa158015611ae9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0d91906127ab565b151514611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690612fcb565b60405180910390fd5b81471015611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990612e8b565b60405180910390fd5b42600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611c1c573d6000803e3d6000fd5b5042823373ffffffffffffffffffffffffffffffffffffffff167f5418acf4a19907c0b33ee8135a7792f1d0df6293095647e9aa9bd165a89f73b960405160405180910390a45050565b600460179054906101000a900460ff16611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac9061306b565b60405180910390fd5b60011515600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166358a483793385856040518463ffffffff1660e01b8152600401611d1893929190612d51565b60206040518083038186803b158015611d3057600080fd5b505afa158015611d44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d6891906127ab565b151514611daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da190612fcb565b60405180910390fd5b60008251905060005b81811015611f1e57611dde848281518110611dd157611dd0613414565b5b6020026020010151610a4e565b611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490612f8b565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3033878581518110611e7057611e6f613414565b5b60200260200101516040518463ffffffff1660e01b8152600401611e9693929190612cc0565b600060405180830381600087803b158015611eb057600080fd5b505af1158015611ec4573d6000803e3d6000fd5b50505050600080611eee868481518110611ee157611ee0613414565b5b602002602001015161223f565b91509150600115158215151415611f0957611f08816122ed565b5b50508080611f169061336d565b915050611db3565b50505050565b611f2c6120fd565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b6120366120fd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90612ecb565b60405180910390fd5b6120af8161217b565b50565b600460189054906101000a900460ff1681565b6120cd6120fd565b8060078190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61210561242a565b73ffffffffffffffffffffffffffffffffffffffff16612123610e72565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090612fab565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600061224d33611fe2565b905060005b818110156122de5784600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106122ac576122ab613414565b5b906000526020600020015414156122cb576001819350935050506122e8565b80806122d69061336d565b915050612252565b5060008092509250505b915091565b600060016122fa33611fe2565b6123049190613224565b9050600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020818154811061235757612356613414565b5b9060005260206000200154600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106123b3576123b2613414565b5b9060005260206000200181905550600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806124105761240f6133e5565b5b600190038181906000526020600020016000905590555050565b600033905090565b60006124456124408461310b565b6130e6565b9050808382526020820190508285602086028201111561246857612467613477565b5b60005b85811015612498578161247e888261257f565b84526020840193506020830192505060018101905061246b565b5050509392505050565b60006124b56124b084613137565b6130e6565b9050828152602081018484840111156124d1576124d061347c565b5b6124dc8482856132fa565b509392505050565b6000813590506124f38161388b565b92915050565b6000815190506125088161388b565b92915050565b600082601f83011261252357612522613472565b5b8135612533848260208601612432565b91505092915050565b60008151905061254b816138a2565b92915050565b600082601f83011261256657612565613472565b5b81356125768482602086016124a2565b91505092915050565b60008135905061258e816138b9565b92915050565b6000815190506125a3816138b9565b92915050565b6000602082840312156125bf576125be613486565b5b60006125cd848285016124e4565b91505092915050565b6000602082840312156125ec576125eb613486565b5b60006125fa848285016124f9565b91505092915050565b6000806040838503121561261a57612619613486565b5b6000612628858286016124e4565b92505060206126398582860161257f565b9150509250929050565b60006020828403121561265957612658613486565b5b600082013567ffffffffffffffff81111561267757612676613481565b5b6126838482850161250e565b91505092915050565b6000806000606084860312156126a5576126a4613486565b5b600084013567ffffffffffffffff8111156126c3576126c2613481565b5b6126cf8682870161250e565b935050602084013567ffffffffffffffff8111156126f0576126ef613481565b5b6126fc8682870161250e565b925050604084013567ffffffffffffffff81111561271d5761271c613481565b5b61272986828701612551565b9150509250925092565b6000806040838503121561274a57612749613486565b5b600083013567ffffffffffffffff81111561276857612767613481565b5b6127748582860161250e565b925050602083013567ffffffffffffffff81111561279557612794613481565b5b6127a185828601612551565b9150509250929050565b6000602082840312156127c1576127c0613486565b5b60006127cf8482850161253c565b91505092915050565b6000602082840312156127ee576127ed613486565b5b60006127fc8482850161257f565b91505092915050565b60006020828403121561281b5761281a613486565b5b600061282984828501612594565b91505092915050565b6000806040838503121561284957612848613486565b5b60006128578582860161257f565b925050602083013567ffffffffffffffff81111561287857612877613481565b5b61288485828601612551565b9150509250929050565b600061289a8383612c21565b60208301905092915050565b6128af81613258565b82525050565b60006128c082613178565b6128ca818561319b565b93506128d583613168565b8060005b838110156129065781516128ed888261288e565b97506128f88361318e565b9250506001810190506128d9565b5085935050505092915050565b61291c8161326a565b82525050565b61292b816132a0565b82525050565b61293a816132b2565b82525050565b612949816132c4565b82525050565b600061295a82613183565b61296481856131bd565b9350612974818560208601613309565b61297d8161348b565b840191505092915050565b60006129956019836131bd565b91506129a08261349c565b602082019050919050565b60006129b8603e836131bd565b91506129c3826134c5565b604082019050919050565b60006129db6026836131bd565b91506129e682613514565b604082019050919050565b60006129fe6004836131ac565b9150612a0982613563565b602082019050919050565b6000612a216023836131bd565b9150612a2c8261358c565b604082019050919050565b6000612a446014836131bd565b9150612a4f826135db565b602082019050919050565b6000612a676039836131bd565b9150612a7282613604565b604082019050919050565b6000612a8a6014836131bd565b9150612a9582613653565b602082019050919050565b6000612aad601d836131bd565b9150612ab88261367c565b602082019050919050565b6000612ad06013836131bd565b9150612adb826136a5565b602082019050919050565b6000612af36020836131bd565b9150612afe826136ce565b602082019050919050565b6000612b16600b836131bd565b9150612b21826136f7565b602082019050919050565b6000612b39601e836131bd565b9150612b4482613720565b602082019050919050565b6000612b5c6025836131bd565b9150612b6782613749565b604082019050919050565b6000612b7f6025836131bd565b9150612b8a82613798565b604082019050919050565b6000612ba26017836131bd565b9150612bad826137e7565b602082019050919050565b6000612bc5601f836131bd565b9150612bd082613810565b602082019050919050565b6000612be8601b836131bd565b9150612bf382613839565b602082019050919050565b6000612c0b6017836131bd565b9150612c1682613862565b602082019050919050565b612c2a81613296565b82525050565b612c3981613296565b82525050565b6000602082019050612c5460008301846128a6565b92915050565b600060a082019050612c6f60008301876128a6565b612c7c60208301866128a6565b8181036040830152612c8e81856128b5565b90508181036060830152612ca281846128b5565b90508181036080830152612cb5816129f1565b905095945050505050565b6000606082019050612cd560008301866128a6565b612ce260208301856128a6565b612cef6040830184612c30565b949350505050565b6000608082019050612d0c60008301876128a6565b8181036020830152612d1e81866128b5565b90508181036040830152612d3281856128b5565b90508181036060830152612d46818461294f565b905095945050505050565b6000606082019050612d6660008301866128a6565b8181036020830152612d7881856128b5565b90508181036040830152612d8c818461294f565b9050949350505050565b6000604082019050612dab60008301856128a6565b612db86020830184612c30565b9392505050565b6000606082019050612dd460008301866128a6565b612de16020830185612c30565b8181036040830152612df3818461294f565b9050949350505050565b60006020820190508181036000830152612e1781846128b5565b905092915050565b6000602082019050612e346000830184612913565b92915050565b6000602082019050612e4f6000830184612922565b92915050565b6000602082019050612e6a6000830184612931565b92915050565b6000602082019050612e856000830184612940565b92915050565b60006020820190508181036000830152612ea481612988565b9050919050565b60006020820190508181036000830152612ec4816129ab565b9050919050565b60006020820190508181036000830152612ee4816129ce565b9050919050565b60006020820190508181036000830152612f0481612a14565b9050919050565b60006020820190508181036000830152612f2481612a37565b9050919050565b60006020820190508181036000830152612f4481612a5a565b9050919050565b60006020820190508181036000830152612f6481612a7d565b9050919050565b60006020820190508181036000830152612f8481612aa0565b9050919050565b60006020820190508181036000830152612fa481612ac3565b9050919050565b60006020820190508181036000830152612fc481612ae6565b9050919050565b60006020820190508181036000830152612fe481612b09565b9050919050565b6000602082019050818103600083015261300481612b2c565b9050919050565b6000602082019050818103600083015261302481612b4f565b9050919050565b6000602082019050818103600083015261304481612b72565b9050919050565b6000602082019050818103600083015261306481612b95565b9050919050565b6000602082019050818103600083015261308481612bb8565b9050919050565b600060208201905081810360008301526130a481612bdb565b9050919050565b600060208201905081810360008301526130c481612bfe565b9050919050565b60006020820190506130e06000830184612c30565b92915050565b60006130f0613101565b90506130fc828261333c565b919050565b6000604051905090565b600067ffffffffffffffff82111561312657613125613443565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561315257613151613443565b5b61315b8261348b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006131d982613296565b91506131e483613296565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613219576132186133b6565b5b828201905092915050565b600061322f82613296565b915061323a83613296565b92508282101561324d5761324c6133b6565b5b828203905092915050565b600061326382613276565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006132ab826132d6565b9050919050565b60006132bd826132d6565b9050919050565b60006132cf826132d6565b9050919050565b60006132e1826132e8565b9050919050565b60006132f382613276565b9050919050565b82818337600083830152505050565b60005b8381101561332757808201518184015260208101905061330c565b83811115613336576000848401525b50505050565b6133458261348b565b810181811067ffffffffffffffff8211171561336457613363613443565b5b80604052505050565b600061337882613296565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133ab576133aa6133b6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455448206372656469742069732072756e6e696e67206c6f7700000000000000600082015250565b7f576974686472617720746f726368206d75737420206265206c6573732074686160008201527f6e206d617820776974686472617720746f72636820617420312074696d650000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f3078303000000000000000000000000000000000000000000000000000000000600082015250565b7f43616e206f6e6c7920776974686472617720312074696d65732061742031206860008201527f6f75720000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f576974686472617720455448206d757374206265206c657373207468616e206d60008201527f61782077697468647261772045544820617420312074696d6500000000000000602082015250565b7f5374616b65206d75737420626520616374697665000000000000000000000000600082015250565b7f546f6b656e73206d7573742062652067726561746572207468616e2030000000600082015250565b7f4e6f20636f6c6c61746572616c20666f756e6400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4175646974206572726f72000000000000000000000000000000000000000000600082015250565b7f526563656976652073746f72616765206d757374206265206163746976650000600082015250565b7f576974686472617720746f726368206d7573742062652067726561746572207460008201527f68616e2030000000000000000000000000000000000000000000000000000000602082015250565b7f526563686172676520746f726368206d7573742062652067726561746572207460008201527f68616e2030000000000000000000000000000000000000000000000000000000602082015250565b7f5265636861726765206d75737420626520616374697665000000000000000000600082015250565b7f5769746864726177207374616b696e67206d7573742062652061637469766500600082015250565b7f546f726368206372656469742069732072756e6e696e67206c6f770000000000600082015250565b7f5769746864726177206d75737420626520616374697665000000000000000000600082015250565b61389481613258565b811461389f57600080fd5b50565b6138ab8161326a565b81146138b657600080fd5b50565b6138c281613296565b81146138cd57600080fd5b5056fea26469706673582212208eaee17d40e7282267f4ff8767aa2c4c5fde805ada0e602f1e6225d29a180d4664736f6c63430008070033000000000000000000000000f9524525bc155583775db28bfda4b99517a2257e000000000000000000000000d33b79f237508251e5740c5229f2c8ea47ee30c8000000000000000000000000391b80badbc3f3280c1e176336edadf9544da91b000000000000000000000000a755c08a422434c480076c80692d9aee67bcea2b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102535760003560e01c80639bc7258811610146578063cc113622116100c3578063ef60a9bf11610087578063ef60a9bf146105ea578063f2a7f35814610608578063f2fde38b14610638578063f3c8268514610654578063f71bc58014610672578063f7260d3e1461068e57610253565b8063cc1136221461055a578063d5f4037614610576578063dc38b0a214610592578063e72d0bd0146105ae578063ee3711be146105cc57610253565b8063b4797c8f1161010a578063b4797c8f146104dc578063b4e7fee9146104fa578063b840bada14610516578063bfa16b9b14610534578063c62b600c1461053e57610253565b80639bc7258814610486578063a0ef91df14610490578063a3dfd8f61461049a578063a95508ef146104b6578063b2c084d6146104d257610253565b80634db7d3af116101d4578063718da7ee11610198578063718da7ee146103f85780637aa4e8fa14610414578063808d83eb1461043057806389d712711461044c5780638da5cb5b1461046857610253565b80634db7d3af146103785780636153d0471461039457806368fba652146103b25780636add9228146103d0578063715018a6146103ee57610253565b806334d5e8041161021b57806334d5e804146102e8578063363667d1146103185780633824392e1461032257806342fa82481461033e5780634cea7a901461034857610253565b80630fbf0a93146102585780631026318d1461027457806314089a881461029057806318d21b701461029a5780631995fc7e146102ca575b600080fd5b610272600480360381019061026d9190612643565b6106ac565b005b61028e600480360381019061028991906127d8565b6109c4565b005b6102986109d6565b005b6102b460048036038101906102af9190612603565b610a0a565b6040516102c191906130cb565b60405180910390f35b6102d2610a3b565b6040516102df9190612e1f565b60405180910390f35b61030260048036038101906102fd91906127d8565b610a4e565b60405161030f9190612e1f565b60405180910390f35b610320610af4565b005b61033c600480360381019061033791906125a9565b610b28565b005b610346610b74565b005b610362600480360381019061035d91906125a9565b610ba8565b60405161036f9190612dfd565b60405180910390f35b610392600480360381019061038d91906125a9565b610c3f565b005b61039c610c8b565b6040516103a99190612e55565b60405180910390f35b6103ba610cb1565b6040516103c79190612e1f565b60405180910390f35b6103d8610cc4565b6040516103e59190612e1f565b60405180910390f35b6103f6610cd7565b005b610412600480360381019061040d91906125a9565b610ceb565b005b61042e600480360381019061042991906127d8565b610d37565b005b61044a600480360381019061044591906125a9565b610e14565b005b610466600480360381019061046191906127d8565b610e60565b005b610470610e72565b60405161047d9190612c3f565b60405180910390f35b61048e610e9b565b005b610498610ecf565b005b6104b460048036038101906104af9190612832565b610f48565b005b6104d060048036038101906104cb919061268c565b6113cd565b005b6104da61168e565b005b6104e46116c2565b6040516104f19190612e1f565b60405180910390f35b610514600480360381019061050f91906127d8565b6116d5565b005b61051e611861565b60405161052b9190612e1f565b60405180910390f35b61053c611874565b005b610558600480360381019061055391906125a9565b6118a8565b005b610574600480360381019061056f9190612832565b6118f4565b005b610590600480360381019061058b9190612733565b611c66565b005b6105ac60048036038101906105a791906125a9565b611f24565b005b6105b6611f70565b6040516105c39190612e70565b60405180910390f35b6105d4611f96565b6040516105e19190612e3a565b60405180910390f35b6105f2611fbc565b6040516105ff9190612c3f565b60405180910390f35b610622600480360381019061061d91906125a9565b611fe2565b60405161062f91906130cb565b60405180910390f35b610652600480360381019061064d91906125a9565b61202e565b005b61065c6120b2565b6040516106699190612e1f565b60405180910390f35b61068c600480360381019061068791906127d8565b6120c5565b005b6106966120d7565b6040516106a39190612c3f565b60405180910390f35b600460169054906101000a900460ff166106fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f290612f4b565b60405180910390fd5b60008151905060008111610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b90612f6b565b60405180910390fd5b60005b818110156109bf573373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8584815181106107b7576107b6613414565b5b60200260200101516040518263ffffffff1660e01b81526004016107db91906130cb565b60206040518083038186803b1580156107f357600080fd5b505afa158015610807573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082b91906125d6565b73ffffffffffffffffffffffffffffffffffffffff1614610881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087890612f0b565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33308685815181106108d4576108d3613414565b5b60200260200101516040518463ffffffff1660e01b81526004016108fa93929190612cc0565b600060405180830381600087803b15801561091457600080fd5b505af1158015610928573d6000803e3d6000fd5b50505050600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083828151811061097e5761097d613414565b5b6020026020010151908060018154018082558091505060019003906000526020600020016000909190919091505580806109b79061336d565b915050610747565b505050565b6109cc6120fd565b8060058190555050565b6109de6120fd565b600460189054906101000a900460ff1615600460186101000a81548160ff021916908315150217905550565b600c6020528160005260406000208181548110610a2657600080fd5b90600052602060002001600091509150505481565b600460179054906101000a900460ff1681565b600080610a5a33611fe2565b905060005b81811015610ae85783600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610ab957610ab8613414565b5b90600052602060002001541415610ad557600192505050610aef565b8080610ae09061336d565b915050610a5f565b5060009150505b919050565b610afc6120fd565b600460199054906101000a900460ff1615600460196101000a81548160ff021916908315150217905550565b610b306120fd565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b7c6120fd565b600460149054906101000a900460ff1615600460146101000a81548160ff021916908315150217905550565b6060600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610c3357602002820191906000526020600020905b815481526020019060010190808311610c1f575b50505050509050919050565b610c476120fd565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460149054906101000a900460ff1681565b600460199054906101000a900460ff1681565b610cdf6120fd565b610ce9600061217b565b565b610cf36120fd565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d3f6120fd565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610dbe929190612d96565b602060405180830381600087803b158015610dd857600080fd5b505af1158015610dec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1091906127ab565b5050565b610e1c6120fd565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e686120fd565b8060068190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ea36120fd565b600460159054906101000a900460ff1615600460156101000a81548160ff021916908315150217905550565b610ed76120fd565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f44573d6000803e3d6000fd5b5050565b600460159054906101000a900460ff16610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e906130ab565b60405180910390fd5b60008211610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd19061300b565b60405180910390fd5b60065482111561101f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101690612eab565b60405180910390fd5b42600754600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106d91906131ce565b11156110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590612eeb565b60405180910390fd5b60011515600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ddc729053385856040518463ffffffff1660e01b815260040161111193929190612dbf565b60206040518083038186803b15801561112957600080fd5b505afa15801561113d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116191906127ab565b1515146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90612fcb565b60405180910390fd5b81600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111ff9190612c3f565b60206040518083038186803b15801561121757600080fd5b505afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124f9190612805565b1015611290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112879061308b565b60405180910390fd5b42600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401611331929190612d96565b602060405180830381600087803b15801561134b57600080fd5b505af115801561135f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138391906127ab565b5042823373ffffffffffffffffffffffffffffffffffffffff167f4ea6f32d5c8d02512066570e7509c23d7bb4a94af54603a28e76fc7afb2065a060405160405180910390a45050565b600460199054906101000a900460ff1661141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390612feb565b60405180910390fd5b60011515600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663888bea6a338686866040518563ffffffff1660e01b81526004016114819493929190612cf7565b60206040518083038186803b15801561149957600080fd5b505afa1580156114ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d191906127ab565b151514611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90612fcb565b60405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632eb2c2d6600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163386866040518563ffffffff1660e01b81526004016115969493929190612c5a565b600060405180830381600087803b1580156115b057600080fd5b505af11580156115c4573d6000803e3d6000fd5b5050505060008351905060005b81811015611687578381815181106115ec576115eb613414565b5b602002602001015185828151811061160757611606613414565b5b6020026020010151600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffa16e5fd1b0805acb958820d1abb56f5dbf38abaf5a87eea104a9ab0aaf9810660405160405180910390a4808061167f9061336d565b9150506115d1565b5050505050565b6116966120fd565b600460179054906101000a900460ff1615600460176101000a81548160ff021916908315150217905550565b600460159054906101000a900460ff1681565b600460149054906101000a900460ff16611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b9061304b565b60405180910390fd5b60008111611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e9061302b565b60405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016117c693929190612cc0565b602060405180830381600087803b1580156117e057600080fd5b505af11580156117f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181891906127ab565b5042813373ffffffffffffffffffffffffffffffffffffffff167f7c68788ad904b1eed6981abcc1b498a9fe164ce941c17c6b8ce3d4d9eaa43a1f60405160405180910390a450565b600460169054906101000a900460ff1681565b61187c6120fd565b600460169054906101000a900460ff1615600460166101000a81548160ff021916908315150217905550565b6118b06120fd565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600460189054906101000a900460ff16611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a906130ab565b60405180910390fd5b60008211611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d9061300b565b60405180910390fd5b6005548211156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290612f2b565b60405180910390fd5b42600754600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a1991906131ce565b1115611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5190612eeb565b60405180910390fd5b60011515600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663de5a0caf3385856040518463ffffffff1660e01b8152600401611abd93929190612dbf565b60206040518083038186803b158015611ad557600080fd5b505afa158015611ae9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0d91906127ab565b151514611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690612fcb565b60405180910390fd5b81471015611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990612e8b565b60405180910390fd5b42600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611c1c573d6000803e3d6000fd5b5042823373ffffffffffffffffffffffffffffffffffffffff167f5418acf4a19907c0b33ee8135a7792f1d0df6293095647e9aa9bd165a89f73b960405160405180910390a45050565b600460179054906101000a900460ff16611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac9061306b565b60405180910390fd5b60011515600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166358a483793385856040518463ffffffff1660e01b8152600401611d1893929190612d51565b60206040518083038186803b158015611d3057600080fd5b505afa158015611d44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d6891906127ab565b151514611daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da190612fcb565b60405180910390fd5b60008251905060005b81811015611f1e57611dde848281518110611dd157611dd0613414565b5b6020026020010151610a4e565b611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490612f8b565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3033878581518110611e7057611e6f613414565b5b60200260200101516040518463ffffffff1660e01b8152600401611e9693929190612cc0565b600060405180830381600087803b158015611eb057600080fd5b505af1158015611ec4573d6000803e3d6000fd5b50505050600080611eee868481518110611ee157611ee0613414565b5b602002602001015161223f565b91509150600115158215151415611f0957611f08816122ed565b5b50508080611f169061336d565b915050611db3565b50505050565b611f2c6120fd565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b6120366120fd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90612ecb565b60405180910390fd5b6120af8161217b565b50565b600460189054906101000a900460ff1681565b6120cd6120fd565b8060078190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61210561242a565b73ffffffffffffffffffffffffffffffffffffffff16612123610e72565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090612fab565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600061224d33611fe2565b905060005b818110156122de5784600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106122ac576122ab613414565b5b906000526020600020015414156122cb576001819350935050506122e8565b80806122d69061336d565b915050612252565b5060008092509250505b915091565b600060016122fa33611fe2565b6123049190613224565b9050600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020818154811061235757612356613414565b5b9060005260206000200154600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106123b3576123b2613414565b5b9060005260206000200181905550600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806124105761240f6133e5565b5b600190038181906000526020600020016000905590555050565b600033905090565b60006124456124408461310b565b6130e6565b9050808382526020820190508285602086028201111561246857612467613477565b5b60005b85811015612498578161247e888261257f565b84526020840193506020830192505060018101905061246b565b5050509392505050565b60006124b56124b084613137565b6130e6565b9050828152602081018484840111156124d1576124d061347c565b5b6124dc8482856132fa565b509392505050565b6000813590506124f38161388b565b92915050565b6000815190506125088161388b565b92915050565b600082601f83011261252357612522613472565b5b8135612533848260208601612432565b91505092915050565b60008151905061254b816138a2565b92915050565b600082601f83011261256657612565613472565b5b81356125768482602086016124a2565b91505092915050565b60008135905061258e816138b9565b92915050565b6000815190506125a3816138b9565b92915050565b6000602082840312156125bf576125be613486565b5b60006125cd848285016124e4565b91505092915050565b6000602082840312156125ec576125eb613486565b5b60006125fa848285016124f9565b91505092915050565b6000806040838503121561261a57612619613486565b5b6000612628858286016124e4565b92505060206126398582860161257f565b9150509250929050565b60006020828403121561265957612658613486565b5b600082013567ffffffffffffffff81111561267757612676613481565b5b6126838482850161250e565b91505092915050565b6000806000606084860312156126a5576126a4613486565b5b600084013567ffffffffffffffff8111156126c3576126c2613481565b5b6126cf8682870161250e565b935050602084013567ffffffffffffffff8111156126f0576126ef613481565b5b6126fc8682870161250e565b925050604084013567ffffffffffffffff81111561271d5761271c613481565b5b61272986828701612551565b9150509250925092565b6000806040838503121561274a57612749613486565b5b600083013567ffffffffffffffff81111561276857612767613481565b5b6127748582860161250e565b925050602083013567ffffffffffffffff81111561279557612794613481565b5b6127a185828601612551565b9150509250929050565b6000602082840312156127c1576127c0613486565b5b60006127cf8482850161253c565b91505092915050565b6000602082840312156127ee576127ed613486565b5b60006127fc8482850161257f565b91505092915050565b60006020828403121561281b5761281a613486565b5b600061282984828501612594565b91505092915050565b6000806040838503121561284957612848613486565b5b60006128578582860161257f565b925050602083013567ffffffffffffffff81111561287857612877613481565b5b61288485828601612551565b9150509250929050565b600061289a8383612c21565b60208301905092915050565b6128af81613258565b82525050565b60006128c082613178565b6128ca818561319b565b93506128d583613168565b8060005b838110156129065781516128ed888261288e565b97506128f88361318e565b9250506001810190506128d9565b5085935050505092915050565b61291c8161326a565b82525050565b61292b816132a0565b82525050565b61293a816132b2565b82525050565b612949816132c4565b82525050565b600061295a82613183565b61296481856131bd565b9350612974818560208601613309565b61297d8161348b565b840191505092915050565b60006129956019836131bd565b91506129a08261349c565b602082019050919050565b60006129b8603e836131bd565b91506129c3826134c5565b604082019050919050565b60006129db6026836131bd565b91506129e682613514565b604082019050919050565b60006129fe6004836131ac565b9150612a0982613563565b602082019050919050565b6000612a216023836131bd565b9150612a2c8261358c565b604082019050919050565b6000612a446014836131bd565b9150612a4f826135db565b602082019050919050565b6000612a676039836131bd565b9150612a7282613604565b604082019050919050565b6000612a8a6014836131bd565b9150612a9582613653565b602082019050919050565b6000612aad601d836131bd565b9150612ab88261367c565b602082019050919050565b6000612ad06013836131bd565b9150612adb826136a5565b602082019050919050565b6000612af36020836131bd565b9150612afe826136ce565b602082019050919050565b6000612b16600b836131bd565b9150612b21826136f7565b602082019050919050565b6000612b39601e836131bd565b9150612b4482613720565b602082019050919050565b6000612b5c6025836131bd565b9150612b6782613749565b604082019050919050565b6000612b7f6025836131bd565b9150612b8a82613798565b604082019050919050565b6000612ba26017836131bd565b9150612bad826137e7565b602082019050919050565b6000612bc5601f836131bd565b9150612bd082613810565b602082019050919050565b6000612be8601b836131bd565b9150612bf382613839565b602082019050919050565b6000612c0b6017836131bd565b9150612c1682613862565b602082019050919050565b612c2a81613296565b82525050565b612c3981613296565b82525050565b6000602082019050612c5460008301846128a6565b92915050565b600060a082019050612c6f60008301876128a6565b612c7c60208301866128a6565b8181036040830152612c8e81856128b5565b90508181036060830152612ca281846128b5565b90508181036080830152612cb5816129f1565b905095945050505050565b6000606082019050612cd560008301866128a6565b612ce260208301856128a6565b612cef6040830184612c30565b949350505050565b6000608082019050612d0c60008301876128a6565b8181036020830152612d1e81866128b5565b90508181036040830152612d3281856128b5565b90508181036060830152612d46818461294f565b905095945050505050565b6000606082019050612d6660008301866128a6565b8181036020830152612d7881856128b5565b90508181036040830152612d8c818461294f565b9050949350505050565b6000604082019050612dab60008301856128a6565b612db86020830184612c30565b9392505050565b6000606082019050612dd460008301866128a6565b612de16020830185612c30565b8181036040830152612df3818461294f565b9050949350505050565b60006020820190508181036000830152612e1781846128b5565b905092915050565b6000602082019050612e346000830184612913565b92915050565b6000602082019050612e4f6000830184612922565b92915050565b6000602082019050612e6a6000830184612931565b92915050565b6000602082019050612e856000830184612940565b92915050565b60006020820190508181036000830152612ea481612988565b9050919050565b60006020820190508181036000830152612ec4816129ab565b9050919050565b60006020820190508181036000830152612ee4816129ce565b9050919050565b60006020820190508181036000830152612f0481612a14565b9050919050565b60006020820190508181036000830152612f2481612a37565b9050919050565b60006020820190508181036000830152612f4481612a5a565b9050919050565b60006020820190508181036000830152612f6481612a7d565b9050919050565b60006020820190508181036000830152612f8481612aa0565b9050919050565b60006020820190508181036000830152612fa481612ac3565b9050919050565b60006020820190508181036000830152612fc481612ae6565b9050919050565b60006020820190508181036000830152612fe481612b09565b9050919050565b6000602082019050818103600083015261300481612b2c565b9050919050565b6000602082019050818103600083015261302481612b4f565b9050919050565b6000602082019050818103600083015261304481612b72565b9050919050565b6000602082019050818103600083015261306481612b95565b9050919050565b6000602082019050818103600083015261308481612bb8565b9050919050565b600060208201905081810360008301526130a481612bdb565b9050919050565b600060208201905081810360008301526130c481612bfe565b9050919050565b60006020820190506130e06000830184612c30565b92915050565b60006130f0613101565b90506130fc828261333c565b919050565b6000604051905090565b600067ffffffffffffffff82111561312657613125613443565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561315257613151613443565b5b61315b8261348b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006131d982613296565b91506131e483613296565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613219576132186133b6565b5b828201905092915050565b600061322f82613296565b915061323a83613296565b92508282101561324d5761324c6133b6565b5b828203905092915050565b600061326382613276565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006132ab826132d6565b9050919050565b60006132bd826132d6565b9050919050565b60006132cf826132d6565b9050919050565b60006132e1826132e8565b9050919050565b60006132f382613276565b9050919050565b82818337600083830152505050565b60005b8381101561332757808201518184015260208101905061330c565b83811115613336576000848401525b50505050565b6133458261348b565b810181811067ffffffffffffffff8211171561336457613363613443565b5b80604052505050565b600061337882613296565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133ab576133aa6133b6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455448206372656469742069732072756e6e696e67206c6f7700000000000000600082015250565b7f576974686472617720746f726368206d75737420206265206c6573732074686160008201527f6e206d617820776974686472617720746f72636820617420312074696d650000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f3078303000000000000000000000000000000000000000000000000000000000600082015250565b7f43616e206f6e6c7920776974686472617720312074696d65732061742031206860008201527f6f75720000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f576974686472617720455448206d757374206265206c657373207468616e206d60008201527f61782077697468647261772045544820617420312074696d6500000000000000602082015250565b7f5374616b65206d75737420626520616374697665000000000000000000000000600082015250565b7f546f6b656e73206d7573742062652067726561746572207468616e2030000000600082015250565b7f4e6f20636f6c6c61746572616c20666f756e6400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4175646974206572726f72000000000000000000000000000000000000000000600082015250565b7f526563656976652073746f72616765206d757374206265206163746976650000600082015250565b7f576974686472617720746f726368206d7573742062652067726561746572207460008201527f68616e2030000000000000000000000000000000000000000000000000000000602082015250565b7f526563686172676520746f726368206d7573742062652067726561746572207460008201527f68616e2030000000000000000000000000000000000000000000000000000000602082015250565b7f5265636861726765206d75737420626520616374697665000000000000000000600082015250565b7f5769746864726177207374616b696e67206d7573742062652061637469766500600082015250565b7f546f726368206372656469742069732072756e6e696e67206c6f770000000000600082015250565b7f5769746864726177206d75737420626520616374697665000000000000000000600082015250565b61389481613258565b811461389f57600080fd5b50565b6138ab8161326a565b81146138b657600080fd5b50565b6138c281613296565b81146138cd57600080fd5b5056fea26469706673582212208eaee17d40e7282267f4ff8767aa2c4c5fde805ada0e602f1e6225d29a180d4664736f6c63430008070033

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

000000000000000000000000f9524525bc155583775db28bfda4b99517a2257e000000000000000000000000d33b79f237508251e5740c5229f2c8ea47ee30c8000000000000000000000000391b80badbc3f3280c1e176336edadf9544da91b000000000000000000000000a755c08a422434c480076c80692d9aee67bcea2b

-----Decoded View---------------
Arg [0] : _monster (address): 0xf9524525BC155583775DB28bFDa4B99517a2257E
Arg [1] : _token (address): 0xd33B79F237508251e5740c5229f2c8Ea47Ee30C8
Arg [2] : _check (address): 0x391b80BADbc3f3280c1e176336eDAdF9544da91b
Arg [3] : _storage (address): 0xa755c08a422434C480076c80692d9aEe67bCea2B

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000f9524525bc155583775db28bfda4b99517a2257e
Arg [1] : 000000000000000000000000d33b79f237508251e5740c5229f2c8ea47ee30c8
Arg [2] : 000000000000000000000000391b80badbc3f3280c1e176336edadf9544da91b
Arg [3] : 000000000000000000000000a755c08a422434c480076c80692d9aee67bcea2b


Deployed Bytecode Sourcemap

17031:9189:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21048:569;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25615:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24751:118;;;:::i;:::-;;17843:50;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17313:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23210:338;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24877:100;;;:::i;:::-;;25080:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24313:103;;;:::i;:::-;;24181:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25181:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17130:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17185:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17403:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;:::i;:::-;;24985:87;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25956:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25393:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25726:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24424:109;;;:::i;:::-;;26073:142;;;:::i;:::-;;18969:1038;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22442:617;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24643:100;;;:::i;:::-;;17228:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18547:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17273:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24541:94;;;:::i;:::-;;25288:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20015:1025;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21630:798;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25504:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17071:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17100:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17656:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23067:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17355:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25841:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17581:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21048:569;21130:14;;;;;;;;;;;21108:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;21205:22;21231:8;:15;21205:41;;21281:1;21265:13;:17;21257:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;21333:6;21329:273;21348:13;21344:1;:17;21329:273;;;21422:10;21389:43;;:7;;;;;;;;;;;:15;;;21405:8;21414:1;21405:11;;;;;;;;:::i;:::-;;;;;;;;21389:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;;;21381:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21474:7;;;;;;;;;;;:20;;;21495:10;21514:4;21520:8;21529:1;21520:11;;;;;;;;:::i;:::-;;;;;;;;21474:58;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21547:13;:25;21561:10;21547:25;;;;;;;;;;;;;;;21578:8;21587:1;21578:11;;;;;;;;:::i;:::-;;;;;;;;21547:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21362:3;;;;;:::i;:::-;;;;21329:273;;;;21097:520;21048:569;:::o;25615:103::-;2014:13;:11;:13::i;:::-;25703:7:::1;25686:14;:24;;;;25615:103:::0;:::o;24751:118::-;2014:13;:11;:13::i;:::-;24839:22:::1;;;;;;;;;;;24838:23;24813:22;;:48;;;;;;;;;;;;;;;;;;24751:118::o:0;17843:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17313:35::-;;;;;;;;;;;;;:::o;23210:338::-;23285:4;23301:14;23318:41;23348:10;23318:29;:41::i;:::-;23301:58;;23374:6;23370:148;23390:6;23386:1;:10;23370:148;;;23452:8;23420:13;:25;23434:10;23420:25;;;;;;;;;;;;;;;23446:1;23420:28;;;;;;;;:::i;:::-;;;;;;;;;;:40;23417:90;;;23487:4;23480:11;;;;;;23417:90;23398:3;;;;;:::i;:::-;;;;23370:148;;;;23535:5;23528:12;;;23210:338;;;;:::o;24877:100::-;2014:13;:11;:13::i;:::-;24953:16:::1;;;;;;;;;;;24952:17;24933:16;;:36;;;;;;;;;;;;;;;;;;24877:100::o:0;25080:93::-;2014:13;:11;:13::i;:::-;25160:5:::1;25146:11;;:19;;;;;;;;;;;;;;;;;;25080:93:::0;:::o;24313:103::-;2014:13;:11;:13::i;:::-;24391:17:::1;;;;;;;;;;;24390:18;24370:17;;:38;;;;;;;;;;;;;;;;;;24313:103::o:0;24181:124::-;24242:16;24277:13;:20;24291:5;24277:20;;;;;;;;;;;;;;;24270:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24181:124;;;:::o;25181:99::-;2014:13;:11;:13::i;:::-;25266:5:::1;25251;;:21;;;;;;;;;;;;;;;;;;25181:99:::0;:::o;17130:19::-;;;;;;;;;;;;;:::o;17185:36::-;;;;;;;;;;;;;:::o;17403:35::-;;;;;;;;;;;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;24985:87::-;2014:13;:11;:13::i;:::-;25059:5:::1;25048:8;;:16;;;;;;;;;;;;;;;;;;24985:87:::0;:::o;25956:109::-;2014:13;:11;:13::i;:::-;26024:5:::1;;;;;;;;;;;:14;;;26039:8;;;;;;;;;;;26049:7;26024:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25956:109:::0;:::o;25393:103::-;2014:13;:11;:13::i;:::-;25482:5:::1;25464:7;;:24;;;;;;;;;;;;;;;;;;25393:103:::0;:::o;25726:107::-;2014:13;:11;:13::i;:::-;25818:7:::1;25799:16;:26;;;;25726:107:::0;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;24424:109::-;2014:13;:11;:13::i;:::-;24506:19:::1;;;;;;;;;;;24505:20;24483:19;;:42;;;;;;;;;;;;;;;;;;24424:109::o:0;26073:142::-;2014:13;:11;:13::i;:::-;26124:14:::1;26141:21;26124:38;;26181:8;;;;;;;;;;;26173:26;;:34;26200:6;26173:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;26113:102;26073:142::o:0;18969:1038::-;19075:19;;;;;;;;;;;19053:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;19190:1;19180:7;:11;19158:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;19302:16;;19291:7;:27;;19269:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;19484:15;19467:13;;19443:9;:21;19453:10;19443:21;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:56;;19421:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;19650:4;19597:57;;:5;;;;;;;;;;;:16;;;19614:10;19626:7;19635:10;19597:49;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:57;;;19575:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;19762:7;19728:5;;;;;;;;;;;:15;;;19752:4;19728:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;;19706:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;19861:15;19837:9;:21;19847:10;19837:21;;;;;;;;;;;;;;;:39;;;;19889:5;;;;;;;;;;;:14;;;19905:10;19917:7;19889:36;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19983:15;19974:7;19962:10;19943:56;;;;;;;;;;;;18969:1038;;:::o;22442:617::-;22570:16;;;;;;;;;;;22562:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;22723:4;22656:71;;:5;;;;;;;;;;;:18;;;22675:10;22687:9;22698:8;22708:10;22656:63;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:71;;;22634:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;22782:7;;;;;;;;;;;:29;;;22812:11;;;;;;;;;;;22825:10;22837:9;22848:8;22782:83;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22878:22;22904:9;:16;22878:42;;22937:6;22933:117;22952:13;22948:1;:17;22933:117;;;23026:8;23035:1;23026:11;;;;;;;;:::i;:::-;;;;;;;;23012:9;23022:1;23012:12;;;;;;;;:::i;:::-;;;;;;;;23000:11;;;;;;;;;;;22990:48;;;;;;;;;;;;22966:3;;;;;:::i;:::-;;;;22933:117;;;;22551:508;22442:617;;;:::o;24643:100::-;2014:13;:11;:13::i;:::-;24719:16:::1;;;;;;;;;;;24718:17;24699:16;;:36;;;;;;;;;;;;;;;;;;24643:100::o:0;17228:38::-;;;;;;;;;;;;;:::o;18547:408::-;18627:17;;;;;;;;;;;18605:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;18740:1;18730:7;:11;18708:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;18819:5;;;;;;;;;;;:18;;;18838:10;18858:4;18865:7;18819:54;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18931:15;18922:7;18910:10;18891:56;;;;;;;;;;;;18547:408;:::o;17273:33::-;;;;;;;;;;;;;:::o;24541:94::-;2014:13;:11;:13::i;:::-;24613:14:::1;;;;;;;;;;;24612:15;24595:14;;:32;;;;;;;;;;;;;;;;;;24541:94::o:0;25288:97::-;2014:13;:11;:13::i;:::-;25371:5:::1;25356;;:21;;;;;;;;;;;;;;;;;;25288:97:::0;:::o;20015:1025::-;20119:22;;;;;;;;;;;20097:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;20238:1;20228:7;:11;20206:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;20350:14;;20339:7;:25;;20317:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;20528:15;20511:13;;20484:12;:24;20497:10;20484:24;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:59;;20462:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;20692:4;20641:55;;:5;;;;;;;;;;;:14;;;20656:10;20668:7;20677:10;20641:47;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:55;;;20619:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;20795:7;20770:21;:32;;20748:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;20895:15;20868:12;:24;20881:10;20868:24;;;;;;;;;;;;;;;:42;;;;20931:10;20923:28;;:37;20952:7;20923:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21016:15;21007:7;20995:10;20978:54;;;;;;;;;;;;20015:1025;;:::o;21630:798::-;21746:16;;;;;;;;;;;21724:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;21917:4;21856:65;;:5;;;;;;;;;;;:23;;;21880:10;21892:8;21902:10;21856:57;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;;21834:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;21976:22;22002:8;:15;21976:41;;22038:6;22034:385;22053:13;22049:1;:17;22034:385;;;22094:40;22122:8;22131:1;22122:11;;;;;;;;:::i;:::-;;;;;;;;22094:27;:40::i;:::-;22086:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22175:7;;;;;;;;;;;:20;;;22204:4;22211:10;22223:8;22232:1;22223:11;;;;;;;;:::i;:::-;;;;;;;;22175:60;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22253:12;22267;22284:39;22311:8;22320:1;22311:11;;;;;;;;:::i;:::-;;;;;;;;22284:26;:39::i;:::-;22252:71;;;;22352:4;22341:15;;:7;:15;;;22338:69;;;22375:32;22402:4;22375:26;:32::i;:::-;22338:69;22071:348;;22067:3;;;;;:::i;:::-;;;;22034:385;;;;21713:715;21630:798;;:::o;25504:103::-;2014:13;:11;:13::i;:::-;25593:5:::1;25574:7;;:25;;;;;;;;;;;;;;;;;;25504:103:::0;:::o;17071:22::-;;;;;;;;;;;;;:::o;17100:23::-;;;;;;;;;;;;;:::o;17656:71::-;;;;;;;;;;;;;:::o;23067:135::-;23141:7;23167:13;:20;23181:5;23167:20;;;;;;;;;;;;;;;:27;;;;23160:34;;23067:135;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;17355:41::-;;;;;;;;;;;;;:::o;25841:107::-;2014:13;:11;:13::i;:::-;25930:10:::1;25914:13;:26;;;;25841:107:::0;:::o;17581:68::-;;;;;;;;;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;23822:351::-;23897:4;23902;23918:14;23935:41;23965:10;23935:29;:41::i;:::-;23918:58;;23991:6;23987:152;24007:6;24003:1;:10;23987:152;;;24069:8;24037:13;:25;24051:10;24037:25;;;;;;;;;;;;;;;24063:1;24037:28;;;;;;;;:::i;:::-;;;;;;;;;;:40;24034:94;;;24105:4;24110:1;24097:15;;;;;;;;24034:94;24015:3;;;;;:::i;:::-;;;;23987:152;;;;24157:5;24163:1;24149:16;;;;;23822:351;;;;:::o;23556:258::-;23625:14;23685:1;23642:41;23672:10;23642:29;:41::i;:::-;:44;;;;:::i;:::-;23625:61;;23731:13;:25;23745:10;23731:25;;;;;;;;;;;;;;;23757:6;23731:33;;;;;;;;:::i;:::-;;;;;;;;;;23697:13;:25;23711:10;23697:25;;;;;;;;;;;;;;;23723:4;23697:31;;;;;;;;:::i;:::-;;;;;;;;;:67;;;;23775:13;:25;23789:10;23775:25;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23614:200;23556:258;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:412::-;830:5;855:66;871:49;913:6;871:49;:::i;:::-;855:66;:::i;:::-;846:75;;944:6;937:5;930:21;982:4;975:5;971:16;1020:3;1011:6;1006:3;1002:16;999:25;996:112;;;1027:79;;:::i;:::-;996:112;1117:41;1151:6;1146:3;1141;1117:41;:::i;:::-;836:328;752:412;;;;;:::o;1170:139::-;1216:5;1254:6;1241:20;1232:29;;1270:33;1297:5;1270:33;:::i;:::-;1170:139;;;;:::o;1315:143::-;1372:5;1403:6;1397:13;1388:22;;1419:33;1446:5;1419:33;:::i;:::-;1315:143;;;;:::o;1481:370::-;1552:5;1601:3;1594:4;1586:6;1582:17;1578:27;1568:122;;1609:79;;:::i;:::-;1568:122;1726:6;1713:20;1751:94;1841:3;1833:6;1826:4;1818:6;1814:17;1751:94;:::i;:::-;1742:103;;1558:293;1481:370;;;;:::o;1857:137::-;1911:5;1942:6;1936:13;1927:22;;1958:30;1982:5;1958:30;:::i;:::-;1857:137;;;;:::o;2014:340::-;2070:5;2119:3;2112:4;2104:6;2100:17;2096:27;2086:122;;2127:79;;:::i;:::-;2086:122;2244:6;2231:20;2269:79;2344:3;2336:6;2329:4;2321:6;2317:17;2269:79;:::i;:::-;2260:88;;2076:278;2014:340;;;;:::o;2360:139::-;2406:5;2444:6;2431:20;2422:29;;2460:33;2487:5;2460:33;:::i;:::-;2360:139;;;;:::o;2505:143::-;2562:5;2593:6;2587:13;2578:22;;2609:33;2636:5;2609:33;:::i;:::-;2505:143;;;;:::o;2654:329::-;2713:6;2762:2;2750:9;2741:7;2737:23;2733:32;2730:119;;;2768:79;;:::i;:::-;2730:119;2888:1;2913:53;2958:7;2949:6;2938:9;2934:22;2913:53;:::i;:::-;2903:63;;2859:117;2654:329;;;;:::o;2989:351::-;3059:6;3108:2;3096:9;3087:7;3083:23;3079:32;3076:119;;;3114:79;;:::i;:::-;3076:119;3234:1;3259:64;3315:7;3306:6;3295:9;3291:22;3259:64;:::i;:::-;3249:74;;3205:128;2989:351;;;;:::o;3346:474::-;3414:6;3422;3471:2;3459:9;3450:7;3446:23;3442:32;3439:119;;;3477:79;;:::i;:::-;3439:119;3597:1;3622:53;3667:7;3658:6;3647:9;3643:22;3622:53;:::i;:::-;3612:63;;3568:117;3724:2;3750:53;3795:7;3786:6;3775:9;3771:22;3750:53;:::i;:::-;3740:63;;3695:118;3346:474;;;;;:::o;3826:539::-;3910:6;3959:2;3947:9;3938:7;3934:23;3930:32;3927:119;;;3965:79;;:::i;:::-;3927:119;4113:1;4102:9;4098:17;4085:31;4143:18;4135:6;4132:30;4129:117;;;4165:79;;:::i;:::-;4129:117;4270:78;4340:7;4331:6;4320:9;4316:22;4270:78;:::i;:::-;4260:88;;4056:302;3826:539;;;;:::o;4371:1219::-;4508:6;4516;4524;4573:2;4561:9;4552:7;4548:23;4544:32;4541:119;;;4579:79;;:::i;:::-;4541:119;4727:1;4716:9;4712:17;4699:31;4757:18;4749:6;4746:30;4743:117;;;4779:79;;:::i;:::-;4743:117;4884:78;4954:7;4945:6;4934:9;4930:22;4884:78;:::i;:::-;4874:88;;4670:302;5039:2;5028:9;5024:18;5011:32;5070:18;5062:6;5059:30;5056:117;;;5092:79;;:::i;:::-;5056:117;5197:78;5267:7;5258:6;5247:9;5243:22;5197:78;:::i;:::-;5187:88;;4982:303;5352:2;5341:9;5337:18;5324:32;5383:18;5375:6;5372:30;5369:117;;;5405:79;;:::i;:::-;5369:117;5510:63;5565:7;5556:6;5545:9;5541:22;5510:63;:::i;:::-;5500:73;;5295:288;4371:1219;;;;;:::o;5596:864::-;5699:6;5707;5756:2;5744:9;5735:7;5731:23;5727:32;5724:119;;;5762:79;;:::i;:::-;5724:119;5910:1;5899:9;5895:17;5882:31;5940:18;5932:6;5929:30;5926:117;;;5962:79;;:::i;:::-;5926:117;6067:78;6137:7;6128:6;6117:9;6113:22;6067:78;:::i;:::-;6057:88;;5853:302;6222:2;6211:9;6207:18;6194:32;6253:18;6245:6;6242:30;6239:117;;;6275:79;;:::i;:::-;6239:117;6380:63;6435:7;6426:6;6415:9;6411:22;6380:63;:::i;:::-;6370:73;;6165:288;5596:864;;;;;:::o;6466:345::-;6533:6;6582:2;6570:9;6561:7;6557:23;6553:32;6550:119;;;6588:79;;:::i;:::-;6550:119;6708:1;6733:61;6786:7;6777:6;6766:9;6762:22;6733:61;:::i;:::-;6723:71;;6679:125;6466:345;;;;:::o;6817:329::-;6876:6;6925:2;6913:9;6904:7;6900:23;6896:32;6893:119;;;6931:79;;:::i;:::-;6893:119;7051:1;7076:53;7121:7;7112:6;7101:9;7097:22;7076:53;:::i;:::-;7066:63;;7022:117;6817:329;;;;:::o;7152:351::-;7222:6;7271:2;7259:9;7250:7;7246:23;7242:32;7239:119;;;7277:79;;:::i;:::-;7239:119;7397:1;7422:64;7478:7;7469:6;7458:9;7454:22;7422:64;:::i;:::-;7412:74;;7368:128;7152:351;;;;:::o;7509:654::-;7587:6;7595;7644:2;7632:9;7623:7;7619:23;7615:32;7612:119;;;7650:79;;:::i;:::-;7612:119;7770:1;7795:53;7840:7;7831:6;7820:9;7816:22;7795:53;:::i;:::-;7785:63;;7741:117;7925:2;7914:9;7910:18;7897:32;7956:18;7948:6;7945:30;7942:117;;;7978:79;;:::i;:::-;7942:117;8083:63;8138:7;8129:6;8118:9;8114:22;8083:63;:::i;:::-;8073:73;;7868:288;7509:654;;;;;:::o;8169:179::-;8238:10;8259:46;8301:3;8293:6;8259:46;:::i;:::-;8337:4;8332:3;8328:14;8314:28;;8169:179;;;;:::o;8354:118::-;8441:24;8459:5;8441:24;:::i;:::-;8436:3;8429:37;8354:118;;:::o;8508:732::-;8627:3;8656:54;8704:5;8656:54;:::i;:::-;8726:86;8805:6;8800:3;8726:86;:::i;:::-;8719:93;;8836:56;8886:5;8836:56;:::i;:::-;8915:7;8946:1;8931:284;8956:6;8953:1;8950:13;8931:284;;;9032:6;9026:13;9059:63;9118:3;9103:13;9059:63;:::i;:::-;9052:70;;9145:60;9198:6;9145:60;:::i;:::-;9135:70;;8991:224;8978:1;8975;8971:9;8966:14;;8931:284;;;8935:14;9231:3;9224:10;;8632:608;;;8508:732;;;;:::o;9246:109::-;9327:21;9342:5;9327:21;:::i;:::-;9322:3;9315:34;9246:109;;:::o;9361:163::-;9464:53;9511:5;9464:53;:::i;:::-;9459:3;9452:66;9361:163;;:::o;9530:159::-;9631:51;9676:5;9631:51;:::i;:::-;9626:3;9619:64;9530:159;;:::o;9695:161::-;9797:52;9843:5;9797:52;:::i;:::-;9792:3;9785:65;9695:161;;:::o;9862:364::-;9950:3;9978:39;10011:5;9978:39;:::i;:::-;10033:71;10097:6;10092:3;10033:71;:::i;:::-;10026:78;;10113:52;10158:6;10153:3;10146:4;10139:5;10135:16;10113:52;:::i;:::-;10190:29;10212:6;10190:29;:::i;:::-;10185:3;10181:39;10174:46;;9954:272;9862:364;;;;:::o;10232:366::-;10374:3;10395:67;10459:2;10454:3;10395:67;:::i;:::-;10388:74;;10471:93;10560:3;10471:93;:::i;:::-;10589:2;10584:3;10580:12;10573:19;;10232:366;;;:::o;10604:::-;10746:3;10767:67;10831:2;10826:3;10767:67;:::i;:::-;10760:74;;10843:93;10932:3;10843:93;:::i;:::-;10961:2;10956:3;10952:12;10945:19;;10604:366;;;:::o;10976:::-;11118:3;11139:67;11203:2;11198:3;11139:67;:::i;:::-;11132:74;;11215:93;11304:3;11215:93;:::i;:::-;11333:2;11328:3;11324:12;11317:19;;10976:366;;;:::o;11348:363::-;11489:3;11510:65;11573:1;11568:3;11510:65;:::i;:::-;11503:72;;11584:93;11673:3;11584:93;:::i;:::-;11702:2;11697:3;11693:12;11686:19;;11348:363;;;:::o;11717:366::-;11859:3;11880:67;11944:2;11939:3;11880:67;:::i;:::-;11873:74;;11956:93;12045:3;11956:93;:::i;:::-;12074:2;12069:3;12065:12;12058:19;;11717:366;;;:::o;12089:::-;12231:3;12252:67;12316:2;12311:3;12252:67;:::i;:::-;12245:74;;12328:93;12417:3;12328:93;:::i;:::-;12446:2;12441:3;12437:12;12430:19;;12089:366;;;:::o;12461:::-;12603:3;12624:67;12688:2;12683:3;12624:67;:::i;:::-;12617:74;;12700:93;12789:3;12700:93;:::i;:::-;12818:2;12813:3;12809:12;12802:19;;12461:366;;;:::o;12833:::-;12975:3;12996:67;13060:2;13055:3;12996:67;:::i;:::-;12989:74;;13072:93;13161:3;13072:93;:::i;:::-;13190:2;13185:3;13181:12;13174:19;;12833:366;;;:::o;13205:::-;13347:3;13368:67;13432:2;13427:3;13368:67;:::i;:::-;13361:74;;13444:93;13533:3;13444:93;:::i;:::-;13562:2;13557:3;13553:12;13546:19;;13205:366;;;:::o;13577:::-;13719:3;13740:67;13804:2;13799:3;13740:67;:::i;:::-;13733:74;;13816:93;13905:3;13816:93;:::i;:::-;13934:2;13929:3;13925:12;13918:19;;13577:366;;;:::o;13949:::-;14091:3;14112:67;14176:2;14171:3;14112:67;:::i;:::-;14105:74;;14188:93;14277:3;14188:93;:::i;:::-;14306:2;14301:3;14297:12;14290:19;;13949:366;;;:::o;14321:::-;14463:3;14484:67;14548:2;14543:3;14484:67;:::i;:::-;14477:74;;14560:93;14649:3;14560:93;:::i;:::-;14678:2;14673:3;14669:12;14662:19;;14321:366;;;:::o;14693:::-;14835:3;14856:67;14920:2;14915:3;14856:67;:::i;:::-;14849:74;;14932:93;15021:3;14932:93;:::i;:::-;15050:2;15045:3;15041:12;15034:19;;14693:366;;;:::o;15065:::-;15207:3;15228:67;15292:2;15287:3;15228:67;:::i;:::-;15221:74;;15304:93;15393:3;15304:93;:::i;:::-;15422:2;15417:3;15413:12;15406:19;;15065:366;;;:::o;15437:::-;15579:3;15600:67;15664:2;15659:3;15600:67;:::i;:::-;15593:74;;15676:93;15765:3;15676:93;:::i;:::-;15794:2;15789:3;15785:12;15778:19;;15437:366;;;:::o;15809:::-;15951:3;15972:67;16036:2;16031:3;15972:67;:::i;:::-;15965:74;;16048:93;16137:3;16048:93;:::i;:::-;16166:2;16161:3;16157:12;16150:19;;15809:366;;;:::o;16181:::-;16323:3;16344:67;16408:2;16403:3;16344:67;:::i;:::-;16337:74;;16420:93;16509:3;16420:93;:::i;:::-;16538:2;16533:3;16529:12;16522:19;;16181:366;;;:::o;16553:::-;16695:3;16716:67;16780:2;16775:3;16716:67;:::i;:::-;16709:74;;16792:93;16881:3;16792:93;:::i;:::-;16910:2;16905:3;16901:12;16894:19;;16553:366;;;:::o;16925:::-;17067:3;17088:67;17152:2;17147:3;17088:67;:::i;:::-;17081:74;;17164:93;17253:3;17164:93;:::i;:::-;17282:2;17277:3;17273:12;17266:19;;16925:366;;;:::o;17297:108::-;17374:24;17392:5;17374:24;:::i;:::-;17369:3;17362:37;17297:108;;:::o;17411:118::-;17498:24;17516:5;17498:24;:::i;:::-;17493:3;17486:37;17411:118;;:::o;17535:222::-;17628:4;17666:2;17655:9;17651:18;17643:26;;17679:71;17747:1;17736:9;17732:17;17723:6;17679:71;:::i;:::-;17535:222;;;;:::o;17763:1161::-;18140:4;18178:3;18167:9;18163:19;18155:27;;18192:71;18260:1;18249:9;18245:17;18236:6;18192:71;:::i;:::-;18273:72;18341:2;18330:9;18326:18;18317:6;18273:72;:::i;:::-;18392:9;18386:4;18382:20;18377:2;18366:9;18362:18;18355:48;18420:108;18523:4;18514:6;18420:108;:::i;:::-;18412:116;;18575:9;18569:4;18565:20;18560:2;18549:9;18545:18;18538:48;18603:108;18706:4;18697:6;18603:108;:::i;:::-;18595:116;;18759:9;18753:4;18749:20;18743:3;18732:9;18728:19;18721:49;18787:130;18912:4;18787:130;:::i;:::-;18779:138;;17763:1161;;;;;;;:::o;18930:442::-;19079:4;19117:2;19106:9;19102:18;19094:26;;19130:71;19198:1;19187:9;19183:17;19174:6;19130:71;:::i;:::-;19211:72;19279:2;19268:9;19264:18;19255:6;19211:72;:::i;:::-;19293;19361:2;19350:9;19346:18;19337:6;19293:72;:::i;:::-;18930:442;;;;;;:::o;19378:946::-;19675:4;19713:3;19702:9;19698:19;19690:27;;19727:71;19795:1;19784:9;19780:17;19771:6;19727:71;:::i;:::-;19845:9;19839:4;19835:20;19830:2;19819:9;19815:18;19808:48;19873:108;19976:4;19967:6;19873:108;:::i;:::-;19865:116;;20028:9;20022:4;20018:20;20013:2;20002:9;19998:18;19991:48;20056:108;20159:4;20150:6;20056:108;:::i;:::-;20048:116;;20211:9;20205:4;20201:20;20196:2;20185:9;20181:18;20174:48;20239:78;20312:4;20303:6;20239:78;:::i;:::-;20231:86;;19378:946;;;;;;;:::o;20330:684::-;20549:4;20587:2;20576:9;20572:18;20564:26;;20600:71;20668:1;20657:9;20653:17;20644:6;20600:71;:::i;:::-;20718:9;20712:4;20708:20;20703:2;20692:9;20688:18;20681:48;20746:108;20849:4;20840:6;20746:108;:::i;:::-;20738:116;;20901:9;20895:4;20891:20;20886:2;20875:9;20871:18;20864:48;20929:78;21002:4;20993:6;20929:78;:::i;:::-;20921:86;;20330:684;;;;;;:::o;21020:332::-;21141:4;21179:2;21168:9;21164:18;21156:26;;21192:71;21260:1;21249:9;21245:17;21236:6;21192:71;:::i;:::-;21273:72;21341:2;21330:9;21326:18;21317:6;21273:72;:::i;:::-;21020:332;;;;;:::o;21358:533::-;21527:4;21565:2;21554:9;21550:18;21542:26;;21578:71;21646:1;21635:9;21631:17;21622:6;21578:71;:::i;:::-;21659:72;21727:2;21716:9;21712:18;21703:6;21659:72;:::i;:::-;21778:9;21772:4;21768:20;21763:2;21752:9;21748:18;21741:48;21806:78;21879:4;21870:6;21806:78;:::i;:::-;21798:86;;21358:533;;;;;;:::o;21897:373::-;22040:4;22078:2;22067:9;22063:18;22055:26;;22127:9;22121:4;22117:20;22113:1;22102:9;22098:17;22091:47;22155:108;22258:4;22249:6;22155:108;:::i;:::-;22147:116;;21897:373;;;;:::o;22276:210::-;22363:4;22401:2;22390:9;22386:18;22378:26;;22414:65;22476:1;22465:9;22461:17;22452:6;22414:65;:::i;:::-;22276:210;;;;:::o;22492:254::-;22601:4;22639:2;22628:9;22624:18;22616:26;;22652:87;22736:1;22725:9;22721:17;22712:6;22652:87;:::i;:::-;22492:254;;;;:::o;22752:250::-;22859:4;22897:2;22886:9;22882:18;22874:26;;22910:85;22992:1;22981:9;22977:17;22968:6;22910:85;:::i;:::-;22752:250;;;;:::o;23008:252::-;23116:4;23154:2;23143:9;23139:18;23131:26;;23167:86;23250:1;23239:9;23235:17;23226:6;23167:86;:::i;:::-;23008:252;;;;:::o;23266:419::-;23432:4;23470:2;23459:9;23455:18;23447:26;;23519:9;23513:4;23509:20;23505:1;23494:9;23490:17;23483:47;23547:131;23673:4;23547:131;:::i;:::-;23539:139;;23266:419;;;:::o;23691:::-;23857:4;23895:2;23884:9;23880:18;23872:26;;23944:9;23938:4;23934:20;23930:1;23919:9;23915:17;23908:47;23972:131;24098:4;23972:131;:::i;:::-;23964:139;;23691:419;;;:::o;24116:::-;24282:4;24320:2;24309:9;24305:18;24297:26;;24369:9;24363:4;24359:20;24355:1;24344:9;24340:17;24333:47;24397:131;24523:4;24397:131;:::i;:::-;24389:139;;24116:419;;;:::o;24541:::-;24707:4;24745:2;24734:9;24730:18;24722:26;;24794:9;24788:4;24784:20;24780:1;24769:9;24765:17;24758:47;24822:131;24948:4;24822:131;:::i;:::-;24814:139;;24541:419;;;:::o;24966:::-;25132:4;25170:2;25159:9;25155:18;25147:26;;25219:9;25213:4;25209:20;25205:1;25194:9;25190:17;25183:47;25247:131;25373:4;25247:131;:::i;:::-;25239:139;;24966:419;;;:::o;25391:::-;25557:4;25595:2;25584:9;25580:18;25572:26;;25644:9;25638:4;25634:20;25630:1;25619:9;25615:17;25608:47;25672:131;25798:4;25672:131;:::i;:::-;25664:139;;25391:419;;;:::o;25816:::-;25982:4;26020:2;26009:9;26005:18;25997:26;;26069:9;26063:4;26059:20;26055:1;26044:9;26040:17;26033:47;26097:131;26223:4;26097:131;:::i;:::-;26089:139;;25816:419;;;:::o;26241:::-;26407:4;26445:2;26434:9;26430:18;26422:26;;26494:9;26488:4;26484:20;26480:1;26469:9;26465:17;26458:47;26522:131;26648:4;26522:131;:::i;:::-;26514:139;;26241:419;;;:::o;26666:::-;26832:4;26870:2;26859:9;26855:18;26847:26;;26919:9;26913:4;26909:20;26905:1;26894:9;26890:17;26883:47;26947:131;27073:4;26947:131;:::i;:::-;26939:139;;26666:419;;;:::o;27091:::-;27257:4;27295:2;27284:9;27280:18;27272:26;;27344:9;27338:4;27334:20;27330:1;27319:9;27315:17;27308:47;27372:131;27498:4;27372:131;:::i;:::-;27364:139;;27091:419;;;:::o;27516:::-;27682:4;27720:2;27709:9;27705:18;27697:26;;27769:9;27763:4;27759:20;27755:1;27744:9;27740:17;27733:47;27797:131;27923:4;27797:131;:::i;:::-;27789:139;;27516:419;;;:::o;27941:::-;28107:4;28145:2;28134:9;28130:18;28122:26;;28194:9;28188:4;28184:20;28180:1;28169:9;28165:17;28158:47;28222:131;28348:4;28222:131;:::i;:::-;28214:139;;27941:419;;;:::o;28366:::-;28532:4;28570:2;28559:9;28555:18;28547:26;;28619:9;28613:4;28609:20;28605:1;28594:9;28590:17;28583:47;28647:131;28773:4;28647:131;:::i;:::-;28639:139;;28366:419;;;:::o;28791:::-;28957:4;28995:2;28984:9;28980:18;28972:26;;29044:9;29038:4;29034:20;29030:1;29019:9;29015:17;29008:47;29072:131;29198:4;29072:131;:::i;:::-;29064:139;;28791:419;;;:::o;29216:::-;29382:4;29420:2;29409:9;29405:18;29397:26;;29469:9;29463:4;29459:20;29455:1;29444:9;29440:17;29433:47;29497:131;29623:4;29497:131;:::i;:::-;29489:139;;29216:419;;;:::o;29641:::-;29807:4;29845:2;29834:9;29830:18;29822:26;;29894:9;29888:4;29884:20;29880:1;29869:9;29865:17;29858:47;29922:131;30048:4;29922:131;:::i;:::-;29914:139;;29641:419;;;:::o;30066:::-;30232:4;30270:2;30259:9;30255:18;30247:26;;30319:9;30313:4;30309:20;30305:1;30294:9;30290:17;30283:47;30347:131;30473:4;30347:131;:::i;:::-;30339:139;;30066:419;;;:::o;30491:::-;30657:4;30695:2;30684:9;30680:18;30672:26;;30744:9;30738:4;30734:20;30730:1;30719:9;30715:17;30708:47;30772:131;30898:4;30772:131;:::i;:::-;30764:139;;30491:419;;;:::o;30916:222::-;31009:4;31047:2;31036:9;31032:18;31024:26;;31060:71;31128:1;31117:9;31113:17;31104:6;31060:71;:::i;:::-;30916:222;;;;:::o;31144:129::-;31178:6;31205:20;;:::i;:::-;31195:30;;31234:33;31262:4;31254:6;31234:33;:::i;:::-;31144:129;;;:::o;31279:75::-;31312:6;31345:2;31339:9;31329:19;;31279:75;:::o;31360:311::-;31437:4;31527:18;31519:6;31516:30;31513:56;;;31549:18;;:::i;:::-;31513:56;31599:4;31591:6;31587:17;31579:25;;31659:4;31653;31649:15;31641:23;;31360:311;;;:::o;31677:308::-;31739:4;31829:18;31821:6;31818:30;31815:56;;;31851:18;;:::i;:::-;31815:56;31889:29;31911:6;31889:29;:::i;:::-;31881:37;;31973:4;31967;31963:15;31955:23;;31677:308;;;:::o;31991:132::-;32058:4;32081:3;32073:11;;32111:4;32106:3;32102:14;32094:22;;31991:132;;;:::o;32129:114::-;32196:6;32230:5;32224:12;32214:22;;32129:114;;;:::o;32249:99::-;32301:6;32335:5;32329:12;32319:22;;32249:99;;;:::o;32354:113::-;32424:4;32456;32451:3;32447:14;32439:22;;32354:113;;;:::o;32473:184::-;32572:11;32606:6;32601:3;32594:19;32646:4;32641:3;32637:14;32622:29;;32473:184;;;;:::o;32663:168::-;32746:11;32780:6;32775:3;32768:19;32820:4;32815:3;32811:14;32796:29;;32663:168;;;;:::o;32837:169::-;32921:11;32955:6;32950:3;32943:19;32995:4;32990:3;32986:14;32971:29;;32837:169;;;;:::o;33012:305::-;33052:3;33071:20;33089:1;33071:20;:::i;:::-;33066:25;;33105:20;33123:1;33105:20;:::i;:::-;33100:25;;33259:1;33191:66;33187:74;33184:1;33181:81;33178:107;;;33265:18;;:::i;:::-;33178:107;33309:1;33306;33302:9;33295:16;;33012:305;;;;:::o;33323:191::-;33363:4;33383:20;33401:1;33383:20;:::i;:::-;33378:25;;33417:20;33435:1;33417:20;:::i;:::-;33412:25;;33456:1;33453;33450:8;33447:34;;;33461:18;;:::i;:::-;33447:34;33506:1;33503;33499:9;33491:17;;33323:191;;;;:::o;33520:96::-;33557:7;33586:24;33604:5;33586:24;:::i;:::-;33575:35;;33520:96;;;:::o;33622:90::-;33656:7;33699:5;33692:13;33685:21;33674:32;;33622:90;;;:::o;33718:126::-;33755:7;33795:42;33788:5;33784:54;33773:65;;33718:126;;;:::o;33850:77::-;33887:7;33916:5;33905:16;;33850:77;;;:::o;33933:142::-;33999:9;34032:37;34063:5;34032:37;:::i;:::-;34019:50;;33933:142;;;:::o;34081:140::-;34145:9;34178:37;34209:5;34178:37;:::i;:::-;34165:50;;34081:140;;;:::o;34227:141::-;34292:9;34325:37;34356:5;34325:37;:::i;:::-;34312:50;;34227:141;;;:::o;34374:126::-;34424:9;34457:37;34488:5;34457:37;:::i;:::-;34444:50;;34374:126;;;:::o;34506:113::-;34556:9;34589:24;34607:5;34589:24;:::i;:::-;34576:37;;34506:113;;;:::o;34625:154::-;34709:6;34704:3;34699;34686:30;34771:1;34762:6;34757:3;34753:16;34746:27;34625:154;;;:::o;34785:307::-;34853:1;34863:113;34877:6;34874:1;34871:13;34863:113;;;34962:1;34957:3;34953:11;34947:18;34943:1;34938:3;34934:11;34927:39;34899:2;34896:1;34892:10;34887:15;;34863:113;;;34994:6;34991:1;34988:13;34985:101;;;35074:1;35065:6;35060:3;35056:16;35049:27;34985:101;34834:258;34785:307;;;:::o;35098:281::-;35181:27;35203:4;35181:27;:::i;:::-;35173:6;35169:40;35311:6;35299:10;35296:22;35275:18;35263:10;35260:34;35257:62;35254:88;;;35322:18;;:::i;:::-;35254:88;35362:10;35358:2;35351:22;35141:238;35098:281;;:::o;35385:233::-;35424:3;35447:24;35465:5;35447:24;:::i;:::-;35438:33;;35493:66;35486:5;35483:77;35480:103;;;35563:18;;:::i;:::-;35480:103;35610:1;35603:5;35599:13;35592:20;;35385:233;;;:::o;35624:180::-;35672:77;35669:1;35662:88;35769:4;35766:1;35759:15;35793:4;35790:1;35783:15;35810:180;35858:77;35855:1;35848:88;35955:4;35952:1;35945:15;35979:4;35976:1;35969:15;35996:180;36044:77;36041:1;36034:88;36141:4;36138:1;36131:15;36165:4;36162:1;36155:15;36182:180;36230:77;36227:1;36220:88;36327:4;36324:1;36317:15;36351:4;36348:1;36341:15;36368:117;36477:1;36474;36467:12;36491:117;36600:1;36597;36590:12;36614:117;36723:1;36720;36713:12;36737:117;36846:1;36843;36836:12;36860:117;36969:1;36966;36959:12;36983:102;37024:6;37075:2;37071:7;37066:2;37059:5;37055:14;37051:28;37041:38;;36983:102;;;:::o;37091:175::-;37231:27;37227:1;37219:6;37215:14;37208:51;37091:175;:::o;37272:249::-;37412:34;37408:1;37400:6;37396:14;37389:58;37481:32;37476:2;37468:6;37464:15;37457:57;37272:249;:::o;37527:225::-;37667:34;37663:1;37655:6;37651:14;37644:58;37736:8;37731:2;37723:6;37719:15;37712:33;37527:225;:::o;37758:154::-;37898:6;37894:1;37886:6;37882:14;37875:30;37758:154;:::o;37918:222::-;38058:34;38054:1;38046:6;38042:14;38035:58;38127:5;38122:2;38114:6;38110:15;38103:30;37918:222;:::o;38146:170::-;38286:22;38282:1;38274:6;38270:14;38263:46;38146:170;:::o;38322:244::-;38462:34;38458:1;38450:6;38446:14;38439:58;38531:27;38526:2;38518:6;38514:15;38507:52;38322:244;:::o;38572:170::-;38712:22;38708:1;38700:6;38696:14;38689:46;38572:170;:::o;38748:179::-;38888:31;38884:1;38876:6;38872:14;38865:55;38748:179;:::o;38933:169::-;39073:21;39069:1;39061:6;39057:14;39050:45;38933:169;:::o;39108:182::-;39248:34;39244:1;39236:6;39232:14;39225:58;39108:182;:::o;39296:161::-;39436:13;39432:1;39424:6;39420:14;39413:37;39296:161;:::o;39463:180::-;39603:32;39599:1;39591:6;39587:14;39580:56;39463:180;:::o;39649:224::-;39789:34;39785:1;39777:6;39773:14;39766:58;39858:7;39853:2;39845:6;39841:15;39834:32;39649:224;:::o;39879:::-;40019:34;40015:1;40007:6;40003:14;39996:58;40088:7;40083:2;40075:6;40071:15;40064:32;39879:224;:::o;40109:173::-;40249:25;40245:1;40237:6;40233:14;40226:49;40109:173;:::o;40288:181::-;40428:33;40424:1;40416:6;40412:14;40405:57;40288:181;:::o;40475:177::-;40615:29;40611:1;40603:6;40599:14;40592:53;40475:177;:::o;40658:173::-;40798:25;40794:1;40786:6;40782:14;40775:49;40658:173;:::o;40837:122::-;40910:24;40928:5;40910:24;:::i;:::-;40903:5;40900:35;40890:63;;40949:1;40946;40939:12;40890:63;40837:122;:::o;40965:116::-;41035:21;41050:5;41035:21;:::i;:::-;41028:5;41025:32;41015:60;;41071:1;41068;41061:12;41015:60;40965:116;:::o;41087:122::-;41160:24;41178:5;41160:24;:::i;:::-;41153:5;41150:35;41140:63;;41199:1;41196;41189:12;41140:63;41087:122;:::o

Swarm Source

ipfs://8eaee17d40e7282267f4ff8767aa2c4c5fde805ada0e602f1e6225d29a180d46

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.