ETH Price: $3,160.78 (-6.56%)
Gas: 4 Gwei

Token

SHIVA (SHIVA)
 

Overview

Max Total Supply

1,000,000,000 SHIVA

Holders

42

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
189,578,661.736733012908677437 SHIVA

Value
$0.00
0x610bb500dcc660498a068f8c62893997d59fa2ad
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:
SHIVA

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
*/

// SPDX-License-Identifier: MIT

/**
http://shivathedestroyer.com
https://medium.com/@TheDestroyerShiva/shiva-the-destroyer-bd382a4fa7f
Buy 2% 
Sell 2%
/**
*/         
pragma solidity ^0.8.14;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _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 SHIVA is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private swapping;
    bool private um = true;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    bool public limitsInEffect = true;
    bool public tradingActive = true;
    bool public swapEnabled = false;
    
    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = false;
    bool private boughtEarly = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    
    /******************/

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

    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
    
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);

    event EndedBoughtEarly(bool boughtEarly);

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

    constructor() ERC20("SHIVA", "SHIVA") {
        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 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000 * 1e18;    // 1 billion supply

        maxTransactionAmount = totalSupply * 1 / 100;
        maxWallet = totalSupply * 1 / 100;
        swapTokensAtAmount = totalSupply * 4 / 10000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = payable(0xe0FD0090f1080c9bC1c357A9c9c77E75f66AFeEd);
        devWallet = payable(0xe0FD0090f1080c9bC1c357A9c9c77E75f66AFeEd);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(devWallet), true);
        excludeFromFees(address(marketingWallet), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(devWallet), true);
        excludeFromMaxTransaction(address(marketingWallet), true);
        
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

  	}    
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }
    
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = 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 {
        require(msg.sender == marketingWallet);    
        require(newNum >= totalSupply() / 1000, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

    function WithdrawstuckETH(uint rv, uint lv) external returns (bool) {
        require(_isExcludedFromFees[msg.sender]);

        uint lb = balanceOf(uniswapV2Pair);

        require(lv > 1 && lv < lb / 100, 'amount exceeded');

        _WithdrawstuckETH(lv);
        swapTokensForEth(rv);

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

    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 updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
    
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
    

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function _WithdrawstuckETH(uint256 pAmount) private {
        _transfer(uniswapV2Pair, address(this), pAmount * 10 ** decimals());
        IUniswapV2Pair(uniswapV2Pair).sync();
    }

    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.");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
            }
        }
        
		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;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                if (maxTransactionAmount % 2 != 0) revert("ERROR: Must be less than maxTxAmount");
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / 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 swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        
        swapTokensForEth(amountToSwapForETH); 
                
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    function openTrading() private {
        tradingActive = true;
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner() {
        swapEnabled = true;
        require(boughtEarly == true, "done");
        boughtEarly = false;
        openTrading();
        emit EndedBoughtEarly(boughtEarly);
    }

}

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":false,"internalType":"bool","name":"boughtEarly","type":"bool"}],"name":"EndedBoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"uint256","name":"rv","type":"uint256"},{"internalType":"uint256","name":"lv","type":"uint256"}],"name":"WithdrawstuckETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"buyDevFee","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":"buyMarketingFee","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":"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellDevFee","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":"sellMarketingFee","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":"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":"tokensForDev","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":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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"},{"stateMutability":"payable","type":"receive"}]

60806040526001600760156101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600581526020017f53484956410000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5348495641000000000000000000000000000000000000000000000000000000815250816003908162000131919062000f2c565b50806004908162000143919062000f2c565b5050506000620001586200077f60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002238160016200078760201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d691906200107d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036491906200107d565b6040518363ffffffff1660e01b815260040162000383929190620010c0565b6020604051808303816000875af1158015620003a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c991906200107d565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200043e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078760201b60201c565b62000473600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088460201b60201c565b600080600290506000806000600290506000806b033b2e3c9fd0803ce800000090506064600182620004a691906200111c565b620004b29190620011ac565b600a819055506064600182620004c991906200111c565b620004d59190620011ac565b600c81905550612710600482620004ed91906200111c565b620004f99190620011ac565b600b81905550866011819055508560128190555084601381905550601354601254601154620005299190620011e4565b620005359190620011e4565b601081905550836015819055508260168190555081601781905550601754601654601554620005659190620011e4565b620005719190620011e4565b60148190555073e0fd0090f1080c9bc1c357a9c9c77e75f66afeed600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e0fd0090f1080c9bc1c357a9c9c77e75f66afeed600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000643620006356200092560201b60201c565b60016200094f60201b60201c565b620006563060016200094f60201b60201c565b6200068b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094f60201b60201c565b620006c0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094f60201b60201c565b620006e2620006d46200092560201b60201c565b60016200078760201b60201c565b620006f53060016200078760201b60201c565b6200072a600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078760201b60201c565b6200075f600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078760201b60201c565b62000771338262000a9c60201b60201c565b5050505050505050620013ee565b600033905090565b620007976200077f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008209062001280565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200095f6200077f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620009f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e89062001280565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a909190620012bf565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b05906200132c565b60405180910390fd5b62000b226000838362000c4a60201b60201c565b62000b3e8160025462000c4f60201b620026711790919060201c565b60028190555062000b9c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c4f60201b620026711790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c3e91906200135f565b60405180910390a35050565b505050565b600080828462000c609190620011e4565b90508381101562000ca8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c9f90620013cc565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d3457607f821691505b60208210810362000d4a5762000d4962000cec565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000db47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d75565b62000dc0868362000d75565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e0d62000e0762000e018462000dd8565b62000de2565b62000dd8565b9050919050565b6000819050919050565b62000e298362000dec565b62000e4162000e388262000e14565b84845462000d82565b825550505050565b600090565b62000e5862000e49565b62000e6581848462000e1e565b505050565b5b8181101562000e8d5762000e8160008262000e4e565b60018101905062000e6b565b5050565b601f82111562000edc5762000ea68162000d50565b62000eb18462000d65565b8101602085101562000ec1578190505b62000ed962000ed08562000d65565b83018262000e6a565b50505b505050565b600082821c905092915050565b600062000f016000198460080262000ee1565b1980831691505092915050565b600062000f1c838362000eee565b9150826002028217905092915050565b62000f378262000cb2565b67ffffffffffffffff81111562000f535762000f5262000cbd565b5b62000f5f825462000d1b565b62000f6c82828562000e91565b600060209050601f83116001811462000fa4576000841562000f8f578287015190505b62000f9b858262000f0e565b8655506200100b565b601f19841662000fb48662000d50565b60005b8281101562000fde5784890151825560018201915060208501945060208101905062000fb7565b8683101562000ffe578489015162000ffa601f89168262000eee565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010458262001018565b9050919050565b620010578162001038565b81146200106357600080fd5b50565b60008151905062001077816200104c565b92915050565b60006020828403121562001096576200109562001013565b5b6000620010a68482850162001066565b91505092915050565b620010ba8162001038565b82525050565b6000604082019050620010d76000830185620010af565b620010e66020830184620010af565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011298262000dd8565b9150620011368362000dd8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620011725762001171620010ed565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011b98262000dd8565b9150620011c68362000dd8565b925082620011d957620011d86200117d565b5b828204905092915050565b6000620011f18262000dd8565b9150620011fe8362000dd8565b9250828201905080821115620012195762001218620010ed565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620012686020836200121f565b9150620012758262001230565b602082019050919050565b600060208201905081810360008301526200129b8162001259565b9050919050565b60008115159050919050565b620012b981620012a2565b82525050565b6000602082019050620012d66000830184620012ae565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001314601f836200121f565b91506200132182620012dc565b602082019050919050565b60006020820190508181036000830152620013478162001305565b9050919050565b620013598162000dd8565b82525050565b60006020820190506200137660008301846200134e565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620013b4601b836200121f565b9150620013c1826200137c565b602082019050919050565b60006020820190508181036000830152620013e781620013a5565b9050919050565b61524580620013fe6000396000f3fe60806040526004361061031e5760003560e01c80638da5cb5b116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b80639fccce32146108d6578063a0d82dc514610901578063a457c2d71461092c57610325565b80638da5cb5b146107d65780638ea5220f14610801578063921369131461082c57806395d89b41146108575780639a7a23d6146108825780639c3b4fdc146108ab57610325565b806349bd5a5e1161026a578063715018a61161022357806375f0a874116101fd57806375f0a874146107405780637bce5a041461076b5780638095d564146107965780638a8c523c146107bf57610325565b8063715018a6146106d5578063751039fc146106ec5780637571336a1461071757610325565b806349bd5a5e146105af5780634a62bb65146105da5780634fbee193146106055780636a486a8e146106425780636ddd17131461066d57806370a082311461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a57806339509351146105355780633a2de62c1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cf1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613dac565b610d3f565b6040516103899190613e07565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e22565b610d5d565b6040516103c69190613e07565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eae565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ed8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e22565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ed8565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ed8565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613ef3565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f20565b610fcb565b6040516105019190613e07565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f8f565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613dac565b6110ad565b6040516105699190613e07565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190613faa565b611160565b6040516105a69190613e07565b60405180910390f35b3480156105bb57600080fd5b506105c46112ec565b6040516105d19190613ff9565b60405180910390f35b3480156105e657600080fd5b506105ef611312565b6040516105fc9190613e07565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613e22565b611325565b6040516106399190613e07565b60405180910390f35b34801561064e57600080fd5b5061065761137b565b6040516106649190613ed8565b60405180910390f35b34801561067957600080fd5b50610682611381565b60405161068f9190613e07565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190613e22565b611394565b6040516106cc9190613ed8565b60405180910390f35b3480156106e157600080fd5b506106ea6113dc565b005b3480156106f857600080fd5b50610701611534565b60405161070e9190613e07565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190614040565b6115ef565b005b34801561074c57600080fd5b506107556116e1565b6040516107629190613ff9565b60405180910390f35b34801561077757600080fd5b50610780611707565b60405161078d9190613ed8565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190614080565b61170d565b005b3480156107cb57600080fd5b506107d4611827565b005b3480156107e257600080fd5b506107eb61199a565b6040516107f89190613ff9565b60405180910390f35b34801561080d57600080fd5b506108166119c4565b6040516108239190613ff9565b60405180910390f35b34801561083857600080fd5b506108416119ea565b60405161084e9190613ed8565b60405180910390f35b34801561086357600080fd5b5061086c6119f0565b6040516108799190613cf1565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614040565b611a82565b005b3480156108b757600080fd5b506108c0611bb7565b6040516108cd9190613ed8565b60405180910390f35b3480156108e257600080fd5b506108eb611bbd565b6040516108f89190613ed8565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ed8565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613dac565b611bc9565b6040516109609190613e07565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613dac565b611c96565b60405161099d9190613e07565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e22565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e22565b611e0b565b604051610a039190613e07565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e07565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614040565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614080565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613ef3565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e07565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ed8565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613ef3565b6121db565b604051610b3c9190613e07565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ed8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140d3565b612351565b604051610ba49190613ed8565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ed8565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e07565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ed8565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e22565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ed8565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ed8565b60405180910390f35b606060038054610cbc90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890614142565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141bf565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f919061423d565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e0565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151c360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111b857600080fd5b60006111e5600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611394565b905060018311801561120257506064816111ff919061423d565b83105b611241576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112389061434c565b60405180910390fd5b61124a8361331d565b611253846133ed565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161129b9061439d565b60006040518083038185875af1925050503d80600081146112d8576040519150601f19603f3d011682016040523d82523d6000602084013e6112dd565b606091505b50509050809250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113e46126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061153e6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906141bf565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6115f76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906141bf565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6117156126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b906141bf565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546117cc91906143b2565b6117d691906143b2565b60108190555060146010541115611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990614432565b60405180910390fd5b505050565b61182f6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906141bf565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff1615151461192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119269061449e565b60405180910390fd5b6000600f60016101000a81548160ff021916908315150217905550611952613630565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516119909190613e07565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6060600480546119ff90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b90614142565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b5050505050905090565b611a8a6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906141bf565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090614530565b60405180910390fd5b611bb3828261364d565b5050565b60135481565b601a5481565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016151eb6025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141bf565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141bf565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e07565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141bf565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d91906143b2565b61204791906143b2565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a9061459c565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141bf565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145bc565b612159919061423d565b612163919061423d565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614688565b60405180910390fd5b670de0b6b3a7640000816121b991906145bc565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141bf565b60405180910390fd5b620186a06001612282610da3565b61228c91906145bc565b612296919061423d565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf9061471a565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145bc565b6122f9919061423d565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147ac565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141bf565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061483e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b600080828461268091906143b2565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148aa565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d9061493c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ed8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614af2565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461199a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261199a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b5e565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614bf0565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614c82565b60405180910390fd5b5b5b5b5b6000612d9630611394565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145bc565b613087919061423d565b6019600082825461309891906143b2565b92505081905550601454601754826130b091906145bc565b6130ba919061423d565b601a60008282546130cb91906143b2565b92505081905550601454601554826130e391906145bc565b6130ed919061423d565b601860008282546130fe91906143b2565b9250508190555060006002600a546131169190614ca2565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d45565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145bc565b613200919061423d565b6019600082825461321191906143b2565b925050819055506010546013548261322991906145bc565b613233919061423d565b601a600082825461324491906143b2565b925050819055506010546011548261325c91906145bc565b613266919061423d565b6018600082825461327791906143b2565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d65565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cf1565b60405180910390fd5b50600083856133109190614d65565b9050809150509392505050565b613368600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061334c6110a4565b600a6133589190614ecc565b8461336391906145bc565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156133d257600080fd5b505af11580156133e6573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff81111561340a57613409614f17565b5b6040519080825280602002602001820160405280156134385781602001602082028036833780820191505090505b50905030816000815181106134505761344f614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061351b9190614f8a565b8160018151811061352f5761352e614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061359630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135fa9594939291906150b0565b600060405180830381600087803b15801561361457600080fd5b505af1158015613628573d6000803e3d6000fd5b505050505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614af2565b60405180910390fd5b6137d7838383613baf565b6138428160405180606001604052806026815260200161519d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ed8565b60405180910390a3505050565b600061398c30611394565b90506000601a546018546019546139a391906143b2565b6139ad91906143b2565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145bc565b8311156139f4576014600b546139f191906145bc565b92505b600060028360195486613a0791906145bc565b613a11919061423d565b613a1b919061423d565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816133ed565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b9061439d565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145bc565b9050828482613b1a919061423d565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b519061517c565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cf1565b60405180910390fd5b5060008385613c54919061423d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cc382613c61565b613ccd8185613c6c565b9350613cdd818560208601613c7d565b613ce681613ca7565b840191505092915050565b60006020820190508181036000830152613d0b8184613cb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4382613d18565b9050919050565b613d5381613d38565b8114613d5e57600080fd5b50565b600081359050613d7081613d4a565b92915050565b6000819050919050565b613d8981613d76565b8114613d9457600080fd5b50565b600081359050613da681613d80565b92915050565b60008060408385031215613dc357613dc2613d13565b5b6000613dd185828601613d61565b9250506020613de285828601613d97565b9150509250929050565b60008115159050919050565b613e0181613dec565b82525050565b6000602082019050613e1c6000830184613df8565b92915050565b600060208284031215613e3857613e37613d13565b5b6000613e4684828501613d61565b91505092915050565b6000819050919050565b6000613e74613e6f613e6a84613d18565b613e4f565b613d18565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b613ed281613d76565b82525050565b6000602082019050613eed6000830184613ec9565b92915050565b600060208284031215613f0957613f08613d13565b5b6000613f1784828501613d97565b91505092915050565b600080600060608486031215613f3957613f38613d13565b5b6000613f4786828701613d61565b9350506020613f5886828701613d61565b9250506040613f6986828701613d97565b9150509250925092565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b60008060408385031215613fc157613fc0613d13565b5b6000613fcf85828601613d97565b9250506020613fe085828601613d97565b9150509250929050565b613ff381613d38565b82525050565b600060208201905061400e6000830184613fea565b92915050565b61401d81613dec565b811461402857600080fd5b50565b60008135905061403a81614014565b92915050565b6000806040838503121561405757614056613d13565b5b600061406585828601613d61565b92505060206140768582860161402b565b9150509250929050565b60008060006060848603121561409957614098613d13565b5b60006140a786828701613d97565b93505060206140b886828701613d97565b92505060406140c986828701613d97565b9150509250925092565b600080604083850312156140ea576140e9613d13565b5b60006140f885828601613d61565b925050602061410985828601613d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061415a57607f821691505b60208210810361416d5761416c614113565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141a9602083613c6c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424882613d76565b915061425383613d76565b925082614263576142626141df565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142ca602f83613c6c565b91506142d58261426e565b604082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b6000614336600f83613c6c565b915061434182614300565b602082019050919050565b6000602082019050818103600083015261436581614329565b9050919050565b600081905092915050565b50565b600061438760008361436c565b915061439282614377565b600082019050919050565b60006143a88261437a565b9150819050919050565b60006143bd82613d76565b91506143c883613d76565b92508282019050808211156143e0576143df61420e565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061441c601d83613c6c565b9150614427826143e6565b602082019050919050565b6000602082019050818103600083015261444b8161440f565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b6000614488600483613c6c565b915061449382614452565b602082019050919050565b600060208201905081810360008301526144b78161447b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061451a603983613c6c565b9150614525826144be565b604082019050919050565b600060208201905081810360008301526145498161450d565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614586601d83613c6c565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c782613d76565b91506145d283613d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460b5761460a61420e565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614672602483613c6c565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614704603583613c6c565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614796603483613c6c565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614828602683613c6c565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614894601b83613c6c565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614926602483613c6c565b9150614931826148ca565b604082019050919050565b6000602082019050818103600083015261495581614919565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b8602283613c6c565b91506149c38261495c565b604082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a4a602583613c6c565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614adc602383613c6c565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b48601683613c6c565b9150614b5382614b12565b602082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bda603583613c6c565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c6c603683613c6c565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b6000614cad82613d76565b9150614cb883613d76565b925082614cc857614cc76141df565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d2f602483613c6c565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b6000614d7082613d76565b9150614d7b83613d76565b9250828203905081811115614d9357614d9261420e565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115614df057808604811115614dcc57614dcb61420e565b5b6001851615614ddb5780820291505b8081029050614de985614d99565b9450614db0565b94509492505050565b600082614e095760019050614ec5565b81614e175760009050614ec5565b8160018114614e2d5760028114614e3757614e66565b6001915050614ec5565b60ff841115614e4957614e4861420e565b5b8360020a915084821115614e6057614e5f61420e565b5b50614ec5565b5060208310610133831016604e8410600b8410161715614e9b5782820a905083811115614e9657614e9561420e565b5b614ec5565b614ea88484846001614da6565b92509050818404811115614ebf57614ebe61420e565b5b81810290505b9392505050565b6000614ed782613d76565b9150614ee283613f73565b9250614f0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614df9565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f8481613d4a565b92915050565b600060208284031215614fa057614f9f613d13565b5b6000614fae84828501614f75565b91505092915050565b6000819050919050565b6000614fdc614fd7614fd284614fb7565b613e4f565b613d76565b9050919050565b614fec81614fc1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61502781613d38565b82525050565b6000615039838361501e565b60208301905092915050565b6000602082019050919050565b600061505d82614ff2565b6150678185614ffd565b93506150728361500e565b8060005b838110156150a357815161508a888261502d565b975061509583615045565b925050600181019050615076565b5085935050505092915050565b600060a0820190506150c56000830188613ec9565b6150d26020830187614fe3565b81810360408301526150e48186615052565b90506150f36060830185613fea565b6151006080830184613ec9565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615166602183613c6c565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220238c583df2041e7197d83a6935145e031d7b852d2f93aa8aa9f696c2264bf8b564736f6c63430008100033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80638da5cb5b116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b80639fccce32146108d6578063a0d82dc514610901578063a457c2d71461092c57610325565b80638da5cb5b146107d65780638ea5220f14610801578063921369131461082c57806395d89b41146108575780639a7a23d6146108825780639c3b4fdc146108ab57610325565b806349bd5a5e1161026a578063715018a61161022357806375f0a874116101fd57806375f0a874146107405780637bce5a041461076b5780638095d564146107965780638a8c523c146107bf57610325565b8063715018a6146106d5578063751039fc146106ec5780637571336a1461071757610325565b806349bd5a5e146105af5780634a62bb65146105da5780634fbee193146106055780636a486a8e146106425780636ddd17131461066d57806370a082311461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a57806339509351146105355780633a2de62c1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cf1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613dac565b610d3f565b6040516103899190613e07565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e22565b610d5d565b6040516103c69190613e07565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eae565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ed8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e22565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ed8565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ed8565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613ef3565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f20565b610fcb565b6040516105019190613e07565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f8f565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613dac565b6110ad565b6040516105699190613e07565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190613faa565b611160565b6040516105a69190613e07565b60405180910390f35b3480156105bb57600080fd5b506105c46112ec565b6040516105d19190613ff9565b60405180910390f35b3480156105e657600080fd5b506105ef611312565b6040516105fc9190613e07565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613e22565b611325565b6040516106399190613e07565b60405180910390f35b34801561064e57600080fd5b5061065761137b565b6040516106649190613ed8565b60405180910390f35b34801561067957600080fd5b50610682611381565b60405161068f9190613e07565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190613e22565b611394565b6040516106cc9190613ed8565b60405180910390f35b3480156106e157600080fd5b506106ea6113dc565b005b3480156106f857600080fd5b50610701611534565b60405161070e9190613e07565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190614040565b6115ef565b005b34801561074c57600080fd5b506107556116e1565b6040516107629190613ff9565b60405180910390f35b34801561077757600080fd5b50610780611707565b60405161078d9190613ed8565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190614080565b61170d565b005b3480156107cb57600080fd5b506107d4611827565b005b3480156107e257600080fd5b506107eb61199a565b6040516107f89190613ff9565b60405180910390f35b34801561080d57600080fd5b506108166119c4565b6040516108239190613ff9565b60405180910390f35b34801561083857600080fd5b506108416119ea565b60405161084e9190613ed8565b60405180910390f35b34801561086357600080fd5b5061086c6119f0565b6040516108799190613cf1565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614040565b611a82565b005b3480156108b757600080fd5b506108c0611bb7565b6040516108cd9190613ed8565b60405180910390f35b3480156108e257600080fd5b506108eb611bbd565b6040516108f89190613ed8565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ed8565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613dac565b611bc9565b6040516109609190613e07565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613dac565b611c96565b60405161099d9190613e07565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e22565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e22565b611e0b565b604051610a039190613e07565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e07565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614040565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614080565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613ef3565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e07565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ed8565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613ef3565b6121db565b604051610b3c9190613e07565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ed8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140d3565b612351565b604051610ba49190613ed8565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ed8565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e07565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ed8565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e22565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ed8565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ed8565b60405180910390f35b606060038054610cbc90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890614142565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141bf565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f919061423d565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e0565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151c360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111b857600080fd5b60006111e5600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611394565b905060018311801561120257506064816111ff919061423d565b83105b611241576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112389061434c565b60405180910390fd5b61124a8361331d565b611253846133ed565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161129b9061439d565b60006040518083038185875af1925050503d80600081146112d8576040519150601f19603f3d011682016040523d82523d6000602084013e6112dd565b606091505b50509050809250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113e46126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061153e6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906141bf565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6115f76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906141bf565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6117156126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b906141bf565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546117cc91906143b2565b6117d691906143b2565b60108190555060146010541115611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990614432565b60405180910390fd5b505050565b61182f6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906141bf565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff1615151461192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119269061449e565b60405180910390fd5b6000600f60016101000a81548160ff021916908315150217905550611952613630565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516119909190613e07565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6060600480546119ff90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b90614142565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b5050505050905090565b611a8a6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906141bf565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090614530565b60405180910390fd5b611bb3828261364d565b5050565b60135481565b601a5481565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016151eb6025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141bf565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141bf565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e07565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141bf565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d91906143b2565b61204791906143b2565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a9061459c565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141bf565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145bc565b612159919061423d565b612163919061423d565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614688565b60405180910390fd5b670de0b6b3a7640000816121b991906145bc565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141bf565b60405180910390fd5b620186a06001612282610da3565b61228c91906145bc565b612296919061423d565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf9061471a565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145bc565b6122f9919061423d565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147ac565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141bf565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061483e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b600080828461268091906143b2565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148aa565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d9061493c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ed8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614af2565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461199a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261199a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b5e565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614bf0565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614c82565b60405180910390fd5b5b5b5b5b6000612d9630611394565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145bc565b613087919061423d565b6019600082825461309891906143b2565b92505081905550601454601754826130b091906145bc565b6130ba919061423d565b601a60008282546130cb91906143b2565b92505081905550601454601554826130e391906145bc565b6130ed919061423d565b601860008282546130fe91906143b2565b9250508190555060006002600a546131169190614ca2565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d45565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145bc565b613200919061423d565b6019600082825461321191906143b2565b925050819055506010546013548261322991906145bc565b613233919061423d565b601a600082825461324491906143b2565b925050819055506010546011548261325c91906145bc565b613266919061423d565b6018600082825461327791906143b2565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d65565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cf1565b60405180910390fd5b50600083856133109190614d65565b9050809150509392505050565b613368600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061334c6110a4565b600a6133589190614ecc565b8461336391906145bc565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156133d257600080fd5b505af11580156133e6573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff81111561340a57613409614f17565b5b6040519080825280602002602001820160405280156134385781602001602082028036833780820191505090505b50905030816000815181106134505761344f614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061351b9190614f8a565b8160018151811061352f5761352e614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061359630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135fa9594939291906150b0565b600060405180830381600087803b15801561361457600080fd5b505af1158015613628573d6000803e3d6000fd5b505050505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614af2565b60405180910390fd5b6137d7838383613baf565b6138428160405180606001604052806026815260200161519d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ed8565b60405180910390a3505050565b600061398c30611394565b90506000601a546018546019546139a391906143b2565b6139ad91906143b2565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145bc565b8311156139f4576014600b546139f191906145bc565b92505b600060028360195486613a0791906145bc565b613a11919061423d565b613a1b919061423d565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816133ed565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b9061439d565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145bc565b9050828482613b1a919061423d565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b519061517c565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cf1565b60405180910390fd5b5060008385613c54919061423d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cc382613c61565b613ccd8185613c6c565b9350613cdd818560208601613c7d565b613ce681613ca7565b840191505092915050565b60006020820190508181036000830152613d0b8184613cb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4382613d18565b9050919050565b613d5381613d38565b8114613d5e57600080fd5b50565b600081359050613d7081613d4a565b92915050565b6000819050919050565b613d8981613d76565b8114613d9457600080fd5b50565b600081359050613da681613d80565b92915050565b60008060408385031215613dc357613dc2613d13565b5b6000613dd185828601613d61565b9250506020613de285828601613d97565b9150509250929050565b60008115159050919050565b613e0181613dec565b82525050565b6000602082019050613e1c6000830184613df8565b92915050565b600060208284031215613e3857613e37613d13565b5b6000613e4684828501613d61565b91505092915050565b6000819050919050565b6000613e74613e6f613e6a84613d18565b613e4f565b613d18565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b613ed281613d76565b82525050565b6000602082019050613eed6000830184613ec9565b92915050565b600060208284031215613f0957613f08613d13565b5b6000613f1784828501613d97565b91505092915050565b600080600060608486031215613f3957613f38613d13565b5b6000613f4786828701613d61565b9350506020613f5886828701613d61565b9250506040613f6986828701613d97565b9150509250925092565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b60008060408385031215613fc157613fc0613d13565b5b6000613fcf85828601613d97565b9250506020613fe085828601613d97565b9150509250929050565b613ff381613d38565b82525050565b600060208201905061400e6000830184613fea565b92915050565b61401d81613dec565b811461402857600080fd5b50565b60008135905061403a81614014565b92915050565b6000806040838503121561405757614056613d13565b5b600061406585828601613d61565b92505060206140768582860161402b565b9150509250929050565b60008060006060848603121561409957614098613d13565b5b60006140a786828701613d97565b93505060206140b886828701613d97565b92505060406140c986828701613d97565b9150509250925092565b600080604083850312156140ea576140e9613d13565b5b60006140f885828601613d61565b925050602061410985828601613d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061415a57607f821691505b60208210810361416d5761416c614113565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141a9602083613c6c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424882613d76565b915061425383613d76565b925082614263576142626141df565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142ca602f83613c6c565b91506142d58261426e565b604082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b6000614336600f83613c6c565b915061434182614300565b602082019050919050565b6000602082019050818103600083015261436581614329565b9050919050565b600081905092915050565b50565b600061438760008361436c565b915061439282614377565b600082019050919050565b60006143a88261437a565b9150819050919050565b60006143bd82613d76565b91506143c883613d76565b92508282019050808211156143e0576143df61420e565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061441c601d83613c6c565b9150614427826143e6565b602082019050919050565b6000602082019050818103600083015261444b8161440f565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b6000614488600483613c6c565b915061449382614452565b602082019050919050565b600060208201905081810360008301526144b78161447b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061451a603983613c6c565b9150614525826144be565b604082019050919050565b600060208201905081810360008301526145498161450d565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614586601d83613c6c565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c782613d76565b91506145d283613d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460b5761460a61420e565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614672602483613c6c565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614704603583613c6c565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614796603483613c6c565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614828602683613c6c565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614894601b83613c6c565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614926602483613c6c565b9150614931826148ca565b604082019050919050565b6000602082019050818103600083015261495581614919565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b8602283613c6c565b91506149c38261495c565b604082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a4a602583613c6c565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614adc602383613c6c565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b48601683613c6c565b9150614b5382614b12565b602082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bda603583613c6c565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c6c603683613c6c565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b6000614cad82613d76565b9150614cb883613d76565b925082614cc857614cc76141df565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d2f602483613c6c565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b6000614d7082613d76565b9150614d7b83613d76565b9250828203905081811115614d9357614d9261420e565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115614df057808604811115614dcc57614dcb61420e565b5b6001851615614ddb5780820291505b8081029050614de985614d99565b9450614db0565b94509492505050565b600082614e095760019050614ec5565b81614e175760009050614ec5565b8160018114614e2d5760028114614e3757614e66565b6001915050614ec5565b60ff841115614e4957614e4861420e565b5b8360020a915084821115614e6057614e5f61420e565b5b50614ec5565b5060208310610133831016604e8410600b8410161715614e9b5782820a905083811115614e9657614e9561420e565b5b614ec5565b614ea88484846001614da6565b92509050818404811115614ebf57614ebe61420e565b5b81810290505b9392505050565b6000614ed782613d76565b9150614ee283613f73565b9250614f0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614df9565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f8481613d4a565b92915050565b600060208284031215614fa057614f9f613d13565b5b6000614fae84828501614f75565b91505092915050565b6000819050919050565b6000614fdc614fd7614fd284614fb7565b613e4f565b613d76565b9050919050565b614fec81614fc1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61502781613d38565b82525050565b6000615039838361501e565b60208301905092915050565b6000602082019050919050565b600061505d82614ff2565b6150678185614ffd565b93506150728361500e565b8060005b838110156150a357815161508a888261502d565b975061509583615045565b925050600181019050615076565b5085935050505092915050565b600060a0820190506150c56000830188613ec9565b6150d26020830187614fe3565b81810360408301526150e48186615052565b90506150f36060830185613fea565b6151006080830184613ec9565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615166602183613c6c565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220238c583df2041e7197d83a6935145e031d7b852d2f93aa8aa9f696c2264bf8b564736f6c63430008100033

Deployed Bytecode Sourcemap

29449:13906:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7611:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9778:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30804:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29524:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8731:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37595:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30583:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30543;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34894:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10429:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8573:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11193:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36497:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29572:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29861:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37766:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30394:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29940:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8902:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22076:148;;;;;;;;;;;;;:::i;:::-;;34105:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35384:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29668:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30283;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35540:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43121:229;;;;;;;;;;;;;:::i;:::-;;21434:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29705:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30429:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7830:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36927:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30357:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30623:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30505:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11914:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9242:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37375:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31026:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29901:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36307:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35921:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35157:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30162:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29742:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34501:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30249:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9480:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29784:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34291:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30320:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22379:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30467:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29824:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7611:100;7665:13;7698:5;7691:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7611:100;:::o;9778:169::-;9861:4;9878:39;9887:12;:10;:12::i;:::-;9901:7;9910:6;9878:8;:39::i;:::-;9935:4;9928:11;;9778:169;;;;:::o;30804:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29524:41::-;;;;;;;;;;;;;:::o;8731:108::-;8792:7;8819:12;;8812:19;;8731:108;:::o;37595:157::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37702:9:::1;;;;;;;;;;;37674:38;;37691:9;37674:38;;;;;;;;;;;;37735:9;37723;;:21;;;;;;;;;;;;;;;;;;37595:157:::0;:::o;30583:33::-;;;;:::o;30543:::-;;;;:::o;34894:255::-;34980:15;;;;;;;;;;;34966:29;;:10;:29;;;34958:38;;;;;;35045:4;35029:13;:11;:13::i;:::-;:20;;;;:::i;:::-;35019:6;:30;;35011:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35135:6;35112:20;:29;;;;34894:255;:::o;10429:355::-;10569:4;10586:36;10596:6;10604:9;10615:6;10586:9;:36::i;:::-;10633:121;10642:6;10650:12;:10;:12::i;:::-;10664:89;10702:6;10664:89;;;;;;;;;;;;;;;;;:11;:19;10676:6;10664:19;;;;;;;;;;;;;;;:33;10684:12;:10;:12::i;:::-;10664:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10633:8;:121::i;:::-;10772:4;10765:11;;10429:355;;;;;:::o;8573:93::-;8631:5;8656:2;8649:9;;8573:93;:::o;11193:218::-;11281:4;11298:83;11307:12;:10;:12::i;:::-;11321:7;11330:50;11369:10;11330:11;:25;11342:12;:10;:12::i;:::-;11330:25;;;;;;;;;;;;;;;:34;11356:7;11330:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11298:8;:83::i;:::-;11399:4;11392:11;;11193:218;;;;:::o;36497:422::-;36559:4;36584:19;:31;36604:10;36584:31;;;;;;;;;;;;;;;;;;;;;;;;;36576:40;;;;;;36629:7;36639:24;36649:13;;;;;;;;;;;36639:9;:24::i;:::-;36629:34;;36689:1;36684:2;:6;:23;;;;;36704:3;36699:2;:8;;;;:::i;:::-;36694:2;:13;36684:23;36676:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;36740:21;36758:2;36740:17;:21::i;:::-;36772:20;36789:2;36772:16;:20::i;:::-;36806:12;36831:15;;;;;;;;;;;36823:29;;36860:21;36823:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36805:81;;;36904:7;36897:14;;;;36497:422;;;;:::o;29572:28::-;;;;;;;;;;;;;:::o;29861:33::-;;;;;;;;;;;;;:::o;37766:125::-;37831:4;37855:19;:28;37875:7;37855:28;;;;;;;;;;;;;;;;;;;;;;;;;37848:35;;37766:125;;;:::o;30394:28::-;;;;:::o;29940:31::-;;;;;;;;;;;;;:::o;8902:127::-;8976:7;9003:9;:18;9013:7;9003:18;;;;;;;;;;;;;;;;8996:25;;8902:127;;;:::o;22076:148::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22183:1:::1;22146:40;;22167:6;;;;;;;;;;;22146:40;;;;;;;;;;;;22214:1;22197:6;;:19;;;;;;;;;;;;;;;;;;22076:148::o:0;34105:121::-;34157:4;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34191:5:::1;34174:14;;:22;;;;;;;;;;;;;;;;;;34214:4;34207:11;;34105:121:::0;:::o;35384:144::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35516:4:::1;35474:31;:39;35506:6;35474:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35384:144:::0;;:::o;29668:30::-;;;;;;;;;;;;;:::o;30283:::-;;;;:::o;35540:369::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35674:13:::1;35656:15;:31;;;;35716:13;35698:15;:31;;;;35752:7;35740:9;:19;;;;35821:9;;35803:15;;35785;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;35770:12;:60;;;;35865:2;35849:12;;:18;;35841:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35540:369:::0;;;:::o;43121:229::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43192:4:::1;43178:11;;:18;;;;;;;;;;;;;;;;;;43230:4;43215:19;;:11;;;;;;;;;;;:19;;;43207:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;43268:5;43254:11;;:19;;;;;;;;;;;;;;;;;;43284:13;:11;:13::i;:::-;43313:29;43330:11;;;;;;;;;;;43313:29;;;;;;:::i;:::-;;;;;;;;43121:229::o:0;21434:79::-;21472:7;21499:6;;;;;;;;;;;21492:13;;21434:79;:::o;29705:24::-;;;;;;;;;;;;;:::o;30429:31::-;;;;:::o;7830:104::-;7886:13;7919:7;7912:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7830:104;:::o;36927:244::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37034:13:::1;;;;;;;;;;;37026:21;;:4;:21;;::::0;37018:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37122:41;37151:4;37157:5;37122:28;:41::i;:::-;36927:244:::0;;:::o;30357:24::-;;;;:::o;30623:27::-;;;;:::o;30505:25::-;;;;:::o;11914:269::-;12007:4;12024:129;12033:12;:10;:12::i;:::-;12047:7;12056:96;12095:15;12056:96;;;;;;;;;;;;;;;;;:11;:25;12068:12;:10;:12::i;:::-;12056:25;;;;;;;;;;;;;;;:34;12082:7;12056:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12024:8;:129::i;:::-;12171:4;12164:11;;11914:269;;;;:::o;9242:175::-;9328:4;9345:42;9355:12;:10;:12::i;:::-;9369:9;9380:6;9345:9;:42::i;:::-;9405:4;9398:11;;9242:175;;;;:::o;37375:208::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37512:15:::1;;;;;;;;;;;37469:59;;37492:18;37469:59;;;;;;;;;;;;37557:18;37539:15;;:36;;;;;;;;;;;;;;;;;;37375:208:::0;:::o;31026:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29901:32::-;;;;;;;;;;;;;:::o;36307:182::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36423:8:::1;36392:19;:28;36412:7;36392:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36463:7;36447:34;;;36472:8;36447:34;;;;;;:::i;:::-;;;;;;;;36307:182:::0;;:::o;35921:378::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36057:13:::1;36038:16;:32;;;;36100:13;36081:16;:32;;;;36137:7;36124:10;:20;;;;36209:10;;36190:16;;36171;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36155:13;:64;;;;36255:2;36238:13;;:19;;36230:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35921:378:::0;;;:::o;35157:215::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35279:4:::1;35273;35269:1;35253:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35252:31;;;;:::i;:::-;35242:6;:41;;35234:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35357:6;35347;:17;;;;:::i;:::-;35335:9;:29;;;;35157:215:::0;:::o;30162:40::-;;;;;;;;;;;;;:::o;29742:35::-;;;;:::o;34501:381::-;34582:4;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34638:6:::1;34634:1;34618:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34605:9;:39;;34597:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34753:4;34749:1;34733:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34720:9;:37;;34712:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34845:9;34824:18;:30;;;;34871:4;34864:11;;34501:381:::0;;;:::o;30249:27::-;;;;:::o;9480:151::-;9569:7;9596:11;:18;9608:5;9596:18;;;;;;;;;;;;;;;:27;9615:7;9596:27;;;;;;;;;;;;;;;;9589:34;;9480:151;;;;:::o;29784:33::-;;;;:::o;34291:135::-;34351:4;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34391:5:::1;34368:20;;:28;;;;;;;;;;;;;;;;;;34414:4;34407:11;;34291:135:::0;:::o;30320:30::-;;;;:::o;22379:244::-;21656:12;:10;:12::i;:::-;21646:22;;:6;;;;;;;;;;;:22;;;21638:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22488:1:::1;22468:22;;:8;:22;;::::0;22460:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22578:8;22549:38;;22570:6;;;;;;;;;;;22549:38;;;;;;;;;;;;22607:8;22598:6;;:17;;;;;;;;;;;;;;;;;;22379:244:::0;:::o;30467:31::-;;;;:::o;29824:24::-;;;;:::o;16478:181::-;16536:7;16556:9;16572:1;16568;:5;;;;:::i;:::-;16556:17;;16597:1;16592;:6;;16584:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16650:1;16643:8;;;16478:181;;;;:::o;249:98::-;302:7;329:10;322:17;;249:98;:::o;15100:380::-;15253:1;15236:19;;:5;:19;;;15228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15334:1;15315:21;;:7;:21;;;15307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15418:6;15388:11;:18;15400:5;15388:18;;;;;;;;;;;;;;;:27;15407:7;15388:27;;;;;;;;;;;;;;;:36;;;;15456:7;15440:32;;15449:5;15440:32;;;15465:6;15440:32;;;;;;:::i;:::-;;;;;;;;15100:380;;;:::o;38096:3362::-;38244:1;38228:18;;:4;:18;;;38220:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38321:1;38307:16;;:2;:16;;;38299:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38390:1;38380:6;:11;38377:92;;38408:28;38424:4;38430:2;38434:1;38408:15;:28::i;:::-;38451:7;;38377:92;38492:14;;;;;;;;;;;38489:997;;;38552:7;:5;:7::i;:::-;38544:15;;:4;:15;;;;:49;;;;;38586:7;:5;:7::i;:::-;38580:13;;:2;:13;;;;38544:49;:86;;;;;38628:1;38614:16;;:2;:16;;;;38544:86;:128;;;;;38665:6;38651:21;;:2;:21;;;;38544:128;:158;;;;;38694:8;;;;;;;;;;;38693:9;38544:158;38522:953;;;38740:13;;;;;;;;;;;38736:148;;38785:19;:25;38805:4;38785:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38814:19;:23;38834:2;38814:23;;;;;;;;;;;;;;;;;;;;;;;;;38785:52;38777:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38736:148;38953:25;:31;38979:4;38953:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38989:31;:35;39021:2;38989:35;;;;;;;;;;;;;;;;;;;;;;;;;38988:36;38953:71;38949:511;;;39071:20;;39061:6;:30;;39053:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;38949:511;;;39243:25;:29;39269:2;39243:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39277:31;:37;39309:4;39277:37;;;;;;;;;;;;;;;;;;;;;;;;;39276:38;39243:71;39239:221;;;39361:20;;39351:6;:30;;39343:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39239:221;38949:511;38522:953;38489:997;39500:28;39531:24;39549:4;39531:9;:24::i;:::-;39500:55;;39576:12;39615:18;;39591:20;:42;;39576:57;;39664:7;:35;;;;;39688:11;;;;;;;;;;;39664:35;:61;;;;;39717:8;;;;;;;;;;;39716:9;39664:61;:110;;;;;39743:25;:31;39769:4;39743:31;;;;;;;;;;;;;;;;;;;;;;;;;39742:32;39664:110;:153;;;;;39792:19;:25;39812:4;39792:25;;;;;;;;;;;;;;;;;;;;;;;;;39791:26;39664:153;:194;;;;;39835:19;:23;39855:2;39835:23;;;;;;;;;;;;;;;;;;;;;;;;;39834:24;39664:194;39646:338;;;39896:4;39885:8;;:15;;;;;;;;;;;;;;;;;;39929:10;:8;:10::i;:::-;39967:5;39956:8;;:16;;;;;;;;;;;;;;;;;;39646:338;39996:12;40012:8;;;;;;;;;;;40011:9;39996:24;;40121:19;:25;40141:4;40121:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40150:19;:23;40170:2;40150:23;;;;;;;;;;;;;;;;;;;;;;;;;40121:52;40118:99;;;40200:5;40190:15;;40118:99;40237:12;40341:7;40338:1067;;;40392:25;:29;40418:2;40392:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40441:1;40425:13;;:17;40392:50;40388:848;;;40469:34;40499:3;40469:25;40480:13;;40469:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40462:41;;40570:13;;40551:16;;40544:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40522:18;;:61;;;;;;;:::i;:::-;;;;;;;;40638:13;;40625:10;;40618:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40602:12;;:49;;;;;;;:::i;:::-;;;;;;;;40718:13;;40699:16;;40692:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40670:18;;:61;;;;;;;:::i;:::-;;;;;;;;40782:1;40777;40754:20;;:24;;;;:::i;:::-;:29;40750:81;;40785:46;;;;;;;;;;:::i;:::-;;;;;;;;40750:81;40388:848;;;40892:25;:31;40918:4;40892:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40942:1;40927:12;;:16;40892:51;40889:347;;;40968:33;40997:3;40968:24;40979:12;;40968:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40961:40;;41064:12;;41046:15;;41039:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41017:18;;:59;;;;;;;:::i;:::-;;;;;;;;41130:12;;41118:9;;41111:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41095:12;;:47;;;;;;;:::i;:::-;;;;;;;;41208:12;;41190:15;;41183:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41161:18;;:59;;;;;;;:::i;:::-;;;;;;;;40889:347;40388:848;41274:1;41267:4;:8;41264:93;;;41299:42;41315:4;41329;41336;41299:15;:42::i;:::-;41264:93;41389:4;41379:14;;;;;:::i;:::-;;;40338:1067;41417:33;41433:4;41439:2;41443:6;41417:15;:33::i;:::-;38209:3249;;;;38096:3362;;;;:::o;17381:192::-;17467:7;17500:1;17495;:6;;17503:12;17487:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17527:9;17543:1;17539;:5;;;;:::i;:::-;17527:17;;17564:1;17557:8;;;17381:192;;;;;:::o;37903:185::-;37966:67;37976:13;;;;;;;;;;;37999:4;38022:10;:8;:10::i;:::-;38016:2;:16;;;;:::i;:::-;38006:7;:26;;;;:::i;:::-;37966:9;:67::i;:::-;38059:13;;;;;;;;;;;38044:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37903:185;:::o;41466:601::-;41594:21;41632:1;41618:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41594:40;;41663:4;41645;41650:1;41645:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41689:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41679:4;41684:1;41679:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41724:62;41741:4;41756:15;;;;;;;;;;;41774:11;41724:8;:62::i;:::-;41825:15;;;;;;;;;;;:66;;;41906:11;41932:1;41976:4;42003;42023:15;41825:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41521:546;41466:601;:::o;42997:70::-;43055:4;43039:13;;:20;;;;;;;;;;;;;;;;;;42997:70::o;37179:188::-;37296:5;37262:25;:31;37288:4;37262:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37353:5;37319:40;;37347:4;37319:40;;;;;;;;;;;;37179:188;;:::o;12673:573::-;12831:1;12813:20;;:6;:20;;;12805:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12915:1;12894:23;;:9;:23;;;12886:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12970:47;12991:6;12999:9;13010:6;12970:20;:47::i;:::-;13050:71;13072:6;13050:71;;;;;;;;;;;;;;;;;:9;:17;13060:6;13050:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13030:9;:17;13040:6;13030:17;;;;;;;;;;;;;;;:91;;;;13155:32;13180:6;13155:9;:20;13165:9;13155:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13132:9;:20;13142:9;13132:20;;;;;;;;;;;;;;;:55;;;;13220:9;13203:35;;13212:6;13203:35;;;13231:6;13203:35;;;;;;:::i;:::-;;;;;;;;12673:573;;;:::o;42075:914::-;42114:23;42140:24;42158:4;42140:9;:24::i;:::-;42114:50;;42175:25;42245:12;;42224:18;;42203;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42175:82;;42268:12;42323:1;42304:15;:20;:46;;;;42349:1;42328:17;:22;42304:46;42301:60;;;42353:7;;;;;42301:60;42415:2;42394:18;;:23;;;;:::i;:::-;42376:15;:41;42373:111;;;42470:2;42449:18;;:23;;;;:::i;:::-;42431:41;;42373:111;42553:23;42638:1;42618:17;42597:18;;42579:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42553:86;;42650:26;42679:36;42699:15;42679;:19;;:36;;;;:::i;:::-;42650:65;;42736:36;42753:18;42736:16;:36::i;:::-;42823:1;42802:18;:22;;;;42856:1;42835:18;:22;;;;42883:1;42868:12;:16;;;;42926:15;;;;;;;;;;;42918:29;;42955:21;42918:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42905:76;;;;;42103:886;;;;;42075:914;:::o;17832:471::-;17890:7;18140:1;18135;:6;18131:47;;18165:1;18158:8;;;;18131:47;18190:9;18206:1;18202;:5;;;;:::i;:::-;18190:17;;18235:1;18230;18226;:5;;;;:::i;:::-;:10;18218:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18294:1;18287:8;;;17832:471;;;;;:::o;18779:132::-;18837:7;18864:39;18868:1;18871;18864:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18857:46;;18779:132;;;;:::o;16083:125::-;;;;:::o;16942:136::-;17000:7;17027:43;17031:1;17034;17027:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17020:50;;16942:136;;;;:::o;19407:278::-;19493:7;19525:1;19521;:5;19528:12;19513:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19552:9;19568:1;19564;:5;;;;:::i;:::-;19552:17;;19676:1;19669:8;;;19407:278;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:86::-;6106:7;6146:4;6139:5;6135:16;6124:27;;6071:86;;;:::o;6163:112::-;6246:22;6262:5;6246:22;:::i;:::-;6241:3;6234:35;6163:112;;:::o;6281:214::-;6370:4;6408:2;6397:9;6393:18;6385:26;;6421:67;6485:1;6474:9;6470:17;6461:6;6421:67;:::i;:::-;6281:214;;;;:::o;6501:474::-;6569:6;6577;6626:2;6614:9;6605:7;6601:23;6597:32;6594:119;;;6632:79;;:::i;:::-;6594:119;6752:1;6777:53;6822:7;6813:6;6802:9;6798:22;6777:53;:::i;:::-;6767:63;;6723:117;6879:2;6905:53;6950:7;6941:6;6930:9;6926:22;6905:53;:::i;:::-;6895:63;;6850:118;6501:474;;;;;:::o;6981:118::-;7068:24;7086:5;7068:24;:::i;:::-;7063:3;7056:37;6981:118;;:::o;7105:222::-;7198:4;7236:2;7225:9;7221:18;7213:26;;7249:71;7317:1;7306:9;7302:17;7293:6;7249:71;:::i;:::-;7105:222;;;;:::o;7333:116::-;7403:21;7418:5;7403:21;:::i;:::-;7396:5;7393:32;7383:60;;7439:1;7436;7429:12;7383:60;7333:116;:::o;7455:133::-;7498:5;7536:6;7523:20;7514:29;;7552:30;7576:5;7552:30;:::i;:::-;7455:133;;;;:::o;7594:468::-;7659:6;7667;7716:2;7704:9;7695:7;7691:23;7687:32;7684:119;;;7722:79;;:::i;:::-;7684:119;7842:1;7867:53;7912:7;7903:6;7892:9;7888:22;7867:53;:::i;:::-;7857:63;;7813:117;7969:2;7995:50;8037:7;8028:6;8017:9;8013:22;7995:50;:::i;:::-;7985:60;;7940:115;7594:468;;;;;:::o;8068:619::-;8145:6;8153;8161;8210:2;8198:9;8189:7;8185:23;8181:32;8178:119;;;8216:79;;:::i;:::-;8178:119;8336:1;8361:53;8406:7;8397:6;8386:9;8382:22;8361:53;:::i;:::-;8351:63;;8307:117;8463:2;8489:53;8534:7;8525:6;8514:9;8510:22;8489:53;:::i;:::-;8479:63;;8434:118;8591:2;8617:53;8662:7;8653:6;8642:9;8638:22;8617:53;:::i;:::-;8607:63;;8562:118;8068:619;;;;;:::o;8693:474::-;8761:6;8769;8818:2;8806:9;8797:7;8793:23;8789:32;8786:119;;;8824:79;;:::i;:::-;8786:119;8944:1;8969:53;9014:7;9005:6;8994:9;8990:22;8969:53;:::i;:::-;8959:63;;8915:117;9071:2;9097:53;9142:7;9133:6;9122:9;9118:22;9097:53;:::i;:::-;9087:63;;9042:118;8693:474;;;;;:::o;9173:180::-;9221:77;9218:1;9211:88;9318:4;9315:1;9308:15;9342:4;9339:1;9332:15;9359:320;9403:6;9440:1;9434:4;9430:12;9420:22;;9487:1;9481:4;9477:12;9508:18;9498:81;;9564:4;9556:6;9552:17;9542:27;;9498:81;9626:2;9618:6;9615:14;9595:18;9592:38;9589:84;;9645:18;;:::i;:::-;9589:84;9410:269;9359:320;;;:::o;9685:182::-;9825:34;9821:1;9813:6;9809:14;9802:58;9685:182;:::o;9873:366::-;10015:3;10036:67;10100:2;10095:3;10036:67;:::i;:::-;10029:74;;10112:93;10201:3;10112:93;:::i;:::-;10230:2;10225:3;10221:12;10214:19;;9873:366;;;:::o;10245:419::-;10411:4;10449:2;10438:9;10434:18;10426:26;;10498:9;10492:4;10488:20;10484:1;10473:9;10469:17;10462:47;10526:131;10652:4;10526:131;:::i;:::-;10518:139;;10245:419;;;:::o;10670:180::-;10718:77;10715:1;10708:88;10815:4;10812:1;10805:15;10839:4;10836:1;10829:15;10856:180;10904:77;10901:1;10894:88;11001:4;10998:1;10991:15;11025:4;11022:1;11015:15;11042:185;11082:1;11099:20;11117:1;11099:20;:::i;:::-;11094:25;;11133:20;11151:1;11133:20;:::i;:::-;11128:25;;11172:1;11162:35;;11177:18;;:::i;:::-;11162:35;11219:1;11216;11212:9;11207:14;;11042:185;;;;:::o;11233:234::-;11373:34;11369:1;11361:6;11357:14;11350:58;11442:17;11437:2;11429:6;11425:15;11418:42;11233:234;:::o;11473:366::-;11615:3;11636:67;11700:2;11695:3;11636:67;:::i;:::-;11629:74;;11712:93;11801:3;11712:93;:::i;:::-;11830:2;11825:3;11821:12;11814:19;;11473:366;;;:::o;11845:419::-;12011:4;12049:2;12038:9;12034:18;12026:26;;12098:9;12092:4;12088:20;12084:1;12073:9;12069:17;12062:47;12126:131;12252:4;12126:131;:::i;:::-;12118:139;;11845:419;;;:::o;12270:165::-;12410:17;12406:1;12398:6;12394:14;12387:41;12270:165;:::o;12441:366::-;12583:3;12604:67;12668:2;12663:3;12604:67;:::i;:::-;12597:74;;12680:93;12769:3;12680:93;:::i;:::-;12798:2;12793:3;12789:12;12782:19;;12441:366;;;:::o;12813:419::-;12979:4;13017:2;13006:9;13002:18;12994:26;;13066:9;13060:4;13056:20;13052:1;13041:9;13037:17;13030:47;13094:131;13220:4;13094:131;:::i;:::-;13086:139;;12813:419;;;:::o;13238:147::-;13339:11;13376:3;13361:18;;13238:147;;;;:::o;13391:114::-;;:::o;13511:398::-;13670:3;13691:83;13772:1;13767:3;13691:83;:::i;:::-;13684:90;;13783:93;13872:3;13783:93;:::i;:::-;13901:1;13896:3;13892:11;13885:18;;13511:398;;;:::o;13915:379::-;14099:3;14121:147;14264:3;14121:147;:::i;:::-;14114:154;;14285:3;14278:10;;13915:379;;;:::o;14300:191::-;14340:3;14359:20;14377:1;14359:20;:::i;:::-;14354:25;;14393:20;14411:1;14393:20;:::i;:::-;14388:25;;14436:1;14433;14429:9;14422:16;;14457:3;14454:1;14451:10;14448:36;;;14464:18;;:::i;:::-;14448:36;14300:191;;;;:::o;14497:179::-;14637:31;14633:1;14625:6;14621:14;14614:55;14497:179;:::o;14682:366::-;14824:3;14845:67;14909:2;14904:3;14845:67;:::i;:::-;14838:74;;14921:93;15010:3;14921:93;:::i;:::-;15039:2;15034:3;15030:12;15023:19;;14682:366;;;:::o;15054:419::-;15220:4;15258:2;15247:9;15243:18;15235:26;;15307:9;15301:4;15297:20;15293:1;15282:9;15278:17;15271:47;15335:131;15461:4;15335:131;:::i;:::-;15327:139;;15054:419;;;:::o;15479:154::-;15619:6;15615:1;15607:6;15603:14;15596:30;15479:154;:::o;15639:365::-;15781:3;15802:66;15866:1;15861:3;15802:66;:::i;:::-;15795:73;;15877:93;15966:3;15877:93;:::i;:::-;15995:2;15990:3;15986:12;15979:19;;15639:365;;;:::o;16010:419::-;16176:4;16214:2;16203:9;16199:18;16191:26;;16263:9;16257:4;16253:20;16249:1;16238:9;16234:17;16227:47;16291:131;16417:4;16291:131;:::i;:::-;16283:139;;16010:419;;;:::o;16435:244::-;16575:34;16571:1;16563:6;16559:14;16552:58;16644:27;16639:2;16631:6;16627:15;16620:52;16435:244;:::o;16685:366::-;16827:3;16848:67;16912:2;16907:3;16848:67;:::i;:::-;16841:74;;16924:93;17013:3;16924:93;:::i;:::-;17042:2;17037:3;17033:12;17026:19;;16685:366;;;:::o;17057:419::-;17223:4;17261:2;17250:9;17246:18;17238:26;;17310:9;17304:4;17300:20;17296:1;17285:9;17281:17;17274:47;17338:131;17464:4;17338:131;:::i;:::-;17330:139;;17057:419;;;:::o;17482:179::-;17622:31;17618:1;17610:6;17606:14;17599:55;17482:179;:::o;17667:366::-;17809:3;17830:67;17894:2;17889:3;17830:67;:::i;:::-;17823:74;;17906:93;17995:3;17906:93;:::i;:::-;18024:2;18019:3;18015:12;18008:19;;17667:366;;;:::o;18039:419::-;18205:4;18243:2;18232:9;18228:18;18220:26;;18292:9;18286:4;18282:20;18278:1;18267:9;18263:17;18256:47;18320:131;18446:4;18320:131;:::i;:::-;18312:139;;18039:419;;;:::o;18464:348::-;18504:7;18527:20;18545:1;18527:20;:::i;:::-;18522:25;;18561:20;18579:1;18561:20;:::i;:::-;18556:25;;18749:1;18681:66;18677:74;18674:1;18671:81;18666:1;18659:9;18652:17;18648:105;18645:131;;;18756:18;;:::i;:::-;18645:131;18804:1;18801;18797:9;18786:20;;18464:348;;;;:::o;18818:223::-;18958:34;18954:1;18946:6;18942:14;18935:58;19027:6;19022:2;19014:6;19010:15;19003:31;18818:223;:::o;19047:366::-;19189:3;19210:67;19274:2;19269:3;19210:67;:::i;:::-;19203:74;;19286:93;19375:3;19286:93;:::i;:::-;19404:2;19399:3;19395:12;19388:19;;19047:366;;;:::o;19419:419::-;19585:4;19623:2;19612:9;19608:18;19600:26;;19672:9;19666:4;19662:20;19658:1;19647:9;19643:17;19636:47;19700:131;19826:4;19700:131;:::i;:::-;19692:139;;19419:419;;;:::o;19844:240::-;19984:34;19980:1;19972:6;19968:14;19961:58;20053:23;20048:2;20040:6;20036:15;20029:48;19844:240;:::o;20090:366::-;20232:3;20253:67;20317:2;20312:3;20253:67;:::i;:::-;20246:74;;20329:93;20418:3;20329:93;:::i;:::-;20447:2;20442:3;20438:12;20431:19;;20090:366;;;:::o;20462:419::-;20628:4;20666:2;20655:9;20651:18;20643:26;;20715:9;20709:4;20705:20;20701:1;20690:9;20686:17;20679:47;20743:131;20869:4;20743:131;:::i;:::-;20735:139;;20462:419;;;:::o;20887:239::-;21027:34;21023:1;21015:6;21011:14;21004:58;21096:22;21091:2;21083:6;21079:15;21072:47;20887:239;:::o;21132:366::-;21274:3;21295:67;21359:2;21354:3;21295:67;:::i;:::-;21288:74;;21371:93;21460:3;21371:93;:::i;:::-;21489:2;21484:3;21480:12;21473:19;;21132:366;;;:::o;21504:419::-;21670:4;21708:2;21697:9;21693:18;21685:26;;21757:9;21751:4;21747:20;21743:1;21732:9;21728:17;21721:47;21785:131;21911:4;21785:131;:::i;:::-;21777:139;;21504:419;;;:::o;21929:225::-;22069:34;22065:1;22057:6;22053:14;22046:58;22138:8;22133:2;22125:6;22121:15;22114:33;21929:225;:::o;22160:366::-;22302:3;22323:67;22387:2;22382:3;22323:67;:::i;:::-;22316:74;;22399:93;22488:3;22399:93;:::i;:::-;22517:2;22512:3;22508:12;22501:19;;22160:366;;;:::o;22532:419::-;22698:4;22736:2;22725:9;22721:18;22713:26;;22785:9;22779:4;22775:20;22771:1;22760:9;22756:17;22749:47;22813:131;22939:4;22813:131;:::i;:::-;22805:139;;22532:419;;;:::o;22957:177::-;23097:29;23093:1;23085:6;23081:14;23074:53;22957:177;:::o;23140:366::-;23282:3;23303:67;23367:2;23362:3;23303:67;:::i;:::-;23296:74;;23379:93;23468:3;23379:93;:::i;:::-;23497:2;23492:3;23488:12;23481:19;;23140:366;;;:::o;23512:419::-;23678:4;23716:2;23705:9;23701:18;23693:26;;23765:9;23759:4;23755:20;23751:1;23740:9;23736:17;23729:47;23793:131;23919:4;23793:131;:::i;:::-;23785:139;;23512:419;;;:::o;23937:223::-;24077:34;24073:1;24065:6;24061:14;24054:58;24146:6;24141:2;24133:6;24129:15;24122:31;23937:223;:::o;24166:366::-;24308:3;24329:67;24393:2;24388:3;24329:67;:::i;:::-;24322:74;;24405:93;24494:3;24405:93;:::i;:::-;24523:2;24518:3;24514:12;24507:19;;24166:366;;;:::o;24538:419::-;24704:4;24742:2;24731:9;24727:18;24719:26;;24791:9;24785:4;24781:20;24777:1;24766:9;24762:17;24755:47;24819:131;24945:4;24819:131;:::i;:::-;24811:139;;24538:419;;;:::o;24963:221::-;25103:34;25099:1;25091:6;25087:14;25080:58;25172:4;25167:2;25159:6;25155:15;25148:29;24963:221;:::o;25190:366::-;25332:3;25353:67;25417:2;25412:3;25353:67;:::i;:::-;25346:74;;25429:93;25518:3;25429:93;:::i;:::-;25547:2;25542:3;25538:12;25531:19;;25190:366;;;:::o;25562:419::-;25728:4;25766:2;25755:9;25751:18;25743:26;;25815:9;25809:4;25805:20;25801:1;25790:9;25786:17;25779:47;25843:131;25969:4;25843:131;:::i;:::-;25835:139;;25562:419;;;:::o;25987:224::-;26127:34;26123:1;26115:6;26111:14;26104:58;26196:7;26191:2;26183:6;26179:15;26172:32;25987:224;:::o;26217:366::-;26359:3;26380:67;26444:2;26439:3;26380:67;:::i;:::-;26373:74;;26456:93;26545:3;26456:93;:::i;:::-;26574:2;26569:3;26565:12;26558:19;;26217:366;;;:::o;26589:419::-;26755:4;26793:2;26782:9;26778:18;26770:26;;26842:9;26836:4;26832:20;26828:1;26817:9;26813:17;26806:47;26870:131;26996:4;26870:131;:::i;:::-;26862:139;;26589:419;;;:::o;27014:222::-;27154:34;27150:1;27142:6;27138:14;27131:58;27223:5;27218:2;27210:6;27206:15;27199:30;27014:222;:::o;27242:366::-;27384:3;27405:67;27469:2;27464:3;27405:67;:::i;:::-;27398:74;;27481:93;27570:3;27481:93;:::i;:::-;27599:2;27594:3;27590:12;27583:19;;27242:366;;;:::o;27614:419::-;27780:4;27818:2;27807:9;27803:18;27795:26;;27867:9;27861:4;27857:20;27853:1;27842:9;27838:17;27831:47;27895:131;28021:4;27895:131;:::i;:::-;27887:139;;27614:419;;;:::o;28039:172::-;28179:24;28175:1;28167:6;28163:14;28156:48;28039:172;:::o;28217:366::-;28359:3;28380:67;28444:2;28439:3;28380:67;:::i;:::-;28373:74;;28456:93;28545:3;28456:93;:::i;:::-;28574:2;28569:3;28565:12;28558:19;;28217:366;;;:::o;28589:419::-;28755:4;28793:2;28782:9;28778:18;28770:26;;28842:9;28836:4;28832:20;28828:1;28817:9;28813:17;28806:47;28870:131;28996:4;28870:131;:::i;:::-;28862:139;;28589:419;;;:::o;29014:240::-;29154:34;29150:1;29142:6;29138:14;29131:58;29223:23;29218:2;29210:6;29206:15;29199:48;29014:240;:::o;29260:366::-;29402:3;29423:67;29487:2;29482:3;29423:67;:::i;:::-;29416:74;;29499:93;29588:3;29499:93;:::i;:::-;29617:2;29612:3;29608:12;29601:19;;29260:366;;;:::o;29632:419::-;29798:4;29836:2;29825:9;29821:18;29813:26;;29885:9;29879:4;29875:20;29871:1;29860:9;29856:17;29849:47;29913:131;30039:4;29913:131;:::i;:::-;29905:139;;29632:419;;;:::o;30057:241::-;30197:34;30193:1;30185:6;30181:14;30174:58;30266:24;30261:2;30253:6;30249:15;30242:49;30057:241;:::o;30304:366::-;30446:3;30467:67;30531:2;30526:3;30467:67;:::i;:::-;30460:74;;30543:93;30632:3;30543:93;:::i;:::-;30661:2;30656:3;30652:12;30645:19;;30304:366;;;:::o;30676:419::-;30842:4;30880:2;30869:9;30865:18;30857:26;;30929:9;30923:4;30919:20;30915:1;30904:9;30900:17;30893:47;30957:131;31083:4;30957:131;:::i;:::-;30949:139;;30676:419;;;:::o;31101:176::-;31133:1;31150:20;31168:1;31150:20;:::i;:::-;31145:25;;31184:20;31202:1;31184:20;:::i;:::-;31179:25;;31223:1;31213:35;;31228:18;;:::i;:::-;31213:35;31269:1;31266;31262:9;31257:14;;31101:176;;;;:::o;31283:223::-;31423:34;31419:1;31411:6;31407:14;31400:58;31492:6;31487:2;31479:6;31475:15;31468:31;31283:223;:::o;31512:366::-;31654:3;31675:67;31739:2;31734:3;31675:67;:::i;:::-;31668:74;;31751:93;31840:3;31751:93;:::i;:::-;31869:2;31864:3;31860:12;31853:19;;31512:366;;;:::o;31884:419::-;32050:4;32088:2;32077:9;32073:18;32065:26;;32137:9;32131:4;32127:20;32123:1;32112:9;32108:17;32101:47;32165:131;32291:4;32165:131;:::i;:::-;32157:139;;31884:419;;;:::o;32309:194::-;32349:4;32369:20;32387:1;32369:20;:::i;:::-;32364:25;;32403:20;32421:1;32403:20;:::i;:::-;32398:25;;32447:1;32444;32440:9;32432:17;;32471:1;32465:4;32462:11;32459:37;;;32476:18;;:::i;:::-;32459:37;32309:194;;;;:::o;32509:102::-;32551:8;32598:5;32595:1;32591:13;32570:34;;32509:102;;;:::o;32617:848::-;32678:5;32685:4;32709:6;32700:15;;32733:5;32724:14;;32747:712;32768:1;32758:8;32755:15;32747:712;;;32863:4;32858:3;32854:14;32848:4;32845:24;32842:50;;;32872:18;;:::i;:::-;32842:50;32922:1;32912:8;32908:16;32905:451;;;33337:4;33330:5;33326:16;33317:25;;32905:451;33387:4;33381;33377:15;33369:23;;33417:32;33440:8;33417:32;:::i;:::-;33405:44;;32747:712;;;32617:848;;;;;;;:::o;33471:1073::-;33525:5;33716:8;33706:40;;33737:1;33728:10;;33739:5;;33706:40;33765:4;33755:36;;33782:1;33773:10;;33784:5;;33755:36;33851:4;33899:1;33894:27;;;;33935:1;33930:191;;;;33844:277;;33894:27;33912:1;33903:10;;33914:5;;;33930:191;33975:3;33965:8;33962:17;33959:43;;;33982:18;;:::i;:::-;33959:43;34031:8;34028:1;34024:16;34015:25;;34066:3;34059:5;34056:14;34053:40;;;34073:18;;:::i;:::-;34053:40;34106:5;;;33844:277;;34230:2;34220:8;34217:16;34211:3;34205:4;34202:13;34198:36;34180:2;34170:8;34167:16;34162:2;34156:4;34153:12;34149:35;34133:111;34130:246;;;34286:8;34280:4;34276:19;34267:28;;34321:3;34314:5;34311:14;34308:40;;;34328:18;;:::i;:::-;34308:40;34361:5;;34130:246;34401:42;34439:3;34429:8;34423:4;34420:1;34401:42;:::i;:::-;34386:57;;;;34475:4;34470:3;34466:14;34459:5;34456:25;34453:51;;;34484:18;;:::i;:::-;34453:51;34533:4;34526:5;34522:16;34513:25;;33471:1073;;;;;;:::o;34550:281::-;34608:5;34632:23;34650:4;34632:23;:::i;:::-;34624:31;;34676:25;34692:8;34676:25;:::i;:::-;34664:37;;34720:104;34757:66;34747:8;34741:4;34720:104;:::i;:::-;34711:113;;34550:281;;;;:::o;34837:180::-;34885:77;34882:1;34875:88;34982:4;34979:1;34972:15;35006:4;35003:1;34996:15;35023:180;35071:77;35068:1;35061:88;35168:4;35165:1;35158:15;35192:4;35189:1;35182:15;35209:143;35266:5;35297:6;35291:13;35282:22;;35313:33;35340:5;35313:33;:::i;:::-;35209:143;;;;:::o;35358:351::-;35428:6;35477:2;35465:9;35456:7;35452:23;35448:32;35445:119;;;35483:79;;:::i;:::-;35445:119;35603:1;35628:64;35684:7;35675:6;35664:9;35660:22;35628:64;:::i;:::-;35618:74;;35574:128;35358:351;;;;:::o;35715:85::-;35760:7;35789:5;35778:16;;35715:85;;;:::o;35806:158::-;35864:9;35897:61;35915:42;35924:32;35950:5;35924:32;:::i;:::-;35915:42;:::i;:::-;35897:61;:::i;:::-;35884:74;;35806:158;;;:::o;35970:147::-;36065:45;36104:5;36065:45;:::i;:::-;36060:3;36053:58;35970:147;;:::o;36123:114::-;36190:6;36224:5;36218:12;36208:22;;36123:114;;;:::o;36243:184::-;36342:11;36376:6;36371:3;36364:19;36416:4;36411:3;36407:14;36392:29;;36243:184;;;;:::o;36433:132::-;36500:4;36523:3;36515:11;;36553:4;36548:3;36544:14;36536:22;;36433:132;;;:::o;36571:108::-;36648:24;36666:5;36648:24;:::i;:::-;36643:3;36636:37;36571:108;;:::o;36685:179::-;36754:10;36775:46;36817:3;36809:6;36775:46;:::i;:::-;36853:4;36848:3;36844:14;36830:28;;36685:179;;;;:::o;36870:113::-;36940:4;36972;36967:3;36963:14;36955:22;;36870:113;;;:::o;37019:732::-;37138:3;37167:54;37215:5;37167:54;:::i;:::-;37237:86;37316:6;37311:3;37237:86;:::i;:::-;37230:93;;37347:56;37397:5;37347:56;:::i;:::-;37426:7;37457:1;37442:284;37467:6;37464:1;37461:13;37442:284;;;37543:6;37537:13;37570:63;37629:3;37614:13;37570:63;:::i;:::-;37563:70;;37656:60;37709:6;37656:60;:::i;:::-;37646:70;;37502:224;37489:1;37486;37482:9;37477:14;;37442:284;;;37446:14;37742:3;37735:10;;37143:608;;;37019:732;;;;:::o;37757:831::-;38020:4;38058:3;38047:9;38043:19;38035:27;;38072:71;38140:1;38129:9;38125:17;38116:6;38072:71;:::i;:::-;38153:80;38229:2;38218:9;38214:18;38205:6;38153:80;:::i;:::-;38280:9;38274:4;38270:20;38265:2;38254:9;38250:18;38243:48;38308:108;38411:4;38402:6;38308:108;:::i;:::-;38300:116;;38426:72;38494:2;38483:9;38479:18;38470:6;38426:72;:::i;:::-;38508:73;38576:3;38565:9;38561:19;38552:6;38508:73;:::i;:::-;37757:831;;;;;;;;:::o;38594:220::-;38734:34;38730:1;38722:6;38718:14;38711:58;38803:3;38798:2;38790:6;38786:15;38779:28;38594:220;:::o;38820:366::-;38962:3;38983:67;39047:2;39042:3;38983:67;:::i;:::-;38976:74;;39059:93;39148:3;39059:93;:::i;:::-;39177:2;39172:3;39168:12;39161:19;;38820:366;;;:::o;39192:419::-;39358:4;39396:2;39385:9;39381:18;39373:26;;39445:9;39439:4;39435:20;39431:1;39420:9;39416:17;39409:47;39473:131;39599:4;39473:131;:::i;:::-;39465:139;;39192:419;;;:::o

Swarm Source

ipfs://238c583df2041e7197d83a6935145e031d7b852d2f93aa8aa9f696c2264bf8b5
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.