ETH Price: $2,354.29 (+1.04%)

Token

Probot (PROBOT)
 

Overview

Max Total Supply

1,000,000 PROBOT

Holders

70

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.907913747028209018 PROBOT

Value
$0.00
0xb3e9284e61116db6e8f8862a9043690c20a5b639
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Probot

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-30
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

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

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

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

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

/**
 * @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 Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/**
 * @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 Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 override returns (uint8) {
        return 18;
    }

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library 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) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract Probot is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0x000000000000000000000000000000000000dEaD);

    bool private swapping;

    address public revShareWallet;
    address public teamWallet;

    uint256 public swapTokensAtAmount;

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    bool public preMigrationPhase = true;
    mapping(address => bool) public preMigrationTransferrable;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event revShareWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event teamWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Probot", "PROBOT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyRevShareFee = 1;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyTeamFee = 3;

        uint256 _sellRevShareFee = 1;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 3;

        uint256 totalSupply = 1_000_000 * 1e18;

        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% 

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;

        revShareWallet = address(0x6Cd67D034d39a82d9C12B6E14FDffDfD9ce68997); // set as revShare wallet
        teamWallet = owner(); // set as team wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        preMigrationTransferrable[owner()] = true;

        //CANNOT be called ever again
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        preMigrationPhase = false;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyRevShareFee = _revShareFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    function updateSellFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellRevShareFee = _revShareFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateRevShareWallet(address newRevShareWallet) external onlyOwner {
        emit revShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (preMigrationPhase) {
            require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration.");
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            !swapping
        ) {
            if (!tradingActive) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "Trading is not active."
                );
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForRevShare +
            tokensForTeam;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam;

        tokensForLiquidity = 0;
        tokensForRevShare = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(revShareWallet).call{value: address(this).balance}("");
    }

    function withdrawStuckProbot() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner {
        preMigrationTransferrable[_addr] = isAuthorized;
        excludeFromFees(_addr, isAuthorized);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckProbot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040525f60095f6101000a81548160ff0219169083151502179055505f600960016101000a81548160ff021916908315150217905550600160175f6101000a81548160ff0219169083151502179055503480156200005d575f80fd5b506040518060400160405280600681526020017f50726f626f7400000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f50524f424f5400000000000000000000000000000000000000000000000000008152508160039081620000db919062000be0565b508060049081620000ed919062000be0565b50505062000110620001046200053b60201b60201c565b6200054260201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001cc919062000d29565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000232573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000258919062000d29565b6040518363ffffffff1660e01b81526004016200027792919062000d6a565b6020604051808303815f875af115801562000294573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ba919062000d29565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200030260a05160016200060560201b60201c565b5f600190505f600190505f600390505f600190505f600190505f600390505f69d3c21bcecceda1000000905061271060058262000340919062000dc2565b6200034c919062000e39565b60088190555086600b8190555085600c8190555084600d81905550600d54600c54600b546200037c919062000e70565b62000388919062000e70565b600a8190555083600f819055508260108190555081601181905550601154601054600f54620003b8919062000e70565b620003c4919062000e70565b600e81905550736cd67d034d39a82d9c12b6e14fdffdfd9ce6899760065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200042e620006a360201b60201c565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200048f62000481620006a360201b60201c565b6001620006cb60201b60201c565b620004a2306001620006cb60201b60201c565b620004b761dead6001620006cb60201b60201c565b600160185f620004cc620006a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200052d33826200080260201b60201c565b505050505050505062000ff9565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006db6200053b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000701620006a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200075a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007519062000f08565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007f6919062000f44565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000873576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200086a9062000fad565b60405180910390fd5b620008865f83836200097260201b60201c565b8060025f82825462000899919062000e70565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620008ed919062000e70565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000953919062000fde565b60405180910390a36200096e5f83836200097760201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620009f857607f821691505b60208210810362000a0e5762000a0d620009b3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a35565b62000a7e868362000a35565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000ac862000ac262000abc8462000a96565b62000a9f565b62000a96565b9050919050565b5f819050919050565b62000ae38362000aa8565b62000afb62000af28262000acf565b84845462000a41565b825550505050565b5f90565b62000b1162000b03565b62000b1e81848462000ad8565b505050565b5b8181101562000b455762000b395f8262000b07565b60018101905062000b24565b5050565b601f82111562000b945762000b5e8162000a14565b62000b698462000a26565b8101602085101562000b79578190505b62000b9162000b888562000a26565b83018262000b23565b50505b505050565b5f82821c905092915050565b5f62000bb65f198460080262000b99565b1980831691505092915050565b5f62000bd0838362000ba5565b9150826002028217905092915050565b62000beb826200097c565b67ffffffffffffffff81111562000c075762000c0662000986565b5b62000c138254620009e0565b62000c2082828562000b49565b5f60209050601f83116001811462000c56575f841562000c41578287015190505b62000c4d858262000bc3565b86555062000cbc565b601f19841662000c668662000a14565b5f5b8281101562000c8f5784890151825560018201915060208501945060208101905062000c68565b8683101562000caf578489015162000cab601f89168262000ba5565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000cf38262000cc8565b9050919050565b62000d058162000ce7565b811462000d10575f80fd5b50565b5f8151905062000d238162000cfa565b92915050565b5f6020828403121562000d415762000d4062000cc4565b5b5f62000d508482850162000d13565b91505092915050565b62000d648162000ce7565b82525050565b5f60408201905062000d7f5f83018562000d59565b62000d8e602083018462000d59565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000dce8262000a96565b915062000ddb8362000a96565b925082820262000deb8162000a96565b9150828204841483151762000e055762000e0462000d95565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000e458262000a96565b915062000e528362000a96565b92508262000e655762000e6462000e0c565b5b828204905092915050565b5f62000e7c8262000a96565b915062000e898362000a96565b925082820190508082111562000ea45762000ea362000d95565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000ef060208362000eaa565b915062000efd8262000eba565b602082019050919050565b5f6020820190508181035f83015262000f218162000ee2565b9050919050565b5f8115159050919050565b62000f3e8162000f28565b82525050565b5f60208201905062000f595f83018462000f33565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f95601f8362000eaa565b915062000fa28262000f5f565b602082019050919050565b5f6020820190508181035f83015262000fc68162000f87565b9050919050565b62000fd88162000a96565b82525050565b5f60208201905062000ff35f83018462000fcd565b92915050565b60805160a05161467a620010455f395f8181610de9015261156e01525f8181610c03015281816131e9015281816132c8015281816132ef0152818161338501526133ac015261467a5ff3fe6080604052600436106102b1575f3560e01c80638095d56411610174578063bbc0c742116100db578063d85ba06311610094578063f11a24d31161006e578063f11a24d314610a96578063f2fde38b14610ac0578063f637434214610ae8578063fde83a3414610b12576102b8565b8063d85ba06314610a06578063dd62ed3e14610a30578063e2f4560514610a6c576102b8565b8063bbc0c74214610910578063c02466681461093a578063c17b5b8c14610962578063c2c29ae21461098a578063d257b34f146109a0578063d729715f146109dc576102b8565b80639c2e4ac61161012d5780639c2e4ac6146107e2578063a457c2d71461080c578063a9059cbb14610848578063aa0e438814610884578063adee28ff146108ac578063b62496f5146108d4576102b8565b80638095d564146107005780638a8c523c146107285780638da5cb5b1461073e578063924de9b71461076857806395d89b41146107905780639a7a23d6146107ba576102b8565b806339509351116102185780636ddd1713116101d15780636ddd17131461060a57806370a0823114610634578063715018a614610670578063782c4e99146106865780637ca8448a146106b05780637cb332bb146106d8576102b8565b806339509351146104d857806349bd5a5e146105145780634e29e5231461053e5780634fbee1931461057a57806359927044146105b65780636a486a8e146105e0576102b8565b806319eab0421161026a57806319eab042146103ca5780631a8145bb146103f457806323b872dd1461041e57806324b9f3c11461045a57806327c8f83514610484578063313ce567146104ae576102b8565b806306fdde03146102bc578063095ea7b3146102e65780630e922ca714610322578063156c2f351461034c5780631694505e1461037657806318160ddd146103a0576102b8565b366102b857005b5f80fd5b3480156102c7575f80fd5b506102d0610b3c565b6040516102dd91906134e2565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190613593565b610bcc565b60405161031991906135eb565b60405180910390f35b34801561032d575f80fd5b50610336610be9565b60405161034391906135eb565b60405180910390f35b348015610357575f80fd5b50610360610bfb565b60405161036d9190613613565b60405180910390f35b348015610381575f80fd5b5061038a610c01565b6040516103979190613687565b60405180910390f35b3480156103ab575f80fd5b506103b4610c25565b6040516103c19190613613565b60405180910390f35b3480156103d5575f80fd5b506103de610c2e565b6040516103eb9190613613565b60405180910390f35b3480156103ff575f80fd5b50610408610c34565b6040516104159190613613565b60405180910390f35b348015610429575f80fd5b50610444600480360381019061043f91906136a0565b610c3a565b60405161045191906135eb565b60405180910390f35b348015610465575f80fd5b5061046e610d2c565b60405161047b9190613613565b60405180910390f35b34801561048f575f80fd5b50610498610d32565b6040516104a591906136ff565b60405180910390f35b3480156104b9575f80fd5b506104c2610d38565b6040516104cf9190613733565b60405180910390f35b3480156104e3575f80fd5b506104fe60048036038101906104f99190613593565b610d40565b60405161050b91906135eb565b60405180910390f35b34801561051f575f80fd5b50610528610de7565b60405161053591906136ff565b60405180910390f35b348015610549575f80fd5b50610564600480360381019061055f919061374c565b610e0b565b60405161057191906135eb565b60405180910390f35b348015610585575f80fd5b506105a0600480360381019061059b919061374c565b610e28565b6040516105ad91906135eb565b60405180910390f35b3480156105c1575f80fd5b506105ca610e7a565b6040516105d791906136ff565b60405180910390f35b3480156105eb575f80fd5b506105f4610e9f565b6040516106019190613613565b60405180910390f35b348015610615575f80fd5b5061061e610ea5565b60405161062b91906135eb565b60405180910390f35b34801561063f575f80fd5b5061065a6004803603810190610655919061374c565b610eb8565b6040516106679190613613565b60405180910390f35b34801561067b575f80fd5b50610684610efd565b005b348015610691575f80fd5b5061069a610f84565b6040516106a791906136ff565b60405180910390f35b3480156106bb575f80fd5b506106d660048036038101906106d1919061374c565b610fa9565b005b3480156106e3575f80fd5b506106fe60048036038101906106f9919061374c565b61109a565b005b34801561070b575f80fd5b5061072660048036038101906107219190613777565b6111d4565b005b348015610733575f80fd5b5061073c6112d3565b005b348015610749575f80fd5b5061075261139f565b60405161075f91906136ff565b60405180910390f35b348015610773575f80fd5b5061078e600480360381019061078991906137f1565b6113c7565b005b34801561079b575f80fd5b506107a4611460565b6040516107b191906134e2565b60405180910390f35b3480156107c5575f80fd5b506107e060048036038101906107db919061381c565b6114f0565b005b3480156107ed575f80fd5b506107f6611608565b6040516108039190613613565b60405180910390f35b348015610817575f80fd5b50610832600480360381019061082d9190613593565b61160e565b60405161083f91906135eb565b60405180910390f35b348015610853575f80fd5b5061086e60048036038101906108699190613593565b6116f4565b60405161087b91906135eb565b60405180910390f35b34801561088f575f80fd5b506108aa60048036038101906108a5919061381c565b611711565b005b3480156108b7575f80fd5b506108d260048036038101906108cd919061374c565b6117ef565b005b3480156108df575f80fd5b506108fa60048036038101906108f5919061374c565b611929565b60405161090791906135eb565b60405180910390f35b34801561091b575f80fd5b50610924611946565b60405161093191906135eb565b60405180910390f35b348015610945575f80fd5b50610960600480360381019061095b919061381c565b611958565b005b34801561096d575f80fd5b5061098860048036038101906109839190613777565b611a7a565b005b348015610995575f80fd5b5061099e611b79565b005b3480156109ab575f80fd5b506109c660048036038101906109c1919061385a565b611d33565b6040516109d391906135eb565b60405180910390f35b3480156109e7575f80fd5b506109f0611e87565b6040516109fd9190613613565b60405180910390f35b348015610a11575f80fd5b50610a1a611e8d565b604051610a279190613613565b60405180910390f35b348015610a3b575f80fd5b50610a566004803603810190610a519190613885565b611e93565b604051610a639190613613565b60405180910390f35b348015610a77575f80fd5b50610a80611f15565b604051610a8d9190613613565b60405180910390f35b348015610aa1575f80fd5b50610aaa611f1b565b604051610ab79190613613565b60405180910390f35b348015610acb575f80fd5b50610ae66004803603810190610ae1919061374c565b611f21565b005b348015610af3575f80fd5b50610afc612017565b604051610b099190613613565b60405180910390f35b348015610b1d575f80fd5b50610b2661201d565b604051610b339190613613565b60405180910390f35b606060038054610b4b906138f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b77906138f0565b8015610bc25780601f10610b9957610100808354040283529160200191610bc2565b820191905f5260205f20905b815481529060010190602001808311610ba557829003601f168201915b5050505050905090565b5f610bdf610bd8612023565b848461202a565b6001905092915050565b60175f9054906101000a900460ff1681565b600b5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b600f5481565b60135481565b5f610c468484846121ed565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610c8d612023565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390613990565b60405180910390fd5b610d2085610d18612023565b85840361202a565b60019150509392505050565b60125481565b61dead81565b5f6012905090565b5f610ddd610d4c612023565b848460015f610d59612023565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dd891906139db565b61202a565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6018602052805f5260405f205f915054906101000a900460ff1681565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b600960019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f05612023565b73ffffffffffffffffffffffffffffffffffffffff16610f2361139f565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090613a58565b60405180910390fd5b610f825f612a2c565b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fb1612023565b73ffffffffffffffffffffffffffffffffffffffff16610fcf61139f565b73ffffffffffffffffffffffffffffffffffffffff1614611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90613a58565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161104a90613aa3565b5f6040518083038185875af1925050503d805f8114611084576040519150601f19603f3d011682016040523d82523d5f602084013e611089565b606091505b5050905080611096575f80fd5b5050565b6110a2612023565b73ffffffffffffffffffffffffffffffffffffffff166110c061139f565b73ffffffffffffffffffffffffffffffffffffffff1614611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90613a58565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111dc612023565b73ffffffffffffffffffffffffffffffffffffffff166111fa61139f565b73ffffffffffffffffffffffffffffffffffffffff1614611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613a58565b60405180910390fd5b82600b8190555081600c8190555080600d81905550600d54600c54600b5461127891906139db565b61128291906139db565b600a819055506005600a5411156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613b01565b60405180910390fd5b505050565b6112db612023565b73ffffffffffffffffffffffffffffffffffffffff166112f961139f565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690613a58565b60405180910390fd5b600160095f6101000a81548160ff0219169083151502179055506001600960016101000a81548160ff0219169083151502179055505f60175f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113cf612023565b73ffffffffffffffffffffffffffffffffffffffff166113ed61139f565b73ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613a58565b60405180910390fd5b80600960016101000a81548160ff02191690831515021790555050565b60606004805461146f906138f0565b80601f016020809104026020016040519081016040528092919081815260200182805461149b906138f0565b80156114e65780601f106114bd576101008083540402835291602001916114e6565b820191905f5260205f20905b8154815290600101906020018083116114c957829003601f168201915b5050505050905090565b6114f8612023565b73ffffffffffffffffffffffffffffffffffffffff1661151661139f565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613a58565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f190613b8f565b60405180910390fd5b6116048282612aef565b5050565b600d5481565b5f8060015f61161b612023565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613c1d565b60405180910390fd5b6116e96116e0612023565b8585840361202a565b600191505092915050565b5f611707611700612023565b84846121ed565b6001905092915050565b611719612023565b73ffffffffffffffffffffffffffffffffffffffff1661173761139f565b73ffffffffffffffffffffffffffffffffffffffff161461178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490613a58565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506117eb8282611958565b5050565b6117f7612023565b73ffffffffffffffffffffffffffffffffffffffff1661181561139f565b73ffffffffffffffffffffffffffffffffffffffff161461186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290613a58565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6016602052805f5260405f205f915054906101000a900460ff1681565b60095f9054906101000a900460ff1681565b611960612023565b73ffffffffffffffffffffffffffffffffffffffff1661197e61139f565b73ffffffffffffffffffffffffffffffffffffffff16146119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90613a58565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a6e91906135eb565b60405180910390a25050565b611a82612023565b73ffffffffffffffffffffffffffffffffffffffff16611aa061139f565b73ffffffffffffffffffffffffffffffffffffffff1614611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90613a58565b60405180910390fd5b82600f819055508160108190555080601181905550601154601054600f54611b1e91906139db565b611b2891906139db565b600e819055506005600e541115611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90613c85565b60405180910390fd5b505050565b611b81612023565b73ffffffffffffffffffffffffffffffffffffffff16611b9f61139f565b73ffffffffffffffffffffffffffffffffffffffff1614611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90613a58565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c2f91906136ff565b602060405180830381865afa158015611c4a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c6e9190613cb7565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611cab929190613ce2565b6020604051808303815f875af1158015611cc7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ceb9190613d1d565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611d2f573d5f803e3d5ffd5b5050565b5f611d3c612023565b73ffffffffffffffffffffffffffffffffffffffff16611d5a61139f565b73ffffffffffffffffffffffffffffffffffffffff1614611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613a58565b60405180910390fd5b620186a06001611dbe610c25565b611dc89190613d48565b611dd29190613db6565b821015611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90613e56565b60405180910390fd5b6103e86005611e21610c25565b611e2b9190613d48565b611e359190613db6565b821115611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90613ee4565b60405180910390fd5b8160088190555060019050919050565b60115481565b600a5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b600c5481565b611f29612023565b73ffffffffffffffffffffffffffffffffffffffff16611f4761139f565b73ffffffffffffffffffffffffffffffffffffffff1614611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490613a58565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200290613f72565b60405180910390fd5b61201481612a2c565b50565b60105481565b60145481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f90614000565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd9061408e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121e09190613613565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122529061411c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c0906141aa565b60405180910390fd5b60175f9054906101000a900460ff16156123675760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235d90614238565b60405180910390fd5b5b5f810361237e5761237983835f612b8d565b612a27565b61238661139f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123f457506123c461139f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561242c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612466575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561247f5750600560149054906101000a900460ff16155b156125735760095f9054906101000a900460ff166125725760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612532575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612571576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612568906142a0565b60405180910390fd5b5b5b5f61257d30610eb8565b90505f60085482101590508080156125a15750600960019054906101000a900460ff165b80156125ba5750600560149054906101000a900460ff16155b801561260d575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612660575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156126b3575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156126f6576001600560146101000a81548160ff0219169083151502179055506126db612e02565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806127a5575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156127ae575f90505b5f8115612a175760165f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561280c57505f600e54115b156128d657612839606461282b600e548861310390919063ffffffff16565b61311890919063ffffffff16565b9050600e546010548261284c9190613d48565b6128569190613db6565b60135f82825461286691906139db565b92505081905550600e546011548261287e9190613d48565b6128889190613db6565b60145f82825461289891906139db565b92505081905550600e54600f54826128b09190613d48565b6128ba9190613db6565b60125f8282546128ca91906139db565b925050819055506129f4565b60165f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561292d57505f600a54115b156129f35761295a606461294c600a548861310390919063ffffffff16565b61311890919063ffffffff16565b9050600a54600c548261296d9190613d48565b6129779190613db6565b60135f82825461298791906139db565b92505081905550600a54600d548261299f9190613d48565b6129a99190613db6565b60145f8282546129b991906139db565b92505081905550600a54600b54826129d19190613d48565b6129db9190613db6565b60125f8282546129eb91906139db565b925050819055505b5b5f811115612a0857612a07873083612b8d565b5b8085612a1491906142be565b94505b612a22878787612b8d565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf29061411c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c60906141aa565b60405180910390fd5b612c7483838361312d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cee90614361565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612d8591906139db565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612de99190613613565b60405180910390a3612dfc848484613132565b50505050565b5f612e0c30610eb8565b90505f601454601254601354612e2291906139db565b612e2c91906139db565b90505f80831480612e3c57505f82145b15612e4957505050613101565b6014600854612e589190613d48565b831115612e71576014600854612e6e9190613d48565b92505b5f60028360135486612e839190613d48565b612e8d9190613db6565b612e979190613db6565b90505f612ead828661313790919063ffffffff16565b90505f479050612ebc8261314c565b5f612ed0824761313790919063ffffffff16565b90505f612f136002601354612ee59190613db6565b88612ef091906142be565b612f056012548561310390919063ffffffff16565b61311890919063ffffffff16565b90505f612f566002601354612f289190613db6565b89612f3391906142be565b612f486014548661310390919063ffffffff16565b61311890919063ffffffff16565b90505f818385612f6691906142be565b612f7091906142be565b90505f6013819055505f6012819055505f60148190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612fcc90613aa3565b5f6040518083038185875af1925050503d805f8114613006576040519150601f19603f3d011682016040523d82523d5f602084013e61300b565b606091505b5050809850505f8711801561301f57505f81115b1561306c5761302e878261337f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826013546040516130639392919061437f565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516130b190613aa3565b5f6040518083038185875af1925050503d805f81146130eb576040519150601f19603f3d011682016040523d82523d5f602084013e6130f0565b606091505b505080985050505050505050505050505b565b5f81836131109190613d48565b905092915050565b5f81836131259190613db6565b905092915050565b505050565b505050565b5f818361314491906142be565b905092915050565b5f600267ffffffffffffffff811115613168576131676143b4565b5b6040519080825280602002602001820160405280156131965781602001602082028036833780820191505090505b50905030815f815181106131ad576131ac6143e1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613250573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132749190614422565b81600181518110613288576132876143e1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506132ed307f00000000000000000000000000000000000000000000000000000000000000008461202a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161334e95949392919061453d565b5f604051808303815f87803b158015613365575f80fd5b505af1158015613377573d5f803e3d5ffd5b505050505050565b6133aa307f00000000000000000000000000000000000000000000000000000000000000008461202a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061dead426040518863ffffffff1660e01b815260040161341096959493929190614595565b60606040518083038185885af115801561342c573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061345191906145f4565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561348f578082015181840152602081019050613474565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6134b482613458565b6134be8185613462565b93506134ce818560208601613472565b6134d78161349a565b840191505092915050565b5f6020820190508181035f8301526134fa81846134aa565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61352f82613506565b9050919050565b61353f81613525565b8114613549575f80fd5b50565b5f8135905061355a81613536565b92915050565b5f819050919050565b61357281613560565b811461357c575f80fd5b50565b5f8135905061358d81613569565b92915050565b5f80604083850312156135a9576135a8613502565b5b5f6135b68582860161354c565b92505060206135c78582860161357f565b9150509250929050565b5f8115159050919050565b6135e5816135d1565b82525050565b5f6020820190506135fe5f8301846135dc565b92915050565b61360d81613560565b82525050565b5f6020820190506136265f830184613604565b92915050565b5f819050919050565b5f61364f61364a61364584613506565b61362c565b613506565b9050919050565b5f61366082613635565b9050919050565b5f61367182613656565b9050919050565b61368181613667565b82525050565b5f60208201905061369a5f830184613678565b92915050565b5f805f606084860312156136b7576136b6613502565b5b5f6136c48682870161354c565b93505060206136d58682870161354c565b92505060406136e68682870161357f565b9150509250925092565b6136f981613525565b82525050565b5f6020820190506137125f8301846136f0565b92915050565b5f60ff82169050919050565b61372d81613718565b82525050565b5f6020820190506137465f830184613724565b92915050565b5f6020828403121561376157613760613502565b5b5f61376e8482850161354c565b91505092915050565b5f805f6060848603121561378e5761378d613502565b5b5f61379b8682870161357f565b93505060206137ac8682870161357f565b92505060406137bd8682870161357f565b9150509250925092565b6137d0816135d1565b81146137da575f80fd5b50565b5f813590506137eb816137c7565b92915050565b5f6020828403121561380657613805613502565b5b5f613813848285016137dd565b91505092915050565b5f806040838503121561383257613831613502565b5b5f61383f8582860161354c565b9250506020613850858286016137dd565b9150509250929050565b5f6020828403121561386f5761386e613502565b5b5f61387c8482850161357f565b91505092915050565b5f806040838503121561389b5761389a613502565b5b5f6138a88582860161354c565b92505060206138b98582860161354c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061390757607f821691505b60208210810361391a576139196138c3565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61397a602883613462565b915061398582613920565b604082019050919050565b5f6020820190508181035f8301526139a78161396e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6139e582613560565b91506139f083613560565b9250828201905080821115613a0857613a076139ae565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613a42602083613462565b9150613a4d82613a0e565b602082019050919050565b5f6020820190508181035f830152613a6f81613a36565b9050919050565b5f81905092915050565b50565b5f613a8e5f83613a76565b9150613a9982613a80565b5f82019050919050565b5f613aad82613a83565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f613aeb601683613462565b9150613af682613ab7565b602082019050919050565b5f6020820190508181035f830152613b1881613adf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613b79603983613462565b9150613b8482613b1f565b604082019050919050565b5f6020820190508181035f830152613ba681613b6d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613c07602583613462565b9150613c1282613bad565b604082019050919050565b5f6020820190508181035f830152613c3481613bfb565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f613c6f601783613462565b9150613c7a82613c3b565b602082019050919050565b5f6020820190508181035f830152613c9c81613c63565b9050919050565b5f81519050613cb181613569565b92915050565b5f60208284031215613ccc57613ccb613502565b5b5f613cd984828501613ca3565b91505092915050565b5f604082019050613cf55f8301856136f0565b613d026020830184613604565b9392505050565b5f81519050613d17816137c7565b92915050565b5f60208284031215613d3257613d31613502565b5b5f613d3f84828501613d09565b91505092915050565b5f613d5282613560565b9150613d5d83613560565b9250828202613d6b81613560565b91508282048414831517613d8257613d816139ae565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613dc082613560565b9150613dcb83613560565b925082613ddb57613dda613d89565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613e40603583613462565b9150613e4b82613de6565b604082019050919050565b5f6020820190508181035f830152613e6d81613e34565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f613ece603483613462565b9150613ed982613e74565b604082019050919050565b5f6020820190508181035f830152613efb81613ec2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613f5c602683613462565b9150613f6782613f02565b604082019050919050565b5f6020820190508181035f830152613f8981613f50565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613fea602483613462565b9150613ff582613f90565b604082019050919050565b5f6020820190508181035f83015261401781613fde565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614078602283613462565b91506140838261401e565b604082019050919050565b5f6020820190508181035f8301526140a58161406c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614106602583613462565b9150614111826140ac565b604082019050919050565b5f6020820190508181035f830152614133816140fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614194602383613462565b915061419f8261413a565b604082019050919050565b5f6020820190508181035f8301526141c181614188565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f614222602983613462565b915061422d826141c8565b604082019050919050565b5f6020820190508181035f83015261424f81614216565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61428a601683613462565b915061429582614256565b602082019050919050565b5f6020820190508181035f8301526142b78161427e565b9050919050565b5f6142c882613560565b91506142d383613560565b92508282039050818111156142eb576142ea6139ae565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61434b602683613462565b9150614356826142f1565b604082019050919050565b5f6020820190508181035f8301526143788161433f565b9050919050565b5f6060820190506143925f830186613604565b61439f6020830185613604565b6143ac6040830184613604565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061441c81613536565b92915050565b5f6020828403121561443757614436613502565b5b5f6144448482850161440e565b91505092915050565b5f819050919050565b5f61447061446b6144668461444d565b61362c565b613560565b9050919050565b61448081614456565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6144b881613525565b82525050565b5f6144c983836144af565b60208301905092915050565b5f602082019050919050565b5f6144eb82614486565b6144f58185614490565b9350614500836144a0565b805f5b8381101561453057815161451788826144be565b9750614522836144d5565b925050600181019050614503565b5085935050505092915050565b5f60a0820190506145505f830188613604565b61455d6020830187614477565b818103604083015261456f81866144e1565b905061457e60608301856136f0565b61458b6080830184613604565b9695505050505050565b5f60c0820190506145a85f8301896136f0565b6145b56020830188613604565b6145c26040830187614477565b6145cf6060830186614477565b6145dc60808301856136f0565b6145e960a0830184613604565b979650505050505050565b5f805f6060848603121561460b5761460a613502565b5b5f61461886828701613ca3565b935050602061462986828701613ca3565b925050604061463a86828701613ca3565b915050925092509256fea26469706673582212205b18a4d753e4b8d9a384658d4af5fc95a052993677171a0391051407ca4a4e6864736f6c63430008140033

Deployed Bytecode

0x6080604052600436106102b1575f3560e01c80638095d56411610174578063bbc0c742116100db578063d85ba06311610094578063f11a24d31161006e578063f11a24d314610a96578063f2fde38b14610ac0578063f637434214610ae8578063fde83a3414610b12576102b8565b8063d85ba06314610a06578063dd62ed3e14610a30578063e2f4560514610a6c576102b8565b8063bbc0c74214610910578063c02466681461093a578063c17b5b8c14610962578063c2c29ae21461098a578063d257b34f146109a0578063d729715f146109dc576102b8565b80639c2e4ac61161012d5780639c2e4ac6146107e2578063a457c2d71461080c578063a9059cbb14610848578063aa0e438814610884578063adee28ff146108ac578063b62496f5146108d4576102b8565b80638095d564146107005780638a8c523c146107285780638da5cb5b1461073e578063924de9b71461076857806395d89b41146107905780639a7a23d6146107ba576102b8565b806339509351116102185780636ddd1713116101d15780636ddd17131461060a57806370a0823114610634578063715018a614610670578063782c4e99146106865780637ca8448a146106b05780637cb332bb146106d8576102b8565b806339509351146104d857806349bd5a5e146105145780634e29e5231461053e5780634fbee1931461057a57806359927044146105b65780636a486a8e146105e0576102b8565b806319eab0421161026a57806319eab042146103ca5780631a8145bb146103f457806323b872dd1461041e57806324b9f3c11461045a57806327c8f83514610484578063313ce567146104ae576102b8565b806306fdde03146102bc578063095ea7b3146102e65780630e922ca714610322578063156c2f351461034c5780631694505e1461037657806318160ddd146103a0576102b8565b366102b857005b5f80fd5b3480156102c7575f80fd5b506102d0610b3c565b6040516102dd91906134e2565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190613593565b610bcc565b60405161031991906135eb565b60405180910390f35b34801561032d575f80fd5b50610336610be9565b60405161034391906135eb565b60405180910390f35b348015610357575f80fd5b50610360610bfb565b60405161036d9190613613565b60405180910390f35b348015610381575f80fd5b5061038a610c01565b6040516103979190613687565b60405180910390f35b3480156103ab575f80fd5b506103b4610c25565b6040516103c19190613613565b60405180910390f35b3480156103d5575f80fd5b506103de610c2e565b6040516103eb9190613613565b60405180910390f35b3480156103ff575f80fd5b50610408610c34565b6040516104159190613613565b60405180910390f35b348015610429575f80fd5b50610444600480360381019061043f91906136a0565b610c3a565b60405161045191906135eb565b60405180910390f35b348015610465575f80fd5b5061046e610d2c565b60405161047b9190613613565b60405180910390f35b34801561048f575f80fd5b50610498610d32565b6040516104a591906136ff565b60405180910390f35b3480156104b9575f80fd5b506104c2610d38565b6040516104cf9190613733565b60405180910390f35b3480156104e3575f80fd5b506104fe60048036038101906104f99190613593565b610d40565b60405161050b91906135eb565b60405180910390f35b34801561051f575f80fd5b50610528610de7565b60405161053591906136ff565b60405180910390f35b348015610549575f80fd5b50610564600480360381019061055f919061374c565b610e0b565b60405161057191906135eb565b60405180910390f35b348015610585575f80fd5b506105a0600480360381019061059b919061374c565b610e28565b6040516105ad91906135eb565b60405180910390f35b3480156105c1575f80fd5b506105ca610e7a565b6040516105d791906136ff565b60405180910390f35b3480156105eb575f80fd5b506105f4610e9f565b6040516106019190613613565b60405180910390f35b348015610615575f80fd5b5061061e610ea5565b60405161062b91906135eb565b60405180910390f35b34801561063f575f80fd5b5061065a6004803603810190610655919061374c565b610eb8565b6040516106679190613613565b60405180910390f35b34801561067b575f80fd5b50610684610efd565b005b348015610691575f80fd5b5061069a610f84565b6040516106a791906136ff565b60405180910390f35b3480156106bb575f80fd5b506106d660048036038101906106d1919061374c565b610fa9565b005b3480156106e3575f80fd5b506106fe60048036038101906106f9919061374c565b61109a565b005b34801561070b575f80fd5b5061072660048036038101906107219190613777565b6111d4565b005b348015610733575f80fd5b5061073c6112d3565b005b348015610749575f80fd5b5061075261139f565b60405161075f91906136ff565b60405180910390f35b348015610773575f80fd5b5061078e600480360381019061078991906137f1565b6113c7565b005b34801561079b575f80fd5b506107a4611460565b6040516107b191906134e2565b60405180910390f35b3480156107c5575f80fd5b506107e060048036038101906107db919061381c565b6114f0565b005b3480156107ed575f80fd5b506107f6611608565b6040516108039190613613565b60405180910390f35b348015610817575f80fd5b50610832600480360381019061082d9190613593565b61160e565b60405161083f91906135eb565b60405180910390f35b348015610853575f80fd5b5061086e60048036038101906108699190613593565b6116f4565b60405161087b91906135eb565b60405180910390f35b34801561088f575f80fd5b506108aa60048036038101906108a5919061381c565b611711565b005b3480156108b7575f80fd5b506108d260048036038101906108cd919061374c565b6117ef565b005b3480156108df575f80fd5b506108fa60048036038101906108f5919061374c565b611929565b60405161090791906135eb565b60405180910390f35b34801561091b575f80fd5b50610924611946565b60405161093191906135eb565b60405180910390f35b348015610945575f80fd5b50610960600480360381019061095b919061381c565b611958565b005b34801561096d575f80fd5b5061098860048036038101906109839190613777565b611a7a565b005b348015610995575f80fd5b5061099e611b79565b005b3480156109ab575f80fd5b506109c660048036038101906109c1919061385a565b611d33565b6040516109d391906135eb565b60405180910390f35b3480156109e7575f80fd5b506109f0611e87565b6040516109fd9190613613565b60405180910390f35b348015610a11575f80fd5b50610a1a611e8d565b604051610a279190613613565b60405180910390f35b348015610a3b575f80fd5b50610a566004803603810190610a519190613885565b611e93565b604051610a639190613613565b60405180910390f35b348015610a77575f80fd5b50610a80611f15565b604051610a8d9190613613565b60405180910390f35b348015610aa1575f80fd5b50610aaa611f1b565b604051610ab79190613613565b60405180910390f35b348015610acb575f80fd5b50610ae66004803603810190610ae1919061374c565b611f21565b005b348015610af3575f80fd5b50610afc612017565b604051610b099190613613565b60405180910390f35b348015610b1d575f80fd5b50610b2661201d565b604051610b339190613613565b60405180910390f35b606060038054610b4b906138f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b77906138f0565b8015610bc25780601f10610b9957610100808354040283529160200191610bc2565b820191905f5260205f20905b815481529060010190602001808311610ba557829003601f168201915b5050505050905090565b5f610bdf610bd8612023565b848461202a565b6001905092915050565b60175f9054906101000a900460ff1681565b600b5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b600f5481565b60135481565b5f610c468484846121ed565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610c8d612023565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390613990565b60405180910390fd5b610d2085610d18612023565b85840361202a565b60019150509392505050565b60125481565b61dead81565b5f6012905090565b5f610ddd610d4c612023565b848460015f610d59612023565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dd891906139db565b61202a565b6001905092915050565b7f000000000000000000000000b4a67392b7fc354e004d6480ef41e58a19a4b91581565b6018602052805f5260405f205f915054906101000a900460ff1681565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b600960019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f05612023565b73ffffffffffffffffffffffffffffffffffffffff16610f2361139f565b73ffffffffffffffffffffffffffffffffffffffff1614610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090613a58565b60405180910390fd5b610f825f612a2c565b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fb1612023565b73ffffffffffffffffffffffffffffffffffffffff16610fcf61139f565b73ffffffffffffffffffffffffffffffffffffffff1614611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90613a58565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161104a90613aa3565b5f6040518083038185875af1925050503d805f8114611084576040519150601f19603f3d011682016040523d82523d5f602084013e611089565b606091505b5050905080611096575f80fd5b5050565b6110a2612023565b73ffffffffffffffffffffffffffffffffffffffff166110c061139f565b73ffffffffffffffffffffffffffffffffffffffff1614611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90613a58565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111dc612023565b73ffffffffffffffffffffffffffffffffffffffff166111fa61139f565b73ffffffffffffffffffffffffffffffffffffffff1614611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613a58565b60405180910390fd5b82600b8190555081600c8190555080600d81905550600d54600c54600b5461127891906139db565b61128291906139db565b600a819055506005600a5411156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613b01565b60405180910390fd5b505050565b6112db612023565b73ffffffffffffffffffffffffffffffffffffffff166112f961139f565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690613a58565b60405180910390fd5b600160095f6101000a81548160ff0219169083151502179055506001600960016101000a81548160ff0219169083151502179055505f60175f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113cf612023565b73ffffffffffffffffffffffffffffffffffffffff166113ed61139f565b73ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613a58565b60405180910390fd5b80600960016101000a81548160ff02191690831515021790555050565b60606004805461146f906138f0565b80601f016020809104026020016040519081016040528092919081815260200182805461149b906138f0565b80156114e65780601f106114bd576101008083540402835291602001916114e6565b820191905f5260205f20905b8154815290600101906020018083116114c957829003601f168201915b5050505050905090565b6114f8612023565b73ffffffffffffffffffffffffffffffffffffffff1661151661139f565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613a58565b60405180910390fd5b7f000000000000000000000000b4a67392b7fc354e004d6480ef41e58a19a4b91573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f190613b8f565b60405180910390fd5b6116048282612aef565b5050565b600d5481565b5f8060015f61161b612023565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613c1d565b60405180910390fd5b6116e96116e0612023565b8585840361202a565b600191505092915050565b5f611707611700612023565b84846121ed565b6001905092915050565b611719612023565b73ffffffffffffffffffffffffffffffffffffffff1661173761139f565b73ffffffffffffffffffffffffffffffffffffffff161461178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490613a58565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506117eb8282611958565b5050565b6117f7612023565b73ffffffffffffffffffffffffffffffffffffffff1661181561139f565b73ffffffffffffffffffffffffffffffffffffffff161461186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290613a58565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6016602052805f5260405f205f915054906101000a900460ff1681565b60095f9054906101000a900460ff1681565b611960612023565b73ffffffffffffffffffffffffffffffffffffffff1661197e61139f565b73ffffffffffffffffffffffffffffffffffffffff16146119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90613a58565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a6e91906135eb565b60405180910390a25050565b611a82612023565b73ffffffffffffffffffffffffffffffffffffffff16611aa061139f565b73ffffffffffffffffffffffffffffffffffffffff1614611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90613a58565b60405180910390fd5b82600f819055508160108190555080601181905550601154601054600f54611b1e91906139db565b611b2891906139db565b600e819055506005600e541115611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90613c85565b60405180910390fd5b505050565b611b81612023565b73ffffffffffffffffffffffffffffffffffffffff16611b9f61139f565b73ffffffffffffffffffffffffffffffffffffffff1614611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90613a58565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c2f91906136ff565b602060405180830381865afa158015611c4a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c6e9190613cb7565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611cab929190613ce2565b6020604051808303815f875af1158015611cc7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ceb9190613d1d565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611d2f573d5f803e3d5ffd5b5050565b5f611d3c612023565b73ffffffffffffffffffffffffffffffffffffffff16611d5a61139f565b73ffffffffffffffffffffffffffffffffffffffff1614611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613a58565b60405180910390fd5b620186a06001611dbe610c25565b611dc89190613d48565b611dd29190613db6565b821015611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90613e56565b60405180910390fd5b6103e86005611e21610c25565b611e2b9190613d48565b611e359190613db6565b821115611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90613ee4565b60405180910390fd5b8160088190555060019050919050565b60115481565b600a5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b600c5481565b611f29612023565b73ffffffffffffffffffffffffffffffffffffffff16611f4761139f565b73ffffffffffffffffffffffffffffffffffffffff1614611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490613a58565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200290613f72565b60405180910390fd5b61201481612a2c565b50565b60105481565b60145481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f90614000565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd9061408e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121e09190613613565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122529061411c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c0906141aa565b60405180910390fd5b60175f9054906101000a900460ff16156123675760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235d90614238565b60405180910390fd5b5b5f810361237e5761237983835f612b8d565b612a27565b61238661139f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123f457506123c461139f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561242c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612466575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561247f5750600560149054906101000a900460ff16155b156125735760095f9054906101000a900460ff166125725760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612532575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612571576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612568906142a0565b60405180910390fd5b5b5b5f61257d30610eb8565b90505f60085482101590508080156125a15750600960019054906101000a900460ff165b80156125ba5750600560149054906101000a900460ff16155b801561260d575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612660575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156126b3575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156126f6576001600560146101000a81548160ff0219169083151502179055506126db612e02565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806127a5575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156127ae575f90505b5f8115612a175760165f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561280c57505f600e54115b156128d657612839606461282b600e548861310390919063ffffffff16565b61311890919063ffffffff16565b9050600e546010548261284c9190613d48565b6128569190613db6565b60135f82825461286691906139db565b92505081905550600e546011548261287e9190613d48565b6128889190613db6565b60145f82825461289891906139db565b92505081905550600e54600f54826128b09190613d48565b6128ba9190613db6565b60125f8282546128ca91906139db565b925050819055506129f4565b60165f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561292d57505f600a54115b156129f35761295a606461294c600a548861310390919063ffffffff16565b61311890919063ffffffff16565b9050600a54600c548261296d9190613d48565b6129779190613db6565b60135f82825461298791906139db565b92505081905550600a54600d548261299f9190613d48565b6129a99190613db6565b60145f8282546129b991906139db565b92505081905550600a54600b54826129d19190613d48565b6129db9190613db6565b60125f8282546129eb91906139db565b925050819055505b5b5f811115612a0857612a07873083612b8d565b5b8085612a1491906142be565b94505b612a22878787612b8d565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf29061411c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c60906141aa565b60405180910390fd5b612c7483838361312d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cee90614361565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612d8591906139db565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612de99190613613565b60405180910390a3612dfc848484613132565b50505050565b5f612e0c30610eb8565b90505f601454601254601354612e2291906139db565b612e2c91906139db565b90505f80831480612e3c57505f82145b15612e4957505050613101565b6014600854612e589190613d48565b831115612e71576014600854612e6e9190613d48565b92505b5f60028360135486612e839190613d48565b612e8d9190613db6565b612e979190613db6565b90505f612ead828661313790919063ffffffff16565b90505f479050612ebc8261314c565b5f612ed0824761313790919063ffffffff16565b90505f612f136002601354612ee59190613db6565b88612ef091906142be565b612f056012548561310390919063ffffffff16565b61311890919063ffffffff16565b90505f612f566002601354612f289190613db6565b89612f3391906142be565b612f486014548661310390919063ffffffff16565b61311890919063ffffffff16565b90505f818385612f6691906142be565b612f7091906142be565b90505f6013819055505f6012819055505f60148190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612fcc90613aa3565b5f6040518083038185875af1925050503d805f8114613006576040519150601f19603f3d011682016040523d82523d5f602084013e61300b565b606091505b5050809850505f8711801561301f57505f81115b1561306c5761302e878261337f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826013546040516130639392919061437f565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516130b190613aa3565b5f6040518083038185875af1925050503d805f81146130eb576040519150601f19603f3d011682016040523d82523d5f602084013e6130f0565b606091505b505080985050505050505050505050505b565b5f81836131109190613d48565b905092915050565b5f81836131259190613db6565b905092915050565b505050565b505050565b5f818361314491906142be565b905092915050565b5f600267ffffffffffffffff811115613168576131676143b4565b5b6040519080825280602002602001820160405280156131965781602001602082028036833780820191505090505b50905030815f815181106131ad576131ac6143e1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613250573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132749190614422565b81600181518110613288576132876143e1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506132ed307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461202a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161334e95949392919061453d565b5f604051808303815f87803b158015613365575f80fd5b505af1158015613377573d5f803e3d5ffd5b505050505050565b6133aa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461202a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061dead426040518863ffffffff1660e01b815260040161341096959493929190614595565b60606040518083038185885af115801561342c573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061345191906145f4565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561348f578082015181840152602081019050613474565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6134b482613458565b6134be8185613462565b93506134ce818560208601613472565b6134d78161349a565b840191505092915050565b5f6020820190508181035f8301526134fa81846134aa565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61352f82613506565b9050919050565b61353f81613525565b8114613549575f80fd5b50565b5f8135905061355a81613536565b92915050565b5f819050919050565b61357281613560565b811461357c575f80fd5b50565b5f8135905061358d81613569565b92915050565b5f80604083850312156135a9576135a8613502565b5b5f6135b68582860161354c565b92505060206135c78582860161357f565b9150509250929050565b5f8115159050919050565b6135e5816135d1565b82525050565b5f6020820190506135fe5f8301846135dc565b92915050565b61360d81613560565b82525050565b5f6020820190506136265f830184613604565b92915050565b5f819050919050565b5f61364f61364a61364584613506565b61362c565b613506565b9050919050565b5f61366082613635565b9050919050565b5f61367182613656565b9050919050565b61368181613667565b82525050565b5f60208201905061369a5f830184613678565b92915050565b5f805f606084860312156136b7576136b6613502565b5b5f6136c48682870161354c565b93505060206136d58682870161354c565b92505060406136e68682870161357f565b9150509250925092565b6136f981613525565b82525050565b5f6020820190506137125f8301846136f0565b92915050565b5f60ff82169050919050565b61372d81613718565b82525050565b5f6020820190506137465f830184613724565b92915050565b5f6020828403121561376157613760613502565b5b5f61376e8482850161354c565b91505092915050565b5f805f6060848603121561378e5761378d613502565b5b5f61379b8682870161357f565b93505060206137ac8682870161357f565b92505060406137bd8682870161357f565b9150509250925092565b6137d0816135d1565b81146137da575f80fd5b50565b5f813590506137eb816137c7565b92915050565b5f6020828403121561380657613805613502565b5b5f613813848285016137dd565b91505092915050565b5f806040838503121561383257613831613502565b5b5f61383f8582860161354c565b9250506020613850858286016137dd565b9150509250929050565b5f6020828403121561386f5761386e613502565b5b5f61387c8482850161357f565b91505092915050565b5f806040838503121561389b5761389a613502565b5b5f6138a88582860161354c565b92505060206138b98582860161354c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061390757607f821691505b60208210810361391a576139196138c3565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61397a602883613462565b915061398582613920565b604082019050919050565b5f6020820190508181035f8301526139a78161396e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6139e582613560565b91506139f083613560565b9250828201905080821115613a0857613a076139ae565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613a42602083613462565b9150613a4d82613a0e565b602082019050919050565b5f6020820190508181035f830152613a6f81613a36565b9050919050565b5f81905092915050565b50565b5f613a8e5f83613a76565b9150613a9982613a80565b5f82019050919050565b5f613aad82613a83565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f613aeb601683613462565b9150613af682613ab7565b602082019050919050565b5f6020820190508181035f830152613b1881613adf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613b79603983613462565b9150613b8482613b1f565b604082019050919050565b5f6020820190508181035f830152613ba681613b6d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613c07602583613462565b9150613c1282613bad565b604082019050919050565b5f6020820190508181035f830152613c3481613bfb565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f613c6f601783613462565b9150613c7a82613c3b565b602082019050919050565b5f6020820190508181035f830152613c9c81613c63565b9050919050565b5f81519050613cb181613569565b92915050565b5f60208284031215613ccc57613ccb613502565b5b5f613cd984828501613ca3565b91505092915050565b5f604082019050613cf55f8301856136f0565b613d026020830184613604565b9392505050565b5f81519050613d17816137c7565b92915050565b5f60208284031215613d3257613d31613502565b5b5f613d3f84828501613d09565b91505092915050565b5f613d5282613560565b9150613d5d83613560565b9250828202613d6b81613560565b91508282048414831517613d8257613d816139ae565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613dc082613560565b9150613dcb83613560565b925082613ddb57613dda613d89565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613e40603583613462565b9150613e4b82613de6565b604082019050919050565b5f6020820190508181035f830152613e6d81613e34565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f613ece603483613462565b9150613ed982613e74565b604082019050919050565b5f6020820190508181035f830152613efb81613ec2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613f5c602683613462565b9150613f6782613f02565b604082019050919050565b5f6020820190508181035f830152613f8981613f50565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613fea602483613462565b9150613ff582613f90565b604082019050919050565b5f6020820190508181035f83015261401781613fde565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614078602283613462565b91506140838261401e565b604082019050919050565b5f6020820190508181035f8301526140a58161406c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614106602583613462565b9150614111826140ac565b604082019050919050565b5f6020820190508181035f830152614133816140fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614194602383613462565b915061419f8261413a565b604082019050919050565b5f6020820190508181035f8301526141c181614188565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f614222602983613462565b915061422d826141c8565b604082019050919050565b5f6020820190508181035f83015261424f81614216565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61428a601683613462565b915061429582614256565b602082019050919050565b5f6020820190508181035f8301526142b78161427e565b9050919050565b5f6142c882613560565b91506142d383613560565b92508282039050818111156142eb576142ea6139ae565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61434b602683613462565b9150614356826142f1565b604082019050919050565b5f6020820190508181035f8301526143788161433f565b9050919050565b5f6060820190506143925f830186613604565b61439f6020830185613604565b6143ac6040830184613604565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061441c81613536565b92915050565b5f6020828403121561443757614436613502565b5b5f6144448482850161440e565b91505092915050565b5f819050919050565b5f61447061446b6144668461444d565b61362c565b613560565b9050919050565b61448081614456565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6144b881613525565b82525050565b5f6144c983836144af565b60208301905092915050565b5f602082019050919050565b5f6144eb82614486565b6144f58185614490565b9350614500836144a0565b805f5b8381101561453057815161451788826144be565b9750614522836144d5565b925050600181019050614503565b5085935050505092915050565b5f60a0820190506145505f830188613604565b61455d6020830187614477565b818103604083015261456f81866144e1565b905061457e60608301856136f0565b61458b6080830184613604565b9695505050505050565b5f60c0820190506145a85f8301896136f0565b6145b56020830188613604565b6145c26040830187614477565b6145cf6060830186614477565b6145dc60808301856136f0565b6145e960a0830184613604565b979650505050505050565b5f805f6060848603121561460b5761460a613502565b5b5f61461886828701613ca3565b935050602061462986828701613ca3565b925050604061463a86828701613ca3565b915050925092509256fea26469706673582212205b18a4d753e4b8d9a384658d4af5fc95a052993677171a0391051407ca4a4e6864736f6c63430008140033

Deployed Bytecode Sourcemap

30443:13102:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8507:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10674:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31701:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30976:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30519:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9627:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31118:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31267:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11325:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31228:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30622:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9469:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12226:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30577:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31744:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37049:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30786:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31083:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30902:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9798:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2419:103;;;;;;;;;;;;;:::i;:::-;;30750:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43137:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36880:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35157:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34238:148;;;;;;;;;;;;;:::i;:::-;;1768:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35049:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8726:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36163:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31049:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12944:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10138:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43341:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36671;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31635:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30862:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35973:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35560:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42872:257;;;;;;;;;;;;;:::i;:::-;;34456:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31193:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30942:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10376:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30820:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31012:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2677:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31155:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31307:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8507:100;8561:13;8594:5;8587:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8507:100;:::o;10674:169::-;10757:4;10774:39;10783:12;:10;:12::i;:::-;10797:7;10806:6;10774:8;:39::i;:::-;10831:4;10824:11;;10674:169;;;;:::o;31701:36::-;;;;;;;;;;;;;:::o;30976:29::-;;;;:::o;30519:51::-;;;:::o;9627:108::-;9688:7;9715:12;;9708:19;;9627:108;:::o;31118:30::-;;;;:::o;31267:33::-;;;;:::o;11325:492::-;11465:4;11482:36;11492:6;11500:9;11511:6;11482:9;:36::i;:::-;11531:24;11558:11;:19;11570:6;11558:19;;;;;;;;;;;;;;;:33;11578:12;:10;:12::i;:::-;11558:33;;;;;;;;;;;;;;;;11531:60;;11630:6;11610:16;:26;;11602:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11717:57;11726:6;11734:12;:10;:12::i;:::-;11767:6;11748:16;:25;11717:8;:57::i;:::-;11805:4;11798:11;;;11325:492;;;;;:::o;31228:32::-;;;;:::o;30622:89::-;30668:42;30622:89;:::o;9469:93::-;9527:5;9552:2;9545:9;;9469:93;:::o;12226:215::-;12314:4;12331:80;12340:12;:10;:12::i;:::-;12354:7;12400:10;12363:11;:25;12375:12;:10;:12::i;:::-;12363:25;;;;;;;;;;;;;;;:34;12389:7;12363:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12331:8;:80::i;:::-;12429:4;12422:11;;12226:215;;;;:::o;30577:38::-;;;:::o;31744:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;37049:126::-;37115:4;37139:19;:28;37159:7;37139:28;;;;;;;;;;;;;;;;;;;;;;;;;37132:35;;37049:126;;;:::o;30786:25::-;;;;;;;;;;;;;:::o;31083:28::-;;;;:::o;30902:31::-;;;;;;;;;;;;;:::o;9798:127::-;9872:7;9899:9;:18;9909:7;9899:18;;;;;;;;;;;;;;;;9892:25;;9798:127;;;:::o;2419:103::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2484:30:::1;2511:1;2484:18;:30::i;:::-;2419:103::o:0;30750:29::-;;;;;;;;;;;;;:::o;43137:196::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43210:12:::1;43228:6;:11;;43261:21;43228:70;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43209:89;;;43317:7;43309:16;;;::::0;::::1;;43198:135;43137:196:::0;:::o;36880:161::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36989:10:::1;;;;;;;;;;;36960:40;;36978:9;36960:40;;;;;;;;;;;;37024:9;37011:10;;:22;;;;;;;;;;;;;;;;;;36880:161:::0;:::o;35157:395::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35324:12:::1;35307:14;:29;;;;35365:13;35347:15;:31;;;;35402:8;35389:10;:21;;;;35471:10;;35453:15;;35436:14;;:32;;;;:::i;:::-;:45;;;;:::i;:::-;35421:12;:60;;;;35516:1;35500:12;;:17;;35492:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;35157:395:::0;;;:::o;34238:148::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34309:4:::1;34293:13;;:20;;;;;;;;;;;;;;;;;;34338:4;34324:11;;:18;;;;;;;;;;;;;;;;;;34373:5;34353:17;;:25;;;;;;;;;;;;;;;;;;34238:148::o:0;1768:87::-;1814:7;1841:6;;;;;;;;;;;1834:13;;1768:87;:::o;35049:100::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35134:7:::1;35120:11;;:21;;;;;;;;;;;;;;;;;;35049:100:::0;:::o;8726:104::-;8782:13;8815:7;8808:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8726:104;:::o;36163:304::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36307:13:::1;36299:21;;:4;:21;;::::0;36277:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36418:41;36447:4;36453:5;36418:28;:41::i;:::-;36163:304:::0;;:::o;31049:25::-;;;;:::o;12944:413::-;13037:4;13054:24;13081:11;:25;13093:12;:10;:12::i;:::-;13081:25;;;;;;;;;;;;;;;:34;13107:7;13081:34;;;;;;;;;;;;;;;;13054:61;;13154:15;13134:16;:35;;13126:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13247:67;13256:12;:10;:12::i;:::-;13270:7;13298:15;13279:16;:34;13247:8;:67::i;:::-;13345:4;13338:11;;;12944:413;;;;:::o;10138:175::-;10224:4;10241:42;10251:12;:10;:12::i;:::-;10265:9;10276:6;10241:9;:42::i;:::-;10301:4;10294:11;;10138:175;;;;:::o;43341:201::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43475:12:::1;43440:25;:32;43466:5;43440:32;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;43498:36;43514:5;43521:12;43498:15;:36::i;:::-;43341:201:::0;;:::o;36671:::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36804:14:::1;;;;;;;;;;;36763:56;;36785:17;36763:56;;;;;;;;;;;;36847:17;36830:14;;:34;;;;;;;;;;;;;;;;;;36671:201:::0;:::o;31635:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;30862:33::-;;;;;;;;;;;;;:::o;35973:182::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36089:8:::1;36058:19;:28;36078:7;36058:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36129:7;36113:34;;;36138:8;36113:34;;;;;;:::i;:::-;;;;;;;;35973:182:::0;;:::o;35560:405::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35729:12:::1;35711:15;:30;;;;35771:13;35752:16;:32;;;;35809:8;35795:11;:22;;;;35881:11;;35862:16;;35844:15;;:34;;;;:::i;:::-;:48;;;;:::i;:::-;35828:13;:64;;;;35928:1;35911:13;;:18;;35903:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;35560:405:::0;;;:::o;42872:257::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42933:15:::1;42966:4;42951:31;;;42991:4;42951:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42933:64;;43023:4;43008:30;;;43039:10;43051:7;43008:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43078:10;43070:28;;:51;43099:21;43070:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42922:207;42872:257::o:0;34456:497::-;34564:4;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34643:6:::1;34638:1;34622:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34621:28;;;;:::i;:::-;34608:9;:41;;34586:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;34798:4;34793:1;34777:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34776:26;;;;:::i;:::-;34763:9;:39;;34741:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;34914:9;34893:18;:30;;;;34941:4;34934:11;;34456:497:::0;;;:::o;31193:26::-;;;;:::o;30942:27::-;;;;:::o;10376:151::-;10465:7;10492:11;:18;10504:5;10492:18;;;;;;;;;;;;;;;:27;10511:7;10492:27;;;;;;;;;;;;;;;;10485:34;;10376:151;;;;:::o;30820:33::-;;;;:::o;31012:30::-;;;;:::o;2677:201::-;1999:12;:10;:12::i;:::-;1988:23;;:7;:5;:7::i;:::-;:23;;;1980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2786:1:::1;2766:22;;:8;:22;;::::0;2758:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2842:28;2861:8;2842:18;:28::i;:::-;2677:201:::0;:::o;31155:31::-;;;;:::o;31307:28::-;;;;:::o;635:98::-;688:7;715:10;708:17;;635:98;:::o;16628:380::-;16781:1;16764:19;;:5;:19;;;16756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16862:1;16843:21;;:7;:21;;;16835:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16946:6;16916:11;:18;16928:5;16916:18;;;;;;;;;;;;;;;:27;16935:7;16916:27;;;;;;;;;;;;;;;:36;;;;16984:7;16968:32;;16977:5;16968:32;;;16993:6;16968:32;;;;;;:::i;:::-;;;;;;;;16628:380;;;:::o;37183:2778::-;37331:1;37315:18;;:4;:18;;;37307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37408:1;37394:16;;:2;:16;;;37386:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37467:17;;;;;;;;;;;37463:135;;;37509:25;:31;37535:4;37509:31;;;;;;;;;;;;;;;;;;;;;;;;;37501:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;37463:135;37624:1;37614:6;:11;37610:93;;37642:28;37658:4;37664:2;37668:1;37642:15;:28::i;:::-;37685:7;;37610:93;37741:7;:5;:7::i;:::-;37733:15;;:4;:15;;;;:45;;;;;37771:7;:5;:7::i;:::-;37765:13;;:2;:13;;;;37733:45;:78;;;;;37809:1;37795:16;;:2;:16;;;;37733:78;:116;;;;;37842:6;37828:21;;:2;:21;;;;37733:116;:142;;;;;37867:8;;;;;;;;;;;37866:9;37733:142;37715:401;;;37907:13;;;;;;;;;;;37902:203;;37971:19;:25;37991:4;37971:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38000:19;:23;38020:2;38000:23;;;;;;;;;;;;;;;;;;;;;;;;;37971:52;37941:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;37902:203;37715:401;38128:28;38159:24;38177:4;38159:9;:24::i;:::-;38128:55;;38196:12;38235:18;;38211:20;:42;;38196:57;;38284:7;:35;;;;;38308:11;;;;;;;;;;;38284:35;:61;;;;;38337:8;;;;;;;;;;;38336:9;38284:61;:110;;;;;38363:25;:31;38389:4;38363:31;;;;;;;;;;;;;;;;;;;;;;;;;38362:32;38284:110;:153;;;;;38412:19;:25;38432:4;38412:25;;;;;;;;;;;;;;;;;;;;;;;;;38411:26;38284:153;:194;;;;;38455:19;:23;38475:2;38455:23;;;;;;;;;;;;;;;;;;;;;;;;;38454:24;38284:194;38266:326;;;38516:4;38505:8;;:15;;;;;;;;;;;;;;;;;;38537:10;:8;:10::i;:::-;38575:5;38564:8;;:16;;;;;;;;;;;;;;;;;;38266:326;38604:12;38620:8;;;;;;;;;;;38619:9;38604:24;;38730:19;:25;38750:4;38730:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38759:19;:23;38779:2;38759:23;;;;;;;;;;;;;;;;;;;;;;;;;38730:52;38726:100;;;38809:5;38799:15;;38726:100;38838:12;38943:7;38939:969;;;38995:25;:29;39021:2;38995:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;39044:1;39028:13;;:17;38995:50;38991:768;;;39073:34;39103:3;39073:25;39084:13;;39073:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;39066:41;;39176:13;;39156:16;;39149:4;:23;;;;:::i;:::-;39148:41;;;;:::i;:::-;39126:18;;:63;;;;;;;:::i;:::-;;;;;;;;39248:13;;39233:11;;39226:4;:18;;;;:::i;:::-;39225:36;;;;:::i;:::-;39208:13;;:53;;;;;;;:::i;:::-;;;;;;;;39328:13;;39309:15;;39302:4;:22;;;;:::i;:::-;39301:40;;;;:::i;:::-;39280:17;;:61;;;;;;;:::i;:::-;;;;;;;;38991:768;;;39403:25;:31;39429:4;39403:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39453:1;39438:12;;:16;39403:51;39399:360;;;39482:33;39511:3;39482:24;39493:12;;39482:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;39475:40;;39583:12;;39564:15;;39557:4;:22;;;;:::i;:::-;39556:39;;;;:::i;:::-;39534:18;;:61;;;;;;;:::i;:::-;;;;;;;;39653:12;;39639:10;;39632:4;:17;;;;:::i;:::-;39631:34;;;;:::i;:::-;39614:13;;:51;;;;;;;:::i;:::-;;;;;;;;39731:12;;39713:14;;39706:4;:21;;;;:::i;:::-;39705:38;;;;:::i;:::-;39684:17;;:59;;;;;;;:::i;:::-;;;;;;;;39399:360;38991:768;39786:1;39779:4;:8;39775:91;;;39808:42;39824:4;39838;39845;39808:15;:42::i;:::-;39775:91;39892:4;39882:14;;;;;:::i;:::-;;;38939:969;39920:33;39936:4;39942:2;39946:6;39920:15;:33::i;:::-;37296:2665;;;;37183:2778;;;;:::o;3038:191::-;3112:16;3131:6;;;;;;;;;;;3112:25;;3157:8;3148:6;;:17;;;;;;;;;;;;;;;;;;3212:8;3181:40;;3202:8;3181:40;;;;;;;;;;;;3101:128;3038:191;:::o;36475:188::-;36592:5;36558:25;:31;36584:4;36558:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36649:5;36615:40;;36643:4;36615:40;;;;;;;;;;;;36475:188;;:::o;13847:733::-;14005:1;13987:20;;:6;:20;;;13979:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14089:1;14068:23;;:9;:23;;;14060:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14144:47;14165:6;14173:9;14184:6;14144:20;:47::i;:::-;14204:21;14228:9;:17;14238:6;14228:17;;;;;;;;;;;;;;;;14204:41;;14281:6;14264:13;:23;;14256:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14402:6;14386:13;:22;14366:9;:17;14376:6;14366:17;;;;;;;;;;;;;;;:42;;;;14454:6;14430:9;:20;14440:9;14430:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14495:9;14478:35;;14487:6;14478:35;;;14506:6;14478:35;;;;;;:::i;:::-;;;;;;;;14526:46;14546:6;14554:9;14565:6;14526:19;:46::i;:::-;13968:612;13847:733;;;:::o;41091:1773::-;41130:23;41156:24;41174:4;41156:9;:24::i;:::-;41130:50;;41191:25;41286:13;;41253:17;;41219:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;41191:108;;41310:12;41358:1;41339:15;:20;:46;;;;41384:1;41363:17;:22;41339:46;41335:85;;;41402:7;;;;;41335:85;41475:2;41454:18;;:23;;;;:::i;:::-;41436:15;:41;41432:115;;;41533:2;41512:18;;:23;;;;:::i;:::-;41494:41;;41432:115;41608:23;41721:1;41688:17;41653:18;;41635:15;:36;;;;:::i;:::-;41634:71;;;;:::i;:::-;:88;;;;:::i;:::-;41608:114;;41733:26;41762:36;41782:15;41762;:19;;:36;;;;:::i;:::-;41733:65;;41811:25;41839:21;41811:49;;41873:36;41890:18;41873:16;:36::i;:::-;41922:18;41943:44;41969:17;41943:21;:25;;:44;;;;:::i;:::-;41922:65;;42000:22;42025:83;42105:1;42084:18;;:22;;;;:::i;:::-;42063:17;:44;;;;:::i;:::-;42025:33;42040:17;;42025:10;:14;;:33;;;;:::i;:::-;:37;;:83;;;;:::i;:::-;42000:108;;42129:18;42150:79;42226:1;42205:18;;:22;;;;:::i;:::-;42184:17;:44;;;;:::i;:::-;42150:29;42165:13;;42150:10;:14;;:29;;;;:::i;:::-;:33;;:79;;;;:::i;:::-;42129:100;;42242:23;42298:10;42281:14;42268:10;:27;;;;:::i;:::-;:40;;;;:::i;:::-;42242:66;;42342:1;42321:18;:22;;;;42374:1;42354:17;:21;;;;42402:1;42386:13;:17;;;;42438:10;;;;;;;;;;;42430:24;;42462:10;42430:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42416:61;;;;;42512:1;42494:15;:19;:42;;;;;42535:1;42517:15;:19;42494:42;42490:278;;;42553:46;42566:15;42583;42553:12;:46::i;:::-;42619:137;42652:18;42689:15;42723:18;;42619:137;;;;;;;;:::i;:::-;;;;;;;;42490:278;42802:14;;;;;;;;;;;42794:28;;42830:21;42794:62;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42780:76;;;;;41119:1745;;;;;;;;;;41091:1773;:::o;21760:98::-;21818:7;21849:1;21845;:5;;;;:::i;:::-;21838:12;;21760:98;;;;:::o;22159:::-;22217:7;22248:1;22244;:5;;;;:::i;:::-;22237:12;;22159:98;;;;:::o;17608:125::-;;;;:::o;18337:124::-;;;;:::o;21403:98::-;21461:7;21492:1;21488;:5;;;;:::i;:::-;21481:12;;21403:98;;;;:::o;39969:589::-;40095:21;40133:1;40119:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40095:40;;40164:4;40146;40151:1;40146:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40190:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40180:4;40185:1;40180:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40225:62;40242:4;40257:15;40275:11;40225:8;:62::i;:::-;40326:15;:66;;;40407:11;40433:1;40477:4;40504;40524:15;40326:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40024:534;39969:589;:::o;40566:517::-;40714:62;40731:4;40746:15;40764:11;40714:8;:62::i;:::-;40819:15;:31;;;40858:9;40891:4;40911:11;40937:1;40980;30668:42;41049:15;40819:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40566:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:60::-;3826:3;3847:5;3840:12;;3798:60;;;:::o;3864:142::-;3914:9;3947:53;3965:34;3974:24;3992:5;3974:24;:::i;:::-;3965:34;:::i;:::-;3947:53;:::i;:::-;3934:66;;3864:142;;;:::o;4012:126::-;4062:9;4095:37;4126:5;4095:37;:::i;:::-;4082:50;;4012:126;;;:::o;4144:153::-;4221:9;4254:37;4285:5;4254:37;:::i;:::-;4241:50;;4144:153;;;:::o;4303:185::-;4417:64;4475:5;4417:64;:::i;:::-;4412:3;4405:77;4303:185;;:::o;4494:276::-;4614:4;4652:2;4641:9;4637:18;4629:26;;4665:98;4760:1;4749:9;4745:17;4736:6;4665:98;:::i;:::-;4494:276;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:619::-;6595:6;6603;6611;6660:2;6648:9;6639:7;6635:23;6631:32;6628:119;;;6666:79;;:::i;:::-;6628:119;6786:1;6811:53;6856:7;6847:6;6836:9;6832:22;6811:53;:::i;:::-;6801:63;;6757:117;6913:2;6939:53;6984:7;6975:6;6964:9;6960:22;6939:53;:::i;:::-;6929:63;;6884:118;7041:2;7067:53;7112:7;7103:6;7092:9;7088:22;7067:53;:::i;:::-;7057:63;;7012:118;6518:619;;;;;:::o;7143:116::-;7213:21;7228:5;7213:21;:::i;:::-;7206:5;7203:32;7193:60;;7249:1;7246;7239:12;7193:60;7143:116;:::o;7265:133::-;7308:5;7346:6;7333:20;7324:29;;7362:30;7386:5;7362:30;:::i;:::-;7265:133;;;;:::o;7404:323::-;7460:6;7509:2;7497:9;7488:7;7484:23;7480:32;7477:119;;;7515:79;;:::i;:::-;7477:119;7635:1;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7606:114;7404:323;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:329::-;8266:6;8315:2;8303:9;8294:7;8290:23;8286:32;8283:119;;;8321:79;;:::i;:::-;8283:119;8441:1;8466:53;8511:7;8502:6;8491:9;8487:22;8466:53;:::i;:::-;8456:63;;8412:117;8207:329;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:227::-;9674:34;9670:1;9662:6;9658:14;9651:58;9743:10;9738:2;9730:6;9726:15;9719:35;9534:227;:::o;9767:366::-;9909:3;9930:67;9994:2;9989:3;9930:67;:::i;:::-;9923:74;;10006:93;10095:3;10006:93;:::i;:::-;10124:2;10119:3;10115:12;10108:19;;9767:366;;;:::o;10139:419::-;10305:4;10343:2;10332:9;10328:18;10320:26;;10392:9;10386:4;10382:20;10378:1;10367:9;10363:17;10356:47;10420:131;10546:4;10420:131;:::i;:::-;10412:139;;10139:419;;;:::o;10564:180::-;10612:77;10609:1;10602:88;10709:4;10706:1;10699:15;10733:4;10730:1;10723:15;10750:191;10790:3;10809:20;10827:1;10809:20;:::i;:::-;10804:25;;10843:20;10861:1;10843:20;:::i;:::-;10838:25;;10886:1;10883;10879:9;10872:16;;10907:3;10904:1;10901:10;10898:36;;;10914:18;;:::i;:::-;10898:36;10750:191;;;;:::o;10947:182::-;11087:34;11083:1;11075:6;11071:14;11064:58;10947:182;:::o;11135:366::-;11277:3;11298:67;11362:2;11357:3;11298:67;:::i;:::-;11291:74;;11374:93;11463:3;11374:93;:::i;:::-;11492:2;11487:3;11483:12;11476:19;;11135:366;;;:::o;11507:419::-;11673:4;11711:2;11700:9;11696:18;11688:26;;11760:9;11754:4;11750:20;11746:1;11735:9;11731:17;11724:47;11788:131;11914:4;11788:131;:::i;:::-;11780:139;;11507:419;;;:::o;11932:147::-;12033:11;12070:3;12055:18;;11932:147;;;;:::o;12085:114::-;;:::o;12205:398::-;12364:3;12385:83;12466:1;12461:3;12385:83;:::i;:::-;12378:90;;12477:93;12566:3;12477:93;:::i;:::-;12595:1;12590:3;12586:11;12579:18;;12205:398;;;:::o;12609:379::-;12793:3;12815:147;12958:3;12815:147;:::i;:::-;12808:154;;12979:3;12972:10;;12609:379;;;:::o;12994:172::-;13134:24;13130:1;13122:6;13118:14;13111:48;12994:172;:::o;13172:366::-;13314:3;13335:67;13399:2;13394:3;13335:67;:::i;:::-;13328:74;;13411:93;13500:3;13411:93;:::i;:::-;13529:2;13524:3;13520:12;13513:19;;13172:366;;;:::o;13544:419::-;13710:4;13748:2;13737:9;13733:18;13725:26;;13797:9;13791:4;13787:20;13783:1;13772:9;13768:17;13761:47;13825:131;13951:4;13825:131;:::i;:::-;13817:139;;13544:419;;;:::o;13969:244::-;14109:34;14105:1;14097:6;14093:14;14086:58;14178:27;14173:2;14165:6;14161:15;14154:52;13969:244;:::o;14219:366::-;14361:3;14382:67;14446:2;14441:3;14382:67;:::i;:::-;14375:74;;14458:93;14547:3;14458:93;:::i;:::-;14576:2;14571:3;14567:12;14560:19;;14219:366;;;:::o;14591:419::-;14757:4;14795:2;14784:9;14780:18;14772:26;;14844:9;14838:4;14834:20;14830:1;14819:9;14815:17;14808:47;14872:131;14998:4;14872:131;:::i;:::-;14864:139;;14591:419;;;:::o;15016:224::-;15156:34;15152:1;15144:6;15140:14;15133:58;15225:7;15220:2;15212:6;15208:15;15201:32;15016:224;:::o;15246:366::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15246:366;;;:::o;15618:419::-;15784:4;15822:2;15811:9;15807:18;15799:26;;15871:9;15865:4;15861:20;15857:1;15846:9;15842:17;15835:47;15899:131;16025:4;15899:131;:::i;:::-;15891:139;;15618:419;;;:::o;16043:173::-;16183:25;16179:1;16171:6;16167:14;16160:49;16043:173;:::o;16222:366::-;16364:3;16385:67;16449:2;16444:3;16385:67;:::i;:::-;16378:74;;16461:93;16550:3;16461:93;:::i;:::-;16579:2;16574:3;16570:12;16563:19;;16222:366;;;:::o;16594:419::-;16760:4;16798:2;16787:9;16783:18;16775:26;;16847:9;16841:4;16837:20;16833:1;16822:9;16818:17;16811:47;16875:131;17001:4;16875:131;:::i;:::-;16867:139;;16594:419;;;:::o;17019:143::-;17076:5;17107:6;17101:13;17092:22;;17123:33;17150:5;17123:33;:::i;:::-;17019:143;;;;:::o;17168:351::-;17238:6;17287:2;17275:9;17266:7;17262:23;17258:32;17255:119;;;17293:79;;:::i;:::-;17255:119;17413:1;17438:64;17494:7;17485:6;17474:9;17470:22;17438:64;:::i;:::-;17428:74;;17384:128;17168:351;;;;:::o;17525:332::-;17646:4;17684:2;17673:9;17669:18;17661:26;;17697:71;17765:1;17754:9;17750:17;17741:6;17697:71;:::i;:::-;17778:72;17846:2;17835:9;17831:18;17822:6;17778:72;:::i;:::-;17525:332;;;;;:::o;17863:137::-;17917:5;17948:6;17942:13;17933:22;;17964:30;17988:5;17964:30;:::i;:::-;17863:137;;;;:::o;18006:345::-;18073:6;18122:2;18110:9;18101:7;18097:23;18093:32;18090:119;;;18128:79;;:::i;:::-;18090:119;18248:1;18273:61;18326:7;18317:6;18306:9;18302:22;18273:61;:::i;:::-;18263:71;;18219:125;18006:345;;;;:::o;18357:410::-;18397:7;18420:20;18438:1;18420:20;:::i;:::-;18415:25;;18454:20;18472:1;18454:20;:::i;:::-;18449:25;;18509:1;18506;18502:9;18531:30;18549:11;18531:30;:::i;:::-;18520:41;;18710:1;18701:7;18697:15;18694:1;18691:22;18671:1;18664:9;18644:83;18621:139;;18740:18;;:::i;:::-;18621:139;18405:362;18357:410;;;;:::o;18773:180::-;18821:77;18818:1;18811:88;18918:4;18915:1;18908:15;18942:4;18939:1;18932:15;18959:185;18999:1;19016:20;19034:1;19016:20;:::i;:::-;19011:25;;19050:20;19068:1;19050:20;:::i;:::-;19045:25;;19089:1;19079:35;;19094:18;;:::i;:::-;19079:35;19136:1;19133;19129:9;19124:14;;18959:185;;;;:::o;19150:240::-;19290:34;19286:1;19278:6;19274:14;19267:58;19359:23;19354:2;19346:6;19342:15;19335:48;19150:240;:::o;19396:366::-;19538:3;19559:67;19623:2;19618:3;19559:67;:::i;:::-;19552:74;;19635:93;19724:3;19635:93;:::i;:::-;19753:2;19748:3;19744:12;19737:19;;19396:366;;;:::o;19768:419::-;19934:4;19972:2;19961:9;19957:18;19949:26;;20021:9;20015:4;20011:20;20007:1;19996:9;19992:17;19985:47;20049:131;20175:4;20049:131;:::i;:::-;20041:139;;19768:419;;;:::o;20193:239::-;20333:34;20329:1;20321:6;20317:14;20310:58;20402:22;20397:2;20389:6;20385:15;20378:47;20193:239;:::o;20438:366::-;20580:3;20601:67;20665:2;20660:3;20601:67;:::i;:::-;20594:74;;20677:93;20766:3;20677:93;:::i;:::-;20795:2;20790:3;20786:12;20779:19;;20438:366;;;:::o;20810:419::-;20976:4;21014:2;21003:9;20999:18;20991:26;;21063:9;21057:4;21053:20;21049:1;21038:9;21034:17;21027:47;21091:131;21217:4;21091:131;:::i;:::-;21083:139;;20810:419;;;:::o;21235:225::-;21375:34;21371:1;21363:6;21359:14;21352:58;21444:8;21439:2;21431:6;21427:15;21420:33;21235:225;:::o;21466:366::-;21608:3;21629:67;21693:2;21688:3;21629:67;:::i;:::-;21622:74;;21705:93;21794:3;21705:93;:::i;:::-;21823:2;21818:3;21814:12;21807:19;;21466:366;;;:::o;21838:419::-;22004:4;22042:2;22031:9;22027:18;22019:26;;22091:9;22085:4;22081:20;22077:1;22066:9;22062:17;22055:47;22119:131;22245:4;22119:131;:::i;:::-;22111:139;;21838:419;;;:::o;22263:223::-;22403:34;22399:1;22391:6;22387:14;22380:58;22472:6;22467:2;22459:6;22455:15;22448:31;22263:223;:::o;22492:366::-;22634:3;22655:67;22719:2;22714:3;22655:67;:::i;:::-;22648:74;;22731:93;22820:3;22731:93;:::i;:::-;22849:2;22844:3;22840:12;22833:19;;22492:366;;;:::o;22864:419::-;23030:4;23068:2;23057:9;23053:18;23045:26;;23117:9;23111:4;23107:20;23103:1;23092:9;23088:17;23081:47;23145:131;23271:4;23145:131;:::i;:::-;23137:139;;22864:419;;;:::o;23289:221::-;23429:34;23425:1;23417:6;23413:14;23406:58;23498:4;23493:2;23485:6;23481:15;23474:29;23289:221;:::o;23516:366::-;23658:3;23679:67;23743:2;23738:3;23679:67;:::i;:::-;23672:74;;23755:93;23844:3;23755:93;:::i;:::-;23873:2;23868:3;23864:12;23857:19;;23516:366;;;:::o;23888:419::-;24054:4;24092:2;24081:9;24077:18;24069:26;;24141:9;24135:4;24131:20;24127:1;24116:9;24112:17;24105:47;24169:131;24295:4;24169:131;:::i;:::-;24161:139;;23888:419;;;:::o;24313:224::-;24453:34;24449:1;24441:6;24437:14;24430:58;24522:7;24517:2;24509:6;24505:15;24498:32;24313:224;:::o;24543:366::-;24685:3;24706:67;24770:2;24765:3;24706:67;:::i;:::-;24699:74;;24782:93;24871:3;24782:93;:::i;:::-;24900:2;24895:3;24891:12;24884:19;;24543:366;;;:::o;24915:419::-;25081:4;25119:2;25108:9;25104:18;25096:26;;25168:9;25162:4;25158:20;25154:1;25143:9;25139:17;25132:47;25196:131;25322:4;25196:131;:::i;:::-;25188:139;;24915:419;;;:::o;25340:222::-;25480:34;25476:1;25468:6;25464:14;25457:58;25549:5;25544:2;25536:6;25532:15;25525:30;25340:222;:::o;25568:366::-;25710:3;25731:67;25795:2;25790:3;25731:67;:::i;:::-;25724:74;;25807:93;25896:3;25807:93;:::i;:::-;25925:2;25920:3;25916:12;25909:19;;25568:366;;;:::o;25940:419::-;26106:4;26144:2;26133:9;26129:18;26121:26;;26193:9;26187:4;26183:20;26179:1;26168:9;26164:17;26157:47;26221:131;26347:4;26221:131;:::i;:::-;26213:139;;25940:419;;;:::o;26365:228::-;26505:34;26501:1;26493:6;26489:14;26482:58;26574:11;26569:2;26561:6;26557:15;26550:36;26365:228;:::o;26599:366::-;26741:3;26762:67;26826:2;26821:3;26762:67;:::i;:::-;26755:74;;26838:93;26927:3;26838:93;:::i;:::-;26956:2;26951:3;26947:12;26940:19;;26599:366;;;:::o;26971:419::-;27137:4;27175:2;27164:9;27160:18;27152:26;;27224:9;27218:4;27214:20;27210:1;27199:9;27195:17;27188:47;27252:131;27378:4;27252:131;:::i;:::-;27244:139;;26971:419;;;:::o;27396:172::-;27536:24;27532:1;27524:6;27520:14;27513:48;27396:172;:::o;27574:366::-;27716:3;27737:67;27801:2;27796:3;27737:67;:::i;:::-;27730:74;;27813:93;27902:3;27813:93;:::i;:::-;27931:2;27926:3;27922:12;27915:19;;27574:366;;;:::o;27946:419::-;28112:4;28150:2;28139:9;28135:18;28127:26;;28199:9;28193:4;28189:20;28185:1;28174:9;28170:17;28163:47;28227:131;28353:4;28227:131;:::i;:::-;28219:139;;27946:419;;;:::o;28371:194::-;28411:4;28431:20;28449:1;28431:20;:::i;:::-;28426:25;;28465:20;28483:1;28465:20;:::i;:::-;28460:25;;28509:1;28506;28502:9;28494:17;;28533:1;28527:4;28524:11;28521:37;;;28538:18;;:::i;:::-;28521:37;28371:194;;;;:::o;28571:225::-;28711:34;28707:1;28699:6;28695:14;28688:58;28780:8;28775:2;28767:6;28763:15;28756:33;28571:225;:::o;28802:366::-;28944:3;28965:67;29029:2;29024:3;28965:67;:::i;:::-;28958:74;;29041:93;29130:3;29041:93;:::i;:::-;29159:2;29154:3;29150:12;29143:19;;28802:366;;;:::o;29174:419::-;29340:4;29378:2;29367:9;29363:18;29355:26;;29427:9;29421:4;29417:20;29413:1;29402:9;29398:17;29391:47;29455:131;29581:4;29455:131;:::i;:::-;29447:139;;29174:419;;;:::o;29599:442::-;29748:4;29786:2;29775:9;29771:18;29763:26;;29799:71;29867:1;29856:9;29852:17;29843:6;29799:71;:::i;:::-;29880:72;29948:2;29937:9;29933:18;29924:6;29880:72;:::i;:::-;29962;30030:2;30019:9;30015:18;30006:6;29962:72;:::i;:::-;29599:442;;;;;;:::o;30047:180::-;30095:77;30092:1;30085:88;30192:4;30189:1;30182:15;30216:4;30213:1;30206:15;30233:180;30281:77;30278:1;30271:88;30378:4;30375:1;30368:15;30402:4;30399:1;30392:15;30419:143;30476:5;30507:6;30501:13;30492:22;;30523:33;30550:5;30523:33;:::i;:::-;30419:143;;;;:::o;30568:351::-;30638:6;30687:2;30675:9;30666:7;30662:23;30658:32;30655:119;;;30693:79;;:::i;:::-;30655:119;30813:1;30838:64;30894:7;30885:6;30874:9;30870:22;30838:64;:::i;:::-;30828:74;;30784:128;30568:351;;;;:::o;30925:85::-;30970:7;30999:5;30988:16;;30925:85;;;:::o;31016:158::-;31074:9;31107:61;31125:42;31134:32;31160:5;31134:32;:::i;:::-;31125:42;:::i;:::-;31107:61;:::i;:::-;31094:74;;31016:158;;;:::o;31180:147::-;31275:45;31314:5;31275:45;:::i;:::-;31270:3;31263:58;31180:147;;:::o;31333:114::-;31400:6;31434:5;31428:12;31418:22;;31333:114;;;:::o;31453:184::-;31552:11;31586:6;31581:3;31574:19;31626:4;31621:3;31617:14;31602:29;;31453:184;;;;:::o;31643:132::-;31710:4;31733:3;31725:11;;31763:4;31758:3;31754:14;31746:22;;31643:132;;;:::o;31781:108::-;31858:24;31876:5;31858:24;:::i;:::-;31853:3;31846:37;31781:108;;:::o;31895:179::-;31964:10;31985:46;32027:3;32019:6;31985:46;:::i;:::-;32063:4;32058:3;32054:14;32040:28;;31895:179;;;;:::o;32080:113::-;32150:4;32182;32177:3;32173:14;32165:22;;32080:113;;;:::o;32229:732::-;32348:3;32377:54;32425:5;32377:54;:::i;:::-;32447:86;32526:6;32521:3;32447:86;:::i;:::-;32440:93;;32557:56;32607:5;32557:56;:::i;:::-;32636:7;32667:1;32652:284;32677:6;32674:1;32671:13;32652:284;;;32753:6;32747:13;32780:63;32839:3;32824:13;32780:63;:::i;:::-;32773:70;;32866:60;32919:6;32866:60;:::i;:::-;32856:70;;32712:224;32699:1;32696;32692:9;32687:14;;32652:284;;;32656:14;32952:3;32945:10;;32353:608;;;32229:732;;;;:::o;32967:831::-;33230:4;33268:3;33257:9;33253:19;33245:27;;33282:71;33350:1;33339:9;33335:17;33326:6;33282:71;:::i;:::-;33363:80;33439:2;33428:9;33424:18;33415:6;33363:80;:::i;:::-;33490:9;33484:4;33480:20;33475:2;33464:9;33460:18;33453:48;33518:108;33621:4;33612:6;33518:108;:::i;:::-;33510:116;;33636:72;33704:2;33693:9;33689:18;33680:6;33636:72;:::i;:::-;33718:73;33786:3;33775:9;33771:19;33762:6;33718:73;:::i;:::-;32967:831;;;;;;;;:::o;33804:807::-;34053:4;34091:3;34080:9;34076:19;34068:27;;34105:71;34173:1;34162:9;34158:17;34149:6;34105:71;:::i;:::-;34186:72;34254:2;34243:9;34239:18;34230:6;34186:72;:::i;:::-;34268:80;34344:2;34333:9;34329:18;34320:6;34268:80;:::i;:::-;34358;34434:2;34423:9;34419:18;34410:6;34358:80;:::i;:::-;34448:73;34516:3;34505:9;34501:19;34492:6;34448:73;:::i;:::-;34531;34599:3;34588:9;34584:19;34575:6;34531:73;:::i;:::-;33804:807;;;;;;;;;:::o;34617:663::-;34705:6;34713;34721;34770:2;34758:9;34749:7;34745:23;34741:32;34738:119;;;34776:79;;:::i;:::-;34738:119;34896:1;34921:64;34977:7;34968:6;34957:9;34953:22;34921:64;:::i;:::-;34911:74;;34867:128;35034:2;35060:64;35116:7;35107:6;35096:9;35092:22;35060:64;:::i;:::-;35050:74;;35005:129;35173:2;35199:64;35255:7;35246:6;35235:9;35231:22;35199:64;:::i;:::-;35189:74;;35144:129;34617:663;;;;;:::o

Swarm Source

ipfs://5b18a4d753e4b8d9a384658d4af5fc95a052993677171a0391051407ca4a4e68
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.