ETH Price: $2,466.97 (-7.94%)

Token

What up (DAWG)
 

Overview

Max Total Supply

1,000,000,000 DAWG

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,839,132.091338531656077962 DAWG

Value
$0.00
0xf834753cD273D1364cB9A4c62324E06A59229190
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:
DAWG

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
    https://t.me/whatupdawgportal
    https://twitter.com/whatupdawg_up
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

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

    bool private swapping;

    address public devWallet;
    address public marketingWallet; 

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

	uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("What up", "DAWG") {
        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 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 10;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 15;

        uint256 totalSupply = 1 * 1e9 * 1e18;

        maxTransactionAmount = 2 * 1e7 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2 * 1e7 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;

        devWallet = address(0xEd2ad3fFFDe42a1AC30826e090D71EFA978071Ce);
        marketingWallet = address(0xB953E721241774209647C614E54a962F55E12213);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    //update the dev and marketing wallets
    function updateFeeReceivers(address dev, address marketing) external onlyOwner {
        devWallet = dev; 
        marketingWallet = marketing; 
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled, uint256 amount) external onlyOwner {
        swapEnabled = enabled;
        swapTokensAtAmount = amount; 
    }

    function updateTaxes(uint256 buyDev, uint256 buyLiq, uint256 sellDev, uint256 sellLiq) external onlyOwner {
        buyDevFee = buyDev;
        buyLiquidityFee = buyLiq;
        buyTotalFees = buyLiquidityFee + buyDevFee;

        sellDevFee = sellDev;
        sellLiquidityFee = sellLiq;
        sellTotalFees = sellLiquidityFee + sellDevFee;

        require(buyTotalFees + sellTotalFees < 30, "Sanity check");
    }

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

    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."
                    );
                }

                //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 &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;                
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

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

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
	
        uint256 ethForReceivers = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForMarketing = ethForReceivers.div(2); 

        uint256 ethForLiquidity = ethBalance - ethForReceivers;

        tokensForLiquidity = 0;
        tokensForDev = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }
        (success, ) = address(marketingWallet).call{value: ethForMarketing}("");
        (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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"address","name":"dev","type":"address"},{"internalType":"address","name":"marketing","type":"address"}],"name":"updateFeeReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyDev","type":"uint256"},{"internalType":"uint256","name":"buyLiq","type":"uint256"},{"internalType":"uint256","name":"sellDev","type":"uint256"},{"internalType":"uint256","name":"sellLiq","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280600781526020017f57686174207570000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44415747000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000e792919062000a94565b5080600490805190602001906200010092919062000a94565b50505062000123620001176200055460201b60201c565b6200055c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200014f8160016200062260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f5919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000283919062000bae565b6040518363ffffffff1660e01b8152600401620002a292919062000bf1565b6020604051808303816000875af1158015620002c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e8919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033060a05160016200062260201b60201c565b6200034560a05160016200070c60201b60201c565b600080600a9050600080600f905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600a826200039a919062000c57565b620003a6919062000ce7565b60098190555084600d8190555083600e81905550600e54600d54620003cc919062000d1f565b600c819055508260108190555081601181905550601154601054620003f2919062000d1f565b600f8190555073ed2ad3fffde42a1ac30826e090d71efa978071ce600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b953e721241774209647c614e54a962f55e12213600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c4620004b6620007ad60201b60201c565b6001620007d760201b60201c565b620004d7306001620007d760201b60201c565b620004ec61dead6001620007d760201b60201c565b6200050e62000500620007ad60201b60201c565b60016200062260201b60201c565b620005213060016200062260201b60201c565b6200053661dead60016200062260201b60201c565b6200054833826200091160201b60201c565b50505050505062000f3e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006326200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000658620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a89062000ddd565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007e76200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200080d620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000866576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085d9062000ddd565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000905919062000e1c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000984576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097b9062000e89565b60405180910390fd5b620009986000838362000a8a60201b60201c565b8060026000828254620009ac919062000d1f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a03919062000d1f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a6a919062000ebc565b60405180910390a362000a866000838362000a8f60201b60201c565b5050565b505050565b505050565b82805462000aa29062000f08565b90600052602060002090601f01602090048101928262000ac6576000855562000b12565b82601f1062000ae157805160ff191683800117855562000b12565b8280016001018555821562000b12579182015b8281111562000b1157825182559160200191906001019062000af4565b5b50905062000b21919062000b25565b5090565b5b8082111562000b4057600081600090555060010162000b26565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b768262000b49565b9050919050565b62000b888162000b69565b811462000b9457600080fd5b50565b60008151905062000ba88162000b7d565b92915050565b60006020828403121562000bc75762000bc662000b44565b5b600062000bd78482850162000b97565b91505092915050565b62000beb8162000b69565b82525050565b600060408201905062000c08600083018562000be0565b62000c17602083018462000be0565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c648262000c1e565b915062000c718362000c1e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cad5762000cac62000c28565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cf48262000c1e565b915062000d018362000c1e565b92508262000d145762000d1362000cb8565b5b828204905092915050565b600062000d2c8262000c1e565b915062000d398362000c1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d715762000d7062000c28565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000dc560208362000d7c565b915062000dd28262000d8d565b602082019050919050565b6000602082019050818103600083015262000df88162000db6565b9050919050565b60008115159050919050565b62000e168162000dff565b82525050565b600060208201905062000e33600083018462000e0b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e71601f8362000d7c565b915062000e7e8262000e39565b602082019050919050565b6000602082019050818103600083015262000ea48162000e62565b9050919050565b62000eb68162000c1e565b82525050565b600060208201905062000ed3600083018462000eab565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f2157607f821691505b6020821081141562000f385762000f3762000ed9565b5b50919050565b60805160a0516144d062000f8e60003960008181610d5a0152611320015260008181610b7301528181612f0a01528181612feb01528181613012015281816130ae01526130d501526144d06000f3fe6080604052600436106102765760003560e01c80638da5cb5b1161014f578063bbc0c742116100c1578063dd62ed3e1161007a578063dd62ed3e1461098f578063e2f45605146109cc578063f11a24d3146109f7578063f2fde38b14610a22578063f637434214610a4b578063f8b45b0514610a765761027d565b8063bbc0c7421461087f578063c0246668146108aa578063c8c8ebe4146108d3578063d257b34f146108fe578063d72361591461093b578063d85ba063146109645761027d565b80639fccce32116101135780639fccce3214610749578063a0d82dc514610774578063a457c2d71461079f578063a9059cbb146107dc578063adda68ee14610819578063b62496f5146108425761027d565b80638da5cb5b146106745780638ea5220f1461069f57806395d89b41146106ca5780639a7a23d6146106f55780639c3b4fdc1461071e5761027d565b80634a553781116101e857806370a08231116101ac57806370a082311461058a578063715018a6146105c7578063751039fc146105de5780637571336a1461060957806375f0a874146106325780638a8c523c1461065d5761027d565b80634a553781146104a35780634a62bb65146104cc5780634fbee193146104f75780636a486a8e146105345780636ddd17131461055f5761027d565b80631a8145bb1161023a5780631a8145bb1461037d57806323b872dd146103a857806327c8f835146103e5578063313ce56714610410578063395093511461043b57806349bd5a5e146104785761027d565b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102ea5780631694505e1461032757806318160ddd146103525761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610aa1565b6040516102a4919061323d565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf91906132f8565b610b33565b6040516102e19190613353565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061336e565b610b51565b60405161031e9190613353565b60405180910390f35b34801561033357600080fd5b5061033c610b71565b60405161034991906133fa565b60405180910390f35b34801561035e57600080fd5b50610367610b95565b6040516103749190613424565b60405180910390f35b34801561038957600080fd5b50610392610b9f565b60405161039f9190613424565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca919061343f565b610ba5565b6040516103dc9190613353565b60405180910390f35b3480156103f157600080fd5b506103fa610c9d565b60405161040791906134a1565b60405180910390f35b34801561041c57600080fd5b50610425610ca3565b60405161043291906134d8565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d91906132f8565b610cac565b60405161046f9190613353565b60405180910390f35b34801561048457600080fd5b5061048d610d58565b60405161049a91906134a1565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c5919061351f565b610d7c565b005b3480156104d857600080fd5b506104e1610e1d565b6040516104ee9190613353565b60405180910390f35b34801561050357600080fd5b5061051e6004803603810190610519919061336e565b610e30565b60405161052b9190613353565b60405180910390f35b34801561054057600080fd5b50610549610e86565b6040516105569190613424565b60405180910390f35b34801561056b57600080fd5b50610574610e8c565b6040516105819190613353565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac919061336e565b610e9f565b6040516105be9190613424565b60405180910390f35b3480156105d357600080fd5b506105dc610ee7565b005b3480156105ea57600080fd5b506105f3610f6f565b6040516106009190613353565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b919061355f565b61100f565b005b34801561063e57600080fd5b506106476110e6565b60405161065491906134a1565b60405180910390f35b34801561066957600080fd5b5061067261110c565b005b34801561068057600080fd5b506106896111c0565b60405161069691906134a1565b60405180910390f35b3480156106ab57600080fd5b506106b46111ea565b6040516106c191906134a1565b60405180910390f35b3480156106d657600080fd5b506106df611210565b6040516106ec919061323d565b60405180910390f35b34801561070157600080fd5b5061071c6004803603810190610717919061355f565b6112a2565b005b34801561072a57600080fd5b506107336113bb565b6040516107409190613424565b60405180910390f35b34801561075557600080fd5b5061075e6113c1565b60405161076b9190613424565b60405180910390f35b34801561078057600080fd5b506107896113c7565b6040516107969190613424565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c191906132f8565b6113cd565b6040516107d39190613353565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe91906132f8565b6114b8565b6040516108109190613353565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b919061359f565b6114d6565b005b34801561084e57600080fd5b506108696004803603810190610864919061336e565b6115f2565b6040516108769190613353565b60405180910390f35b34801561088b57600080fd5b50610894611612565b6040516108a19190613353565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc919061355f565b611625565b005b3480156108df57600080fd5b506108e861174a565b6040516108f59190613424565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190613606565b611750565b6040516109329190613353565b60405180910390f35b34801561094757600080fd5b50610962600480360381019061095d9190613633565b6118a5565b005b34801561097057600080fd5b506109796119a7565b6040516109869190613424565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b19190613633565b6119ad565b6040516109c39190613424565b60405180910390f35b3480156109d857600080fd5b506109e1611a34565b6040516109ee9190613424565b60405180910390f35b348015610a0357600080fd5b50610a0c611a3a565b604051610a199190613424565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a44919061336e565b611a40565b005b348015610a5757600080fd5b50610a60611b38565b604051610a6d9190613424565b60405180910390f35b348015610a8257600080fd5b50610a8b611b3e565b604051610a989190613424565b60405180910390f35b606060038054610ab0906136a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610adc906136a2565b8015610b295780601f10610afe57610100808354040283529160200191610b29565b820191906000526020600020905b815481529060010190602001808311610b0c57829003601f168201915b5050505050905090565b6000610b47610b40611b44565b8484611b4c565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60125481565b6000610bb2848484611d17565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bfd611b44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613746565b60405180910390fd5b610c9185610c89611b44565b858403611b4c565b60019150509392505050565b61dead81565b60006012905090565b6000610d4e610cb9611b44565b848460016000610cc7611b44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d499190613795565b611b4c565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610d84611b44565b73ffffffffffffffffffffffffffffffffffffffff16610da26111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90613837565b60405180910390fd5b81600b60026101000a81548160ff021916908315150217905550806009819055505050565b600b60009054906101000a900460ff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eef611b44565b73ffffffffffffffffffffffffffffffffffffffff16610f0d6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613837565b60405180910390fd5b610f6d6000612783565b565b6000610f79611b44565b73ffffffffffffffffffffffffffffffffffffffff16610f976111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613837565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611017611b44565b73ffffffffffffffffffffffffffffffffffffffff166110356111c0565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290613837565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611114611b44565b73ffffffffffffffffffffffffffffffffffffffff166111326111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613837565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461121f906136a2565b80601f016020809104026020016040519081016040528092919081815260200182805461124b906136a2565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b5050505050905090565b6112aa611b44565b73ffffffffffffffffffffffffffffffffffffffff166112c86111c0565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613837565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a4906138c9565b60405180910390fd5b6113b78282612849565b5050565b600e5481565b60135481565b60115481565b600080600160006113dc611b44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611499576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114909061395b565b60405180910390fd5b6114ad6114a4611b44565b85858403611b4c565b600191505092915050565b60006114cc6114c5611b44565b8484611d17565b6001905092915050565b6114de611b44565b73ffffffffffffffffffffffffffffffffffffffff166114fc6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154990613837565b60405180910390fd5b83600e8190555082600d81905550600e54600d546115709190613795565b600c8190555081601181905550806010819055506011546010546115949190613795565b600f81905550601e600f54600c546115ac9190613795565b106115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e3906139c7565b60405180910390fd5b50505050565b60166020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b61162d611b44565b73ffffffffffffffffffffffffffffffffffffffff1661164b6111c0565b73ffffffffffffffffffffffffffffffffffffffff16146116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613837565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161173e9190613353565b60405180910390a25050565b60085481565b600061175a611b44565b73ffffffffffffffffffffffffffffffffffffffff166117786111c0565b73ffffffffffffffffffffffffffffffffffffffff16146117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590613837565b60405180910390fd5b620186a060016117dc610b95565b6117e691906139e7565b6117f09190613a70565b821015611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990613b13565b60405180910390fd5b6103e8600561183f610b95565b61184991906139e7565b6118539190613a70565b821115611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90613ba5565b60405180910390fd5b8160098190555060019050919050565b6118ad611b44565b73ffffffffffffffffffffffffffffffffffffffff166118cb6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890613837565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600d5481565b611a48611b44565b73ffffffffffffffffffffffffffffffffffffffff16611a666111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390613c37565b60405180910390fd5b611b3581612783565b50565b60105481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb390613cc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390613d5b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d0a9190613424565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90613ded565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee90613e7f565b60405180910390fd5b6000811415611e1157611e0c838360006128ea565b61277e565b600b60009054906101000a900460ff161561230c57611e2e6111c0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e9c5750611e6c6111c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ed55750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f0f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f285750600560149054906101000a900460ff16155b1561230b57600b60019054906101000a900460ff1661202257601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611fe25750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201890613eeb565b60405180910390fd5b5b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120c55750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561216c5760085481111561210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690613f7d565b60405180910390fd5b600a5461211b83610e9f565b826121269190613795565b1115612167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215e90613fe9565b60405180910390fd5b61230a565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561220f5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561225e57600854811115612259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122509061407b565b60405180910390fd5b612309565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661230857600a546122bb83610e9f565b826122c69190613795565b1115612307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fe90613fe9565b60405180910390fd5b5b5b5b5b5b600061231730610e9f565b90506000600954821015905080801561233c5750600b60029054906101000a900460ff165b80156123555750600560149054906101000a900460ff16155b80156123ab5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124015750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124575750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561249b576001600560146101000a81548160ff02191690831515021790555061247f612b6b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125515750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561255b57600090505b6000811561276e57601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125be57506000600f54115b15612658576125eb60646125dd600f5488612e1f90919063ffffffff16565b612e3590919063ffffffff16565b9050600f54601054826125fe91906139e7565b6126089190613a70565b601260008282546126199190613795565b92505081905550600f546011548261263191906139e7565b61263b9190613a70565b6013600082825461264c9190613795565b9250508190555061274a565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126b357506000600c54115b15612749576126e060646126d2600c5488612e1f90919063ffffffff16565b612e3590919063ffffffff16565b9050600c54600d54826126f391906139e7565b6126fd9190613a70565b6012600082825461270e9190613795565b92505081905550600c54600e548261272691906139e7565b6127309190613a70565b601360008282546127419190613795565b925050819055505b5b600081111561275f5761275e8730836128ea565b5b808561276b919061409b565b94505b6127798787876128ea565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190613ded565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190613e7f565b60405180910390fd5b6129d5838383612e4b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5290614141565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aee9190613795565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b529190613424565b60405180910390a3612b65848484612e50565b50505050565b6000612b7630610e9f565b90506000601354601254612b8a9190613795565b9050600080831480612b9c5750600082145b15612ba957505050612e1d565b6014600954612bb891906139e7565b831115612bd1576014600954612bce91906139e7565b92505b600060028360125486612be491906139e7565b612bee9190613a70565b612bf89190613a70565b90506000612c0f8286612e5590919063ffffffff16565b90506000479050612c1f82612e6b565b6000612c348247612e5590919063ffffffff16565b90506000612c5f87612c5160135485612e1f90919063ffffffff16565b612e3590919063ffffffff16565b90506000612c77600283612e3590919063ffffffff16565b905060008284612c87919061409b565b905060006012819055506000601381905550600087118015612ca95750600081115b15612cf657612cb887826130a8565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601254604051612ced93929190614161565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612d3c906141c9565b60006040518083038185875af1925050503d8060008114612d79576040519150601f19603f3d011682016040523d82523d6000602084013e612d7e565b606091505b505080985050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612dca906141c9565b60006040518083038185875af1925050503d8060008114612e07576040519150601f19603f3d011682016040523d82523d6000602084013e612e0c565b606091505b505080985050505050505050505050505b565b60008183612e2d91906139e7565b905092915050565b60008183612e439190613a70565b905092915050565b505050565b505050565b60008183612e63919061409b565b905092915050565b6000600267ffffffffffffffff811115612e8857612e876141de565b5b604051908082528060200260200182016040528015612eb65781602001602082028036833780820191505090505b5090503081600081518110612ece57612ecd61420d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f979190614251565b81600181518110612fab57612faa61420d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613010307f000000000000000000000000000000000000000000000000000000000000000084611b4c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613072959493929190614377565b600060405180830381600087803b15801561308c57600080fd5b505af11580156130a0573d6000803e3d6000fd5b505050505050565b6130d3307f000000000000000000000000000000000000000000000000000000000000000084611b4c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161315a969594939291906143d1565b60606040518083038185885af1158015613178573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061319d9190614447565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131de5780820151818401526020810190506131c3565b838111156131ed576000848401525b50505050565b6000601f19601f8301169050919050565b600061320f826131a4565b61321981856131af565b93506132298185602086016131c0565b613232816131f3565b840191505092915050565b600060208201905081810360008301526132578184613204565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061328f82613264565b9050919050565b61329f81613284565b81146132aa57600080fd5b50565b6000813590506132bc81613296565b92915050565b6000819050919050565b6132d5816132c2565b81146132e057600080fd5b50565b6000813590506132f2816132cc565b92915050565b6000806040838503121561330f5761330e61325f565b5b600061331d858286016132ad565b925050602061332e858286016132e3565b9150509250929050565b60008115159050919050565b61334d81613338565b82525050565b60006020820190506133686000830184613344565b92915050565b6000602082840312156133845761338361325f565b5b6000613392848285016132ad565b91505092915050565b6000819050919050565b60006133c06133bb6133b684613264565b61339b565b613264565b9050919050565b60006133d2826133a5565b9050919050565b60006133e4826133c7565b9050919050565b6133f4816133d9565b82525050565b600060208201905061340f60008301846133eb565b92915050565b61341e816132c2565b82525050565b60006020820190506134396000830184613415565b92915050565b6000806000606084860312156134585761345761325f565b5b6000613466868287016132ad565b9350506020613477868287016132ad565b9250506040613488868287016132e3565b9150509250925092565b61349b81613284565b82525050565b60006020820190506134b66000830184613492565b92915050565b600060ff82169050919050565b6134d2816134bc565b82525050565b60006020820190506134ed60008301846134c9565b92915050565b6134fc81613338565b811461350757600080fd5b50565b600081359050613519816134f3565b92915050565b600080604083850312156135365761353561325f565b5b60006135448582860161350a565b9250506020613555858286016132e3565b9150509250929050565b600080604083850312156135765761357561325f565b5b6000613584858286016132ad565b92505060206135958582860161350a565b9150509250929050565b600080600080608085870312156135b9576135b861325f565b5b60006135c7878288016132e3565b94505060206135d8878288016132e3565b93505060406135e9878288016132e3565b92505060606135fa878288016132e3565b91505092959194509250565b60006020828403121561361c5761361b61325f565b5b600061362a848285016132e3565b91505092915050565b6000806040838503121561364a5761364961325f565b5b6000613658858286016132ad565b9250506020613669858286016132ad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136ba57607f821691505b602082108114156136ce576136cd613673565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006137306028836131af565b915061373b826136d4565b604082019050919050565b6000602082019050818103600083015261375f81613723565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137a0826132c2565b91506137ab836132c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137e0576137df613766565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138216020836131af565b915061382c826137eb565b602082019050919050565b6000602082019050818103600083015261385081613814565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006138b36039836131af565b91506138be82613857565b604082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006139456025836131af565b9150613950826138e9565b604082019050919050565b6000602082019050818103600083015261397481613938565b9050919050565b7f53616e69747920636865636b0000000000000000000000000000000000000000600082015250565b60006139b1600c836131af565b91506139bc8261397b565b602082019050919050565b600060208201905081810360008301526139e0816139a4565b9050919050565b60006139f2826132c2565b91506139fd836132c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3657613a35613766565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a7b826132c2565b9150613a86836132c2565b925082613a9657613a95613a41565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613afd6035836131af565b9150613b0882613aa1565b604082019050919050565b60006020820190508181036000830152613b2c81613af0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613b8f6034836131af565b9150613b9a82613b33565b604082019050919050565b60006020820190508181036000830152613bbe81613b82565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c216026836131af565b9150613c2c82613bc5565b604082019050919050565b60006020820190508181036000830152613c5081613c14565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613cb36024836131af565b9150613cbe82613c57565b604082019050919050565b60006020820190508181036000830152613ce281613ca6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d456022836131af565b9150613d5082613ce9565b604082019050919050565b60006020820190508181036000830152613d7481613d38565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613dd76025836131af565b9150613de282613d7b565b604082019050919050565b60006020820190508181036000830152613e0681613dca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e696023836131af565b9150613e7482613e0d565b604082019050919050565b60006020820190508181036000830152613e9881613e5c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613ed56016836131af565b9150613ee082613e9f565b602082019050919050565b60006020820190508181036000830152613f0481613ec8565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613f676035836131af565b9150613f7282613f0b565b604082019050919050565b60006020820190508181036000830152613f9681613f5a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613fd36013836131af565b9150613fde82613f9d565b602082019050919050565b6000602082019050818103600083015261400281613fc6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006140656036836131af565b915061407082614009565b604082019050919050565b6000602082019050818103600083015261409481614058565b9050919050565b60006140a6826132c2565b91506140b1836132c2565b9250828210156140c4576140c3613766565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061412b6026836131af565b9150614136826140cf565b604082019050919050565b6000602082019050818103600083015261415a8161411e565b9050919050565b60006060820190506141766000830186613415565b6141836020830185613415565b6141906040830184613415565b949350505050565b600081905092915050565b50565b60006141b3600083614198565b91506141be826141a3565b600082019050919050565b60006141d4826141a6565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061424b81613296565b92915050565b6000602082840312156142675761426661325f565b5b60006142758482850161423c565b91505092915050565b6000819050919050565b60006142a361429e6142998461427e565b61339b565b6132c2565b9050919050565b6142b381614288565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6142ee81613284565b82525050565b600061430083836142e5565b60208301905092915050565b6000602082019050919050565b6000614324826142b9565b61432e81856142c4565b9350614339836142d5565b8060005b8381101561436a57815161435188826142f4565b975061435c8361430c565b92505060018101905061433d565b5085935050505092915050565b600060a08201905061438c6000830188613415565b61439960208301876142aa565b81810360408301526143ab8186614319565b90506143ba6060830185613492565b6143c76080830184613415565b9695505050505050565b600060c0820190506143e66000830189613492565b6143f36020830188613415565b61440060408301876142aa565b61440d60608301866142aa565b61441a6080830185613492565b61442760a0830184613415565b979650505050505050565b600081519050614441816132cc565b92915050565b6000806000606084860312156144605761445f61325f565b5b600061446e86828701614432565b935050602061447f86828701614432565b925050604061449086828701614432565b915050925092509256fea264697066735822122046e4ca42c2c712bd78e7451db598a6e88542cd29b657f90b092c838b959cffdd64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102765760003560e01c80638da5cb5b1161014f578063bbc0c742116100c1578063dd62ed3e1161007a578063dd62ed3e1461098f578063e2f45605146109cc578063f11a24d3146109f7578063f2fde38b14610a22578063f637434214610a4b578063f8b45b0514610a765761027d565b8063bbc0c7421461087f578063c0246668146108aa578063c8c8ebe4146108d3578063d257b34f146108fe578063d72361591461093b578063d85ba063146109645761027d565b80639fccce32116101135780639fccce3214610749578063a0d82dc514610774578063a457c2d71461079f578063a9059cbb146107dc578063adda68ee14610819578063b62496f5146108425761027d565b80638da5cb5b146106745780638ea5220f1461069f57806395d89b41146106ca5780639a7a23d6146106f55780639c3b4fdc1461071e5761027d565b80634a553781116101e857806370a08231116101ac57806370a082311461058a578063715018a6146105c7578063751039fc146105de5780637571336a1461060957806375f0a874146106325780638a8c523c1461065d5761027d565b80634a553781146104a35780634a62bb65146104cc5780634fbee193146104f75780636a486a8e146105345780636ddd17131461055f5761027d565b80631a8145bb1161023a5780631a8145bb1461037d57806323b872dd146103a857806327c8f835146103e5578063313ce56714610410578063395093511461043b57806349bd5a5e146104785761027d565b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102ea5780631694505e1461032757806318160ddd146103525761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610aa1565b6040516102a4919061323d565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf91906132f8565b610b33565b6040516102e19190613353565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061336e565b610b51565b60405161031e9190613353565b60405180910390f35b34801561033357600080fd5b5061033c610b71565b60405161034991906133fa565b60405180910390f35b34801561035e57600080fd5b50610367610b95565b6040516103749190613424565b60405180910390f35b34801561038957600080fd5b50610392610b9f565b60405161039f9190613424565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca919061343f565b610ba5565b6040516103dc9190613353565b60405180910390f35b3480156103f157600080fd5b506103fa610c9d565b60405161040791906134a1565b60405180910390f35b34801561041c57600080fd5b50610425610ca3565b60405161043291906134d8565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d91906132f8565b610cac565b60405161046f9190613353565b60405180910390f35b34801561048457600080fd5b5061048d610d58565b60405161049a91906134a1565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c5919061351f565b610d7c565b005b3480156104d857600080fd5b506104e1610e1d565b6040516104ee9190613353565b60405180910390f35b34801561050357600080fd5b5061051e6004803603810190610519919061336e565b610e30565b60405161052b9190613353565b60405180910390f35b34801561054057600080fd5b50610549610e86565b6040516105569190613424565b60405180910390f35b34801561056b57600080fd5b50610574610e8c565b6040516105819190613353565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac919061336e565b610e9f565b6040516105be9190613424565b60405180910390f35b3480156105d357600080fd5b506105dc610ee7565b005b3480156105ea57600080fd5b506105f3610f6f565b6040516106009190613353565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b919061355f565b61100f565b005b34801561063e57600080fd5b506106476110e6565b60405161065491906134a1565b60405180910390f35b34801561066957600080fd5b5061067261110c565b005b34801561068057600080fd5b506106896111c0565b60405161069691906134a1565b60405180910390f35b3480156106ab57600080fd5b506106b46111ea565b6040516106c191906134a1565b60405180910390f35b3480156106d657600080fd5b506106df611210565b6040516106ec919061323d565b60405180910390f35b34801561070157600080fd5b5061071c6004803603810190610717919061355f565b6112a2565b005b34801561072a57600080fd5b506107336113bb565b6040516107409190613424565b60405180910390f35b34801561075557600080fd5b5061075e6113c1565b60405161076b9190613424565b60405180910390f35b34801561078057600080fd5b506107896113c7565b6040516107969190613424565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c191906132f8565b6113cd565b6040516107d39190613353565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe91906132f8565b6114b8565b6040516108109190613353565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b919061359f565b6114d6565b005b34801561084e57600080fd5b506108696004803603810190610864919061336e565b6115f2565b6040516108769190613353565b60405180910390f35b34801561088b57600080fd5b50610894611612565b6040516108a19190613353565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc919061355f565b611625565b005b3480156108df57600080fd5b506108e861174a565b6040516108f59190613424565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190613606565b611750565b6040516109329190613353565b60405180910390f35b34801561094757600080fd5b50610962600480360381019061095d9190613633565b6118a5565b005b34801561097057600080fd5b506109796119a7565b6040516109869190613424565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b19190613633565b6119ad565b6040516109c39190613424565b60405180910390f35b3480156109d857600080fd5b506109e1611a34565b6040516109ee9190613424565b60405180910390f35b348015610a0357600080fd5b50610a0c611a3a565b604051610a199190613424565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a44919061336e565b611a40565b005b348015610a5757600080fd5b50610a60611b38565b604051610a6d9190613424565b60405180910390f35b348015610a8257600080fd5b50610a8b611b3e565b604051610a989190613424565b60405180910390f35b606060038054610ab0906136a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610adc906136a2565b8015610b295780601f10610afe57610100808354040283529160200191610b29565b820191906000526020600020905b815481529060010190602001808311610b0c57829003601f168201915b5050505050905090565b6000610b47610b40611b44565b8484611b4c565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60125481565b6000610bb2848484611d17565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bfd611b44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613746565b60405180910390fd5b610c9185610c89611b44565b858403611b4c565b60019150509392505050565b61dead81565b60006012905090565b6000610d4e610cb9611b44565b848460016000610cc7611b44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d499190613795565b611b4c565b6001905092915050565b7f00000000000000000000000052c272905c12f211e4d0a0adec84285ebf14f73081565b610d84611b44565b73ffffffffffffffffffffffffffffffffffffffff16610da26111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90613837565b60405180910390fd5b81600b60026101000a81548160ff021916908315150217905550806009819055505050565b600b60009054906101000a900460ff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eef611b44565b73ffffffffffffffffffffffffffffffffffffffff16610f0d6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613837565b60405180910390fd5b610f6d6000612783565b565b6000610f79611b44565b73ffffffffffffffffffffffffffffffffffffffff16610f976111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613837565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611017611b44565b73ffffffffffffffffffffffffffffffffffffffff166110356111c0565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290613837565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611114611b44565b73ffffffffffffffffffffffffffffffffffffffff166111326111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613837565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461121f906136a2565b80601f016020809104026020016040519081016040528092919081815260200182805461124b906136a2565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b5050505050905090565b6112aa611b44565b73ffffffffffffffffffffffffffffffffffffffff166112c86111c0565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613837565b60405180910390fd5b7f00000000000000000000000052c272905c12f211e4d0a0adec84285ebf14f73073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a4906138c9565b60405180910390fd5b6113b78282612849565b5050565b600e5481565b60135481565b60115481565b600080600160006113dc611b44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611499576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114909061395b565b60405180910390fd5b6114ad6114a4611b44565b85858403611b4c565b600191505092915050565b60006114cc6114c5611b44565b8484611d17565b6001905092915050565b6114de611b44565b73ffffffffffffffffffffffffffffffffffffffff166114fc6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154990613837565b60405180910390fd5b83600e8190555082600d81905550600e54600d546115709190613795565b600c8190555081601181905550806010819055506011546010546115949190613795565b600f81905550601e600f54600c546115ac9190613795565b106115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e3906139c7565b60405180910390fd5b50505050565b60166020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b61162d611b44565b73ffffffffffffffffffffffffffffffffffffffff1661164b6111c0565b73ffffffffffffffffffffffffffffffffffffffff16146116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613837565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161173e9190613353565b60405180910390a25050565b60085481565b600061175a611b44565b73ffffffffffffffffffffffffffffffffffffffff166117786111c0565b73ffffffffffffffffffffffffffffffffffffffff16146117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590613837565b60405180910390fd5b620186a060016117dc610b95565b6117e691906139e7565b6117f09190613a70565b821015611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990613b13565b60405180910390fd5b6103e8600561183f610b95565b61184991906139e7565b6118539190613a70565b821115611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90613ba5565b60405180910390fd5b8160098190555060019050919050565b6118ad611b44565b73ffffffffffffffffffffffffffffffffffffffff166118cb6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890613837565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600d5481565b611a48611b44565b73ffffffffffffffffffffffffffffffffffffffff16611a666111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390613c37565b60405180910390fd5b611b3581612783565b50565b60105481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb390613cc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390613d5b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d0a9190613424565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90613ded565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee90613e7f565b60405180910390fd5b6000811415611e1157611e0c838360006128ea565b61277e565b600b60009054906101000a900460ff161561230c57611e2e6111c0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e9c5750611e6c6111c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ed55750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f0f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f285750600560149054906101000a900460ff16155b1561230b57600b60019054906101000a900460ff1661202257601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611fe25750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201890613eeb565b60405180910390fd5b5b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120c55750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561216c5760085481111561210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690613f7d565b60405180910390fd5b600a5461211b83610e9f565b826121269190613795565b1115612167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215e90613fe9565b60405180910390fd5b61230a565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561220f5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561225e57600854811115612259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122509061407b565b60405180910390fd5b612309565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661230857600a546122bb83610e9f565b826122c69190613795565b1115612307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fe90613fe9565b60405180910390fd5b5b5b5b5b5b600061231730610e9f565b90506000600954821015905080801561233c5750600b60029054906101000a900460ff165b80156123555750600560149054906101000a900460ff16155b80156123ab5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124015750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124575750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561249b576001600560146101000a81548160ff02191690831515021790555061247f612b6b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125515750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561255b57600090505b6000811561276e57601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125be57506000600f54115b15612658576125eb60646125dd600f5488612e1f90919063ffffffff16565b612e3590919063ffffffff16565b9050600f54601054826125fe91906139e7565b6126089190613a70565b601260008282546126199190613795565b92505081905550600f546011548261263191906139e7565b61263b9190613a70565b6013600082825461264c9190613795565b9250508190555061274a565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126b357506000600c54115b15612749576126e060646126d2600c5488612e1f90919063ffffffff16565b612e3590919063ffffffff16565b9050600c54600d54826126f391906139e7565b6126fd9190613a70565b6012600082825461270e9190613795565b92505081905550600c54600e548261272691906139e7565b6127309190613a70565b601360008282546127419190613795565b925050819055505b5b600081111561275f5761275e8730836128ea565b5b808561276b919061409b565b94505b6127798787876128ea565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190613ded565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190613e7f565b60405180910390fd5b6129d5838383612e4b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5290614141565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aee9190613795565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b529190613424565b60405180910390a3612b65848484612e50565b50505050565b6000612b7630610e9f565b90506000601354601254612b8a9190613795565b9050600080831480612b9c5750600082145b15612ba957505050612e1d565b6014600954612bb891906139e7565b831115612bd1576014600954612bce91906139e7565b92505b600060028360125486612be491906139e7565b612bee9190613a70565b612bf89190613a70565b90506000612c0f8286612e5590919063ffffffff16565b90506000479050612c1f82612e6b565b6000612c348247612e5590919063ffffffff16565b90506000612c5f87612c5160135485612e1f90919063ffffffff16565b612e3590919063ffffffff16565b90506000612c77600283612e3590919063ffffffff16565b905060008284612c87919061409b565b905060006012819055506000601381905550600087118015612ca95750600081115b15612cf657612cb887826130a8565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601254604051612ced93929190614161565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612d3c906141c9565b60006040518083038185875af1925050503d8060008114612d79576040519150601f19603f3d011682016040523d82523d6000602084013e612d7e565b606091505b505080985050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612dca906141c9565b60006040518083038185875af1925050503d8060008114612e07576040519150601f19603f3d011682016040523d82523d6000602084013e612e0c565b606091505b505080985050505050505050505050505b565b60008183612e2d91906139e7565b905092915050565b60008183612e439190613a70565b905092915050565b505050565b505050565b60008183612e63919061409b565b905092915050565b6000600267ffffffffffffffff811115612e8857612e876141de565b5b604051908082528060200260200182016040528015612eb65781602001602082028036833780820191505090505b5090503081600081518110612ece57612ecd61420d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f979190614251565b81600181518110612fab57612faa61420d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613010307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b4c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613072959493929190614377565b600060405180830381600087803b15801561308c57600080fd5b505af11580156130a0573d6000803e3d6000fd5b505050505050565b6130d3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b4c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161315a969594939291906143d1565b60606040518083038185885af1158015613178573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061319d9190614447565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131de5780820151818401526020810190506131c3565b838111156131ed576000848401525b50505050565b6000601f19601f8301169050919050565b600061320f826131a4565b61321981856131af565b93506132298185602086016131c0565b613232816131f3565b840191505092915050565b600060208201905081810360008301526132578184613204565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061328f82613264565b9050919050565b61329f81613284565b81146132aa57600080fd5b50565b6000813590506132bc81613296565b92915050565b6000819050919050565b6132d5816132c2565b81146132e057600080fd5b50565b6000813590506132f2816132cc565b92915050565b6000806040838503121561330f5761330e61325f565b5b600061331d858286016132ad565b925050602061332e858286016132e3565b9150509250929050565b60008115159050919050565b61334d81613338565b82525050565b60006020820190506133686000830184613344565b92915050565b6000602082840312156133845761338361325f565b5b6000613392848285016132ad565b91505092915050565b6000819050919050565b60006133c06133bb6133b684613264565b61339b565b613264565b9050919050565b60006133d2826133a5565b9050919050565b60006133e4826133c7565b9050919050565b6133f4816133d9565b82525050565b600060208201905061340f60008301846133eb565b92915050565b61341e816132c2565b82525050565b60006020820190506134396000830184613415565b92915050565b6000806000606084860312156134585761345761325f565b5b6000613466868287016132ad565b9350506020613477868287016132ad565b9250506040613488868287016132e3565b9150509250925092565b61349b81613284565b82525050565b60006020820190506134b66000830184613492565b92915050565b600060ff82169050919050565b6134d2816134bc565b82525050565b60006020820190506134ed60008301846134c9565b92915050565b6134fc81613338565b811461350757600080fd5b50565b600081359050613519816134f3565b92915050565b600080604083850312156135365761353561325f565b5b60006135448582860161350a565b9250506020613555858286016132e3565b9150509250929050565b600080604083850312156135765761357561325f565b5b6000613584858286016132ad565b92505060206135958582860161350a565b9150509250929050565b600080600080608085870312156135b9576135b861325f565b5b60006135c7878288016132e3565b94505060206135d8878288016132e3565b93505060406135e9878288016132e3565b92505060606135fa878288016132e3565b91505092959194509250565b60006020828403121561361c5761361b61325f565b5b600061362a848285016132e3565b91505092915050565b6000806040838503121561364a5761364961325f565b5b6000613658858286016132ad565b9250506020613669858286016132ad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136ba57607f821691505b602082108114156136ce576136cd613673565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006137306028836131af565b915061373b826136d4565b604082019050919050565b6000602082019050818103600083015261375f81613723565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137a0826132c2565b91506137ab836132c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137e0576137df613766565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138216020836131af565b915061382c826137eb565b602082019050919050565b6000602082019050818103600083015261385081613814565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006138b36039836131af565b91506138be82613857565b604082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006139456025836131af565b9150613950826138e9565b604082019050919050565b6000602082019050818103600083015261397481613938565b9050919050565b7f53616e69747920636865636b0000000000000000000000000000000000000000600082015250565b60006139b1600c836131af565b91506139bc8261397b565b602082019050919050565b600060208201905081810360008301526139e0816139a4565b9050919050565b60006139f2826132c2565b91506139fd836132c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3657613a35613766565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a7b826132c2565b9150613a86836132c2565b925082613a9657613a95613a41565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613afd6035836131af565b9150613b0882613aa1565b604082019050919050565b60006020820190508181036000830152613b2c81613af0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613b8f6034836131af565b9150613b9a82613b33565b604082019050919050565b60006020820190508181036000830152613bbe81613b82565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c216026836131af565b9150613c2c82613bc5565b604082019050919050565b60006020820190508181036000830152613c5081613c14565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613cb36024836131af565b9150613cbe82613c57565b604082019050919050565b60006020820190508181036000830152613ce281613ca6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d456022836131af565b9150613d5082613ce9565b604082019050919050565b60006020820190508181036000830152613d7481613d38565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613dd76025836131af565b9150613de282613d7b565b604082019050919050565b60006020820190508181036000830152613e0681613dca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e696023836131af565b9150613e7482613e0d565b604082019050919050565b60006020820190508181036000830152613e9881613e5c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613ed56016836131af565b9150613ee082613e9f565b602082019050919050565b60006020820190508181036000830152613f0481613ec8565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613f676035836131af565b9150613f7282613f0b565b604082019050919050565b60006020820190508181036000830152613f9681613f5a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613fd36013836131af565b9150613fde82613f9d565b602082019050919050565b6000602082019050818103600083015261400281613fc6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006140656036836131af565b915061407082614009565b604082019050919050565b6000602082019050818103600083015261409481614058565b9050919050565b60006140a6826132c2565b91506140b1836132c2565b9250828210156140c4576140c3613766565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061412b6026836131af565b9150614136826140cf565b604082019050919050565b6000602082019050818103600083015261415a8161411e565b9050919050565b60006060820190506141766000830186613415565b6141836020830185613415565b6141906040830184613415565b949350505050565b600081905092915050565b50565b60006141b3600083614198565b91506141be826141a3565b600082019050919050565b60006141d4826141a6565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061424b81613296565b92915050565b6000602082840312156142675761426661325f565b5b60006142758482850161423c565b91505092915050565b6000819050919050565b60006142a361429e6142998461427e565b61339b565b6132c2565b9050919050565b6142b381614288565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6142ee81613284565b82525050565b600061430083836142e5565b60208301905092915050565b6000602082019050919050565b6000614324826142b9565b61432e81856142c4565b9350614339836142d5565b8060005b8381101561436a57815161435188826142f4565b975061435c8361430c565b92505060018101905061433d565b5085935050505092915050565b600060a08201905061438c6000830188613415565b61439960208301876142aa565b81810360408301526143ab8186614319565b90506143ba6060830185613492565b6143c76080830184613415565b9695505050505050565b600060c0820190506143e66000830189613492565b6143f36020830188613415565b61440060408301876142aa565b61440d60608301866142aa565b61441a6080830185613492565b61442760a0830184613415565b979650505050505050565b600081519050614441816132cc565b92915050565b6000806000606084860312156144605761445f61325f565b5b600061446e86828701614432565b935050602061447f86828701614432565b925050604061449086828701614432565b915050925092509256fea264697066735822122046e4ca42c2c712bd78e7451db598a6e88542cd29b657f90b092c838b959cffdd64736f6c634300080a0033

Deployed Bytecode Sourcemap

27941:13043:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6208:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8375:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28940:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28015:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7328:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28724:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9026:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28118:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7170:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9927:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28073:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33077:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28396:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34374:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28620:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28476:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7499:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1514:103;;;;;;;;;;;;;:::i;:::-;;32117:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32814:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28241:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31748:112;;;;;;;;;;;;;:::i;:::-;;863:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28210:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6427:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33866:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28587:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28764:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28693:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10645:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7839:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33240:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29161:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28436:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33676:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28281:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32308:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31912:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28516:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8077:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28323:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28550:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1772:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28655:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28363:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6208:100;6262:13;6295:5;6288:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6208:100;:::o;8375:169::-;8458:4;8475:39;8484:12;:10;:12::i;:::-;8498:7;8507:6;8475:8;:39::i;:::-;8532:4;8525:11;;8375:169;;;;:::o;28940:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;28015:51::-;;;:::o;7328:108::-;7389:7;7416:12;;7409:19;;7328:108;:::o;28724:33::-;;;;:::o;9026:492::-;9166:4;9183:36;9193:6;9201:9;9212:6;9183:9;:36::i;:::-;9232:24;9259:11;:19;9271:6;9259:19;;;;;;;;;;;;;;;:33;9279:12;:10;:12::i;:::-;9259:33;;;;;;;;;;;;;;;;9232:60;;9331:6;9311:16;:26;;9303:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9418:57;9427:6;9435:12;:10;:12::i;:::-;9468:6;9449:16;:25;9418:8;:57::i;:::-;9506:4;9499:11;;;9026:492;;;;;:::o;28118:53::-;28164:6;28118:53;:::o;7170:93::-;7228:5;7253:2;7246:9;;7170:93;:::o;9927:215::-;10015:4;10032:80;10041:12;:10;:12::i;:::-;10055:7;10101:10;10064:11;:25;10076:12;:10;:12::i;:::-;10064:25;;;;;;;;;;;;;;;:34;10090:7;10064:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10032:8;:80::i;:::-;10130:4;10123:11;;9927:215;;;;:::o;28073:38::-;;;:::o;33077:155::-;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33178:7:::1;33164:11;;:21;;;;;;;;;;;;;;;;;;33217:6;33196:18;:27;;;;33077:155:::0;;:::o;28396:33::-;;;;;;;;;;;;;:::o;34374:126::-;34440:4;34464:19;:28;34484:7;34464:28;;;;;;;;;;;;;;;;;;;;;;;;;34457:35;;34374:126;;;:::o;28620:28::-;;;;:::o;28476:31::-;;;;;;;;;;;;;:::o;7499:127::-;7573:7;7600:9;:18;7610:7;7600:18;;;;;;;;;;;;;;;;7593:25;;7499:127;;;:::o;1514:103::-;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1579:30:::1;1606:1;1579:18;:30::i;:::-;1514:103::o:0;32117:121::-;32169:4;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32203:5:::1;32186:14;;:22;;;;;;;;;;;;;;;;;;32226:4;32219:11;;32117:121:::0;:::o;32814:167::-;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32969:4:::1;32927:31;:39;32959:6;32927:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32814:167:::0;;:::o;28241:30::-;;;;;;;;;;;;;:::o;31748:112::-;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31819:4:::1;31803:13;;:20;;;;;;;;;;;;;;;;;;31848:4;31834:11;;:18;;;;;;;;;;;;;;;;;;31748:112::o:0;863:87::-;909:7;936:6;;;;;;;;;;;929:13;;863:87;:::o;28210:24::-;;;;;;;;;;;;;:::o;6427:104::-;6483:13;6516:7;6509:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6427:104;:::o;33866:304::-;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34010:13:::1;34002:21;;:4;:21;;;;33980:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;34121:41;34150:4;34156:5;34121:28;:41::i;:::-;33866:304:::0;;:::o;28587:24::-;;;;:::o;28764:27::-;;;;:::o;28693:25::-;;;;:::o;10645:413::-;10738:4;10755:24;10782:11;:25;10794:12;:10;:12::i;:::-;10782:25;;;;;;;;;;;;;;;:34;10808:7;10782:34;;;;;;;;;;;;;;;;10755:61;;10855:15;10835:16;:35;;10827:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10948:67;10957:12;:10;:12::i;:::-;10971:7;10999:15;10980:16;:34;10948:8;:67::i;:::-;11046:4;11039:11;;;10645:413;;;;:::o;7839:175::-;7925:4;7942:42;7952:12;:10;:12::i;:::-;7966:9;7977:6;7942:9;:42::i;:::-;8002:4;7995:11;;7839:175;;;;:::o;33240:428::-;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33369:6:::1;33357:9;:18;;;;33404:6;33386:15;:24;;;;33454:9;;33436:15;;:27;;;;:::i;:::-;33421:12;:42;;;;33489:7;33476:10;:20;;;;33526:7;33507:16;:26;;;;33579:10;;33560:16;;:29;;;;:::i;:::-;33544:13;:45;;;;33641:2;33625:13;;33610:12;;:28;;;;:::i;:::-;:33;33602:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33240:428:::0;;;;:::o;29161:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;28436:33::-;;;;;;;;;;;;;:::o;33676:182::-;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33792:8:::1;33761:19;:28;33781:7;33761:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33832:7;33816:34;;;33841:8;33816:34;;;;;;:::i;:::-;;;;;;;;33676:182:::0;;:::o;28281:35::-;;;;:::o;32308:497::-;32416:4;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32495:6:::1;32490:1;32474:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32473:28;;;;:::i;:::-;32460:9;:41;;32438:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;32650:4;32645:1;32629:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32628:26;;;;:::i;:::-;32615:9;:39;;32593:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;32766:9;32745:18;:30;;;;32793:4;32786:11;;32308:497:::0;;;:::o;31912:153::-;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32014:3:::1;32002:9;;:15;;;;;;;;;;;;;;;;;;32047:9;32029:15;;:27;;;;;;;;;;;;;;;;;;31912:153:::0;;:::o;28516:27::-;;;;:::o;8077:151::-;8166:7;8193:11;:18;8205:5;8193:18;;;;;;;;;;;;;;;:27;8212:7;8193:27;;;;;;;;;;;;;;;;8186:34;;8077:151;;;;:::o;28323:33::-;;;;:::o;28550:30::-;;;;:::o;1772:201::-;1094:12;:10;:12::i;:::-;1083:23;;:7;:5;:7::i;:::-;:23;;;1075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1881:1:::1;1861:22;;:8;:22;;;;1853:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1937:28;1956:8;1937:18;:28::i;:::-;1772:201:::0;:::o;28655:31::-;;;;:::o;28363:24::-;;;;:::o;237:98::-;290:7;317:10;310:17;;237:98;:::o;14329:380::-;14482:1;14465:19;;:5;:19;;;;14457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14563:1;14544:21;;:7;:21;;;;14536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14647:6;14617:11;:18;14629:5;14617:18;;;;;;;;;;;;;;;:27;14636:7;14617:27;;;;;;;;;;;;;;;:36;;;;14685:7;14669:32;;14678:5;14669:32;;;14694:6;14669:32;;;;;;:::i;:::-;;;;;;;;14329:380;;;:::o;34508:3778::-;34656:1;34640:18;;:4;:18;;;;34632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34733:1;34719:16;;:2;:16;;;;34711:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34802:1;34792:6;:11;34788:93;;;34820:28;34836:4;34842:2;34846:1;34820:15;:28::i;:::-;34863:7;;34788:93;34897:14;;;;;;;;;;;34893:1694;;;34958:7;:5;:7::i;:::-;34950:15;;:4;:15;;;;:49;;;;;34992:7;:5;:7::i;:::-;34986:13;;:2;:13;;;;34950:49;:86;;;;;35034:1;35020:16;;:2;:16;;;;34950:86;:128;;;;;35071:6;35057:21;;:2;:21;;;;34950:128;:158;;;;;35100:8;;;;;;;;;;;35099:9;34950:158;34928:1648;;;35148:13;;;;;;;;;;;35143:223;;35220:19;:25;35240:4;35220:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35249:19;:23;35269:2;35249:23;;;;;;;;;;;;;;;;;;;;;;;;;35220:52;35186:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;35143:223;35440:25;:31;35466:4;35440:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;35497:31;:35;35529:2;35497:35;;;;;;;;;;;;;;;;;;;;;;;;;35496:36;35440:92;35414:1147;;;35619:20;;35609:6;:30;;35575:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;35827:9;;35810:13;35820:2;35810:9;:13::i;:::-;35801:6;:22;;;;:::i;:::-;:35;;35767:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;35414:1147;;;36005:25;:29;36031:2;36005:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;36060:31;:37;36092:4;36060:37;;;;;;;;;;;;;;;;;;;;;;;;;36059:38;36005:92;35979:582;;;36184:20;;36174:6;:30;;36140:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;35979:582;;;36341:31;:35;36373:2;36341:35;;;;;;;;;;;;;;;;;;;;;;;;;36336:225;;36461:9;;36444:13;36454:2;36444:9;:13::i;:::-;36435:6;:22;;;;:::i;:::-;:35;;36401:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36336:225;35979:582;35414:1147;34928:1648;34893:1694;36599:28;36630:24;36648:4;36630:9;:24::i;:::-;36599:55;;36667:12;36706:18;;36682:20;:42;;36667:57;;36755:7;:35;;;;;36779:11;;;;;;;;;;;36755:35;:61;;;;;36808:8;;;;;;;;;;;36807:9;36755:61;:110;;;;;36834:25;:31;36860:4;36834:31;;;;;;;;;;;;;;;;;;;;;;;;;36833:32;36755:110;:153;;;;;36883:19;:25;36903:4;36883:25;;;;;;;;;;;;;;;;;;;;;;;;;36882:26;36755:153;:194;;;;;36926:19;:23;36946:2;36926:23;;;;;;;;;;;;;;;;;;;;;;;;;36925:24;36755:194;36737:326;;;36987:4;36976:8;;:15;;;;;;;;;;;;;;;;;;37008:10;:8;:10::i;:::-;37046:5;37035:8;;:16;;;;;;;;;;;;;;;;;;36737:326;37075:12;37091:8;;;;;;;;;;;37090:9;37075:24;;37201:19;:25;37221:4;37201:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37230:19;:23;37250:2;37230:23;;;;;;;;;;;;;;;;;;;;;;;;;37201:52;37197:100;;;37280:5;37270:15;;37197:100;37309:12;37414:7;37410:823;;;37466:25;:29;37492:2;37466:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;37515:1;37499:13;;:17;37466:50;37462:622;;;37544:34;37574:3;37544:25;37555:13;;37544:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;37537:41;;37647:13;;37627:16;;37620:4;:23;;;;:::i;:::-;37619:41;;;;:::i;:::-;37597:18;;:63;;;;;;;:::i;:::-;;;;;;;;37717:13;;37703:10;;37696:4;:17;;;;:::i;:::-;37695:35;;;;:::i;:::-;37679:12;;:51;;;;;;;:::i;:::-;;;;;;;;37462:622;;;37808:25;:31;37834:4;37808:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;37858:1;37843:12;;:16;37808:51;37804:280;;;37887:33;37916:3;37887:24;37898:12;;37887:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;37880:40;;37988:12;;37969:15;;37962:4;:22;;;;:::i;:::-;37961:39;;;;:::i;:::-;37939:18;;:61;;;;;;;:::i;:::-;;;;;;;;38056:12;;38043:9;;38036:4;:16;;;;:::i;:::-;38035:33;;;;:::i;:::-;38019:12;;:49;;;;;;;:::i;:::-;;;;;;;;37804:280;37462:622;38111:1;38104:4;:8;38100:91;;;38133:42;38149:4;38163;38170;38133:15;:42::i;:::-;38100:91;38217:4;38207:14;;;;;:::i;:::-;;;37410:823;38245:33;38261:4;38267:2;38271:6;38245:15;:33::i;:::-;34621:3665;;;;34508:3778;;;;:::o;2133:191::-;2207:16;2226:6;;;;;;;;;;;2207:25;;2252:8;2243:6;;:17;;;;;;;;;;;;;;;;;;2307:8;2276:40;;2297:8;2276:40;;;;;;;;;;;;2196:128;2133:191;:::o;34178:188::-;34295:5;34261:25;:31;34287:4;34261:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34352:5;34318:40;;34346:4;34318:40;;;;;;;;;;;;34178:188;;:::o;11548:733::-;11706:1;11688:20;;:6;:20;;;;11680:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11790:1;11769:23;;:9;:23;;;;11761:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11845:47;11866:6;11874:9;11885:6;11845:20;:47::i;:::-;11905:21;11929:9;:17;11939:6;11929:17;;;;;;;;;;;;;;;;11905:41;;11982:6;11965:13;:23;;11957:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12103:6;12087:13;:22;12067:9;:17;12077:6;12067:17;;;;;;;;;;;;;;;:42;;;;12155:6;12131:9;:20;12141:9;12131:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12196:9;12179:35;;12188:6;12179:35;;;12207:6;12179:35;;;;;;:::i;:::-;;;;;;;;12227:46;12247:6;12255:9;12266:6;12227:19;:46::i;:::-;11669:612;11548:733;;;:::o;39414:1565::-;39453:23;39479:24;39497:4;39479:9;:24::i;:::-;39453:50;;39514:25;39563:12;;39542:18;;:33;;;;:::i;:::-;39514:61;;39586:12;39634:1;39615:15;:20;:46;;;;39660:1;39639:17;:22;39615:46;39611:85;;;39678:7;;;;;39611:85;39751:2;39730:18;;:23;;;;:::i;:::-;39712:15;:41;39708:115;;;39809:2;39788:18;;:23;;;;:::i;:::-;39770:41;;39708:115;39884:23;39971:1;39951:17;39929:18;;39911:15;:36;;;;:::i;:::-;39910:58;;;;:::i;:::-;:62;;;;:::i;:::-;39884:88;;39983:26;40012:36;40032:15;40012;:19;;:36;;;;:::i;:::-;39983:65;;40061:25;40089:21;40061:49;;40123:36;40140:18;40123:16;:36::i;:::-;40172:18;40193:44;40219:17;40193:21;:25;;:44;;;;:::i;:::-;40172:65;;40251:23;40277:51;40310:17;40277:28;40292:12;;40277:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;40251:77;;40339:23;40365:22;40385:1;40365:15;:19;;:22;;;;:::i;:::-;40339:48;;40401:23;40440:15;40427:10;:28;;;;:::i;:::-;40401:54;;40489:1;40468:18;:22;;;;40516:1;40501:12;:16;;;;40552:1;40534:15;:19;:42;;;;;40575:1;40557:15;:19;40534:42;40530:278;;;40593:46;40606:15;40623;40593:12;:46::i;:::-;40659:137;40692:18;40729:15;40763:18;;40659:137;;;;;;;;:::i;:::-;;;;;;;;40530:278;40840:15;;;;;;;;;;;40832:29;;40869:15;40832:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40818:71;;;;;40922:9;;;;;;;;;;;40914:23;;40945:21;40914:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40900:71;;;;;39442:1537;;;;;;;;;;39414:1565;:::o;19258:98::-;19316:7;19347:1;19343;:5;;;;:::i;:::-;19336:12;;19258:98;;;;:::o;19657:::-;19715:7;19746:1;19742;:5;;;;:::i;:::-;19735:12;;19657:98;;;;:::o;15309:125::-;;;;:::o;16038:124::-;;;;:::o;18901:98::-;18959:7;18990:1;18986;:5;;;;:::i;:::-;18979:12;;18901:98;;;;:::o;38294:589::-;38420:21;38458:1;38444:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38420:40;;38489:4;38471;38476:1;38471:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;38515:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38505:4;38510:1;38505:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;38550:62;38567:4;38582:15;38600:11;38550:8;:62::i;:::-;38651:15;:66;;;38732:11;38758:1;38802:4;38829;38849:15;38651:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38349:534;38294:589;:::o;38891:515::-;39039:62;39056:4;39071:15;39089:11;39039:8;:62::i;:::-;39144:15;:31;;;39183:9;39216:4;39236:11;39262:1;39305;39348:9;;;;;;;;;;;39372:15;39144:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38891:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:116::-;6636:21;6651:5;6636:21;:::i;:::-;6629:5;6626:32;6616:60;;6672:1;6669;6662:12;6616:60;6566:116;:::o;6688:133::-;6731:5;6769:6;6756:20;6747:29;;6785:30;6809:5;6785:30;:::i;:::-;6688:133;;;;:::o;6827:468::-;6892:6;6900;6949:2;6937:9;6928:7;6924:23;6920:32;6917:119;;;6955:79;;:::i;:::-;6917:119;7075:1;7100:50;7142:7;7133:6;7122:9;7118:22;7100:50;:::i;:::-;7090:60;;7046:114;7199:2;7225:53;7270:7;7261:6;7250:9;7246:22;7225:53;:::i;:::-;7215:63;;7170:118;6827:468;;;;;:::o;7301:::-;7366:6;7374;7423:2;7411:9;7402:7;7398:23;7394:32;7391:119;;;7429:79;;:::i;:::-;7391:119;7549:1;7574:53;7619:7;7610:6;7599:9;7595:22;7574:53;:::i;:::-;7564:63;;7520:117;7676:2;7702:50;7744:7;7735:6;7724:9;7720:22;7702:50;:::i;:::-;7692:60;;7647:115;7301:468;;;;;:::o;7775:765::-;7861:6;7869;7877;7885;7934:3;7922:9;7913:7;7909:23;7905:33;7902:120;;;7941:79;;:::i;:::-;7902:120;8061:1;8086:53;8131:7;8122:6;8111:9;8107:22;8086:53;:::i;:::-;8076:63;;8032:117;8188:2;8214:53;8259:7;8250:6;8239:9;8235:22;8214:53;:::i;:::-;8204:63;;8159:118;8316:2;8342:53;8387:7;8378:6;8367:9;8363:22;8342:53;:::i;:::-;8332:63;;8287:118;8444:2;8470:53;8515:7;8506:6;8495:9;8491:22;8470:53;:::i;:::-;8460:63;;8415:118;7775:765;;;;;;;:::o;8546:329::-;8605:6;8654:2;8642:9;8633:7;8629:23;8625:32;8622:119;;;8660:79;;:::i;:::-;8622:119;8780:1;8805:53;8850:7;8841:6;8830:9;8826:22;8805:53;:::i;:::-;8795:63;;8751:117;8546:329;;;;:::o;8881:474::-;8949:6;8957;9006:2;8994:9;8985:7;8981:23;8977:32;8974:119;;;9012:79;;:::i;:::-;8974:119;9132:1;9157:53;9202:7;9193:6;9182:9;9178:22;9157:53;:::i;:::-;9147:63;;9103:117;9259:2;9285:53;9330:7;9321:6;9310:9;9306:22;9285:53;:::i;:::-;9275:63;;9230:118;8881:474;;;;;:::o;9361:180::-;9409:77;9406:1;9399:88;9506:4;9503:1;9496:15;9530:4;9527:1;9520:15;9547:320;9591:6;9628:1;9622:4;9618:12;9608:22;;9675:1;9669:4;9665:12;9696:18;9686:81;;9752:4;9744:6;9740:17;9730:27;;9686:81;9814:2;9806:6;9803:14;9783:18;9780:38;9777:84;;;9833:18;;:::i;:::-;9777:84;9598:269;9547:320;;;:::o;9873:227::-;10013:34;10009:1;10001:6;9997:14;9990:58;10082:10;10077:2;10069:6;10065:15;10058:35;9873:227;:::o;10106:366::-;10248:3;10269:67;10333:2;10328:3;10269:67;:::i;:::-;10262:74;;10345:93;10434:3;10345:93;:::i;:::-;10463:2;10458:3;10454:12;10447:19;;10106:366;;;:::o;10478:419::-;10644:4;10682:2;10671:9;10667:18;10659:26;;10731:9;10725:4;10721:20;10717:1;10706:9;10702:17;10695:47;10759:131;10885:4;10759:131;:::i;:::-;10751:139;;10478:419;;;:::o;10903:180::-;10951:77;10948:1;10941:88;11048:4;11045:1;11038:15;11072:4;11069:1;11062:15;11089:305;11129:3;11148:20;11166:1;11148:20;:::i;:::-;11143:25;;11182:20;11200:1;11182:20;:::i;:::-;11177:25;;11336:1;11268:66;11264:74;11261:1;11258:81;11255:107;;;11342:18;;:::i;:::-;11255:107;11386:1;11383;11379:9;11372:16;;11089:305;;;;:::o;11400:182::-;11540:34;11536:1;11528:6;11524:14;11517:58;11400:182;:::o;11588:366::-;11730:3;11751:67;11815:2;11810:3;11751:67;:::i;:::-;11744:74;;11827:93;11916:3;11827:93;:::i;:::-;11945:2;11940:3;11936:12;11929:19;;11588:366;;;:::o;11960:419::-;12126:4;12164:2;12153:9;12149:18;12141:26;;12213:9;12207:4;12203:20;12199:1;12188:9;12184:17;12177:47;12241:131;12367:4;12241:131;:::i;:::-;12233:139;;11960:419;;;:::o;12385:244::-;12525:34;12521:1;12513:6;12509:14;12502:58;12594:27;12589:2;12581:6;12577:15;12570:52;12385:244;:::o;12635:366::-;12777:3;12798:67;12862:2;12857:3;12798:67;:::i;:::-;12791:74;;12874:93;12963:3;12874:93;:::i;:::-;12992:2;12987:3;12983:12;12976:19;;12635:366;;;:::o;13007:419::-;13173:4;13211:2;13200:9;13196:18;13188:26;;13260:9;13254:4;13250:20;13246:1;13235:9;13231:17;13224:47;13288:131;13414:4;13288:131;:::i;:::-;13280:139;;13007:419;;;:::o;13432:224::-;13572:34;13568:1;13560:6;13556:14;13549:58;13641:7;13636:2;13628:6;13624:15;13617:32;13432:224;:::o;13662:366::-;13804:3;13825:67;13889:2;13884:3;13825:67;:::i;:::-;13818:74;;13901:93;13990:3;13901:93;:::i;:::-;14019:2;14014:3;14010:12;14003:19;;13662:366;;;:::o;14034:419::-;14200:4;14238:2;14227:9;14223:18;14215:26;;14287:9;14281:4;14277:20;14273:1;14262:9;14258:17;14251:47;14315:131;14441:4;14315:131;:::i;:::-;14307:139;;14034:419;;;:::o;14459:162::-;14599:14;14595:1;14587:6;14583:14;14576:38;14459:162;:::o;14627:366::-;14769:3;14790:67;14854:2;14849:3;14790:67;:::i;:::-;14783:74;;14866:93;14955:3;14866:93;:::i;:::-;14984:2;14979:3;14975:12;14968:19;;14627:366;;;:::o;14999:419::-;15165:4;15203:2;15192:9;15188:18;15180:26;;15252:9;15246:4;15242:20;15238:1;15227:9;15223:17;15216:47;15280:131;15406:4;15280:131;:::i;:::-;15272:139;;14999:419;;;:::o;15424:348::-;15464:7;15487:20;15505:1;15487:20;:::i;:::-;15482:25;;15521:20;15539:1;15521:20;:::i;:::-;15516:25;;15709:1;15641:66;15637:74;15634:1;15631:81;15626:1;15619:9;15612:17;15608:105;15605:131;;;15716:18;;:::i;:::-;15605:131;15764:1;15761;15757:9;15746:20;;15424:348;;;;:::o;15778:180::-;15826:77;15823:1;15816:88;15923:4;15920:1;15913:15;15947:4;15944:1;15937:15;15964:185;16004:1;16021:20;16039:1;16021:20;:::i;:::-;16016:25;;16055:20;16073:1;16055:20;:::i;:::-;16050:25;;16094:1;16084:35;;16099:18;;:::i;:::-;16084:35;16141:1;16138;16134:9;16129:14;;15964:185;;;;:::o;16155:240::-;16295:34;16291:1;16283:6;16279:14;16272:58;16364:23;16359:2;16351:6;16347:15;16340:48;16155:240;:::o;16401:366::-;16543:3;16564:67;16628:2;16623:3;16564:67;:::i;:::-;16557:74;;16640:93;16729:3;16640:93;:::i;:::-;16758:2;16753:3;16749:12;16742:19;;16401:366;;;:::o;16773:419::-;16939:4;16977:2;16966:9;16962:18;16954:26;;17026:9;17020:4;17016:20;17012:1;17001:9;16997:17;16990:47;17054:131;17180:4;17054:131;:::i;:::-;17046:139;;16773:419;;;:::o;17198:239::-;17338:34;17334:1;17326:6;17322:14;17315:58;17407:22;17402:2;17394:6;17390:15;17383:47;17198:239;:::o;17443:366::-;17585:3;17606:67;17670:2;17665:3;17606:67;:::i;:::-;17599:74;;17682:93;17771:3;17682:93;:::i;:::-;17800:2;17795:3;17791:12;17784:19;;17443:366;;;:::o;17815:419::-;17981:4;18019:2;18008:9;18004:18;17996:26;;18068:9;18062:4;18058:20;18054:1;18043:9;18039:17;18032:47;18096:131;18222:4;18096:131;:::i;:::-;18088:139;;17815:419;;;:::o;18240:225::-;18380:34;18376:1;18368:6;18364:14;18357:58;18449:8;18444:2;18436:6;18432:15;18425:33;18240:225;:::o;18471:366::-;18613:3;18634:67;18698:2;18693:3;18634:67;:::i;:::-;18627:74;;18710:93;18799:3;18710:93;:::i;:::-;18828:2;18823:3;18819:12;18812:19;;18471:366;;;:::o;18843:419::-;19009:4;19047:2;19036:9;19032:18;19024:26;;19096:9;19090:4;19086:20;19082:1;19071:9;19067:17;19060:47;19124:131;19250:4;19124:131;:::i;:::-;19116:139;;18843:419;;;:::o;19268:223::-;19408:34;19404:1;19396:6;19392:14;19385:58;19477:6;19472:2;19464:6;19460:15;19453:31;19268:223;:::o;19497:366::-;19639:3;19660:67;19724:2;19719:3;19660:67;:::i;:::-;19653:74;;19736:93;19825:3;19736:93;:::i;:::-;19854:2;19849:3;19845:12;19838:19;;19497:366;;;:::o;19869:419::-;20035:4;20073:2;20062:9;20058:18;20050:26;;20122:9;20116:4;20112:20;20108:1;20097:9;20093:17;20086:47;20150:131;20276:4;20150:131;:::i;:::-;20142:139;;19869:419;;;:::o;20294:221::-;20434:34;20430:1;20422:6;20418:14;20411:58;20503:4;20498:2;20490:6;20486:15;20479:29;20294:221;:::o;20521:366::-;20663:3;20684:67;20748:2;20743:3;20684:67;:::i;:::-;20677:74;;20760:93;20849:3;20760:93;:::i;:::-;20878:2;20873:3;20869:12;20862:19;;20521:366;;;:::o;20893:419::-;21059:4;21097:2;21086:9;21082:18;21074:26;;21146:9;21140:4;21136:20;21132:1;21121:9;21117:17;21110:47;21174:131;21300:4;21174:131;:::i;:::-;21166:139;;20893:419;;;:::o;21318:224::-;21458:34;21454:1;21446:6;21442:14;21435:58;21527:7;21522:2;21514:6;21510:15;21503:32;21318:224;:::o;21548:366::-;21690:3;21711:67;21775:2;21770:3;21711:67;:::i;:::-;21704:74;;21787:93;21876:3;21787:93;:::i;:::-;21905:2;21900:3;21896:12;21889:19;;21548:366;;;:::o;21920:419::-;22086:4;22124:2;22113:9;22109:18;22101:26;;22173:9;22167:4;22163:20;22159:1;22148:9;22144:17;22137:47;22201:131;22327:4;22201:131;:::i;:::-;22193:139;;21920:419;;;:::o;22345:222::-;22485:34;22481:1;22473:6;22469:14;22462:58;22554:5;22549:2;22541:6;22537:15;22530:30;22345:222;:::o;22573:366::-;22715:3;22736:67;22800:2;22795:3;22736:67;:::i;:::-;22729:74;;22812:93;22901:3;22812:93;:::i;:::-;22930:2;22925:3;22921:12;22914:19;;22573:366;;;:::o;22945:419::-;23111:4;23149:2;23138:9;23134:18;23126:26;;23198:9;23192:4;23188:20;23184:1;23173:9;23169:17;23162:47;23226:131;23352:4;23226:131;:::i;:::-;23218:139;;22945:419;;;:::o;23370:172::-;23510:24;23506:1;23498:6;23494:14;23487:48;23370:172;:::o;23548:366::-;23690:3;23711:67;23775:2;23770:3;23711:67;:::i;:::-;23704:74;;23787:93;23876:3;23787:93;:::i;:::-;23905:2;23900:3;23896:12;23889:19;;23548:366;;;:::o;23920:419::-;24086:4;24124:2;24113:9;24109:18;24101:26;;24173:9;24167:4;24163:20;24159:1;24148:9;24144:17;24137:47;24201:131;24327:4;24201:131;:::i;:::-;24193:139;;23920:419;;;:::o;24345:240::-;24485:34;24481:1;24473:6;24469:14;24462:58;24554:23;24549:2;24541:6;24537:15;24530:48;24345:240;:::o;24591:366::-;24733:3;24754:67;24818:2;24813:3;24754:67;:::i;:::-;24747:74;;24830:93;24919:3;24830:93;:::i;:::-;24948:2;24943:3;24939:12;24932:19;;24591:366;;;:::o;24963:419::-;25129:4;25167:2;25156:9;25152:18;25144:26;;25216:9;25210:4;25206:20;25202:1;25191:9;25187:17;25180:47;25244:131;25370:4;25244:131;:::i;:::-;25236:139;;24963:419;;;:::o;25388:169::-;25528:21;25524:1;25516:6;25512:14;25505:45;25388:169;:::o;25563:366::-;25705:3;25726:67;25790:2;25785:3;25726:67;:::i;:::-;25719:74;;25802:93;25891:3;25802:93;:::i;:::-;25920:2;25915:3;25911:12;25904:19;;25563:366;;;:::o;25935:419::-;26101:4;26139:2;26128:9;26124:18;26116:26;;26188:9;26182:4;26178:20;26174:1;26163:9;26159:17;26152:47;26216:131;26342:4;26216:131;:::i;:::-;26208:139;;25935:419;;;:::o;26360:241::-;26500:34;26496:1;26488:6;26484:14;26477:58;26569:24;26564:2;26556:6;26552:15;26545:49;26360:241;:::o;26607:366::-;26749:3;26770:67;26834:2;26829:3;26770:67;:::i;:::-;26763:74;;26846:93;26935:3;26846:93;:::i;:::-;26964:2;26959:3;26955:12;26948:19;;26607:366;;;:::o;26979:419::-;27145:4;27183:2;27172:9;27168:18;27160:26;;27232:9;27226:4;27222:20;27218:1;27207:9;27203:17;27196:47;27260:131;27386:4;27260:131;:::i;:::-;27252:139;;26979:419;;;:::o;27404:191::-;27444:4;27464:20;27482:1;27464:20;:::i;:::-;27459:25;;27498:20;27516:1;27498:20;:::i;:::-;27493:25;;27537:1;27534;27531:8;27528:34;;;27542:18;;:::i;:::-;27528:34;27587:1;27584;27580:9;27572:17;;27404:191;;;;:::o;27601:225::-;27741:34;27737:1;27729:6;27725:14;27718:58;27810:8;27805:2;27797:6;27793:15;27786:33;27601:225;:::o;27832:366::-;27974:3;27995:67;28059:2;28054:3;27995:67;:::i;:::-;27988:74;;28071:93;28160:3;28071:93;:::i;:::-;28189:2;28184:3;28180:12;28173:19;;27832:366;;;:::o;28204:419::-;28370:4;28408:2;28397:9;28393:18;28385:26;;28457:9;28451:4;28447:20;28443:1;28432:9;28428:17;28421:47;28485:131;28611:4;28485:131;:::i;:::-;28477:139;;28204:419;;;:::o;28629:442::-;28778:4;28816:2;28805:9;28801:18;28793:26;;28829:71;28897:1;28886:9;28882:17;28873:6;28829:71;:::i;:::-;28910:72;28978:2;28967:9;28963:18;28954:6;28910:72;:::i;:::-;28992;29060:2;29049:9;29045:18;29036:6;28992:72;:::i;:::-;28629:442;;;;;;:::o;29077:147::-;29178:11;29215:3;29200:18;;29077:147;;;;:::o;29230:114::-;;:::o;29350:398::-;29509:3;29530:83;29611:1;29606:3;29530:83;:::i;:::-;29523:90;;29622:93;29711:3;29622:93;:::i;:::-;29740:1;29735:3;29731:11;29724:18;;29350:398;;;:::o;29754:379::-;29938:3;29960:147;30103:3;29960:147;:::i;:::-;29953:154;;30124:3;30117:10;;29754:379;;;:::o;30139:180::-;30187:77;30184:1;30177:88;30284:4;30281:1;30274:15;30308:4;30305:1;30298:15;30325:180;30373:77;30370:1;30363:88;30470:4;30467:1;30460:15;30494:4;30491:1;30484:15;30511:143;30568:5;30599:6;30593:13;30584:22;;30615:33;30642:5;30615:33;:::i;:::-;30511:143;;;;:::o;30660:351::-;30730:6;30779:2;30767:9;30758:7;30754:23;30750:32;30747:119;;;30785:79;;:::i;:::-;30747:119;30905:1;30930:64;30986:7;30977:6;30966:9;30962:22;30930:64;:::i;:::-;30920:74;;30876:128;30660:351;;;;:::o;31017:85::-;31062:7;31091:5;31080:16;;31017:85;;;:::o;31108:158::-;31166:9;31199:61;31217:42;31226:32;31252:5;31226:32;:::i;:::-;31217:42;:::i;:::-;31199:61;:::i;:::-;31186:74;;31108:158;;;:::o;31272:147::-;31367:45;31406:5;31367:45;:::i;:::-;31362:3;31355:58;31272:147;;:::o;31425:114::-;31492:6;31526:5;31520:12;31510:22;;31425:114;;;:::o;31545:184::-;31644:11;31678:6;31673:3;31666:19;31718:4;31713:3;31709:14;31694:29;;31545:184;;;;:::o;31735:132::-;31802:4;31825:3;31817:11;;31855:4;31850:3;31846:14;31838:22;;31735:132;;;:::o;31873:108::-;31950:24;31968:5;31950:24;:::i;:::-;31945:3;31938:37;31873:108;;:::o;31987:179::-;32056:10;32077:46;32119:3;32111:6;32077:46;:::i;:::-;32155:4;32150:3;32146:14;32132:28;;31987:179;;;;:::o;32172:113::-;32242:4;32274;32269:3;32265:14;32257:22;;32172:113;;;:::o;32321:732::-;32440:3;32469:54;32517:5;32469:54;:::i;:::-;32539:86;32618:6;32613:3;32539:86;:::i;:::-;32532:93;;32649:56;32699:5;32649:56;:::i;:::-;32728:7;32759:1;32744:284;32769:6;32766:1;32763:13;32744:284;;;32845:6;32839:13;32872:63;32931:3;32916:13;32872:63;:::i;:::-;32865:70;;32958:60;33011:6;32958:60;:::i;:::-;32948:70;;32804:224;32791:1;32788;32784:9;32779:14;;32744:284;;;32748:14;33044:3;33037:10;;32445:608;;;32321:732;;;;:::o;33059:831::-;33322:4;33360:3;33349:9;33345:19;33337:27;;33374:71;33442:1;33431:9;33427:17;33418:6;33374:71;:::i;:::-;33455:80;33531:2;33520:9;33516:18;33507:6;33455:80;:::i;:::-;33582:9;33576:4;33572:20;33567:2;33556:9;33552:18;33545:48;33610:108;33713:4;33704:6;33610:108;:::i;:::-;33602:116;;33728:72;33796:2;33785:9;33781:18;33772:6;33728:72;:::i;:::-;33810:73;33878:3;33867:9;33863:19;33854:6;33810:73;:::i;:::-;33059:831;;;;;;;;:::o;33896:807::-;34145:4;34183:3;34172:9;34168:19;34160:27;;34197:71;34265:1;34254:9;34250:17;34241:6;34197:71;:::i;:::-;34278:72;34346:2;34335:9;34331:18;34322:6;34278:72;:::i;:::-;34360:80;34436:2;34425:9;34421:18;34412:6;34360:80;:::i;:::-;34450;34526:2;34515:9;34511:18;34502:6;34450:80;:::i;:::-;34540:73;34608:3;34597:9;34593:19;34584:6;34540:73;:::i;:::-;34623;34691:3;34680:9;34676:19;34667:6;34623:73;:::i;:::-;33896:807;;;;;;;;;:::o;34709:143::-;34766:5;34797:6;34791:13;34782:22;;34813:33;34840:5;34813:33;:::i;:::-;34709:143;;;;:::o;34858:663::-;34946:6;34954;34962;35011:2;34999:9;34990:7;34986:23;34982:32;34979:119;;;35017:79;;:::i;:::-;34979:119;35137:1;35162:64;35218:7;35209:6;35198:9;35194:22;35162:64;:::i;:::-;35152:74;;35108:128;35275:2;35301:64;35357:7;35348:6;35337:9;35333:22;35301:64;:::i;:::-;35291:74;;35246:129;35414:2;35440:64;35496:7;35487:6;35476:9;35472:22;35440:64;:::i;:::-;35430:74;;35385:129;34858:663;;;;;:::o

Swarm Source

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