ETH Price: $3,460.55 (+0.17%)
Gas: 5 Gwei

Token

BURN LINU (BLINU)
 

Overview

Max Total Supply

1,000,000,000 BLINU

Holders

216

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,184,570.668968047781465049 BLINU

Value
$0.00
0x95b2695a5f2a7876177b8709a6bad7c11e891204
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:
BurnLinu

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

/*
 * https://t.me/BURNLINU
 * https://twitter.com/BURNLINU
 *
 */

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

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

    function WETH() external pure returns (address);

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IUniswapV2Pair {
    function sync() external;
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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
    );
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
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 {}
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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;
        }
    }
}

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 20; // 20 = .20%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public constant buyMarketingFee = 7;
    uint256 public constant buyLiquidityFee = 3;
    uint256 public constant buyDevFee = 0;

    uint256 public sellTotalFees;
    uint256 public constant sellMarketingFee = 8;
    uint256 public constant sellLiquidityFee = 2;
    uint256 public constant sellDevFee = 0;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    event BoughtEarly(address indexed sniper);

    constructor() ERC20("BURN LINU", "BLINU") {
        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 totalSupply = 1_000_000_000 * 1e18; // 1 billion total supply

        maxTransactionAmount = 15_000_000 * 1e18; // 1.5% from total supply maxTransactionAmountTxn
        maxWallet = 30_000_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet

        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x262Fdf6af31e7f9a6288659A0FD30D3ea66b47e6); // set as marketing wallet
        devWallet = address(0x6C90E754Cd94C27C51b6D02109E24C843D76B351); // set as dev wallet

        // 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 startTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

    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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //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;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

    function 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
            deadAddress,
            block.timestamp
        );
    }

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526014600c556001600d60006101000a81548160ff021916908315150217905550610e10600e556107086010556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055506001601460006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600981526020017f4255524e204c494e5500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f424c494e5500000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b45565b5080600490805190602001906200014792919062000b45565b5050506200016a6200015e6200060560201b60201c565b6200060d60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006d360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021457600080fd5b505afa15801562000229573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024f919062000c0c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b257600080fd5b505afa158015620002c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ed919062000c0c565b6040518363ffffffff1660e01b81526004016200030c92919062000cef565b602060405180830381600087803b1580156200032757600080fd5b505af11580156200033c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000362919062000c0c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003d7600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006d360201b60201c565b6200040c600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007bd60201b60201c565b60006b033b2e3c9fd0803ce800000090506a0c685fa11e01ec6f0000006009819055506a18d0bf423c03d8de000000600b8190555061271060038262000453919062000e40565b6200045f919062000e08565b600a8190555060006003600762000477919062000dab565b62000483919062000dab565b6015819055506000600260086200049b919062000dab565b620004a7919062000dab565b60168190555073262fdf6af31e7f9a6288659a0fd30d3ea66b47e6600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736c90e754cd94c27c51b6d02109e24c843d76b351600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005796200056b6200085e60201b60201c565b60016200088860201b60201c565b6200058c3060016200088860201b60201c565b620005a161dead60016200088860201b60201c565b620005c3620005b56200085e60201b60201c565b6001620006d360201b60201c565b620005d6306001620006d360201b60201c565b620005eb61dead6001620006d360201b60201c565b620005fd3382620009c260201b60201c565b505062000fc8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006e36200060560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007096200085e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000762576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007599062000d39565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008986200060560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008be6200085e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000917576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090e9062000d39565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009b6919062000d1c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2c9062000d5b565b60405180910390fd5b62000a496000838362000b3b60201b60201c565b806002600082825462000a5d919062000dab565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ab4919062000dab565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b1b919062000d7d565b60405180910390a362000b376000838362000b4060201b60201c565b5050565b505050565b505050565b82805462000b539062000eeb565b90600052602060002090601f01602090048101928262000b77576000855562000bc3565b82601f1062000b9257805160ff191683800117855562000bc3565b8280016001018555821562000bc3579182015b8281111562000bc257825182559160200191906001019062000ba5565b5b50905062000bd2919062000bd6565b5090565b5b8082111562000bf157600081600090555060010162000bd7565b5090565b60008151905062000c068162000fae565b92915050565b60006020828403121562000c1f57600080fd5b600062000c2f8482850162000bf5565b91505092915050565b62000c438162000ea1565b82525050565b62000c548162000eb5565b82525050565b600062000c6960208362000d9a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600062000cab601f8362000d9a565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000ce98162000ee1565b82525050565b600060408201905062000d06600083018562000c38565b62000d15602083018462000c38565b9392505050565b600060208201905062000d33600083018462000c49565b92915050565b6000602082019050818103600083015262000d548162000c5a565b9050919050565b6000602082019050818103600083015262000d768162000c9c565b9050919050565b600060208201905062000d94600083018462000cde565b92915050565b600082825260208201905092915050565b600062000db88262000ee1565b915062000dc58362000ee1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dfd5762000dfc62000f21565b5b828201905092915050565b600062000e158262000ee1565b915062000e228362000ee1565b92508262000e355762000e3462000f50565b5b828204905092915050565b600062000e4d8262000ee1565b915062000e5a8362000ee1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e965762000e9562000f21565b5b828202905092915050565b600062000eae8262000ec1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000f0457607f821691505b6020821081141562000f1b5762000f1a62000f7f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000fb98162000ea1565b811462000fc557600080fd5b50565b60805160601c6157676200101160003960008181610f2901528181612bc501528181613fda015281816140f001528181614117015281816141b301526141da01526157676000f3fe60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d9b578063f637434214610dc4578063f8b45b0514610def578063fe72b27a14610e1a576103a2565b8063dd62ed3e14610cdd578063e2f4560514610d1a578063e884f26014610d45578063f11a24d314610d70576103a2565b8063c876d0b9116100dc578063c876d0b914610c1f578063c8c8ebe414610c4a578063d257b34f14610c75578063d85ba06314610cb2576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c18bc19514610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108435780637571336a1461086e57806375f0a874146108975780637bce5a04146108c2576103a2565b80636ddd17131461079b57806370a08231146107c6578063715018a614610803578063730c18881461081a576103a2565b806349bd5a5e1161029b57806349bd5a5e146106dd5780634a62bb65146107085780634fbee193146107335780636a486a8e14610770576103a2565b80632e82f1a01461064a578063313ce5671461067557806339509351146106a0576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd578063293230b8146106085780632c3e486c1461061f576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e57565b6040516103c99190615020565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f4919061441a565b610ee9565b6040516104069190614fea565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190614301565b610f07565b6040516104439190614fea565b60405180910390f35b34801561045857600080fd5b50610461610f27565b60405161046e9190615005565b60405180910390f35b34801561048357600080fd5b5061048c610f4b565b6040516104999190615322565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614301565b610f55565b005b3480156104d757600080fd5b506104e0611091565b6040516104ed9190615322565b60405180910390f35b34801561050257600080fd5b5061050b611097565b6040516105189190615322565b60405180910390f35b34801561052d57600080fd5b5061053661109d565b6040516105439190615322565b60405180910390f35b34801561055857600080fd5b506105616110a3565b60405161056e9190615322565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061447f565b6110a9565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061438f565b6111b8565b6040516105d49190614fea565b60405180910390f35b3480156105e957600080fd5b506105f26112b0565b6040516105ff9190614f6e565b60405180910390f35b34801561061457600080fd5b5061061d6112b6565b005b34801561062b57600080fd5b50610634611371565b6040516106419190615322565b60405180910390f35b34801561065657600080fd5b5061065f611377565b60405161066c9190614fea565b60405180910390f35b34801561068157600080fd5b5061068a61138a565b60405161069791906153ce565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061441a565b611393565b6040516106d49190614fea565b60405180910390f35b3480156106e957600080fd5b506106f261143f565b6040516106ff9190614f6e565b60405180910390f35b34801561071457600080fd5b5061071d611465565b60405161072a9190614fea565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190614301565b611478565b6040516107679190614fea565b60405180910390f35b34801561077c57600080fd5b506107856114ce565b6040516107929190615322565b60405180910390f35b3480156107a757600080fd5b506107b06114d4565b6040516107bd9190614fea565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190614301565b6114e7565b6040516107fa9190615322565b60405180910390f35b34801561080f57600080fd5b5061081861152f565b005b34801561082657600080fd5b50610841600480360381019061083c91906144d1565b6115b7565b005b34801561084f57600080fd5b506108586116f7565b6040516108659190614fea565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906143de565b611797565b005b3480156108a357600080fd5b506108ac61186e565b6040516108b99190614f6e565b60405180910390f35b3480156108ce57600080fd5b506108d7611894565b6040516108e49190615322565b60405180910390f35b3480156108f957600080fd5b50610902611899565b60405161090f9190614f6e565b60405180910390f35b34801561092457600080fd5b5061092d6118c3565b60405161093a9190614f6e565b60405180910390f35b34801561094f57600080fd5b506109586118e9565b6040516109659190615322565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190614456565b6118ee565b005b3480156109a357600080fd5b506109ac611987565b6040516109b99190615020565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906143de565b611a19565b005b3480156109f757600080fd5b50610a00611b34565b604051610a0d9190615322565b60405180910390f35b348015610a2257600080fd5b50610a2b611b39565b604051610a389190615322565b60405180910390f35b348015610a4d57600080fd5b50610a56611b3f565b604051610a639190615322565b60405180910390f35b348015610a7857600080fd5b50610a81611b45565b604051610a8e9190615322565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab9919061441a565b611b4a565b604051610acb9190614fea565b60405180910390f35b348015610ae057600080fd5b50610ae9611c35565b604051610af69190615322565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b21919061441a565b611c3b565b604051610b339190614fea565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190614301565b611c59565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190614301565b611d95565b604051610b999190614fea565b60405180910390f35b348015610bae57600080fd5b50610bb7611db5565b604051610bc49190614fea565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef91906143de565b611dc8565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061447f565b611eed565b005b348015610c2b57600080fd5b50610c34611ffc565b604051610c419190614fea565b60405180910390f35b348015610c5657600080fd5b50610c5f61200f565b604051610c6c9190615322565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c97919061447f565b612015565b604051610ca99190614fea565b60405180910390f35b348015610cbe57600080fd5b50610cc761216a565b604051610cd49190615322565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614353565b612170565b604051610d119190615322565b60405180910390f35b348015610d2657600080fd5b50610d2f6121f7565b604051610d3c9190615322565b60405180910390f35b348015610d5157600080fd5b50610d5a6121fd565b604051610d679190614fea565b60405180910390f35b348015610d7c57600080fd5b50610d8561229d565b604051610d929190615322565b60405180910390f35b348015610da757600080fd5b50610dc26004803603810190610dbd9190614301565b6122a2565b005b348015610dd057600080fd5b50610dd961239a565b604051610de69190615322565b60405180910390f35b348015610dfb57600080fd5b50610e0461239f565b604051610e119190615322565b60405180910390f35b348015610e2657600080fd5b50610e416004803603810190610e3c919061447f565b6123a5565b604051610e4e9190614fea565b60405180910390f35b606060038054610e669061561c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061561c565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b6000610efd610ef6612692565b848461269a565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f5d612692565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611899565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890615222565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600c5481565b60185481565b60175481565b6110b1612692565b73ffffffffffffffffffffffffffffffffffffffff166110cf611899565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90615222565b60405180910390fd5b670de0b6b3a76400006103e8600161113b610f4b565b61114591906154d0565b61114f919061549f565b611159919061549f565b81101561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290615302565b60405180910390fd5b670de0b6b3a7640000816111af91906154d0565b60098190555050565b60006111c5848484612865565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611210612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790615202565b60405180910390fd5b6112a48561129c612692565b85840361269a565b60019150509392505050565b61dead81565b6112be612692565b73ffffffffffffffffffffffffffffffffffffffff166112dc611899565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990615222565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b60006114356113a0612692565b8484600160006113ae612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114309190615449565b61269a565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60165481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611537612692565b73ffffffffffffffffffffffffffffffffffffffff16611555611899565b73ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290615222565b60405180910390fd5b6115b560006135f9565b565b6115bf612692565b73ffffffffffffffffffffffffffffffffffffffff166115dd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90615222565b60405180910390fd5b610258831015611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906150c2565b60405180910390fd5b6103e8821115801561168b575060008210155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190615162565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b6000611701612692565b73ffffffffffffffffffffffffffffffffffffffff1661171f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90615222565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61179f612692565b73ffffffffffffffffffffffffffffffffffffffff166117bd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90615222565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600781565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600881565b6118f6612692565b73ffffffffffffffffffffffffffffffffffffffff16611914611899565b73ffffffffffffffffffffffffffffffffffffffff161461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190615222565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6060600480546119969061561c565b80601f01602080910402602001604051908101604052809291908181526020018280546119c29061561c565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b5050505050905090565b611a21612692565b73ffffffffffffffffffffffffffffffffffffffff16611a3f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90615222565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90615102565b60405180910390fd5b611b3082826136bf565b5050565b600081565b60115481565b60195481565b600081565b60008060016000611b59612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d906152e2565b60405180910390fd5b611c2a611c21612692565b8585840361269a565b600191505092915050565b600f5481565b6000611c4f611c48612692565b8484612865565b6001905092915050565b611c61612692565b73ffffffffffffffffffffffffffffffffffffffff16611c7f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90615222565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b611dd0612692565b73ffffffffffffffffffffffffffffffffffffffff16611dee611899565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90615222565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ee19190614fea565b60405180910390a25050565b611ef5612692565b73ffffffffffffffffffffffffffffffffffffffff16611f13611899565b73ffffffffffffffffffffffffffffffffffffffff1614611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090615222565b60405180910390fd5b670de0b6b3a76400006103e86005611f7f610f4b565b611f8991906154d0565b611f93919061549f565b611f9d919061549f565b811015611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906150e2565b60405180910390fd5b670de0b6b3a764000081611ff391906154d0565b600b8190555050565b601460009054906101000a900460ff1681565b60095481565b600061201f612692565b73ffffffffffffffffffffffffffffffffffffffff1661203d611899565b73ffffffffffffffffffffffffffffffffffffffff1614612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90615222565b60405180910390fd5b620186a060016120a1610f4b565b6120ab91906154d0565b6120b5919061549f565b8210156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90615182565b60405180910390fd5b6103e86005612104610f4b565b61210e91906154d0565b612118919061549f565b82111561215a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612151906151a2565b60405180910390fd5b81600a8190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000612207612692565b73ffffffffffffffffffffffffffffffffffffffff16612225611899565b73ffffffffffffffffffffffffffffffffffffffff161461227b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227290615222565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b600381565b6122aa612692565b73ffffffffffffffffffffffffffffffffffffffff166122c8611899565b73ffffffffffffffffffffffffffffffffffffffff161461231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590615222565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590615082565b60405180910390fd5b612397816135f9565b50565b600281565b600b5481565b60006123af612692565b73ffffffffffffffffffffffffffffffffffffffff166123cd611899565b73ffffffffffffffffffffffffffffffffffffffff1614612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a90615222565b60405180910390fd5b6010546011546124339190615449565b4211612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90615282565b60405180910390fd5b6103e88211156124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b090615242565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161251d9190614f6e565b60206040518083038186803b15801561253557600080fd5b505afa158015612549573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256d91906144a8565b9050600061259861271061258a868561376090919063ffffffff16565b61377690919063ffffffff16565b905060008111156125d3576125d2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561264257600080fd5b505af1158015612656573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906152a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906150a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128589190615322565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90615042565b60405180910390fd5b600081141561295f5761295a8383600061378c565b6135f4565b601260009054906101000a900460ff16156130245761297c611899565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129ea57506129ba611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a765750600660149054906101000a900460ff16155b1561302357601260019054906101000a900460ff16612b7057601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b305750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6690615062565b60405180910390fd5b5b601460009054906101000a900460ff1615612d3a57612b8d611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c1457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d395743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb906151e2565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ddd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8457600954811115612e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1e906151c2565b60405180910390fd5b600b54612e33836114e7565b82612e3e9190615449565b1115612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e76906152c2565b60405180910390fd5b613022565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f7657600954811115612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615142565b60405180910390fd5b613021565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661302057600b54612fd3836114e7565b82612fde9190615449565b111561301f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613016906152c2565b60405180910390fd5b5b5b5b5b5b600061302f306114e7565b90506000600a5482101590508080156130545750601260029054906101000a900460ff165b801561306d5750600660149054906101000a900460ff16155b80156130c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561316f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b3576001600660146101000a81548160ff021916908315150217905550613197613a0d565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132195750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132315750600d60009054906101000a900460ff165b801561324c5750600e54600f546132489190615449565b4210155b80156132a25750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b1576132af613cf4565b505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133675750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337157600090505b600081156135e457601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d457506000601654115b1561349e5761340160646133f36016548861376090919063ffffffff16565b61377690919063ffffffff16565b905060165460028261341391906154d0565b61341d919061549f565b6018600082825461342e9190615449565b9250508190555060165460008261344591906154d0565b61344f919061549f565b601960008282546134609190615449565b9250508190555060165460088261347791906154d0565b613481919061549f565b601760008282546134929190615449565b925050819055506135c0565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f957506000601554115b156135bf5761352660646135186015548861376090919063ffffffff16565b61377690919063ffffffff16565b905060155460038261353891906154d0565b613542919061549f565b601860008282546135539190615449565b9250508190555060155460008261356a91906154d0565b613574919061549f565b601960008282546135859190615449565b9250508190555060155460078261359c91906154d0565b6135a6919061549f565b601760008282546135b79190615449565b925050819055505b5b60008111156135d5576135d487308361378c565b5b80856135e1919061552a565b94505b6135ef87878761378c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361376e91906154d0565b905092915050565b60008183613784919061549f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f390615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386390615042565b60405180910390fd5b613877838383613ecf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f490615122565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139909190615449565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139f49190615322565b60405180910390a3613a07848484613ed4565b50505050565b6000613a18306114e7565b90506000601954601754601854613a2f9190615449565b613a399190615449565b9050600080831480613a4b5750600082145b15613a5857505050613cf2565b6014600a54613a6791906154d0565b831115613a80576014600a54613a7d91906154d0565b92505b600060028360185486613a9391906154d0565b613a9d919061549f565b613aa7919061549f565b90506000613abe8286613ed990919063ffffffff16565b90506000479050613ace82613eef565b6000613ae38247613ed990919063ffffffff16565b90506000613b0e87613b006017548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000613b3988613b2b6019548661376090919063ffffffff16565b61377690919063ffffffff16565b90506000818385613b4a919061552a565b613b54919061552a565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613bb490614f59565b60006040518083038185875af1925050503d8060008114613bf1576040519150601f19603f3d011682016040523d82523d6000602084013e613bf6565b606091505b505080985050600087118015613c0c5750600081115b15613c5957613c1b87826141ad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051613c5093929190615397565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c9f90614f59565b60006040518083038185875af1925050503d8060008114613cdc576040519150601f19603f3d011682016040523d82523d6000602084013e613ce1565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d5a9190614f6e565b60206040518083038186803b158015613d7257600080fd5b505afa158015613d86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613daa91906144a8565b90506000613dd7612710613dc9600c548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000811115613e1257613e11600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e8157600080fd5b505af1158015613e95573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613ee7919061552a565b905092915050565b6000600267ffffffffffffffff811115613f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613f605781602001602082028036833780820191505090505b5090503081600081518110613f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561403e57600080fd5b505afa158015614052573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614076919061432a565b816001815181106140b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614115307f00000000000000000000000000000000000000000000000000000000000000008461269a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417795949392919061533d565b600060405180830381600087803b15801561419157600080fd5b505af11580156141a5573d6000803e3d6000fd5b505050505050565b6141d8307f00000000000000000000000000000000000000000000000000000000000000008461269a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161423f96959493929190614f89565b6060604051808303818588803b15801561425857600080fd5b505af115801561426c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142919190614520565b5050505050565b6000813590506142a7816156ec565b92915050565b6000815190506142bc816156ec565b92915050565b6000813590506142d181615703565b92915050565b6000813590506142e68161571a565b92915050565b6000815190506142fb8161571a565b92915050565b60006020828403121561431357600080fd5b600061432184828501614298565b91505092915050565b60006020828403121561433c57600080fd5b600061434a848285016142ad565b91505092915050565b6000806040838503121561436657600080fd5b600061437485828601614298565b925050602061438585828601614298565b9150509250929050565b6000806000606084860312156143a457600080fd5b60006143b286828701614298565b93505060206143c386828701614298565b92505060406143d4868287016142d7565b9150509250925092565b600080604083850312156143f157600080fd5b60006143ff85828601614298565b9250506020614410858286016142c2565b9150509250929050565b6000806040838503121561442d57600080fd5b600061443b85828601614298565b925050602061444c858286016142d7565b9150509250929050565b60006020828403121561446857600080fd5b6000614476848285016142c2565b91505092915050565b60006020828403121561449157600080fd5b600061449f848285016142d7565b91505092915050565b6000602082840312156144ba57600080fd5b60006144c8848285016142ec565b91505092915050565b6000806000606084860312156144e657600080fd5b60006144f4868287016142d7565b9350506020614505868287016142d7565b9250506040614516868287016142c2565b9150509250925092565b60008060006060848603121561453557600080fd5b6000614543868287016142ec565b9350506020614554868287016142ec565b9250506040614565868287016142ec565b9150509250925092565b600061457b8383614587565b60208301905092915050565b6145908161555e565b82525050565b61459f8161555e565b82525050565b60006145b0826153f9565b6145ba818561541c565b93506145c5836153e9565b8060005b838110156145f65781516145dd888261456f565b97506145e88361540f565b9250506001810190506145c9565b5085935050505092915050565b61460c81615570565b82525050565b61461b816155b3565b82525050565b61462a816155d7565b82525050565b600061463b82615404565b6146458185615438565b93506146558185602086016155e9565b61465e816156db565b840191505092915050565b6000614676602383615438565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146dc601683615438565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b600061471c602683615438565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614782602283615438565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e8603383615438565b91507f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008301527f616e206576657279203130206d696e75746573000000000000000000000000006020830152604082019050919050565b600061484e602483615438565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f302e3525000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b4603983615438565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b600061491a602683615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614980603683615438565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b60006149e6603083615438565b91507f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008301527f747765656e20302520616e6420313025000000000000000000000000000000006020830152604082019050919050565b6000614a4c603583615438565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614ab2603483615438565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b6000614b18603583615438565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614b7e604983615438565b91507f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008301527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208301527f20616c6c6f7765642e00000000000000000000000000000000000000000000006040830152606082019050919050565b6000614c0a602883615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c70602083615438565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614cb0602a83615438565b91507f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008301527f6b656e7320696e204c50000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d16602583615438565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d7c602083615438565b91507f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686000830152602082019050919050565b6000614dbc60008361542d565b9150600082019050919050565b6000614dd6602483615438565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e3c601383615438565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b6000614e7c602583615438565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ee2602f83615438565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e312500000000000000000000000000000000006020830152604082019050919050565b614f448161559c565b82525050565b614f53816155a6565b82525050565b6000614f6482614daf565b9150819050919050565b6000602082019050614f836000830184614596565b92915050565b600060c082019050614f9e6000830189614596565b614fab6020830188614f3b565b614fb86040830187614621565b614fc56060830186614621565b614fd26080830185614596565b614fdf60a0830184614f3b565b979650505050505050565b6000602082019050614fff6000830184614603565b92915050565b600060208201905061501a6000830184614612565b92915050565b6000602082019050818103600083015261503a8184614630565b905092915050565b6000602082019050818103600083015261505b81614669565b9050919050565b6000602082019050818103600083015261507b816146cf565b9050919050565b6000602082019050818103600083015261509b8161470f565b9050919050565b600060208201905081810360008301526150bb81614775565b9050919050565b600060208201905081810360008301526150db816147db565b9050919050565b600060208201905081810360008301526150fb81614841565b9050919050565b6000602082019050818103600083015261511b816148a7565b9050919050565b6000602082019050818103600083015261513b8161490d565b9050919050565b6000602082019050818103600083015261515b81614973565b9050919050565b6000602082019050818103600083015261517b816149d9565b9050919050565b6000602082019050818103600083015261519b81614a3f565b9050919050565b600060208201905081810360008301526151bb81614aa5565b9050919050565b600060208201905081810360008301526151db81614b0b565b9050919050565b600060208201905081810360008301526151fb81614b71565b9050919050565b6000602082019050818103600083015261521b81614bfd565b9050919050565b6000602082019050818103600083015261523b81614c63565b9050919050565b6000602082019050818103600083015261525b81614ca3565b9050919050565b6000602082019050818103600083015261527b81614d09565b9050919050565b6000602082019050818103600083015261529b81614d6f565b9050919050565b600060208201905081810360008301526152bb81614dc9565b9050919050565b600060208201905081810360008301526152db81614e2f565b9050919050565b600060208201905081810360008301526152fb81614e6f565b9050919050565b6000602082019050818103600083015261531b81614ed5565b9050919050565b60006020820190506153376000830184614f3b565b92915050565b600060a0820190506153526000830188614f3b565b61535f6020830187614621565b818103604083015261537181866145a5565b90506153806060830185614596565b61538d6080830184614f3b565b9695505050505050565b60006060820190506153ac6000830186614f3b565b6153b96020830185614f3b565b6153c66040830184614f3b565b949350505050565b60006020820190506153e36000830184614f4a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006154548261559c565b915061545f8361559c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154945761549361564e565b5b828201905092915050565b60006154aa8261559c565b91506154b58361559c565b9250826154c5576154c461567d565b5b828204905092915050565b60006154db8261559c565b91506154e68361559c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561551f5761551e61564e565b5b828202905092915050565b60006155358261559c565b91506155408361559c565b9250828210156155535761555261564e565b5b828203905092915050565b60006155698261557c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155be826155c5565b9050919050565b60006155d08261557c565b9050919050565b60006155e28261559c565b9050919050565b60005b838110156156075780820151818401526020810190506155ec565b83811115615616576000848401525b50505050565b6000600282049050600182168061563457607f821691505b60208210811415615648576156476156ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6156f58161555e565b811461570057600080fd5b50565b61570c81615570565b811461571757600080fd5b50565b6157238161559c565b811461572e57600080fd5b5056fea2646970667358221220683a33d3981f8ccf306972706bee04e8f308726c331116adc49d7e97d3537cae64736f6c63430008000033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d9b578063f637434214610dc4578063f8b45b0514610def578063fe72b27a14610e1a576103a2565b8063dd62ed3e14610cdd578063e2f4560514610d1a578063e884f26014610d45578063f11a24d314610d70576103a2565b8063c876d0b9116100dc578063c876d0b914610c1f578063c8c8ebe414610c4a578063d257b34f14610c75578063d85ba06314610cb2576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c18bc19514610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108435780637571336a1461086e57806375f0a874146108975780637bce5a04146108c2576103a2565b80636ddd17131461079b57806370a08231146107c6578063715018a614610803578063730c18881461081a576103a2565b806349bd5a5e1161029b57806349bd5a5e146106dd5780634a62bb65146107085780634fbee193146107335780636a486a8e14610770576103a2565b80632e82f1a01461064a578063313ce5671461067557806339509351146106a0576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd578063293230b8146106085780632c3e486c1461061f576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e57565b6040516103c99190615020565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f4919061441a565b610ee9565b6040516104069190614fea565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190614301565b610f07565b6040516104439190614fea565b60405180910390f35b34801561045857600080fd5b50610461610f27565b60405161046e9190615005565b60405180910390f35b34801561048357600080fd5b5061048c610f4b565b6040516104999190615322565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614301565b610f55565b005b3480156104d757600080fd5b506104e0611091565b6040516104ed9190615322565b60405180910390f35b34801561050257600080fd5b5061050b611097565b6040516105189190615322565b60405180910390f35b34801561052d57600080fd5b5061053661109d565b6040516105439190615322565b60405180910390f35b34801561055857600080fd5b506105616110a3565b60405161056e9190615322565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061447f565b6110a9565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061438f565b6111b8565b6040516105d49190614fea565b60405180910390f35b3480156105e957600080fd5b506105f26112b0565b6040516105ff9190614f6e565b60405180910390f35b34801561061457600080fd5b5061061d6112b6565b005b34801561062b57600080fd5b50610634611371565b6040516106419190615322565b60405180910390f35b34801561065657600080fd5b5061065f611377565b60405161066c9190614fea565b60405180910390f35b34801561068157600080fd5b5061068a61138a565b60405161069791906153ce565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c2919061441a565b611393565b6040516106d49190614fea565b60405180910390f35b3480156106e957600080fd5b506106f261143f565b6040516106ff9190614f6e565b60405180910390f35b34801561071457600080fd5b5061071d611465565b60405161072a9190614fea565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190614301565b611478565b6040516107679190614fea565b60405180910390f35b34801561077c57600080fd5b506107856114ce565b6040516107929190615322565b60405180910390f35b3480156107a757600080fd5b506107b06114d4565b6040516107bd9190614fea565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190614301565b6114e7565b6040516107fa9190615322565b60405180910390f35b34801561080f57600080fd5b5061081861152f565b005b34801561082657600080fd5b50610841600480360381019061083c91906144d1565b6115b7565b005b34801561084f57600080fd5b506108586116f7565b6040516108659190614fea565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906143de565b611797565b005b3480156108a357600080fd5b506108ac61186e565b6040516108b99190614f6e565b60405180910390f35b3480156108ce57600080fd5b506108d7611894565b6040516108e49190615322565b60405180910390f35b3480156108f957600080fd5b50610902611899565b60405161090f9190614f6e565b60405180910390f35b34801561092457600080fd5b5061092d6118c3565b60405161093a9190614f6e565b60405180910390f35b34801561094f57600080fd5b506109586118e9565b6040516109659190615322565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190614456565b6118ee565b005b3480156109a357600080fd5b506109ac611987565b6040516109b99190615020565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906143de565b611a19565b005b3480156109f757600080fd5b50610a00611b34565b604051610a0d9190615322565b60405180910390f35b348015610a2257600080fd5b50610a2b611b39565b604051610a389190615322565b60405180910390f35b348015610a4d57600080fd5b50610a56611b3f565b604051610a639190615322565b60405180910390f35b348015610a7857600080fd5b50610a81611b45565b604051610a8e9190615322565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab9919061441a565b611b4a565b604051610acb9190614fea565b60405180910390f35b348015610ae057600080fd5b50610ae9611c35565b604051610af69190615322565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b21919061441a565b611c3b565b604051610b339190614fea565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190614301565b611c59565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190614301565b611d95565b604051610b999190614fea565b60405180910390f35b348015610bae57600080fd5b50610bb7611db5565b604051610bc49190614fea565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef91906143de565b611dc8565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061447f565b611eed565b005b348015610c2b57600080fd5b50610c34611ffc565b604051610c419190614fea565b60405180910390f35b348015610c5657600080fd5b50610c5f61200f565b604051610c6c9190615322565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c97919061447f565b612015565b604051610ca99190614fea565b60405180910390f35b348015610cbe57600080fd5b50610cc761216a565b604051610cd49190615322565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190614353565b612170565b604051610d119190615322565b60405180910390f35b348015610d2657600080fd5b50610d2f6121f7565b604051610d3c9190615322565b60405180910390f35b348015610d5157600080fd5b50610d5a6121fd565b604051610d679190614fea565b60405180910390f35b348015610d7c57600080fd5b50610d8561229d565b604051610d929190615322565b60405180910390f35b348015610da757600080fd5b50610dc26004803603810190610dbd9190614301565b6122a2565b005b348015610dd057600080fd5b50610dd961239a565b604051610de69190615322565b60405180910390f35b348015610dfb57600080fd5b50610e0461239f565b604051610e119190615322565b60405180910390f35b348015610e2657600080fd5b50610e416004803603810190610e3c919061447f565b6123a5565b604051610e4e9190614fea565b60405180910390f35b606060038054610e669061561c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e929061561c565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b6000610efd610ef6612692565b848461269a565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f5d612692565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611899565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890615222565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600c5481565b60185481565b60175481565b6110b1612692565b73ffffffffffffffffffffffffffffffffffffffff166110cf611899565b73ffffffffffffffffffffffffffffffffffffffff1614611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c90615222565b60405180910390fd5b670de0b6b3a76400006103e8600161113b610f4b565b61114591906154d0565b61114f919061549f565b611159919061549f565b81101561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290615302565b60405180910390fd5b670de0b6b3a7640000816111af91906154d0565b60098190555050565b60006111c5848484612865565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611210612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790615202565b60405180910390fd5b6112a48561129c612692565b85840361269a565b60019150509392505050565b61dead81565b6112be612692565b73ffffffffffffffffffffffffffffffffffffffff166112dc611899565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990615222565b60405180910390fd5b6001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff02191690831515021790555042600f81905550565b600e5481565b600d60009054906101000a900460ff1681565b60006012905090565b60006114356113a0612692565b8484600160006113ae612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114309190615449565b61269a565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60165481565b601260029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611537612692565b73ffffffffffffffffffffffffffffffffffffffff16611555611899565b73ffffffffffffffffffffffffffffffffffffffff16146115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290615222565b60405180910390fd5b6115b560006135f9565b565b6115bf612692565b73ffffffffffffffffffffffffffffffffffffffff166115dd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90615222565b60405180910390fd5b610258831015611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f906150c2565b60405180910390fd5b6103e8821115801561168b575060008210155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190615162565b60405180910390fd5b82600e8190555081600c8190555080600d60006101000a81548160ff021916908315150217905550505050565b6000611701612692565b73ffffffffffffffffffffffffffffffffffffffff1661171f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90615222565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b61179f612692565b73ffffffffffffffffffffffffffffffffffffffff166117bd611899565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90615222565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600781565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600881565b6118f6612692565b73ffffffffffffffffffffffffffffffffffffffff16611914611899565b73ffffffffffffffffffffffffffffffffffffffff161461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190615222565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6060600480546119969061561c565b80601f01602080910402602001604051908101604052809291908181526020018280546119c29061561c565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b5050505050905090565b611a21612692565b73ffffffffffffffffffffffffffffffffffffffff16611a3f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90615222565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90615102565b60405180910390fd5b611b3082826136bf565b5050565b600081565b60115481565b60195481565b600081565b60008060016000611b59612692565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d906152e2565b60405180910390fd5b611c2a611c21612692565b8585840361269a565b600191505092915050565b600f5481565b6000611c4f611c48612692565b8484612865565b6001905092915050565b611c61612692565b73ffffffffffffffffffffffffffffffffffffffff16611c7f611899565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90615222565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601c6020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b611dd0612692565b73ffffffffffffffffffffffffffffffffffffffff16611dee611899565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90615222565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ee19190614fea565b60405180910390a25050565b611ef5612692565b73ffffffffffffffffffffffffffffffffffffffff16611f13611899565b73ffffffffffffffffffffffffffffffffffffffff1614611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090615222565b60405180910390fd5b670de0b6b3a76400006103e86005611f7f610f4b565b611f8991906154d0565b611f93919061549f565b611f9d919061549f565b811015611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd6906150e2565b60405180910390fd5b670de0b6b3a764000081611ff391906154d0565b600b8190555050565b601460009054906101000a900460ff1681565b60095481565b600061201f612692565b73ffffffffffffffffffffffffffffffffffffffff1661203d611899565b73ffffffffffffffffffffffffffffffffffffffff1614612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90615222565b60405180910390fd5b620186a060016120a1610f4b565b6120ab91906154d0565b6120b5919061549f565b8210156120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90615182565b60405180910390fd5b6103e86005612104610f4b565b61210e91906154d0565b612118919061549f565b82111561215a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612151906151a2565b60405180910390fd5b81600a8190555060019050919050565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000612207612692565b73ffffffffffffffffffffffffffffffffffffffff16612225611899565b73ffffffffffffffffffffffffffffffffffffffff161461227b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227290615222565b60405180910390fd5b6000601460006101000a81548160ff0219169083151502179055506001905090565b600381565b6122aa612692565b73ffffffffffffffffffffffffffffffffffffffff166122c8611899565b73ffffffffffffffffffffffffffffffffffffffff161461231e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231590615222565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590615082565b60405180910390fd5b612397816135f9565b50565b600281565b600b5481565b60006123af612692565b73ffffffffffffffffffffffffffffffffffffffff166123cd611899565b73ffffffffffffffffffffffffffffffffffffffff1614612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a90615222565b60405180910390fd5b6010546011546124339190615449565b4211612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90615282565b60405180910390fd5b6103e88211156124b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b090615242565b60405180910390fd5b4260118190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161251d9190614f6e565b60206040518083038186803b15801561253557600080fd5b505afa158015612549573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061256d91906144a8565b9050600061259861271061258a868561376090919063ffffffff16565b61377690919063ffffffff16565b905060008111156125d3576125d2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561264257600080fd5b505af1158015612656573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612701906152a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561277a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612771906150a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128589190615322565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90615042565b60405180910390fd5b600081141561295f5761295a8383600061378c565b6135f4565b601260009054906101000a900460ff16156130245761297c611899565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129ea57506129ba611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a235750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a765750600660149054906101000a900460ff16155b1561302357601260019054906101000a900460ff16612b7057601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b305750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6690615062565b60405180910390fd5b5b601460009054906101000a900460ff1615612d3a57612b8d611899565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c1457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d395743601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb906151e2565b60405180910390fd5b43601360003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ddd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e8457600954811115612e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1e906151c2565b60405180910390fd5b600b54612e33836114e7565b82612e3e9190615449565b1115612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e76906152c2565b60405180910390fd5b613022565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f7657600954811115612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615142565b60405180910390fd5b613021565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661302057600b54612fd3836114e7565b82612fde9190615449565b111561301f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613016906152c2565b60405180910390fd5b5b5b5b5b5b600061302f306114e7565b90506000600a5482101590508080156130545750601260029054906101000a900460ff165b801561306d5750600660149054906101000a900460ff16155b80156130c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561316f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b3576001600660146101000a81548160ff021916908315150217905550613197613a0d565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132195750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132315750600d60009054906101000a900460ff165b801561324c5750600e54600f546132489190615449565b4210155b80156132a25750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b1576132af613cf4565b505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133675750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337157600090505b600081156135e457601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d457506000601654115b1561349e5761340160646133f36016548861376090919063ffffffff16565b61377690919063ffffffff16565b905060165460028261341391906154d0565b61341d919061549f565b6018600082825461342e9190615449565b9250508190555060165460008261344591906154d0565b61344f919061549f565b601960008282546134609190615449565b9250508190555060165460088261347791906154d0565b613481919061549f565b601760008282546134929190615449565b925050819055506135c0565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134f957506000601554115b156135bf5761352660646135186015548861376090919063ffffffff16565b61377690919063ffffffff16565b905060155460038261353891906154d0565b613542919061549f565b601860008282546135539190615449565b9250508190555060155460008261356a91906154d0565b613574919061549f565b601960008282546135859190615449565b9250508190555060155460078261359c91906154d0565b6135a6919061549f565b601760008282546135b79190615449565b925050819055505b5b60008111156135d5576135d487308361378c565b5b80856135e1919061552a565b94505b6135ef87878761378c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361376e91906154d0565b905092915050565b60008183613784919061549f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f390615262565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386390615042565b60405180910390fd5b613877838383613ecf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f490615122565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139909190615449565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139f49190615322565b60405180910390a3613a07848484613ed4565b50505050565b6000613a18306114e7565b90506000601954601754601854613a2f9190615449565b613a399190615449565b9050600080831480613a4b5750600082145b15613a5857505050613cf2565b6014600a54613a6791906154d0565b831115613a80576014600a54613a7d91906154d0565b92505b600060028360185486613a9391906154d0565b613a9d919061549f565b613aa7919061549f565b90506000613abe8286613ed990919063ffffffff16565b90506000479050613ace82613eef565b6000613ae38247613ed990919063ffffffff16565b90506000613b0e87613b006017548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000613b3988613b2b6019548661376090919063ffffffff16565b61377690919063ffffffff16565b90506000818385613b4a919061552a565b613b54919061552a565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613bb490614f59565b60006040518083038185875af1925050503d8060008114613bf1576040519150601f19603f3d011682016040523d82523d6000602084013e613bf6565b606091505b505080985050600087118015613c0c5750600081115b15613c5957613c1b87826141ad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051613c5093929190615397565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c9f90614f59565b60006040518083038185875af1925050503d8060008114613cdc576040519150601f19603f3d011682016040523d82523d6000602084013e613ce1565b606091505b505080985050505050505050505050505b565b600042600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d5a9190614f6e565b60206040518083038186803b158015613d7257600080fd5b505afa158015613d86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613daa91906144a8565b90506000613dd7612710613dc9600c548561376090919063ffffffff16565b61377690919063ffffffff16565b90506000811115613e1257613e11600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead8361378c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e8157600080fd5b505af1158015613e95573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613ee7919061552a565b905092915050565b6000600267ffffffffffffffff811115613f32577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015613f605781602001602082028036833780820191505090505b5090503081600081518110613f9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561403e57600080fd5b505afa158015614052573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614076919061432a565b816001815181106140b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614115307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461269a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417795949392919061533d565b600060405180830381600087803b15801561419157600080fd5b505af11580156141a5573d6000803e3d6000fd5b505050505050565b6141d8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461269a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161423f96959493929190614f89565b6060604051808303818588803b15801561425857600080fd5b505af115801561426c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142919190614520565b5050505050565b6000813590506142a7816156ec565b92915050565b6000815190506142bc816156ec565b92915050565b6000813590506142d181615703565b92915050565b6000813590506142e68161571a565b92915050565b6000815190506142fb8161571a565b92915050565b60006020828403121561431357600080fd5b600061432184828501614298565b91505092915050565b60006020828403121561433c57600080fd5b600061434a848285016142ad565b91505092915050565b6000806040838503121561436657600080fd5b600061437485828601614298565b925050602061438585828601614298565b9150509250929050565b6000806000606084860312156143a457600080fd5b60006143b286828701614298565b93505060206143c386828701614298565b92505060406143d4868287016142d7565b9150509250925092565b600080604083850312156143f157600080fd5b60006143ff85828601614298565b9250506020614410858286016142c2565b9150509250929050565b6000806040838503121561442d57600080fd5b600061443b85828601614298565b925050602061444c858286016142d7565b9150509250929050565b60006020828403121561446857600080fd5b6000614476848285016142c2565b91505092915050565b60006020828403121561449157600080fd5b600061449f848285016142d7565b91505092915050565b6000602082840312156144ba57600080fd5b60006144c8848285016142ec565b91505092915050565b6000806000606084860312156144e657600080fd5b60006144f4868287016142d7565b9350506020614505868287016142d7565b9250506040614516868287016142c2565b9150509250925092565b60008060006060848603121561453557600080fd5b6000614543868287016142ec565b9350506020614554868287016142ec565b9250506040614565868287016142ec565b9150509250925092565b600061457b8383614587565b60208301905092915050565b6145908161555e565b82525050565b61459f8161555e565b82525050565b60006145b0826153f9565b6145ba818561541c565b93506145c5836153e9565b8060005b838110156145f65781516145dd888261456f565b97506145e88361540f565b9250506001810190506145c9565b5085935050505092915050565b61460c81615570565b82525050565b61461b816155b3565b82525050565b61462a816155d7565b82525050565b600061463b82615404565b6146458185615438565b93506146558185602086016155e9565b61465e816156db565b840191505092915050565b6000614676602383615438565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146dc601683615438565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b600061471c602683615438565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614782602283615438565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e8603383615438565b91507f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008301527f616e206576657279203130206d696e75746573000000000000000000000000006020830152604082019050919050565b600061484e602483615438565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f302e3525000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b4603983615438565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b600061491a602683615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614980603683615438565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b60006149e6603083615438565b91507f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008301527f747765656e20302520616e6420313025000000000000000000000000000000006020830152604082019050919050565b6000614a4c603583615438565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614ab2603483615438565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b6000614b18603583615438565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614b7e604983615438565b91507f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008301527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208301527f20616c6c6f7765642e00000000000000000000000000000000000000000000006040830152606082019050919050565b6000614c0a602883615438565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c70602083615438565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614cb0602a83615438565b91507f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008301527f6b656e7320696e204c50000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d16602583615438565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d7c602083615438565b91507f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686000830152602082019050919050565b6000614dbc60008361542d565b9150600082019050919050565b6000614dd6602483615438565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e3c601383615438565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b6000614e7c602583615438565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ee2602f83615438565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e312500000000000000000000000000000000006020830152604082019050919050565b614f448161559c565b82525050565b614f53816155a6565b82525050565b6000614f6482614daf565b9150819050919050565b6000602082019050614f836000830184614596565b92915050565b600060c082019050614f9e6000830189614596565b614fab6020830188614f3b565b614fb86040830187614621565b614fc56060830186614621565b614fd26080830185614596565b614fdf60a0830184614f3b565b979650505050505050565b6000602082019050614fff6000830184614603565b92915050565b600060208201905061501a6000830184614612565b92915050565b6000602082019050818103600083015261503a8184614630565b905092915050565b6000602082019050818103600083015261505b81614669565b9050919050565b6000602082019050818103600083015261507b816146cf565b9050919050565b6000602082019050818103600083015261509b8161470f565b9050919050565b600060208201905081810360008301526150bb81614775565b9050919050565b600060208201905081810360008301526150db816147db565b9050919050565b600060208201905081810360008301526150fb81614841565b9050919050565b6000602082019050818103600083015261511b816148a7565b9050919050565b6000602082019050818103600083015261513b8161490d565b9050919050565b6000602082019050818103600083015261515b81614973565b9050919050565b6000602082019050818103600083015261517b816149d9565b9050919050565b6000602082019050818103600083015261519b81614a3f565b9050919050565b600060208201905081810360008301526151bb81614aa5565b9050919050565b600060208201905081810360008301526151db81614b0b565b9050919050565b600060208201905081810360008301526151fb81614b71565b9050919050565b6000602082019050818103600083015261521b81614bfd565b9050919050565b6000602082019050818103600083015261523b81614c63565b9050919050565b6000602082019050818103600083015261525b81614ca3565b9050919050565b6000602082019050818103600083015261527b81614d09565b9050919050565b6000602082019050818103600083015261529b81614d6f565b9050919050565b600060208201905081810360008301526152bb81614dc9565b9050919050565b600060208201905081810360008301526152db81614e2f565b9050919050565b600060208201905081810360008301526152fb81614e6f565b9050919050565b6000602082019050818103600083015261531b81614ed5565b9050919050565b60006020820190506153376000830184614f3b565b92915050565b600060a0820190506153526000830188614f3b565b61535f6020830187614621565b818103604083015261537181866145a5565b90506153806060830185614596565b61538d6080830184614f3b565b9695505050505050565b60006060820190506153ac6000830186614f3b565b6153b96020830185614f3b565b6153c66040830184614f3b565b949350505050565b60006020820190506153e36000830184614f4a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006154548261559c565b915061545f8361559c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154945761549361564e565b5b828201905092915050565b60006154aa8261559c565b91506154b58361559c565b9250826154c5576154c461567d565b5b828204905092915050565b60006154db8261559c565b91506154e68361559c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561551f5761551e61564e565b5b828202905092915050565b60006155358261559c565b91506155408361559c565b9250828210156155535761555261564e565b5b828203905092915050565b60006155698261557c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155be826155c5565b9050919050565b60006155d08261557c565b9050919050565b60006155e28261559c565b9050919050565b60005b838110156156075780820151818401526020810190506155ec565b83811115615616576000848401525b50505050565b6000600282049050600182168061563457607f821691505b60208210811415615648576156476156ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6156f58161555e565b811461570057600080fd5b50565b61570c81615570565b811461571757600080fd5b50565b6157238161559c565b811461572e57600080fd5b5056fea2646970667358221220683a33d3981f8ccf306972706bee04e8f308726c331116adc49d7e97d3537cae64736f6c63430008000033

Deployed Bytecode Sourcemap

28608:18226:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11204:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13512:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30305:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28686:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12324:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36212:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29241:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29056:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30089:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30049;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34357:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14204:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28779:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33259:154;;;;;;;;;;;;;:::i;:::-;;29151:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29112:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12166:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15142:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28744:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29339:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36377:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29865:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29419:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12495:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5000:103;;;;;;;;;;;;;:::i;:::-;;44416:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33465:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34904:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28871:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29719:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4349:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28908:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29900:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35167:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11423:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35465:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29819:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29295:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30129:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30002:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15942:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29203:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12885:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35973:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30526:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29379:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35275:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34640:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29637:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28941:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33852:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29685:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13164:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28983:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33647:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29769:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5258:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29951:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29023:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45775:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11204:100;11258:13;11291:5;11284:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11204:100;:::o;13512:210::-;13631:4;13653:39;13662:12;:10;:12::i;:::-;13676:7;13685:6;13653:8;:39::i;:::-;13710:4;13703:11;;13512:210;;;;:::o;30305:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;28686:51::-;;;:::o;12324:108::-;12385:7;12412:12;;12405:19;;12324:108;:::o;36212:157::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36319:9:::1;;;;;;;;;;;36291:38;;36308:9;36291:38;;;;;;;;;;;;36352:9;36340;;:21;;;;;;;;;;;;;;;;;;36212:157:::0;:::o;29241:47::-;;;;:::o;29056:36::-;;;;:::o;30089:33::-;;;;:::o;30049:::-;;;;:::o;34357:275::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34494:4:::1;34486;34481:1;34465:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34464:26;;;;:::i;:::-;34463:35;;;;:::i;:::-;34453:6;:45;;34431:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;34617:6;34607;:17;;;;:::i;:::-;34584:20;:40;;;;34357:275:::0;:::o;14204:529::-;14344:4;14361:36;14371:6;14379:9;14390:6;14361:9;:36::i;:::-;14410:24;14437:11;:19;14449:6;14437:19;;;;;;;;;;;;;;;:33;14457:12;:10;:12::i;:::-;14437:33;;;;;;;;;;;;;;;;14410:60;;14523:6;14503:16;:26;;14481:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;14633:57;14642:6;14650:12;:10;:12::i;:::-;14683:6;14664:16;:25;14633:8;:57::i;:::-;14721:4;14714:11;;;14204:529;;;;;:::o;28779:53::-;28825:6;28779:53;:::o;33259:154::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33329:4:::1;33313:13;;:20;;;;;;;;;;;;;;;;;;33358:4;33344:11;;:18;;;;;;;;;;;;;;;;;;33390:15;33373:14;:32;;;;33259:154::o:0;29151:45::-;;;;:::o;29112:32::-;;;;;;;;;;;;;:::o;12166:93::-;12224:5;12249:2;12242:9;;12166:93;:::o;15142:297::-;15257:4;15279:130;15302:12;:10;:12::i;:::-;15329:7;15388:10;15351:11;:25;15363:12;:10;:12::i;:::-;15351:25;;;;;;;;;;;;;;;:34;15377:7;15351:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15279:8;:130::i;:::-;15427:4;15420:11;;15142:297;;;;:::o;28744:28::-;;;;;;;;;;;;;:::o;29339:33::-;;;;;;;;;;;;;:::o;36377:126::-;36443:4;36467:19;:28;36487:7;36467:28;;;;;;;;;;;;;;;;;;;;;;;;;36460:35;;36377:126;;;:::o;29865:28::-;;;;:::o;29419:31::-;;;;;;;;;;;;;:::o;12495:177::-;12614:7;12646:9;:18;12656:7;12646:18;;;;;;;;;;;;;;;;12639:25;;12495:177;;;:::o;5000:103::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5065:30:::1;5092:1;5065:18;:30::i;:::-;5000:103::o:0;44416:555::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44618:3:::1;44595:19;:26;;44573:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;44745:4;44733:8;:16;;:33;;;;;44765:1;44753:8;:13;;44733:33;44711:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;44871:19;44853:15;:37;;;;44920:8;44901:16;:27;;;;44955:8;44939:13;;:24;;;;;;;;;;;;;;;;;;44416:555:::0;;;:::o;33465:121::-;33517:4;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33551:5:::1;33534:14;;:22;;;;;;;;;;;;;;;;;;33574:4;33567:11;;33465:121:::0;:::o;34904:167::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35059:4:::1;35017:31;:39;35049:6;35017:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34904:167:::0;;:::o;28871:30::-;;;;;;;;;;;;;:::o;29719:43::-;29761:1;29719:43;:::o;4349:87::-;4395:7;4422:6;;;;;;;;;;;4415:13;;4349:87;:::o;28908:24::-;;;;;;;;;;;;;:::o;29900:44::-;29943:1;29900:44;:::o;35167:100::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35252:7:::1;35238:11;;:21;;;;;;;;;;;;;;;;;;35167:100:::0;:::o;11423:104::-;11479:13;11512:7;11505:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11423:104;:::o;35465:304::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35609:13:::1;;;;;;;;;;;35601:21;;:4;:21;;;;35579:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;35720:41;35749:4;35755:5;35720:28;:41::i;:::-;35465:304:::0;;:::o;29819:37::-;29855:1;29819:37;:::o;29295:35::-;;;;:::o;30129:27::-;;;;:::o;30002:38::-;30039:1;30002:38;:::o;15942:482::-;16062:4;16084:24;16111:11;:25;16123:12;:10;:12::i;:::-;16111:25;;;;;;;;;;;;;;;:34;16137:7;16111:34;;;;;;;;;;;;;;;;16084:61;;16198:15;16178:16;:35;;16156:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;16314:67;16323:12;:10;:12::i;:::-;16337:7;16365:15;16346:16;:34;16314:8;:67::i;:::-;16412:4;16405:11;;;15942:482;;;;:::o;29203:29::-;;;;:::o;12885:216::-;13007:4;13029:42;13039:12;:10;:12::i;:::-;13053:9;13064:6;13029:9;:42::i;:::-;13089:4;13082:11;;12885:216;;;;:::o;35973:231::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36133:15:::1;;;;;;;;;;;36090:59;;36113:18;36090:59;;;;;;;;;;;;36178:18;36160:15;;:36;;;;;;;;;;;;;;;;;;35973:231:::0;:::o;30526:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29379:33::-;;;;;;;;;;;;;:::o;35275:182::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35391:8:::1;35360:19;:28;35380:7;35360:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35431:7;35415:34;;;35440:8;35415:34;;;;;;:::i;:::-;;;;;;;;35275:182:::0;;:::o;34640:256::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34780:4:::1;34772;34767:1;34751:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34750:26;;;;:::i;:::-;34749:35;;;;:::i;:::-;34739:6;:45;;34717:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;34881:6;34871;:17;;;;:::i;:::-;34859:9;:29;;;;34640:256:::0;:::o;29637:39::-;;;;;;;;;;;;;:::o;28941:35::-;;;;:::o;33852:497::-;33960:4;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34039:6:::1;34034:1;34018:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34017:28;;;;:::i;:::-;34004:9;:41;;33982:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;34194:4;34189:1;34173:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34172:26;;;;:::i;:::-;34159:9;:39;;34137:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;34310:9;34289:18;:30;;;;34337:4;34330:11;;33852:497:::0;;;:::o;29685:27::-;;;;:::o;13164:201::-;13298:7;13330:11;:18;13342:5;13330:18;;;;;;;;;;;;;;;:27;13349:7;13330:27;;;;;;;;;;;;;;;;13323:34;;13164:201;;;;:::o;28983:33::-;;;;:::o;33647:135::-;33707:4;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33747:5:::1;33724:20;;:28;;;;;;;;;;;;;;;;;;33770:4;33763:11;;33647:135:::0;:::o;29769:43::-;29811:1;29769:43;:::o;5258:238::-;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5381:1:::1;5361:22;;:8;:22;;;;5339:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;5460:28;5479:8;5460:18;:28::i;:::-;5258:238:::0;:::o;29951:44::-;29994:1;29951:44;:::o;29023:24::-;;;;:::o;45775:1056::-;45886:4;4580:12;:10;:12::i;:::-;4569:23;;:7;:5;:7::i;:::-;:23;;;4561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45971:19:::1;;45948:20;;:42;;;;:::i;:::-;45930:15;:60;45908:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;46080:4;46069:7;:15;;46061:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;46165:15;46142:20;:38;;;;46235:28;46266:4;:14;;;46281:13;;;;;;;;;;;46266:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46235:60;;46345:20;46368:44;46406:5;46368:33;46393:7;46368:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;46345:67;;46532:1;46517:12;:16;46513:110;;;46550:61;46566:13;;;;;;;;;;;46589:6;46598:12;46550:15;:61::i;:::-;46513:110;46698:19;46735:13;;;;;;;;;;;46698:51;;46760:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46787:14;;;;;;;;;;46819:4;46812:11;;;;;45775:1056:::0;;;:::o;3191:98::-;3244:7;3271:10;3264:17;;3191:98;:::o;19732:380::-;19885:1;19868:19;;:5;:19;;;;19860:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19966:1;19947:21;;:7;:21;;;;19939:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20050:6;20020:11;:18;20032:5;20020:18;;;;;;;;;;;;;;;:27;20039:7;20020:27;;;;;;;;;;;;;;;:36;;;;20088:7;20072:32;;20081:5;20072:32;;;20097:6;20072:32;;;;;;:::i;:::-;;;;;;;;19732:380;;;:::o;36511:5011::-;36659:1;36643:18;;:4;:18;;;;36635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36736:1;36722:16;;:2;:16;;;;36714:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36805:1;36795:6;:11;36791:93;;;36823:28;36839:4;36845:2;36849:1;36823:15;:28::i;:::-;36866:7;;36791:93;36900:14;;;;;;;;;;;36896:2487;;;36961:7;:5;:7::i;:::-;36953:15;;:4;:15;;;;:49;;;;;36995:7;:5;:7::i;:::-;36989:13;;:2;:13;;;;36953:49;:86;;;;;37037:1;37023:16;;:2;:16;;;;36953:86;:128;;;;;37074:6;37060:21;;:2;:21;;;;36953:128;:158;;;;;37103:8;;;;;;;;;;;37102:9;36953:158;36931:2441;;;37151:13;;;;;;;;;;;37146:223;;37223:19;:25;37243:4;37223:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37252:19;:23;37272:2;37252:23;;;;;;;;;;;;;;;;;;;;;;;;;37223:52;37189:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37146:223;37525:20;;;;;;;;;;;37521:641;;;37606:7;:5;:7::i;:::-;37600:13;;:2;:13;;;;:72;;;;;37656:15;37642:30;;:2;:30;;;;37600:72;:129;;;;;37715:13;;;;;;;;;;;37701:28;;:2;:28;;;;37600:129;37570:573;;;37893:12;37818:28;:39;37847:9;37818:39;;;;;;;;;;;;;;;;:87;37780:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;38107:12;38065:28;:39;38094:9;38065:39;;;;;;;;;;;;;;;:54;;;;37570:573;37521:641;38236:25;:31;38262:4;38236:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38293:31;:35;38325:2;38293:35;;;;;;;;;;;;;;;;;;;;;;;;;38292:36;38236:92;38210:1147;;;38415:20;;38405:6;:30;;38371:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38623:9;;38606:13;38616:2;38606:9;:13::i;:::-;38597:6;:22;;;;:::i;:::-;:35;;38563:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38210:1147;;;38801:25;:29;38827:2;38801:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38856:31;:37;38888:4;38856:37;;;;;;;;;;;;;;;;;;;;;;;;;38855:38;38801:92;38775:582;;;38980:20;;38970:6;:30;;38936:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;38775:582;;;39137:31;:35;39169:2;39137:35;;;;;;;;;;;;;;;;;;;;;;;;;39132:225;;39257:9;;39240:13;39250:2;39240:9;:13::i;:::-;39231:6;:22;;;;:::i;:::-;:35;;39197:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39132:225;38775:582;38210:1147;36931:2441;36896:2487;39395:28;39426:24;39444:4;39426:9;:24::i;:::-;39395:55;;39463:12;39502:18;;39478:20;:42;;39463:57;;39551:7;:35;;;;;39575:11;;;;;;;;;;;39551:35;:61;;;;;39604:8;;;;;;;;;;;39603:9;39551:61;:110;;;;;39630:25;:31;39656:4;39630:31;;;;;;;;;;;;;;;;;;;;;;;;;39629:32;39551:110;:153;;;;;39679:19;:25;39699:4;39679:25;;;;;;;;;;;;;;;;;;;;;;;;;39678:26;39551:153;:194;;;;;39722:19;:23;39742:2;39722:23;;;;;;;;;;;;;;;;;;;;;;;;;39721:24;39551:194;39533:326;;;39783:4;39772:8;;:15;;;;;;;;;;;;;;;;;;39804:10;:8;:10::i;:::-;39842:5;39831:8;;:16;;;;;;;;;;;;;;;;;;39533:326;39890:8;;;;;;;;;;;39889:9;:55;;;;;39915:25;:29;39941:2;39915:29;;;;;;;;;;;;;;;;;;;;;;;;;39889:55;:85;;;;;39961:13;;;;;;;;;;;39889:85;:153;;;;;40027:15;;40010:14;;:32;;;;:::i;:::-;39991:15;:51;;39889:153;:196;;;;;40060:19;:25;40080:4;40060:25;;;;;;;;;;;;;;;;;;;;;;;;;40059:26;39889:196;39871:282;;;40112:29;:27;:29::i;:::-;;39871:282;40165:12;40181:8;;;;;;;;;;;40180:9;40165:24;;40291:19;:25;40311:4;40291:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40320:19;:23;40340:2;40320:23;;;;;;;;;;;;;;;;;;;;;;;;;40291:52;40287:100;;;40370:5;40360:15;;40287:100;40399:12;40504:7;40500:969;;;40556:25;:29;40582:2;40556:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40605:1;40589:13;;:17;40556:50;40552:768;;;40634:34;40664:3;40634:25;40645:13;;40634:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40627:41;;40737:13;;29994:1;40710:4;:23;;;;:::i;:::-;40709:41;;;;:::i;:::-;40687:18;;:63;;;;;;;:::i;:::-;;;;;;;;40807:13;;30039:1;40786:4;:17;;;;:::i;:::-;40785:35;;;;:::i;:::-;40769:12;;:51;;;;;;;:::i;:::-;;;;;;;;40889:13;;29943:1;40862:4;:23;;;;:::i;:::-;40861:41;;;;:::i;:::-;40839:18;;:63;;;;;;;:::i;:::-;;;;;;;;40552:768;;;40964:25;:31;40990:4;40964:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41014:1;40999:12;;:16;40964:51;40960:360;;;41043:33;41072:3;41043:24;41054:12;;41043:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41036:40;;41144:12;;29811:1;41118:4;:22;;;;:::i;:::-;41117:39;;;;:::i;:::-;41095:18;;:61;;;;;;;:::i;:::-;;;;;;;;41212:12;;29855:1;41192:4;:16;;;;:::i;:::-;41191:33;;;;:::i;:::-;41175:12;;:49;;;;;;;:::i;:::-;;;;;;;;41292:12;;29761:1;41266:4;:22;;;;:::i;:::-;41265:39;;;;:::i;:::-;41243:18;;:61;;;;;;;:::i;:::-;;;;;;;;40960:360;40552:768;41347:1;41340:4;:8;41336:91;;;41369:42;41385:4;41399;41406;41369:15;:42::i;:::-;41336:91;41453:4;41443:14;;;;;:::i;:::-;;;40500:969;41481:33;41497:4;41503:2;41507:6;41481:15;:33::i;:::-;36511:5011;;;;;;;;:::o;5656:191::-;5730:16;5749:6;;;;;;;;;;;5730:25;;5775:8;5766:6;;:17;;;;;;;;;;;;;;;;;;5830:8;5799:40;;5820:8;5799:40;;;;;;;;;;;;5656:191;;:::o;35777:188::-;35894:5;35860:25;:31;35886:4;35860:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35951:5;35917:40;;35945:4;35917:40;;;;;;;;;;;;35777:188;;:::o;25181:98::-;25239:7;25270:1;25266;:5;;;;:::i;:::-;25259:12;;25181:98;;;;:::o;25580:::-;25638:7;25669:1;25665;:5;;;;:::i;:::-;25658:12;;25580:98;;;;:::o;16914:770::-;17072:1;17054:20;;:6;:20;;;;17046:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17156:1;17135:23;;:9;:23;;;;17127:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17211:47;17232:6;17240:9;17251:6;17211:20;:47::i;:::-;17271:21;17295:9;:17;17305:6;17295:17;;;;;;;;;;;;;;;;17271:41;;17362:6;17345:13;:23;;17323:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;17506:6;17490:13;:22;17470:9;:17;17480:6;17470:17;;;;;;;;;;;;;;;:42;;;;17558:6;17534:9;:20;17544:9;17534:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17599:9;17582:35;;17591:6;17582:35;;;17610:6;17582:35;;;;;;:::i;:::-;;;;;;;;17630:46;17650:6;17658:9;17669:6;17630:19;:46::i;:::-;16914:770;;;;:::o;42652:1756::-;42691:23;42717:24;42735:4;42717:9;:24::i;:::-;42691:50;;42752:25;42848:12;;42814:18;;42780;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;42752:108;;42871:12;42919:1;42900:15;:20;:46;;;;42945:1;42924:17;:22;42900:46;42896:85;;;42963:7;;;;;42896:85;43036:2;43015:18;;:23;;;;:::i;:::-;42997:15;:41;42993:115;;;43094:2;43073:18;;:23;;;;:::i;:::-;43055:41;;42993:115;43169:23;43282:1;43249:17;43214:18;;43196:15;:36;;;;:::i;:::-;43195:71;;;;:::i;:::-;:88;;;;:::i;:::-;43169:114;;43294:26;43323:36;43343:15;43323;:19;;:36;;;;:::i;:::-;43294:65;;43372:25;43400:21;43372:49;;43434:36;43451:18;43434:16;:36::i;:::-;43483:18;43504:44;43530:17;43504:21;:25;;:44;;;;:::i;:::-;43483:65;;43561:23;43587:81;43640:17;43587:34;43602:18;;43587:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;43561:107;;43679:17;43699:51;43732:17;43699:28;43714:12;;43699:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43679:71;;43763:23;43820:9;43802:15;43789:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43763:66;;43863:1;43842:18;:22;;;;43896:1;43875:18;:22;;;;43923:1;43908:12;:16;;;;43959:9;;;;;;;;;;;43951:23;;43982:9;43951:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43937:59;;;;;44031:1;44013:15;:19;:42;;;;;44054:1;44036:15;:19;44013:42;44009:278;;;44072:46;44085:15;44102;44072:12;:46::i;:::-;44138:137;44171:18;44208:15;44242:18;;44138:137;;;;;;;;:::i;:::-;;;;;;;;44009:278;44321:15;;;;;;;;;;;44313:29;;44364:21;44313:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44299:101;;;;;42652:1756;;;;;;;;;;;:::o;44979:788::-;45036:4;45070:15;45053:14;:32;;;;45140:28;45171:4;:14;;;45186:13;;;;;;;;;;;45171:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45140:60;;45250:20;45273:77;45334:5;45273:42;45298:16;;45273:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;45250:100;;45470:1;45455:12;:16;45451:110;;;45488:61;45504:13;;;;;;;;;;;45527:6;45536:12;45488:15;:61::i;:::-;45451:110;45636:19;45673:13;;;;;;;;;;;45636:51;;45698:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45725:12;;;;;;;;;;45755:4;45748:11;;;;;44979:788;:::o;20712:125::-;;;;:::o;21441:124::-;;;;:::o;24824:98::-;24882:7;24913:1;24909;:5;;;;:::i;:::-;24902:12;;24824:98;;;;:::o;41530:589::-;41656:21;41694:1;41680:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41656:40;;41725:4;41707;41712:1;41707:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;41751:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41741:4;41746:1;41741:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;41786:62;41803:4;41818:15;41836:11;41786:8;:62::i;:::-;41887:15;:66;;;41968:11;41994:1;42038:4;42065;42085:15;41887:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41530:589;;:::o;42127:517::-;42275:62;42292:4;42307:15;42325:11;42275:8;:62::i;:::-;42380:15;:31;;;42419:9;42452:4;42472:11;42498:1;42541;28825:6;42610:15;42380:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42127:517;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:133::-;;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;350:84;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:143::-;;673:6;667:13;658:22;;689:33;716:5;689:33;:::i;:::-;648:80;;;;:::o;734:262::-;;842:2;830:9;821:7;817:23;813:32;810:2;;;858:1;855;848:12;810:2;901:1;926:53;971:7;962:6;951:9;947:22;926:53;:::i;:::-;916:63;;872:117;800:196;;;;:::o;1002:284::-;;1121:2;1109:9;1100:7;1096:23;1092:32;1089:2;;;1137:1;1134;1127:12;1089:2;1180:1;1205:64;1261:7;1252:6;1241:9;1237:22;1205:64;:::i;:::-;1195:74;;1151:128;1079:207;;;;:::o;1292:407::-;;;1417:2;1405:9;1396:7;1392:23;1388:32;1385:2;;;1433:1;1430;1423:12;1385:2;1476:1;1501:53;1546:7;1537:6;1526:9;1522:22;1501:53;:::i;:::-;1491:63;;1447:117;1603:2;1629:53;1674:7;1665:6;1654:9;1650:22;1629:53;:::i;:::-;1619:63;;1574:118;1375:324;;;;;:::o;1705:552::-;;;;1847:2;1835:9;1826:7;1822:23;1818:32;1815:2;;;1863:1;1860;1853:12;1815:2;1906:1;1931:53;1976:7;1967:6;1956:9;1952:22;1931:53;:::i;:::-;1921:63;;1877:117;2033:2;2059:53;2104:7;2095:6;2084:9;2080:22;2059:53;:::i;:::-;2049:63;;2004:118;2161:2;2187:53;2232:7;2223:6;2212:9;2208:22;2187:53;:::i;:::-;2177:63;;2132:118;1805:452;;;;;:::o;2263:401::-;;;2385:2;2373:9;2364:7;2360:23;2356:32;2353:2;;;2401:1;2398;2391:12;2353:2;2444:1;2469:53;2514:7;2505:6;2494:9;2490:22;2469:53;:::i;:::-;2459:63;;2415:117;2571:2;2597:50;2639:7;2630:6;2619:9;2615:22;2597:50;:::i;:::-;2587:60;;2542:115;2343:321;;;;;:::o;2670:407::-;;;2795:2;2783:9;2774:7;2770:23;2766:32;2763:2;;;2811:1;2808;2801:12;2763:2;2854:1;2879:53;2924:7;2915:6;2904:9;2900:22;2879:53;:::i;:::-;2869:63;;2825:117;2981:2;3007:53;3052:7;3043:6;3032:9;3028:22;3007:53;:::i;:::-;2997:63;;2952:118;2753:324;;;;;:::o;3083:256::-;;3188:2;3176:9;3167:7;3163:23;3159:32;3156:2;;;3204:1;3201;3194:12;3156:2;3247:1;3272:50;3314:7;3305:6;3294:9;3290:22;3272:50;:::i;:::-;3262:60;;3218:114;3146:193;;;;:::o;3345:262::-;;3453:2;3441:9;3432:7;3428:23;3424:32;3421:2;;;3469:1;3466;3459:12;3421:2;3512:1;3537:53;3582:7;3573:6;3562:9;3558:22;3537:53;:::i;:::-;3527:63;;3483:117;3411:196;;;;:::o;3613:284::-;;3732:2;3720:9;3711:7;3707:23;3703:32;3700:2;;;3748:1;3745;3738:12;3700:2;3791:1;3816:64;3872:7;3863:6;3852:9;3848:22;3816:64;:::i;:::-;3806:74;;3762:128;3690:207;;;;:::o;3903:546::-;;;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4058:1;4055;4048:12;4010:2;4101:1;4126:53;4171:7;4162:6;4151:9;4147:22;4126:53;:::i;:::-;4116:63;;4072:117;4228:2;4254:53;4299:7;4290:6;4279:9;4275:22;4254:53;:::i;:::-;4244:63;;4199:118;4356:2;4382:50;4424:7;4415:6;4404:9;4400:22;4382:50;:::i;:::-;4372:60;;4327:115;4000:449;;;;;:::o;4455:596::-;;;;4608:2;4596:9;4587:7;4583:23;4579:32;4576:2;;;4624:1;4621;4614:12;4576:2;4667:1;4692:64;4748:7;4739:6;4728:9;4724:22;4692:64;:::i;:::-;4682:74;;4638:128;4805:2;4831:64;4887:7;4878:6;4867:9;4863:22;4831:64;:::i;:::-;4821:74;;4776:129;4944:2;4970:64;5026:7;5017:6;5006:9;5002:22;4970:64;:::i;:::-;4960:74;;4915:129;4566:485;;;;;:::o;5057:179::-;;5147:46;5189:3;5181:6;5147:46;:::i;:::-;5225:4;5220:3;5216:14;5202:28;;5137:99;;;;:::o;5242:108::-;5319:24;5337:5;5319:24;:::i;:::-;5314:3;5307:37;5297:53;;:::o;5356:118::-;5443:24;5461:5;5443:24;:::i;:::-;5438:3;5431:37;5421:53;;:::o;5510:732::-;;5658:54;5706:5;5658:54;:::i;:::-;5728:86;5807:6;5802:3;5728:86;:::i;:::-;5721:93;;5838:56;5888:5;5838:56;:::i;:::-;5917:7;5948:1;5933:284;5958:6;5955:1;5952:13;5933:284;;;6034:6;6028:13;6061:63;6120:3;6105:13;6061:63;:::i;:::-;6054:70;;6147:60;6200:6;6147:60;:::i;:::-;6137:70;;5993:224;5980:1;5977;5973:9;5968:14;;5933:284;;;5937:14;6233:3;6226:10;;5634:608;;;;;;;:::o;6248:109::-;6329:21;6344:5;6329:21;:::i;:::-;6324:3;6317:34;6307:50;;:::o;6363:181::-;6475:62;6531:5;6475:62;:::i;:::-;6470:3;6463:75;6453:91;;:::o;6550:147::-;6645:45;6684:5;6645:45;:::i;:::-;6640:3;6633:58;6623:74;;:::o;6703:364::-;;6819:39;6852:5;6819:39;:::i;:::-;6874:71;6938:6;6933:3;6874:71;:::i;:::-;6867:78;;6954:52;6999:6;6994:3;6987:4;6980:5;6976:16;6954:52;:::i;:::-;7031:29;7053:6;7031:29;:::i;:::-;7026:3;7022:39;7015:46;;6795:272;;;;;:::o;7073:367::-;;7236:67;7300:2;7295:3;7236:67;:::i;:::-;7229:74;;7333:34;7329:1;7324:3;7320:11;7313:55;7399:5;7394:2;7389:3;7385:12;7378:27;7431:2;7426:3;7422:12;7415:19;;7219:221;;;:::o;7446:320::-;;7609:67;7673:2;7668:3;7609:67;:::i;:::-;7602:74;;7706:24;7702:1;7697:3;7693:11;7686:45;7757:2;7752:3;7748:12;7741:19;;7592:174;;;:::o;7772:370::-;;7935:67;7999:2;7994:3;7935:67;:::i;:::-;7928:74;;8032:34;8028:1;8023:3;8019:11;8012:55;8098:8;8093:2;8088:3;8084:12;8077:30;8133:2;8128:3;8124:12;8117:19;;7918:224;;;:::o;8148:366::-;;8311:67;8375:2;8370:3;8311:67;:::i;:::-;8304:74;;8408:34;8404:1;8399:3;8395:11;8388:55;8474:4;8469:2;8464:3;8460:12;8453:26;8505:2;8500:3;8496:12;8489:19;;8294:220;;;:::o;8520:383::-;;8683:67;8747:2;8742:3;8683:67;:::i;:::-;8676:74;;8780:34;8776:1;8771:3;8767:11;8760:55;8846:21;8841:2;8836:3;8832:12;8825:43;8894:2;8889:3;8885:12;8878:19;;8666:237;;;:::o;8909:368::-;;9072:67;9136:2;9131:3;9072:67;:::i;:::-;9065:74;;9169:34;9165:1;9160:3;9156:11;9149:55;9235:6;9230:2;9225:3;9221:12;9214:28;9268:2;9263:3;9259:12;9252:19;;9055:222;;;:::o;9283:389::-;;9446:67;9510:2;9505:3;9446:67;:::i;:::-;9439:74;;9543:34;9539:1;9534:3;9530:11;9523:55;9609:27;9604:2;9599:3;9595:12;9588:49;9663:2;9658:3;9654:12;9647:19;;9429:243;;;:::o;9678:370::-;;9841:67;9905:2;9900:3;9841:67;:::i;:::-;9834:74;;9938:34;9934:1;9929:3;9925:11;9918:55;10004:8;9999:2;9994:3;9990:12;9983:30;10039:2;10034:3;10030:12;10023:19;;9824:224;;;:::o;10054:386::-;;10217:67;10281:2;10276:3;10217:67;:::i;:::-;10210:74;;10314:34;10310:1;10305:3;10301:11;10294:55;10380:24;10375:2;10370:3;10366:12;10359:46;10431:2;10426:3;10422:12;10415:19;;10200:240;;;:::o;10446:380::-;;10609:67;10673:2;10668:3;10609:67;:::i;:::-;10602:74;;10706:34;10702:1;10697:3;10693:11;10686:55;10772:18;10767:2;10762:3;10758:12;10751:40;10817:2;10812:3;10808:12;10801:19;;10592:234;;;:::o;10832:385::-;;10995:67;11059:2;11054:3;10995:67;:::i;:::-;10988:74;;11092:34;11088:1;11083:3;11079:11;11072:55;11158:23;11153:2;11148:3;11144:12;11137:45;11208:2;11203:3;11199:12;11192:19;;10978:239;;;:::o;11223:384::-;;11386:67;11450:2;11445:3;11386:67;:::i;:::-;11379:74;;11483:34;11479:1;11474:3;11470:11;11463:55;11549:22;11544:2;11539:3;11535:12;11528:44;11598:2;11593:3;11589:12;11582:19;;11369:238;;;:::o;11613:385::-;;11776:67;11840:2;11835:3;11776:67;:::i;:::-;11769:74;;11873:34;11869:1;11864:3;11860:11;11853:55;11939:23;11934:2;11929:3;11925:12;11918:45;11989:2;11984:3;11980:12;11973:19;;11759:239;;;:::o;12004:439::-;;12167:67;12231:2;12226:3;12167:67;:::i;:::-;12160:74;;12264:34;12260:1;12255:3;12251:11;12244:55;12330:34;12325:2;12320:3;12316:12;12309:56;12396:11;12391:2;12386:3;12382:12;12375:33;12434:2;12429:3;12425:12;12418:19;;12150:293;;;:::o;12449:372::-;;12612:67;12676:2;12671:3;12612:67;:::i;:::-;12605:74;;12709:34;12705:1;12700:3;12696:11;12689:55;12775:10;12770:2;12765:3;12761:12;12754:32;12812:2;12807:3;12803:12;12796:19;;12595:226;;;:::o;12827:330::-;;12990:67;13054:2;13049:3;12990:67;:::i;:::-;12983:74;;13087:34;13083:1;13078:3;13074:11;13067:55;13148:2;13143:3;13139:12;13132:19;;12973:184;;;:::o;13163:374::-;;13326:67;13390:2;13385:3;13326:67;:::i;:::-;13319:74;;13423:34;13419:1;13414:3;13410:11;13403:55;13489:12;13484:2;13479:3;13475:12;13468:34;13528:2;13523:3;13519:12;13512:19;;13309:228;;;:::o;13543:369::-;;13706:67;13770:2;13765:3;13706:67;:::i;:::-;13699:74;;13803:34;13799:1;13794:3;13790:11;13783:55;13869:7;13864:2;13859:3;13855:12;13848:29;13903:2;13898:3;13894:12;13887:19;;13689:223;;;:::o;13918:330::-;;14081:67;14145:2;14140:3;14081:67;:::i;:::-;14074:74;;14178:34;14174:1;14169:3;14165:11;14158:55;14239:2;14234:3;14230:12;14223:19;;14064:184;;;:::o;14254:297::-;;14434:83;14515:1;14510:3;14434:83;:::i;:::-;14427:90;;14543:1;14538:3;14534:11;14527:18;;14417:134;;;:::o;14557:368::-;;14720:67;14784:2;14779:3;14720:67;:::i;:::-;14713:74;;14817:34;14813:1;14808:3;14804:11;14797:55;14883:6;14878:2;14873:3;14869:12;14862:28;14916:2;14911:3;14907:12;14900:19;;14703:222;;;:::o;14931:317::-;;15094:67;15158:2;15153:3;15094:67;:::i;:::-;15087:74;;15191:21;15187:1;15182:3;15178:11;15171:42;15239:2;15234:3;15230:12;15223:19;;15077:171;;;:::o;15254:369::-;;15417:67;15481:2;15476:3;15417:67;:::i;:::-;15410:74;;15514:34;15510:1;15505:3;15501:11;15494:55;15580:7;15575:2;15570:3;15566:12;15559:29;15614:2;15609:3;15605:12;15598:19;;15400:223;;;:::o;15629:379::-;;15792:67;15856:2;15851:3;15792:67;:::i;:::-;15785:74;;15889:34;15885:1;15880:3;15876:11;15869:55;15955:17;15950:2;15945:3;15941:12;15934:39;15999:2;15994:3;15990:12;15983:19;;15775:233;;;:::o;16014:118::-;16101:24;16119:5;16101:24;:::i;:::-;16096:3;16089:37;16079:53;;:::o;16138:112::-;16221:22;16237:5;16221:22;:::i;:::-;16216:3;16209:35;16199:51;;:::o;16256:379::-;;16462:147;16605:3;16462:147;:::i;:::-;16455:154;;16626:3;16619:10;;16444:191;;;:::o;16641:222::-;;16772:2;16761:9;16757:18;16749:26;;16785:71;16853:1;16842:9;16838:17;16829:6;16785:71;:::i;:::-;16739:124;;;;:::o;16869:807::-;;17156:3;17145:9;17141:19;17133:27;;17170:71;17238:1;17227:9;17223:17;17214:6;17170:71;:::i;:::-;17251:72;17319:2;17308:9;17304:18;17295:6;17251:72;:::i;:::-;17333:80;17409:2;17398:9;17394:18;17385:6;17333:80;:::i;:::-;17423;17499:2;17488:9;17484:18;17475:6;17423:80;:::i;:::-;17513:73;17581:3;17570:9;17566:19;17557:6;17513:73;:::i;:::-;17596;17664:3;17653:9;17649:19;17640:6;17596:73;:::i;:::-;17123:553;;;;;;;;;:::o;17682:210::-;;17807:2;17796:9;17792:18;17784:26;;17820:65;17882:1;17871:9;17867:17;17858:6;17820:65;:::i;:::-;17774:118;;;;:::o;17898:272::-;;18054:2;18043:9;18039:18;18031:26;;18067:96;18160:1;18149:9;18145:17;18136:6;18067:96;:::i;:::-;18021:149;;;;:::o;18176:313::-;;18327:2;18316:9;18312:18;18304:26;;18376:9;18370:4;18366:20;18362:1;18351:9;18347:17;18340:47;18404:78;18477:4;18468:6;18404:78;:::i;:::-;18396:86;;18294:195;;;;:::o;18495:419::-;;18699:2;18688:9;18684:18;18676:26;;18748:9;18742:4;18738:20;18734:1;18723:9;18719:17;18712:47;18776:131;18902:4;18776:131;:::i;:::-;18768:139;;18666:248;;;:::o;18920:419::-;;19124:2;19113:9;19109:18;19101:26;;19173:9;19167:4;19163:20;19159:1;19148:9;19144:17;19137:47;19201:131;19327:4;19201:131;:::i;:::-;19193:139;;19091:248;;;:::o;19345:419::-;;19549:2;19538:9;19534:18;19526:26;;19598:9;19592:4;19588:20;19584:1;19573:9;19569:17;19562:47;19626:131;19752:4;19626:131;:::i;:::-;19618:139;;19516:248;;;:::o;19770:419::-;;19974:2;19963:9;19959:18;19951:26;;20023:9;20017:4;20013:20;20009:1;19998:9;19994:17;19987:47;20051:131;20177:4;20051:131;:::i;:::-;20043:139;;19941:248;;;:::o;20195:419::-;;20399:2;20388:9;20384:18;20376:26;;20448:9;20442:4;20438:20;20434:1;20423:9;20419:17;20412:47;20476:131;20602:4;20476:131;:::i;:::-;20468:139;;20366:248;;;:::o;20620:419::-;;20824:2;20813:9;20809:18;20801:26;;20873:9;20867:4;20863:20;20859:1;20848:9;20844:17;20837:47;20901:131;21027:4;20901:131;:::i;:::-;20893:139;;20791:248;;;:::o;21045:419::-;;21249:2;21238:9;21234:18;21226:26;;21298:9;21292:4;21288:20;21284:1;21273:9;21269:17;21262:47;21326:131;21452:4;21326:131;:::i;:::-;21318:139;;21216:248;;;:::o;21470:419::-;;21674:2;21663:9;21659:18;21651:26;;21723:9;21717:4;21713:20;21709:1;21698:9;21694:17;21687:47;21751:131;21877:4;21751:131;:::i;:::-;21743:139;;21641:248;;;:::o;21895:419::-;;22099:2;22088:9;22084:18;22076:26;;22148:9;22142:4;22138:20;22134:1;22123:9;22119:17;22112:47;22176:131;22302:4;22176:131;:::i;:::-;22168:139;;22066:248;;;:::o;22320:419::-;;22524:2;22513:9;22509:18;22501:26;;22573:9;22567:4;22563:20;22559:1;22548:9;22544:17;22537:47;22601:131;22727:4;22601:131;:::i;:::-;22593:139;;22491:248;;;:::o;22745:419::-;;22949:2;22938:9;22934:18;22926:26;;22998:9;22992:4;22988:20;22984:1;22973:9;22969:17;22962:47;23026:131;23152:4;23026:131;:::i;:::-;23018:139;;22916:248;;;:::o;23170:419::-;;23374:2;23363:9;23359:18;23351:26;;23423:9;23417:4;23413:20;23409:1;23398:9;23394:17;23387:47;23451:131;23577:4;23451:131;:::i;:::-;23443:139;;23341:248;;;:::o;23595:419::-;;23799:2;23788:9;23784:18;23776:26;;23848:9;23842:4;23838:20;23834:1;23823:9;23819:17;23812:47;23876:131;24002:4;23876:131;:::i;:::-;23868:139;;23766:248;;;:::o;24020:419::-;;24224:2;24213:9;24209:18;24201:26;;24273:9;24267:4;24263:20;24259:1;24248:9;24244:17;24237:47;24301:131;24427:4;24301:131;:::i;:::-;24293:139;;24191:248;;;:::o;24445:419::-;;24649:2;24638:9;24634:18;24626:26;;24698:9;24692:4;24688:20;24684:1;24673:9;24669:17;24662:47;24726:131;24852:4;24726:131;:::i;:::-;24718:139;;24616:248;;;:::o;24870:419::-;;25074:2;25063:9;25059:18;25051:26;;25123:9;25117:4;25113:20;25109:1;25098:9;25094:17;25087:47;25151:131;25277:4;25151:131;:::i;:::-;25143:139;;25041:248;;;:::o;25295:419::-;;25499:2;25488:9;25484:18;25476:26;;25548:9;25542:4;25538:20;25534:1;25523:9;25519:17;25512:47;25576:131;25702:4;25576:131;:::i;:::-;25568:139;;25466:248;;;:::o;25720:419::-;;25924:2;25913:9;25909:18;25901:26;;25973:9;25967:4;25963:20;25959:1;25948:9;25944:17;25937:47;26001:131;26127:4;26001:131;:::i;:::-;25993:139;;25891:248;;;:::o;26145:419::-;;26349:2;26338:9;26334:18;26326:26;;26398:9;26392:4;26388:20;26384:1;26373:9;26369:17;26362:47;26426:131;26552:4;26426:131;:::i;:::-;26418:139;;26316:248;;;:::o;26570:419::-;;26774:2;26763:9;26759:18;26751:26;;26823:9;26817:4;26813:20;26809:1;26798:9;26794:17;26787:47;26851:131;26977:4;26851:131;:::i;:::-;26843:139;;26741:248;;;:::o;26995:419::-;;27199:2;27188:9;27184:18;27176:26;;27248:9;27242:4;27238:20;27234:1;27223:9;27219:17;27212:47;27276:131;27402:4;27276:131;:::i;:::-;27268:139;;27166:248;;;:::o;27420:419::-;;27624:2;27613:9;27609:18;27601:26;;27673:9;27667:4;27663:20;27659:1;27648:9;27644:17;27637:47;27701:131;27827:4;27701:131;:::i;:::-;27693:139;;27591:248;;;:::o;27845:419::-;;28049:2;28038:9;28034:18;28026:26;;28098:9;28092:4;28088:20;28084:1;28073:9;28069:17;28062:47;28126:131;28252:4;28126:131;:::i;:::-;28118:139;;28016:248;;;:::o;28270:222::-;;28401:2;28390:9;28386:18;28378:26;;28414:71;28482:1;28471:9;28467:17;28458:6;28414:71;:::i;:::-;28368:124;;;;:::o;28498:831::-;;28799:3;28788:9;28784:19;28776:27;;28813:71;28881:1;28870:9;28866:17;28857:6;28813:71;:::i;:::-;28894:80;28970:2;28959:9;28955:18;28946:6;28894:80;:::i;:::-;29021:9;29015:4;29011:20;29006:2;28995:9;28991:18;28984:48;29049:108;29152:4;29143:6;29049:108;:::i;:::-;29041:116;;29167:72;29235:2;29224:9;29220:18;29211:6;29167:72;:::i;:::-;29249:73;29317:3;29306:9;29302:19;29293:6;29249:73;:::i;:::-;28766:563;;;;;;;;:::o;29335:442::-;;29522:2;29511:9;29507:18;29499:26;;29535:71;29603:1;29592:9;29588:17;29579:6;29535:71;:::i;:::-;29616:72;29684:2;29673:9;29669:18;29660:6;29616:72;:::i;:::-;29698;29766:2;29755:9;29751:18;29742:6;29698:72;:::i;:::-;29489:288;;;;;;:::o;29783:214::-;;29910:2;29899:9;29895:18;29887:26;;29923:67;29987:1;29976:9;29972:17;29963:6;29923:67;:::i;:::-;29877:120;;;;:::o;30003:132::-;;30093:3;30085:11;;30123:4;30118:3;30114:14;30106:22;;30075:60;;;:::o;30141:114::-;;30242:5;30236:12;30226:22;;30215:40;;;:::o;30261:99::-;;30347:5;30341:12;30331:22;;30320:40;;;:::o;30366:113::-;;30468:4;30463:3;30459:14;30451:22;;30441:38;;;:::o;30485:184::-;;30618:6;30613:3;30606:19;30658:4;30653:3;30649:14;30634:29;;30596:73;;;;:::o;30675:147::-;;30813:3;30798:18;;30788:34;;;;:::o;30828:169::-;;30946:6;30941:3;30934:19;30986:4;30981:3;30977:14;30962:29;;30924:73;;;;:::o;31003:305::-;;31062:20;31080:1;31062:20;:::i;:::-;31057:25;;31096:20;31114:1;31096:20;:::i;:::-;31091:25;;31250:1;31182:66;31178:74;31175:1;31172:81;31169:2;;;31256:18;;:::i;:::-;31169:2;31300:1;31297;31293:9;31286:16;;31047:261;;;;:::o;31314:185::-;;31371:20;31389:1;31371:20;:::i;:::-;31366:25;;31405:20;31423:1;31405:20;:::i;:::-;31400:25;;31444:1;31434:2;;31449:18;;:::i;:::-;31434:2;31491:1;31488;31484:9;31479:14;;31356:143;;;;:::o;31505:348::-;;31568:20;31586:1;31568:20;:::i;:::-;31563:25;;31602:20;31620:1;31602:20;:::i;:::-;31597:25;;31790:1;31722:66;31718:74;31715:1;31712:81;31707:1;31700:9;31693:17;31689:105;31686:2;;;31797:18;;:::i;:::-;31686:2;31845:1;31842;31838:9;31827:20;;31553:300;;;;:::o;31859:191::-;;31919:20;31937:1;31919:20;:::i;:::-;31914:25;;31953:20;31971:1;31953:20;:::i;:::-;31948:25;;31992:1;31989;31986:8;31983:2;;;31997:18;;:::i;:::-;31983:2;32042:1;32039;32035:9;32027:17;;31904:146;;;;:::o;32056:96::-;;32122:24;32140:5;32122:24;:::i;:::-;32111:35;;32101:51;;;:::o;32158:90::-;;32235:5;32228:13;32221:21;32210:32;;32200:48;;;:::o;32254:126::-;;32331:42;32324:5;32320:54;32309:65;;32299:81;;;:::o;32386:77::-;;32452:5;32441:16;;32431:32;;;:::o;32469:86::-;;32544:4;32537:5;32533:16;32522:27;;32512:43;;;:::o;32561:176::-;;32669:62;32725:5;32669:62;:::i;:::-;32656:75;;32646:91;;;:::o;32743:138::-;;32851:24;32869:5;32851:24;:::i;:::-;32838:37;;32828:53;;;:::o;32887:121::-;;32978:24;32996:5;32978:24;:::i;:::-;32965:37;;32955:53;;;:::o;33014:307::-;33082:1;33092:113;33106:6;33103:1;33100:13;33092:113;;;33191:1;33186:3;33182:11;33176:18;33172:1;33167:3;33163:11;33156:39;33128:2;33125:1;33121:10;33116:15;;33092:113;;;33223:6;33220:1;33217:13;33214:2;;;33303:1;33294:6;33289:3;33285:16;33278:27;33214:2;33063:258;;;;:::o;33327:320::-;;33408:1;33402:4;33398:12;33388:22;;33455:1;33449:4;33445:12;33476:18;33466:2;;33532:4;33524:6;33520:17;33510:27;;33466:2;33594;33586:6;33583:14;33563:18;33560:38;33557:2;;;33613:18;;:::i;:::-;33557:2;33378:269;;;;:::o;33653:180::-;33701:77;33698:1;33691:88;33798:4;33795:1;33788:15;33822:4;33819:1;33812:15;33839:180;33887:77;33884:1;33877:88;33984:4;33981:1;33974:15;34008:4;34005:1;33998:15;34025:180;34073:77;34070:1;34063:88;34170:4;34167:1;34160:15;34194:4;34191:1;34184:15;34211:102;;34303:2;34299:7;34294:2;34287:5;34283:14;34279:28;34269:38;;34259:54;;;:::o;34319:122::-;34392:24;34410:5;34392:24;:::i;:::-;34385:5;34382:35;34372:2;;34431:1;34428;34421:12;34372:2;34362:79;:::o;34447:116::-;34517:21;34532:5;34517:21;:::i;:::-;34510:5;34507:32;34497:2;;34553:1;34550;34543:12;34497:2;34487:76;:::o;34569:122::-;34642:24;34660:5;34642:24;:::i;:::-;34635:5;34632:35;34622:2;;34681:1;34678;34671:12;34622:2;34612:79;:::o

Swarm Source

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