ETH Price: $3,398.04 (-1.77%)
Gas: 5 Gwei

Contract

0x2cc4A6C6D5Ff183d7E3c7e33e9Bc10d55BDBaEA8
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Create New Pool168328562023-03-15 10:59:23492 days ago1678877963IN
Poolz Finance: Locked Tokens
0 ETH0.0040735921.43071906
Create New Pool168319982023-03-15 8:04:35492 days ago1678867475IN
Poolz Finance: Locked Tokens
0 ETH0.0044269123.28948579
Create New Pool168287232023-03-14 21:00:11492 days ago1678827611IN
Poolz Finance: Locked Tokens
0 ETH0.0058837634.01371498
Create New Pool168285632023-03-14 20:27:35492 days ago1678825655IN
Poolz Finance: Locked Tokens
0 ETH0.0059324431.20995013
Create New Pool168285262023-03-14 20:20:11492 days ago1678825211IN
Poolz Finance: Locked Tokens
0 ETH0.00802942.24237139
Create New Pool168252762023-03-14 9:24:47493 days ago1678785887IN
Poolz Finance: Locked Tokens
0 ETH0.0031823818.3959434
Withdraw Token168252742023-03-14 9:24:23493 days ago1678785863IN
Poolz Finance: Locked Tokens
0 ETH0.0010867318.36415104
Withdraw Token168252732023-03-14 9:24:11493 days ago1678785851IN
Poolz Finance: Locked Tokens
0 ETH0.0011057118.68491694
Withdraw Token168252722023-03-14 9:23:59493 days ago1678785839IN
Poolz Finance: Locked Tokens
0 ETH0.0011204618.93419937
Withdraw Token168252702023-03-14 9:23:35493 days ago1678785815IN
Poolz Finance: Locked Tokens
0 ETH0.0011209218.94187862
Withdraw Token168252642023-03-14 9:22:23493 days ago1678785743IN
Poolz Finance: Locked Tokens
0 ETH0.0010563717.85104051
Withdraw Token168252642023-03-14 9:22:23493 days ago1678785743IN
Poolz Finance: Locked Tokens
0 ETH0.0010563717.85104051
Withdraw Token168252632023-03-14 9:22:11493 days ago1678785731IN
Poolz Finance: Locked Tokens
0 ETH0.0005121818.14002942
Withdraw Token168252632023-03-14 9:22:11493 days ago1678785731IN
Poolz Finance: Locked Tokens
0 ETH0.0010734718.14002942
Withdraw Token168252622023-03-14 9:21:59493 days ago1678785719IN
Poolz Finance: Locked Tokens
0 ETH0.0010946118.49734546
Withdraw Token168252622023-03-14 9:21:59493 days ago1678785719IN
Poolz Finance: Locked Tokens
0 ETH0.0010946118.49734546
Withdraw Token168252602023-03-14 9:21:35493 days ago1678785695IN
Poolz Finance: Locked Tokens
0 ETH0.0012623618.54734994
Create New Pool168242212023-03-14 5:50:35493 days ago1678773035IN
Poolz Finance: Locked Tokens
0 ETH0.0031660618.30286404
Withdraw Token168242112023-03-14 5:48:23493 days ago1678772903IN
Poolz Finance: Locked Tokens
0 ETH0.0008824617.31607015
Withdraw Token168242092023-03-14 5:47:59493 days ago1678772879IN
Poolz Finance: Locked Tokens
0 ETH0.000927818.20580438
Withdraw Token168238682023-03-14 4:39:11493 days ago1678768751IN
Poolz Finance: Locked Tokens
0 ETH0.0010959921.50607036
Withdraw Token168238662023-03-14 4:38:47493 days ago1678768727IN
Poolz Finance: Locked Tokens
0 ETH0.0014419621.18603906
Withdraw Token168220062023-03-13 22:22:23493 days ago1678746143IN
Poolz Finance: Locked Tokens
0 ETH0.0012487524.50370191
Withdraw Token168220042023-03-13 22:21:59493 days ago1678746119IN
Poolz Finance: Locked Tokens
0 ETH0.0016855224.76459603
Withdraw Token168193132023-03-13 13:17:23493 days ago1678713443IN
Poolz Finance: Locked Tokens
0 ETH0.0016724928.26255003
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:
LockedDeal

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-03
*/

pragma solidity ^0.6.0;// SPDX-License-Identifier: MIT



/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}



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

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

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

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

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

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

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

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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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







/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}






contract ERC20Helper  {
    event TransferOut(uint256 Amount, address To, address Token);
    event TransferIn(uint256 Amount, address From, address Token);
    modifier TestAllownce(
        address _token,
        address _owner,
        uint256 _amount
    ) {
        require(
            ERC20(_token).allowance(_owner, address(this)) >= _amount,
            "no allowance"
        );
        _;
    }

    function TransferToken(
        address _Token,
        address _Reciver,
        uint256 _Amount
    ) internal {
        uint256 OldBalance = CheckBalance(_Token, address(this));
        emit TransferOut(_Amount, _Reciver, _Token);
        ERC20(_Token).transfer(_Reciver, _Amount);
        require(
            (SafeMath.add(CheckBalance(_Token, address(this)), _Amount)) == OldBalance
                ,
            "recive wrong amount of tokens"
        );
    }

    function CheckBalance(address _Token, address _Subject)
        internal
        view
        returns (uint256)
    {
        return ERC20(_Token).balanceOf(_Subject);
    }

    function TransferInToken(
        address _Token,
        address _Subject,
        uint256 _Amount
    ) internal TestAllownce(_Token, _Subject, _Amount) {
        require(_Amount > 0);
        uint256 OldBalance = CheckBalance(_Token, address(this));
        ERC20(_Token).transferFrom(_Subject, address(this), _Amount);
        emit TransferIn(_Amount, _Subject, _Token);
        require(
            (SafeMath.add(OldBalance, _Amount)) ==
                CheckBalance(_Token, address(this)),
            "recive wrong amount of tokens"
        );
    }

    function ApproveAllowanceERC20(
        address _Token,
        address _Subject,
        uint256 _Amount
    ) internal {
        require(_Amount > 0);
        ERC20(_Token).approve(_Subject, _Amount);
    }
}




/**
 * @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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}





contract GovManager is Ownable {
    address public GovernerContract;

    modifier onlyOwnerOrGov() {
        require(msg.sender == owner() || msg.sender == GovernerContract, "Authorization Error");
        _;
    }

    function setGovernerContract(address _address) external onlyOwnerOrGov{
        GovernerContract = _address;
    }

    constructor() public {
        GovernerContract = address(0);
    }
}





contract PozBenefit is GovManager {
    constructor() public {
        PozFee = 15; // *10000
        PozTimer = 1000; // *10000
    
       // POZ_Address = address(0x0);
       // POZBenefit_Address = address(0x0);
    }

    uint256 public PozFee; // the fee for the first part of the pool
    uint256 public PozTimer; //the timer for the first part fo the pool
    
    modifier PercentCheckOk(uint256 _percent) {
        if (_percent < 10000) _;
        else revert("Not in range");
    }
    modifier LeftIsBigger(uint256 _left, uint256 _right) {
        if (_left > _right) _;
        else revert("Not bigger");
    }

    function SetPozTimer(uint256 _pozTimer)
        public
        onlyOwnerOrGov
        PercentCheckOk(_pozTimer)
    {
        PozTimer = _pozTimer;
    }

    
}





contract ETHHelper is Ownable {
    constructor() public {
        IsPayble = false;
    }

    modifier ReceivETH(uint256 msgValue, address msgSender, uint256 _MinETHInvest) {
        require(msgValue >= _MinETHInvest, "Send ETH to invest");
        emit TransferInETH(msgValue, msgSender);
        _;
    }

    //@dev not/allow contract to receive funds
    receive() external payable {
        if (!IsPayble) revert();
    }

    event TransferOutETH(uint256 Amount, address To);
    event TransferInETH(uint256 Amount, address From);

    bool public IsPayble;
 
    function SwitchIsPayble() public onlyOwner {
        IsPayble = !IsPayble;
    }

    function TransferETH(address payable _Reciver, uint256 _ammount) internal {
        emit TransferOutETH(_ammount, _Reciver);
        uint256 beforeBalance = address(_Reciver).balance;
        _Reciver.transfer(_ammount);
        require(
            SafeMath.add(beforeBalance, _ammount) == address(_Reciver).balance,
            "The transfer did not complite"
        );
    }
 
}



//For whitelist, 
interface IWhiteList {
    function Check(address _Subject, uint256 _Id) external view returns(uint);
    function Register(address _Subject,uint256 _Id,uint256 _Amount) external;
    function IsNeedRegister(uint256 _Id) external view returns(bool);
    function LastRoundRegister(address _Subject,uint256 _Id) external;
}







contract Manageable is ETHHelper, ERC20Helper, PozBenefit {
    constructor() public {
        Fee = 20; // *10000
        MinDuration = 0; //need to set
        maxTransactionLimit = 400;
    }
    mapping (address => uint256) FeeMap;
    //@dev for percent use uint16
    uint16 internal Fee; //the fee for the pool
    uint16 internal MinDuration; //the minimum duration of a pool, in seconds

    address public WhiteList_Address;
    bool public isTokenFilterOn;
    uint public WhiteListId;
    uint256 public maxTransactionLimit;
    
    function setWhiteListAddress(address _address) external onlyOwner{
        WhiteList_Address = _address;
    }

    function setWhiteListId(uint256 _id) external onlyOwner{
        WhiteListId= _id;
    }

    function swapTokenFilter() external onlyOwner{
        isTokenFilterOn = !isTokenFilterOn;
    }

    function isTokenWhiteListed(address _tokenAddress) public view returns(bool) {
        return !isTokenFilterOn || IWhiteList(WhiteList_Address).Check(_tokenAddress, WhiteListId) > 0;
    }

    function setMaxTransactionLimit(uint256 _newLimit) external onlyOwner{
        maxTransactionLimit = _newLimit;
    }

    function GetMinDuration() public view returns (uint16) {
        return MinDuration;
    }

    function SetMinDuration(uint16 _minDuration) public onlyOwner {
        MinDuration = _minDuration;
    }

    function GetFee() public view returns (uint16) {
        return Fee;
    }

    function SetFee(uint16 _fee) public onlyOwner
        PercentCheckOk(_fee)
        LeftIsBigger( _fee, PozFee) {
        Fee = _fee;
    }

    function SetPOZFee(uint16 _fee)
        public
        onlyOwner
        PercentCheckOk(_fee)
        LeftIsBigger( Fee,_fee)
    {
        PozFee = _fee;
    }

    function WithdrawETHFee(address payable _to) public onlyOwner {
        _to.transfer(address(this).balance); // keeps only fee eth on contract //To Do need to take 16% to burn!!!
    }

    function WithdrawERC20Fee(address _Token, address _to) public onlyOwner {    
        ERC20(_Token).transfer(_to, FeeMap[_Token]);
        FeeMap[_Token] = 0 ;
    }
}





contract LockedPoolz is Manageable {
    constructor() public {
        Index = 0;
    }
    
    // add contract name
    string public name;

    event NewPoolCreated(uint256 PoolId, address Token, uint64 FinishTime, uint256 StartAmount, address Owner);
    event PoolOwnershipTransfered(uint256 PoolId, address NewOwner, address OldOwner);
    event PoolApproval(uint256 PoolId, address Spender, uint256 Amount);

    struct Pool {
        uint64 UnlockTime;
        uint256 Amount;
        address Owner;
        address Token;
        mapping(address => uint) Allowance;
    }
    // transfer ownership
    // allowance
    // split amount

    mapping(uint256 => Pool) AllPoolz;
    mapping(address => uint256[]) MyPoolz;
    uint256 internal Index;

    modifier isTokenValid(address _Token){
        require(isTokenWhiteListed(_Token), "Need Valid ERC20 Token"); //check if _Token is ERC20
        _;
    }

    modifier isPoolValid(uint256 _PoolId){
        require(_PoolId < Index, "Pool does not exist");
        _;
    }

    modifier isPoolOwner(uint256 _PoolId){
        require(AllPoolz[_PoolId].Owner == msg.sender, "You are not Pool Owner");
        _;
    }

    modifier isAllowed(uint256 _PoolId, uint256 _amount){
        require(_amount <= AllPoolz[_PoolId].Allowance[msg.sender], "Not enough Allowance");
        _;
    }

    modifier isLocked(uint256 _PoolId){
        require(AllPoolz[_PoolId].UnlockTime > now, "Pool is Unlocked");
        _;
    }

    modifier notZeroAddress(address _address){
        require(_address != address(0x0), "Zero Address is not allowed");
        _;
    }

    modifier isGreaterThanZero(uint256 _num){
        require(_num > 0, "Array length should be greater than zero");
        _;
    }

    modifier isBelowLimit(uint256 _num){
        require(_num <= maxTransactionLimit, "Max array length limit exceeded");
        _;
    }

    function SplitPool(uint256 _PoolId, uint256 _NewAmount , address _NewOwner) internal returns(uint256) {
        Pool storage pool = AllPoolz[_PoolId];
        require(pool.Amount >= _NewAmount, "Not Enough Amount Balance");
        uint256 poolAmount = SafeMath.sub(pool.Amount, _NewAmount);
        pool.Amount = poolAmount;
        uint256 poolId = CreatePool(pool.Token, pool.UnlockTime, _NewAmount, _NewOwner);
        return poolId;
    }

    //create a new pool
    function CreatePool(
        address _Token, //token to lock address
        uint64 _FinishTime, //Until what time the pool will work
        uint256 _StartAmount, //Total amount of the tokens to sell in the pool
        address _Owner // Who the tokens belong to
    ) internal returns(uint256){
        //register the pool
        AllPoolz[Index] = Pool(_FinishTime, _StartAmount, _Owner, _Token);
        MyPoolz[_Owner].push(Index);
        emit NewPoolCreated(Index, _Token, _FinishTime, _StartAmount, _Owner);
        uint256 poolId = Index;
        Index = SafeMath.add(Index, 1); //joke - overflowfrom 0 on int256 = 1.16E77
        return poolId;
    }
}




contract LockedControl is LockedPoolz{

    function TransferPoolOwnership(
        uint256 _PoolId,
        address _NewOwner
    ) external isPoolValid(_PoolId) isPoolOwner(_PoolId) isLocked(_PoolId) notZeroAddress(_NewOwner) {
        Pool storage pool = AllPoolz[_PoolId];
        pool.Owner = _NewOwner;
        emit PoolOwnershipTransfered(_PoolId, _NewOwner, msg.sender);
    }

    function SplitPoolAmount(
        uint256 _PoolId,
        uint256 _NewAmount,
        address _NewOwner
    ) external isPoolValid(_PoolId) isPoolOwner(_PoolId) isLocked(_PoolId) returns(uint256) {
        uint256 poolId = SplitPool(_PoolId, _NewAmount, _NewOwner);
        return poolId;
    }

    function ApproveAllowance(
        uint256 _PoolId,
        uint256 _Amount,
        address _Spender
    ) external isPoolValid(_PoolId) isPoolOwner(_PoolId) isLocked(_PoolId) notZeroAddress(_Spender) {
        Pool storage pool = AllPoolz[_PoolId];
        pool.Allowance[_Spender] = _Amount;
        emit PoolApproval(_PoolId, _Spender, _Amount);
    }

    function GetPoolAllowance(uint256 _PoolId, address _Address) public view isPoolValid(_PoolId) returns(uint256){
        return AllPoolz[_PoolId].Allowance[_Address];
    }

    function SplitPoolAmountFrom(
        uint256 _PoolId,
        uint256 _Amount,
        address _Address
    ) external isPoolValid(_PoolId) isAllowed(_PoolId, _Amount) isLocked(_PoolId) returns(uint256) {
        uint256 poolId = SplitPool(_PoolId, _Amount, _Address);
        Pool storage pool = AllPoolz[_PoolId];
        uint256 _NewAmount = SafeMath.sub(pool.Allowance[msg.sender], _Amount);
        pool.Allowance[_Address]  = _NewAmount;
        return poolId;
    }

    function CreateNewPool(
        address _Token, //token to lock address
        uint64 _FinishTime, //Until what time the pool will work
        uint256 _StartAmount, //Total amount of the tokens to sell in the pool
        address _Owner // Who the tokens belong to
    ) public isTokenValid(_Token) notZeroAddress(_Owner) returns(uint256) {
        TransferInToken(_Token, msg.sender, _StartAmount);
        uint256 poolId = CreatePool(_Token, _FinishTime, _StartAmount, _Owner);
        return poolId;
    }

    function CreateMassPools(
        address _Token,
        uint64[] calldata _FinishTime,
        uint256[] calldata _StartAmount,
        address[] calldata _Owner
    ) external isGreaterThanZero(_Owner.length) isBelowLimit(_Owner.length) returns(uint256, uint256) {
        require(_Owner.length == _FinishTime.length, "Date Array Invalid");
        require(_Owner.length == _StartAmount.length, "Amount Array Invalid");
        TransferInToken(_Token, msg.sender, getArraySum(_StartAmount));
        uint256 firstPoolId = Index;
        for(uint i=0 ; i < _Owner.length; i++){
            CreatePool(_Token, _FinishTime[i], _StartAmount[i], _Owner[i]);
        }
        uint256 lastPoolId = SafeMath.sub(Index, 1);
        return (firstPoolId, lastPoolId);
    }

    // create pools with respect to finish time
    function CreatePoolsWrtTime(
        address _Token,
        uint64[] calldata _FinishTime,
        uint256[] calldata _StartAmount,
        address[] calldata _Owner
    )   external 
        isGreaterThanZero(_Owner.length)
        isGreaterThanZero(_FinishTime.length)
        isBelowLimit(_Owner.length * _FinishTime.length)
        returns(uint256, uint256)
    {
        require(_Owner.length == _StartAmount.length, "Amount Array Invalid");
        TransferInToken(_Token, msg.sender, getArraySum(_StartAmount) * _FinishTime.length);
        uint256 firstPoolId = Index;
        for(uint i=0 ; i < _FinishTime.length ; i++){
            for(uint j=0 ; j < _Owner.length ; j++){
                CreatePool(_Token, _FinishTime[i], _StartAmount[j], _Owner[j]);
            }
        }
        uint256 lastPoolId = SafeMath.sub(Index, 1);
        return (firstPoolId, lastPoolId);
    }

    function getArraySum(uint256[] calldata _array) internal pure returns(uint256) {
        uint256 sum = 0;
        for(uint i=0 ; i<_array.length ; i++){
            sum = sum + _array[i];
        }
        return sum;
    }

}




contract LockedPoolzData is LockedControl {
    function GetMyPoolsId() public view returns (uint256[] memory) {
        return MyPoolz[msg.sender];
    }

    function GetPoolData(uint256 _id)
        public
        view
        isPoolValid(_id)
        returns (
            uint64,
            uint256,
            address,
            address
        )
    {
        Pool storage pool = AllPoolz[_id];
        require(pool.Owner == msg.sender || pool.Allowance[msg.sender] > 0, "Private Information");
        return (
            AllPoolz[_id].UnlockTime,
            AllPoolz[_id].Amount,
            AllPoolz[_id].Owner,
            AllPoolz[_id].Token
        );
    }
}




contract LockedDeal is LockedPoolzData {
    constructor() public {
        StartIndex = 0;
    }

    uint256 internal StartIndex;

    //@dev no use of revert to make sure the loop will work
    function WithdrawToken(uint256 _PoolId) public returns (bool) {
        //pool is finished + got left overs + did not took them
        if (
            _PoolId < Index &&
            AllPoolz[_PoolId].UnlockTime <= now &&
            AllPoolz[_PoolId].Amount > 0
        ) {
            TransferToken(
                AllPoolz[_PoolId].Token,
                AllPoolz[_PoolId].Owner,
                AllPoolz[_PoolId].Amount
            );
            AllPoolz[_PoolId].Amount = 0;
            return true;
        }
        return false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"PoolId","type":"uint256"},{"indexed":false,"internalType":"address","name":"Token","type":"address"},{"indexed":false,"internalType":"uint64","name":"FinishTime","type":"uint64"},{"indexed":false,"internalType":"uint256","name":"StartAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"Owner","type":"address"}],"name":"NewPoolCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"PoolId","type":"uint256"},{"indexed":false,"internalType":"address","name":"Spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"PoolApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"PoolId","type":"uint256"},{"indexed":false,"internalType":"address","name":"NewOwner","type":"address"},{"indexed":false,"internalType":"address","name":"OldOwner","type":"address"}],"name":"PoolOwnershipTransfered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"Amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"From","type":"address"},{"indexed":false,"internalType":"address","name":"Token","type":"address"}],"name":"TransferIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"Amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"From","type":"address"}],"name":"TransferInETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"Amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"To","type":"address"},{"indexed":false,"internalType":"address","name":"Token","type":"address"}],"name":"TransferOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"Amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"To","type":"address"}],"name":"TransferOutETH","type":"event"},{"inputs":[{"internalType":"uint256","name":"_PoolId","type":"uint256"},{"internalType":"uint256","name":"_Amount","type":"uint256"},{"internalType":"address","name":"_Spender","type":"address"}],"name":"ApproveAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_Token","type":"address"},{"internalType":"uint64[]","name":"_FinishTime","type":"uint64[]"},{"internalType":"uint256[]","name":"_StartAmount","type":"uint256[]"},{"internalType":"address[]","name":"_Owner","type":"address[]"}],"name":"CreateMassPools","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_Token","type":"address"},{"internalType":"uint64","name":"_FinishTime","type":"uint64"},{"internalType":"uint256","name":"_StartAmount","type":"uint256"},{"internalType":"address","name":"_Owner","type":"address"}],"name":"CreateNewPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_Token","type":"address"},{"internalType":"uint64[]","name":"_FinishTime","type":"uint64[]"},{"internalType":"uint256[]","name":"_StartAmount","type":"uint256[]"},{"internalType":"address[]","name":"_Owner","type":"address[]"}],"name":"CreatePoolsWrtTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"GetFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GetMinDuration","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GetMyPoolsId","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PoolId","type":"uint256"},{"internalType":"address","name":"_Address","type":"address"}],"name":"GetPoolAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"GetPoolData","outputs":[{"internalType":"uint64","name":"","type":"uint64"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GovernerContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IsPayble","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PozFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PozTimer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_fee","type":"uint16"}],"name":"SetFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_minDuration","type":"uint16"}],"name":"SetMinDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_fee","type":"uint16"}],"name":"SetPOZFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pozTimer","type":"uint256"}],"name":"SetPozTimer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PoolId","type":"uint256"},{"internalType":"uint256","name":"_NewAmount","type":"uint256"},{"internalType":"address","name":"_NewOwner","type":"address"}],"name":"SplitPoolAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PoolId","type":"uint256"},{"internalType":"uint256","name":"_Amount","type":"uint256"},{"internalType":"address","name":"_Address","type":"address"}],"name":"SplitPoolAmountFrom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SwitchIsPayble","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PoolId","type":"uint256"},{"internalType":"address","name":"_NewOwner","type":"address"}],"name":"TransferPoolOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WhiteListId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhiteList_Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_Token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"WithdrawERC20Fee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"WithdrawETHFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PoolId","type":"uint256"}],"name":"WithdrawToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isTokenFilterOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"isTokenWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setGovernerContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWhiteListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"setWhiteListId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenFilter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506000620000246200018a60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060008060146101000a81548160ff0219169083151502179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f6002819055506103e86003819055506014600560006101000a81548161ffff021916908361ffff1602179055506000600560026101000a81548161ffff021916908361ffff1602179055506101906007819055506000600b819055506000600c8190555062000192565b600033905090565b6145b880620001a26000396000f3fe6080604052600436106102295760003560e01c80638da5cb5b11610123578063e4dc37bb116100ab578063f2f6fb0b1161006f578063f2f6fb0b14610e10578063f2fde38b14610e89578063f318824814610eda578063f8d5c26b14610f15578063fc1a86ff14610f5457610249565b8063e4dc37bb14610c64578063e76bb75614610c93578063ea9223a614610cbe578063eb41051e14610d58578063ecf1a2c914610dd157610249565b8063aac5da5c116100f2578063aac5da5c14610b8d578063abb7add214610ba4578063af09f51814610bcf578063af92920814610bfc578063b5f98b8e14610c3757610249565b80638da5cb5b14610a695780639642ec0c14610aaa578063991e979a14610aeb578063a4b910fb14610b3c57610249565b806348d9614d116101b157806366818967116101755780636681896714610934578063676c84581461098557806367e02dd9146109b0578063715018a614610a175780637a9d7c1414610a2e57610249565b806348d9614d1461079a57806350bd122d146107c957806353eb3167146108385780635d1d10401461086357806363552a49146108c857610249565b80631b45d17b116101f85780631b45d17b146103b957806327bbea3a1461052457806330e94541146105755780633639dc53146106185780633b8850701461078357610249565b806306fdde031461024e5780630cd8e965146102de57806311fad2091461031f578063179664b51461035e57610249565b3661024957600060149054906101000a900460ff1661024757600080fd5b005b600080fd5b34801561025a57600080fd5b50610263610fc5565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a3578082015181840152602081019050610288565b50505050905090810190601f1680156102d05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ea57600080fd5b506102f3611063565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561032b57600080fd5b5061035c6004803603602081101561034257600080fd5b81019080803561ffff169060200190929190505050611089565b005b34801561036a57600080fd5b506103b76004803603604081101561038157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611260565b005b3480156103c557600080fd5b50610507600480360360808110156103dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561041957600080fd5b82018360208201111561042b57600080fd5b8035906020019184602083028401116401000000008311171561044d57600080fd5b90919293919293908035906020019064010000000081111561046e57600080fd5b82018360208201111561048057600080fd5b803590602001918460208302840111640100000000831117156104a257600080fd5b9091929391929390803590602001906401000000008111156104c357600080fd5b8201836020820111156104d557600080fd5b803590602001918460208302840111640100000000831117156104f757600080fd5b90919293919293905050506115d4565b604051808381526020018281526020019250505060405180910390f35b34801561053057600080fd5b506105736004803603602081101561054757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611867565b005b34801561058157600080fd5b506106026004803603608081101561059857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803567ffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061195a565b6040518082815260200191505060405180910390f35b34801561062457600080fd5b506107666004803603608081101561063b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561067857600080fd5b82018360208201111561068a57600080fd5b803590602001918460208302840111640100000000831117156106ac57600080fd5b9091929391929390803590602001906401000000008111156106cd57600080fd5b8201836020820111156106df57600080fd5b8035906020019184602083028401116401000000008311171561070157600080fd5b90919293919293908035906020019064010000000081111561072257600080fd5b82018360208201111561073457600080fd5b8035906020019184602083028401116401000000008311171561075657600080fd5b9091929391929390505050611aa5565b604051808381526020018281526020019250505060405180910390f35b34801561078f57600080fd5b50610798611d41565b005b3480156107a657600080fd5b506107af611e1c565b604051808261ffff16815260200191505060405180910390f35b3480156107d557600080fd5b50610822600480360360408110156107ec57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e34565b6040518082815260200191505060405180910390f35b34801561084457600080fd5b5061084d611f0b565b6040518082815260200191505060405180910390f35b34801561086f57600080fd5b506108c66004803603606081101561088657600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f11565b005b3480156108d457600080fd5b506108dd612273565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610920578082015181840152602081019050610905565b505050509050019250505060405180910390f35b34801561094057600080fd5b506109836004803603602081101561095757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612308565b005b34801561099157600080fd5b5061099a61244c565b6040518082815260200191505060405180910390f35b3480156109bc57600080fd5b506109ff600480360360208110156109d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612452565b60405180821515815260200191505060405180910390f35b348015610a2357600080fd5b50610a2c612544565b005b348015610a3a57600080fd5b50610a6760048036036020811015610a5157600080fd5b81019080803590602001909291905050506126b1565b005b348015610a7557600080fd5b50610a7e61276a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ab657600080fd5b50610abf612793565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610af757600080fd5b50610b3a60048036036020811015610b0e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127b9565b005b348015610b4857600080fd5b50610b7560048036036020811015610b5f57600080fd5b81019080803590602001909291905050506128b2565b60405180821515815260200191505060405180910390f35b348015610b9957600080fd5b50610ba26129dc565b005b348015610bb057600080fd5b50610bb9612ab7565b6040518082815260200191505060405180910390f35b348015610bdb57600080fd5b50610be4612abd565b60405180821515815260200191505060405180910390f35b348015610c0857600080fd5b50610c3560048036036020811015610c1f57600080fd5b8101908080359060200190929190505050612ad0565b005b348015610c4357600080fd5b50610c4c612b89565b60405180821515815260200191505060405180910390f35b348015610c7057600080fd5b50610c79612b9c565b604051808261ffff16815260200191505060405180910390f35b348015610c9f57600080fd5b50610ca8612bb4565b6040518082815260200191505060405180910390f35b348015610cca57600080fd5b50610cf760048036036020811015610ce157600080fd5b8101908080359060200190929190505050612bba565b604051808567ffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405180910390f35b348015610d6457600080fd5b50610dbb60048036036060811015610d7b57600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e21565b6040518082815260200191505060405180910390f35b348015610ddd57600080fd5b50610e0e60048036036020811015610df457600080fd5b81019080803561ffff16906020019092919050505061303a565b005b348015610e1c57600080fd5b50610e7360048036036060811015610e3357600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613109565b6040518082815260200191505060405180910390f35b348015610e9557600080fd5b50610ed860048036036020811015610eac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506133c4565b005b348015610ee657600080fd5b50610f1360048036036020811015610efd57600080fd5b81019080803590602001909291905050506135b6565b005b348015610f2157600080fd5b50610f5260048036036020811015610f3857600080fd5b81019080803561ffff16906020019092919050505061373f565b005b348015610f6057600080fd5b50610fc360048036036040811015610f7757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613916565b005b60088054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561105b5780601f106110305761010080835404028352916020019161105b565b820191906000526020600020905b81548152906001019060200180831161103e57829003601f168201915b505050505081565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611091613afa565b73ffffffffffffffffffffffffffffffffffffffff166110af61276a565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8061ffff166127108110156111ee57600560009054906101000a900461ffff1661ffff168261ffff1680821115611179578361ffff166002819055506111e7565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f4e6f74206269676765720000000000000000000000000000000000000000000081525060200191505060405180910390fd5b505061125c565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f4e6f7420696e2072616e6765000000000000000000000000000000000000000081525060200191505060405180910390fd5b5050565b81600b5481106112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b823373ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f596f7520617265206e6f7420506f6f6c204f776e65720000000000000000000081525060200191505060405180910390fd5b83426009600083815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff161161145a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f506f6f6c20697320556e6c6f636b65640000000000000000000000000000000081525060200191505060405180910390fd5b83600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5a65726f2041646472657373206973206e6f7420616c6c6f776564000000000081525060200191505060405180910390fd5b6000600960008881526020019081526020016000209050858160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9f703773b7cb4fe343150d2b2c7651f39f7fa245064aa48074479fcb655aba61878733604051808481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a150505050505050565b6000808383905060008111611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061455b6028913960400191505060405180910390fd5b848490506007548111156116b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4d6178206172726179206c656e677468206c696d69742065786365656465640081525060200191505060405180910390fd5b89899050868690501461172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4461746520417272617920496e76616c6964000000000000000000000000000081525060200191505060405180910390fd5b8787905086869050146117a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f416d6f756e7420417272617920496e76616c696400000000000000000000000081525060200191505060405180910390fd5b6117ba8b336117b58b8b613b02565b613b46565b6000600b54905060005b8787905081101561183f576118318d8d8d848181106117df57fe5b9050602002013567ffffffffffffffff168c8c858181106117fc57fe5b905060200201358b8b8681811061180f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16613e67565b5080806001019150506117c4565b50600061184f600b5460016140bc565b90508181955095505050505097509795505050505050565b61186f613afa565b73ffffffffffffffffffffffffffffffffffffffff1661188d61276a565b73ffffffffffffffffffffffffffffffffffffffff1614611916576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008461196681612452565b6119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4e6565642056616c696420455243323020546f6b656e0000000000000000000081525060200191505060405180910390fd5b82600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5a65726f2041646472657373206973206e6f7420616c6c6f776564000000000081525060200191505060405180910390fd5b611a87873387613b46565b6000611a9588888888613e67565b9050809350505050949350505050565b6000808383905060008111611b05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061455b6028913960400191505060405180910390fd5b8888905060008111611b62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061455b6028913960400191505060405180910390fd5b898990508686905002600754811115611be3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4d6178206172726179206c656e677468206c696d69742065786365656465640081525060200191505060405180910390fd5b888890508787905014611c5e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f416d6f756e7420417272617920496e76616c696400000000000000000000000081525060200191505060405180910390fd5b611c778c338d8d9050611c718d8d613b02565b02613b46565b6000600b54905060005b8c8c9050811015611d185760005b89899050811015611d0a57611cfc8f8f8f85818110611caa57fe5b9050602002013567ffffffffffffffff168e8e85818110611cc757fe5b905060200201358d8d86818110611cda57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16613e67565b508080600101915050611c8f565b508080600101915050611c81565b506000611d28600b5460016140bc565b9050818196509650505050505097509795505050505050565b611d49613afa565b73ffffffffffffffffffffffffffffffffffffffff16611d6761276a565b73ffffffffffffffffffffffffffffffffffffffff1614611df0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560189054906101000a900460ff1615600560186101000a81548160ff021916908315150217905550565b6000600560009054906101000a900461ffff16905090565b600082600b548110611eae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b6009600085815260200190815260200160002060040160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205491505092915050565b60025481565b82600b548110611f89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b833373ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612061576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f596f7520617265206e6f7420506f6f6c204f776e65720000000000000000000081525060200191505060405180910390fd5b84426009600083815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff161161210b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f506f6f6c20697320556e6c6f636b65640000000000000000000000000000000081525060200191505060405180910390fd5b83600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5a65726f2041646472657373206973206e6f7420616c6c6f776564000000000081525060200191505060405180910390fd5b6000600960008981526020019081526020016000209050868160040160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fef177b9f5ffc7f728510c5b4201368d1f257f367423c17a32f71f04f12ed90e1888789604051808481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15050505050505050565b6060600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156122fe57602002820191906000526020600020905b8154815260200190600101908083116122ea575b5050505050905090565b61231061276a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806123965750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f417574686f72697a6174696f6e204572726f720000000000000000000000000081525060200191505060405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b6000600560189054906101000a900460ff16158061253d57506000600560049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc44919b846006546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561250057600080fd5b505afa158015612514573d6000803e3d6000fd5b505050506040513d602081101561252a57600080fd5b8101908080519060200190929190505050115b9050919050565b61254c613afa565b73ffffffffffffffffffffffffffffffffffffffff1661256a61276a565b73ffffffffffffffffffffffffffffffffffffffff16146125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6126b9613afa565b73ffffffffffffffffffffffffffffffffffffffff166126d761276a565b73ffffffffffffffffffffffffffffffffffffffff1614612760576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060078190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6127c1613afa565b73ffffffffffffffffffffffffffffffffffffffff166127df61276a565b73ffffffffffffffffffffffffffffffffffffffff1614612868576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156128ae573d6000803e3d6000fd5b5050565b6000600b54821080156128f95750426009600084815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1611155b801561291b575060006009600084815260200190815260200160002060010154115b156129d2576129ad6009600084815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960008681526020019081526020016000206001015461413f565b60006009600084815260200190815260200160002060010181905550600190506129d7565b600090505b919050565b6129e4613afa565b73ffffffffffffffffffffffffffffffffffffffff16612a0261276a565b73ffffffffffffffffffffffffffffffffffffffff1614612a8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff1615600060146101000a81548160ff021916908315150217905550565b60035481565b600560189054906101000a900460ff1681565b612ad8613afa565b73ffffffffffffffffffffffffffffffffffffffff16612af661276a565b73ffffffffffffffffffffffffffffffffffffffff1614612b7f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060068190555050565b600060149054906101000a900460ff1681565b6000600560029054906101000a900461ffff16905090565b60065481565b60008060008084600b548110612c38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b60006009600088815260200190815260200160002090503373ffffffffffffffffffffffffffffffffffffffff168160020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480612cee575060008160040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b612d60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5072697661746520496e666f726d6174696f6e0000000000000000000000000081525060200191505060405180910390fd5b6009600088815260200190815260200160002060000160009054906101000a900467ffffffffffffffff166009600089815260200190815260200160002060010154600960008a815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960008b815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16955095509550955050509193509193565b600083600b548110612e9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b843373ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f596f7520617265206e6f7420506f6f6c204f776e65720000000000000000000081525060200191505060405180910390fd5b85426009600083815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff161161301d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f506f6f6c20697320556e6c6f636b65640000000000000000000000000000000081525060200191505060405180910390fd5b600061302a8888886142fa565b9050809450505050509392505050565b613042613afa565b73ffffffffffffffffffffffffffffffffffffffff1661306061276a565b73ffffffffffffffffffffffffffffffffffffffff16146130e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560026101000a81548161ffff021916908361ffff16021790555050565b600083600b548110613183576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b84846009600083815260200190815260200160002060040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561324e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f7420656e6f75676820416c6c6f77616e636500000000000000000000000081525060200191505060405180910390fd5b86426009600083815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16116132f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f506f6f6c20697320556e6c6f636b65640000000000000000000000000000000081525060200191505060405180910390fd5b60006133058989896142fa565b90506000600960008b81526020019081526020016000209050600061336b8260040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548b6140bc565b9050808260040160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550829750505050505050509392505050565b6133cc613afa565b73ffffffffffffffffffffffffffffffffffffffff166133ea61276a565b73ffffffffffffffffffffffffffffffffffffffff1614613473576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156134f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806145356026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6135be61276a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806136445750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6136b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f417574686f72697a6174696f6e204572726f720000000000000000000000000081525060200191505060405180910390fd5b806127108110156136cd578160038190555061373b565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f4e6f7420696e2072616e6765000000000000000000000000000000000000000081525060200191505060405180910390fd5b5050565b613747613afa565b73ffffffffffffffffffffffffffffffffffffffff1661376561276a565b73ffffffffffffffffffffffffffffffffffffffff16146137ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8061ffff166127108110156138a4578161ffff166002548082111561382f5783600560006101000a81548161ffff021916908361ffff16021790555061389d565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f4e6f74206269676765720000000000000000000000000000000000000000000081525060200191505060405180910390fd5b5050613912565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f4e6f7420696e2072616e6765000000000000000000000000000000000000000081525060200191505060405180910390fd5b5050565b61391e613afa565b73ffffffffffffffffffffffffffffffffffffffff1661393c61276a565b73ffffffffffffffffffffffffffffffffffffffff16146139c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613a7557600080fd5b505af1158015613a89573d6000803e3d6000fd5b505050506040513d6020811015613a9f57600080fd5b8101908080519060200190929190505050506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600033905090565b6000806000905060005b84849050811015613b3b57848482818110613b2357fe5b90506020020135820191508080600101915050613b0c565b508091505092915050565b828282808373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e84306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b158015613bcf57600080fd5b505afa158015613be3573d6000803e3d6000fd5b505050506040513d6020811015613bf957600080fd5b81019080805190602001909291905050501015613c7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f6e6f20616c6c6f77616e6365000000000000000000000000000000000000000081525060200191505060405180910390fd5b60008411613c8b57600080fd5b6000613c978730614400565b90508673ffffffffffffffffffffffffffffffffffffffff166323b872dd8730886040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015613d2857600080fd5b505af1158015613d3c573d6000803e3d6000fd5b505050506040513d6020811015613d5257600080fd5b8101908080519060200190929190505050507f1fecf4702e692891a7c2f0d328779b085efb5edd094fa5558bd5cd147a167922858789604051808481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a1613de18730614400565b613deb82876144ac565b14613e5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f7265636976652077726f6e6720616d6f756e74206f6620746f6b656e7300000081525060200191505060405180910390fd5b50505050505050565b600060405180608001604052808567ffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1681525060096000600b54815260200190815260200160002060008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600b5490806001815401808255809150506001900390600052602060002001600090919091909150557f1713fe30e292eb50e4287932dfd918a4f7dd378052ddab482552f06b975b8fe5600b5486868686604051808681526020018573ffffffffffffffffffffffffffffffffffffffff1681526020018467ffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019550505050505060405180910390a16000600b5490506140aa600b5460016144ac565b600b8190555080915050949350505050565b600082821115614134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600061414b8430614400565b90507fe4d818e6f992efbd60db553f3edce819a199baec79a784b95c89bc8ee86f2584828486604051808481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a18373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561423157600080fd5b505af1158015614245573d6000803e3d6000fd5b505050506040513d602081101561425b57600080fd5b8101908080519060200190929190505050508061428161427b8630614400565b846144ac565b146142f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f7265636976652077726f6e6720616d6f756e74206f6620746f6b656e7300000081525060200191505060405180910390fd5b50505050565b600080600960008681526020019081526020016000209050838160010154101561438c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4e6f7420456e6f75676820416d6f756e742042616c616e63650000000000000081525060200191505060405180910390fd5b600061439c8260010154866140bc565b905080826001018190555060006143f18360030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168460000160009054906101000a900467ffffffffffffffff168888613e67565b90508093505050509392505050565b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561446957600080fd5b505afa15801561447d573d6000803e3d6000fd5b505050506040513d602081101561449357600080fd5b8101908080519060200190929190505050905092915050565b60008082840190508381101561452a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b809150509291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734172726179206c656e6774682073686f756c642062652067726561746572207468616e207a65726fa2646970667358221220fa9381174d531ae8d7bfb4328c55ae65a9fce8d323e4aee38fb92706e5f0150364736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102295760003560e01c80638da5cb5b11610123578063e4dc37bb116100ab578063f2f6fb0b1161006f578063f2f6fb0b14610e10578063f2fde38b14610e89578063f318824814610eda578063f8d5c26b14610f15578063fc1a86ff14610f5457610249565b8063e4dc37bb14610c64578063e76bb75614610c93578063ea9223a614610cbe578063eb41051e14610d58578063ecf1a2c914610dd157610249565b8063aac5da5c116100f2578063aac5da5c14610b8d578063abb7add214610ba4578063af09f51814610bcf578063af92920814610bfc578063b5f98b8e14610c3757610249565b80638da5cb5b14610a695780639642ec0c14610aaa578063991e979a14610aeb578063a4b910fb14610b3c57610249565b806348d9614d116101b157806366818967116101755780636681896714610934578063676c84581461098557806367e02dd9146109b0578063715018a614610a175780637a9d7c1414610a2e57610249565b806348d9614d1461079a57806350bd122d146107c957806353eb3167146108385780635d1d10401461086357806363552a49146108c857610249565b80631b45d17b116101f85780631b45d17b146103b957806327bbea3a1461052457806330e94541146105755780633639dc53146106185780633b8850701461078357610249565b806306fdde031461024e5780630cd8e965146102de57806311fad2091461031f578063179664b51461035e57610249565b3661024957600060149054906101000a900460ff1661024757600080fd5b005b600080fd5b34801561025a57600080fd5b50610263610fc5565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a3578082015181840152602081019050610288565b50505050905090810190601f1680156102d05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ea57600080fd5b506102f3611063565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561032b57600080fd5b5061035c6004803603602081101561034257600080fd5b81019080803561ffff169060200190929190505050611089565b005b34801561036a57600080fd5b506103b76004803603604081101561038157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611260565b005b3480156103c557600080fd5b50610507600480360360808110156103dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561041957600080fd5b82018360208201111561042b57600080fd5b8035906020019184602083028401116401000000008311171561044d57600080fd5b90919293919293908035906020019064010000000081111561046e57600080fd5b82018360208201111561048057600080fd5b803590602001918460208302840111640100000000831117156104a257600080fd5b9091929391929390803590602001906401000000008111156104c357600080fd5b8201836020820111156104d557600080fd5b803590602001918460208302840111640100000000831117156104f757600080fd5b90919293919293905050506115d4565b604051808381526020018281526020019250505060405180910390f35b34801561053057600080fd5b506105736004803603602081101561054757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611867565b005b34801561058157600080fd5b506106026004803603608081101561059857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803567ffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061195a565b6040518082815260200191505060405180910390f35b34801561062457600080fd5b506107666004803603608081101561063b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561067857600080fd5b82018360208201111561068a57600080fd5b803590602001918460208302840111640100000000831117156106ac57600080fd5b9091929391929390803590602001906401000000008111156106cd57600080fd5b8201836020820111156106df57600080fd5b8035906020019184602083028401116401000000008311171561070157600080fd5b90919293919293908035906020019064010000000081111561072257600080fd5b82018360208201111561073457600080fd5b8035906020019184602083028401116401000000008311171561075657600080fd5b9091929391929390505050611aa5565b604051808381526020018281526020019250505060405180910390f35b34801561078f57600080fd5b50610798611d41565b005b3480156107a657600080fd5b506107af611e1c565b604051808261ffff16815260200191505060405180910390f35b3480156107d557600080fd5b50610822600480360360408110156107ec57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e34565b6040518082815260200191505060405180910390f35b34801561084457600080fd5b5061084d611f0b565b6040518082815260200191505060405180910390f35b34801561086f57600080fd5b506108c66004803603606081101561088657600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f11565b005b3480156108d457600080fd5b506108dd612273565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610920578082015181840152602081019050610905565b505050509050019250505060405180910390f35b34801561094057600080fd5b506109836004803603602081101561095757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612308565b005b34801561099157600080fd5b5061099a61244c565b6040518082815260200191505060405180910390f35b3480156109bc57600080fd5b506109ff600480360360208110156109d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612452565b60405180821515815260200191505060405180910390f35b348015610a2357600080fd5b50610a2c612544565b005b348015610a3a57600080fd5b50610a6760048036036020811015610a5157600080fd5b81019080803590602001909291905050506126b1565b005b348015610a7557600080fd5b50610a7e61276a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ab657600080fd5b50610abf612793565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610af757600080fd5b50610b3a60048036036020811015610b0e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127b9565b005b348015610b4857600080fd5b50610b7560048036036020811015610b5f57600080fd5b81019080803590602001909291905050506128b2565b60405180821515815260200191505060405180910390f35b348015610b9957600080fd5b50610ba26129dc565b005b348015610bb057600080fd5b50610bb9612ab7565b6040518082815260200191505060405180910390f35b348015610bdb57600080fd5b50610be4612abd565b60405180821515815260200191505060405180910390f35b348015610c0857600080fd5b50610c3560048036036020811015610c1f57600080fd5b8101908080359060200190929190505050612ad0565b005b348015610c4357600080fd5b50610c4c612b89565b60405180821515815260200191505060405180910390f35b348015610c7057600080fd5b50610c79612b9c565b604051808261ffff16815260200191505060405180910390f35b348015610c9f57600080fd5b50610ca8612bb4565b6040518082815260200191505060405180910390f35b348015610cca57600080fd5b50610cf760048036036020811015610ce157600080fd5b8101908080359060200190929190505050612bba565b604051808567ffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405180910390f35b348015610d6457600080fd5b50610dbb60048036036060811015610d7b57600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e21565b6040518082815260200191505060405180910390f35b348015610ddd57600080fd5b50610e0e60048036036020811015610df457600080fd5b81019080803561ffff16906020019092919050505061303a565b005b348015610e1c57600080fd5b50610e7360048036036060811015610e3357600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613109565b6040518082815260200191505060405180910390f35b348015610e9557600080fd5b50610ed860048036036020811015610eac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506133c4565b005b348015610ee657600080fd5b50610f1360048036036020811015610efd57600080fd5b81019080803590602001909291905050506135b6565b005b348015610f2157600080fd5b50610f5260048036036020811015610f3857600080fd5b81019080803561ffff16906020019092919050505061373f565b005b348015610f6057600080fd5b50610fc360048036036040811015610f7757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613916565b005b60088054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561105b5780601f106110305761010080835404028352916020019161105b565b820191906000526020600020905b81548152906001019060200180831161103e57829003601f168201915b505050505081565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611091613afa565b73ffffffffffffffffffffffffffffffffffffffff166110af61276a565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8061ffff166127108110156111ee57600560009054906101000a900461ffff1661ffff168261ffff1680821115611179578361ffff166002819055506111e7565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f4e6f74206269676765720000000000000000000000000000000000000000000081525060200191505060405180910390fd5b505061125c565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f4e6f7420696e2072616e6765000000000000000000000000000000000000000081525060200191505060405180910390fd5b5050565b81600b5481106112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b823373ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f596f7520617265206e6f7420506f6f6c204f776e65720000000000000000000081525060200191505060405180910390fd5b83426009600083815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff161161145a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f506f6f6c20697320556e6c6f636b65640000000000000000000000000000000081525060200191505060405180910390fd5b83600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5a65726f2041646472657373206973206e6f7420616c6c6f776564000000000081525060200191505060405180910390fd5b6000600960008881526020019081526020016000209050858160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9f703773b7cb4fe343150d2b2c7651f39f7fa245064aa48074479fcb655aba61878733604051808481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a150505050505050565b6000808383905060008111611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061455b6028913960400191505060405180910390fd5b848490506007548111156116b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4d6178206172726179206c656e677468206c696d69742065786365656465640081525060200191505060405180910390fd5b89899050868690501461172b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4461746520417272617920496e76616c6964000000000000000000000000000081525060200191505060405180910390fd5b8787905086869050146117a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f416d6f756e7420417272617920496e76616c696400000000000000000000000081525060200191505060405180910390fd5b6117ba8b336117b58b8b613b02565b613b46565b6000600b54905060005b8787905081101561183f576118318d8d8d848181106117df57fe5b9050602002013567ffffffffffffffff168c8c858181106117fc57fe5b905060200201358b8b8681811061180f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16613e67565b5080806001019150506117c4565b50600061184f600b5460016140bc565b90508181955095505050505097509795505050505050565b61186f613afa565b73ffffffffffffffffffffffffffffffffffffffff1661188d61276a565b73ffffffffffffffffffffffffffffffffffffffff1614611916576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008461196681612452565b6119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4e6565642056616c696420455243323020546f6b656e0000000000000000000081525060200191505060405180910390fd5b82600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5a65726f2041646472657373206973206e6f7420616c6c6f776564000000000081525060200191505060405180910390fd5b611a87873387613b46565b6000611a9588888888613e67565b9050809350505050949350505050565b6000808383905060008111611b05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061455b6028913960400191505060405180910390fd5b8888905060008111611b62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061455b6028913960400191505060405180910390fd5b898990508686905002600754811115611be3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4d6178206172726179206c656e677468206c696d69742065786365656465640081525060200191505060405180910390fd5b888890508787905014611c5e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f416d6f756e7420417272617920496e76616c696400000000000000000000000081525060200191505060405180910390fd5b611c778c338d8d9050611c718d8d613b02565b02613b46565b6000600b54905060005b8c8c9050811015611d185760005b89899050811015611d0a57611cfc8f8f8f85818110611caa57fe5b9050602002013567ffffffffffffffff168e8e85818110611cc757fe5b905060200201358d8d86818110611cda57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16613e67565b508080600101915050611c8f565b508080600101915050611c81565b506000611d28600b5460016140bc565b9050818196509650505050505097509795505050505050565b611d49613afa565b73ffffffffffffffffffffffffffffffffffffffff16611d6761276a565b73ffffffffffffffffffffffffffffffffffffffff1614611df0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560189054906101000a900460ff1615600560186101000a81548160ff021916908315150217905550565b6000600560009054906101000a900461ffff16905090565b600082600b548110611eae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b6009600085815260200190815260200160002060040160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205491505092915050565b60025481565b82600b548110611f89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b833373ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612061576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f596f7520617265206e6f7420506f6f6c204f776e65720000000000000000000081525060200191505060405180910390fd5b84426009600083815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff161161210b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f506f6f6c20697320556e6c6f636b65640000000000000000000000000000000081525060200191505060405180910390fd5b83600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5a65726f2041646472657373206973206e6f7420616c6c6f776564000000000081525060200191505060405180910390fd5b6000600960008981526020019081526020016000209050868160040160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fef177b9f5ffc7f728510c5b4201368d1f257f367423c17a32f71f04f12ed90e1888789604051808481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15050505050505050565b6060600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156122fe57602002820191906000526020600020905b8154815260200190600101908083116122ea575b5050505050905090565b61231061276a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806123965750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f417574686f72697a6174696f6e204572726f720000000000000000000000000081525060200191505060405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b6000600560189054906101000a900460ff16158061253d57506000600560049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cc44919b846006546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561250057600080fd5b505afa158015612514573d6000803e3d6000fd5b505050506040513d602081101561252a57600080fd5b8101908080519060200190929190505050115b9050919050565b61254c613afa565b73ffffffffffffffffffffffffffffffffffffffff1661256a61276a565b73ffffffffffffffffffffffffffffffffffffffff16146125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6126b9613afa565b73ffffffffffffffffffffffffffffffffffffffff166126d761276a565b73ffffffffffffffffffffffffffffffffffffffff1614612760576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060078190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6127c1613afa565b73ffffffffffffffffffffffffffffffffffffffff166127df61276a565b73ffffffffffffffffffffffffffffffffffffffff1614612868576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156128ae573d6000803e3d6000fd5b5050565b6000600b54821080156128f95750426009600084815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1611155b801561291b575060006009600084815260200190815260200160002060010154115b156129d2576129ad6009600084815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009600085815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960008681526020019081526020016000206001015461413f565b60006009600084815260200190815260200160002060010181905550600190506129d7565b600090505b919050565b6129e4613afa565b73ffffffffffffffffffffffffffffffffffffffff16612a0261276a565b73ffffffffffffffffffffffffffffffffffffffff1614612a8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff1615600060146101000a81548160ff021916908315150217905550565b60035481565b600560189054906101000a900460ff1681565b612ad8613afa565b73ffffffffffffffffffffffffffffffffffffffff16612af661276a565b73ffffffffffffffffffffffffffffffffffffffff1614612b7f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060068190555050565b600060149054906101000a900460ff1681565b6000600560029054906101000a900461ffff16905090565b60065481565b60008060008084600b548110612c38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b60006009600088815260200190815260200160002090503373ffffffffffffffffffffffffffffffffffffffff168160020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480612cee575060008160040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b612d60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5072697661746520496e666f726d6174696f6e0000000000000000000000000081525060200191505060405180910390fd5b6009600088815260200190815260200160002060000160009054906101000a900467ffffffffffffffff166009600089815260200190815260200160002060010154600960008a815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960008b815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16955095509550955050509193509193565b600083600b548110612e9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b843373ffffffffffffffffffffffffffffffffffffffff166009600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f596f7520617265206e6f7420506f6f6c204f776e65720000000000000000000081525060200191505060405180910390fd5b85426009600083815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff161161301d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f506f6f6c20697320556e6c6f636b65640000000000000000000000000000000081525060200191505060405180910390fd5b600061302a8888886142fa565b9050809450505050509392505050565b613042613afa565b73ffffffffffffffffffffffffffffffffffffffff1661306061276a565b73ffffffffffffffffffffffffffffffffffffffff16146130e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560026101000a81548161ffff021916908361ffff16021790555050565b600083600b548110613183576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f506f6f6c20646f6573206e6f742065786973740000000000000000000000000081525060200191505060405180910390fd5b84846009600083815260200190815260200160002060040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561324e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f7420656e6f75676820416c6c6f77616e636500000000000000000000000081525060200191505060405180910390fd5b86426009600083815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16116132f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f506f6f6c20697320556e6c6f636b65640000000000000000000000000000000081525060200191505060405180910390fd5b60006133058989896142fa565b90506000600960008b81526020019081526020016000209050600061336b8260040160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548b6140bc565b9050808260040160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550829750505050505050509392505050565b6133cc613afa565b73ffffffffffffffffffffffffffffffffffffffff166133ea61276a565b73ffffffffffffffffffffffffffffffffffffffff1614613473576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156134f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806145356026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6135be61276a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806136445750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6136b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f417574686f72697a6174696f6e204572726f720000000000000000000000000081525060200191505060405180910390fd5b806127108110156136cd578160038190555061373b565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f4e6f7420696e2072616e6765000000000000000000000000000000000000000081525060200191505060405180910390fd5b5050565b613747613afa565b73ffffffffffffffffffffffffffffffffffffffff1661376561276a565b73ffffffffffffffffffffffffffffffffffffffff16146137ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8061ffff166127108110156138a4578161ffff166002548082111561382f5783600560006101000a81548161ffff021916908361ffff16021790555061389d565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f4e6f74206269676765720000000000000000000000000000000000000000000081525060200191505060405180910390fd5b5050613912565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f4e6f7420696e2072616e6765000000000000000000000000000000000000000081525060200191505060405180910390fd5b5050565b61391e613afa565b73ffffffffffffffffffffffffffffffffffffffff1661393c61276a565b73ffffffffffffffffffffffffffffffffffffffff16146139c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613a7557600080fd5b505af1158015613a89573d6000803e3d6000fd5b505050506040513d6020811015613a9f57600080fd5b8101908080519060200190929190505050506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600033905090565b6000806000905060005b84849050811015613b3b57848482818110613b2357fe5b90506020020135820191508080600101915050613b0c565b508091505092915050565b828282808373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e84306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b158015613bcf57600080fd5b505afa158015613be3573d6000803e3d6000fd5b505050506040513d6020811015613bf957600080fd5b81019080805190602001909291905050501015613c7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f6e6f20616c6c6f77616e6365000000000000000000000000000000000000000081525060200191505060405180910390fd5b60008411613c8b57600080fd5b6000613c978730614400565b90508673ffffffffffffffffffffffffffffffffffffffff166323b872dd8730886040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015613d2857600080fd5b505af1158015613d3c573d6000803e3d6000fd5b505050506040513d6020811015613d5257600080fd5b8101908080519060200190929190505050507f1fecf4702e692891a7c2f0d328779b085efb5edd094fa5558bd5cd147a167922858789604051808481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a1613de18730614400565b613deb82876144ac565b14613e5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f7265636976652077726f6e6720616d6f756e74206f6620746f6b656e7300000081525060200191505060405180910390fd5b50505050505050565b600060405180608001604052808567ffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1681525060096000600b54815260200190815260200160002060008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600b5490806001815401808255809150506001900390600052602060002001600090919091909150557f1713fe30e292eb50e4287932dfd918a4f7dd378052ddab482552f06b975b8fe5600b5486868686604051808681526020018573ffffffffffffffffffffffffffffffffffffffff1681526020018467ffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019550505050505060405180910390a16000600b5490506140aa600b5460016144ac565b600b8190555080915050949350505050565b600082821115614134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600061414b8430614400565b90507fe4d818e6f992efbd60db553f3edce819a199baec79a784b95c89bc8ee86f2584828486604051808481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff168152602001935050505060405180910390a18373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561423157600080fd5b505af1158015614245573d6000803e3d6000fd5b505050506040513d602081101561425b57600080fd5b8101908080519060200190929190505050508061428161427b8630614400565b846144ac565b146142f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f7265636976652077726f6e6720616d6f756e74206f6620746f6b656e7300000081525060200191505060405180910390fd5b50505050565b600080600960008681526020019081526020016000209050838160010154101561438c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4e6f7420456e6f75676820416d6f756e742042616c616e63650000000000000081525060200191505060405180910390fd5b600061439c8260010154866140bc565b905080826001018190555060006143f18360030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168460000160009054906101000a900467ffffffffffffffff168888613e67565b90508093505050509392505050565b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561446957600080fd5b505afa15801561447d573d6000803e3d6000fd5b505050506040513d602081101561449357600080fd5b8101908080519060200190929190505050905092915050565b60008082840190508381101561452a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b809150509291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734172726179206c656e6774682073686f756c642062652067726561746572207468616e207a65726fa2646970667358221220fa9381174d531ae8d7bfb4328c55ae65a9fce8d323e4aee38fb92706e5f0150364736f6c634300060c0033

Deployed Bytecode Sourcemap

39202:769:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27836:8;;;;;;;;;;;27831:23;;27846:8;;;27831:23;39202:769;;;;;31206:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26187:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30525:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34254:347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36489:781;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;29427:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35962:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37327:910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;29645:98;;;;;;;;;;;;;:::i;:::-;;30291:76;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35290:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26824:21;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34919:363;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38538:108;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26379:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29380:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29751:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25587:148;;;;;;;;;;;;;:::i;:::-;;29949:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24936:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29277:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30700:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39407:561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28013:82;;;;;;;;;;;;;:::i;:::-;;26894:23;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29316:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29547:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27983:20;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30076:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29350:23;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38654:535;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34609:302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30176:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35471:483;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25890:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27238:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30375:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30894:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31206:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26187:31::-;;;;;;;;;;;;;:::o;30525:167::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30616:4:::1;26973:122;;27041:5;27030:8;:16;27026:61;;;30645:3:::2;;;;;;;;;;;27101:129;;30649:4;27101:129;;27177:6;27169:5;:14;27165:57;;;30680:4:::3;30671:13;;:6;:13;;;;27165:57:::2;;;27202:20;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;27165:57;27048:1;;27026:61:::1;;;27065:22;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;27026:61;25227:1;30525:167:::0;:::o;34254:347::-;34367:7;32095:5;;32085:7;:15;32077:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34388:7:::1;32235:10;32208:37;;:8;:17;32217:7;32208:17;;;;;;;;;;;:23;;;;;;;;;;;;:37;;;32200:72;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34406:7:::2;32558:3;32527:8;:17;32536:7;32527:17;;;;;;;;;;;:28;;;;;;;;;;;;:34;;;32519:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;34430:9:::3;32690:3;32670:24;;:8;:24;;;;32662:64;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;34452:17:::4;34472:8;:17;34481:7;34472:17;;;;;;;;;;;34452:37;;34513:9;34500:4;:10;;;:22;;;;;;;;;;;;;;;;;;34538:55;34562:7;34571:9;34582:10;34538:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32737:1;32593::::3;32283::::2;32135::::1;34254:347:::0;;;:::o;36489:781::-;36742:7;36751;36691:6;;:13;;32820:1;32813:4;:8;32805:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36719:6:::1;;:13;;32956:19;;32948:4;:27;;32940:71;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;36796:11:::2;;:18;;36779:6;;:13;;:35;36771:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;36873:12;;:19;;36856:6;;:13;;:36;36848:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;36928:62;36944:6;36952:10;36964:25;36976:12;;36964:11;:25::i;:::-;36928:15;:62::i;:::-;37001:19;37023:5;;37001:27;;37043:6;37039:127;37058:6;;:13;;37054:1;:17;37039:127;;;37092:62;37103:6;37111:11;;37123:1;37111:14;;;;;;;;;;;;;;;37127:12;;37140:1;37127:15;;;;;;;;;;;;;37144:6;;37151:1;37144:9;;;;;;;;;;;;;;;37092:10;:62::i;:::-;;37073:3;;;;;;;37039:127;;;;37176:18;37197:22;37210:5;;37217:1;37197:12;:22::i;:::-;37176:43;;37238:11;37251:10;37230:32;;;;;;32877:1:::1;36489:781:::0;;;;;;;;;;;:::o;29427:112::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29523:8:::1;29503:17;;:28;;;;;;;;;;;;;;;;;;29427:112:::0;:::o;35962:519::-;36299:7;36260:6;31921:26;31940:6;31921:18;:26::i;:::-;31913:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36283:6:::1;32690:3;32670:24;;:8;:24;;;;32662:64;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;36319:49:::2;36335:6;36343:10;36355:12;36319:15;:49::i;:::-;36379:14;36396:53;36407:6;36415:11;36428:12;36442:6;36396:10;:53::i;:::-;36379:70;;36467:6;36460:13;;;32012:1:::1;35962:519:::0;;;;;;;:::o;37327:910::-;37681:7;37690;37544:6;;:13;;32820:1;32813:4;:8;32805:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37586:11:::1;;:18;;32820:1;32813:4;:8;32805:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37644:11:::2;;:18;;37628:6;;:13;;:34;32956:19;;32948:4;:27;;32940:71;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;37740:12:::3;;:19;;37723:6;;:13;;:36;37715:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;37795:83;37811:6;37819:10;37859:11;;:18;;37831:25;37843:12;;37831:11;:25::i;:::-;:46;37795:15;:83::i;:::-;37889:19;37911:5;;37889:27;;37931:6;37927:206;37946:11;;:18;;37942:1;:22;37927:206;;;37990:6;37986:136;38005:6;;:13;;38001:1;:17;37986:136;;;38044:62;38055:6;38063:11;;38075:1;38063:14;;;;;;;;;;;;;;;38079:12;;38092:1;38079:15;;;;;;;;;;;;;38096:6;;38103:1;38096:9;;;;;;;;;;;;;;;38044:10;:62::i;:::-;;38021:3;;;;;;;37986:136;;;;37967:3;;;;;;;37927:206;;;;38143:18;38164:22;38177:5;;38184:1;38164:12;:22::i;:::-;38143:43;;38205:11;38218:10;38197:32;;;;;;32877:1:::2;::::1;37327:910:::0;;;;;;;;;;;:::o;29645:98::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29720:15:::1;;;;;;;;;;;29719:16;29701:15;;:34;;;;;;;;;;;;;;;;;;29645:98::o:0;30291:76::-;30330:6;30356:3;;;;;;;;;;;30349:10;;30291:76;:::o;35290:173::-;35392:7;35375;32095:5;;32085:7;:15;32077:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35418:8:::1;:17;35427:7;35418:17;;;;;;;;;;;:27;;:37;35446:8;35418:37;;;;;;;;;;;;;;;;35411:44;;35290:173:::0;;;;;:::o;26824:21::-;;;;:::o;34919:363::-;35052:7;32095:5;;32085:7;:15;32077:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35073:7:::1;32235:10;32208:37;;:8;:17;32217:7;32208:17;;;;;;;;;;;:23;;;;;;;;;;;;:37;;;32200:72;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;35091:7:::2;32558:3;32527:8;:17;32536:7;32527:17;;;;;;;;;;;:28;;;;;;;;;;;;:34;;;32519:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;35115:8:::3;32690:3;32670:24;;:8;:24;;;;32662:64;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;35136:17:::4;35156:8;:17;35165:7;35156:17;;;;;;;;;;;35136:37;;35211:7;35184:4;:14;;:24;35199:8;35184:24;;;;;;;;;;;;;;;:34;;;;35234:40;35247:7;35256:8;35266:7;35234:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32737:1;32593::::3;32283::::2;32135::::1;34919:363:::0;;;;:::o;38538:108::-;38583:16;38619:7;:19;38627:10;38619:19;;;;;;;;;;;;;;;38612:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38538:108;:::o;26379:116::-;26286:7;:5;:7::i;:::-;26272:21;;:10;:21;;;:55;;;;26311:16;;;;;;;;;;;26297:30;;:10;:30;;;26272:55;26264:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26479:8:::1;26460:16;;:27;;;;;;;;;;;;;;;;;;26379:116:::0;:::o;29380:34::-;;;;:::o;29751:190::-;29822:4;29847:15;;;;;;;;;;;29846:16;:87;;;;29932:1;29877:17;;;;;;;;;;;29866:35;;;29902:13;29917:11;;29866:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:67;29846:87;29839:94;;29751:190;;;:::o;25587:148::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25694:1:::1;25657:40;;25678:6;::::0;::::1;;;;;;;;25657:40;;;;;;;;;;;;25725:1;25708:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;25587:148::o:0;29949:119::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30051:9:::1;30029:19;:31;;;;29949:119:::0;:::o;24936:87::-;24982:7;25009:6;;;;;;;;;;;25002:13;;24936:87;:::o;29277:32::-;;;;;;;;;;;;;:::o;30700:186::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30773:3:::1;:12;;:35;30786:21;30773:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;30700:186:::0;:::o;39407:561::-;39463:4;39573:5;;39563:7;:15;:67;;;;;39627:3;39595:8;:17;39604:7;39595:17;;;;;;;;;;;:28;;;;;;;;;;;;:35;;;;39563:67;:112;;;;;39674:1;39647:8;:17;39656:7;39647:17;;;;;;;;;;;:24;;;:28;39563:112;39545:393;;;39702:155;39734:8;:17;39743:7;39734:17;;;;;;;;;;;:23;;;;;;;;;;;;39776:8;:17;39785:7;39776:17;;;;;;;;;;;:23;;;;;;;;;;;;39818:8;:17;39827:7;39818:17;;;;;;;;;;;:24;;;39702:13;:155::i;:::-;39899:1;39872:8;:17;39881:7;39872:17;;;;;;;;;;;:24;;:28;;;;39922:4;39915:11;;;;39545:393;39955:5;39948:12;;39407:561;;;;:::o;28013:82::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28079:8:::1;;;;;;;;;;;28078:9;28067:8;;:20;;;;;;;;;;;;;;;;;;28013:82::o:0;26894:23::-;;;;:::o;29316:27::-;;;;;;;;;;;;;:::o;29547:90::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29626:3:::1;29613:11;:16;;;;29547:90:::0;:::o;27983:20::-;;;;;;;;;;;;;:::o;30076:92::-;30123:6;30149:11;;;;;;;;;;;30142:18;;30076:92;:::o;29350:23::-;;;;:::o;38654:535::-;38776:6;38797:7;38819;38841;38739:3;32095:5;;32085:7;:15;32077:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38876:17:::1;38896:8;:13;38905:3;38896:13;;;;;;;;;;;38876:33;;38942:10;38928:24;;:4;:10;;;;;;;;;;;;:24;;;:58;;;;38985:1;38956:4;:14;;:26;38971:10;38956:26;;;;;;;;;;;;;;;;:30;38928:58;38920:90;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39043:8;:13;39052:3;39043:13;;;;;;;;;;;:24;;;;;;;;;;;;39082:8;:13;39091:3;39082:13;;;;;;;;;;;:20;;;39117:8;:13;39126:3;39117:13;;;;;;;;;;;:19;;;;;;;;;;;;39151:8;:13;39160:3;39151:13;;;;;;;;;;;:19;;;;;;;;;;;;39021:160;;;;;;;;;38654:535:::0;;;;;;:::o;34609:302::-;34801:7;34745;32095:5;;32085:7;:15;32077:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34766:7:::1;32235:10;32208:37;;:8;:17;32217:7;32208:17;;;;;;;;;;;:23;;;;;;;;;;;;:37;;;32200:72;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34784:7:::2;32558:3;32527:8;:17;32536:7;32527:17;;;;;;;;;;;:28;;;;;;;;;;;;:34;;;32519:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;34821:14:::3;34838:41;34848:7;34857:10;34869:9;34838;:41::i;:::-;34821:58;;34897:6;34890:13;;;32283:1:::2;32135::::1;34609:302:::0;;;;;;:::o;30176:107::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30263:12:::1;30249:11;;:26;;;;;;;;;;;;;;;;;;30176:107:::0;:::o;35471:483::-;35670:7;35607;32095:5;;32085:7;:15;32077:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35626:7:::1;35635;32382:8;:17;32391:7;32382:17;;;;;;;;;;;:27;;:39;32410:10;32382:39;;;;;;;;;;;;;;;;32371:7;:50;;32363:83;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;35653:7:::2;32558:3;32527:8;:17;32536:7;32527:17;;;;;;;;;;;:28;;;;;;;;;;;;:34;;;32519:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;35690:14:::3;35707:37;35717:7;35726;35735:8;35707:9;:37::i;:::-;35690:54;;35755:17;35775:8;:17;35784:7;35775:17;;;;;;;;;;;35755:37;;35803:18;35824:49;35837:4;:14;;:26;35852:10;35837:26;;;;;;;;;;;;;;;;35865:7;35824:12;:49::i;:::-;35803:70;;35912:10;35884:4;:14;;:24;35899:8;35884:24;;;;;;;;;;;;;;;:38;;;;35940:6;35933:13;;;;;32457:1:::2;32135::::1;;35471:483:::0;;;;;;:::o;25890:244::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25999:1:::1;25979:22;;:8;:22;;;;25971:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26089:8;26060:38;;26081:6;::::0;::::1;;;;;;;;26060:38;;;;;;;;;;;;26118:8;26109:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;25890:244:::0;:::o;27238:159::-;26286:7;:5;:7::i;:::-;26272:21;;:10;:21;;;:55;;;;26311:16;;;;;;;;;;;26297:30;;:10;:30;;;26272:55;26264:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27342:9:::1;27041:5;27030:8;:16;27026:61;;;27380:9:::2;27369:8;:20;;;;27026:61:::1;;;27065:22;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;27026:61;26362:1;27238:159:::0;:::o;30375:142::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30445:4:::1;26973:122;;27041:5;27030:8;:16;27026:61;;;30474:4:::2;27101:129;;30480:6;;27177;27169:5;:14;27165:57;;;30505:4:::3;30499:3;;:10;;;;;;;;;;;;;;;;;;27165:57:::2;;;27202:20;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;27165:57;27048:1;;27026:61:::1;;;27065:22;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;27026:61;25227:1;30375:142:::0;:::o;30894:168::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;25148:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30987:6:::1;30981:22;;;31004:3;31009:6;:14;31016:6;31009:14;;;;;;;;;;;;;;;;30981:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;31052:1;31035:6;:14;31042:6;31035:14;;;;;;;;;;;;;;;:18;;;;30894:168:::0;;:::o;605:106::-;658:15;693:10;686:17;;605:106;:::o;38245:229::-;38315:7;38335:11;38349:1;38335:15;;38365:6;38361:85;38378:6;;:13;;38376:1;:15;38361:85;;;38425:6;;38432:1;38425:9;;;;;;;;;;;;;38419:3;:15;38413:21;;38394:3;;;;;;;38361:85;;;;38463:3;38456:10;;;38245:229;;;;:::o;23113:570::-;23245:6;23253:8;23263:7;22363;22319:6;22313:23;;;22337:6;22353:4;22313:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:57;;22291:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23301:1:::1;23291:7;:11;23283:20;;;::::0;::::1;;23314:18;23335:35;23348:6;23364:4;23335:12;:35::i;:::-;23314:56;;23387:6;23381:26;;;23408:8;23426:4;23433:7;23381:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;23457:37;23468:7;23477:8;23487:6;23457:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23583:35;23596:6;23612:4;23583:12;:35::i;:::-;23528:33;23541:10;23553:7;23528:12;:33::i;:::-;23527:91;23505:170;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22421:1;23113:570:::0;;;;;;:::o;33522:673::-;33814:7;33880:47;;;;;;;;33885:11;33880:47;;;;;;33898:12;33880:47;;;;33912:6;33880:47;;;;;;33920:6;33880:47;;;;;33862:8;:15;33871:5;;33862:15;;;;;;;;;;;:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33938:7;:15;33946:6;33938:15;;;;;;;;;;;;;;;33959:5;;33938:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33981:64;33996:5;;34003:6;34011:11;34024:12;34038:6;33981:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34056:14;34073:5;;34056:22;;34097;34110:5;;34117:1;34097:12;:22::i;:::-;34089:5;:30;;;;34181:6;34174:13;;;33522:673;;;;;;:::o;6846:158::-;6904:7;6937:1;6932;:6;;6924:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6995:1;6991;:5;6984:12;;6846:158;;;;:::o;22438:480::-;22566:18;22587:35;22600:6;22616:4;22587:12;:35::i;:::-;22566:56;;22638:38;22650:7;22659:8;22669:6;22638:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22693:6;22687:22;;;22710:8;22720:7;22687:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22825:10;22762:58;22775:35;22788:6;22804:4;22775:12;:35::i;:::-;22812:7;22762:12;:58::i;:::-;22761:74;22739:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22438:480;;;;:::o;33039:450::-;33132:7;33152:17;33172:8;:17;33181:7;33172:17;;;;;;;;;;;33152:37;;33223:10;33208:4;:11;;;:25;;33200:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33274:18;33295:37;33308:4;:11;;;33321:10;33295:12;:37::i;:::-;33274:58;;33357:10;33343:4;:11;;:24;;;;33378:14;33395:62;33406:4;:10;;;;;;;;;;;;33418:4;:15;;;;;;;;;;;;33435:10;33447:9;33395:10;:62::i;:::-;33378:79;;33475:6;33468:13;;;;;33039:450;;;;;:::o;22926:179::-;23032:7;23070:6;23064:23;;;23088:8;23064:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23057:40;;22926:179;;;;:::o;6384:::-;6442:7;6462:9;6478:1;6474;:5;6462:17;;6503:1;6498;:6;;6490:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6554:1;6547:8;;;6384:179;;;;:::o

Swarm Source

ipfs://fa9381174d531ae8d7bfb4328c55ae65a9fce8d323e4aee38fb92706e5f01503

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Time locking for tokens using the Poolz system.

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.