ETH Price: $3,298.41 (-0.43%)
Gas: 10 Gwei

Token

Verified Coin (VERIFIED)
 

Overview

Max Total Supply

66,825.017051468426736619 VERIFIED

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,462.817635777052077792 VERIFIED

Value
$0.00
0x14ccbacec1f7dd883b8409517915e72f56f130d6
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:
CA

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// $VERIFIED  :  Verified Burns on every Buy and Sell

// Forever-burning hyper-deflationary token that gains value with every buy and sell transaction - all tax  will be used to burn tokens from supply.

// Tokenomics is designed in a way that will keep burning $VERIFIED tokens forever on the blockchain.  This will rapidly increase the price of each individual $VERIFIED due to scarcity as the total supply rapidly diminishes.

// Buy Tax: 5% Real Burn 
// Sell Tax: 20% Real Burn 

// All Burns can be "verified" on etherscan


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

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

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

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

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

    function initialize(address, address) external;
}

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

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

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


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

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 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;
}

pragma solidity 0.8.9;

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

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

    bool private swapping;
        
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public supply;

    address public devWallet;
    
    bool public limitsInEffect = true;
    bool public tradingActive = true;
    bool public swapEnabled = true;

    mapping(address => uint256) private _holderLastTransferTimestamp;

    bool public transferDelayEnabled = true;

    uint256 public buyBurnFee;
    uint256 public buyDevFee;
    uint256 public buyTotalFees;

    uint256 public sellBurnFee;
    uint256 public sellDevFee;
    uint256 public sellTotalFees;   
    
    uint256 public tokensForBurn;
    uint256 public tokensForDev;

    uint256 public walletDigit;
    uint256 public transDigit;
    uint256 public delayDigit;
    
    /******************/

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

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Verified Coin", "VERIFIED") {
        
        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 _buyBurnFee = 3;
        uint256 _buyDevFee = 2;

        uint256 _sellBurnFee =16;
        uint256 _sellDevFee = 4;
        
        uint256 totalSupply = 10 * 1e4 * 1e18;
        supply += totalSupply;
        
        walletDigit = 100;
        transDigit = 100;
        delayDigit = 1;

        maxTransactionAmount = supply * transDigit / 100;
        swapTokensAtAmount = supply * 10 / 10000;
        maxWallet = supply * walletDigit / 100;

        buyBurnFee = _buyBurnFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyBurnFee + buyDevFee;
        
        sellBurnFee = _sellBurnFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellBurnFee + sellDevFee;
        
        devWallet =  0xFBF164056278dedB3d62b13dE07b69657d415DFB;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _approve(owner(), address(uniswapV2Router), totalSupply);
        _mint(msg.sender, totalSupply);

    }

    receive() external payable {

  	}

    function enableTrading() external onlyOwner {
        buyBurnFee = 3;
        buyDevFee = 2;
        buyTotalFees = buyBurnFee + buyDevFee;

        sellBurnFee = 16;
        sellDevFee = 4;
        sellTotalFees = sellBurnFee + sellDevFee;

        delayDigit = 1;
    }
    
    function updateTransDigit(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        transDigit = newNum;
        updateLimits();
    }

    function updateWalletDigit(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        walletDigit = newNum;
        updateLimits();
    }

    function updateDelayDigit(uint256 newNum) external onlyOwner{
        delayDigit = newNum;
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    function updateBuyFees(uint256 _burnFee, uint256 _devFee) external onlyOwner {
        buyBurnFee = _burnFee;
        buyDevFee = _devFee;
        buyTotalFees = buyBurnFee + buyDevFee;
        require(buyTotalFees <= 90, "Must keep fees at 90% or less");
    }
    
    function updateSellFees(uint256 _burnFee, uint256 _devFee) external onlyOwner {
        sellBurnFee = _burnFee;
        sellDevFee = _devFee;
        sellTotalFees = sellBurnFee + sellDevFee;
        require(sellTotalFees <= 90, "Must keep fees at 90% or less");
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

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

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

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public 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.");
                }

                // 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 + delayDigit;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( 
            canSwap &&
            !swapping &&
            swapEnabled &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            
            swapBack();

            swapping = false;
        }
        
        bool takeFee = !swapping;

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;

        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForBurn += fees * sellBurnFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
            }

            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {

        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForBurn += fees * buyBurnFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
                if (tokensForBurn > 0) {
                    _burn(address(this), tokensForBurn);
                    supply = totalSupply();
                    updateLimits();
                    tokensForBurn = 0;
                }
            }
        	
        	amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
        
        if(contractBalance == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance); 
        
        tokensForDev = 0;

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"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":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"delayDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateDelayDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateTransDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateWalletDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600d81526020017f566572696669656420436f696e000000000000000000000000000000000000008152506040518060400160405280600881526020017f564552494649454400000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000d6b565b5080600490805190602001906200011b92919062000d6b565b5050506000620001306200066460201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200066c60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000e85565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000e85565b6040518363ffffffff1660e01b81526004016200036e92919062000ec8565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000e85565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200066c60201b60201c565b6200042160a05160016200076960201b60201c565b600060039050600060029050600060109050600060049050600069152d02c7e14af6800000905080600960008282546200045c919062000f2e565b9250508190555060646015819055506064601681905550600160178190555060646016546009546200048f919062000f8b565b6200049b91906200101b565b600681905550612710600a600954620004b5919062000f8b565b620004c191906200101b565b6007819055506064601554600954620004db919062000f8b565b620004e791906200101b565b60088190555084600d8190555083600e81905550600e54600d546200050d919062000f2e565b600f81905550826010819055508160118190555060115460105462000533919062000f2e565b60128190555073fbf164056278dedb3d62b13de07b69657d415dfb600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005b0620005a26200080a60201b60201c565b60016200083460201b60201c565b620005c33060016200083460201b60201c565b620005d861dead60016200083460201b60201c565b620005fa620005ec6200080a60201b60201c565b60016200066c60201b60201c565b6200060d3060016200066c60201b60201c565b6200062261dead60016200066c60201b60201c565b62000646620006366200080a60201b60201c565b608051836200098160201b60201c565b62000658338262000b5460201b60201c565b505050505050620013b7565b600033905090565b6200067c6200066460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200070e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070590620010b4565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008446200066460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cd90620010b4565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009759190620010f3565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009eb9062001186565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a5e906200121e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b47919062001251565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000bc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bbe90620012be565b60405180910390fd5b62000bdb6000838362000d0360201b60201c565b62000bf78160025462000d0860201b62001e911790919060201c565b60028190555062000c55816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000d0860201b62001e911790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000cf7919062001251565b60405180910390a35050565b505050565b600080828462000d19919062000f2e565b90508381101562000d61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d589062001330565b60405180910390fd5b8091505092915050565b82805462000d799062001381565b90600052602060002090601f01602090048101928262000d9d576000855562000de9565b82601f1062000db857805160ff191683800117855562000de9565b8280016001018555821562000de9579182015b8281111562000de857825182559160200191906001019062000dcb565b5b50905062000df8919062000dfc565b5090565b5b8082111562000e1757600081600090555060010162000dfd565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e4d8262000e20565b9050919050565b62000e5f8162000e40565b811462000e6b57600080fd5b50565b60008151905062000e7f8162000e54565b92915050565b60006020828403121562000e9e5762000e9d62000e1b565b5b600062000eae8482850162000e6e565b91505092915050565b62000ec28162000e40565b82525050565b600060408201905062000edf600083018562000eb7565b62000eee602083018462000eb7565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f3b8262000ef5565b915062000f488362000ef5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f805762000f7f62000eff565b5b828201905092915050565b600062000f988262000ef5565b915062000fa58362000ef5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fe15762000fe062000eff565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010288262000ef5565b9150620010358362000ef5565b92508262001048576200104762000fec565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200109c60208362001053565b9150620010a98262001064565b602082019050919050565b60006020820190508181036000830152620010cf816200108d565b9050919050565b60008115159050919050565b620010ed81620010d6565b82525050565b60006020820190506200110a6000830184620010e2565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116e60248362001053565b91506200117b8262001110565b604082019050919050565b60006020820190508181036000830152620011a1816200115f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200120660228362001053565b91506200121382620011a8565b604082019050919050565b600060208201905081810360008301526200123981620011f7565b9050919050565b6200124b8162000ef5565b82525050565b600060208201905062001268600083018462001240565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620012a6601f8362001053565b9150620012b3826200126e565b602082019050919050565b60006020820190508181036000830152620012d98162001297565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001318601b8362001053565b91506200132582620012e0565b602082019050919050565b600060208201905081810360008301526200134b8162001309565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200139a57607f821691505b60208210811415620013b157620013b062001352565b5b50919050565b60805160a05161495e62001407600039600081816111ac0152818161185a01526124e2015260008181610e4b0152818161248a0152818161353c0152818161362c0152613653015261495e6000f3fe6080604052600436106102cd5760003560e01c80638a8c523c11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638a8c523c146107585780638da5cb5b1461076f5780638ea5220f1461079a57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137d1565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b6040516103249190613820565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138d4565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613954565b610d54565b60405161038c91906139af565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139ca565b610d72565b6040516103c991906139af565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139f7565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613a83565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b6040516104489190613820565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139ca565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c9190613820565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906139f7565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a9e565b61100f565b60405161050291906139af565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613b00565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b37565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613954565b6110f7565b60405161059591906139af565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613b00565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139af565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139ca565b6111e1565b60405161062891906139af565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137d1565b611237565b005b34801561066657600080fd5b5061066f61133c565b60405161067c9190613820565b60405180910390f35b34801561069157600080fd5b5061069a611342565b6040516106a791906139af565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139ca565b611355565b6040516106e49190613820565b60405180910390f35b3480156106f957600080fd5b5061070261139d565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b7e565b6114f5565b005b34801561073957600080fd5b506107426115e7565b60405161074f9190613820565b60405180910390f35b34801561076457600080fd5b5061076d6115ed565b005b34801561077b57600080fd5b506107846116d9565b6040516107919190613b00565b60405180910390f35b3480156107a657600080fd5b506107af611703565b6040516107bc9190613b00565b60405180910390f35b3480156107d157600080fd5b506107da611729565b6040516107e791906138d4565b60405180910390f35b3480156107fc57600080fd5b506108056117bb565b6040516108129190613820565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b7e565b6117c1565b005b34801561085057600080fd5b506108596118f5565b6040516108669190613820565b60405180910390f35b34801561087b57600080fd5b506108846118fb565b6040516108919190613820565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc91906139f7565b611901565b005b3480156108cf57600080fd5b506108d86119a2565b6040516108e59190613820565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613954565b6119a8565b60405161092291906139af565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613954565b611a75565b60405161095f91906139af565b60405180910390f35b34801561097457600080fd5b5061097d611a93565b60405161098a9190613820565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139ca565b611a99565b6040516109c791906139af565b60405180910390f35b3480156109dc57600080fd5b506109e5611ab9565b6040516109f291906139af565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b7e565b611acc565b005b348015610a3057600080fd5b50610a39611c0c565b604051610a4691906139af565b60405180910390f35b348015610a5b57600080fd5b50610a64611c1f565b604051610a719190613820565b60405180910390f35b348015610a8657600080fd5b50610a8f611c25565b604051610a9c9190613820565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bbe565b611c2b565b604051610ad99190613820565b60405180910390f35b348015610aee57600080fd5b50610af7611cb2565b604051610b049190613820565b60405180910390f35b348015610b1957600080fd5b50610b22611cb8565b604051610b2f9190613820565b60405180910390f35b348015610b4457600080fd5b50610b4d611cbe565b604051610b5a9190613820565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139ca565b611cc4565b005b348015610b9857600080fd5b50610ba1611e8b565b604051610bae9190613820565b60405180910390f35b610bbf611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c4a565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613c99565b601281905550605a6012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d3b565b60405180910390fd5b5050565b60095481565b606060038054610cd190613d8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613d8a565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611eef565b8484611ef7565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c4a565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120c2565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e7f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c4a565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c4a565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120c2565b50565b600061101c84848461212a565b6110dd84611028611eef565b6110d8856040518060600160405280602881526020016148dc60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b600190509392505050565b61dead81565b60006012905090565b60006111a0611104611eef565b8461119b8560016000611115611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b611ef7565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c4a565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613c99565b600f81905550605a600f541115611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613d3b565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a5611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fd611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613c4a565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6115f5611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613c4a565b60405180910390fd5b6003600d819055506002600e81905550600e54600d546116a49190613c99565b600f819055506010808190555060046011819055506011546010546116c99190613c99565b6012819055506001601781905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461173890613d8a565b80601f016020809104026020016040519081016040528092919081815260200182805461176490613d8a565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b5050505050905090565b60165481565b6117c9611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613c4a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613e2e565b60405180910390fd5b6118f18282612e05565b5050565b600e5481565b60145481565b611909611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90613c4a565b60405180910390fd5b8060178190555050565b60115481565b6000611a6b6119b5611eef565b84611a668560405180606001604052806025815260200161490460259139600160006119df611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b6001905092915050565b6000611a89611a82611eef565b848461212a565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611ad4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90613c4a565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c0091906139af565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611ccc611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613ec0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611ea09190613c99565b905083811015611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613f2c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613fbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90614050565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120b59190613820565b60405180910390a3505050565b60646016546009546120d49190614070565b6120de91906140f9565b600681905550612710600a6009546120f69190614070565b61210091906140f9565b60078190555060646015546009546121189190614070565b61212291906140f9565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121919061419c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122019061422e565b60405180910390fd5b60008114156122245761221f83836000612ea6565b612d9c565b600a60149054906101000a900460ff16156128f4576122416116d9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122af575061227f6116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612322575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233b5750600560149054906101000a900460ff16155b156128f357600a60159054906101000a900460ff1661243557601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b9061429a565b60405180910390fd5b5b600c60009054906101000a900460ff161561260a576124526116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124d957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126095743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ae90614352565b60405180910390fd5b601754436125c59190613c99565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126ad5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612754576006548111156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee906143e4565b60405180910390fd5b60085461270383611355565b8261270e9190613c99565b111561274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690614450565b60405180910390fd5b6128f2565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f75750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561284657600654811115612841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612838906144e2565b60405180910390fd5b6128f1565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128f0576008546128a383611355565b826128ae9190613c99565b11156128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e690614450565b60405180910390fd5b5b5b5b5b5b60006128ff30611355565b9050600060075482101590508080156129255750600560149054906101000a900460ff16155b801561293d5750600a60169054906101000a900460ff165b80156129935750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129e95750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a3f5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a83576001600560146101000a81548160ff021916908315150217905550612a6761313b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b395750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b4357600090505b60008115612d8c57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ba657506000601254115b15612c4057612bd36064612bc56012548861322590919063ffffffff16565b6132a090919063ffffffff16565b905060125460105482612be69190614070565b612bf091906140f9565b60136000828254612c019190613c99565b9250508190555060125460115482612c199190614070565b612c2391906140f9565b60146000828254612c349190613c99565b92505081905550612d32565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c9b57506000600f54115b15612d3157612cc86064612cba600f548861322590919063ffffffff16565b6132a090919063ffffffff16565b9050600f54600d5482612cdb9190614070565b612ce591906140f9565b60136000828254612cf69190613c99565b92505081905550600f54600e5482612d0e9190614070565b612d1891906140f9565b60146000828254612d299190613c99565b925050819055505b5b6000811115612d7d57612d46873083612ea6565b60006013541115612d7c57612d5d306013546132ea565b612d65610e6d565b600981905550612d736120c2565b60006013819055505b5b8085612d899190614502565b94505b612d97878787612ea6565b505050505b505050565b6000838311158290612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de091906138d4565b60405180910390fd5b5060008385612df89190614502565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0d9061419c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7d9061422e565b60405180910390fd5b612f91838383613498565b612ffc816040518060600160405280602681526020016148b6602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061308f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161312e9190613820565b60405180910390a3505050565b600061314630611355565b9050600080821415613159575050613223565b60146007546131689190614070565b82111561318157601460075461317e9190614070565b91505b61318a8261349d565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d890614567565b60006040518083038185875af1925050503d8060008114613215576040519150601f19603f3d011682016040523d82523d6000602084013e61321a565b606091505b50508091505050505b565b600080831415613238576000905061329a565b600082846132469190614070565b905082848261325591906140f9565b14613295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328c906145ee565b60405180910390fd5b809150505b92915050565b60006132e283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136e9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561335a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335190614680565b60405180910390fd5b61336682600083613498565b6133d181604051806060016040528060228152602001614894602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134288160025461374c90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161348c9190613820565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134ba576134b96146a0565b5b6040519080825280602002602001820160405280156134e85781602001602082028036833780820191505090505b5090503081600081518110613500576134ff6146cf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135a057600080fd5b505afa1580156135b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d89190614713565b816001815181106135ec576135eb6146cf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613651307f000000000000000000000000000000000000000000000000000000000000000084611ef7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b3959493929190614839565b600060405180830381600087803b1580156136cd57600080fd5b505af11580156136e1573d6000803e3d6000fd5b505050505050565b60008083118290613730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372791906138d4565b60405180910390fd5b506000838561373f91906140f9565b9050809150509392505050565b600061378e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612da1565b905092915050565b600080fd5b6000819050919050565b6137ae8161379b565b81146137b957600080fd5b50565b6000813590506137cb816137a5565b92915050565b600080604083850312156137e8576137e7613796565b5b60006137f6858286016137bc565b9250506020613807858286016137bc565b9150509250929050565b61381a8161379b565b82525050565b60006020820190506138356000830184613811565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561387557808201518184015260208101905061385a565b83811115613884576000848401525b50505050565b6000601f19601f8301169050919050565b60006138a68261383b565b6138b08185613846565b93506138c0818560208601613857565b6138c98161388a565b840191505092915050565b600060208201905081810360008301526138ee818461389b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613921826138f6565b9050919050565b61393181613916565b811461393c57600080fd5b50565b60008135905061394e81613928565b92915050565b6000806040838503121561396b5761396a613796565b5b60006139798582860161393f565b925050602061398a858286016137bc565b9150509250929050565b60008115159050919050565b6139a981613994565b82525050565b60006020820190506139c460008301846139a0565b92915050565b6000602082840312156139e0576139df613796565b5b60006139ee8482850161393f565b91505092915050565b600060208284031215613a0d57613a0c613796565b5b6000613a1b848285016137bc565b91505092915050565b6000819050919050565b6000613a49613a44613a3f846138f6565b613a24565b6138f6565b9050919050565b6000613a5b82613a2e565b9050919050565b6000613a6d82613a50565b9050919050565b613a7d81613a62565b82525050565b6000602082019050613a986000830184613a74565b92915050565b600080600060608486031215613ab757613ab6613796565b5b6000613ac58682870161393f565b9350506020613ad68682870161393f565b9250506040613ae7868287016137bc565b9150509250925092565b613afa81613916565b82525050565b6000602082019050613b156000830184613af1565b92915050565b600060ff82169050919050565b613b3181613b1b565b82525050565b6000602082019050613b4c6000830184613b28565b92915050565b613b5b81613994565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b94613796565b5b6000613ba38582860161393f565b9250506020613bb485828601613b69565b9150509250929050565b60008060408385031215613bd557613bd4613796565b5b6000613be38582860161393f565b9250506020613bf48582860161393f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c34602083613846565b9150613c3f82613bfe565b602082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ca48261379b565b9150613caf8361379b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce457613ce3613c6a565b5b828201905092915050565b7f4d757374206b656570206665657320617420393025206f72206c657373000000600082015250565b6000613d25601d83613846565b9150613d3082613cef565b602082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613da257607f821691505b60208210811415613db657613db5613d5b565b5b50919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e18603983613846565b9150613e2382613dbc565b604082019050919050565b60006020820190508181036000830152613e4781613e0b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eaa602683613846565b9150613eb582613e4e565b604082019050919050565b60006020820190508181036000830152613ed981613e9d565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f16601b83613846565b9150613f2182613ee0565b602082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fa8602483613846565b9150613fb382613f4c565b604082019050919050565b60006020820190508181036000830152613fd781613f9b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061403a602283613846565b915061404582613fde565b604082019050919050565b600060208201905081810360008301526140698161402d565b9050919050565b600061407b8261379b565b91506140868361379b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140bf576140be613c6a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141048261379b565b915061410f8361379b565b92508261411f5761411e6140ca565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614186602583613846565b91506141918261412a565b604082019050919050565b600060208201905081810360008301526141b581614179565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614218602383613846565b9150614223826141bc565b604082019050919050565b600060208201905081810360008301526142478161420b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614284601683613846565b915061428f8261424e565b602082019050919050565b600060208201905081810360008301526142b381614277565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061433c604983613846565b9150614347826142ba565b606082019050919050565b6000602082019050818103600083015261436b8161432f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006143ce603583613846565b91506143d982614372565b604082019050919050565b600060208201905081810360008301526143fd816143c1565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061443a601383613846565b915061444582614404565b602082019050919050565b600060208201905081810360008301526144698161442d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006144cc603683613846565b91506144d782614470565b604082019050919050565b600060208201905081810360008301526144fb816144bf565b9050919050565b600061450d8261379b565b91506145188361379b565b92508282101561452b5761452a613c6a565b5b828203905092915050565b600081905092915050565b50565b6000614551600083614536565b915061455c82614541565b600082019050919050565b600061457282614544565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006145d8602183613846565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061466a602183613846565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061470d81613928565b92915050565b60006020828403121561472957614728613796565b5b6000614737848285016146fe565b91505092915050565b6000819050919050565b600061476561476061475b84614740565b613a24565b61379b565b9050919050565b6147758161474a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6147b081613916565b82525050565b60006147c283836147a7565b60208301905092915050565b6000602082019050919050565b60006147e68261477b565b6147f08185614786565b93506147fb83614797565b8060005b8381101561482c57815161481388826147b6565b975061481e836147ce565b9250506001810190506147ff565b5085935050505092915050565b600060a08201905061484e6000830188613811565b61485b602083018761476c565b818103604083015261486d81866147db565b905061487c6060830185613af1565b6148896080830184613811565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e344cc0672935f400f47407f7ef9d3e7defcd6579ce87f88906803e6226748d864736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80638a8c523c11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638a8c523c146107585780638da5cb5b1461076f5780638ea5220f1461079a57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137d1565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b6040516103249190613820565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138d4565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613954565b610d54565b60405161038c91906139af565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139ca565b610d72565b6040516103c991906139af565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139f7565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613a83565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b6040516104489190613820565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139ca565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c9190613820565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906139f7565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a9e565b61100f565b60405161050291906139af565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613b00565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b37565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613954565b6110f7565b60405161059591906139af565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613b00565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139af565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139ca565b6111e1565b60405161062891906139af565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137d1565b611237565b005b34801561066657600080fd5b5061066f61133c565b60405161067c9190613820565b60405180910390f35b34801561069157600080fd5b5061069a611342565b6040516106a791906139af565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139ca565b611355565b6040516106e49190613820565b60405180910390f35b3480156106f957600080fd5b5061070261139d565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b7e565b6114f5565b005b34801561073957600080fd5b506107426115e7565b60405161074f9190613820565b60405180910390f35b34801561076457600080fd5b5061076d6115ed565b005b34801561077b57600080fd5b506107846116d9565b6040516107919190613b00565b60405180910390f35b3480156107a657600080fd5b506107af611703565b6040516107bc9190613b00565b60405180910390f35b3480156107d157600080fd5b506107da611729565b6040516107e791906138d4565b60405180910390f35b3480156107fc57600080fd5b506108056117bb565b6040516108129190613820565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b7e565b6117c1565b005b34801561085057600080fd5b506108596118f5565b6040516108669190613820565b60405180910390f35b34801561087b57600080fd5b506108846118fb565b6040516108919190613820565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc91906139f7565b611901565b005b3480156108cf57600080fd5b506108d86119a2565b6040516108e59190613820565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613954565b6119a8565b60405161092291906139af565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613954565b611a75565b60405161095f91906139af565b60405180910390f35b34801561097457600080fd5b5061097d611a93565b60405161098a9190613820565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139ca565b611a99565b6040516109c791906139af565b60405180910390f35b3480156109dc57600080fd5b506109e5611ab9565b6040516109f291906139af565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b7e565b611acc565b005b348015610a3057600080fd5b50610a39611c0c565b604051610a4691906139af565b60405180910390f35b348015610a5b57600080fd5b50610a64611c1f565b604051610a719190613820565b60405180910390f35b348015610a8657600080fd5b50610a8f611c25565b604051610a9c9190613820565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bbe565b611c2b565b604051610ad99190613820565b60405180910390f35b348015610aee57600080fd5b50610af7611cb2565b604051610b049190613820565b60405180910390f35b348015610b1957600080fd5b50610b22611cb8565b604051610b2f9190613820565b60405180910390f35b348015610b4457600080fd5b50610b4d611cbe565b604051610b5a9190613820565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139ca565b611cc4565b005b348015610b9857600080fd5b50610ba1611e8b565b604051610bae9190613820565b60405180910390f35b610bbf611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c4a565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613c99565b601281905550605a6012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d3b565b60405180910390fd5b5050565b60095481565b606060038054610cd190613d8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613d8a565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611eef565b8484611ef7565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c4a565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120c2565b50565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e7f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c4a565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c4a565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120c2565b50565b600061101c84848461212a565b6110dd84611028611eef565b6110d8856040518060600160405280602881526020016148dc60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b600190509392505050565b61dead81565b60006012905090565b60006111a0611104611eef565b8461119b8560016000611115611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b611ef7565b6001905092915050565b7f000000000000000000000000b2fa2a111391bc607c9906b4154f6e396b36f26e81565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c4a565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613c99565b600f81905550605a600f541115611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613d3b565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a5611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fd611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613c4a565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6115f5611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613c4a565b60405180910390fd5b6003600d819055506002600e81905550600e54600d546116a49190613c99565b600f819055506010808190555060046011819055506011546010546116c99190613c99565b6012819055506001601781905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461173890613d8a565b80601f016020809104026020016040519081016040528092919081815260200182805461176490613d8a565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b5050505050905090565b60165481565b6117c9611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613c4a565b60405180910390fd5b7f000000000000000000000000b2fa2a111391bc607c9906b4154f6e396b36f26e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613e2e565b60405180910390fd5b6118f18282612e05565b5050565b600e5481565b60145481565b611909611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90613c4a565b60405180910390fd5b8060178190555050565b60115481565b6000611a6b6119b5611eef565b84611a668560405180606001604052806025815260200161490460259139600160006119df611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b6001905092915050565b6000611a89611a82611eef565b848461212a565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611ad4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90613c4a565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c0091906139af565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611ccc611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613ec0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611ea09190613c99565b905083811015611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613f2c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613fbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90614050565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120b59190613820565b60405180910390a3505050565b60646016546009546120d49190614070565b6120de91906140f9565b600681905550612710600a6009546120f69190614070565b61210091906140f9565b60078190555060646015546009546121189190614070565b61212291906140f9565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121919061419c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122019061422e565b60405180910390fd5b60008114156122245761221f83836000612ea6565b612d9c565b600a60149054906101000a900460ff16156128f4576122416116d9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122af575061227f6116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612322575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233b5750600560149054906101000a900460ff16155b156128f357600a60159054906101000a900460ff1661243557601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b9061429a565b60405180910390fd5b5b600c60009054906101000a900460ff161561260a576124526116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124d957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253157507f000000000000000000000000b2fa2a111391bc607c9906b4154f6e396b36f26e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126095743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ae90614352565b60405180910390fd5b601754436125c59190613c99565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126ad5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612754576006548111156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee906143e4565b60405180910390fd5b60085461270383611355565b8261270e9190613c99565b111561274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690614450565b60405180910390fd5b6128f2565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f75750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561284657600654811115612841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612838906144e2565b60405180910390fd5b6128f1565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128f0576008546128a383611355565b826128ae9190613c99565b11156128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e690614450565b60405180910390fd5b5b5b5b5b5b60006128ff30611355565b9050600060075482101590508080156129255750600560149054906101000a900460ff16155b801561293d5750600a60169054906101000a900460ff165b80156129935750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129e95750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a3f5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a83576001600560146101000a81548160ff021916908315150217905550612a6761313b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b395750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b4357600090505b60008115612d8c57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ba657506000601254115b15612c4057612bd36064612bc56012548861322590919063ffffffff16565b6132a090919063ffffffff16565b905060125460105482612be69190614070565b612bf091906140f9565b60136000828254612c019190613c99565b9250508190555060125460115482612c199190614070565b612c2391906140f9565b60146000828254612c349190613c99565b92505081905550612d32565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c9b57506000600f54115b15612d3157612cc86064612cba600f548861322590919063ffffffff16565b6132a090919063ffffffff16565b9050600f54600d5482612cdb9190614070565b612ce591906140f9565b60136000828254612cf69190613c99565b92505081905550600f54600e5482612d0e9190614070565b612d1891906140f9565b60146000828254612d299190613c99565b925050819055505b5b6000811115612d7d57612d46873083612ea6565b60006013541115612d7c57612d5d306013546132ea565b612d65610e6d565b600981905550612d736120c2565b60006013819055505b5b8085612d899190614502565b94505b612d97878787612ea6565b505050505b505050565b6000838311158290612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de091906138d4565b60405180910390fd5b5060008385612df89190614502565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0d9061419c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7d9061422e565b60405180910390fd5b612f91838383613498565b612ffc816040518060600160405280602681526020016148b6602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061308f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161312e9190613820565b60405180910390a3505050565b600061314630611355565b9050600080821415613159575050613223565b60146007546131689190614070565b82111561318157601460075461317e9190614070565b91505b61318a8261349d565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d890614567565b60006040518083038185875af1925050503d8060008114613215576040519150601f19603f3d011682016040523d82523d6000602084013e61321a565b606091505b50508091505050505b565b600080831415613238576000905061329a565b600082846132469190614070565b905082848261325591906140f9565b14613295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328c906145ee565b60405180910390fd5b809150505b92915050565b60006132e283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136e9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561335a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335190614680565b60405180910390fd5b61336682600083613498565b6133d181604051806060016040528060228152602001614894602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134288160025461374c90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161348c9190613820565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134ba576134b96146a0565b5b6040519080825280602002602001820160405280156134e85781602001602082028036833780820191505090505b5090503081600081518110613500576134ff6146cf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135a057600080fd5b505afa1580156135b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d89190614713565b816001815181106135ec576135eb6146cf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613651307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ef7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b3959493929190614839565b600060405180830381600087803b1580156136cd57600080fd5b505af11580156136e1573d6000803e3d6000fd5b505050505050565b60008083118290613730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372791906138d4565b60405180910390fd5b506000838561373f91906140f9565b9050809150509392505050565b600061378e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612da1565b905092915050565b600080fd5b6000819050919050565b6137ae8161379b565b81146137b957600080fd5b50565b6000813590506137cb816137a5565b92915050565b600080604083850312156137e8576137e7613796565b5b60006137f6858286016137bc565b9250506020613807858286016137bc565b9150509250929050565b61381a8161379b565b82525050565b60006020820190506138356000830184613811565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561387557808201518184015260208101905061385a565b83811115613884576000848401525b50505050565b6000601f19601f8301169050919050565b60006138a68261383b565b6138b08185613846565b93506138c0818560208601613857565b6138c98161388a565b840191505092915050565b600060208201905081810360008301526138ee818461389b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613921826138f6565b9050919050565b61393181613916565b811461393c57600080fd5b50565b60008135905061394e81613928565b92915050565b6000806040838503121561396b5761396a613796565b5b60006139798582860161393f565b925050602061398a858286016137bc565b9150509250929050565b60008115159050919050565b6139a981613994565b82525050565b60006020820190506139c460008301846139a0565b92915050565b6000602082840312156139e0576139df613796565b5b60006139ee8482850161393f565b91505092915050565b600060208284031215613a0d57613a0c613796565b5b6000613a1b848285016137bc565b91505092915050565b6000819050919050565b6000613a49613a44613a3f846138f6565b613a24565b6138f6565b9050919050565b6000613a5b82613a2e565b9050919050565b6000613a6d82613a50565b9050919050565b613a7d81613a62565b82525050565b6000602082019050613a986000830184613a74565b92915050565b600080600060608486031215613ab757613ab6613796565b5b6000613ac58682870161393f565b9350506020613ad68682870161393f565b9250506040613ae7868287016137bc565b9150509250925092565b613afa81613916565b82525050565b6000602082019050613b156000830184613af1565b92915050565b600060ff82169050919050565b613b3181613b1b565b82525050565b6000602082019050613b4c6000830184613b28565b92915050565b613b5b81613994565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b94613796565b5b6000613ba38582860161393f565b9250506020613bb485828601613b69565b9150509250929050565b60008060408385031215613bd557613bd4613796565b5b6000613be38582860161393f565b9250506020613bf48582860161393f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c34602083613846565b9150613c3f82613bfe565b602082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ca48261379b565b9150613caf8361379b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce457613ce3613c6a565b5b828201905092915050565b7f4d757374206b656570206665657320617420393025206f72206c657373000000600082015250565b6000613d25601d83613846565b9150613d3082613cef565b602082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613da257607f821691505b60208210811415613db657613db5613d5b565b5b50919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e18603983613846565b9150613e2382613dbc565b604082019050919050565b60006020820190508181036000830152613e4781613e0b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eaa602683613846565b9150613eb582613e4e565b604082019050919050565b60006020820190508181036000830152613ed981613e9d565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f16601b83613846565b9150613f2182613ee0565b602082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fa8602483613846565b9150613fb382613f4c565b604082019050919050565b60006020820190508181036000830152613fd781613f9b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061403a602283613846565b915061404582613fde565b604082019050919050565b600060208201905081810360008301526140698161402d565b9050919050565b600061407b8261379b565b91506140868361379b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140bf576140be613c6a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141048261379b565b915061410f8361379b565b92508261411f5761411e6140ca565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614186602583613846565b91506141918261412a565b604082019050919050565b600060208201905081810360008301526141b581614179565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614218602383613846565b9150614223826141bc565b604082019050919050565b600060208201905081810360008301526142478161420b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614284601683613846565b915061428f8261424e565b602082019050919050565b600060208201905081810360008301526142b381614277565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061433c604983613846565b9150614347826142ba565b606082019050919050565b6000602082019050818103600083015261436b8161432f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006143ce603583613846565b91506143d982614372565b604082019050919050565b600060208201905081810360008301526143fd816143c1565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061443a601383613846565b915061444582614404565b602082019050919050565b600060208201905081810360008301526144698161442d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006144cc603683613846565b91506144d782614470565b604082019050919050565b600060208201905081810360008301526144fb816144bf565b9050919050565b600061450d8261379b565b91506145188361379b565b92508282101561452b5761452a613c6a565b5b828203905092915050565b600081905092915050565b50565b6000614551600083614536565b915061455c82614541565b600082019050919050565b600061457282614544565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006145d8602183613846565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061466a602183613846565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061470d81613928565b92915050565b60006020828403121561472957614728613796565b5b6000614737848285016146fe565b91505092915050565b6000819050919050565b600061476561476061475b84614740565b613a24565b61379b565b9050919050565b6147758161474a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6147b081613916565b82525050565b60006147c283836147a7565b60208301905092915050565b6000602082019050919050565b60006147e68261477b565b6147f08185614786565b93506147fb83614797565b8060005b8381101561482c57815161481388826147b6565b975061481e836147ce565b9250506001810190506147ff565b5085935050505092915050565b600060a08201905061484e6000830188613811565b61485b602083018761476c565b818103604083015261486d81866147db565b905061487c6060830185613af1565b6148896080830184613811565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e344cc0672935f400f47407f7ef9d3e7defcd6579ce87f88906803e6226748d864736f6c63430008090033

Deployed Bytecode Sourcemap

29870:11317:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34661:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30264:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8000:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10167:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31093:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33952:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29942:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9120:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34942:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30778:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33789:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10818:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30045:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8962:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11582:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30000:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30331:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35919:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34383:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30734:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30410:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9291:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22465:148;;;;;;;;;;;;;:::i;:::-;;34227:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30849:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33496:281;;;;;;;;;;;;;:::i;:::-;;21823:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30294:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8219:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30882:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35471:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30602:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30813:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34117:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30702:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12303:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9631:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30669:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31315:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30371:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35053:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30522:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30145:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30633:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9869:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30187:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30570:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30914;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22768:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30227:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34661:273;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34764:8:::1;34750:11;:22;;;;34796:7;34783:10;:20;;;;34844:10;;34830:11;;:24;;;;:::i;:::-;34814:13;:40;;;;34890:2;34873:13;;:19;;34865:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34661:273:::0;;:::o;30264:21::-;;;;:::o;8000:100::-;8054:13;8087:5;8080:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8000:100;:::o;10167:169::-;10250:4;10267:39;10276:12;:10;:12::i;:::-;10290:7;10299:6;10267:8;:39::i;:::-;10324:4;10317:11;;10167:169;;;;:::o;31093:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;33952:157::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34043:1:::1;34033:6;:11;;34025:20;;;::::0;::::1;;34070:6;34056:11;:20;;;;34087:14;:12;:14::i;:::-;33952:157:::0;:::o;29942:51::-;;;:::o;9120:108::-;9181:7;9208:12;;9201:19;;9120:108;:::o;34942:103::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35028:9:::1;35016;;:21;;;;;;;;;;;;;;;;;;34942:103:::0;:::o;30778:28::-;;;;:::o;33789:155::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33879:1:::1;33869:6;:11;;33861:20;;;::::0;::::1;;33905:6;33892:10;:19;;;;33922:14;:12;:14::i;:::-;33789:155:::0;:::o;10818:355::-;10958:4;10975:36;10985:6;10993:9;11004:6;10975:9;:36::i;:::-;11022:121;11031:6;11039:12;:10;:12::i;:::-;11053:89;11091:6;11053:89;;;;;;;;;;;;;;;;;:11;:19;11065:6;11053:19;;;;;;;;;;;;;;;:33;11073:12;:10;:12::i;:::-;11053:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;11022:8;:121::i;:::-;11161:4;11154:11;;10818:355;;;;;:::o;30045:53::-;30091:6;30045:53;:::o;8962:93::-;9020:5;9045:2;9038:9;;8962:93;:::o;11582:218::-;11670:4;11687:83;11696:12;:10;:12::i;:::-;11710:7;11719:50;11758:10;11719:11;:25;11731:12;:10;:12::i;:::-;11719:25;;;;;;;;;;;;;;;:34;11745:7;11719:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11687:8;:83::i;:::-;11788:4;11781:11;;11582:218;;;;:::o;30000:38::-;;;:::o;30331:33::-;;;;;;;;;;;;;:::o;35919:125::-;35984:4;36008:19;:28;36028:7;36008:28;;;;;;;;;;;;;;;;;;;;;;;;;36001:35;;35919:125;;;:::o;34383:266::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34484:8:::1;34471:10;:21;;;;34515:7;34503:9;:19;;;;34561:9;;34548:10;;:22;;;;:::i;:::-;34533:12;:37;;;;34605:2;34589:12;;:18;;34581:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;34383:266:::0;;:::o;30734:28::-;;;;:::o;30410:30::-;;;;;;;;;;;;;:::o;9291:127::-;9365:7;9392:9;:18;9402:7;9392:18;;;;;;;;;;;;;;;;9385:25;;9291:127;;;:::o;22465:148::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22572:1:::1;22535:40;;22556:6;;;;;;;;;;;22535:40;;;;;;;;;;;;22603:1;22586:6;;:19;;;;;;;;;;;;;;;;;;22465:148::o:0;34227:144::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34359:4:::1;34317:31;:39;34349:6;34317:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34227:144:::0;;:::o;30849:26::-;;;;:::o;33496:281::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33564:1:::1;33551:10;:14;;;;33588:1;33576:9;:13;;;;33628:9;;33615:10;;:22;;;;:::i;:::-;33600:12;:37;;;;33664:2;33650:11:::0;:16:::1;;;;33690:1;33677:10;:14;;;;33732:10;;33718:11;;:24;;;;:::i;:::-;33702:13;:40;;;;33768:1;33755:10;:14;;;;33496:281::o:0;21823:79::-;21861:7;21888:6;;;;;;;;;;;21881:13;;21823:79;:::o;30294:24::-;;;;;;;;;;;;;:::o;8219:104::-;8275:13;8308:7;8301:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8219:104;:::o;30882:25::-;;;;:::o;35471:244::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35578:13:::1;35570:21;;:4;:21;;;;35562:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;35666:41;35695:4;35701:5;35666:28;:41::i;:::-;35471:244:::0;;:::o;30602:24::-;;;;:::o;30813:27::-;;;;:::o;34117:98::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34201:6:::1;34188:10;:19;;;;34117:98:::0;:::o;30702:25::-;;;;:::o;12303:269::-;12396:4;12413:129;12422:12;:10;:12::i;:::-;12436:7;12445:96;12484:15;12445:96;;;;;;;;;;;;;;;;;:11;:25;12457:12;:10;:12::i;:::-;12445:25;;;;;;;;;;;;;;;:34;12471:7;12445:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12413:8;:129::i;:::-;12560:4;12553:11;;12303:269;;;;:::o;9631:175::-;9717:4;9734:42;9744:12;:10;:12::i;:::-;9758:9;9769:6;9734:9;:42::i;:::-;9794:4;9787:11;;9631:175;;;;:::o;30669:26::-;;;;:::o;31315:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30371:32::-;;;;;;;;;;;;;:::o;35053:182::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35169:8:::1;35138:19;:28;35158:7;35138:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35209:7;35193:34;;;35218:8;35193:34;;;;;;:::i;:::-;;;;;;;;35053:182:::0;;:::o;30522:39::-;;;;;;;;;;;;;:::o;30145:35::-;;;;:::o;30633:27::-;;;;:::o;9869:151::-;9958:7;9985:11;:18;9997:5;9985:18;;;;;;;;;;;;;;;:27;10004:7;9985:27;;;;;;;;;;;;;;;;9978:34;;9869:151;;;;:::o;30187:33::-;;;;:::o;30570:25::-;;;;:::o;30914:::-;;;;:::o;22768:244::-;22045:12;:10;:12::i;:::-;22035:22;;:6;;;;;;;;;;;:22;;;22027:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22877:1:::1;22857:22;;:8;:22;;;;22849:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22967:8;22938:38;;22959:6;;;;;;;;;;;22938:38;;;;;;;;;;;;22996:8;22987:6;;:17;;;;;;;;;;;;;;;;;;22768:244:::0;:::o;30227:24::-;;;;:::o;16867:181::-;16925:7;16945:9;16961:1;16957;:5;;;;:::i;:::-;16945:17;;16986:1;16981;:6;;16973:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;17039:1;17032:8;;;16867:181;;;;:::o;636:98::-;689:7;716:10;709:17;;636:98;:::o;15489:380::-;15642:1;15625:19;;:5;:19;;;;15617:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15723:1;15704:21;;:7;:21;;;;15696:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15807:6;15777:11;:18;15789:5;15777:18;;;;;;;;;;;;;;;:27;15796:7;15777:27;;;;;;;;;;;;;;;:36;;;;15845:7;15829:32;;15838:5;15829:32;;;15854:6;15829:32;;;;;;:::i;:::-;;;;;;;;15489:380;;;:::o;35243:220::-;35331:3;35318:10;;35309:6;;:19;;;;:::i;:::-;:25;;;;:::i;:::-;35286:20;:48;;;;35380:5;35375:2;35366:6;;:11;;;;:::i;:::-;:19;;;;:::i;:::-;35345:18;:40;;;;35452:3;35438:11;;35429:6;;:20;;;;:::i;:::-;:26;;;;:::i;:::-;35417:9;:38;;;;35243:220::o;36056:4041::-;36204:1;36188:18;;:4;:18;;;;36180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36281:1;36267:16;;:2;:16;;;;36259:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36358:1;36348:6;:11;36345:92;;;36376:28;36392:4;36398:2;36402:1;36376:15;:28::i;:::-;36419:7;;36345:92;36460:14;;;;;;;;;;;36457:1854;;;36520:7;:5;:7::i;:::-;36512:15;;:4;:15;;;;:49;;;;;36554:7;:5;:7::i;:::-;36548:13;;:2;:13;;;;36512:49;:86;;;;;36596:1;36582:16;;:2;:16;;;;36512:86;:128;;;;;36633:6;36619:21;;:2;:21;;;;36512:128;:158;;;;;36662:8;;;;;;;;;;;36661:9;36512:158;36490:1810;;;36708:13;;;;;;;;;;;36704:148;;36753:19;:25;36773:4;36753:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;36782:19;:23;36802:2;36782:23;;;;;;;;;;;;;;;;;;;;;;;;;36753:52;36745:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36704:148;37010:20;;;;;;;;;;;37006:436;;;37064:7;:5;:7::i;:::-;37058:13;;:2;:13;;;;:47;;;;;37089:15;37075:30;;:2;:30;;;;37058:47;:79;;;;;37123:13;37109:28;;:2;:28;;;;37058:79;37054:369;;;37215:12;37173:28;:39;37202:9;37173:39;;;;;;;;;;;;;;;;:54;37165:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37389:10;;37374:12;:25;;;;:::i;:::-;37332:28;:39;37361:9;37332:39;;;;;;;;;;;;;;;:67;;;;37054:369;37006:436;37511:25;:31;37537:4;37511:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;37547:31;:35;37579:2;37547:35;;;;;;;;;;;;;;;;;;;;;;;;;37546:36;37511:71;37507:778;;;37629:20;;37619:6;:30;;37611:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;37768:9;;37751:13;37761:2;37751:9;:13::i;:::-;37742:6;:22;;;;:::i;:::-;:35;;37734:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37507:778;;;37895:25;:29;37921:2;37895:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;37929:31;:37;37961:4;37929:37;;;;;;;;;;;;;;;;;;;;;;;;;37928:38;37895:71;37891:394;;;38013:20;;38003:6;:30;;37995:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;37891:394;;;38139:31;:35;38171:2;38139:35;;;;;;;;;;;;;;;;;;;;;;;;;38135:150;;38232:9;;38215:13;38225:2;38215:9;:13::i;:::-;38206:6;:22;;;;:::i;:::-;:35;;38198:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38135:150;37891:394;37507:778;36490:1810;36457:1854;38321:28;38352:24;38370:4;38352:9;:24::i;:::-;38321:55;;38397:12;38436:18;;38412:20;:42;;38397:57;;38485:7;:33;;;;;38510:8;;;;;;;;;;;38509:9;38485:33;:61;;;;;38535:11;;;;;;;;;;;38485:61;:110;;;;;38564:25;:31;38590:4;38564:31;;;;;;;;;;;;;;;;;;;;;;;;;38563:32;38485:110;:153;;;;;38613:19;:25;38633:4;38613:25;;;;;;;;;;;;;;;;;;;;;;;;;38612:26;38485:153;:194;;;;;38656:19;:23;38676:2;38656:23;;;;;;;;;;;;;;;;;;;;;;;;;38655:24;38485:194;38467:338;;;38717:4;38706:8;;:15;;;;;;;;;;;;;;;;;;38750:10;:8;:10::i;:::-;38788:5;38777:8;;:16;;;;;;;;;;;;;;;;;;38467:338;38825:12;38841:8;;;;;;;;;;;38840:9;38825:24;;38865:19;:25;38885:4;38865:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38894:19;:23;38914:2;38894:23;;;;;;;;;;;;;;;;;;;;;;;;;38865:52;38862:99;;;38944:5;38934:15;;38862:99;38981:12;39013:7;39010:1034;;;39064:25;:29;39090:2;39064:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;39113:1;39097:13;;:17;39064:50;39060:574;;;39141:34;39171:3;39141:25;39152:13;;39141:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;39134:41;;39232:13;;39218:11;;39211:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;39194:13;;:51;;;;;;;:::i;:::-;;;;;;;;39300:13;;39287:10;;39280:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;39264:12;;:49;;;;;;;:::i;:::-;;;;;;;;39060:574;;;39376:25;:31;39402:4;39376:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39426:1;39411:12;;:16;39376:51;39373:261;;;39454:33;39483:3;39454:24;39465:12;;39454:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;39447:40;;39540:12;;39527:10;;39520:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;39503:13;;:49;;;;;;;:::i;:::-;;;;;;;;39606:12;;39594:9;;39587:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;39571:12;;:47;;;;;;;:::i;:::-;;;;;;;;39373:261;39060:574;39672:1;39665:4;:8;39662:334;;;39697:42;39713:4;39727;39734;39697:15;:42::i;:::-;39778:1;39762:13;;:17;39758:223;;;39804:35;39818:4;39825:13;;39804:5;:35::i;:::-;39871:13;:11;:13::i;:::-;39862:6;:22;;;;39907:14;:12;:14::i;:::-;39960:1;39944:13;:17;;;;39758:223;39662:334;40028:4;40018:14;;;;;:::i;:::-;;;39010:1034;40056:33;40072:4;40078:2;40082:6;40056:15;:33::i;:::-;36169:3928;;;;36056:4041;;;;:::o;17770:192::-;17856:7;17889:1;17884;:6;;17892:12;17876:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17916:9;17932:1;17928;:5;;;;:::i;:::-;17916:17;;17953:1;17946:8;;;17770:192;;;;;:::o;35723:188::-;35840:5;35806:25;:31;35832:4;35806:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35897:5;35863:40;;35891:4;35863:40;;;;;;;;;;;;35723:188;;:::o;13062:573::-;13220:1;13202:20;;:6;:20;;;;13194:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13304:1;13283:23;;:9;:23;;;;13275:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13359:47;13380:6;13388:9;13399:6;13359:20;:47::i;:::-;13439:71;13461:6;13439:71;;;;;;;;;;;;;;;;;:9;:17;13449:6;13439:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13419:9;:17;13429:6;13419:17;;;;;;;;;;;;;;;:91;;;;13544:32;13569:6;13544:9;:20;13554:9;13544:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13521:9;:20;13531:9;13521:20;;;;;;;;;;;;;;;:55;;;;13609:9;13592:35;;13601:6;13592:35;;;13620:6;13592:35;;;;;;:::i;:::-;;;;;;;;13062:573;;;:::o;40718:464::-;40757:23;40783:24;40801:4;40783:9;:24::i;:::-;40757:50;;40818:12;40873:1;40854:15;:20;40851:34;;;40877:7;;;;40851:34;40939:2;40918:18;;:23;;;;:::i;:::-;40900:15;:41;40897:111;;;40994:2;40973:18;;:23;;;;:::i;:::-;40955:41;;40897:111;41020:33;41037:15;41020:16;:33::i;:::-;41090:1;41075:12;:16;;;;41125:9;;;;;;;;;;;41117:23;;41148:21;41117:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41104:70;;;;;40746:436;;40718:464;:::o;18221:471::-;18279:7;18529:1;18524;:6;18520:47;;;18554:1;18547:8;;;;18520:47;18579:9;18595:1;18591;:5;;;;:::i;:::-;18579:17;;18624:1;18619;18615;:5;;;;:::i;:::-;:10;18607:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18683:1;18676:8;;;18221:471;;;;;:::o;19168:132::-;19226:7;19253:39;19257:1;19260;19253:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;19246:46;;19168:132;;;;:::o;14633:418::-;14736:1;14717:21;;:7;:21;;;;14709:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14789:49;14810:7;14827:1;14831:6;14789:20;:49::i;:::-;14872:68;14895:6;14872:68;;;;;;;;;;;;;;;;;:9;:18;14882:7;14872:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;14851:9;:18;14861:7;14851:18;;;;;;;;;;;;;;;:89;;;;14966:24;14983:6;14966:12;;:16;;:24;;;;:::i;:::-;14951:12;:39;;;;15032:1;15006:37;;15015:7;15006:37;;;15036:6;15006:37;;;;;;:::i;:::-;;;;;;;;14633:418;;:::o;16472:125::-;;;;:::o;40105:601::-;40233:21;40271:1;40257:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40233:40;;40302:4;40284;40289:1;40284:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40328:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40318:4;40323:1;40318:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40363:62;40380:4;40395:15;40413:11;40363:8;:62::i;:::-;40464:15;:66;;;40545:11;40571:1;40615:4;40642;40662:15;40464:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40160:546;40105:601;:::o;19796:278::-;19882:7;19914:1;19910;:5;19917:12;19902:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19941:9;19957:1;19953;:5;;;;:::i;:::-;19941:17;;20065:1;20058:8;;;19796:278;;;;;:::o;17331:136::-;17389:7;17416:43;17420:1;17423;17416:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17409:50;;17331:136;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:118::-;1257:24;1275:5;1257:24;:::i;:::-;1252:3;1245:37;1170:118;;:::o;1294:222::-;1387:4;1425:2;1414:9;1410:18;1402:26;;1438:71;1506:1;1495:9;1491:17;1482:6;1438:71;:::i;:::-;1294:222;;;;:::o;1522:99::-;1574:6;1608:5;1602:12;1592:22;;1522:99;;;:::o;1627:169::-;1711:11;1745:6;1740:3;1733:19;1785:4;1780:3;1776:14;1761:29;;1627:169;;;;:::o;1802:307::-;1870:1;1880:113;1894:6;1891:1;1888:13;1880:113;;;1979:1;1974:3;1970:11;1964:18;1960:1;1955:3;1951:11;1944:39;1916:2;1913:1;1909:10;1904:15;;1880:113;;;2011:6;2008:1;2005:13;2002:101;;;2091:1;2082:6;2077:3;2073:16;2066:27;2002:101;1851:258;1802:307;;;:::o;2115:102::-;2156:6;2207:2;2203:7;2198:2;2191:5;2187:14;2183:28;2173:38;;2115:102;;;:::o;2223:364::-;2311:3;2339:39;2372:5;2339:39;:::i;:::-;2394:71;2458:6;2453:3;2394:71;:::i;:::-;2387:78;;2474:52;2519:6;2514:3;2507:4;2500:5;2496:16;2474:52;:::i;:::-;2551:29;2573:6;2551:29;:::i;:::-;2546:3;2542:39;2535:46;;2315:272;2223:364;;;;:::o;2593:313::-;2706:4;2744:2;2733:9;2729:18;2721:26;;2793:9;2787:4;2783:20;2779:1;2768:9;2764:17;2757:47;2821:78;2894:4;2885:6;2821:78;:::i;:::-;2813:86;;2593:313;;;;:::o;2912:126::-;2949:7;2989:42;2982:5;2978:54;2967:65;;2912:126;;;:::o;3044:96::-;3081:7;3110:24;3128:5;3110:24;:::i;:::-;3099:35;;3044:96;;;:::o;3146:122::-;3219:24;3237:5;3219:24;:::i;:::-;3212:5;3209:35;3199:63;;3258:1;3255;3248:12;3199:63;3146:122;:::o;3274:139::-;3320:5;3358:6;3345:20;3336:29;;3374:33;3401:5;3374:33;:::i;:::-;3274:139;;;;:::o;3419:474::-;3487:6;3495;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:53;3740:7;3731:6;3720:9;3716:22;3695:53;:::i;:::-;3685:63;;3641:117;3797:2;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3768:118;3419:474;;;;;:::o;3899:90::-;3933:7;3976:5;3969:13;3962:21;3951:32;;3899:90;;;:::o;3995:109::-;4076:21;4091:5;4076:21;:::i;:::-;4071:3;4064:34;3995:109;;:::o;4110:210::-;4197:4;4235:2;4224:9;4220:18;4212:26;;4248:65;4310:1;4299:9;4295:17;4286:6;4248:65;:::i;:::-;4110:210;;;;:::o;4326:329::-;4385:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:119;;;4440:79;;:::i;:::-;4402:119;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4326:329;;;;:::o;4661:::-;4720:6;4769:2;4757:9;4748:7;4744:23;4740:32;4737:119;;;4775:79;;:::i;:::-;4737:119;4895:1;4920:53;4965:7;4956:6;4945:9;4941:22;4920:53;:::i;:::-;4910:63;;4866:117;4661:329;;;;:::o;4996:60::-;5024:3;5045:5;5038:12;;4996:60;;;:::o;5062:142::-;5112:9;5145:53;5163:34;5172:24;5190:5;5172:24;:::i;:::-;5163:34;:::i;:::-;5145:53;:::i;:::-;5132:66;;5062:142;;;:::o;5210:126::-;5260:9;5293:37;5324:5;5293:37;:::i;:::-;5280:50;;5210:126;;;:::o;5342:153::-;5419:9;5452:37;5483:5;5452:37;:::i;:::-;5439:50;;5342:153;;;:::o;5501:185::-;5615:64;5673:5;5615:64;:::i;:::-;5610:3;5603:77;5501:185;;:::o;5692:276::-;5812:4;5850:2;5839:9;5835:18;5827:26;;5863:98;5958:1;5947:9;5943:17;5934:6;5863:98;:::i;:::-;5692:276;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:474::-;8184:6;8192;8241:2;8229:9;8220:7;8216:23;8212:32;8209:119;;;8247:79;;:::i;:::-;8209:119;8367:1;8392:53;8437:7;8428:6;8417:9;8413:22;8392:53;:::i;:::-;8382:63;;8338:117;8494:2;8520:53;8565:7;8556:6;8545:9;8541:22;8520:53;:::i;:::-;8510:63;;8465:118;8116:474;;;;;:::o;8596:182::-;8736:34;8732:1;8724:6;8720:14;8713:58;8596:182;:::o;8784:366::-;8926:3;8947:67;9011:2;9006:3;8947:67;:::i;:::-;8940:74;;9023:93;9112:3;9023:93;:::i;:::-;9141:2;9136:3;9132:12;9125:19;;8784:366;;;:::o;9156:419::-;9322:4;9360:2;9349:9;9345:18;9337:26;;9409:9;9403:4;9399:20;9395:1;9384:9;9380:17;9373:47;9437:131;9563:4;9437:131;:::i;:::-;9429:139;;9156:419;;;:::o;9581:180::-;9629:77;9626:1;9619:88;9726:4;9723:1;9716:15;9750:4;9747:1;9740:15;9767:305;9807:3;9826:20;9844:1;9826:20;:::i;:::-;9821:25;;9860:20;9878:1;9860:20;:::i;:::-;9855:25;;10014:1;9946:66;9942:74;9939:1;9936:81;9933:107;;;10020:18;;:::i;:::-;9933:107;10064:1;10061;10057:9;10050:16;;9767:305;;;;:::o;10078:179::-;10218:31;10214:1;10206:6;10202:14;10195:55;10078:179;:::o;10263:366::-;10405:3;10426:67;10490:2;10485:3;10426:67;:::i;:::-;10419:74;;10502:93;10591:3;10502:93;:::i;:::-;10620:2;10615:3;10611:12;10604:19;;10263:366;;;:::o;10635:419::-;10801:4;10839:2;10828:9;10824:18;10816:26;;10888:9;10882:4;10878:20;10874:1;10863:9;10859:17;10852:47;10916:131;11042:4;10916:131;:::i;:::-;10908:139;;10635:419;;;:::o;11060:180::-;11108:77;11105:1;11098:88;11205:4;11202:1;11195:15;11229:4;11226:1;11219:15;11246:320;11290:6;11327:1;11321:4;11317:12;11307:22;;11374:1;11368:4;11364:12;11395:18;11385:81;;11451:4;11443:6;11439:17;11429:27;;11385:81;11513:2;11505:6;11502:14;11482:18;11479:38;11476:84;;;11532:18;;:::i;:::-;11476:84;11297:269;11246:320;;;:::o;11572:244::-;11712:34;11708:1;11700:6;11696:14;11689:58;11781:27;11776:2;11768:6;11764:15;11757:52;11572:244;:::o;11822:366::-;11964:3;11985:67;12049:2;12044:3;11985:67;:::i;:::-;11978:74;;12061:93;12150:3;12061:93;:::i;:::-;12179:2;12174:3;12170:12;12163:19;;11822:366;;;:::o;12194:419::-;12360:4;12398:2;12387:9;12383:18;12375:26;;12447:9;12441:4;12437:20;12433:1;12422:9;12418:17;12411:47;12475:131;12601:4;12475:131;:::i;:::-;12467:139;;12194:419;;;:::o;12619:225::-;12759:34;12755:1;12747:6;12743:14;12736:58;12828:8;12823:2;12815:6;12811:15;12804:33;12619:225;:::o;12850:366::-;12992:3;13013:67;13077:2;13072:3;13013:67;:::i;:::-;13006:74;;13089:93;13178:3;13089:93;:::i;:::-;13207:2;13202:3;13198:12;13191:19;;12850:366;;;:::o;13222:419::-;13388:4;13426:2;13415:9;13411:18;13403:26;;13475:9;13469:4;13465:20;13461:1;13450:9;13446:17;13439:47;13503:131;13629:4;13503:131;:::i;:::-;13495:139;;13222:419;;;:::o;13647:177::-;13787:29;13783:1;13775:6;13771:14;13764:53;13647:177;:::o;13830:366::-;13972:3;13993:67;14057:2;14052:3;13993:67;:::i;:::-;13986:74;;14069:93;14158:3;14069:93;:::i;:::-;14187:2;14182:3;14178:12;14171:19;;13830:366;;;:::o;14202:419::-;14368:4;14406:2;14395:9;14391:18;14383:26;;14455:9;14449:4;14445:20;14441:1;14430:9;14426:17;14419:47;14483:131;14609:4;14483:131;:::i;:::-;14475:139;;14202:419;;;:::o;14627:223::-;14767:34;14763:1;14755:6;14751:14;14744:58;14836:6;14831:2;14823:6;14819:15;14812:31;14627:223;:::o;14856:366::-;14998:3;15019:67;15083:2;15078:3;15019:67;:::i;:::-;15012:74;;15095:93;15184:3;15095:93;:::i;:::-;15213:2;15208:3;15204:12;15197:19;;14856:366;;;:::o;15228:419::-;15394:4;15432:2;15421:9;15417:18;15409:26;;15481:9;15475:4;15471:20;15467:1;15456:9;15452:17;15445:47;15509:131;15635:4;15509:131;:::i;:::-;15501:139;;15228:419;;;:::o;15653:221::-;15793:34;15789:1;15781:6;15777:14;15770:58;15862:4;15857:2;15849:6;15845:15;15838:29;15653:221;:::o;15880:366::-;16022:3;16043:67;16107:2;16102:3;16043:67;:::i;:::-;16036:74;;16119:93;16208:3;16119:93;:::i;:::-;16237:2;16232:3;16228:12;16221:19;;15880:366;;;:::o;16252:419::-;16418:4;16456:2;16445:9;16441:18;16433:26;;16505:9;16499:4;16495:20;16491:1;16480:9;16476:17;16469:47;16533:131;16659:4;16533:131;:::i;:::-;16525:139;;16252:419;;;:::o;16677:348::-;16717:7;16740:20;16758:1;16740:20;:::i;:::-;16735:25;;16774:20;16792:1;16774:20;:::i;:::-;16769:25;;16962:1;16894:66;16890:74;16887:1;16884:81;16879:1;16872:9;16865:17;16861:105;16858:131;;;16969:18;;:::i;:::-;16858:131;17017:1;17014;17010:9;16999:20;;16677:348;;;;:::o;17031:180::-;17079:77;17076:1;17069:88;17176:4;17173:1;17166:15;17200:4;17197:1;17190:15;17217:185;17257:1;17274:20;17292:1;17274:20;:::i;:::-;17269:25;;17308:20;17326:1;17308:20;:::i;:::-;17303:25;;17347:1;17337:35;;17352:18;;:::i;:::-;17337:35;17394:1;17391;17387:9;17382:14;;17217:185;;;;:::o;17408:224::-;17548:34;17544:1;17536:6;17532:14;17525:58;17617:7;17612:2;17604:6;17600:15;17593:32;17408:224;:::o;17638:366::-;17780:3;17801:67;17865:2;17860:3;17801:67;:::i;:::-;17794:74;;17877:93;17966:3;17877:93;:::i;:::-;17995:2;17990:3;17986:12;17979:19;;17638:366;;;:::o;18010:419::-;18176:4;18214:2;18203:9;18199:18;18191:26;;18263:9;18257:4;18253:20;18249:1;18238:9;18234:17;18227:47;18291:131;18417:4;18291:131;:::i;:::-;18283:139;;18010:419;;;:::o;18435:222::-;18575:34;18571:1;18563:6;18559:14;18552:58;18644:5;18639:2;18631:6;18627:15;18620:30;18435:222;:::o;18663:366::-;18805:3;18826:67;18890:2;18885:3;18826:67;:::i;:::-;18819:74;;18902:93;18991:3;18902:93;:::i;:::-;19020:2;19015:3;19011:12;19004:19;;18663:366;;;:::o;19035:419::-;19201:4;19239:2;19228:9;19224:18;19216:26;;19288:9;19282:4;19278:20;19274:1;19263:9;19259:17;19252:47;19316:131;19442:4;19316:131;:::i;:::-;19308:139;;19035:419;;;:::o;19460:172::-;19600:24;19596:1;19588:6;19584:14;19577:48;19460:172;:::o;19638:366::-;19780:3;19801:67;19865:2;19860:3;19801:67;:::i;:::-;19794:74;;19877:93;19966:3;19877:93;:::i;:::-;19995:2;19990:3;19986:12;19979:19;;19638:366;;;:::o;20010:419::-;20176:4;20214:2;20203:9;20199:18;20191:26;;20263:9;20257:4;20253:20;20249:1;20238:9;20234:17;20227:47;20291:131;20417:4;20291:131;:::i;:::-;20283:139;;20010:419;;;:::o;20435:297::-;20575:34;20571:1;20563:6;20559:14;20552:58;20644:34;20639:2;20631:6;20627:15;20620:59;20713:11;20708:2;20700:6;20696:15;20689:36;20435:297;:::o;20738:366::-;20880:3;20901:67;20965:2;20960:3;20901:67;:::i;:::-;20894:74;;20977:93;21066:3;20977:93;:::i;:::-;21095:2;21090:3;21086:12;21079:19;;20738:366;;;:::o;21110:419::-;21276:4;21314:2;21303:9;21299:18;21291:26;;21363:9;21357:4;21353:20;21349:1;21338:9;21334:17;21327:47;21391:131;21517:4;21391:131;:::i;:::-;21383:139;;21110:419;;;:::o;21535:240::-;21675:34;21671:1;21663:6;21659:14;21652:58;21744:23;21739:2;21731:6;21727:15;21720:48;21535:240;:::o;21781:366::-;21923:3;21944:67;22008:2;22003:3;21944:67;:::i;:::-;21937:74;;22020:93;22109:3;22020:93;:::i;:::-;22138:2;22133:3;22129:12;22122:19;;21781:366;;;:::o;22153:419::-;22319:4;22357:2;22346:9;22342:18;22334:26;;22406:9;22400:4;22396:20;22392:1;22381:9;22377:17;22370:47;22434:131;22560:4;22434:131;:::i;:::-;22426:139;;22153:419;;;:::o;22578:169::-;22718:21;22714:1;22706:6;22702:14;22695:45;22578:169;:::o;22753:366::-;22895:3;22916:67;22980:2;22975:3;22916:67;:::i;:::-;22909:74;;22992:93;23081:3;22992:93;:::i;:::-;23110:2;23105:3;23101:12;23094:19;;22753:366;;;:::o;23125:419::-;23291:4;23329:2;23318:9;23314:18;23306:26;;23378:9;23372:4;23368:20;23364:1;23353:9;23349:17;23342:47;23406:131;23532:4;23406:131;:::i;:::-;23398:139;;23125:419;;;:::o;23550:241::-;23690:34;23686:1;23678:6;23674:14;23667:58;23759:24;23754:2;23746:6;23742:15;23735:49;23550:241;:::o;23797:366::-;23939:3;23960:67;24024:2;24019:3;23960:67;:::i;:::-;23953:74;;24036:93;24125:3;24036:93;:::i;:::-;24154:2;24149:3;24145:12;24138:19;;23797:366;;;:::o;24169:419::-;24335:4;24373:2;24362:9;24358:18;24350:26;;24422:9;24416:4;24412:20;24408:1;24397:9;24393:17;24386:47;24450:131;24576:4;24450:131;:::i;:::-;24442:139;;24169:419;;;:::o;24594:191::-;24634:4;24654:20;24672:1;24654:20;:::i;:::-;24649:25;;24688:20;24706:1;24688:20;:::i;:::-;24683:25;;24727:1;24724;24721:8;24718:34;;;24732:18;;:::i;:::-;24718:34;24777:1;24774;24770:9;24762:17;;24594:191;;;;:::o;24791:147::-;24892:11;24929:3;24914:18;;24791:147;;;;:::o;24944:114::-;;:::o;25064:398::-;25223:3;25244:83;25325:1;25320:3;25244:83;:::i;:::-;25237:90;;25336:93;25425:3;25336:93;:::i;:::-;25454:1;25449:3;25445:11;25438:18;;25064:398;;;:::o;25468:379::-;25652:3;25674:147;25817:3;25674:147;:::i;:::-;25667:154;;25838:3;25831:10;;25468:379;;;:::o;25853:220::-;25993:34;25989:1;25981:6;25977:14;25970:58;26062:3;26057:2;26049:6;26045:15;26038:28;25853:220;:::o;26079:366::-;26221:3;26242:67;26306:2;26301:3;26242:67;:::i;:::-;26235:74;;26318:93;26407:3;26318:93;:::i;:::-;26436:2;26431:3;26427:12;26420:19;;26079:366;;;:::o;26451:419::-;26617:4;26655:2;26644:9;26640:18;26632:26;;26704:9;26698:4;26694:20;26690:1;26679:9;26675:17;26668:47;26732:131;26858:4;26732:131;:::i;:::-;26724:139;;26451:419;;;:::o;26876:220::-;27016:34;27012:1;27004:6;27000:14;26993:58;27085:3;27080:2;27072:6;27068:15;27061:28;26876:220;:::o;27102:366::-;27244:3;27265:67;27329:2;27324:3;27265:67;:::i;:::-;27258:74;;27341:93;27430:3;27341:93;:::i;:::-;27459:2;27454:3;27450:12;27443:19;;27102:366;;;:::o;27474:419::-;27640:4;27678:2;27667:9;27663:18;27655:26;;27727:9;27721:4;27717:20;27713:1;27702:9;27698:17;27691:47;27755:131;27881:4;27755:131;:::i;:::-;27747:139;;27474:419;;;:::o;27899:180::-;27947:77;27944:1;27937:88;28044:4;28041:1;28034:15;28068:4;28065:1;28058:15;28085:180;28133:77;28130:1;28123:88;28230:4;28227:1;28220:15;28254:4;28251:1;28244:15;28271:143;28328:5;28359:6;28353:13;28344:22;;28375:33;28402:5;28375:33;:::i;:::-;28271:143;;;;:::o;28420:351::-;28490:6;28539:2;28527:9;28518:7;28514:23;28510:32;28507:119;;;28545:79;;:::i;:::-;28507:119;28665:1;28690:64;28746:7;28737:6;28726:9;28722:22;28690:64;:::i;:::-;28680:74;;28636:128;28420:351;;;;:::o;28777:85::-;28822:7;28851:5;28840:16;;28777:85;;;:::o;28868:158::-;28926:9;28959:61;28977:42;28986:32;29012:5;28986:32;:::i;:::-;28977:42;:::i;:::-;28959:61;:::i;:::-;28946:74;;28868:158;;;:::o;29032:147::-;29127:45;29166:5;29127:45;:::i;:::-;29122:3;29115:58;29032:147;;:::o;29185:114::-;29252:6;29286:5;29280:12;29270:22;;29185:114;;;:::o;29305:184::-;29404:11;29438:6;29433:3;29426:19;29478:4;29473:3;29469:14;29454:29;;29305:184;;;;:::o;29495:132::-;29562:4;29585:3;29577:11;;29615:4;29610:3;29606:14;29598:22;;29495:132;;;:::o;29633:108::-;29710:24;29728:5;29710:24;:::i;:::-;29705:3;29698:37;29633:108;;:::o;29747:179::-;29816:10;29837:46;29879:3;29871:6;29837:46;:::i;:::-;29915:4;29910:3;29906:14;29892:28;;29747:179;;;;:::o;29932:113::-;30002:4;30034;30029:3;30025:14;30017:22;;29932:113;;;:::o;30081:732::-;30200:3;30229:54;30277:5;30229:54;:::i;:::-;30299:86;30378:6;30373:3;30299:86;:::i;:::-;30292:93;;30409:56;30459:5;30409:56;:::i;:::-;30488:7;30519:1;30504:284;30529:6;30526:1;30523:13;30504:284;;;30605:6;30599:13;30632:63;30691:3;30676:13;30632:63;:::i;:::-;30625:70;;30718:60;30771:6;30718:60;:::i;:::-;30708:70;;30564:224;30551:1;30548;30544:9;30539:14;;30504:284;;;30508:14;30804:3;30797:10;;30205:608;;;30081:732;;;;:::o;30819:831::-;31082:4;31120:3;31109:9;31105:19;31097:27;;31134:71;31202:1;31191:9;31187:17;31178:6;31134:71;:::i;:::-;31215:80;31291:2;31280:9;31276:18;31267:6;31215:80;:::i;:::-;31342:9;31336:4;31332:20;31327:2;31316:9;31312:18;31305:48;31370:108;31473:4;31464:6;31370:108;:::i;:::-;31362:116;;31488:72;31556:2;31545:9;31541:18;31532:6;31488:72;:::i;:::-;31570:73;31638:3;31627:9;31623:19;31614:6;31570:73;:::i;:::-;30819:831;;;;;;;;:::o

Swarm Source

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