ETH Price: $3,456.26 (-0.89%)
Gas: 2 Gwei

Token

Kids Inu (KINU)
 

Overview

Max Total Supply

4,000,000,000 KINU

Holders

188

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
113,474.986676125 KINU

Value
$0.00
0x3D1ff3F071CfaF83407e73666744412F113CEEF6
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:
KidsInu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-17
*/

/*

https://twitter.com/KidsInu

4% tax for each buy and sell where the following is allocated per swap:
- 2% added to liquidity
- 2% sent to "Save the Children"
  ETH address: 0x494c42b7E9CC25735a601A71513710b4F3969C8C via "The Giving Block"
  Link: https://support.savethechildren.org/site/SPageNavigator/donation__crypto.html
  Donation history and screenshots will be posted in main website at http://kidsinu.eth

*/

// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.9;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

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

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

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

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

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

        return c;
    }

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

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

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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

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

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

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



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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

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

    bool private swapping;

    address public devWallet;
    address public GivingBlockWallet;

    uint8 constant _decimals = 9;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    bool public transferDelayEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyGivingBlockWalletFee;
    
    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellGivingBlockWalletFee;
    
    uint256 public tokensForLiquidity;
    uint256 public tokensForGivingBlockWallet;

    uint256 public walletDigit;
    uint256 public transDigit;
    uint256 public supply;
    
    /******************/

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Kids Inu", "KINU") {

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyLiquidityFee = 2;
        uint256 _buyGivingBlockWalletFee = 2;

        uint256 _sellLiquidityFee = 2;
        uint256 _sellGivingBlockWalletFee = 2;
        
        uint256 totalSupply = 4 * 1e9 * 10 ** _decimals;
        supply += totalSupply;
        
        walletDigit = 25;
        transDigit = 25;

        maxTransactionAmount = supply * transDigit / 1000;
        swapTokensAtAmount = supply * 75 / 100000; // 0.075% swap wallet;
        maxWallet = supply * walletDigit / 1000;

        buyLiquidityFee = _buyLiquidityFee;
        buyGivingBlockWalletFee = _buyGivingBlockWalletFee;
        buyTotalFees = buyLiquidityFee + buyGivingBlockWalletFee;
        
        sellLiquidityFee = _sellLiquidityFee;
        sellGivingBlockWalletFee = _sellGivingBlockWalletFee;
        sellTotalFees = sellLiquidityFee + sellGivingBlockWalletFee;
        
        GivingBlockWallet = 0x494c42b7E9CC25735a601A71513710b4F3969C8C; //set as GivingBlock wallet

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

        _approve(owner(), address(uniswapV2Router), totalSupply);

        _mint(msg.sender, 4 * 1e9 * 10 ** _decimals);

        tradingActive = false;
        swapEnabled = false;

    }

    receive() external payable {

  	}

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

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
     // 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;
  	}
    
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/(10 ** _decimals), "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10** _decimals);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/(10 ** _decimals), "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10** _decimals);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(uint256 _liquidityFee, uint _buyGivingBlockWalletFee) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyGivingBlockWalletFee = _buyGivingBlockWalletFee;
        buyTotalFees = buyLiquidityFee + buyGivingBlockWalletFee;
        require(buyTotalFees <= 4, "Must keep fees at 4% or less");
    }
    
    function updateSellFees(uint256 _liquidityFee, uint _sellGivingBlockWalletFee) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellGivingBlockWalletFee = _sellGivingBlockWalletFee;
        sellTotalFees = sellLiquidityFee + sellGivingBlockWalletFee;
        require(sellTotalFees <= 4, "Must keep fees at 4% or less");
    }

    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 updateDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

    function updateGivingBlockWallet(address newWallet) external onlyOwner {
        GivingBlockWallet = newWallet;
    }
    

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

    function updateLimits() private {
        maxTransactionAmount = supply * transDigit / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWallet = supply * walletDigit / 100;
    }


    
    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(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }


                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
        
        
		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;
                tokensForGivingBlockWallet += fees * sellGivingBlockWalletFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForGivingBlockWallet += fees * buyGivingBlockWalletFee / 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 + tokensForGivingBlockWallet;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 5){
          contractBalance = swapTokensAtAmount * 5;
        }
        
        // 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 ethForGivingBlock = ethBalance.mul(tokensForGivingBlockWallet).div(totalTokensToSwap);
        
        uint256 ethForLiquidity = ethBalance - ethForGivingBlock;
        
        
        tokensForLiquidity = 0;
        tokensForGivingBlockWallet = 0;
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
        }
        
        (success,) = address(GivingBlockWallet).call{value: address(this).balance}("");
    }


}

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":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"},{"inputs":[],"name":"GivingBlockWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":"buyGivingBlockWalletFee","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":"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellGivingBlockWalletFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","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":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokensForGivingBlockWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","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":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyGivingBlockWalletFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateGivingBlockWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellGivingBlockWalletFee","type":"uint256"}],"name":"updateSellFees","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":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506000600b60036101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600881526020017f4b69647320496e750000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b494e550000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000dd2565b5080600490805190602001906200011b92919062000dd2565b505050600062000130620006cb60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb816001620006d360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000eec565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000eec565b6040518363ffffffff1660e01b81526004016200036e92919062000f2f565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000eec565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a0516001620006d360201b60201c565b6200042160a0516001620007d060201b60201c565b60006002905060006002905060006002905060006002905060006009600a6200044b9190620010f6565b63ee6b28006200045c919062001147565b90508060166000828254620004729190620011a8565b92505081905550601960148190555060196015819055506103e86015546016546200049e919062001147565b620004aa919062001234565b600881905550620186a0604b601654620004c5919062001147565b620004d1919062001234565b6009819055506103e8601454601654620004ec919062001147565b620004f8919062001234565b600a8190555084600d8190555083600e81905550600e54600d546200051e9190620011a8565b600c819055508260108190555081601181905550601154601054620005449190620011a8565b600f8190555073494c42b7e9cc25735a601a71513710b4f3969c8c600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005c1620005b36200087160201b60201c565b60016200089b60201b60201c565b620005d43060016200089b60201b60201c565b620005e961dead60016200089b60201b60201c565b6200060b620005fd6200087160201b60201c565b6001620006d360201b60201c565b6200061e306001620006d360201b60201c565b6200063361dead6001620006d360201b60201c565b62000657620006476200087160201b60201c565b60805183620009e860201b60201c565b62000689336009600a6200066c9190620010f6565b63ee6b28006200067d919062001147565b62000bbb60201b60201c565b6000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550505050505050620015d0565b600033905090565b620006e3620006cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000775576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076c90620012cd565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008ab620006cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200093d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093490620012cd565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009dc91906200130c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000a5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a52906200139f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ace576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ac59062001437565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000bae91906200146a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c2590620014d7565b60405180910390fd5b62000c426000838362000d6a60201b60201c565b62000c5e8160025462000d6f60201b620022911790919060201c565b60028190555062000cbc816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000d6f60201b620022911790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000d5e91906200146a565b60405180910390a35050565b505050565b600080828462000d809190620011a8565b90508381101562000dc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000dbf9062001549565b60405180910390fd5b8091505092915050565b82805462000de0906200159a565b90600052602060002090601f01602090048101928262000e04576000855562000e50565b82601f1062000e1f57805160ff191683800117855562000e50565b8280016001018555821562000e50579182015b8281111562000e4f57825182559160200191906001019062000e32565b5b50905062000e5f919062000e63565b5090565b5b8082111562000e7e57600081600090555060010162000e64565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000eb48262000e87565b9050919050565b62000ec68162000ea7565b811462000ed257600080fd5b50565b60008151905062000ee68162000ebb565b92915050565b60006020828403121562000f055762000f0462000e82565b5b600062000f158482850162000ed5565b91505092915050565b62000f298162000ea7565b82525050565b600060408201905062000f46600083018562000f1e565b62000f55602083018462000f1e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000fea5780860481111562000fc25762000fc162000f5c565b5b600185161562000fd25780820291505b808102905062000fe28562000f8b565b945062000fa2565b94509492505050565b600082620010055760019050620010d8565b81620010155760009050620010d8565b81600181146200102e576002811462001039576200106f565b6001915050620010d8565b60ff8411156200104e576200104d62000f5c565b5b8360020a91508482111562001068576200106762000f5c565b5b50620010d8565b5060208310610133831016604e8410600b8410161715620010a95782820a905083811115620010a357620010a262000f5c565b5b620010d8565b620010b8848484600162000f98565b92509050818404811115620010d257620010d162000f5c565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200110382620010df565b91506200111083620010e9565b92506200113f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ff3565b905092915050565b60006200115482620010df565b91506200116183620010df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200119d576200119c62000f5c565b5b828202905092915050565b6000620011b582620010df565b9150620011c283620010df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011fa57620011f962000f5c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200124182620010df565b91506200124e83620010df565b92508262001261576200126062001205565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620012b56020836200126c565b9150620012c2826200127d565b602082019050919050565b60006020820190508181036000830152620012e881620012a6565b9050919050565b60008115159050919050565b6200130681620012ef565b82525050565b6000602082019050620013236000830184620012fb565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620013876024836200126c565b9150620013948262001329565b604082019050919050565b60006020820190508181036000830152620013ba8162001378565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200141f6022836200126c565b91506200142c82620013c1565b604082019050919050565b60006020820190508181036000830152620014528162001410565b9050919050565b6200146481620010df565b82525050565b600060208201905062001481600083018462001459565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620014bf601f836200126c565b9150620014cc8262001487565b602082019050919050565b60006020820190508181036000830152620014f281620014b0565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001531601b836200126c565b91506200153e82620014f9565b602082019050919050565b60006020820190508181036000830152620015648162001522565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620015b357607f821691505b60208210811415620015ca57620015c96200156b565b5b50919050565b60805160a051614e31620016206000396000818161123c015261198e015260008181610e320152818161364b0152818161373b01528181613762015281816137fe01526138250152614e316000f3fe6080604052600436106103035760003560e01c80637571336a11610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bab578063f2fde38b14610bd6578063f637434214610bff578063f8b45b0514610c2a5761030a565b8063dd62ed3e14610b18578063dfbb2d5414610b55578063e2f4560514610b805761030a565b8063c024666814610a08578063c18bc19514610a31578063c876d0b914610a5a578063c8c8ebe414610a85578063d257b34f14610ab0578063d85ba06314610aed5761030a565b8063975d71e211610149578063a9059cbb11610123578063a9059cbb1461093a578063b62496f514610977578063bbc0c742146109b4578063bf933c78146109df5761030a565b8063975d71e2146108a95780639a7a23d6146108d4578063a457c2d7146108fd5761030a565b80637571336a146107bd5780637ab43983146107e65780638a8c523c146108115780638da5cb5b146108285780638ea5220f1461085357806395d89b411461087e5761030a565b80632b2c19f31161024f5780634fbee193116102085780636ddd1713116101e25780636ddd17131461071357806370a082311461073e578063715018a61461077b578063751039fc146107925761030a565b80634fbee1931461068257806366ca9b83146106bf5780636a486a8e146106e85761030a565b80632b2c19f31461056e578063313ce5671461059957806339509351146105c457806349bd5a5e1461060157806349fd5dd81461062c5780634a62bb65146106575761030a565b806318160ddd116102bc5780631a8145bb116102965780631a8145bb146104b2578063203e727e146104dd57806323b872dd1461050657806327c8f835146105435761030a565b806318160ddd146104335780631816467f1461045e57806319570aad146104875761030a565b806302dbd8f81461030f578063047fc9aa1461033857806306fdde0314610363578063095ea7b31461038e57806310d5de53146103cb5780631694505e146104085761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b5061033660048036038101906103319190613981565b610c55565b005b34801561034457600080fd5b5061034d610d5a565b60405161035a91906139d0565b60405180910390f35b34801561036f57600080fd5b50610378610d60565b6040516103859190613a84565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613b04565b610df2565b6040516103c29190613b5f565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613b7a565b610e10565b6040516103ff9190613b5f565b60405180910390f35b34801561041457600080fd5b5061041d610e30565b60405161042a9190613c06565b60405180910390f35b34801561043f57600080fd5b50610448610e54565b60405161045591906139d0565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190613b7a565b610e5e565b005b34801561049357600080fd5b5061049c610f39565b6040516104a991906139d0565b60405180910390f35b3480156104be57600080fd5b506104c7610f3f565b6040516104d491906139d0565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190613c21565b610f45565b005b34801561051257600080fd5b5061052d60048036038101906105289190613c4e565b611079565b60405161053a9190613b5f565b60405180910390f35b34801561054f57600080fd5b50610558611152565b6040516105659190613cb0565b60405180910390f35b34801561057a57600080fd5b50610583611158565b6040516105909190613cb0565b60405180910390f35b3480156105a557600080fd5b506105ae61117e565b6040516105bb9190613ce7565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190613b04565b611187565b6040516105f89190613b5f565b60405180910390f35b34801561060d57600080fd5b5061061661123a565b6040516106239190613cb0565b60405180910390f35b34801561063857600080fd5b5061064161125e565b60405161064e91906139d0565b60405180910390f35b34801561066357600080fd5b5061066c611264565b6040516106799190613b5f565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190613b7a565b611277565b6040516106b69190613b5f565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190613981565b6112cd565b005b3480156106f457600080fd5b506106fd6113d2565b60405161070a91906139d0565b60405180910390f35b34801561071f57600080fd5b506107286113d8565b6040516107359190613b5f565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613b7a565b6113eb565b60405161077291906139d0565b60405180910390f35b34801561078757600080fd5b50610790611433565b005b34801561079e57600080fd5b506107a761158b565b6040516107b49190613b5f565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190613d2e565b611646565b005b3480156107f257600080fd5b506107fb611738565b60405161080891906139d0565b60405180910390f35b34801561081d57600080fd5b5061082661173e565b005b34801561083457600080fd5b5061083d61180d565b60405161084a9190613cb0565b60405180910390f35b34801561085f57600080fd5b50610868611837565b6040516108759190613cb0565b60405180910390f35b34801561088a57600080fd5b5061089361185d565b6040516108a09190613a84565b60405180910390f35b3480156108b557600080fd5b506108be6118ef565b6040516108cb91906139d0565b60405180910390f35b3480156108e057600080fd5b506108fb60048036038101906108f69190613d2e565b6118f5565b005b34801561090957600080fd5b50610924600480360381019061091f9190613b04565b611a29565b6040516109319190613b5f565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c9190613b04565b611af6565b60405161096e9190613b5f565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190613b7a565b611b14565b6040516109ab9190613b5f565b60405180910390f35b3480156109c057600080fd5b506109c9611b34565b6040516109d69190613b5f565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a019190613b7a565b611b47565b005b348015610a1457600080fd5b50610a2f6004803603810190610a2a9190613d2e565b611c22565b005b348015610a3d57600080fd5b50610a586004803603810190610a539190613c21565b611d62565b005b348015610a6657600080fd5b50610a6f611e96565b604051610a7c9190613b5f565b60405180910390f35b348015610a9157600080fd5b50610a9a611ea9565b604051610aa791906139d0565b60405180910390f35b348015610abc57600080fd5b50610ad76004803603810190610ad29190613c21565b611eaf565b604051610ae49190613b5f565b60405180910390f35b348015610af957600080fd5b50610b0261201f565b604051610b0f91906139d0565b60405180910390f35b348015610b2457600080fd5b50610b3f6004803603810190610b3a9190613d6e565b612025565b604051610b4c91906139d0565b60405180910390f35b348015610b6157600080fd5b50610b6a6120ac565b604051610b7791906139d0565b60405180910390f35b348015610b8c57600080fd5b50610b956120b2565b604051610ba291906139d0565b60405180910390f35b348015610bb757600080fd5b50610bc06120b8565b604051610bcd91906139d0565b60405180910390f35b348015610be257600080fd5b50610bfd6004803603810190610bf89190613b7a565b6120be565b005b348015610c0b57600080fd5b50610c14612285565b604051610c2191906139d0565b60405180910390f35b348015610c3657600080fd5b50610c3f61228b565b604051610c4c91906139d0565b60405180910390f35b610c5d6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390613dfa565b60405180910390fd5b8160108190555080601181905550601154601054610d0a9190613e49565b600f819055506004600f541115610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613eeb565b60405180910390fd5b5050565b60165481565b606060038054610d6f90613f3a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9b90613f3a565b8015610de85780601f10610dbd57610100808354040283529160200191610de8565b820191906000526020600020905b815481529060010190602001808311610dcb57829003601f168201915b5050505050905090565b6000610e06610dff6122ef565b84846122f7565b6001905092915050565b60186020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e666122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90613dfa565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b60125481565b610f4d6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390613dfa565b60405180910390fd5b6009600a610fea919061409f565b6103e86001610ff7610e54565b61100191906140ea565b61100b9190614173565b6110159190614173565b811015611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90614216565b60405180910390fd5b6009600a611065919061409f565b8161107091906140ea565b60088190555050565b60006110868484846124c2565b611147846110926122ef565b61114285604051806060016040528060288152602001614daf60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110f86122ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f2e9092919063ffffffff16565b6122f7565b600190509392505050565b61dead81565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b60006112306111946122ef565b8461122b85600160006111a56122ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229190919063ffffffff16565b6122f7565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60115481565b600b60009054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6112d56122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90613dfa565b60405180910390fd5b81600d8190555080600e81905550600e54600d546113829190613e49565b600c819055506004600c5411156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590613eeb565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143b6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190613dfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006115956122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90613dfa565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61164e6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613dfa565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60145481565b6117466122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90613dfa565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461186c90613f3a565b80601f016020809104026020016040519081016040528092919081815260200182805461189890613f3a565b80156118e55780601f106118ba576101008083540402835291602001916118e5565b820191906000526020600020905b8154815290600101906020018083116118c857829003601f168201915b5050505050905090565b60155481565b6118fd6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198390613dfa565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a12906142a8565b60405180910390fd5b611a258282612f92565b5050565b6000611aec611a366122ef565b84611ae785604051806060016040528060258152602001614dd76025913960016000611a606122ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f2e9092919063ffffffff16565b6122f7565b6001905092915050565b6000611b0a611b036122ef565b84846124c2565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611b4f6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590613dfa565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c2a6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613dfa565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d569190613b5f565b60405180910390a25050565b611d6a6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090613dfa565b60405180910390fd5b6009600a611e07919061409f565b6103e86005611e14610e54565b611e1e91906140ea565b611e289190614173565b611e329190614173565b811015611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b9061433a565b60405180910390fd5b6009600a611e82919061409f565b81611e8d91906140ea565b600a8190555050565b600b60039054906101000a900460ff1681565b60085481565b6000611eb96122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f90613dfa565b60405180910390fd5b620186a06001611f56610e54565b611f6091906140ea565b611f6a9190614173565b821015611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa3906143cc565b60405180910390fd5b6103e86005611fb9610e54565b611fc391906140ea565b611fcd9190614173565b82111561200f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120069061445e565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e5481565b60095481565b600d5481565b6120c66122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90613dfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc906144f0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600a5481565b60008082846122a09190613e49565b9050838110156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc9061455c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e906145ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce90614680565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124b591906139d0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252990614712565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612599906147a4565b60405180910390fd5b60008114156125bc576125b783836000613033565b612f29565b600b60009054906101000a900460ff1615612ab7576125d961180d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612647575061261761180d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126805750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126ba575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126d35750600560149054906101000a900460ff16155b15612ab657600b60019054906101000a900460ff166127cd57601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061278d5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6127cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c390614810565b60405180910390fd5b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128705750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612917576008548111156128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b1906148a2565b60405180910390fd5b600a546128c6836113eb565b826128d19190613e49565b1115612912576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129099061490e565b60405180910390fd5b612ab5565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129ba5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a0957600854811115612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb906149a0565b60405180910390fd5b612ab4565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ab357600a54612a66836113eb565b82612a719190613e49565b1115612ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa99061490e565b60405180910390fd5b5b5b5b5b5b6000612ac2306113eb565b905060006009548210159050808015612ae75750600b60029054906101000a900460ff165b8015612b005750600560149054906101000a900460ff16155b8015612b565750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bac5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c025750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c46576001600560146101000a81548160ff021916908315150217905550612c2a6132c8565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cfc5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d0657600090505b60008115612f1957601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d6957506000600f54115b15612e0357612d966064612d88600f548861349890919063ffffffff16565b61351390919063ffffffff16565b9050600f5460105482612da991906140ea565b612db39190614173565b60126000828254612dc49190613e49565b92505081905550600f5460115482612ddc91906140ea565b612de69190614173565b60136000828254612df79190613e49565b92505081905550612ef5565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e5e57506000600c54115b15612ef457612e8b6064612e7d600c548861349890919063ffffffff16565b61351390919063ffffffff16565b9050600c54600d5482612e9e91906140ea565b612ea89190614173565b60126000828254612eb99190613e49565b92505081905550600c54600e5482612ed191906140ea565b612edb9190614173565b60136000828254612eec9190613e49565b925050819055505b5b6000811115612f0a57612f09873083613033565b5b8085612f1691906149c0565b94505b612f24878787613033565b505050505b505050565b6000838311158290612f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6d9190613a84565b60405180910390fd5b5060008385612f8591906149c0565b9050809150509392505050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309a90614712565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310a906147a4565b60405180910390fd5b61311e83838361355d565b61318981604051806060016040528060268152602001614d89602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f2e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061321c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516132bb91906139d0565b60405180910390a3505050565b60006132d3306113eb565b905060006013546012546132e79190613e49565b90506000808314806132f95750600082145b1561330657505050613496565b600560095461331591906140ea565b83111561332e57600560095461332b91906140ea565b92505b60006002836012548661334191906140ea565b61334b9190614173565b6133559190614173565b9050600061336c828661356290919063ffffffff16565b9050600047905061337c826135ac565b6000613391824761356290919063ffffffff16565b905060006133bc876133ae6013548561349890919063ffffffff16565b61351390919063ffffffff16565b9050600081836133cc91906149c0565b9050600060128190555060006013819055506000861180156133ee5750600081115b156133fe576133fd86826137f8565b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161344490614a25565b60006040518083038185875af1925050503d8060008114613481576040519150601f19603f3d011682016040523d82523d6000602084013e613486565b606091505b5050809750505050505050505050505b565b6000808314156134ab576000905061350d565b600082846134b991906140ea565b90508284826134c89190614173565b14613508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ff90614aac565b60405180910390fd5b809150505b92915050565b600061355583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506138e3565b905092915050565b505050565b60006135a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612f2e565b905092915050565b6000600267ffffffffffffffff8111156135c9576135c8614acc565b5b6040519080825280602002602001820160405280156135f75781602001602082028036833780820191505090505b509050308160008151811061360f5761360e614afb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156136af57600080fd5b505afa1580156136c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136e79190614b3f565b816001815181106136fb576136fa614afb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613760307f0000000000000000000000000000000000000000000000000000000000000000846122f7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016137c2959493929190614c65565b600060405180830381600087803b1580156137dc57600080fd5b505af11580156137f0573d6000803e3d6000fd5b505050505050565b613823307f0000000000000000000000000000000000000000000000000000000000000000846122f7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161388a96959493929190614cbf565b6060604051808303818588803b1580156138a357600080fd5b505af11580156138b7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906138dc9190614d35565b5050505050565b6000808311829061392a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139219190613a84565b60405180910390fd5b50600083856139399190614173565b9050809150509392505050565b600080fd5b6000819050919050565b61395e8161394b565b811461396957600080fd5b50565b60008135905061397b81613955565b92915050565b6000806040838503121561399857613997613946565b5b60006139a68582860161396c565b92505060206139b78582860161396c565b9150509250929050565b6139ca8161394b565b82525050565b60006020820190506139e560008301846139c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a25578082015181840152602081019050613a0a565b83811115613a34576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a56826139eb565b613a6081856139f6565b9350613a70818560208601613a07565b613a7981613a3a565b840191505092915050565b60006020820190508181036000830152613a9e8184613a4b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ad182613aa6565b9050919050565b613ae181613ac6565b8114613aec57600080fd5b50565b600081359050613afe81613ad8565b92915050565b60008060408385031215613b1b57613b1a613946565b5b6000613b2985828601613aef565b9250506020613b3a8582860161396c565b9150509250929050565b60008115159050919050565b613b5981613b44565b82525050565b6000602082019050613b746000830184613b50565b92915050565b600060208284031215613b9057613b8f613946565b5b6000613b9e84828501613aef565b91505092915050565b6000819050919050565b6000613bcc613bc7613bc284613aa6565b613ba7565b613aa6565b9050919050565b6000613bde82613bb1565b9050919050565b6000613bf082613bd3565b9050919050565b613c0081613be5565b82525050565b6000602082019050613c1b6000830184613bf7565b92915050565b600060208284031215613c3757613c36613946565b5b6000613c458482850161396c565b91505092915050565b600080600060608486031215613c6757613c66613946565b5b6000613c7586828701613aef565b9350506020613c8686828701613aef565b9250506040613c978682870161396c565b9150509250925092565b613caa81613ac6565b82525050565b6000602082019050613cc56000830184613ca1565b92915050565b600060ff82169050919050565b613ce181613ccb565b82525050565b6000602082019050613cfc6000830184613cd8565b92915050565b613d0b81613b44565b8114613d1657600080fd5b50565b600081359050613d2881613d02565b92915050565b60008060408385031215613d4557613d44613946565b5b6000613d5385828601613aef565b9250506020613d6485828601613d19565b9150509250929050565b60008060408385031215613d8557613d84613946565b5b6000613d9385828601613aef565b9250506020613da485828601613aef565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613de46020836139f6565b9150613def82613dae565b602082019050919050565b60006020820190508181036000830152613e1381613dd7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e548261394b565b9150613e5f8361394b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9457613e93613e1a565b5b828201905092915050565b7f4d757374206b6565702066656573206174203425206f72206c65737300000000600082015250565b6000613ed5601c836139f6565b9150613ee082613e9f565b602082019050919050565b60006020820190508181036000830152613f0481613ec8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5257607f821691505b60208210811415613f6657613f65613f0b565b5b50919050565b60008160011c9050919050565b6000808291508390505b6001851115613fc357808604811115613f9f57613f9e613e1a565b5b6001851615613fae5780820291505b8081029050613fbc85613f6c565b9450613f83565b94509492505050565b600082613fdc5760019050614098565b81613fea5760009050614098565b8160018114614000576002811461400a57614039565b6001915050614098565b60ff84111561401c5761401b613e1a565b5b8360020a91508482111561403357614032613e1a565b5b50614098565b5060208310610133831016604e8410600b841016171561406e5782820a90508381111561406957614068613e1a565b5b614098565b61407b8484846001613f79565b9250905081840481111561409257614091613e1a565b5b81810290505b9392505050565b60006140aa8261394b565b91506140b583613ccb565b92506140e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613fcc565b905092915050565b60006140f58261394b565b91506141008361394b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561413957614138613e1a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061417e8261394b565b91506141898361394b565b92508261419957614198614144565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614200602f836139f6565b915061420b826141a4565b604082019050919050565b6000602082019050818103600083015261422f816141f3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142926039836139f6565b915061429d82614236565b604082019050919050565b600060208201905081810360008301526142c181614285565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006143246024836139f6565b915061432f826142c8565b604082019050919050565b6000602082019050818103600083015261435381614317565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143b66035836139f6565b91506143c18261435a565b604082019050919050565b600060208201905081810360008301526143e5816143a9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006144486034836139f6565b9150614453826143ec565b604082019050919050565b600060208201905081810360008301526144778161443b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144da6026836139f6565b91506144e58261447e565b604082019050919050565b60006020820190508181036000830152614509816144cd565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614546601b836139f6565b915061455182614510565b602082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006145d86024836139f6565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061466a6022836139f6565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146fc6025836139f6565b9150614707826146a0565b604082019050919050565b6000602082019050818103600083015261472b816146ef565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061478e6023836139f6565b915061479982614732565b604082019050919050565b600060208201905081810360008301526147bd81614781565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006147fa6016836139f6565b9150614805826147c4565b602082019050919050565b60006020820190508181036000830152614829816147ed565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061488c6035836139f6565b915061489782614830565b604082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006148f86013836139f6565b9150614903826148c2565b602082019050919050565b60006020820190508181036000830152614927816148eb565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061498a6036836139f6565b91506149958261492e565b604082019050919050565b600060208201905081810360008301526149b98161497d565b9050919050565b60006149cb8261394b565b91506149d68361394b565b9250828210156149e9576149e8613e1a565b5b828203905092915050565b600081905092915050565b50565b6000614a0f6000836149f4565b9150614a1a826149ff565b600082019050919050565b6000614a3082614a02565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a966021836139f6565b9150614aa182614a3a565b604082019050919050565b60006020820190508181036000830152614ac581614a89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614b3981613ad8565b92915050565b600060208284031215614b5557614b54613946565b5b6000614b6384828501614b2a565b91505092915050565b6000819050919050565b6000614b91614b8c614b8784614b6c565b613ba7565b61394b565b9050919050565b614ba181614b76565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614bdc81613ac6565b82525050565b6000614bee8383614bd3565b60208301905092915050565b6000602082019050919050565b6000614c1282614ba7565b614c1c8185614bb2565b9350614c2783614bc3565b8060005b83811015614c58578151614c3f8882614be2565b9750614c4a83614bfa565b925050600181019050614c2b565b5085935050505092915050565b600060a082019050614c7a60008301886139c1565b614c876020830187614b98565b8181036040830152614c998186614c07565b9050614ca86060830185613ca1565b614cb560808301846139c1565b9695505050505050565b600060c082019050614cd46000830189613ca1565b614ce160208301886139c1565b614cee6040830187614b98565b614cfb6060830186614b98565b614d086080830185613ca1565b614d1560a08301846139c1565b979650505050505050565b600081519050614d2f81613955565b92915050565b600080600060608486031215614d4e57614d4d613946565b5b6000614d5c86828701614d20565b9350506020614d6d86828701614d20565b9250506040614d7e86828701614d20565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220570210fc5e140a1148c4880b3338f3f9dd41e4062eae803b8392be4fe1e4b3d764736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103035760003560e01c80637571336a11610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bab578063f2fde38b14610bd6578063f637434214610bff578063f8b45b0514610c2a5761030a565b8063dd62ed3e14610b18578063dfbb2d5414610b55578063e2f4560514610b805761030a565b8063c024666814610a08578063c18bc19514610a31578063c876d0b914610a5a578063c8c8ebe414610a85578063d257b34f14610ab0578063d85ba06314610aed5761030a565b8063975d71e211610149578063a9059cbb11610123578063a9059cbb1461093a578063b62496f514610977578063bbc0c742146109b4578063bf933c78146109df5761030a565b8063975d71e2146108a95780639a7a23d6146108d4578063a457c2d7146108fd5761030a565b80637571336a146107bd5780637ab43983146107e65780638a8c523c146108115780638da5cb5b146108285780638ea5220f1461085357806395d89b411461087e5761030a565b80632b2c19f31161024f5780634fbee193116102085780636ddd1713116101e25780636ddd17131461071357806370a082311461073e578063715018a61461077b578063751039fc146107925761030a565b80634fbee1931461068257806366ca9b83146106bf5780636a486a8e146106e85761030a565b80632b2c19f31461056e578063313ce5671461059957806339509351146105c457806349bd5a5e1461060157806349fd5dd81461062c5780634a62bb65146106575761030a565b806318160ddd116102bc5780631a8145bb116102965780631a8145bb146104b2578063203e727e146104dd57806323b872dd1461050657806327c8f835146105435761030a565b806318160ddd146104335780631816467f1461045e57806319570aad146104875761030a565b806302dbd8f81461030f578063047fc9aa1461033857806306fdde0314610363578063095ea7b31461038e57806310d5de53146103cb5780631694505e146104085761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b5061033660048036038101906103319190613981565b610c55565b005b34801561034457600080fd5b5061034d610d5a565b60405161035a91906139d0565b60405180910390f35b34801561036f57600080fd5b50610378610d60565b6040516103859190613a84565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613b04565b610df2565b6040516103c29190613b5f565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613b7a565b610e10565b6040516103ff9190613b5f565b60405180910390f35b34801561041457600080fd5b5061041d610e30565b60405161042a9190613c06565b60405180910390f35b34801561043f57600080fd5b50610448610e54565b60405161045591906139d0565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190613b7a565b610e5e565b005b34801561049357600080fd5b5061049c610f39565b6040516104a991906139d0565b60405180910390f35b3480156104be57600080fd5b506104c7610f3f565b6040516104d491906139d0565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190613c21565b610f45565b005b34801561051257600080fd5b5061052d60048036038101906105289190613c4e565b611079565b60405161053a9190613b5f565b60405180910390f35b34801561054f57600080fd5b50610558611152565b6040516105659190613cb0565b60405180910390f35b34801561057a57600080fd5b50610583611158565b6040516105909190613cb0565b60405180910390f35b3480156105a557600080fd5b506105ae61117e565b6040516105bb9190613ce7565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190613b04565b611187565b6040516105f89190613b5f565b60405180910390f35b34801561060d57600080fd5b5061061661123a565b6040516106239190613cb0565b60405180910390f35b34801561063857600080fd5b5061064161125e565b60405161064e91906139d0565b60405180910390f35b34801561066357600080fd5b5061066c611264565b6040516106799190613b5f565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190613b7a565b611277565b6040516106b69190613b5f565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190613981565b6112cd565b005b3480156106f457600080fd5b506106fd6113d2565b60405161070a91906139d0565b60405180910390f35b34801561071f57600080fd5b506107286113d8565b6040516107359190613b5f565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613b7a565b6113eb565b60405161077291906139d0565b60405180910390f35b34801561078757600080fd5b50610790611433565b005b34801561079e57600080fd5b506107a761158b565b6040516107b49190613b5f565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190613d2e565b611646565b005b3480156107f257600080fd5b506107fb611738565b60405161080891906139d0565b60405180910390f35b34801561081d57600080fd5b5061082661173e565b005b34801561083457600080fd5b5061083d61180d565b60405161084a9190613cb0565b60405180910390f35b34801561085f57600080fd5b50610868611837565b6040516108759190613cb0565b60405180910390f35b34801561088a57600080fd5b5061089361185d565b6040516108a09190613a84565b60405180910390f35b3480156108b557600080fd5b506108be6118ef565b6040516108cb91906139d0565b60405180910390f35b3480156108e057600080fd5b506108fb60048036038101906108f69190613d2e565b6118f5565b005b34801561090957600080fd5b50610924600480360381019061091f9190613b04565b611a29565b6040516109319190613b5f565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c9190613b04565b611af6565b60405161096e9190613b5f565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190613b7a565b611b14565b6040516109ab9190613b5f565b60405180910390f35b3480156109c057600080fd5b506109c9611b34565b6040516109d69190613b5f565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a019190613b7a565b611b47565b005b348015610a1457600080fd5b50610a2f6004803603810190610a2a9190613d2e565b611c22565b005b348015610a3d57600080fd5b50610a586004803603810190610a539190613c21565b611d62565b005b348015610a6657600080fd5b50610a6f611e96565b604051610a7c9190613b5f565b60405180910390f35b348015610a9157600080fd5b50610a9a611ea9565b604051610aa791906139d0565b60405180910390f35b348015610abc57600080fd5b50610ad76004803603810190610ad29190613c21565b611eaf565b604051610ae49190613b5f565b60405180910390f35b348015610af957600080fd5b50610b0261201f565b604051610b0f91906139d0565b60405180910390f35b348015610b2457600080fd5b50610b3f6004803603810190610b3a9190613d6e565b612025565b604051610b4c91906139d0565b60405180910390f35b348015610b6157600080fd5b50610b6a6120ac565b604051610b7791906139d0565b60405180910390f35b348015610b8c57600080fd5b50610b956120b2565b604051610ba291906139d0565b60405180910390f35b348015610bb757600080fd5b50610bc06120b8565b604051610bcd91906139d0565b60405180910390f35b348015610be257600080fd5b50610bfd6004803603810190610bf89190613b7a565b6120be565b005b348015610c0b57600080fd5b50610c14612285565b604051610c2191906139d0565b60405180910390f35b348015610c3657600080fd5b50610c3f61228b565b604051610c4c91906139d0565b60405180910390f35b610c5d6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390613dfa565b60405180910390fd5b8160108190555080601181905550601154601054610d0a9190613e49565b600f819055506004600f541115610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613eeb565b60405180910390fd5b5050565b60165481565b606060038054610d6f90613f3a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9b90613f3a565b8015610de85780601f10610dbd57610100808354040283529160200191610de8565b820191906000526020600020905b815481529060010190602001808311610dcb57829003601f168201915b5050505050905090565b6000610e06610dff6122ef565b84846122f7565b6001905092915050565b60186020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e666122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90613dfa565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b60125481565b610f4d6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390613dfa565b60405180910390fd5b6009600a610fea919061409f565b6103e86001610ff7610e54565b61100191906140ea565b61100b9190614173565b6110159190614173565b811015611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90614216565b60405180910390fd5b6009600a611065919061409f565b8161107091906140ea565b60088190555050565b60006110868484846124c2565b611147846110926122ef565b61114285604051806060016040528060288152602001614daf60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110f86122ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f2e9092919063ffffffff16565b6122f7565b600190509392505050565b61dead81565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b60006112306111946122ef565b8461122b85600160006111a56122ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229190919063ffffffff16565b6122f7565b6001905092915050565b7f000000000000000000000000351e05c3bd49193718d591d068495fc29b10dc2b81565b60115481565b600b60009054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6112d56122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90613dfa565b60405180910390fd5b81600d8190555080600e81905550600e54600d546113829190613e49565b600c819055506004600c5411156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590613eeb565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143b6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190613dfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006115956122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90613dfa565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61164e6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613dfa565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60145481565b6117466122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90613dfa565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461186c90613f3a565b80601f016020809104026020016040519081016040528092919081815260200182805461189890613f3a565b80156118e55780601f106118ba576101008083540402835291602001916118e5565b820191906000526020600020905b8154815290600101906020018083116118c857829003601f168201915b5050505050905090565b60155481565b6118fd6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198390613dfa565b60405180910390fd5b7f000000000000000000000000351e05c3bd49193718d591d068495fc29b10dc2b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a12906142a8565b60405180910390fd5b611a258282612f92565b5050565b6000611aec611a366122ef565b84611ae785604051806060016040528060258152602001614dd76025913960016000611a606122ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f2e9092919063ffffffff16565b6122f7565b6001905092915050565b6000611b0a611b036122ef565b84846124c2565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611b4f6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590613dfa565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c2a6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613dfa565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d569190613b5f565b60405180910390a25050565b611d6a6122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090613dfa565b60405180910390fd5b6009600a611e07919061409f565b6103e86005611e14610e54565b611e1e91906140ea565b611e289190614173565b611e329190614173565b811015611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b9061433a565b60405180910390fd5b6009600a611e82919061409f565b81611e8d91906140ea565b600a8190555050565b600b60039054906101000a900460ff1681565b60085481565b6000611eb96122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f90613dfa565b60405180910390fd5b620186a06001611f56610e54565b611f6091906140ea565b611f6a9190614173565b821015611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa3906143cc565b60405180910390fd5b6103e86005611fb9610e54565b611fc391906140ea565b611fcd9190614173565b82111561200f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120069061445e565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e5481565b60095481565b600d5481565b6120c66122ef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90613dfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc906144f0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600a5481565b60008082846122a09190613e49565b9050838110156122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc9061455c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e906145ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce90614680565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124b591906139d0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252990614712565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612599906147a4565b60405180910390fd5b60008114156125bc576125b783836000613033565b612f29565b600b60009054906101000a900460ff1615612ab7576125d961180d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612647575061261761180d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126805750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126ba575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126d35750600560149054906101000a900460ff16155b15612ab657600b60019054906101000a900460ff166127cd57601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061278d5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6127cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c390614810565b60405180910390fd5b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128705750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612917576008548111156128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b1906148a2565b60405180910390fd5b600a546128c6836113eb565b826128d19190613e49565b1115612912576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129099061490e565b60405180910390fd5b612ab5565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129ba5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a0957600854811115612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb906149a0565b60405180910390fd5b612ab4565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ab357600a54612a66836113eb565b82612a719190613e49565b1115612ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa99061490e565b60405180910390fd5b5b5b5b5b5b6000612ac2306113eb565b905060006009548210159050808015612ae75750600b60029054906101000a900460ff165b8015612b005750600560149054906101000a900460ff16155b8015612b565750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bac5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c025750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c46576001600560146101000a81548160ff021916908315150217905550612c2a6132c8565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cfc5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d0657600090505b60008115612f1957601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d6957506000600f54115b15612e0357612d966064612d88600f548861349890919063ffffffff16565b61351390919063ffffffff16565b9050600f5460105482612da991906140ea565b612db39190614173565b60126000828254612dc49190613e49565b92505081905550600f5460115482612ddc91906140ea565b612de69190614173565b60136000828254612df79190613e49565b92505081905550612ef5565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e5e57506000600c54115b15612ef457612e8b6064612e7d600c548861349890919063ffffffff16565b61351390919063ffffffff16565b9050600c54600d5482612e9e91906140ea565b612ea89190614173565b60126000828254612eb99190613e49565b92505081905550600c54600e5482612ed191906140ea565b612edb9190614173565b60136000828254612eec9190613e49565b925050819055505b5b6000811115612f0a57612f09873083613033565b5b8085612f1691906149c0565b94505b612f24878787613033565b505050505b505050565b6000838311158290612f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6d9190613a84565b60405180910390fd5b5060008385612f8591906149c0565b9050809150509392505050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309a90614712565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310a906147a4565b60405180910390fd5b61311e83838361355d565b61318981604051806060016040528060268152602001614d89602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f2e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061321c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516132bb91906139d0565b60405180910390a3505050565b60006132d3306113eb565b905060006013546012546132e79190613e49565b90506000808314806132f95750600082145b1561330657505050613496565b600560095461331591906140ea565b83111561332e57600560095461332b91906140ea565b92505b60006002836012548661334191906140ea565b61334b9190614173565b6133559190614173565b9050600061336c828661356290919063ffffffff16565b9050600047905061337c826135ac565b6000613391824761356290919063ffffffff16565b905060006133bc876133ae6013548561349890919063ffffffff16565b61351390919063ffffffff16565b9050600081836133cc91906149c0565b9050600060128190555060006013819055506000861180156133ee5750600081115b156133fe576133fd86826137f8565b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161344490614a25565b60006040518083038185875af1925050503d8060008114613481576040519150601f19603f3d011682016040523d82523d6000602084013e613486565b606091505b5050809750505050505050505050505b565b6000808314156134ab576000905061350d565b600082846134b991906140ea565b90508284826134c89190614173565b14613508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ff90614aac565b60405180910390fd5b809150505b92915050565b600061355583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506138e3565b905092915050565b505050565b60006135a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612f2e565b905092915050565b6000600267ffffffffffffffff8111156135c9576135c8614acc565b5b6040519080825280602002602001820160405280156135f75781602001602082028036833780820191505090505b509050308160008151811061360f5761360e614afb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156136af57600080fd5b505afa1580156136c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136e79190614b3f565b816001815181106136fb576136fa614afb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613760307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122f7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016137c2959493929190614c65565b600060405180830381600087803b1580156137dc57600080fd5b505af11580156137f0573d6000803e3d6000fd5b505050505050565b613823307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122f7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161388a96959493929190614cbf565b6060604051808303818588803b1580156138a357600080fd5b505af11580156138b7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906138dc9190614d35565b5050505050565b6000808311829061392a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139219190613a84565b60405180910390fd5b50600083856139399190614173565b9050809150509392505050565b600080fd5b6000819050919050565b61395e8161394b565b811461396957600080fd5b50565b60008135905061397b81613955565b92915050565b6000806040838503121561399857613997613946565b5b60006139a68582860161396c565b92505060206139b78582860161396c565b9150509250929050565b6139ca8161394b565b82525050565b60006020820190506139e560008301846139c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a25578082015181840152602081019050613a0a565b83811115613a34576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a56826139eb565b613a6081856139f6565b9350613a70818560208601613a07565b613a7981613a3a565b840191505092915050565b60006020820190508181036000830152613a9e8184613a4b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ad182613aa6565b9050919050565b613ae181613ac6565b8114613aec57600080fd5b50565b600081359050613afe81613ad8565b92915050565b60008060408385031215613b1b57613b1a613946565b5b6000613b2985828601613aef565b9250506020613b3a8582860161396c565b9150509250929050565b60008115159050919050565b613b5981613b44565b82525050565b6000602082019050613b746000830184613b50565b92915050565b600060208284031215613b9057613b8f613946565b5b6000613b9e84828501613aef565b91505092915050565b6000819050919050565b6000613bcc613bc7613bc284613aa6565b613ba7565b613aa6565b9050919050565b6000613bde82613bb1565b9050919050565b6000613bf082613bd3565b9050919050565b613c0081613be5565b82525050565b6000602082019050613c1b6000830184613bf7565b92915050565b600060208284031215613c3757613c36613946565b5b6000613c458482850161396c565b91505092915050565b600080600060608486031215613c6757613c66613946565b5b6000613c7586828701613aef565b9350506020613c8686828701613aef565b9250506040613c978682870161396c565b9150509250925092565b613caa81613ac6565b82525050565b6000602082019050613cc56000830184613ca1565b92915050565b600060ff82169050919050565b613ce181613ccb565b82525050565b6000602082019050613cfc6000830184613cd8565b92915050565b613d0b81613b44565b8114613d1657600080fd5b50565b600081359050613d2881613d02565b92915050565b60008060408385031215613d4557613d44613946565b5b6000613d5385828601613aef565b9250506020613d6485828601613d19565b9150509250929050565b60008060408385031215613d8557613d84613946565b5b6000613d9385828601613aef565b9250506020613da485828601613aef565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613de46020836139f6565b9150613def82613dae565b602082019050919050565b60006020820190508181036000830152613e1381613dd7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e548261394b565b9150613e5f8361394b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9457613e93613e1a565b5b828201905092915050565b7f4d757374206b6565702066656573206174203425206f72206c65737300000000600082015250565b6000613ed5601c836139f6565b9150613ee082613e9f565b602082019050919050565b60006020820190508181036000830152613f0481613ec8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5257607f821691505b60208210811415613f6657613f65613f0b565b5b50919050565b60008160011c9050919050565b6000808291508390505b6001851115613fc357808604811115613f9f57613f9e613e1a565b5b6001851615613fae5780820291505b8081029050613fbc85613f6c565b9450613f83565b94509492505050565b600082613fdc5760019050614098565b81613fea5760009050614098565b8160018114614000576002811461400a57614039565b6001915050614098565b60ff84111561401c5761401b613e1a565b5b8360020a91508482111561403357614032613e1a565b5b50614098565b5060208310610133831016604e8410600b841016171561406e5782820a90508381111561406957614068613e1a565b5b614098565b61407b8484846001613f79565b9250905081840481111561409257614091613e1a565b5b81810290505b9392505050565b60006140aa8261394b565b91506140b583613ccb565b92506140e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613fcc565b905092915050565b60006140f58261394b565b91506141008361394b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561413957614138613e1a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061417e8261394b565b91506141898361394b565b92508261419957614198614144565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614200602f836139f6565b915061420b826141a4565b604082019050919050565b6000602082019050818103600083015261422f816141f3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142926039836139f6565b915061429d82614236565b604082019050919050565b600060208201905081810360008301526142c181614285565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006143246024836139f6565b915061432f826142c8565b604082019050919050565b6000602082019050818103600083015261435381614317565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143b66035836139f6565b91506143c18261435a565b604082019050919050565b600060208201905081810360008301526143e5816143a9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006144486034836139f6565b9150614453826143ec565b604082019050919050565b600060208201905081810360008301526144778161443b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144da6026836139f6565b91506144e58261447e565b604082019050919050565b60006020820190508181036000830152614509816144cd565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614546601b836139f6565b915061455182614510565b602082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006145d86024836139f6565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061466a6022836139f6565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146fc6025836139f6565b9150614707826146a0565b604082019050919050565b6000602082019050818103600083015261472b816146ef565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061478e6023836139f6565b915061479982614732565b604082019050919050565b600060208201905081810360008301526147bd81614781565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006147fa6016836139f6565b9150614805826147c4565b602082019050919050565b60006020820190508181036000830152614829816147ed565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061488c6035836139f6565b915061489782614830565b604082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006148f86013836139f6565b9150614903826148c2565b602082019050919050565b60006020820190508181036000830152614927816148eb565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061498a6036836139f6565b91506149958261492e565b604082019050919050565b600060208201905081810360008301526149b98161497d565b9050919050565b60006149cb8261394b565b91506149d68361394b565b9250828210156149e9576149e8613e1a565b5b828203905092915050565b600081905092915050565b50565b6000614a0f6000836149f4565b9150614a1a826149ff565b600082019050919050565b6000614a3082614a02565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a966021836139f6565b9150614aa182614a3a565b604082019050919050565b60006020820190508181036000830152614ac581614a89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614b3981613ad8565b92915050565b600060208284031215614b5557614b54613946565b5b6000614b6384828501614b2a565b91505092915050565b6000819050919050565b6000614b91614b8c614b8784614b6c565b613ba7565b61394b565b9050919050565b614ba181614b76565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614bdc81613ac6565b82525050565b6000614bee8383614bd3565b60208301905092915050565b6000602082019050919050565b6000614c1282614ba7565b614c1c8185614bb2565b9350614c2783614bc3565b8060005b83811015614c58578151614c3f8882614be2565b9750614c4a83614bfa565b925050600181019050614c2b565b5085935050505092915050565b600060a082019050614c7a60008301886139c1565b614c876020830187614b98565b8181036040830152614c998186614c07565b9050614ca86060830185613ca1565b614cb560808301846139c1565b9695505050505050565b600060c082019050614cd46000830189613ca1565b614ce160208301886139c1565b614cee6040830187614b98565b614cfb6060830186614b98565b614d086080830185613ca1565b614d1560a08301846139c1565b979650505050505050565b600081519050614d2f81613955565b92915050565b600080600060608486031215614d4e57614d4d613946565b5b6000614d5c86828701614d20565b9350506020614d6d86828701614d20565b9250506040614d7e86828701614d20565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220570210fc5e140a1148c4880b3338f3f9dd41e4062eae803b8392be4fe1e4b3d764736f6c63430008090033

Deployed Bytecode Sourcemap

29743:13386:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35541:352;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30814:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7900:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10066:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30989:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29820:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9019:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36539:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30699:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30659:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34523:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10717:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29923:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30046:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8862:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11481:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29878:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30607:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30243:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36783:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35186:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30534:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30323:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9190:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22364:148;;;;;;;;;;;;;:::i;:::-;;33935:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35034:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30749:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33771:112;;;;;;;;;;;;;:::i;:::-;;21722:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30015:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8119:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30782:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36091:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12202:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9530:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31211:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30283:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36650:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35901:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34786:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30363:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30128:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34130:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30412:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9768:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30483:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30170:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30446:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22667:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30569:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30210:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35541:352;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35669:13:::1;35650:16;:32;;;;35720:25;35693:24;:52;;;;35791:24;;35772:16;;:43;;;;:::i;:::-;35756:13;:59;;;;35851:1;35834:13;;:18;;35826:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;35541:352:::0;;:::o;30814:21::-;;;;:::o;7900:100::-;7954:13;7987:5;7980:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7900:100;:::o;10066:169::-;10149:4;10166:39;10175:12;:10;:12::i;:::-;10189:7;10198:6;10166:8;:39::i;:::-;10223:4;10216:11;;10066:169;;;;:::o;30989:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29820:51::-;;;:::o;9019:108::-;9080:7;9107:12;;9100:19;;9019:108;:::o;36539:103::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36625:9:::1;36613;;:21;;;;;;;;;;;;;;;;;;36539:103:::0;:::o;30699:41::-;;;;:::o;30659:33::-;;;;:::o;34523:255::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30114:1:::1;34643:2;:15;;;;:::i;:::-;34636:4;34632:1;34616:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34615:44;;;;:::i;:::-;34605:6;:54;;34597:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;30114:1;34755:2;:14;;;;:::i;:::-;34745:6;:25;;;;:::i;:::-;34722:20;:48;;;;34523:255:::0;:::o;10717:355::-;10857:4;10874:36;10884:6;10892:9;10903:6;10874:9;:36::i;:::-;10921:121;10930:6;10938:12;:10;:12::i;:::-;10952:89;10990:6;10952:89;;;;;;;;;;;;;;;;;:11;:19;10964:6;10952:19;;;;;;;;;;;;;;;:33;10972:12;:10;:12::i;:::-;10952:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10921:8;:121::i;:::-;11060:4;11053:11;;10717:355;;;;;:::o;29923:53::-;29969:6;29923:53;:::o;30046:32::-;;;;;;;;;;;;;:::o;8862:92::-;8920:5;8945:1;8938:8;;8862:92;:::o;11481:218::-;11569:4;11586:83;11595:12;:10;:12::i;:::-;11609:7;11618:50;11657:10;11618:11;:25;11630:12;:10;:12::i;:::-;11618:25;;;;;;;;;;;;;;;:34;11644:7;11618:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11586:8;:83::i;:::-;11687:4;11680:11;;11481:218;;;;:::o;29878:38::-;;;:::o;30607:39::-;;;;:::o;30243:33::-;;;;;;;;;;;;;:::o;36783:125::-;36848:4;36872:19;:28;36892:7;36872:28;;;;;;;;;;;;;;;;;;;;;;;;;36865:35;;36783:125;;;:::o;35186:343::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35311:13:::1;35293:15;:31;;;;35361:24;35335:23;:50;;;;35429:23;;35411:15;;:41;;;;:::i;:::-;35396:12;:56;;;;35487:1;35471:12;;:17;;35463:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35186:343:::0;;:::o;30534:28::-;;;;:::o;30323:31::-;;;;;;;;;;;;;:::o;9190:127::-;9264:7;9291:9;:18;9301:7;9291:18;;;;;;;;;;;;;;;;9284:25;;9190:127;;;:::o;22364:148::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22471:1:::1;22434:40;;22455:6;;;;;;;;;;;22434:40;;;;;;;;;;;;22502:1;22485:6;;:19;;;;;;;;;;;;;;;;;;22364:148::o:0;33935:120::-;33987:4;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34020:5:::1;34003:14;;:22;;;;;;;;;;;;;;;;;;34043:4;34036:11;;33935:120:::0;:::o;35034:144::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35166:4:::1;35124:31;:39;35156:6;35124:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35034:144:::0;;:::o;30749:26::-;;;;:::o;33771:112::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33842:4:::1;33826:13;;:20;;;;;;;;;;;;;;;;;;33871:4;33857:11;;:18;;;;;;;;;;;;;;;;;;33771:112::o:0;21722:79::-;21760:7;21787:6;;;;;;;;;;;21780:13;;21722:79;:::o;30015:24::-;;;;;;;;;;;;;:::o;8119:104::-;8175:13;8208:7;8201:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8119:104;:::o;30782:25::-;;;;:::o;36091:244::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36198:13:::1;36190:21;;:4;:21;;;;36182:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;36286:41;36315:4;36321:5;36286:28;:41::i;:::-;36091:244:::0;;:::o;12202:269::-;12295:4;12312:129;12321:12;:10;:12::i;:::-;12335:7;12344:96;12383:15;12344:96;;;;;;;;;;;;;;;;;:11;:25;12356:12;:10;:12::i;:::-;12344:25;;;;;;;;;;;;;;;:34;12370:7;12344:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12312:8;:129::i;:::-;12459:4;12452:11;;12202:269;;;;:::o;9530:175::-;9616:4;9633:42;9643:12;:10;:12::i;:::-;9657:9;9668:6;9633:9;:42::i;:::-;9693:4;9686:11;;9530:175;;;;:::o;31211:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30283:33::-;;;;;;;;;;;;;:::o;36650:119::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36752:9:::1;36732:17;;:29;;;;;;;;;;;;;;;;;;36650:119:::0;:::o;35901:182::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36017:8:::1;35986:19;:28;36006:7;35986:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36057:7;36041:34;;;36066:8;36041:34;;;;;;:::i;:::-;;;;;;;;35901:182:::0;;:::o;34786:236::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30114:1:::1;34909:2;:15;;;;:::i;:::-;34902:4;34898:1;34882:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34881:44;;;;:::i;:::-;34871:6;:54;;34863:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30114:1;34999:2;:14;;;;:::i;:::-;34989:6;:25;;;;:::i;:::-;34977:9;:37;;;;34786:236:::0;:::o;30363:40::-;;;;;;;;;;;;;:::o;30128:35::-;;;;:::o;34130:381::-;34211:4;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34267:6:::1;34263:1;34247:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34234:9;:39;;34226:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34382:4;34378:1;34362:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34349:9;:37;;34341:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34474:9;34453:18;:30;;;;34500:4;34493:11;;34130:381:::0;;;:::o;30412:27::-;;;;:::o;9768:151::-;9857:7;9884:11;:18;9896:5;9884:18;;;;;;;;;;;;;;;:27;9903:7;9884:27;;;;;;;;;;;;;;;;9877:34;;9768:151;;;;:::o;30483:38::-;;;;:::o;30170:33::-;;;;:::o;30446:30::-;;;;:::o;22667:244::-;21944:12;:10;:12::i;:::-;21934:22;;:6;;;;;;;;;;;:22;;;21926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22776:1:::1;22756:22;;:8;:22;;;;22748:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22866:8;22837:38;;22858:6;;;;;;;;;;;22837:38;;;;;;;;;;;;22895:8;22886:6;;:17;;;;;;;;;;;;;;;;;;22667:244:::0;:::o;30569:31::-;;;;:::o;30210:24::-;;;;:::o;16766:181::-;16824:7;16844:9;16860:1;16856;:5;;;;:::i;:::-;16844:17;;16885:1;16880;:6;;16872:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16938:1;16931:8;;;16766:181;;;;:::o;536:98::-;589:7;616:10;609:17;;536:98;:::o;15388:380::-;15541:1;15524:19;;:5;:19;;;;15516:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15622:1;15603:21;;:7;:21;;;;15595:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15706:6;15676:11;:18;15688:5;15676:18;;;;;;;;;;;;;;;:27;15695:7;15676:27;;;;;;;;;;;;;;;:36;;;;15744:7;15728:32;;15737:5;15728:32;;;15753:6;15728:32;;;;;;:::i;:::-;;;;;;;;15388:380;;;:::o;37152:3444::-;37300:1;37284:18;;:4;:18;;;;37276:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37377:1;37363:16;;:2;:16;;;;37355:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37454:1;37444:6;:11;37441:92;;;37472:28;37488:4;37494:2;37498:1;37472:15;:28::i;:::-;37515:7;;37441:92;37556:14;;;;;;;;;;;37553:1249;;;37616:7;:5;:7::i;:::-;37608:15;;:4;:15;;;;:49;;;;;37650:7;:5;:7::i;:::-;37644:13;;:2;:13;;;;37608:49;:86;;;;;37692:1;37678:16;;:2;:16;;;;37608:86;:128;;;;;37729:6;37715:21;;:2;:21;;;;37608:128;:158;;;;;37758:8;;;;;;;;;;;37757:9;37608:158;37586:1205;;;37804:13;;;;;;;;;;;37800:148;;37849:19;:25;37869:4;37849:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37878:19;:23;37898:2;37878:23;;;;;;;;;;;;;;;;;;;;;;;;;37849:52;37841:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37800:148;38002:25;:31;38028:4;38002:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38038:31;:35;38070:2;38038:35;;;;;;;;;;;;;;;;;;;;;;;;;38037:36;38002:71;37998:778;;;38120:20;;38110:6;:30;;38102:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;38259:9;;38242:13;38252:2;38242:9;:13::i;:::-;38233:6;:22;;;;:::i;:::-;:35;;38225:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37998:778;;;38386:25;:29;38412:2;38386:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38420:31;:37;38452:4;38420:37;;;;;;;;;;;;;;;;;;;;;;;;;38419:38;38386:71;38382:394;;;38504:20;;38494:6;:30;;38486:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;38382:394;;;38630:31;:35;38662:2;38630:35;;;;;;;;;;;;;;;;;;;;;;;;;38626:150;;38723:9;;38706:13;38716:2;38706:9;:13::i;:::-;38697:6;:22;;;;:::i;:::-;:35;;38689:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38626:150;38382:394;37998:778;37586:1205;37553:1249;38836:28;38867:24;38885:4;38867:9;:24::i;:::-;38836:55;;38912:12;38951:18;;38927:20;:42;;38912:57;;39000:7;:35;;;;;39024:11;;;;;;;;;;;39000:35;:61;;;;;39053:8;;;;;;;;;;;39052:9;39000:61;:110;;;;;39079:25;:31;39105:4;39079:31;;;;;;;;;;;;;;;;;;;;;;;;;39078:32;39000:110;:153;;;;;39128:19;:25;39148:4;39128:25;;;;;;;;;;;;;;;;;;;;;;;;;39127:26;39000:153;:194;;;;;39171:19;:23;39191:2;39171:23;;;;;;;;;;;;;;;;;;;;;;;;;39170:24;39000:194;38982:338;;;39232:4;39221:8;;:15;;;;;;;;;;;;;;;;;;39265:10;:8;:10::i;:::-;39303:5;39292:8;;:16;;;;;;;;;;;;;;;;;;38982:338;39340:12;39356:8;;;;;;;;;;;39355:9;39340:24;;39465:19;:25;39485:4;39465:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39494:19;:23;39514:2;39494:23;;;;;;;;;;;;;;;;;;;;;;;;;39465:52;39462:99;;;39544:5;39534:15;;39462:99;39581:12;39685:7;39682:861;;;39736:25;:29;39762:2;39736:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;39785:1;39769:13;;:17;39736:50;39732:646;;;39813:34;39843:3;39813:25;39824:13;;39813:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;39806:41;;39914:13;;39895:16;;39888:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;39866:18;;:61;;;;;;;:::i;:::-;;;;;;;;40010:13;;39983:24;;39976:4;:31;;;;:::i;:::-;:47;;;;:::i;:::-;39946:26;;:77;;;;;;;:::i;:::-;;;;;;;;39732:646;;;40084:25;:31;40110:4;40084:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40134:1;40119:12;;:16;40084:51;40081:297;;;40160:33;40189:3;40160:24;40171:12;;40160:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40153:40;;40256:12;;40238:15;;40231:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40209:18;;:59;;;;;;;:::i;:::-;;;;;;;;40350:12;;40324:23;;40317:4;:30;;;;:::i;:::-;:45;;;;:::i;:::-;40287:26;;:75;;;;;;;:::i;:::-;;;;;;;;40081:297;39732:646;40416:1;40409:4;:8;40406:89;;;40437:42;40453:4;40467;40474;40437:15;:42::i;:::-;40406:89;40527:4;40517:14;;;;;:::i;:::-;;;39682:861;40555:33;40571:4;40577:2;40581:6;40555:15;:33::i;:::-;37265:3331;;;;37152:3444;;;;:::o;17669:192::-;17755:7;17788:1;17783;:6;;17791:12;17775:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17815:9;17831:1;17827;:5;;;;:::i;:::-;17815:17;;17852:1;17845:8;;;17669:192;;;;;:::o;36343:188::-;36460:5;36426:25;:31;36452:4;36426:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36517:5;36483:40;;36511:4;36483:40;;;;;;;;;;;;36343:188;;:::o;12961:573::-;13119:1;13101:20;;:6;:20;;;;13093:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13203:1;13182:23;;:9;:23;;;;13174:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13258:47;13279:6;13287:9;13298:6;13258:20;:47::i;:::-;13338:71;13360:6;13338:71;;;;;;;;;;;;;;;;;:9;:17;13348:6;13338:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13318:9;:17;13328:6;13318:17;;;;;;;;;;;;;;;:91;;;;13443:32;13468:6;13443:9;:20;13453:9;13443:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13420:9;:20;13430:9;13420:20;;;;;;;;;;;;;;;:55;;;;13508:9;13491:35;;13500:6;13491:35;;;13519:6;13491:35;;;;;;:::i;:::-;;;;;;;;12961:573;;;:::o;41754:1368::-;41793:23;41819:24;41837:4;41819:9;:24::i;:::-;41793:50;;41854:25;41903:26;;41882:18;;:47;;;;:::i;:::-;41854:75;;41940:12;41995:1;41976:15;:20;:46;;;;42021:1;42000:17;:22;41976:46;41973:60;;;42025:7;;;;;41973:60;42087:1;42066:18;;:22;;;;:::i;:::-;42048:15;:40;42045:109;;;42141:1;42120:18;;:22;;;;:::i;:::-;42102:40;;42045:109;42223:23;42308:1;42288:17;42267:18;;42249:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42223:86;;42320:26;42349:36;42369:15;42349;:19;;:36;;;;:::i;:::-;42320:65;;42406:25;42434:21;42406:49;;42468:36;42485:18;42468:16;:36::i;:::-;42526:18;42547:44;42573:17;42547:21;:25;;:44;;;;:::i;:::-;42526:65;;42612:25;42640:65;42687:17;42640:42;42655:26;;42640:10;:14;;:42;;;;:::i;:::-;:46;;:65;;;;:::i;:::-;42612:93;;42726:23;42765:17;42752:10;:30;;;;:::i;:::-;42726:56;;42834:1;42813:18;:22;;;;42875:1;42846:26;:30;;;;42918:1;42900:15;:19;:42;;;;;42941:1;42923:15;:19;42900:42;42897:119;;;42958:46;42971:15;42988;42958:12;:46::i;:::-;42897:119;43057:17;;;;;;;;;;;43049:31;;43088:21;43049:65;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43036:78;;;;;41782:1340;;;;;;;;;41754:1368;:::o;18120:471::-;18178:7;18428:1;18423;:6;18419:47;;;18453:1;18446:8;;;;18419:47;18478:9;18494:1;18490;:5;;;;:::i;:::-;18478:17;;18523:1;18518;18514;:5;;;;:::i;:::-;:10;18506:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18582:1;18575:8;;;18120:471;;;;;:::o;19067:132::-;19125:7;19152:39;19156:1;19159;19152:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;19145:46;;19067:132;;;;:::o;16371:125::-;;;;:::o;17230:136::-;17288:7;17315:43;17319:1;17322;17315:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17308:50;;17230:136;;;;:::o;40604:601::-;40732:21;40770:1;40756:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40732:40;;40801:4;40783;40788:1;40783:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40827:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40817:4;40822:1;40817:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40862:62;40879:4;40894:15;40912:11;40862:8;:62::i;:::-;40963:15;:66;;;41044:11;41070:1;41114:4;41141;41161:15;40963:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40659:546;40604:601;:::o;41229:517::-;41377:62;41394:4;41409:15;41427:11;41377:8;:62::i;:::-;41482:15;:31;;;41521:9;41554:4;41574:11;41600:1;41643;29969:6;41712:15;41482:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41229:517;;:::o;19695:278::-;19781:7;19813:1;19809;:5;19816:12;19801:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19840:9;19856:1;19852;:5;;;;:::i;:::-;19840:17;;19964:1;19957:8;;;19695:278;;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:118::-;1257:24;1275:5;1257:24;:::i;:::-;1252:3;1245:37;1170:118;;:::o;1294:222::-;1387:4;1425:2;1414:9;1410:18;1402:26;;1438:71;1506:1;1495:9;1491:17;1482:6;1438:71;:::i;:::-;1294:222;;;;:::o;1522:99::-;1574:6;1608:5;1602:12;1592:22;;1522:99;;;:::o;1627:169::-;1711:11;1745:6;1740:3;1733:19;1785:4;1780:3;1776:14;1761:29;;1627:169;;;;:::o;1802:307::-;1870:1;1880:113;1894:6;1891:1;1888:13;1880:113;;;1979:1;1974:3;1970:11;1964:18;1960:1;1955:3;1951:11;1944:39;1916:2;1913:1;1909:10;1904:15;;1880:113;;;2011:6;2008:1;2005:13;2002:101;;;2091:1;2082:6;2077:3;2073:16;2066:27;2002:101;1851:258;1802:307;;;:::o;2115:102::-;2156:6;2207:2;2203:7;2198:2;2191:5;2187:14;2183:28;2173:38;;2115:102;;;:::o;2223:364::-;2311:3;2339:39;2372:5;2339:39;:::i;:::-;2394:71;2458:6;2453:3;2394:71;:::i;:::-;2387:78;;2474:52;2519:6;2514:3;2507:4;2500:5;2496:16;2474:52;:::i;:::-;2551:29;2573:6;2551:29;:::i;:::-;2546:3;2542:39;2535:46;;2315:272;2223:364;;;;:::o;2593:313::-;2706:4;2744:2;2733:9;2729:18;2721:26;;2793:9;2787:4;2783:20;2779:1;2768:9;2764:17;2757:47;2821:78;2894:4;2885:6;2821:78;:::i;:::-;2813:86;;2593:313;;;;:::o;2912:126::-;2949:7;2989:42;2982:5;2978:54;2967:65;;2912:126;;;:::o;3044:96::-;3081:7;3110:24;3128:5;3110:24;:::i;:::-;3099:35;;3044:96;;;:::o;3146:122::-;3219:24;3237:5;3219:24;:::i;:::-;3212:5;3209:35;3199:63;;3258:1;3255;3248:12;3199:63;3146:122;:::o;3274:139::-;3320:5;3358:6;3345:20;3336:29;;3374:33;3401:5;3374:33;:::i;:::-;3274:139;;;;:::o;3419:474::-;3487:6;3495;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:53;3740:7;3731:6;3720:9;3716:22;3695:53;:::i;:::-;3685:63;;3641:117;3797:2;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3768:118;3419:474;;;;;:::o;3899:90::-;3933:7;3976:5;3969:13;3962:21;3951:32;;3899:90;;;:::o;3995:109::-;4076:21;4091:5;4076:21;:::i;:::-;4071:3;4064:34;3995:109;;:::o;4110:210::-;4197:4;4235:2;4224:9;4220:18;4212:26;;4248:65;4310:1;4299:9;4295:17;4286:6;4248:65;:::i;:::-;4110:210;;;;:::o;4326:329::-;4385:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:119;;;4440:79;;:::i;:::-;4402:119;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4326:329;;;;:::o;4661:60::-;4689:3;4710:5;4703:12;;4661:60;;;:::o;4727:142::-;4777:9;4810:53;4828:34;4837:24;4855:5;4837:24;:::i;:::-;4828:34;:::i;:::-;4810:53;:::i;:::-;4797:66;;4727:142;;;:::o;4875:126::-;4925:9;4958:37;4989:5;4958:37;:::i;:::-;4945:50;;4875:126;;;:::o;5007:153::-;5084:9;5117:37;5148:5;5117:37;:::i;:::-;5104:50;;5007:153;;;:::o;5166:185::-;5280:64;5338:5;5280:64;:::i;:::-;5275:3;5268:77;5166:185;;:::o;5357:276::-;5477:4;5515:2;5504:9;5500:18;5492:26;;5528:98;5623:1;5612:9;5608:17;5599:6;5528:98;:::i;:::-;5357:276;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:474::-;8184:6;8192;8241:2;8229:9;8220:7;8216:23;8212:32;8209:119;;;8247:79;;:::i;:::-;8209:119;8367:1;8392:53;8437:7;8428:6;8417:9;8413:22;8392:53;:::i;:::-;8382:63;;8338:117;8494:2;8520:53;8565:7;8556:6;8545:9;8541:22;8520:53;:::i;:::-;8510:63;;8465:118;8116:474;;;;;:::o;8596:182::-;8736:34;8732:1;8724:6;8720:14;8713:58;8596:182;:::o;8784:366::-;8926:3;8947:67;9011:2;9006:3;8947:67;:::i;:::-;8940:74;;9023:93;9112:3;9023:93;:::i;:::-;9141:2;9136:3;9132:12;9125:19;;8784:366;;;:::o;9156:419::-;9322:4;9360:2;9349:9;9345:18;9337:26;;9409:9;9403:4;9399:20;9395:1;9384:9;9380:17;9373:47;9437:131;9563:4;9437:131;:::i;:::-;9429:139;;9156:419;;;:::o;9581:180::-;9629:77;9626:1;9619:88;9726:4;9723:1;9716:15;9750:4;9747:1;9740:15;9767:305;9807:3;9826:20;9844:1;9826:20;:::i;:::-;9821:25;;9860:20;9878:1;9860:20;:::i;:::-;9855:25;;10014:1;9946:66;9942:74;9939:1;9936:81;9933:107;;;10020:18;;:::i;:::-;9933:107;10064:1;10061;10057:9;10050:16;;9767:305;;;;:::o;10078:178::-;10218:30;10214:1;10206:6;10202:14;10195:54;10078:178;:::o;10262:366::-;10404:3;10425:67;10489:2;10484:3;10425:67;:::i;:::-;10418:74;;10501:93;10590:3;10501:93;:::i;:::-;10619:2;10614:3;10610:12;10603:19;;10262:366;;;:::o;10634:419::-;10800:4;10838:2;10827:9;10823:18;10815:26;;10887:9;10881:4;10877:20;10873:1;10862:9;10858:17;10851:47;10915:131;11041:4;10915:131;:::i;:::-;10907:139;;10634:419;;;:::o;11059:180::-;11107:77;11104:1;11097:88;11204:4;11201:1;11194:15;11228:4;11225:1;11218:15;11245:320;11289:6;11326:1;11320:4;11316:12;11306:22;;11373:1;11367:4;11363:12;11394:18;11384:81;;11450:4;11442:6;11438:17;11428:27;;11384:81;11512:2;11504:6;11501:14;11481:18;11478:38;11475:84;;;11531:18;;:::i;:::-;11475:84;11296:269;11245:320;;;:::o;11571:102::-;11613:8;11660:5;11657:1;11653:13;11632:34;;11571:102;;;:::o;11679:848::-;11740:5;11747:4;11771:6;11762:15;;11795:5;11786:14;;11809:712;11830:1;11820:8;11817:15;11809:712;;;11925:4;11920:3;11916:14;11910:4;11907:24;11904:50;;;11934:18;;:::i;:::-;11904:50;11984:1;11974:8;11970:16;11967:451;;;12399:4;12392:5;12388:16;12379:25;;11967:451;12449:4;12443;12439:15;12431:23;;12479:32;12502:8;12479:32;:::i;:::-;12467:44;;11809:712;;;11679:848;;;;;;;:::o;12533:1073::-;12587:5;12778:8;12768:40;;12799:1;12790:10;;12801:5;;12768:40;12827:4;12817:36;;12844:1;12835:10;;12846:5;;12817:36;12913:4;12961:1;12956:27;;;;12997:1;12992:191;;;;12906:277;;12956:27;12974:1;12965:10;;12976:5;;;12992:191;13037:3;13027:8;13024:17;13021:43;;;13044:18;;:::i;:::-;13021:43;13093:8;13090:1;13086:16;13077:25;;13128:3;13121:5;13118:14;13115:40;;;13135:18;;:::i;:::-;13115:40;13168:5;;;12906:277;;13292:2;13282:8;13279:16;13273:3;13267:4;13264:13;13260:36;13242:2;13232:8;13229:16;13224:2;13218:4;13215:12;13211:35;13195:111;13192:246;;;13348:8;13342:4;13338:19;13329:28;;13383:3;13376:5;13373:14;13370:40;;;13390:18;;:::i;:::-;13370:40;13423:5;;13192:246;13463:42;13501:3;13491:8;13485:4;13482:1;13463:42;:::i;:::-;13448:57;;;;13537:4;13532:3;13528:14;13521:5;13518:25;13515:51;;;13546:18;;:::i;:::-;13515:51;13595:4;13588:5;13584:16;13575:25;;12533:1073;;;;;;:::o;13612:281::-;13670:5;13694:23;13712:4;13694:23;:::i;:::-;13686:31;;13738:25;13754:8;13738:25;:::i;:::-;13726:37;;13782:104;13819:66;13809:8;13803:4;13782:104;:::i;:::-;13773:113;;13612:281;;;;:::o;13899:348::-;13939:7;13962:20;13980:1;13962:20;:::i;:::-;13957:25;;13996:20;14014:1;13996:20;:::i;:::-;13991:25;;14184:1;14116:66;14112:74;14109:1;14106:81;14101:1;14094:9;14087:17;14083:105;14080:131;;;14191:18;;:::i;:::-;14080:131;14239:1;14236;14232:9;14221:20;;13899:348;;;;:::o;14253:180::-;14301:77;14298:1;14291:88;14398:4;14395:1;14388:15;14422:4;14419:1;14412:15;14439:185;14479:1;14496:20;14514:1;14496:20;:::i;:::-;14491:25;;14530:20;14548:1;14530:20;:::i;:::-;14525:25;;14569:1;14559:35;;14574:18;;:::i;:::-;14559:35;14616:1;14613;14609:9;14604:14;;14439:185;;;;:::o;14630:234::-;14770:34;14766:1;14758:6;14754:14;14747:58;14839:17;14834:2;14826:6;14822:15;14815:42;14630:234;:::o;14870:366::-;15012:3;15033:67;15097:2;15092:3;15033:67;:::i;:::-;15026:74;;15109:93;15198:3;15109:93;:::i;:::-;15227:2;15222:3;15218:12;15211:19;;14870:366;;;:::o;15242:419::-;15408:4;15446:2;15435:9;15431:18;15423:26;;15495:9;15489:4;15485:20;15481:1;15470:9;15466:17;15459:47;15523:131;15649:4;15523:131;:::i;:::-;15515:139;;15242:419;;;:::o;15667:244::-;15807:34;15803:1;15795:6;15791:14;15784:58;15876:27;15871:2;15863:6;15859:15;15852:52;15667:244;:::o;15917:366::-;16059:3;16080:67;16144:2;16139:3;16080:67;:::i;:::-;16073:74;;16156:93;16245:3;16156:93;:::i;:::-;16274:2;16269:3;16265:12;16258:19;;15917:366;;;:::o;16289:419::-;16455:4;16493:2;16482:9;16478:18;16470:26;;16542:9;16536:4;16532:20;16528:1;16517:9;16513:17;16506:47;16570:131;16696:4;16570:131;:::i;:::-;16562:139;;16289:419;;;:::o;16714:223::-;16854:34;16850:1;16842:6;16838:14;16831:58;16923:6;16918:2;16910:6;16906:15;16899:31;16714:223;:::o;16943:366::-;17085:3;17106:67;17170:2;17165:3;17106:67;:::i;:::-;17099:74;;17182:93;17271:3;17182:93;:::i;:::-;17300:2;17295:3;17291:12;17284:19;;16943:366;;;:::o;17315:419::-;17481:4;17519:2;17508:9;17504:18;17496:26;;17568:9;17562:4;17558:20;17554:1;17543:9;17539:17;17532:47;17596:131;17722:4;17596:131;:::i;:::-;17588:139;;17315:419;;;:::o;17740:240::-;17880:34;17876:1;17868:6;17864:14;17857:58;17949:23;17944:2;17936:6;17932:15;17925:48;17740:240;:::o;17986:366::-;18128:3;18149:67;18213:2;18208:3;18149:67;:::i;:::-;18142:74;;18225:93;18314:3;18225:93;:::i;:::-;18343:2;18338:3;18334:12;18327:19;;17986:366;;;:::o;18358:419::-;18524:4;18562:2;18551:9;18547:18;18539:26;;18611:9;18605:4;18601:20;18597:1;18586:9;18582:17;18575:47;18639:131;18765:4;18639:131;:::i;:::-;18631:139;;18358:419;;;:::o;18783:239::-;18923:34;18919:1;18911:6;18907:14;18900:58;18992:22;18987:2;18979:6;18975:15;18968:47;18783:239;:::o;19028:366::-;19170:3;19191:67;19255:2;19250:3;19191:67;:::i;:::-;19184:74;;19267:93;19356:3;19267:93;:::i;:::-;19385:2;19380:3;19376:12;19369:19;;19028:366;;;:::o;19400:419::-;19566:4;19604:2;19593:9;19589:18;19581:26;;19653:9;19647:4;19643:20;19639:1;19628:9;19624:17;19617:47;19681:131;19807:4;19681:131;:::i;:::-;19673:139;;19400:419;;;:::o;19825:225::-;19965:34;19961:1;19953:6;19949:14;19942:58;20034:8;20029:2;20021:6;20017:15;20010:33;19825:225;:::o;20056:366::-;20198:3;20219:67;20283:2;20278:3;20219:67;:::i;:::-;20212:74;;20295:93;20384:3;20295:93;:::i;:::-;20413:2;20408:3;20404:12;20397:19;;20056:366;;;:::o;20428:419::-;20594:4;20632:2;20621:9;20617:18;20609:26;;20681:9;20675:4;20671:20;20667:1;20656:9;20652:17;20645:47;20709:131;20835:4;20709:131;:::i;:::-;20701:139;;20428:419;;;:::o;20853:177::-;20993:29;20989:1;20981:6;20977:14;20970:53;20853:177;:::o;21036:366::-;21178:3;21199:67;21263:2;21258:3;21199:67;:::i;:::-;21192:74;;21275:93;21364:3;21275:93;:::i;:::-;21393:2;21388:3;21384:12;21377:19;;21036:366;;;:::o;21408:419::-;21574:4;21612:2;21601:9;21597:18;21589:26;;21661:9;21655:4;21651:20;21647:1;21636:9;21632:17;21625:47;21689:131;21815:4;21689:131;:::i;:::-;21681:139;;21408:419;;;:::o;21833:223::-;21973:34;21969:1;21961:6;21957:14;21950:58;22042:6;22037:2;22029:6;22025:15;22018:31;21833:223;:::o;22062:366::-;22204:3;22225:67;22289:2;22284:3;22225:67;:::i;:::-;22218:74;;22301:93;22390:3;22301:93;:::i;:::-;22419:2;22414:3;22410:12;22403:19;;22062:366;;;:::o;22434:419::-;22600:4;22638:2;22627:9;22623:18;22615:26;;22687:9;22681:4;22677:20;22673:1;22662:9;22658:17;22651:47;22715:131;22841:4;22715:131;:::i;:::-;22707:139;;22434:419;;;:::o;22859:221::-;22999:34;22995:1;22987:6;22983:14;22976:58;23068:4;23063:2;23055:6;23051:15;23044:29;22859:221;:::o;23086:366::-;23228:3;23249:67;23313:2;23308:3;23249:67;:::i;:::-;23242:74;;23325:93;23414:3;23325:93;:::i;:::-;23443:2;23438:3;23434:12;23427:19;;23086:366;;;:::o;23458:419::-;23624:4;23662:2;23651:9;23647:18;23639:26;;23711:9;23705:4;23701:20;23697:1;23686:9;23682:17;23675:47;23739:131;23865:4;23739:131;:::i;:::-;23731:139;;23458:419;;;:::o;23883:224::-;24023:34;24019:1;24011:6;24007:14;24000:58;24092:7;24087:2;24079:6;24075:15;24068:32;23883:224;:::o;24113:366::-;24255:3;24276:67;24340:2;24335:3;24276:67;:::i;:::-;24269:74;;24352:93;24441:3;24352:93;:::i;:::-;24470:2;24465:3;24461:12;24454:19;;24113:366;;;:::o;24485:419::-;24651:4;24689:2;24678:9;24674:18;24666:26;;24738:9;24732:4;24728:20;24724:1;24713:9;24709:17;24702:47;24766:131;24892:4;24766:131;:::i;:::-;24758:139;;24485:419;;;:::o;24910:222::-;25050:34;25046:1;25038:6;25034:14;25027:58;25119:5;25114:2;25106:6;25102:15;25095:30;24910:222;:::o;25138:366::-;25280:3;25301:67;25365:2;25360:3;25301:67;:::i;:::-;25294:74;;25377:93;25466:3;25377:93;:::i;:::-;25495:2;25490:3;25486:12;25479:19;;25138:366;;;:::o;25510:419::-;25676:4;25714:2;25703:9;25699:18;25691:26;;25763:9;25757:4;25753:20;25749:1;25738:9;25734:17;25727:47;25791:131;25917:4;25791:131;:::i;:::-;25783:139;;25510:419;;;:::o;25935:172::-;26075:24;26071:1;26063:6;26059:14;26052:48;25935:172;:::o;26113:366::-;26255:3;26276:67;26340:2;26335:3;26276:67;:::i;:::-;26269:74;;26352:93;26441:3;26352:93;:::i;:::-;26470:2;26465:3;26461:12;26454:19;;26113:366;;;:::o;26485:419::-;26651:4;26689:2;26678:9;26674:18;26666:26;;26738:9;26732:4;26728:20;26724:1;26713:9;26709:17;26702:47;26766:131;26892:4;26766:131;:::i;:::-;26758:139;;26485:419;;;:::o;26910:240::-;27050:34;27046:1;27038:6;27034:14;27027:58;27119:23;27114:2;27106:6;27102:15;27095:48;26910:240;:::o;27156:366::-;27298:3;27319:67;27383:2;27378:3;27319:67;:::i;:::-;27312:74;;27395:93;27484:3;27395:93;:::i;:::-;27513:2;27508:3;27504:12;27497:19;;27156:366;;;:::o;27528:419::-;27694:4;27732:2;27721:9;27717:18;27709:26;;27781:9;27775:4;27771:20;27767:1;27756:9;27752:17;27745:47;27809:131;27935:4;27809:131;:::i;:::-;27801:139;;27528:419;;;:::o;27953:169::-;28093:21;28089:1;28081:6;28077:14;28070:45;27953:169;:::o;28128:366::-;28270:3;28291:67;28355:2;28350:3;28291:67;:::i;:::-;28284:74;;28367:93;28456:3;28367:93;:::i;:::-;28485:2;28480:3;28476:12;28469:19;;28128:366;;;:::o;28500:419::-;28666:4;28704:2;28693:9;28689:18;28681:26;;28753:9;28747:4;28743:20;28739:1;28728:9;28724:17;28717:47;28781:131;28907:4;28781:131;:::i;:::-;28773:139;;28500:419;;;:::o;28925:241::-;29065:34;29061:1;29053:6;29049:14;29042:58;29134:24;29129:2;29121:6;29117:15;29110:49;28925:241;:::o;29172:366::-;29314:3;29335:67;29399:2;29394:3;29335:67;:::i;:::-;29328:74;;29411:93;29500:3;29411:93;:::i;:::-;29529:2;29524:3;29520:12;29513:19;;29172:366;;;:::o;29544:419::-;29710:4;29748:2;29737:9;29733:18;29725:26;;29797:9;29791:4;29787:20;29783:1;29772:9;29768:17;29761:47;29825:131;29951:4;29825:131;:::i;:::-;29817:139;;29544:419;;;:::o;29969:191::-;30009:4;30029:20;30047:1;30029:20;:::i;:::-;30024:25;;30063:20;30081:1;30063:20;:::i;:::-;30058:25;;30102:1;30099;30096:8;30093:34;;;30107:18;;:::i;:::-;30093:34;30152:1;30149;30145:9;30137:17;;29969:191;;;;:::o;30166:147::-;30267:11;30304:3;30289:18;;30166:147;;;;:::o;30319:114::-;;:::o;30439:398::-;30598:3;30619:83;30700:1;30695:3;30619:83;:::i;:::-;30612:90;;30711:93;30800:3;30711:93;:::i;:::-;30829:1;30824:3;30820:11;30813:18;;30439:398;;;:::o;30843:379::-;31027:3;31049:147;31192:3;31049:147;:::i;:::-;31042:154;;31213:3;31206:10;;30843:379;;;:::o;31228:220::-;31368:34;31364:1;31356:6;31352:14;31345:58;31437:3;31432:2;31424:6;31420:15;31413:28;31228:220;:::o;31454:366::-;31596:3;31617:67;31681:2;31676:3;31617:67;:::i;:::-;31610:74;;31693:93;31782:3;31693:93;:::i;:::-;31811:2;31806:3;31802:12;31795:19;;31454:366;;;:::o;31826:419::-;31992:4;32030:2;32019:9;32015:18;32007:26;;32079:9;32073:4;32069:20;32065:1;32054:9;32050:17;32043:47;32107:131;32233:4;32107:131;:::i;:::-;32099:139;;31826:419;;;:::o;32251:180::-;32299:77;32296:1;32289:88;32396:4;32393:1;32386:15;32420:4;32417:1;32410:15;32437:180;32485:77;32482:1;32475:88;32582:4;32579:1;32572:15;32606:4;32603:1;32596:15;32623:143;32680:5;32711:6;32705:13;32696:22;;32727:33;32754:5;32727:33;:::i;:::-;32623:143;;;;:::o;32772:351::-;32842:6;32891:2;32879:9;32870:7;32866:23;32862:32;32859:119;;;32897:79;;:::i;:::-;32859:119;33017:1;33042:64;33098:7;33089:6;33078:9;33074:22;33042:64;:::i;:::-;33032:74;;32988:128;32772:351;;;;:::o;33129:85::-;33174:7;33203:5;33192:16;;33129:85;;;:::o;33220:158::-;33278:9;33311:61;33329:42;33338:32;33364:5;33338:32;:::i;:::-;33329:42;:::i;:::-;33311:61;:::i;:::-;33298:74;;33220:158;;;:::o;33384:147::-;33479:45;33518:5;33479:45;:::i;:::-;33474:3;33467:58;33384:147;;:::o;33537:114::-;33604:6;33638:5;33632:12;33622:22;;33537:114;;;:::o;33657:184::-;33756:11;33790:6;33785:3;33778:19;33830:4;33825:3;33821:14;33806:29;;33657:184;;;;:::o;33847:132::-;33914:4;33937:3;33929:11;;33967:4;33962:3;33958:14;33950:22;;33847:132;;;:::o;33985:108::-;34062:24;34080:5;34062:24;:::i;:::-;34057:3;34050:37;33985:108;;:::o;34099:179::-;34168:10;34189:46;34231:3;34223:6;34189:46;:::i;:::-;34267:4;34262:3;34258:14;34244:28;;34099:179;;;;:::o;34284:113::-;34354:4;34386;34381:3;34377:14;34369:22;;34284:113;;;:::o;34433:732::-;34552:3;34581:54;34629:5;34581:54;:::i;:::-;34651:86;34730:6;34725:3;34651:86;:::i;:::-;34644:93;;34761:56;34811:5;34761:56;:::i;:::-;34840:7;34871:1;34856:284;34881:6;34878:1;34875:13;34856:284;;;34957:6;34951:13;34984:63;35043:3;35028:13;34984:63;:::i;:::-;34977:70;;35070:60;35123:6;35070:60;:::i;:::-;35060:70;;34916:224;34903:1;34900;34896:9;34891:14;;34856:284;;;34860:14;35156:3;35149:10;;34557:608;;;34433:732;;;;:::o;35171:831::-;35434:4;35472:3;35461:9;35457:19;35449:27;;35486:71;35554:1;35543:9;35539:17;35530:6;35486:71;:::i;:::-;35567:80;35643:2;35632:9;35628:18;35619:6;35567:80;:::i;:::-;35694:9;35688:4;35684:20;35679:2;35668:9;35664:18;35657:48;35722:108;35825:4;35816:6;35722:108;:::i;:::-;35714:116;;35840:72;35908:2;35897:9;35893:18;35884:6;35840:72;:::i;:::-;35922:73;35990:3;35979:9;35975:19;35966:6;35922:73;:::i;:::-;35171:831;;;;;;;;:::o;36008:807::-;36257:4;36295:3;36284:9;36280:19;36272:27;;36309:71;36377:1;36366:9;36362:17;36353:6;36309:71;:::i;:::-;36390:72;36458:2;36447:9;36443:18;36434:6;36390:72;:::i;:::-;36472:80;36548:2;36537:9;36533:18;36524:6;36472:80;:::i;:::-;36562;36638:2;36627:9;36623:18;36614:6;36562:80;:::i;:::-;36652:73;36720:3;36709:9;36705:19;36696:6;36652:73;:::i;:::-;36735;36803:3;36792:9;36788:19;36779:6;36735:73;:::i;:::-;36008:807;;;;;;;;;:::o;36821:143::-;36878:5;36909:6;36903:13;36894:22;;36925:33;36952:5;36925:33;:::i;:::-;36821:143;;;;:::o;36970:663::-;37058:6;37066;37074;37123:2;37111:9;37102:7;37098:23;37094:32;37091:119;;;37129:79;;:::i;:::-;37091:119;37249:1;37274:64;37330:7;37321:6;37310:9;37306:22;37274:64;:::i;:::-;37264:74;;37220:128;37387:2;37413:64;37469:7;37460:6;37449:9;37445:22;37413:64;:::i;:::-;37403:74;;37358:129;37526:2;37552:64;37608:7;37599:6;37588:9;37584:22;37552:64;:::i;:::-;37542:74;;37497:129;36970:663;;;;;:::o

Swarm Source

ipfs://570210fc5e140a1148c4880b3338f3f9dd41e4062eae803b8392be4fe1e4b3d7
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.