ETH Price: $3,462.82 (+5.24%)

Token

FYRE Bot (FYRE)
 

Overview

Max Total Supply

1,000,000,000 FYRE

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,624,812.406203096705794048 FYRE

Value
$0.00
0x498ed95a126b8a90285b57b3993995908ac376f5
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:
FYREBOT

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-28
*/

//FYRE Bot is a revolutionary AI enhanced trading bot for DeFI

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity 0.8.15;

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 FYREBOT is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address public tokenDevelopmentAddress;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    
    bool private gasLimitActive = true;
    uint256 private constant gasPriceLimit = 70 * 1 gwei; // do not allow over x gwei for launch
    
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevelopmentFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevelopmentFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDevelopment;

    // 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 DevelopmentWalletUpdated(address indexed newWallet, address indexed oldWallet);

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

    event BuyBackTriggered(uint256 amount);
    
    event OwnerForcedSwapBack(uint256 timestamp);

    constructor() ERC20("FYRE Bot", "FYRE") {
        
        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 = 10;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevelopmentFee = 0;


        uint256 _sellMarketingFee = 20;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevelopmentFee = 0;

        
        uint256 totalSupply = 1 * 1e9 * 1e18;
        
        maxWallet = totalSupply * 2 / 100; // 2% Max wallet
        maxTransactionAmount = totalSupply * 2 / 100; // 2% maxTransactionAmountTxn
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevelopmentFee = _buyDevelopmentFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevelopmentFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevelopmentFee = _sellDevelopmentFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevelopmentFee;
        
    	marketingWallet = address(msg.sender); // set as marketing wallet
        tokenDevelopmentAddress = address(msg.sender); // set as Development wallet (before Development is available)

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        /*
            _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 {

  	}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        gasLimitActive = false;
        transferDelayEnabled = 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 updateMaxAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.5%");
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 1 / 100)/1e18, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * (10**18);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _DevelopmentFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevelopmentFee = _DevelopmentFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevelopmentFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _DevelopmentFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevelopmentFee = _DevelopmentFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevelopmentFee;
        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 setAutomatedMarketMakerPair(address pair, bool value) external 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 updateDevelopmentAddress(address newWallet) external onlyOwner {
        emit DevelopmentWalletUpdated(newWallet, tokenDevelopmentAddress);
        tokenDevelopmentAddress = newWallet;
    }
    

    function isExcludedFromFees(address account) external view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(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.");
                }
                
                // only use to prevent sniper buys in the first blocks.
                if (gasLimitActive && automatedMarketMakerPairs[from]) {
                    require(tx.gasprice <= gasPriceLimit, "Gas price exceeds limit.");
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet");
                } 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet");
                }
            }
        }
        
		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;
                tokensForDevelopment += fees * sellDevelopmentFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDevelopment += fees * buyDevelopmentFee / 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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDevelopment;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        // prevent overly large contract sells.
        if(contractBalance >= swapTokensAtAmount * 5){
            contractBalance = swapTokensAtAmount * 5;
        }
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDevelopment = ethBalance.mul(tokensForDevelopment).div(totalTokensToSwap);
        
        
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment;
        
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDevelopment = 0;

        
        (bool success,) = address(tokenDevelopmentAddress).call{value: ethForDevelopment}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");       
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyBackTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevelopmentWalletUpdated","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":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":"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":"buyDevelopmentFee","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"sellDevelopmentFee","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":"tokenDevelopmentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDevelopment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_DevelopmentFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevelopmentAddress","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":"updateMaxAmount","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":"_DevelopmentFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600b60036101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200009857600080fd5b506040518060400160405280600881526020017f4659524520426f740000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4659524500000000000000000000000000000000000000000000000000000000815250816003908162000116919062000de6565b50806004908162000128919062000de6565b50505060006200013d6200063960201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002088160016200064160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000288573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ae919062000f37565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000316573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033c919062000f37565b6040518363ffffffff1660e01b81526004016200035b92919062000f7a565b6020604051808303816000875af11580156200037b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a1919062000f37565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003e960a05160016200064160201b60201c565b620003fe60a05160016200073e60201b60201c565b6000600a905060008060006014905060008060006b033b2e3c9fd0803ce80000009050606460028262000432919062000fd6565b6200043e919062001066565b600a81905550606460028262000455919062000fd6565b62000461919062001066565b60088190555061271060058262000479919062000fd6565b62000485919062001066565b60098190555086600f819055508560108190555084601181905550601154601054600f54620004b591906200109e565b620004c191906200109e565b600e81905550836013819055508260148190555081601581905550601554601454601354620004f191906200109e565b620004fd91906200109e565b60128190555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005a762000599620007df60201b60201c565b60016200080960201b60201c565b620005ba3060016200080960201b60201c565b620005cf61dead60016200080960201b60201c565b620005f1620005e3620007df60201b60201c565b60016200064160201b60201c565b620006043060016200064160201b60201c565b6200061961dead60016200064160201b60201c565b6200062b33826200095660201b60201c565b5050505050505050620012ca565b600033905090565b620006516200063960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006da906200115c565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008196200063960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a2906200115c565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200094a91906200119b565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009bf9062001208565b60405180910390fd5b620009dc6000838362000b0460201b60201c565b620009f88160025462000b0960201b620025ca1790919060201c565b60028190555062000a56816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b0960201b620025ca1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af891906200123b565b60405180910390a35050565b505050565b600080828462000b1a91906200109e565b90508381101562000b62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b5990620012a8565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bee57607f821691505b60208210810362000c045762000c0362000ba6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c6e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c2f565b62000c7a868362000c2f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cc762000cc162000cbb8462000c92565b62000c9c565b62000c92565b9050919050565b6000819050919050565b62000ce38362000ca6565b62000cfb62000cf28262000cce565b84845462000c3c565b825550505050565b600090565b62000d1262000d03565b62000d1f81848462000cd8565b505050565b5b8181101562000d475762000d3b60008262000d08565b60018101905062000d25565b5050565b601f82111562000d965762000d608162000c0a565b62000d6b8462000c1f565b8101602085101562000d7b578190505b62000d9362000d8a8562000c1f565b83018262000d24565b50505b505050565b600082821c905092915050565b600062000dbb6000198460080262000d9b565b1980831691505092915050565b600062000dd6838362000da8565b9150826002028217905092915050565b62000df18262000b6c565b67ffffffffffffffff81111562000e0d5762000e0c62000b77565b5b62000e19825462000bd5565b62000e2682828562000d4b565b600060209050601f83116001811462000e5e576000841562000e49578287015190505b62000e55858262000dc8565b86555062000ec5565b601f19841662000e6e8662000c0a565b60005b8281101562000e985784890151825560018201915060208501945060208101905062000e71565b8683101562000eb8578489015162000eb4601f89168262000da8565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000eff8262000ed2565b9050919050565b62000f118162000ef2565b811462000f1d57600080fd5b50565b60008151905062000f318162000f06565b92915050565b60006020828403121562000f505762000f4f62000ecd565b5b600062000f608482850162000f20565b91505092915050565b62000f748162000ef2565b82525050565b600060408201905062000f91600083018562000f69565b62000fa0602083018462000f69565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fe38262000c92565b915062000ff08362000c92565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200102c576200102b62000fa7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010738262000c92565b9150620010808362000c92565b92508262001093576200109262001037565b5b828204905092915050565b6000620010ab8262000c92565b9150620010b88362000c92565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620010f057620010ef62000fa7565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001144602083620010fb565b915062001151826200110c565b602082019050919050565b60006020820190508181036000830152620011778162001135565b9050919050565b60008115159050919050565b62001195816200117e565b82525050565b6000602082019050620011b260008301846200118a565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620011f0601f83620010fb565b9150620011fd82620011b8565b602082019050919050565b600060208201905081810360008301526200122381620011e1565b9050919050565b620012358162000c92565b82525050565b60006020820190506200125260008301846200122a565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001290601b83620010fb565b91506200129d8262001258565b602082019050919050565b60006020820190508181036000830152620012c38162001281565b9050919050565b60805160a05161548362001328600039600081816110b601528181611a580152612c61015260008181610edb01528181612c0901528181613d2c01528181613e0d01528181613e3401528181613ed00152613ef701526154836000f3fe6080604052600436106103395760003560e01c80638da5cb5b116101ab578063c18bc195116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610c35578063f2fde38b14610c60578063f637434214610c89578063f8b45b0514610cb457610340565b8063e2f4560514610bb4578063e884f26014610bdf578063ef8700e514610c0a57610340565b8063d257b34f116100d1578063d257b34f14610ae4578063d85ba06314610b21578063da64192114610b4c578063dd62ed3e14610b7757610340565b8063c18bc19514610a65578063c876d0b914610a8e578063c8c8ebe414610ab957610340565b8063a9059cbb11610164578063b62496f51161013e578063b62496f5146109ab578063bbc0c742146109e8578063c024666814610a13578063c17b5b8c14610a3c57610340565b8063a9059cbb1461091a578063aacebbe314610957578063b20414111461098057610340565b80638da5cb5b1461080a5780639213691314610835578063924de9b71461086057806395d89b41146108895780639a7a23d6146108b4578063a457c2d7146108dd57610340565b806349bd5a5e11610285578063715018a61161022357806375f0a874116101fd57806375f0a874146107745780637bce5a041461079f5780638095d564146107ca5780638a8c523c146107f357610340565b8063715018a614610709578063751039fc146107205780637571336a1461074b57610340565b8063694d9d171161025f578063694d9d171461064d5780636a486a8e146106765780636ddd1713146106a157806370a08231146106cc57610340565b806349bd5a5e146105ba5780634a62bb65146105e55780634fbee1931461061057610340565b806318a94cf1116102f257806323b872dd116102cc57806323b872dd146104ea57806327c8f83514610527578063313ce56714610552578063395093511461057d57610340565b806318a94cf1146104695780631a8145bb146104945780631f3fed8f146104bf57610340565b806306fdde0314610345578063095ea7b314610370578063106b5da1146103ad57806310d5de53146103d65780631694505e1461041357806318160ddd1461043e57610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610cdf565b60405161036791906140a7565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190614162565b610d71565b6040516103a491906141bd565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906141d8565b610d8f565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190614205565b610eb9565b60405161040a91906141bd565b60405180910390f35b34801561041f57600080fd5b50610428610ed9565b6040516104359190614291565b60405180910390f35b34801561044a57600080fd5b50610453610efd565b60405161046091906142bb565b60405180910390f35b34801561047557600080fd5b5061047e610f07565b60405161048b91906142bb565b60405180910390f35b3480156104a057600080fd5b506104a9610f0d565b6040516104b691906142bb565b60405180910390f35b3480156104cb57600080fd5b506104d4610f13565b6040516104e191906142bb565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c91906142d6565b610f19565b60405161051e91906141bd565b60405180910390f35b34801561053357600080fd5b5061053c610ff2565b6040516105499190614338565b60405180910390f35b34801561055e57600080fd5b50610567610ff8565b604051610574919061436f565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190614162565b611001565b6040516105b191906141bd565b60405180910390f35b3480156105c657600080fd5b506105cf6110b4565b6040516105dc9190614338565b60405180910390f35b3480156105f157600080fd5b506105fa6110d8565b60405161060791906141bd565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190614205565b6110eb565b60405161064491906141bd565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190614205565b611141565b005b34801561068257600080fd5b5061068b611298565b60405161069891906142bb565b60405180910390f35b3480156106ad57600080fd5b506106b661129e565b6040516106c391906141bd565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190614205565b6112b1565b60405161070091906142bb565b60405180910390f35b34801561071557600080fd5b5061071e6112f9565b005b34801561072c57600080fd5b50610735611451565b60405161074291906141bd565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d91906143b6565b611542565b005b34801561078057600080fd5b50610789611634565b6040516107969190614338565b60405180910390f35b3480156107ab57600080fd5b506107b461165a565b6040516107c191906142bb565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec91906143f6565b611660565b005b3480156107ff57600080fd5b5061080861177a565b005b34801561081657600080fd5b5061081f611849565b60405161082c9190614338565b60405180910390f35b34801561084157600080fd5b5061084a611873565b60405161085791906142bb565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190614449565b611879565b005b34801561089557600080fd5b5061089e61192d565b6040516108ab91906140a7565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d691906143b6565b6119bf565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190614162565b611af2565b60405161091191906141bd565b60405180910390f35b34801561092657600080fd5b50610941600480360381019061093c9190614162565b611bbf565b60405161094e91906141bd565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190614205565b611bdd565b005b34801561098c57600080fd5b50610995611d34565b6040516109a291906142bb565b60405180910390f35b3480156109b757600080fd5b506109d260048036038101906109cd9190614205565b611d3a565b6040516109df91906141bd565b60405180910390f35b3480156109f457600080fd5b506109fd611d5a565b604051610a0a91906141bd565b60405180910390f35b348015610a1f57600080fd5b50610a3a6004803603810190610a3591906143b6565b611d6d565b005b348015610a4857600080fd5b50610a636004803603810190610a5e91906143f6565b611ead565b005b348015610a7157600080fd5b50610a8c6004803603810190610a8791906141d8565b611fc7565b005b348015610a9a57600080fd5b50610aa36120ef565b604051610ab091906141bd565b60405180910390f35b348015610ac557600080fd5b50610ace612102565b604051610adb91906142bb565b60405180910390f35b348015610af057600080fd5b50610b0b6004803603810190610b0691906141d8565b612108565b604051610b1891906141bd565b60405180910390f35b348015610b2d57600080fd5b50610b36612278565b604051610b4391906142bb565b60405180910390f35b348015610b5857600080fd5b50610b6161227e565b604051610b6e9190614338565b60405180910390f35b348015610b8357600080fd5b50610b9e6004803603810190610b999190614476565b6122a4565b604051610bab91906142bb565b60405180910390f35b348015610bc057600080fd5b50610bc961232b565b604051610bd691906142bb565b60405180910390f35b348015610beb57600080fd5b50610bf4612331565b604051610c0191906141bd565b60405180910390f35b348015610c1657600080fd5b50610c1f6123ec565b604051610c2c91906142bb565b60405180910390f35b348015610c4157600080fd5b50610c4a6123f2565b604051610c5791906142bb565b60405180910390f35b348015610c6c57600080fd5b50610c876004803603810190610c829190614205565b6123f8565b005b348015610c9557600080fd5b50610c9e6125be565b604051610cab91906142bb565b60405180910390f35b348015610cc057600080fd5b50610cc96125c4565b604051610cd691906142bb565b60405180910390f35b606060038054610cee906144e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a906144e5565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b5050505050905090565b6000610d85610d7e612628565b8484612630565b6001905092915050565b610d97612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90614562565b60405180910390fd5b670de0b6b3a76400006103e86005610e3c610efd565b610e4691906145b1565b610e50919061463a565b610e5a919061463a565b811015610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906146dd565b60405180910390fd5b670de0b6b3a764000081610eb091906145b1565b60088190555050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60155481565b60175481565b60165481565b6000610f268484846127f9565b610fe784610f32612628565b610fe28560405180606001604052806028815260200161540160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f98612628565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fe9092919063ffffffff16565b612630565b600190509392505050565b61dead81565b60006012905090565b60006110aa61100e612628565b846110a5856001600061101f612628565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ca90919063ffffffff16565b612630565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611149612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614562565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f94cc1498503be9a145caf3e96f856665f29cf9b26c7179a93fbe1c1e5f56a0fd60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611301612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790614562565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061145b612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190614562565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506000600b60036101000a81548160ff0219169083151502179055506000600d60006101000a81548160ff0219169083151502179055506001905090565b61154a612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090614562565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b611668612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee90614562565b60405180910390fd5b82600f819055508160108190555080601181905550601154601054600f5461171f91906146fd565b61172991906146fd565b600e819055506019600e541115611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c9061479f565b60405180910390fd5b505050565b611782612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890614562565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b611881612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790614562565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461193c906144e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611968906144e5565b80156119b55780601f1061198a576101008083540402835291602001916119b5565b820191906000526020600020905b81548152906001019060200180831161199857829003601f168201915b5050505050905090565b6119c7612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90614562565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90614831565b60405180910390fd5b611aee8282613562565b5050565b6000611bb5611aff612628565b84611bb0856040518060600160405280602581526020016154296025913960016000611b29612628565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fe9092919063ffffffff16565b612630565b6001905092915050565b6000611bd3611bcc612628565b84846127f9565b6001905092915050565b611be5612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90614562565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611d75612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90614562565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ea191906141bd565b60405180910390a25050565b611eb5612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90614562565b60405180910390fd5b826013819055508160148190555080601581905550601554601454601354611f6c91906146fd565b611f7691906146fd565b60128190555060196012541115611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb99061479f565b60405180910390fd5b505050565b611fcf612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461205e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205590614562565b60405180910390fd5b670de0b6b3a764000060646001612073610efd565b61207d91906145b1565b612087919061463a565b612091919061463a565b81116120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c9906148c3565b60405180910390fd5b670de0b6b3a7640000816120e691906145b1565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000612112612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219890614562565b60405180910390fd5b620186a060016121af610efd565b6121b991906145b1565b6121c3919061463a565b821015612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614955565b60405180910390fd5b6103e86005612212610efd565b61221c91906145b1565b612226919061463a565b821115612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f906149e7565b60405180910390fd5b8160098190555060019050919050565b600e5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061233b612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190614562565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60185481565b60105481565b612400612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461248f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248690614562565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590614a79565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b600a5481565b60008082846125d991906146fd565b90508381101561261e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261590614ae5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361269f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269690614b77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361270e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270590614c09565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127ec91906142bb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285f90614c9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90614d2d565b60405180910390fd5b600081036128f0576128eb83836000613603565b6134f9565b600b60009054906101000a900460ff16156130215761290d611849565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561297b575061294b611849565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129b45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129ee575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a075750600560149054906101000a900460ff16155b1561302057600b60019054906101000a900460ff16612b0157601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ac15750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af790614d99565b60405180910390fd5b5b600b60039054906101000a900460ff168015612b665750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bb45764104c533c003a1115612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa90614e05565b60405180910390fd5b5b600d60009054906101000a900460ff1615612d7c57612bd1611849565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c5857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cb057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d7b5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2d90614ebd565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e1f5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8157600a54612e30836112b1565b82612e3b91906146fd565b1115612e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7390614f29565b60405180910390fd5b61301f565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f245750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f7357600854811115612f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6590614fbb565b60405180910390fd5b61301e565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661301d57600a54612fd0836112b1565b82612fdb91906146fd565b111561301c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301390614f29565b60405180910390fd5b5b5b5b5b5b600061302c306112b1565b9050600060095482101590508080156130515750600b60029054906101000a900460ff165b801561306a5750600560149054906101000a900460ff16155b80156130c05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131165750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561316c5750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b0576001600560146101000a81548160ff021916908315150217905550613194613896565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806132665750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561327057600090505b600081156134e957601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132d357506000601254115b156133a05761330060646132f260125488613b7a90919063ffffffff16565b613bf490919063ffffffff16565b90506012546014548261331391906145b1565b61331d919061463a565b6017600082825461332e91906146fd565b925050819055506012546015548261334691906145b1565b613350919061463a565b6018600082825461336191906146fd565b925050819055506012546013548261337991906145b1565b613383919061463a565b6016600082825461339491906146fd565b925050819055506134c5565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133fb57506000600e54115b156134c457613428606461341a600e5488613b7a90919063ffffffff16565b613bf490919063ffffffff16565b9050600e546010548261343b91906145b1565b613445919061463a565b6017600082825461345691906146fd565b92505081905550600e546011548261346e91906145b1565b613478919061463a565b6018600082825461348991906146fd565b92505081905550600e54600f54826134a191906145b1565b6134ab919061463a565b601660008282546134bc91906146fd565b925050819055505b5b60008111156134da576134d9873083613603565b5b80856134e69190614fdb565b94505b6134f4878787613603565b505050505b505050565b6000838311158290613546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353d91906140a7565b60405180910390fd5b50600083856135559190614fdb565b9050809150509392505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366990614c9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036136e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136d890614d2d565b60405180910390fd5b6136ec838383613c3e565b613757816040518060600160405280602681526020016153db602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fe9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506137ea816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ca90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161388991906142bb565b60405180910390a3505050565b60006138a1306112b1565b905060006018546016546017546138b891906146fd565b6138c291906146fd565b905060008214806138d35750600081145b156138df575050613b78565b60056009546138ee91906145b1565b821061390657600560095461390391906145b1565b91505b60006002826017548561391991906145b1565b613923919061463a565b61392d919061463a565b905060006139448285613c4390919063ffffffff16565b9050600047905061395482613c8d565b60006139698247613c4390919063ffffffff16565b905060006139948661398660165485613b7a90919063ffffffff16565b613bf490919063ffffffff16565b905060006139bf876139b160185486613b7a90919063ffffffff16565b613bf490919063ffffffff16565b905060008183856139d09190614fdb565b6139da9190614fdb565b90506000601781905550600060168190555060006018819055506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613a3c90615040565b60006040518083038185875af1925050503d8060008114613a79576040519150601f19603f3d011682016040523d82523d6000602084013e613a7e565b606091505b50509050600088118015613a925750600082115b15613adf57613aa18883613eca565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618783601754604051613ad693929190615055565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b2590615040565b60006040518083038185875af1925050503d8060008114613b62576040519150601f19603f3d011682016040523d82523d6000602084013e613b67565b606091505b505080915050505050505050505050505b565b6000808303613b8c5760009050613bee565b60008284613b9a91906145b1565b9050828482613ba9919061463a565b14613be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be0906150fe565b60405180910390fd5b809150505b92915050565b6000613c3683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613fab565b905092915050565b505050565b6000613c8583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506134fe565b905092915050565b6000600267ffffffffffffffff811115613caa57613ca961511e565b5b604051908082528060200260200182016040528015613cd85781602001602082028036833780820191505090505b5090503081600081518110613cf057613cef61514d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613db99190615191565b81600181518110613dcd57613dcc61514d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e32307f000000000000000000000000000000000000000000000000000000000000000084612630565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613e949594939291906152b7565b600060405180830381600087803b158015613eae57600080fd5b505af1158015613ec2573d6000803e3d6000fd5b505050505050565b613ef5307f000000000000000000000000000000000000000000000000000000000000000084612630565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613f3f611849565b426040518863ffffffff1660e01b8152600401613f6196959493929190615311565b60606040518083038185885af1158015613f7f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613fa49190615387565b5050505050565b60008083118290613ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fe991906140a7565b60405180910390fd5b5060008385614001919061463a565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561404857808201518184015260208101905061402d565b83811115614057576000848401525b50505050565b6000601f19601f8301169050919050565b60006140798261400e565b6140838185614019565b935061409381856020860161402a565b61409c8161405d565b840191505092915050565b600060208201905081810360008301526140c1818461406e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140f9826140ce565b9050919050565b614109816140ee565b811461411457600080fd5b50565b60008135905061412681614100565b92915050565b6000819050919050565b61413f8161412c565b811461414a57600080fd5b50565b60008135905061415c81614136565b92915050565b60008060408385031215614179576141786140c9565b5b600061418785828601614117565b92505060206141988582860161414d565b9150509250929050565b60008115159050919050565b6141b7816141a2565b82525050565b60006020820190506141d260008301846141ae565b92915050565b6000602082840312156141ee576141ed6140c9565b5b60006141fc8482850161414d565b91505092915050565b60006020828403121561421b5761421a6140c9565b5b600061422984828501614117565b91505092915050565b6000819050919050565b600061425761425261424d846140ce565b614232565b6140ce565b9050919050565b60006142698261423c565b9050919050565b600061427b8261425e565b9050919050565b61428b81614270565b82525050565b60006020820190506142a66000830184614282565b92915050565b6142b58161412c565b82525050565b60006020820190506142d060008301846142ac565b92915050565b6000806000606084860312156142ef576142ee6140c9565b5b60006142fd86828701614117565b935050602061430e86828701614117565b925050604061431f8682870161414d565b9150509250925092565b614332816140ee565b82525050565b600060208201905061434d6000830184614329565b92915050565b600060ff82169050919050565b61436981614353565b82525050565b60006020820190506143846000830184614360565b92915050565b614393816141a2565b811461439e57600080fd5b50565b6000813590506143b08161438a565b92915050565b600080604083850312156143cd576143cc6140c9565b5b60006143db85828601614117565b92505060206143ec858286016143a1565b9150509250929050565b60008060006060848603121561440f5761440e6140c9565b5b600061441d8682870161414d565b935050602061442e8682870161414d565b925050604061443f8682870161414d565b9150509250925092565b60006020828403121561445f5761445e6140c9565b5b600061446d848285016143a1565b91505092915050565b6000806040838503121561448d5761448c6140c9565b5b600061449b85828601614117565b92505060206144ac85828601614117565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144fd57607f821691505b6020821081036145105761450f6144b6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061454c602083614019565b915061455782614516565b602082019050919050565b6000602082019050818103600083015261457b8161453f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145bc8261412c565b91506145c78361412c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614600576145ff614582565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146458261412c565b91506146508361412c565b9250826146605761465f61460b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b60006146c7602f83614019565b91506146d28261466b565b604082019050919050565b600060208201905081810360008301526146f6816146ba565b9050919050565b60006147088261412c565b91506147138361412c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561474857614747614582565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614789601d83614019565b915061479482614753565b602082019050919050565b600060208201905081810360008301526147b88161477c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061481b603983614019565b9150614826826147bf565b604082019050919050565b6000602082019050818103600083015261484a8161480e565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b60006148ad602283614019565b91506148b882614851565b604082019050919050565b600060208201905081810360008301526148dc816148a0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061493f603583614019565b915061494a826148e3565b604082019050919050565b6000602082019050818103600083015261496e81614932565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006149d1603483614019565b91506149dc82614975565b604082019050919050565b60006020820190508181036000830152614a00816149c4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a63602683614019565b9150614a6e82614a07565b604082019050919050565b60006020820190508181036000830152614a9281614a56565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614acf601b83614019565b9150614ada82614a99565b602082019050919050565b60006020820190508181036000830152614afe81614ac2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b61602483614019565b9150614b6c82614b05565b604082019050919050565b60006020820190508181036000830152614b9081614b54565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf3602283614019565b9150614bfe82614b97565b604082019050919050565b60006020820190508181036000830152614c2281614be6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c85602583614019565b9150614c9082614c29565b604082019050919050565b60006020820190508181036000830152614cb481614c78565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d17602383614019565b9150614d2282614cbb565b604082019050919050565b60006020820190508181036000830152614d4681614d0a565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d83601683614019565b9150614d8e82614d4d565b602082019050919050565b60006020820190508181036000830152614db281614d76565b9050919050565b7f4761732070726963652065786365656473206c696d69742e0000000000000000600082015250565b6000614def601883614019565b9150614dfa82614db9565b602082019050919050565b60006020820190508181036000830152614e1e81614de2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ea7604983614019565b9150614eb282614e25565b606082019050919050565b60006020820190508181036000830152614ed681614e9a565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000614f13601b83614019565b9150614f1e82614edd565b602082019050919050565b60006020820190508181036000830152614f4281614f06565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fa5603683614019565b9150614fb082614f49565b604082019050919050565b60006020820190508181036000830152614fd481614f98565b9050919050565b6000614fe68261412c565b9150614ff18361412c565b92508282101561500457615003614582565b5b828203905092915050565b600081905092915050565b50565b600061502a60008361500f565b91506150358261501a565b600082019050919050565b600061504b8261501d565b9150819050919050565b600060608201905061506a60008301866142ac565b61507760208301856142ac565b61508460408301846142ac565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006150e8602183614019565b91506150f38261508c565b604082019050919050565b60006020820190508181036000830152615117816150db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061518b81614100565b92915050565b6000602082840312156151a7576151a66140c9565b5b60006151b58482850161517c565b91505092915050565b6000819050919050565b60006151e36151de6151d9846151be565b614232565b61412c565b9050919050565b6151f3816151c8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61522e816140ee565b82525050565b60006152408383615225565b60208301905092915050565b6000602082019050919050565b6000615264826151f9565b61526e8185615204565b935061527983615215565b8060005b838110156152aa5781516152918882615234565b975061529c8361524c565b92505060018101905061527d565b5085935050505092915050565b600060a0820190506152cc60008301886142ac565b6152d960208301876151ea565b81810360408301526152eb8186615259565b90506152fa6060830185614329565b61530760808301846142ac565b9695505050505050565b600060c0820190506153266000830189614329565b61533360208301886142ac565b61534060408301876151ea565b61534d60608301866151ea565b61535a6080830185614329565b61536760a08301846142ac565b979650505050505050565b60008151905061538181614136565b92915050565b6000806000606084860312156153a05761539f6140c9565b5b60006153ae86828701615372565b93505060206153bf86828701615372565b92505060406153d086828701615372565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201856d81aa501816a92e503040467c14050df65e37ebf90728c8b60121ac0f93264736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106103395760003560e01c80638da5cb5b116101ab578063c18bc195116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610c35578063f2fde38b14610c60578063f637434214610c89578063f8b45b0514610cb457610340565b8063e2f4560514610bb4578063e884f26014610bdf578063ef8700e514610c0a57610340565b8063d257b34f116100d1578063d257b34f14610ae4578063d85ba06314610b21578063da64192114610b4c578063dd62ed3e14610b7757610340565b8063c18bc19514610a65578063c876d0b914610a8e578063c8c8ebe414610ab957610340565b8063a9059cbb11610164578063b62496f51161013e578063b62496f5146109ab578063bbc0c742146109e8578063c024666814610a13578063c17b5b8c14610a3c57610340565b8063a9059cbb1461091a578063aacebbe314610957578063b20414111461098057610340565b80638da5cb5b1461080a5780639213691314610835578063924de9b71461086057806395d89b41146108895780639a7a23d6146108b4578063a457c2d7146108dd57610340565b806349bd5a5e11610285578063715018a61161022357806375f0a874116101fd57806375f0a874146107745780637bce5a041461079f5780638095d564146107ca5780638a8c523c146107f357610340565b8063715018a614610709578063751039fc146107205780637571336a1461074b57610340565b8063694d9d171161025f578063694d9d171461064d5780636a486a8e146106765780636ddd1713146106a157806370a08231146106cc57610340565b806349bd5a5e146105ba5780634a62bb65146105e55780634fbee1931461061057610340565b806318a94cf1116102f257806323b872dd116102cc57806323b872dd146104ea57806327c8f83514610527578063313ce56714610552578063395093511461057d57610340565b806318a94cf1146104695780631a8145bb146104945780631f3fed8f146104bf57610340565b806306fdde0314610345578063095ea7b314610370578063106b5da1146103ad57806310d5de53146103d65780631694505e1461041357806318160ddd1461043e57610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610cdf565b60405161036791906140a7565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190614162565b610d71565b6040516103a491906141bd565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf91906141d8565b610d8f565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190614205565b610eb9565b60405161040a91906141bd565b60405180910390f35b34801561041f57600080fd5b50610428610ed9565b6040516104359190614291565b60405180910390f35b34801561044a57600080fd5b50610453610efd565b60405161046091906142bb565b60405180910390f35b34801561047557600080fd5b5061047e610f07565b60405161048b91906142bb565b60405180910390f35b3480156104a057600080fd5b506104a9610f0d565b6040516104b691906142bb565b60405180910390f35b3480156104cb57600080fd5b506104d4610f13565b6040516104e191906142bb565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c91906142d6565b610f19565b60405161051e91906141bd565b60405180910390f35b34801561053357600080fd5b5061053c610ff2565b6040516105499190614338565b60405180910390f35b34801561055e57600080fd5b50610567610ff8565b604051610574919061436f565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190614162565b611001565b6040516105b191906141bd565b60405180910390f35b3480156105c657600080fd5b506105cf6110b4565b6040516105dc9190614338565b60405180910390f35b3480156105f157600080fd5b506105fa6110d8565b60405161060791906141bd565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190614205565b6110eb565b60405161064491906141bd565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f9190614205565b611141565b005b34801561068257600080fd5b5061068b611298565b60405161069891906142bb565b60405180910390f35b3480156106ad57600080fd5b506106b661129e565b6040516106c391906141bd565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190614205565b6112b1565b60405161070091906142bb565b60405180910390f35b34801561071557600080fd5b5061071e6112f9565b005b34801561072c57600080fd5b50610735611451565b60405161074291906141bd565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d91906143b6565b611542565b005b34801561078057600080fd5b50610789611634565b6040516107969190614338565b60405180910390f35b3480156107ab57600080fd5b506107b461165a565b6040516107c191906142bb565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec91906143f6565b611660565b005b3480156107ff57600080fd5b5061080861177a565b005b34801561081657600080fd5b5061081f611849565b60405161082c9190614338565b60405180910390f35b34801561084157600080fd5b5061084a611873565b60405161085791906142bb565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190614449565b611879565b005b34801561089557600080fd5b5061089e61192d565b6040516108ab91906140a7565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d691906143b6565b6119bf565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190614162565b611af2565b60405161091191906141bd565b60405180910390f35b34801561092657600080fd5b50610941600480360381019061093c9190614162565b611bbf565b60405161094e91906141bd565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190614205565b611bdd565b005b34801561098c57600080fd5b50610995611d34565b6040516109a291906142bb565b60405180910390f35b3480156109b757600080fd5b506109d260048036038101906109cd9190614205565b611d3a565b6040516109df91906141bd565b60405180910390f35b3480156109f457600080fd5b506109fd611d5a565b604051610a0a91906141bd565b60405180910390f35b348015610a1f57600080fd5b50610a3a6004803603810190610a3591906143b6565b611d6d565b005b348015610a4857600080fd5b50610a636004803603810190610a5e91906143f6565b611ead565b005b348015610a7157600080fd5b50610a8c6004803603810190610a8791906141d8565b611fc7565b005b348015610a9a57600080fd5b50610aa36120ef565b604051610ab091906141bd565b60405180910390f35b348015610ac557600080fd5b50610ace612102565b604051610adb91906142bb565b60405180910390f35b348015610af057600080fd5b50610b0b6004803603810190610b0691906141d8565b612108565b604051610b1891906141bd565b60405180910390f35b348015610b2d57600080fd5b50610b36612278565b604051610b4391906142bb565b60405180910390f35b348015610b5857600080fd5b50610b6161227e565b604051610b6e9190614338565b60405180910390f35b348015610b8357600080fd5b50610b9e6004803603810190610b999190614476565b6122a4565b604051610bab91906142bb565b60405180910390f35b348015610bc057600080fd5b50610bc961232b565b604051610bd691906142bb565b60405180910390f35b348015610beb57600080fd5b50610bf4612331565b604051610c0191906141bd565b60405180910390f35b348015610c1657600080fd5b50610c1f6123ec565b604051610c2c91906142bb565b60405180910390f35b348015610c4157600080fd5b50610c4a6123f2565b604051610c5791906142bb565b60405180910390f35b348015610c6c57600080fd5b50610c876004803603810190610c829190614205565b6123f8565b005b348015610c9557600080fd5b50610c9e6125be565b604051610cab91906142bb565b60405180910390f35b348015610cc057600080fd5b50610cc96125c4565b604051610cd691906142bb565b60405180910390f35b606060038054610cee906144e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a906144e5565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b5050505050905090565b6000610d85610d7e612628565b8484612630565b6001905092915050565b610d97612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90614562565b60405180910390fd5b670de0b6b3a76400006103e86005610e3c610efd565b610e4691906145b1565b610e50919061463a565b610e5a919061463a565b811015610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906146dd565b60405180910390fd5b670de0b6b3a764000081610eb091906145b1565b60088190555050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60155481565b60175481565b60165481565b6000610f268484846127f9565b610fe784610f32612628565b610fe28560405180606001604052806028815260200161540160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f98612628565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fe9092919063ffffffff16565b612630565b600190509392505050565b61dead81565b60006012905090565b60006110aa61100e612628565b846110a5856001600061101f612628565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ca90919063ffffffff16565b612630565b6001905092915050565b7f0000000000000000000000007122821b1f991539acdcf589b262af1f2fc30bc081565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611149612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614562565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f94cc1498503be9a145caf3e96f856665f29cf9b26c7179a93fbe1c1e5f56a0fd60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611301612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790614562565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061145b612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190614562565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506000600b60036101000a81548160ff0219169083151502179055506000600d60006101000a81548160ff0219169083151502179055506001905090565b61154a612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090614562565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b611668612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee90614562565b60405180910390fd5b82600f819055508160108190555080601181905550601154601054600f5461171f91906146fd565b61172991906146fd565b600e819055506019600e541115611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c9061479f565b60405180910390fd5b505050565b611782612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890614562565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b611881612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790614562565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461193c906144e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611968906144e5565b80156119b55780601f1061198a576101008083540402835291602001916119b5565b820191906000526020600020905b81548152906001019060200180831161199857829003601f168201915b5050505050905090565b6119c7612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90614562565b60405180910390fd5b7f0000000000000000000000007122821b1f991539acdcf589b262af1f2fc30bc073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90614831565b60405180910390fd5b611aee8282613562565b5050565b6000611bb5611aff612628565b84611bb0856040518060600160405280602581526020016154296025913960016000611b29612628565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fe9092919063ffffffff16565b612630565b6001905092915050565b6000611bd3611bcc612628565b84846127f9565b6001905092915050565b611be5612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90614562565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611d75612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90614562565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ea191906141bd565b60405180910390a25050565b611eb5612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90614562565b60405180910390fd5b826013819055508160148190555080601581905550601554601454601354611f6c91906146fd565b611f7691906146fd565b60128190555060196012541115611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb99061479f565b60405180910390fd5b505050565b611fcf612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461205e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205590614562565b60405180910390fd5b670de0b6b3a764000060646001612073610efd565b61207d91906145b1565b612087919061463a565b612091919061463a565b81116120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c9906148c3565b60405180910390fd5b670de0b6b3a7640000816120e691906145b1565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000612112612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219890614562565b60405180910390fd5b620186a060016121af610efd565b6121b991906145b1565b6121c3919061463a565b821015612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614955565b60405180910390fd5b6103e86005612212610efd565b61221c91906145b1565b612226919061463a565b821115612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f906149e7565b60405180910390fd5b8160098190555060019050919050565b600e5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061233b612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190614562565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60185481565b60105481565b612400612628565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461248f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248690614562565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590614a79565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b600a5481565b60008082846125d991906146fd565b90508381101561261e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261590614ae5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361269f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269690614b77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361270e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270590614c09565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127ec91906142bb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285f90614c9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90614d2d565b60405180910390fd5b600081036128f0576128eb83836000613603565b6134f9565b600b60009054906101000a900460ff16156130215761290d611849565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561297b575061294b611849565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129b45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129ee575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a075750600560149054906101000a900460ff16155b1561302057600b60019054906101000a900460ff16612b0157601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ac15750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af790614d99565b60405180910390fd5b5b600b60039054906101000a900460ff168015612b665750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bb45764104c533c003a1115612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa90614e05565b60405180910390fd5b5b600d60009054906101000a900460ff1615612d7c57612bd1611849565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c5857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cb057507f0000000000000000000000007122821b1f991539acdcf589b262af1f2fc30bc073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d7b5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2d90614ebd565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e1f5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8157600a54612e30836112b1565b82612e3b91906146fd565b1115612e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7390614f29565b60405180910390fd5b61301f565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f245750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f7357600854811115612f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6590614fbb565b60405180910390fd5b61301e565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661301d57600a54612fd0836112b1565b82612fdb91906146fd565b111561301c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301390614f29565b60405180910390fd5b5b5b5b5b5b600061302c306112b1565b9050600060095482101590508080156130515750600b60029054906101000a900460ff165b801561306a5750600560149054906101000a900460ff16155b80156130c05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131165750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561316c5750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b0576001600560146101000a81548160ff021916908315150217905550613194613896565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806132665750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561327057600090505b600081156134e957601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132d357506000601254115b156133a05761330060646132f260125488613b7a90919063ffffffff16565b613bf490919063ffffffff16565b90506012546014548261331391906145b1565b61331d919061463a565b6017600082825461332e91906146fd565b925050819055506012546015548261334691906145b1565b613350919061463a565b6018600082825461336191906146fd565b925050819055506012546013548261337991906145b1565b613383919061463a565b6016600082825461339491906146fd565b925050819055506134c5565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133fb57506000600e54115b156134c457613428606461341a600e5488613b7a90919063ffffffff16565b613bf490919063ffffffff16565b9050600e546010548261343b91906145b1565b613445919061463a565b6017600082825461345691906146fd565b92505081905550600e546011548261346e91906145b1565b613478919061463a565b6018600082825461348991906146fd565b92505081905550600e54600f54826134a191906145b1565b6134ab919061463a565b601660008282546134bc91906146fd565b925050819055505b5b60008111156134da576134d9873083613603565b5b80856134e69190614fdb565b94505b6134f4878787613603565b505050505b505050565b6000838311158290613546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353d91906140a7565b60405180910390fd5b50600083856135559190614fdb565b9050809150509392505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366990614c9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036136e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136d890614d2d565b60405180910390fd5b6136ec838383613c3e565b613757816040518060600160405280602681526020016153db602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134fe9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506137ea816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ca90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161388991906142bb565b60405180910390a3505050565b60006138a1306112b1565b905060006018546016546017546138b891906146fd565b6138c291906146fd565b905060008214806138d35750600081145b156138df575050613b78565b60056009546138ee91906145b1565b821061390657600560095461390391906145b1565b91505b60006002826017548561391991906145b1565b613923919061463a565b61392d919061463a565b905060006139448285613c4390919063ffffffff16565b9050600047905061395482613c8d565b60006139698247613c4390919063ffffffff16565b905060006139948661398660165485613b7a90919063ffffffff16565b613bf490919063ffffffff16565b905060006139bf876139b160185486613b7a90919063ffffffff16565b613bf490919063ffffffff16565b905060008183856139d09190614fdb565b6139da9190614fdb565b90506000601781905550600060168190555060006018819055506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613a3c90615040565b60006040518083038185875af1925050503d8060008114613a79576040519150601f19603f3d011682016040523d82523d6000602084013e613a7e565b606091505b50509050600088118015613a925750600082115b15613adf57613aa18883613eca565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618783601754604051613ad693929190615055565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b2590615040565b60006040518083038185875af1925050503d8060008114613b62576040519150601f19603f3d011682016040523d82523d6000602084013e613b67565b606091505b505080915050505050505050505050505b565b6000808303613b8c5760009050613bee565b60008284613b9a91906145b1565b9050828482613ba9919061463a565b14613be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be0906150fe565b60405180910390fd5b809150505b92915050565b6000613c3683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613fab565b905092915050565b505050565b6000613c8583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506134fe565b905092915050565b6000600267ffffffffffffffff811115613caa57613ca961511e565b5b604051908082528060200260200182016040528015613cd85781602001602082028036833780820191505090505b5090503081600081518110613cf057613cef61514d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613db99190615191565b81600181518110613dcd57613dcc61514d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e32307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612630565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613e949594939291906152b7565b600060405180830381600087803b158015613eae57600080fd5b505af1158015613ec2573d6000803e3d6000fd5b505050505050565b613ef5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612630565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613f3f611849565b426040518863ffffffff1660e01b8152600401613f6196959493929190615311565b60606040518083038185885af1158015613f7f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613fa49190615387565b5050505050565b60008083118290613ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fe991906140a7565b60405180910390fd5b5060008385614001919061463a565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561404857808201518184015260208101905061402d565b83811115614057576000848401525b50505050565b6000601f19601f8301169050919050565b60006140798261400e565b6140838185614019565b935061409381856020860161402a565b61409c8161405d565b840191505092915050565b600060208201905081810360008301526140c1818461406e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140f9826140ce565b9050919050565b614109816140ee565b811461411457600080fd5b50565b60008135905061412681614100565b92915050565b6000819050919050565b61413f8161412c565b811461414a57600080fd5b50565b60008135905061415c81614136565b92915050565b60008060408385031215614179576141786140c9565b5b600061418785828601614117565b92505060206141988582860161414d565b9150509250929050565b60008115159050919050565b6141b7816141a2565b82525050565b60006020820190506141d260008301846141ae565b92915050565b6000602082840312156141ee576141ed6140c9565b5b60006141fc8482850161414d565b91505092915050565b60006020828403121561421b5761421a6140c9565b5b600061422984828501614117565b91505092915050565b6000819050919050565b600061425761425261424d846140ce565b614232565b6140ce565b9050919050565b60006142698261423c565b9050919050565b600061427b8261425e565b9050919050565b61428b81614270565b82525050565b60006020820190506142a66000830184614282565b92915050565b6142b58161412c565b82525050565b60006020820190506142d060008301846142ac565b92915050565b6000806000606084860312156142ef576142ee6140c9565b5b60006142fd86828701614117565b935050602061430e86828701614117565b925050604061431f8682870161414d565b9150509250925092565b614332816140ee565b82525050565b600060208201905061434d6000830184614329565b92915050565b600060ff82169050919050565b61436981614353565b82525050565b60006020820190506143846000830184614360565b92915050565b614393816141a2565b811461439e57600080fd5b50565b6000813590506143b08161438a565b92915050565b600080604083850312156143cd576143cc6140c9565b5b60006143db85828601614117565b92505060206143ec858286016143a1565b9150509250929050565b60008060006060848603121561440f5761440e6140c9565b5b600061441d8682870161414d565b935050602061442e8682870161414d565b925050604061443f8682870161414d565b9150509250925092565b60006020828403121561445f5761445e6140c9565b5b600061446d848285016143a1565b91505092915050565b6000806040838503121561448d5761448c6140c9565b5b600061449b85828601614117565b92505060206144ac85828601614117565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144fd57607f821691505b6020821081036145105761450f6144b6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061454c602083614019565b915061455782614516565b602082019050919050565b6000602082019050818103600083015261457b8161453f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145bc8261412c565b91506145c78361412c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614600576145ff614582565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146458261412c565b91506146508361412c565b9250826146605761465f61460b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b60006146c7602f83614019565b91506146d28261466b565b604082019050919050565b600060208201905081810360008301526146f6816146ba565b9050919050565b60006147088261412c565b91506147138361412c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561474857614747614582565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614789601d83614019565b915061479482614753565b602082019050919050565b600060208201905081810360008301526147b88161477c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061481b603983614019565b9150614826826147bf565b604082019050919050565b6000602082019050818103600083015261484a8161480e565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b60006148ad602283614019565b91506148b882614851565b604082019050919050565b600060208201905081810360008301526148dc816148a0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061493f603583614019565b915061494a826148e3565b604082019050919050565b6000602082019050818103600083015261496e81614932565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006149d1603483614019565b91506149dc82614975565b604082019050919050565b60006020820190508181036000830152614a00816149c4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a63602683614019565b9150614a6e82614a07565b604082019050919050565b60006020820190508181036000830152614a9281614a56565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614acf601b83614019565b9150614ada82614a99565b602082019050919050565b60006020820190508181036000830152614afe81614ac2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b61602483614019565b9150614b6c82614b05565b604082019050919050565b60006020820190508181036000830152614b9081614b54565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf3602283614019565b9150614bfe82614b97565b604082019050919050565b60006020820190508181036000830152614c2281614be6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c85602583614019565b9150614c9082614c29565b604082019050919050565b60006020820190508181036000830152614cb481614c78565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d17602383614019565b9150614d2282614cbb565b604082019050919050565b60006020820190508181036000830152614d4681614d0a565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d83601683614019565b9150614d8e82614d4d565b602082019050919050565b60006020820190508181036000830152614db281614d76565b9050919050565b7f4761732070726963652065786365656473206c696d69742e0000000000000000600082015250565b6000614def601883614019565b9150614dfa82614db9565b602082019050919050565b60006020820190508181036000830152614e1e81614de2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ea7604983614019565b9150614eb282614e25565b606082019050919050565b60006020820190508181036000830152614ed681614e9a565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000614f13601b83614019565b9150614f1e82614edd565b602082019050919050565b60006020820190508181036000830152614f4281614f06565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fa5603683614019565b9150614fb082614f49565b604082019050919050565b60006020820190508181036000830152614fd481614f98565b9050919050565b6000614fe68261412c565b9150614ff18361412c565b92508282101561500457615003614582565b5b828203905092915050565b600081905092915050565b50565b600061502a60008361500f565b91506150358261501a565b600082019050919050565b600061504b8261501d565b9150819050919050565b600060608201905061506a60008301866142ac565b61507760208301856142ac565b61508460408301846142ac565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006150e8602183614019565b91506150f38261508c565b604082019050919050565b60006020820190508181036000830152615117816150db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061518b81614100565b92915050565b6000602082840312156151a7576151a66140c9565b5b60006151b58482850161517c565b91505092915050565b6000819050919050565b60006151e36151de6151d9846151be565b614232565b61412c565b9050919050565b6151f3816151c8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61522e816140ee565b82525050565b60006152408383615225565b60208301905092915050565b6000602082019050919050565b6000615264826151f9565b61526e8185615204565b935061527983615215565b8060005b838110156152aa5781516152918882615234565b975061529c8361524c565b92505060018101905061527d565b5085935050505092915050565b600060a0820190506152cc60008301886142ac565b6152d960208301876151ea565b81810360408301526152eb8186615259565b90506152fa6060830185614329565b61530760808301846142ac565b9695505050505050565b600060c0820190506153266000830189614329565b61533360208301886142ac565b61534060408301876151ea565b61534d60608301866151ea565b61535a6080830185614329565b61536760a08301846142ac565b979650505050505050565b60008151905061538181614136565b92915050565b6000806000606084860312156153a05761539f6140c9565b5b60006153ae86828701615372565b93505060206153bf86828701615372565b92505060406153d086828701615372565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201856d81aa501816a92e503040467c14050df65e37ebf90728c8b60121ac0f93264736f6c634300080f0033

Deployed Bytecode Sourcemap

29500:16024:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7656:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9823:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35454:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31018:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29577:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8776:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30735:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30821;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30781;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10474:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29680:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8618:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11238:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29635:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29975:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38186:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37970:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30624:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30055:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8947:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22121:148;;;;;;;;;;;;;:::i;:::-;;34593:192;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35916:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29772:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30505;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36273:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34425:112;;;;;;;;;;;;;:::i;:::-;;21479:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30659:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36160:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7875:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37294:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11959:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9287:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37748:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30579:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31240:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30015:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37104:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36686:410;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35693:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30423:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29860:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35061:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30471:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29809:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9525:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29902:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34850:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30861:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30542:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22424:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30697:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29942:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7656:100;7710:13;7743:5;7736:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7656:100;:::o;9823:169::-;9906:4;9923:39;9932:12;:10;:12::i;:::-;9946:7;9955:6;9923:8;:39::i;:::-;9980:4;9973:11;;9823:169;;;;:::o;35454:231::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35570:4:::1;35564;35560:1;35544:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35543:31;;;;:::i;:::-;35533:6;:41;;35525:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35670:6;35660;:17;;;;:::i;:::-;35637:20;:40;;;;35454:231:::0;:::o;31018:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29577:51::-;;;:::o;8776:108::-;8837:7;8864:12;;8857:19;;8776:108;:::o;30735:33::-;;;;:::o;30821:::-;;;;:::o;30781:::-;;;;:::o;10474:355::-;10614:4;10631:36;10641:6;10649:9;10660:6;10631:9;:36::i;:::-;10678:121;10687:6;10695:12;:10;:12::i;:::-;10709:89;10747:6;10709:89;;;;;;;;;;;;;;;;;:11;:19;10721:6;10709:19;;;;;;;;;;;;;;;:33;10729:12;:10;:12::i;:::-;10709:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10678:8;:121::i;:::-;10817:4;10810:11;;10474:355;;;;;:::o;29680:53::-;29726:6;29680:53;:::o;8618:93::-;8676:5;8701:2;8694:9;;8618:93;:::o;11238:218::-;11326:4;11343:83;11352:12;:10;:12::i;:::-;11366:7;11375:50;11414:10;11375:11;:25;11387:12;:10;:12::i;:::-;11375:25;;;;;;;;;;;;;;;:34;11401:7;11375:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11343:8;:83::i;:::-;11444:4;11437:11;;11238:218;;;;:::o;29635:38::-;;;:::o;29975:33::-;;;;;;;;;;;;;:::o;38186:127::-;38253:4;38277:19;:28;38297:7;38277:28;;;;;;;;;;;;;;;;;;;;;;;;;38270:35;;38186:127;;;:::o;37970:202::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38094:23:::1;;;;;;;;;;;38058:60;;38083:9;38058:60;;;;;;;;;;;;38155:9;38129:23;;:35;;;;;;;;;;;;;;;;;;37970:202:::0;:::o;30624:28::-;;;;:::o;30055:31::-;;;;;;;;;;;;;:::o;8947:127::-;9021:7;9048:9;:18;9058:7;9048:18;;;;;;;;;;;;;;;;9041:25;;8947:127;;;:::o;22121:148::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22228:1:::1;22191:40;;22212:6;;;;;;;;;;;22191:40;;;;;;;;;;;;22259:1;22242:6;;:19;;;;;;;;;;;;;;;;;;22121:148::o:0;34593:192::-;34645:4;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34678:5:::1;34661:14;;:22;;;;;;;;;;;;;;;;;;34711:5;34694:14;;:22;;;;;;;;;;;;;;;;;;34750:5;34727:20;;:28;;;;;;;;;;;;;;;;;;34773:4;34766:11;;34593:192:::0;:::o;35916:144::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36048:4:::1;36006:31;:39;36038:6;36006:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35916:144:::0;;:::o;29772:30::-;;;;;;;;;;;;;:::o;30505:::-;;;;:::o;36273:401::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36415:13:::1;36397:15;:31;;;;36457:13;36439:15;:31;;;;36501:15;36481:17;:35;;;;36578:17;;36560:15;;36542;;:33;;;;:::i;:::-;:53;;;;:::i;:::-;36527:12;:68;;;;36630:2;36614:12;;:18;;36606:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;36273:401:::0;;;:::o;34425:112::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34496:4:::1;34480:13;;:20;;;;;;;;;;;;;;;;;;34525:4;34511:11;;:18;;;;;;;;;;;;;;;;;;34425:112::o:0;21479:79::-;21517:7;21544:6;;;;;;;;;;;21537:13;;21479:79;:::o;30659:31::-;;;;:::o;36160:101::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36246:7:::1;36232:11;;:21;;;;;;;;;;;;;;;;;;36160:101:::0;:::o;7875:104::-;7931:13;7964:7;7957:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7875:104;:::o;37294:246::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37403:13:::1;37395:21;;:4;:21;;::::0;37387:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37491:41;37520:4;37526:5;37491:28;:41::i;:::-;37294:246:::0;;:::o;11959:269::-;12052:4;12069:129;12078:12;:10;:12::i;:::-;12092:7;12101:96;12140:15;12101:96;;;;;;;;;;;;;;;;;:11;:25;12113:12;:10;:12::i;:::-;12101:25;;;;;;;;;;;;;;;:34;12127:7;12101:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12069:8;:129::i;:::-;12216:4;12209:11;;11959:269;;;;:::o;9287:175::-;9373:4;9390:42;9400:12;:10;:12::i;:::-;9414:9;9425:6;9390:9;:42::i;:::-;9450:4;9443:11;;9287:175;;;;:::o;37748:208::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37885:15:::1;;;;;;;;;;;37842:59;;37865:18;37842:59;;;;;;;;;;;;37930:18;37912:15;;:36;;;;;;;;;;;;;;;;;;37748:208:::0;:::o;30579:32::-;;;;:::o;31240:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30015:33::-;;;;;;;;;;;;;:::o;37104:182::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37220:8:::1;37189:19;:28;37209:7;37189:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37260:7;37244:34;;;37269:8;37244:34;;;;;;:::i;:::-;;;;;;;;37104:182:::0;;:::o;36686:410::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36830:13:::1;36811:16;:32;;;;36873:13;36854:16;:32;;;;36918:15;36897:18;:36;;;;36998:18;;36979:16;;36960;;:35;;;;:::i;:::-;:56;;;;:::i;:::-;36944:13;:72;;;;37052:2;37035:13;;:19;;37027:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36686:410:::0;;;:::o;35693:211::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35813:4:::1;35808:3;35804:1;35788:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:23;;;;:::i;:::-;35787:30;;;;:::i;:::-;35778:6;:39;35770:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;35889:6;35879;:17;;;;:::i;:::-;35867:9;:29;;;;35693:211:::0;:::o;30423:39::-;;;;;;;;;;;;;:::o;29860:35::-;;;;:::o;35061:381::-;35142:4;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35198:6:::1;35194:1;35178:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;35165:9;:39;;35157:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35313:4;35309:1;35293:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35280:9;:37;;35272:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35405:9;35384:18;:30;;;;35431:4;35424:11;;35061:381:::0;;;:::o;30471:27::-;;;;:::o;29809:38::-;;;;;;;;;;;;;:::o;9525:151::-;9614:7;9641:11;:18;9653:5;9641:18;;;;;;;;;;;;;;;:27;9660:7;9641:27;;;;;;;;;;;;;;;;9634:34;;9525:151;;;;:::o;29902:33::-;;;;:::o;34850:134::-;34910:4;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34949:5:::1;34926:20;;:28;;;;;;;;;;;;;;;;;;34972:4;34965:11;;34850:134:::0;:::o;30861:35::-;;;;:::o;30542:30::-;;;;:::o;22424:244::-;21701:12;:10;:12::i;:::-;21691:22;;:6;;;;;;;;;;;:22;;;21683:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22533:1:::1;22513:22;;:8;:22;;::::0;22505:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22623:8;22594:38;;22615:6;;;;;;;;;;;22594:38;;;;;;;;;;;;22652:8;22643:6;;:17;;;;;;;;;;;;;;;;;;22424:244:::0;:::o;30697:31::-;;;;:::o;29942:24::-;;;;:::o;16523:181::-;16581:7;16601:9;16617:1;16613;:5;;;;:::i;:::-;16601:17;;16642:1;16637;:6;;16629:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16695:1;16688:8;;;16523:181;;;;:::o;292:98::-;345:7;372:10;365:17;;292:98;:::o;15145:380::-;15298:1;15281:19;;:5;:19;;;15273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15379:1;15360:21;;:7;:21;;;15352:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15463:6;15433:11;:18;15445:5;15433:18;;;;;;;;;;;;;;;:27;15452:7;15433:27;;;;;;;;;;;;;;;:36;;;;15501:7;15485:32;;15494:5;15485:32;;;15510:6;15485:32;;;;;;:::i;:::-;;;;;;;;15145:380;;;:::o;38325:4295::-;38473:1;38457:18;;:4;:18;;;38449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38550:1;38536:16;;:2;:16;;;38528:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38627:1;38617:6;:11;38614:92;;38645:28;38661:4;38667:2;38671:1;38645:15;:28::i;:::-;38688:7;;38614:92;38729:14;;;;;;;;;;;38726:1982;;;38789:7;:5;:7::i;:::-;38781:15;;:4;:15;;;;:49;;;;;38823:7;:5;:7::i;:::-;38817:13;;:2;:13;;;;38781:49;:86;;;;;38865:1;38851:16;;:2;:16;;;;38781:86;:128;;;;;38902:6;38888:21;;:2;:21;;;;38781:128;:158;;;;;38931:8;;;;;;;;;;;38930:9;38781:158;38759:1938;;;38977:13;;;;;;;;;;;38973:148;;39022:19;:25;39042:4;39022:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39051:19;:23;39071:2;39051:23;;;;;;;;;;;;;;;;;;;;;;;;;39022:52;39014:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38973:148;39234:14;;;;;;;;;;;:49;;;;;39252:25;:31;39278:4;39252:31;;;;;;;;;;;;;;;;;;;;;;;;;39234:49;39230:163;;;30181:11;39316;:28;;39308:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39230:163;39551:20;;;;;;;;;;;39547:423;;;39605:7;:5;:7::i;:::-;39599:13;;:2;:13;;;;:47;;;;;39630:15;39616:30;;:2;:30;;;;39599:47;:79;;;;;39664:13;39650:28;;:2;:28;;;;39599:79;39595:356;;;39756:12;39714:28;:39;39743:9;39714:39;;;;;;;;;;;;;;;;:54;39706:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39915:12;39873:28;:39;39902:9;39873:39;;;;;;;;;;;;;;;:54;;;;39595:356;39547:423;40039:25;:31;40065:4;40039:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40075:31;:35;40107:2;40075:35;;;;;;;;;;;;;;;;;;;;;;;;;40074:36;40039:71;40035:647;;;40169:9;;40152:13;40162:2;40152:9;:13::i;:::-;40143:6;:22;;;;:::i;:::-;:35;;40135:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40035:647;;;40287:25;:29;40313:2;40287:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40321:31;:37;40353:4;40321:37;;;;;;;;;;;;;;;;;;;;;;;;;40320:38;40287:71;40283:399;;;40401:20;;40391:6;:30;;40383:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;40283:399;;;40527:31;:35;40559:2;40527:35;;;;;;;;;;;;;;;;;;;;;;;;;40523:159;;40621:9;;40604:13;40614:2;40604:9;:13::i;:::-;40595:6;:22;;;;:::i;:::-;:35;;40587:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40523:159;40283:399;40035:647;38759:1938;38726:1982;40722:28;40753:24;40771:4;40753:9;:24::i;:::-;40722:55;;40798:12;40837:18;;40813:20;:42;;40798:57;;40886:7;:35;;;;;40910:11;;;;;;;;;;;40886:35;:61;;;;;40939:8;;;;;;;;;;;40938:9;40886:61;:110;;;;;40965:25;:31;40991:4;40965:31;;;;;;;;;;;;;;;;;;;;;;;;;40964:32;40886:110;:153;;;;;41014:19;:25;41034:4;41014:25;;;;;;;;;;;;;;;;;;;;;;;;;41013:26;40886:153;:194;;;;;41057:19;:23;41077:2;41057:23;;;;;;;;;;;;;;;;;;;;;;;;;41056:24;40886:194;40868:338;;;41118:4;41107:8;;:15;;;;;;;;;;;;;;;;;;41151:10;:8;:10::i;:::-;41189:5;41178:8;;:16;;;;;;;;;;;;;;;;;;40868:338;41226:12;41242:8;;;;;;;;;;;41241:9;41226:24;;41351:19;:25;41371:4;41351:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41380:19;:23;41400:2;41380:23;;;;;;;;;;;;;;;;;;;;;;;;;41351:52;41348:99;;;41430:5;41420:15;;41348:99;41467:12;41571:7;41568:999;;;41622:25;:29;41648:2;41622:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41671:1;41655:13;;:17;41622:50;41618:780;;;41699:34;41729:3;41699:25;41710:13;;41699:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41692:41;;41800:13;;41781:16;;41774:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41752:18;;:61;;;;;;;:::i;:::-;;;;;;;;41884:13;;41863:18;;41856:4;:25;;;;:::i;:::-;:41;;;;:::i;:::-;41832:20;;:65;;;;;;;:::i;:::-;;;;;;;;41964:13;;41945:16;;41938:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41916:18;;:61;;;;;;;:::i;:::-;;;;;;;;41618:780;;;42038:25;:31;42064:4;42038:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42088:1;42073:12;;:16;42038:51;42035:363;;;42114:33;42143:3;42114:24;42125:12;;42114:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42107:40;;42210:12;;42192:15;;42185:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42163:18;;:59;;;;;;;:::i;:::-;;;;;;;;42292:12;;42272:17;;42265:4;:24;;;;:::i;:::-;:39;;;;:::i;:::-;42241:20;;:63;;;;;;;:::i;:::-;;;;;;;;42370:12;;42352:15;;42345:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42323:18;;:59;;;;;;;:::i;:::-;;;;;;;;42035:363;41618:780;42436:1;42429:4;:8;42426:93;;;42461:42;42477:4;42491;42498;42461:15;:42::i;:::-;42426:93;42551:4;42541:14;;;;;:::i;:::-;;;41568:999;42579:33;42595:4;42601:2;42605:6;42579:15;:33::i;:::-;38438:4182;;;;38325:4295;;;;:::o;17426:192::-;17512:7;17545:1;17540;:6;;17548:12;17532:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17572:9;17588:1;17584;:5;;;;:::i;:::-;17572:17;;17609:1;17602:8;;;17426:192;;;;;:::o;37552:188::-;37669:5;37635:25;:31;37661:4;37635:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37726:5;37692:40;;37720:4;37692:40;;;;;;;;;;;;37552:188;;:::o;12718:573::-;12876:1;12858:20;;:6;:20;;;12850:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12960:1;12939:23;;:9;:23;;;12931:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13015:47;13036:6;13044:9;13055:6;13015:20;:47::i;:::-;13095:71;13117:6;13095:71;;;;;;;;;;;;;;;;;:9;:17;13105:6;13095:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13075:9;:17;13085:6;13075:17;;;;;;;;;;;;;;;:91;;;;13200:32;13225:6;13200:9;:20;13210:9;13200:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13177:9;:20;13187:9;13177:20;;;;;;;;;;;;;;;:55;;;;13265:9;13248:35;;13257:6;13248:35;;;13276:6;13248:35;;;;;;:::i;:::-;;;;;;;;12718:573;;;:::o;43762:1759::-;43801:23;43827:24;43845:4;43827:9;:24::i;:::-;43801:50;;43862:25;43932:20;;43911:18;;43890;;:39;;;;:::i;:::-;:62;;;;:::i;:::-;43862:90;;43995:1;43976:15;:20;:46;;;;44021:1;44000:17;:22;43976:46;43973:60;;;44025:7;;;;43973:60;44137:1;44116:18;;:22;;;;:::i;:::-;44097:15;:41;44094:112;;44193:1;44172:18;;:22;;;;:::i;:::-;44154:40;;44094:112;44275:23;44360:1;44340:17;44319:18;;44301:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;44275:86;;44372:26;44401:36;44421:15;44401;:19;;:36;;;;:::i;:::-;44372:65;;44458:25;44486:21;44458:49;;44520:36;44537:18;44520:16;:36::i;:::-;44578:18;44599:44;44625:17;44599:21;:25;;:44;;;;:::i;:::-;44578:65;;44664:23;44690:57;44729:17;44690:34;44705:18;;44690:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;44664:83;;44758:25;44786:59;44827:17;44786:36;44801:20;;44786:10;:14;;:36;;;;:::i;:::-;:40;;:59;;;;:::i;:::-;44758:87;;44876:23;44933:17;44915:15;44902:10;:28;;;;:::i;:::-;:48;;;;:::i;:::-;44876:74;;45002:1;44981:18;:22;;;;45035:1;45014:18;:22;;;;45070:1;45047:20;:24;;;;45095:12;45120:23;;;;;;;;;;;45112:37;;45157:17;45112:67;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45094:85;;;45221:1;45203:15;:19;:42;;;;;45244:1;45226:15;:19;45203:42;45200:210;;;45261:46;45274:15;45291;45261:12;:46::i;:::-;45327:71;45342:18;45362:15;45379:18;;45327:71;;;;;;;;:::i;:::-;;;;;;;;45200:210;45451:15;;;;;;;;;;;45443:29;;45480:21;45443:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45430:76;;;;;43790:1731;;;;;;;;;;43762:1759;:::o;17877:471::-;17935:7;18185:1;18180;:6;18176:47;;18210:1;18203:8;;;;18176:47;18235:9;18251:1;18247;:5;;;;:::i;:::-;18235:17;;18280:1;18275;18271;:5;;;;:::i;:::-;:10;18263:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18339:1;18332:8;;;17877:471;;;;;:::o;18824:132::-;18882:7;18909:39;18913:1;18916;18909:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18902:46;;18824:132;;;;:::o;16128:125::-;;;;:::o;16987:136::-;17045:7;17072:43;17076:1;17079;17072:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17065:50;;16987:136;;;;:::o;42628:601::-;42756:21;42794:1;42780:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42756:40;;42825:4;42807;42812:1;42807:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42851:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42841:4;42846:1;42841:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42886:62;42903:4;42918:15;42936:11;42886:8;:62::i;:::-;42987:15;:66;;;43068:11;43094:1;43138:4;43165;43185:15;42987:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42683:546;42628:601;:::o;43241:513::-;43389:62;43406:4;43421:15;43439:11;43389:8;:62::i;:::-;43494:15;:31;;;43533:9;43566:4;43586:11;43612:1;43655;43698:7;:5;:7::i;:::-;43720:15;43494:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43241:513;;:::o;19452:278::-;19538:7;19570:1;19566;:5;19573:12;19558:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19597:9;19613:1;19609;:5;;;;:::i;:::-;19597:17;;19721:1;19714:8;;;19452: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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:::-;3888:6;3937:2;3925:9;3916:7;3912:23;3908:32;3905:119;;;3943:79;;:::i;:::-;3905:119;4063:1;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4034:117;3829:329;;;;:::o;4164:60::-;4192:3;4213:5;4206:12;;4164:60;;;:::o;4230:142::-;4280:9;4313:53;4331:34;4340:24;4358:5;4340:24;:::i;:::-;4331:34;:::i;:::-;4313:53;:::i;:::-;4300:66;;4230:142;;;:::o;4378:126::-;4428:9;4461:37;4492:5;4461:37;:::i;:::-;4448:50;;4378:126;;;:::o;4510:153::-;4587:9;4620:37;4651:5;4620:37;:::i;:::-;4607:50;;4510:153;;;:::o;4669:185::-;4783:64;4841:5;4783:64;:::i;:::-;4778:3;4771:77;4669:185;;:::o;4860:276::-;4980:4;5018:2;5007:9;5003:18;4995:26;;5031:98;5126:1;5115:9;5111:17;5102:6;5031:98;:::i;:::-;4860:276;;;;:::o;5142:118::-;5229:24;5247:5;5229:24;:::i;:::-;5224:3;5217:37;5142:118;;:::o;5266:222::-;5359:4;5397:2;5386:9;5382:18;5374:26;;5410:71;5478:1;5467:9;5463:17;5454:6;5410:71;:::i;:::-;5266:222;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::o;7636:619::-;7713:6;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:53;7974:7;7965:6;7954:9;7950:22;7929:53;:::i;:::-;7919:63;;7875:117;8031:2;8057:53;8102:7;8093:6;8082:9;8078:22;8057:53;:::i;:::-;8047:63;;8002:118;8159:2;8185:53;8230:7;8221:6;8210:9;8206:22;8185:53;:::i;:::-;8175:63;;8130:118;7636:619;;;;;:::o;8261:323::-;8317:6;8366:2;8354:9;8345:7;8341:23;8337:32;8334:119;;;8372:79;;:::i;:::-;8334:119;8492:1;8517:50;8559:7;8550:6;8539:9;8535:22;8517:50;:::i;:::-;8507:60;;8463:114;8261:323;;;;:::o;8590:474::-;8658:6;8666;8715:2;8703:9;8694:7;8690:23;8686:32;8683:119;;;8721:79;;:::i;:::-;8683:119;8841:1;8866:53;8911:7;8902:6;8891:9;8887:22;8866:53;:::i;:::-;8856:63;;8812:117;8968:2;8994:53;9039:7;9030:6;9019:9;9015:22;8994:53;:::i;:::-;8984:63;;8939:118;8590:474;;;;;:::o;9070:180::-;9118:77;9115:1;9108:88;9215:4;9212:1;9205:15;9239:4;9236:1;9229:15;9256:320;9300:6;9337:1;9331:4;9327:12;9317:22;;9384:1;9378:4;9374:12;9405:18;9395:81;;9461:4;9453:6;9449:17;9439:27;;9395:81;9523:2;9515:6;9512:14;9492:18;9489:38;9486:84;;9542:18;;:::i;:::-;9486:84;9307:269;9256:320;;;:::o;9582:182::-;9722:34;9718:1;9710:6;9706:14;9699:58;9582:182;:::o;9770:366::-;9912:3;9933:67;9997:2;9992:3;9933:67;:::i;:::-;9926:74;;10009:93;10098:3;10009:93;:::i;:::-;10127:2;10122:3;10118:12;10111:19;;9770:366;;;:::o;10142:419::-;10308:4;10346:2;10335:9;10331:18;10323:26;;10395:9;10389:4;10385:20;10381:1;10370:9;10366:17;10359:47;10423:131;10549:4;10423:131;:::i;:::-;10415:139;;10142:419;;;:::o;10567:180::-;10615:77;10612:1;10605:88;10712:4;10709:1;10702:15;10736:4;10733:1;10726:15;10753:348;10793:7;10816:20;10834:1;10816:20;:::i;:::-;10811:25;;10850:20;10868:1;10850:20;:::i;:::-;10845:25;;11038:1;10970:66;10966:74;10963:1;10960:81;10955:1;10948:9;10941:17;10937:105;10934:131;;;11045:18;;:::i;:::-;10934:131;11093:1;11090;11086:9;11075:20;;10753:348;;;;:::o;11107:180::-;11155:77;11152:1;11145:88;11252:4;11249:1;11242:15;11276:4;11273:1;11266:15;11293:185;11333:1;11350:20;11368:1;11350:20;:::i;:::-;11345:25;;11384:20;11402:1;11384:20;:::i;:::-;11379:25;;11423:1;11413:35;;11428:18;;:::i;:::-;11413:35;11470:1;11467;11463:9;11458:14;;11293:185;;;;:::o;11484:234::-;11624:34;11620:1;11612:6;11608:14;11601:58;11693:17;11688:2;11680:6;11676:15;11669:42;11484:234;:::o;11724:366::-;11866:3;11887:67;11951:2;11946:3;11887:67;:::i;:::-;11880:74;;11963:93;12052:3;11963:93;:::i;:::-;12081:2;12076:3;12072:12;12065:19;;11724:366;;;:::o;12096:419::-;12262:4;12300:2;12289:9;12285:18;12277:26;;12349:9;12343:4;12339:20;12335:1;12324:9;12320:17;12313:47;12377:131;12503:4;12377:131;:::i;:::-;12369:139;;12096:419;;;:::o;12521:305::-;12561:3;12580:20;12598:1;12580:20;:::i;:::-;12575:25;;12614:20;12632:1;12614:20;:::i;:::-;12609:25;;12768:1;12700:66;12696:74;12693:1;12690:81;12687:107;;;12774:18;;:::i;:::-;12687:107;12818:1;12815;12811:9;12804:16;;12521:305;;;;:::o;12832:179::-;12972:31;12968:1;12960:6;12956:14;12949:55;12832:179;:::o;13017:366::-;13159:3;13180:67;13244:2;13239:3;13180:67;:::i;:::-;13173:74;;13256:93;13345:3;13256:93;:::i;:::-;13374:2;13369:3;13365:12;13358:19;;13017:366;;;:::o;13389:419::-;13555:4;13593:2;13582:9;13578:18;13570:26;;13642:9;13636:4;13632:20;13628:1;13617:9;13613:17;13606:47;13670:131;13796:4;13670:131;:::i;:::-;13662:139;;13389:419;;;:::o;13814:244::-;13954:34;13950:1;13942:6;13938:14;13931:58;14023:27;14018:2;14010:6;14006:15;13999:52;13814:244;:::o;14064:366::-;14206:3;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14303:93;14392:3;14303:93;:::i;:::-;14421:2;14416:3;14412:12;14405:19;;14064:366;;;:::o;14436:419::-;14602:4;14640:2;14629:9;14625:18;14617:26;;14689:9;14683:4;14679:20;14675:1;14664:9;14660:17;14653:47;14717:131;14843:4;14717:131;:::i;:::-;14709:139;;14436:419;;;:::o;14861:221::-;15001:34;14997:1;14989:6;14985:14;14978:58;15070:4;15065:2;15057:6;15053:15;15046:29;14861:221;:::o;15088:366::-;15230:3;15251:67;15315:2;15310:3;15251:67;:::i;:::-;15244:74;;15327:93;15416:3;15327:93;:::i;:::-;15445:2;15440:3;15436:12;15429:19;;15088:366;;;:::o;15460:419::-;15626:4;15664:2;15653:9;15649:18;15641:26;;15713:9;15707:4;15703:20;15699:1;15688:9;15684:17;15677:47;15741:131;15867:4;15741:131;:::i;:::-;15733:139;;15460:419;;;:::o;15885:240::-;16025:34;16021:1;16013:6;16009:14;16002:58;16094:23;16089:2;16081:6;16077:15;16070:48;15885:240;:::o;16131:366::-;16273:3;16294:67;16358:2;16353:3;16294:67;:::i;:::-;16287:74;;16370:93;16459:3;16370:93;:::i;:::-;16488:2;16483:3;16479:12;16472:19;;16131:366;;;:::o;16503:419::-;16669:4;16707:2;16696:9;16692:18;16684:26;;16756:9;16750:4;16746:20;16742:1;16731:9;16727:17;16720:47;16784:131;16910:4;16784:131;:::i;:::-;16776:139;;16503:419;;;:::o;16928:239::-;17068:34;17064:1;17056:6;17052:14;17045:58;17137:22;17132:2;17124:6;17120:15;17113:47;16928:239;:::o;17173:366::-;17315:3;17336:67;17400:2;17395:3;17336:67;:::i;:::-;17329:74;;17412:93;17501:3;17412:93;:::i;:::-;17530:2;17525:3;17521:12;17514:19;;17173:366;;;:::o;17545:419::-;17711:4;17749:2;17738:9;17734:18;17726:26;;17798:9;17792:4;17788:20;17784:1;17773:9;17769:17;17762:47;17826:131;17952:4;17826:131;:::i;:::-;17818:139;;17545:419;;;:::o;17970:225::-;18110:34;18106:1;18098:6;18094:14;18087:58;18179:8;18174:2;18166:6;18162:15;18155:33;17970:225;:::o;18201:366::-;18343:3;18364:67;18428:2;18423:3;18364:67;:::i;:::-;18357:74;;18440:93;18529:3;18440:93;:::i;:::-;18558:2;18553:3;18549:12;18542:19;;18201:366;;;:::o;18573:419::-;18739:4;18777:2;18766:9;18762:18;18754:26;;18826:9;18820:4;18816:20;18812:1;18801:9;18797:17;18790:47;18854:131;18980:4;18854:131;:::i;:::-;18846:139;;18573:419;;;:::o;18998:177::-;19138:29;19134:1;19126:6;19122:14;19115:53;18998:177;:::o;19181:366::-;19323:3;19344:67;19408:2;19403:3;19344:67;:::i;:::-;19337:74;;19420:93;19509:3;19420:93;:::i;:::-;19538:2;19533:3;19529:12;19522:19;;19181:366;;;:::o;19553:419::-;19719:4;19757:2;19746:9;19742:18;19734:26;;19806:9;19800:4;19796:20;19792:1;19781:9;19777:17;19770:47;19834:131;19960:4;19834:131;:::i;:::-;19826:139;;19553:419;;;:::o;19978:223::-;20118:34;20114:1;20106:6;20102:14;20095:58;20187:6;20182:2;20174:6;20170:15;20163:31;19978:223;:::o;20207:366::-;20349:3;20370:67;20434:2;20429:3;20370:67;:::i;:::-;20363:74;;20446:93;20535:3;20446:93;:::i;:::-;20564:2;20559:3;20555:12;20548:19;;20207:366;;;:::o;20579:419::-;20745:4;20783:2;20772:9;20768:18;20760:26;;20832:9;20826:4;20822:20;20818:1;20807:9;20803:17;20796:47;20860:131;20986:4;20860:131;:::i;:::-;20852:139;;20579:419;;;:::o;21004:221::-;21144:34;21140:1;21132:6;21128:14;21121:58;21213:4;21208:2;21200:6;21196:15;21189:29;21004:221;:::o;21231:366::-;21373:3;21394:67;21458:2;21453:3;21394:67;:::i;:::-;21387:74;;21470:93;21559:3;21470:93;:::i;:::-;21588:2;21583:3;21579:12;21572:19;;21231:366;;;:::o;21603:419::-;21769:4;21807:2;21796:9;21792:18;21784:26;;21856:9;21850:4;21846:20;21842:1;21831:9;21827:17;21820:47;21884:131;22010:4;21884:131;:::i;:::-;21876:139;;21603:419;;;:::o;22028:224::-;22168:34;22164:1;22156:6;22152:14;22145:58;22237:7;22232:2;22224:6;22220:15;22213:32;22028:224;:::o;22258:366::-;22400:3;22421:67;22485:2;22480:3;22421:67;:::i;:::-;22414:74;;22497:93;22586:3;22497:93;:::i;:::-;22615:2;22610:3;22606:12;22599:19;;22258:366;;;:::o;22630:419::-;22796:4;22834:2;22823:9;22819:18;22811:26;;22883:9;22877:4;22873:20;22869:1;22858:9;22854:17;22847:47;22911:131;23037:4;22911:131;:::i;:::-;22903:139;;22630:419;;;:::o;23055:222::-;23195:34;23191:1;23183:6;23179:14;23172:58;23264:5;23259:2;23251:6;23247:15;23240:30;23055:222;:::o;23283:366::-;23425:3;23446:67;23510:2;23505:3;23446:67;:::i;:::-;23439:74;;23522:93;23611:3;23522:93;:::i;:::-;23640:2;23635:3;23631:12;23624:19;;23283:366;;;:::o;23655:419::-;23821:4;23859:2;23848:9;23844:18;23836:26;;23908:9;23902:4;23898:20;23894:1;23883:9;23879:17;23872:47;23936:131;24062:4;23936:131;:::i;:::-;23928:139;;23655:419;;;:::o;24080:172::-;24220:24;24216:1;24208:6;24204:14;24197:48;24080:172;:::o;24258:366::-;24400:3;24421:67;24485:2;24480:3;24421:67;:::i;:::-;24414:74;;24497:93;24586:3;24497:93;:::i;:::-;24615:2;24610:3;24606:12;24599:19;;24258:366;;;:::o;24630:419::-;24796:4;24834:2;24823:9;24819:18;24811:26;;24883:9;24877:4;24873:20;24869:1;24858:9;24854:17;24847:47;24911:131;25037:4;24911:131;:::i;:::-;24903:139;;24630:419;;;:::o;25055:174::-;25195:26;25191:1;25183:6;25179:14;25172:50;25055:174;:::o;25235:366::-;25377:3;25398:67;25462:2;25457:3;25398:67;:::i;:::-;25391:74;;25474:93;25563:3;25474:93;:::i;:::-;25592:2;25587:3;25583:12;25576:19;;25235:366;;;:::o;25607:419::-;25773:4;25811:2;25800:9;25796:18;25788:26;;25860:9;25854:4;25850:20;25846:1;25835:9;25831:17;25824:47;25888:131;26014:4;25888:131;:::i;:::-;25880:139;;25607:419;;;:::o;26032:297::-;26172:34;26168:1;26160:6;26156:14;26149:58;26241:34;26236:2;26228:6;26224:15;26217:59;26310:11;26305:2;26297:6;26293:15;26286:36;26032:297;:::o;26335:366::-;26477:3;26498:67;26562:2;26557:3;26498:67;:::i;:::-;26491:74;;26574:93;26663:3;26574:93;:::i;:::-;26692:2;26687:3;26683:12;26676:19;;26335:366;;;:::o;26707:419::-;26873:4;26911:2;26900:9;26896:18;26888:26;;26960:9;26954:4;26950:20;26946:1;26935:9;26931:17;26924:47;26988:131;27114:4;26988:131;:::i;:::-;26980:139;;26707:419;;;:::o;27132:177::-;27272:29;27268:1;27260:6;27256:14;27249:53;27132:177;:::o;27315:366::-;27457:3;27478:67;27542:2;27537:3;27478:67;:::i;:::-;27471:74;;27554:93;27643:3;27554:93;:::i;:::-;27672:2;27667:3;27663:12;27656:19;;27315:366;;;:::o;27687:419::-;27853:4;27891:2;27880:9;27876:18;27868:26;;27940:9;27934:4;27930:20;27926:1;27915:9;27911:17;27904:47;27968:131;28094:4;27968:131;:::i;:::-;27960:139;;27687:419;;;:::o;28112:241::-;28252:34;28248:1;28240:6;28236:14;28229:58;28321:24;28316:2;28308:6;28304:15;28297:49;28112:241;:::o;28359:366::-;28501:3;28522:67;28586:2;28581:3;28522:67;:::i;:::-;28515:74;;28598:93;28687:3;28598:93;:::i;:::-;28716:2;28711:3;28707:12;28700:19;;28359:366;;;:::o;28731:419::-;28897:4;28935:2;28924:9;28920:18;28912:26;;28984:9;28978:4;28974:20;28970:1;28959:9;28955:17;28948:47;29012:131;29138:4;29012:131;:::i;:::-;29004:139;;28731:419;;;:::o;29156:191::-;29196:4;29216:20;29234:1;29216:20;:::i;:::-;29211:25;;29250:20;29268:1;29250:20;:::i;:::-;29245:25;;29289:1;29286;29283:8;29280:34;;;29294:18;;:::i;:::-;29280:34;29339:1;29336;29332:9;29324:17;;29156:191;;;;:::o;29353:147::-;29454:11;29491:3;29476:18;;29353:147;;;;:::o;29506:114::-;;:::o;29626:398::-;29785:3;29806:83;29887:1;29882:3;29806:83;:::i;:::-;29799:90;;29898:93;29987:3;29898:93;:::i;:::-;30016:1;30011:3;30007:11;30000:18;;29626:398;;;:::o;30030:379::-;30214:3;30236:147;30379:3;30236:147;:::i;:::-;30229:154;;30400:3;30393:10;;30030:379;;;:::o;30415:442::-;30564:4;30602:2;30591:9;30587:18;30579:26;;30615:71;30683:1;30672:9;30668:17;30659:6;30615:71;:::i;:::-;30696:72;30764:2;30753:9;30749:18;30740:6;30696:72;:::i;:::-;30778;30846:2;30835:9;30831:18;30822:6;30778:72;:::i;:::-;30415:442;;;;;;:::o;30863:220::-;31003:34;30999:1;30991:6;30987:14;30980:58;31072:3;31067:2;31059:6;31055:15;31048:28;30863:220;:::o;31089:366::-;31231:3;31252:67;31316:2;31311:3;31252:67;:::i;:::-;31245:74;;31328:93;31417:3;31328:93;:::i;:::-;31446:2;31441:3;31437:12;31430:19;;31089:366;;;:::o;31461:419::-;31627:4;31665:2;31654:9;31650:18;31642:26;;31714:9;31708:4;31704:20;31700:1;31689:9;31685:17;31678:47;31742:131;31868:4;31742:131;:::i;:::-;31734:139;;31461:419;;;:::o;31886:180::-;31934:77;31931:1;31924:88;32031:4;32028:1;32021:15;32055:4;32052:1;32045:15;32072:180;32120:77;32117:1;32110:88;32217:4;32214:1;32207:15;32241:4;32238:1;32231:15;32258:143;32315:5;32346:6;32340:13;32331:22;;32362:33;32389:5;32362:33;:::i;:::-;32258:143;;;;:::o;32407:351::-;32477:6;32526:2;32514:9;32505:7;32501:23;32497:32;32494:119;;;32532:79;;:::i;:::-;32494:119;32652:1;32677:64;32733:7;32724:6;32713:9;32709:22;32677:64;:::i;:::-;32667:74;;32623:128;32407:351;;;;:::o;32764:85::-;32809:7;32838:5;32827:16;;32764:85;;;:::o;32855:158::-;32913:9;32946:61;32964:42;32973:32;32999:5;32973:32;:::i;:::-;32964:42;:::i;:::-;32946:61;:::i;:::-;32933:74;;32855:158;;;:::o;33019:147::-;33114:45;33153:5;33114:45;:::i;:::-;33109:3;33102:58;33019:147;;:::o;33172:114::-;33239:6;33273:5;33267:12;33257:22;;33172:114;;;:::o;33292:184::-;33391:11;33425:6;33420:3;33413:19;33465:4;33460:3;33456:14;33441:29;;33292:184;;;;:::o;33482:132::-;33549:4;33572:3;33564:11;;33602:4;33597:3;33593:14;33585:22;;33482:132;;;:::o;33620:108::-;33697:24;33715:5;33697:24;:::i;:::-;33692:3;33685:37;33620:108;;:::o;33734:179::-;33803:10;33824:46;33866:3;33858:6;33824:46;:::i;:::-;33902:4;33897:3;33893:14;33879:28;;33734:179;;;;:::o;33919:113::-;33989:4;34021;34016:3;34012:14;34004:22;;33919:113;;;:::o;34068:732::-;34187:3;34216:54;34264:5;34216:54;:::i;:::-;34286:86;34365:6;34360:3;34286:86;:::i;:::-;34279:93;;34396:56;34446:5;34396:56;:::i;:::-;34475:7;34506:1;34491:284;34516:6;34513:1;34510:13;34491:284;;;34592:6;34586:13;34619:63;34678:3;34663:13;34619:63;:::i;:::-;34612:70;;34705:60;34758:6;34705:60;:::i;:::-;34695:70;;34551:224;34538:1;34535;34531:9;34526:14;;34491:284;;;34495:14;34791:3;34784:10;;34192:608;;;34068:732;;;;:::o;34806:831::-;35069:4;35107:3;35096:9;35092:19;35084:27;;35121:71;35189:1;35178:9;35174:17;35165:6;35121:71;:::i;:::-;35202:80;35278:2;35267:9;35263:18;35254:6;35202:80;:::i;:::-;35329:9;35323:4;35319:20;35314:2;35303:9;35299:18;35292:48;35357:108;35460:4;35451:6;35357:108;:::i;:::-;35349:116;;35475:72;35543:2;35532:9;35528:18;35519:6;35475:72;:::i;:::-;35557:73;35625:3;35614:9;35610:19;35601:6;35557:73;:::i;:::-;34806:831;;;;;;;;:::o;35643:807::-;35892:4;35930:3;35919:9;35915:19;35907:27;;35944:71;36012:1;36001:9;35997:17;35988:6;35944:71;:::i;:::-;36025:72;36093:2;36082:9;36078:18;36069:6;36025:72;:::i;:::-;36107:80;36183:2;36172:9;36168:18;36159:6;36107:80;:::i;:::-;36197;36273:2;36262:9;36258:18;36249:6;36197:80;:::i;:::-;36287:73;36355:3;36344:9;36340:19;36331:6;36287:73;:::i;:::-;36370;36438:3;36427:9;36423:19;36414:6;36370:73;:::i;:::-;35643:807;;;;;;;;;:::o;36456:143::-;36513:5;36544:6;36538:13;36529:22;;36560:33;36587:5;36560:33;:::i;:::-;36456:143;;;;:::o;36605:663::-;36693:6;36701;36709;36758:2;36746:9;36737:7;36733:23;36729:32;36726:119;;;36764:79;;:::i;:::-;36726:119;36884:1;36909:64;36965:7;36956:6;36945:9;36941:22;36909:64;:::i;:::-;36899:74;;36855:128;37022:2;37048:64;37104:7;37095:6;37084:9;37080:22;37048:64;:::i;:::-;37038:74;;36993:129;37161:2;37187:64;37243:7;37234:6;37223:9;37219:22;37187:64;:::i;:::-;37177:74;;37132:129;36605:663;;;;;:::o

Swarm Source

ipfs://1856d81aa501816a92e503040467c14050df65e37ebf90728c8b60121ac0f932
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.