ETH Price: $3,307.34 (-3.04%)
Gas: 12 Gwei

Token

Quantum Wealth Network (QWN)
 

Overview

Max Total Supply

400,998.51223823 QWN

Holders

1,074

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 QWN

Value
$0.00
0xa3cd1cc2a15c4848643568136150ec8f4300eaeb
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:
QuantumWealthNetwork

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : QuantumWealthNetwork.sol
/*
        By Participating In 
       The Quantum Wealth Network 
     You Are Accelerating Your Wealth
With A Strong Network Of Beautiful Souls 

Telegram: https://t.me/+JsdS-pXyFXNlZTgx
Twitter: https://twitter.com/QuantumWN
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @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 {}
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

interface IWETH {
    function deposit() external payable;

    function withdraw(uint) external;
}

/// @title   QuantumWealthNetwork
/// @notice  Quantum Wealth Network
contract QuantumWealthNetwork is ERC20, Ownable {
    /// STATE VARIABLES ///

    /// @notice Address of UniswapV2Router
    IUniswapV2Router02 public immutable uniswapV2Router;
    /// @notice Address of QWN/ETH LP
    address public immutable uniswapV2Pair;
    /// @notice Burn address
    address public constant deadAddress = address(0xdead);
    /// @notice WETH address
    address public immutable WETH;
    /// @notice QWN treasury
    address public treasury;
    /// @notice Team wallet address
    address public teamWallet;

    bool private swapping;

    /// @notice Bool if trading is active
    bool public tradingActive = false;
    /// @notice Bool if swap is enabled
    bool public swapEnabled = false;
    /// @notice Bool if limits are in effect
    bool public limitsInEffect = true;

    /// @notice Current max wallet amount (If limits in effect)
    uint256 public maxWallet;
    /// @notice Current max transaction amount (If limits in effect)
    uint256 public maxTransactionAmount;
    /// @notice Current percent of supply to swap tokens at (i.e. 5 = 0.05%)
    uint256 public swapPercent;

    /// @notice Current buy side total fees
    uint256 public buyTotalFees;
    /// @notice Current buy side backing fee
    uint256 public buyBackingFee;
    /// @notice Current buy side liquidity fee
    uint256 public buyLiquidityFee;
    /// @notice Current buy side team fee
    uint256 public buyTeamFee;

    /// @notice Current sell side total fees
    uint256 public sellTotalFees;
    /// @notice Current sell side backing fee
    uint256 public sellBackingFee;
    /// @notice Current sell side liquidity fee
    uint256 public sellLiquidityFee;
    /// @notice Current sell side team fee
    uint256 public sellTeamFee;

    /// @notice Current tokens going for backing
    uint256 public tokensForBacking;
    /// @notice Current tokens going for liquidity
    uint256 public tokensForLiquidity;
    /// @notice Current tokens going for tean
    uint256 public tokensForTeam;

    /// MAPPINGS ///

    /// @dev Bool if address is excluded from fees
    mapping(address => bool) private _isExcludedFromFees;

    /// @notice Bool if address is excluded from max transaction amount
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    /// @notice Bool if address is AMM pair
    mapping(address => bool) public automatedMarketMakerPairs;

    /// EVENTS ///

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    /// CONSTRUCTOR ///

    /// @param _weth  Address of WETH
    constructor(address _weth) ERC20("Quantum Wealth Network", "QWN") {
        WETH = _weth;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uint256 startingSupply_ = 25000000000000;

        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyBackingFee = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyTeamFee = 2;

        uint256 _sellBackingFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 2;

        maxWallet = 250 * 1e9; // 1%
        maxTransactionAmount = 250 * 1e9; // 1%
        swapPercent = 25; // 0.25%

        buyBackingFee = _buyBackingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyBackingFee + buyLiquidityFee + buyTeamFee;

        sellBackingFee = _sellBackingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellBackingFee + sellLiquidityFee + sellTeamFee;

        teamWallet = owner(); // set as team 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(msg.sender, startingSupply_);
    }

    receive() external payable {}

    /// AMM PAIR ///

    /// @notice       Sets if address is AMM pair
    /// @param pair   Address of pair
    /// @param value  Bool if AMM pair
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    /// @dev Internal function to set `vlaue` of `pair`
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /// INTERNAL TRANSFER ///

    /// @dev Internal function to burn `amount` from `account`
    function _burnFrom(address account, uint256 amount) internal {
        uint256 decreasedAllowance_ = allowance(account, msg.sender) - amount;

        _approve(account, msg.sender, decreasedAllowance_);
        _burn(account, amount);
    }

    /// @dev Internal function to transfer - handles fee logic
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

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

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount();

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForBacking += (fees * sellBackingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForBacking += (fees * buyBackingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    /// INTERNAL FUNCTION ///

    /// @dev INTERNAL function to swap `tokenAmount` for ETH
    /// @dev Invoked in `swapBack()`
    function swapTokensForEth(uint256 tokenAmount) internal {
        // 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
        );
    }

    /// @dev INTERNAL function to add `tokenAmount` and `ethAmount` to LP
    /// @dev Invoked in `swapBack()`
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        // 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
            treasury,
            block.timestamp
        );
    }

    /// @dev INTERNAL function to transfer fees properly
    /// @dev Invoked in `_transfer()`
    function swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForBacking +
            tokensForTeam;
        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 - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForBacking = (ethBalance * tokensForBacking) /
            totalTokensToSwap -
            (tokensForLiquidity / 2);

        uint256 ethForTeam = (ethBalance * tokensForTeam) /
            totalTokensToSwap -
            (tokensForLiquidity / 2);

        uint256 ethForLiquidity = ethBalance - ethForBacking - ethForTeam;

        tokensForLiquidity = 0;
        tokensForBacking = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

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

        uint256 _balance = address(this).balance;
        IWETH(WETH).deposit{value: _balance}();
        IERC20(WETH).transfer(treasury, _balance);
    }

    /// VIEW FUNCTION ///

    /// @notice Returns decimals for QWN (9)
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /// @notice Returns if address is excluded from fees
    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    /// @notice Returns at what percent of supply to swap tokens at
    function swapTokensAtAmount() public view returns (uint256 amount_) {
        amount_ = (totalSupply() * swapPercent) / 10000;
    }

    /// TREASURY FUNCTION ///

    /// @notice         Mint QWN (Only by treasury)
    /// @param account  Address to mint QWN to
    /// @param amount   Amount to mint
    function mint(address account, uint256 amount) external {
        require(msg.sender == treasury, "msg.sender not treasury");
        _mint(account, amount);
    }

    /// USER FUNCTIONS ///

    /// @notice         Burn QWN
    /// @param account  Address to burn QWN from
    /// @param amount   Amount to QWN to burn
    function burnFrom(address account, uint256 amount) external {
        _burnFrom(account, amount);
    }

    /// @notice         Burn QWN
    /// @param amount   Amount to QWN to burn
    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    /// OWNER FUNCTIONS ///

    /// @notice Set address of treasury
    function setTreasury(address _treasury) external onlyOwner {
        treasury = _treasury;
        excludeFromFees(_treasury, true);
        excludeFromMaxTransaction(_treasury, true);
    }

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

    /// @notice Update percent of supply to swap tokens at
    function updateSwapTokensAtPercent(
        uint256 newPercent
    ) external onlyOwner returns (bool) {
        require(
            newPercent >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(
            newPercent <= 50,
            "Swap amount cannot be higher than 0.50% total supply."
        );
        swapPercent = newPercent;
        return true;
    }

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

    /// @notice Update buy side fees
    function updateBuyFees(
        uint256 _backingFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyBackingFee = _backingFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyBackingFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    /// @notice Update sell side fees
    function updateSellFees(
        uint256 _backingFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellBackingFee = _backingFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellBackingFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

    /// @notice Set if an address is excluded from fees
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /// @notice Set if an address is excluded from max transaction
    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    /// @notice Update team wallet
    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
        excludeFromFees(newWallet, true);
        excludeFromMaxTransaction(newWallet, true);
    }

    /// @notice Remove limits in palce
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    /// @notice Withdraw stuck QWN from contract
    function withdrawStuckQWN() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    /// @notice Withdraw stuck token from contract
    function withdrawStuckToken(
        address _token,
        address _to
    ) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    /// @notice Withdraw stuck ETH from contract
    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{value: address(this).balance}("");
        require(success);
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBackingFee","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":"buyTeamFee","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBackingFee","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":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBacking","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":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_backingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_backingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercent","type":"uint256"}],"name":"updateSwapTokensAtPercent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckQWN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e06040526000600760156101000a81548160ff0219169083151502179055506000600760166101000a81548160ff0219169083151502179055506001600760176101000a81548160ff0219169083151502179055503480156200006257600080fd5b50604051620067b4380380620067b4833981810160405281019062000088919062000add565b6040518060400160405280601681526020017f5175616e74756d205765616c7468204e6574776f726b000000000000000000008152506040518060400160405280600381526020017f51574e0000000000000000000000000000000000000000000000000000000000815250816003908162000105919062000d89565b50806004908162000117919062000d89565b5050506200013a6200012e6200053460201b60201c565b6200053c60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060006516bcc41e900090508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000212573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000238919062000add565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c6919062000add565b6040518363ffffffff1660e01b8152600401620002e592919062000e81565b6020604051808303816000875af115801562000305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032b919062000add565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037360a05160016200060260201b60201c565b600060029050600060019050600060029050600060029050600060019050600060029050643a35294400600881905550643a352944006009819055506019600a8190555085600c8190555084600d8190555083600e81905550600e54600d54600c54620003e1919062000edd565b620003ed919062000edd565b600b819055508260108190555081601181905550806012819055506012546011546010546200041d919062000edd565b62000429919062000edd565b600f819055506200043f620006a360201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004a162000493620006a360201b60201c565b6001620006cd60201b60201c565b620004b4306001620006cd60201b60201c565b620004c961dead6001620006cd60201b60201c565b620004eb620004dd620006a360201b60201c565b60016200080760201b60201c565b620004fe3060016200080760201b60201c565b6200051361dead60016200080760201b60201c565b620005253388620008f160201b60201c565b50505050505050505062001075565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006dd6200053460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000703620006a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007539062000f79565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007fb919062000fb8565b60405180910390a25050565b620008176200053460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200083d620006a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200088d9062000f79565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000963576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200095a9062001025565b60405180910390fd5b620009776000838362000a6960201b60201c565b80600260008282546200098b919062000edd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009e2919062000edd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a49919062001058565b60405180910390a362000a656000838362000a6e60201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000aa58262000a78565b9050919050565b62000ab78162000a98565b811462000ac357600080fd5b50565b60008151905062000ad78162000aac565b92915050565b60006020828403121562000af65762000af562000a73565b5b600062000b068482850162000ac6565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b9157607f821691505b60208210810362000ba75762000ba662000b49565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bd2565b62000c1d868362000bd2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c6a62000c6462000c5e8462000c35565b62000c3f565b62000c35565b9050919050565b6000819050919050565b62000c868362000c49565b62000c9e62000c958262000c71565b84845462000bdf565b825550505050565b600090565b62000cb562000ca6565b62000cc281848462000c7b565b505050565b5b8181101562000cea5762000cde60008262000cab565b60018101905062000cc8565b5050565b601f82111562000d395762000d038162000bad565b62000d0e8462000bc2565b8101602085101562000d1e578190505b62000d3662000d2d8562000bc2565b83018262000cc7565b50505b505050565b600082821c905092915050565b600062000d5e6000198460080262000d3e565b1980831691505092915050565b600062000d79838362000d4b565b9150826002028217905092915050565b62000d948262000b0f565b67ffffffffffffffff81111562000db05762000daf62000b1a565b5b62000dbc825462000b78565b62000dc982828562000cee565b600060209050601f83116001811462000e01576000841562000dec578287015190505b62000df8858262000d6b565b86555062000e68565b601f19841662000e118662000bad565b60005b8281101562000e3b5784890151825560018201915060208501945060208101905062000e14565b8683101562000e5b578489015162000e57601f89168262000d4b565b8355505b6001600288020188555050505b505050505050565b62000e7b8162000a98565b82525050565b600060408201905062000e98600083018562000e70565b62000ea7602083018462000e70565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000eea8262000c35565b915062000ef78362000c35565b925082820190508082111562000f125762000f1162000eae565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f6160208362000f18565b915062000f6e8262000f29565b602082019050919050565b6000602082019050818103600083015262000f948162000f52565b9050919050565b60008115159050919050565b62000fb28162000f9b565b82525050565b600060208201905062000fcf600083018462000fa7565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200100d601f8362000f18565b91506200101a8262000fd5565b602082019050919050565b60006020820190508181036000830152620010408162000ffe565b9050919050565b620010528162000c35565b82525050565b60006020820190506200106f600083018462001047565b92915050565b60805160a05160c0516156d7620010dd60003960008181611db401528181613c190152613c9a0152600081816111210152611c09015260008181610e8f01528181613e1001528181613ef101528181613f1801528181613fb40152613fdb01526156d76000f3fe6080604052600436106103855760003560e01c80637f6bf20a116101d1578063bc205ad311610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d13578063f637434214610d3c578063f8b45b0514610d67578063fde83a3414610d925761038c565b8063dd62ed3e14610c57578063e2f4560514610c94578063f0f4426014610cbf578063f11a24d314610ce85761038c565b8063c17b5b8c116100dc578063c17b5b8c14610bad578063c8c8ebe414610bd6578063d729715f14610c01578063d85ba06314610c2c5761038c565b8063bc205ad314610b30578063be1512f314610b59578063c024666814610b845761038c565b80639c2e4ac61161016f578063ad5c464811610149578063ad5c464814610a60578063b62496f514610a8b578063ba22abc314610ac8578063bbc0c74214610b055761038c565b80639c2e4ac6146109bb578063a457c2d7146109e6578063a9059cbb14610a235761038c565b80638da5cb5b116101ab5780638da5cb5b14610913578063924de9b71461093e57806395d89b41146109675780639a7a23d6146109925761038c565b80637f6bf20a146108a85780638095d564146108d35780638a8c523c146108fc5761038c565b80634ac1126a116102b65780636f33037f116102545780637571336a116102235780637571336a1461080457806379cc67901461082d5780637ca8448a146108565780637cb332bb1461087f5761038c565b80636f33037f1461075a57806370a0823114610785578063715018a6146107c2578063751039fc146107d95761038c565b8063599270441161029057806359927044146106ae57806361d027b3146106d95780636a486a8e146107045780636ddd17131461072f5761038c565b80634ac1126a1461062f5780634d1ea1041461065a5780634fbee193146106715761038c565b806327c8f8351161032357806340c10f19116102fd57806340c10f191461058757806342966c68146105b057806349bd5a5e146105d95780634a62bb65146106045761038c565b806327c8f835146104f4578063313ce5671461051f578063395093511461054a5761038c565b80631694505e1161035f5780631694505e1461043657806318160ddd146104615780631a8145bb1461048c57806323b872dd146104b75761038c565b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103f95761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610dbd565b6040516103b3919061413a565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de91906141f5565b610e4f565b6040516103f09190614250565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b919061426b565b610e6d565b60405161042d9190614250565b60405180910390f35b34801561044257600080fd5b5061044b610e8d565b60405161045891906142f7565b60405180910390f35b34801561046d57600080fd5b50610476610eb1565b6040516104839190614321565b60405180910390f35b34801561049857600080fd5b506104a1610ebb565b6040516104ae9190614321565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d9919061433c565b610ec1565b6040516104eb9190614250565b60405180910390f35b34801561050057600080fd5b50610509610fb9565b604051610516919061439e565b60405180910390f35b34801561052b57600080fd5b50610534610fbf565b60405161054191906143d5565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c91906141f5565b610fc8565b60405161057e9190614250565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a991906141f5565b611074565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906143f0565b611112565b005b3480156105e557600080fd5b506105ee61111f565b6040516105fb919061439e565b60405180910390f35b34801561061057600080fd5b50610619611143565b6040516106269190614250565b60405180910390f35b34801561063b57600080fd5b50610644611156565b6040516106519190614321565b60405180910390f35b34801561066657600080fd5b5061066f61115c565b005b34801561067d57600080fd5b506106986004803603810190610693919061426b565b61131f565b6040516106a59190614250565b60405180910390f35b3480156106ba57600080fd5b506106c3611375565b6040516106d0919061439e565b60405180910390f35b3480156106e557600080fd5b506106ee61139b565b6040516106fb919061439e565b60405180910390f35b34801561071057600080fd5b506107196113c1565b6040516107269190614321565b60405180910390f35b34801561073b57600080fd5b506107446113c7565b6040516107519190614250565b60405180910390f35b34801561076657600080fd5b5061076f6113da565b60405161077c9190614321565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a7919061426b565b6113e0565b6040516107b99190614321565b60405180910390f35b3480156107ce57600080fd5b506107d7611428565b005b3480156107e557600080fd5b506107ee6114b0565b6040516107fb9190614250565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190614449565b611550565b005b34801561083957600080fd5b50610854600480360381019061084f91906141f5565b611627565b005b34801561086257600080fd5b5061087d6004803603810190610878919061426b565b611635565b005b34801561088b57600080fd5b506108a660048036038101906108a1919061426b565b61172b565b005b3480156108b457600080fd5b506108bd61187d565b6040516108ca9190614321565b60405180910390f35b3480156108df57600080fd5b506108fa60048036038101906108f59190614489565b611883565b005b34801561090857600080fd5b50610911611982565b005b34801561091f57600080fd5b50610928611a36565b604051610935919061439e565b60405180910390f35b34801561094a57600080fd5b50610965600480360381019061096091906144dc565b611a60565b005b34801561097357600080fd5b5061097c611af9565b604051610989919061413a565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b49190614449565b611b8b565b005b3480156109c757600080fd5b506109d0611ca3565b6040516109dd9190614321565b60405180910390f35b3480156109f257600080fd5b50610a0d6004803603810190610a0891906141f5565b611ca9565b604051610a1a9190614250565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a4591906141f5565b611d94565b604051610a579190614250565b60405180910390f35b348015610a6c57600080fd5b50610a75611db2565b604051610a82919061439e565b60405180910390f35b348015610a9757600080fd5b50610ab26004803603810190610aad919061426b565b611dd6565b604051610abf9190614250565b60405180910390f35b348015610ad457600080fd5b50610aef6004803603810190610aea91906143f0565b611df6565b604051610afc9190614250565b60405180910390f35b348015610b1157600080fd5b50610b1a611f0c565b604051610b279190614250565b60405180910390f35b348015610b3c57600080fd5b50610b576004803603810190610b529190614509565b611f1f565b005b348015610b6557600080fd5b50610b6e61210c565b604051610b7b9190614321565b60405180910390f35b348015610b9057600080fd5b50610bab6004803603810190610ba69190614449565b612112565b005b348015610bb957600080fd5b50610bd46004803603810190610bcf9190614489565b612237565b005b348015610be257600080fd5b50610beb612336565b604051610bf89190614321565b60405180910390f35b348015610c0d57600080fd5b50610c1661233c565b604051610c239190614321565b60405180910390f35b348015610c3857600080fd5b50610c41612342565b604051610c4e9190614321565b60405180910390f35b348015610c6357600080fd5b50610c7e6004803603810190610c799190614509565b612348565b604051610c8b9190614321565b60405180910390f35b348015610ca057600080fd5b50610ca96123cf565b604051610cb69190614321565b60405180910390f35b348015610ccb57600080fd5b50610ce66004803603810190610ce1919061426b565b6123f8565b005b348015610cf457600080fd5b50610cfd6124ce565b604051610d0a9190614321565b60405180910390f35b348015610d1f57600080fd5b50610d3a6004803603810190610d35919061426b565b6124d4565b005b348015610d4857600080fd5b50610d516125cb565b604051610d5e9190614321565b60405180910390f35b348015610d7357600080fd5b50610d7c6125d1565b604051610d899190614321565b60405180910390f35b348015610d9e57600080fd5b50610da76125d7565b604051610db49190614321565b60405180910390f35b606060038054610dcc90614578565b80601f0160208091040260200160405190810160405280929190818152602001828054610df890614578565b8015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b5050505050905090565b6000610e63610e5c6125dd565b84846125e5565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60145481565b6000610ece8484846127ae565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f196125dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f909061461b565b60405180910390fd5b610fad85610fa56125dd565b8584036125e5565b60019150509392505050565b61dead81565b60006009905090565b600061106a610fd56125dd565b848460016000610fe36125dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611065919061466a565b6125e5565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb906146ea565b60405180910390fd5b61110e8282613266565b5050565b61111c33826133c5565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600760179054906101000a900460ff1681565b600a5481565b6111646125dd565b73ffffffffffffffffffffffffffffffffffffffff16611182611a36565b73ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614756565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611213919061439e565b602060405180830381865afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611254919061478b565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016112919291906147b8565b6020604051808303816000875af11580156112b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d491906147f6565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561131b573d6000803e3d6000fd5b5050565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b600760169054906101000a900460ff1681565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114306125dd565b73ffffffffffffffffffffffffffffffffffffffff1661144e611a36565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90614756565b60405180910390fd5b6114ae600061359b565b565b60006114ba6125dd565b73ffffffffffffffffffffffffffffffffffffffff166114d8611a36565b73ffffffffffffffffffffffffffffffffffffffff161461152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590614756565b60405180910390fd5b6000600760176101000a81548160ff0219169083151502179055506001905090565b6115586125dd565b73ffffffffffffffffffffffffffffffffffffffff16611576611a36565b73ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390614756565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6116318282613661565b5050565b61163d6125dd565b73ffffffffffffffffffffffffffffffffffffffff1661165b611a36565b73ffffffffffffffffffffffffffffffffffffffff16146116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890614756565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff16476040516116d790614854565b60006040518083038185875af1925050503d8060008114611714576040519150601f19603f3d011682016040523d82523d6000602084013e611719565b606091505b505090508061172757600080fd5b5050565b6117336125dd565b73ffffffffffffffffffffffffffffffffffffffff16611751611a36565b73ffffffffffffffffffffffffffffffffffffffff16146117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90614756565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061186f816001612112565b61187a816001611550565b50565b60135481565b61188b6125dd565b73ffffffffffffffffffffffffffffffffffffffff166118a9611a36565b73ffffffffffffffffffffffffffffffffffffffff16146118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690614756565b60405180910390fd5b82600c8190555081600d8190555080600e81905550600e54600d54600c54611927919061466a565b611931919061466a565b600b819055506005600b54111561197d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611974906148b5565b60405180910390fd5b505050565b61198a6125dd565b73ffffffffffffffffffffffffffffffffffffffff166119a8611a36565b73ffffffffffffffffffffffffffffffffffffffff16146119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590614756565b60405180910390fd5b6001600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a686125dd565b73ffffffffffffffffffffffffffffffffffffffff16611a86611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390614756565b60405180910390fd5b80600760166101000a81548160ff02191690831515021790555050565b606060048054611b0890614578565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3490614578565b8015611b815780601f10611b5657610100808354040283529160200191611b81565b820191906000526020600020905b815481529060010190602001808311611b6457829003601f168201915b5050505050905090565b611b936125dd565b73ffffffffffffffffffffffffffffffffffffffff16611bb1611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90614756565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90614947565b60405180910390fd5b611c9f8282613694565b5050565b600e5481565b60008060016000611cb86125dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c906149d9565b60405180910390fd5b611d89611d806125dd565b858584036125e5565b600191505092915050565b6000611da8611da16125dd565b84846127ae565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60186020528060005260406000206000915054906101000a900460ff1681565b6000611e006125dd565b73ffffffffffffffffffffffffffffffffffffffff16611e1e611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90614756565b60405180910390fd5b6001821015611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90614a6b565b60405180910390fd5b6032821115611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390614afd565b60405180910390fd5b81600a8190555060019050919050565b600760159054906101000a900460ff1681565b611f276125dd565b73ffffffffffffffffffffffffffffffffffffffff16611f45611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290614756565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190614b69565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612045919061439e565b602060405180830381865afa158015612062573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612086919061478b565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016120c39291906147b8565b6020604051808303816000875af11580156120e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061210691906147f6565b50505050565b600c5481565b61211a6125dd565b73ffffffffffffffffffffffffffffffffffffffff16612138611a36565b73ffffffffffffffffffffffffffffffffffffffff161461218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590614756565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161222b9190614250565b60405180910390a25050565b61223f6125dd565b73ffffffffffffffffffffffffffffffffffffffff1661225d611a36565b73ffffffffffffffffffffffffffffffffffffffff16146122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa90614756565b60405180910390fd5b8260108190555081601181905550806012819055506012546011546010546122db919061466a565b6122e5919061466a565b600f819055506005600f541115612331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232890614bd5565b60405180910390fd5b505050565b60095481565b60125481565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612710600a546123df610eb1565b6123e99190614bf5565b6123f39190614c66565b905090565b6124006125dd565b73ffffffffffffffffffffffffffffffffffffffff1661241e611a36565b73ffffffffffffffffffffffffffffffffffffffff1614612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90614756565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506124c0816001612112565b6124cb816001611550565b50565b600d5481565b6124dc6125dd565b73ffffffffffffffffffffffffffffffffffffffff166124fa611a36565b73ffffffffffffffffffffffffffffffffffffffff1614612550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254790614756565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b690614d09565b60405180910390fd5b6125c88161359b565b50565b60115481565b60085481565b60155481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264b90614d9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ba90614e2d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127a19190614321565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361281d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281490614ebf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361288c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288390614f51565b60405180910390fd5b600081036128a5576128a083836000613735565b613261565b600760179054906101000a900460ff1615612da0576128c2611a36565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129305750612900611a36565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129695750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129a3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129bc5750600760149054906101000a900460ff16155b15612d9f57600760159054906101000a900460ff16612ab657601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a765750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aac90614fbd565b60405180910390fd5b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b595750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c0057600954811115612ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9a9061504f565b60405180910390fd5b600854612baf836113e0565b82612bba919061466a565b1115612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf2906150bb565b60405180910390fd5b612d9e565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ca35750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cf257600954811115612ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce49061514d565b60405180910390fd5b612d9d565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d9c57600854612d4f836113e0565b82612d5a919061466a565b1115612d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d92906150bb565b60405180910390fd5b5b5b5b5b5b6000612dab306113e0565b90506000612db76123cf565b8210159050808015612dd55750600760169054906101000a900460ff165b8015612dee5750600760149054906101000a900460ff16155b8015612e445750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e9a5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ef05750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f34576001600760146101000a81548160ff021916908315150217905550612f186139b4565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fea5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ff457600090505b6000811561325157601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305757506000600f54115b15613116576064600f548661306c9190614bf5565b6130769190614c66565b9050600f54601154826130899190614bf5565b6130939190614c66565b601460008282546130a4919061466a565b92505081905550600f54601254826130bc9190614bf5565b6130c69190614c66565b601560008282546130d7919061466a565b92505081905550600f54601054826130ef9190614bf5565b6130f99190614c66565b6013600082825461310a919061466a565b9250508190555061322d565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561317157506000600b54115b1561322c576064600b54866131869190614bf5565b6131909190614c66565b9050600b54600d54826131a39190614bf5565b6131ad9190614c66565b601460008282546131be919061466a565b92505081905550600b54600e54826131d69190614bf5565b6131e09190614c66565b601560008282546131f1919061466a565b92505081905550600b54600c54826132099190614bf5565b6132139190614c66565b60136000828254613224919061466a565b925050819055505b5b600081111561324257613241873083613735565b5b808561324e919061516d565b94505b61325c878787613735565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cc906151ed565b60405180910390fd5b6132e160008383613d67565b80600260008282546132f3919061466a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613348919061466a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516133ad9190614321565b60405180910390a36133c160008383613d6c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b9061527f565b60405180910390fd5b61344082600083613d67565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156134c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bd90615311565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461351d919061516d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135829190614321565b60405180910390a361359683600084613d6c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008161366e8433612348565b613678919061516d565b90506136858333836125e5565b61368f83836133c5565b505050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036137a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379b90614ebf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380a90614f51565b60405180910390fd5b61381e838383613d67565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389b906153a3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613937919061466a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161399b9190614321565b60405180910390a36139ae848484613d6c565b50505050565b60006139bf306113e0565b905060006015546013546014546139d6919061466a565b6139e0919061466a565b90506000808314806139f25750600082145b156139ff57505050613d65565b6014613a096123cf565b613a139190614bf5565b831115613a31576014613a246123cf565b613a2e9190614bf5565b92505b600060028360145486613a449190614bf5565b613a4e9190614c66565b613a589190614c66565b905060008185613a68919061516d565b90506000479050613a7882613d71565b60008147613a86919061516d565b905060006002601454613a999190614c66565b8760135484613aa89190614bf5565b613ab29190614c66565b613abc919061516d565b905060006002601454613acf9190614c66565b8860155485613ade9190614bf5565b613ae89190614c66565b613af2919061516d565b90506000818385613b03919061516d565b613b0d919061516d565b9050600060148190555060006013819055506000601581905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613b6d90614854565b60006040518083038185875af1925050503d8060008114613baa576040519150601f19603f3d011682016040523d82523d6000602084013e613baf565b606091505b505080985050600087118015613bc55750600081115b15613c1257613bd48782613fae565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601454604051613c09939291906153c3565b60405180910390a15b60004790507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015613c7f57600080fd5b505af1158015613c93573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401613d159291906147b8565b6020604051808303816000875af1158015613d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d5891906147f6565b5050505050505050505050505b565b505050565b505050565b6000600267ffffffffffffffff811115613d8e57613d8d6153fa565b5b604051908082528060200260200182016040528015613dbc5781602001602082028036833780820191505090505b5090503081600081518110613dd457613dd3615429565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e9d919061546d565b81600181518110613eb157613eb0615429565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f16307f0000000000000000000000000000000000000000000000000000000000000000846125e5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f78959493929190615593565b600060405180830381600087803b158015613f9257600080fd5b505af1158015613fa6573d6000803e3d6000fd5b505050505050565b613fd9307f0000000000000000000000000000000000000000000000000000000000000000846125e5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401614060969594939291906155ed565b60606040518083038185885af115801561407e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140a3919061564e565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156140e45780820151818401526020810190506140c9565b60008484015250505050565b6000601f19601f8301169050919050565b600061410c826140aa565b61411681856140b5565b93506141268185602086016140c6565b61412f816140f0565b840191505092915050565b600060208201905081810360008301526141548184614101565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061418c82614161565b9050919050565b61419c81614181565b81146141a757600080fd5b50565b6000813590506141b981614193565b92915050565b6000819050919050565b6141d2816141bf565b81146141dd57600080fd5b50565b6000813590506141ef816141c9565b92915050565b6000806040838503121561420c5761420b61415c565b5b600061421a858286016141aa565b925050602061422b858286016141e0565b9150509250929050565b60008115159050919050565b61424a81614235565b82525050565b60006020820190506142656000830184614241565b92915050565b6000602082840312156142815761428061415c565b5b600061428f848285016141aa565b91505092915050565b6000819050919050565b60006142bd6142b86142b384614161565b614298565b614161565b9050919050565b60006142cf826142a2565b9050919050565b60006142e1826142c4565b9050919050565b6142f1816142d6565b82525050565b600060208201905061430c60008301846142e8565b92915050565b61431b816141bf565b82525050565b60006020820190506143366000830184614312565b92915050565b6000806000606084860312156143555761435461415c565b5b6000614363868287016141aa565b9350506020614374868287016141aa565b9250506040614385868287016141e0565b9150509250925092565b61439881614181565b82525050565b60006020820190506143b3600083018461438f565b92915050565b600060ff82169050919050565b6143cf816143b9565b82525050565b60006020820190506143ea60008301846143c6565b92915050565b6000602082840312156144065761440561415c565b5b6000614414848285016141e0565b91505092915050565b61442681614235565b811461443157600080fd5b50565b6000813590506144438161441d565b92915050565b600080604083850312156144605761445f61415c565b5b600061446e858286016141aa565b925050602061447f85828601614434565b9150509250929050565b6000806000606084860312156144a2576144a161415c565b5b60006144b0868287016141e0565b93505060206144c1868287016141e0565b92505060406144d2868287016141e0565b9150509250925092565b6000602082840312156144f2576144f161415c565b5b600061450084828501614434565b91505092915050565b600080604083850312156145205761451f61415c565b5b600061452e858286016141aa565b925050602061453f858286016141aa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061459057607f821691505b6020821081036145a3576145a2614549565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006146056028836140b5565b9150614610826145a9565b604082019050919050565b60006020820190508181036000830152614634816145f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614675826141bf565b9150614680836141bf565b92508282019050808211156146985761469761463b565b5b92915050565b7f6d73672e73656e646572206e6f74207472656173757279000000000000000000600082015250565b60006146d46017836140b5565b91506146df8261469e565b602082019050919050565b60006020820190508181036000830152614703816146c7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147406020836140b5565b915061474b8261470a565b602082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b600081519050614785816141c9565b92915050565b6000602082840312156147a1576147a061415c565b5b60006147af84828501614776565b91505092915050565b60006040820190506147cd600083018561438f565b6147da6020830184614312565b9392505050565b6000815190506147f08161441d565b92915050565b60006020828403121561480c5761480b61415c565b5b600061481a848285016147e1565b91505092915050565b600081905092915050565b50565b600061483e600083614823565b91506148498261482e565b600082019050919050565b600061485f82614831565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e00000000000000000000600082015250565b600061489f6016836140b5565b91506148aa82614869565b602082019050919050565b600060208201905081810360008301526148ce81614892565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006149316039836140b5565b915061493c826148d5565b604082019050919050565b6000602082019050818103600083015261496081614924565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006149c36025836140b5565b91506149ce82614967565b604082019050919050565b600060208201905081810360008301526149f2816149b6565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614a556034836140b5565b9150614a60826149f9565b604082019050919050565b60006020820190508181036000830152614a8481614a48565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e35302520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614ae76035836140b5565b9150614af282614a8b565b604082019050919050565b60006020820190508181036000830152614b1681614ada565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000614b53601a836140b5565b9150614b5e82614b1d565b602082019050919050565b60006020820190508181036000830152614b8281614b46565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e000000000000000000600082015250565b6000614bbf6017836140b5565b9150614bca82614b89565b602082019050919050565b60006020820190508181036000830152614bee81614bb2565b9050919050565b6000614c00826141bf565b9150614c0b836141bf565b9250828202614c19816141bf565b91508282048414831517614c3057614c2f61463b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c71826141bf565b9150614c7c836141bf565b925082614c8c57614c8b614c37565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cf36026836140b5565b9150614cfe82614c97565b604082019050919050565b60006020820190508181036000830152614d2281614ce6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d856024836140b5565b9150614d9082614d29565b604082019050919050565b60006020820190508181036000830152614db481614d78565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e176022836140b5565b9150614e2282614dbb565b604082019050919050565b60006020820190508181036000830152614e4681614e0a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ea96025836140b5565b9150614eb482614e4d565b604082019050919050565b60006020820190508181036000830152614ed881614e9c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f3b6023836140b5565b9150614f4682614edf565b604082019050919050565b60006020820190508181036000830152614f6a81614f2e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614fa76016836140b5565b9150614fb282614f71565b602082019050919050565b60006020820190508181036000830152614fd681614f9a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006150396035836140b5565b915061504482614fdd565b604082019050919050565b600060208201905081810360008301526150688161502c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006150a56013836140b5565b91506150b08261506f565b602082019050919050565b600060208201905081810360008301526150d481615098565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006151376036836140b5565b9150615142826150db565b604082019050919050565b600060208201905081810360008301526151668161512a565b9050919050565b6000615178826141bf565b9150615183836141bf565b925082820390508181111561519b5761519a61463b565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006151d7601f836140b5565b91506151e2826151a1565b602082019050919050565b60006020820190508181036000830152615206816151ca565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006152696021836140b5565b91506152748261520d565b604082019050919050565b600060208201905081810360008301526152988161525c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006152fb6022836140b5565b91506153068261529f565b604082019050919050565b6000602082019050818103600083015261532a816152ee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061538d6026836140b5565b915061539882615331565b604082019050919050565b600060208201905081810360008301526153bc81615380565b9050919050565b60006060820190506153d86000830186614312565b6153e56020830185614312565b6153f26040830184614312565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061546781614193565b92915050565b6000602082840312156154835761548261415c565b5b600061549184828501615458565b91505092915050565b6000819050919050565b60006154bf6154ba6154b58461549a565b614298565b6141bf565b9050919050565b6154cf816154a4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61550a81614181565b82525050565b600061551c8383615501565b60208301905092915050565b6000602082019050919050565b6000615540826154d5565b61554a81856154e0565b9350615555836154f1565b8060005b8381101561558657815161556d8882615510565b975061557883615528565b925050600181019050615559565b5085935050505092915050565b600060a0820190506155a86000830188614312565b6155b560208301876154c6565b81810360408301526155c78186615535565b90506155d6606083018561438f565b6155e36080830184614312565b9695505050505050565b600060c082019050615602600083018961438f565b61560f6020830188614312565b61561c60408301876154c6565b61562960608301866154c6565b615636608083018561438f565b61564360a0830184614312565b979650505050505050565b6000806000606084860312156156675761566661415c565b5b600061567586828701614776565b935050602061568686828701614776565b925050604061569786828701614776565b915050925092509256fea264697066735822122025142402ec7cbe31e0eda531246dd321d7439bb4390ebe29d77733d0b9ec55b964736f6c63430008130033000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

Deployed Bytecode

0x6080604052600436106103855760003560e01c80637f6bf20a116101d1578063bc205ad311610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d13578063f637434214610d3c578063f8b45b0514610d67578063fde83a3414610d925761038c565b8063dd62ed3e14610c57578063e2f4560514610c94578063f0f4426014610cbf578063f11a24d314610ce85761038c565b8063c17b5b8c116100dc578063c17b5b8c14610bad578063c8c8ebe414610bd6578063d729715f14610c01578063d85ba06314610c2c5761038c565b8063bc205ad314610b30578063be1512f314610b59578063c024666814610b845761038c565b80639c2e4ac61161016f578063ad5c464811610149578063ad5c464814610a60578063b62496f514610a8b578063ba22abc314610ac8578063bbc0c74214610b055761038c565b80639c2e4ac6146109bb578063a457c2d7146109e6578063a9059cbb14610a235761038c565b80638da5cb5b116101ab5780638da5cb5b14610913578063924de9b71461093e57806395d89b41146109675780639a7a23d6146109925761038c565b80637f6bf20a146108a85780638095d564146108d35780638a8c523c146108fc5761038c565b80634ac1126a116102b65780636f33037f116102545780637571336a116102235780637571336a1461080457806379cc67901461082d5780637ca8448a146108565780637cb332bb1461087f5761038c565b80636f33037f1461075a57806370a0823114610785578063715018a6146107c2578063751039fc146107d95761038c565b8063599270441161029057806359927044146106ae57806361d027b3146106d95780636a486a8e146107045780636ddd17131461072f5761038c565b80634ac1126a1461062f5780634d1ea1041461065a5780634fbee193146106715761038c565b806327c8f8351161032357806340c10f19116102fd57806340c10f191461058757806342966c68146105b057806349bd5a5e146105d95780634a62bb65146106045761038c565b806327c8f835146104f4578063313ce5671461051f578063395093511461054a5761038c565b80631694505e1161035f5780631694505e1461043657806318160ddd146104615780631a8145bb1461048c57806323b872dd146104b75761038c565b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103f95761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610dbd565b6040516103b3919061413a565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de91906141f5565b610e4f565b6040516103f09190614250565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b919061426b565b610e6d565b60405161042d9190614250565b60405180910390f35b34801561044257600080fd5b5061044b610e8d565b60405161045891906142f7565b60405180910390f35b34801561046d57600080fd5b50610476610eb1565b6040516104839190614321565b60405180910390f35b34801561049857600080fd5b506104a1610ebb565b6040516104ae9190614321565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d9919061433c565b610ec1565b6040516104eb9190614250565b60405180910390f35b34801561050057600080fd5b50610509610fb9565b604051610516919061439e565b60405180910390f35b34801561052b57600080fd5b50610534610fbf565b60405161054191906143d5565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c91906141f5565b610fc8565b60405161057e9190614250565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a991906141f5565b611074565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906143f0565b611112565b005b3480156105e557600080fd5b506105ee61111f565b6040516105fb919061439e565b60405180910390f35b34801561061057600080fd5b50610619611143565b6040516106269190614250565b60405180910390f35b34801561063b57600080fd5b50610644611156565b6040516106519190614321565b60405180910390f35b34801561066657600080fd5b5061066f61115c565b005b34801561067d57600080fd5b506106986004803603810190610693919061426b565b61131f565b6040516106a59190614250565b60405180910390f35b3480156106ba57600080fd5b506106c3611375565b6040516106d0919061439e565b60405180910390f35b3480156106e557600080fd5b506106ee61139b565b6040516106fb919061439e565b60405180910390f35b34801561071057600080fd5b506107196113c1565b6040516107269190614321565b60405180910390f35b34801561073b57600080fd5b506107446113c7565b6040516107519190614250565b60405180910390f35b34801561076657600080fd5b5061076f6113da565b60405161077c9190614321565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a7919061426b565b6113e0565b6040516107b99190614321565b60405180910390f35b3480156107ce57600080fd5b506107d7611428565b005b3480156107e557600080fd5b506107ee6114b0565b6040516107fb9190614250565b60405180910390f35b34801561081057600080fd5b5061082b60048036038101906108269190614449565b611550565b005b34801561083957600080fd5b50610854600480360381019061084f91906141f5565b611627565b005b34801561086257600080fd5b5061087d6004803603810190610878919061426b565b611635565b005b34801561088b57600080fd5b506108a660048036038101906108a1919061426b565b61172b565b005b3480156108b457600080fd5b506108bd61187d565b6040516108ca9190614321565b60405180910390f35b3480156108df57600080fd5b506108fa60048036038101906108f59190614489565b611883565b005b34801561090857600080fd5b50610911611982565b005b34801561091f57600080fd5b50610928611a36565b604051610935919061439e565b60405180910390f35b34801561094a57600080fd5b50610965600480360381019061096091906144dc565b611a60565b005b34801561097357600080fd5b5061097c611af9565b604051610989919061413a565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b49190614449565b611b8b565b005b3480156109c757600080fd5b506109d0611ca3565b6040516109dd9190614321565b60405180910390f35b3480156109f257600080fd5b50610a0d6004803603810190610a0891906141f5565b611ca9565b604051610a1a9190614250565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a4591906141f5565b611d94565b604051610a579190614250565b60405180910390f35b348015610a6c57600080fd5b50610a75611db2565b604051610a82919061439e565b60405180910390f35b348015610a9757600080fd5b50610ab26004803603810190610aad919061426b565b611dd6565b604051610abf9190614250565b60405180910390f35b348015610ad457600080fd5b50610aef6004803603810190610aea91906143f0565b611df6565b604051610afc9190614250565b60405180910390f35b348015610b1157600080fd5b50610b1a611f0c565b604051610b279190614250565b60405180910390f35b348015610b3c57600080fd5b50610b576004803603810190610b529190614509565b611f1f565b005b348015610b6557600080fd5b50610b6e61210c565b604051610b7b9190614321565b60405180910390f35b348015610b9057600080fd5b50610bab6004803603810190610ba69190614449565b612112565b005b348015610bb957600080fd5b50610bd46004803603810190610bcf9190614489565b612237565b005b348015610be257600080fd5b50610beb612336565b604051610bf89190614321565b60405180910390f35b348015610c0d57600080fd5b50610c1661233c565b604051610c239190614321565b60405180910390f35b348015610c3857600080fd5b50610c41612342565b604051610c4e9190614321565b60405180910390f35b348015610c6357600080fd5b50610c7e6004803603810190610c799190614509565b612348565b604051610c8b9190614321565b60405180910390f35b348015610ca057600080fd5b50610ca96123cf565b604051610cb69190614321565b60405180910390f35b348015610ccb57600080fd5b50610ce66004803603810190610ce1919061426b565b6123f8565b005b348015610cf457600080fd5b50610cfd6124ce565b604051610d0a9190614321565b60405180910390f35b348015610d1f57600080fd5b50610d3a6004803603810190610d35919061426b565b6124d4565b005b348015610d4857600080fd5b50610d516125cb565b604051610d5e9190614321565b60405180910390f35b348015610d7357600080fd5b50610d7c6125d1565b604051610d899190614321565b60405180910390f35b348015610d9e57600080fd5b50610da76125d7565b604051610db49190614321565b60405180910390f35b606060038054610dcc90614578565b80601f0160208091040260200160405190810160405280929190818152602001828054610df890614578565b8015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b5050505050905090565b6000610e63610e5c6125dd565b84846125e5565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60145481565b6000610ece8484846127ae565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f196125dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f909061461b565b60405180910390fd5b610fad85610fa56125dd565b8584036125e5565b60019150509392505050565b61dead81565b60006009905090565b600061106a610fd56125dd565b848460016000610fe36125dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611065919061466a565b6125e5565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb906146ea565b60405180910390fd5b61110e8282613266565b5050565b61111c33826133c5565b50565b7f0000000000000000000000004ebdf501199410fc6caa1fa8c77da9aad46594ce81565b600760179054906101000a900460ff1681565b600a5481565b6111646125dd565b73ffffffffffffffffffffffffffffffffffffffff16611182611a36565b73ffffffffffffffffffffffffffffffffffffffff16146111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614756565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611213919061439e565b602060405180830381865afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611254919061478b565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016112919291906147b8565b6020604051808303816000875af11580156112b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d491906147f6565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561131b573d6000803e3d6000fd5b5050565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b600760169054906101000a900460ff1681565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114306125dd565b73ffffffffffffffffffffffffffffffffffffffff1661144e611a36565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90614756565b60405180910390fd5b6114ae600061359b565b565b60006114ba6125dd565b73ffffffffffffffffffffffffffffffffffffffff166114d8611a36565b73ffffffffffffffffffffffffffffffffffffffff161461152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590614756565b60405180910390fd5b6000600760176101000a81548160ff0219169083151502179055506001905090565b6115586125dd565b73ffffffffffffffffffffffffffffffffffffffff16611576611a36565b73ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390614756565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6116318282613661565b5050565b61163d6125dd565b73ffffffffffffffffffffffffffffffffffffffff1661165b611a36565b73ffffffffffffffffffffffffffffffffffffffff16146116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890614756565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff16476040516116d790614854565b60006040518083038185875af1925050503d8060008114611714576040519150601f19603f3d011682016040523d82523d6000602084013e611719565b606091505b505090508061172757600080fd5b5050565b6117336125dd565b73ffffffffffffffffffffffffffffffffffffffff16611751611a36565b73ffffffffffffffffffffffffffffffffffffffff16146117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90614756565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061186f816001612112565b61187a816001611550565b50565b60135481565b61188b6125dd565b73ffffffffffffffffffffffffffffffffffffffff166118a9611a36565b73ffffffffffffffffffffffffffffffffffffffff16146118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690614756565b60405180910390fd5b82600c8190555081600d8190555080600e81905550600e54600d54600c54611927919061466a565b611931919061466a565b600b819055506005600b54111561197d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611974906148b5565b60405180910390fd5b505050565b61198a6125dd565b73ffffffffffffffffffffffffffffffffffffffff166119a8611a36565b73ffffffffffffffffffffffffffffffffffffffff16146119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590614756565b60405180910390fd5b6001600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a686125dd565b73ffffffffffffffffffffffffffffffffffffffff16611a86611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390614756565b60405180910390fd5b80600760166101000a81548160ff02191690831515021790555050565b606060048054611b0890614578565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3490614578565b8015611b815780601f10611b5657610100808354040283529160200191611b81565b820191906000526020600020905b815481529060010190602001808311611b6457829003601f168201915b5050505050905090565b611b936125dd565b73ffffffffffffffffffffffffffffffffffffffff16611bb1611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90614756565b60405180910390fd5b7f0000000000000000000000004ebdf501199410fc6caa1fa8c77da9aad46594ce73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90614947565b60405180910390fd5b611c9f8282613694565b5050565b600e5481565b60008060016000611cb86125dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c906149d9565b60405180910390fd5b611d89611d806125dd565b858584036125e5565b600191505092915050565b6000611da8611da16125dd565b84846127ae565b6001905092915050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b60186020528060005260406000206000915054906101000a900460ff1681565b6000611e006125dd565b73ffffffffffffffffffffffffffffffffffffffff16611e1e611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90614756565b60405180910390fd5b6001821015611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90614a6b565b60405180910390fd5b6032821115611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390614afd565b60405180910390fd5b81600a8190555060019050919050565b600760159054906101000a900460ff1681565b611f276125dd565b73ffffffffffffffffffffffffffffffffffffffff16611f45611a36565b73ffffffffffffffffffffffffffffffffffffffff1614611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290614756565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190614b69565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612045919061439e565b602060405180830381865afa158015612062573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612086919061478b565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016120c39291906147b8565b6020604051808303816000875af11580156120e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061210691906147f6565b50505050565b600c5481565b61211a6125dd565b73ffffffffffffffffffffffffffffffffffffffff16612138611a36565b73ffffffffffffffffffffffffffffffffffffffff161461218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590614756565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161222b9190614250565b60405180910390a25050565b61223f6125dd565b73ffffffffffffffffffffffffffffffffffffffff1661225d611a36565b73ffffffffffffffffffffffffffffffffffffffff16146122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa90614756565b60405180910390fd5b8260108190555081601181905550806012819055506012546011546010546122db919061466a565b6122e5919061466a565b600f819055506005600f541115612331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232890614bd5565b60405180910390fd5b505050565b60095481565b60125481565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612710600a546123df610eb1565b6123e99190614bf5565b6123f39190614c66565b905090565b6124006125dd565b73ffffffffffffffffffffffffffffffffffffffff1661241e611a36565b73ffffffffffffffffffffffffffffffffffffffff1614612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b90614756565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506124c0816001612112565b6124cb816001611550565b50565b600d5481565b6124dc6125dd565b73ffffffffffffffffffffffffffffffffffffffff166124fa611a36565b73ffffffffffffffffffffffffffffffffffffffff1614612550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254790614756565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b690614d09565b60405180910390fd5b6125c88161359b565b50565b60115481565b60085481565b60155481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264b90614d9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ba90614e2d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516127a19190614321565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361281d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281490614ebf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361288c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288390614f51565b60405180910390fd5b600081036128a5576128a083836000613735565b613261565b600760179054906101000a900460ff1615612da0576128c2611a36565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129305750612900611a36565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129695750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129a3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129bc5750600760149054906101000a900460ff16155b15612d9f57600760159054906101000a900460ff16612ab657601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a765750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aac90614fbd565b60405180910390fd5b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b595750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c0057600954811115612ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9a9061504f565b60405180910390fd5b600854612baf836113e0565b82612bba919061466a565b1115612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf2906150bb565b60405180910390fd5b612d9e565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ca35750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cf257600954811115612ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce49061514d565b60405180910390fd5b612d9d565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d9c57600854612d4f836113e0565b82612d5a919061466a565b1115612d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d92906150bb565b60405180910390fd5b5b5b5b5b5b6000612dab306113e0565b90506000612db76123cf565b8210159050808015612dd55750600760169054906101000a900460ff165b8015612dee5750600760149054906101000a900460ff16155b8015612e445750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e9a5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ef05750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f34576001600760146101000a81548160ff021916908315150217905550612f186139b4565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fea5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ff457600090505b6000811561325157601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305757506000600f54115b15613116576064600f548661306c9190614bf5565b6130769190614c66565b9050600f54601154826130899190614bf5565b6130939190614c66565b601460008282546130a4919061466a565b92505081905550600f54601254826130bc9190614bf5565b6130c69190614c66565b601560008282546130d7919061466a565b92505081905550600f54601054826130ef9190614bf5565b6130f99190614c66565b6013600082825461310a919061466a565b9250508190555061322d565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561317157506000600b54115b1561322c576064600b54866131869190614bf5565b6131909190614c66565b9050600b54600d54826131a39190614bf5565b6131ad9190614c66565b601460008282546131be919061466a565b92505081905550600b54600e54826131d69190614bf5565b6131e09190614c66565b601560008282546131f1919061466a565b92505081905550600b54600c54826132099190614bf5565b6132139190614c66565b60136000828254613224919061466a565b925050819055505b5b600081111561324257613241873083613735565b5b808561324e919061516d565b94505b61325c878787613735565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cc906151ed565b60405180910390fd5b6132e160008383613d67565b80600260008282546132f3919061466a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613348919061466a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516133ad9190614321565b60405180910390a36133c160008383613d6c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b9061527f565b60405180910390fd5b61344082600083613d67565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156134c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bd90615311565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461351d919061516d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135829190614321565b60405180910390a361359683600084613d6c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008161366e8433612348565b613678919061516d565b90506136858333836125e5565b61368f83836133c5565b505050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036137a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379b90614ebf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380a90614f51565b60405180910390fd5b61381e838383613d67565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389b906153a3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613937919061466a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161399b9190614321565b60405180910390a36139ae848484613d6c565b50505050565b60006139bf306113e0565b905060006015546013546014546139d6919061466a565b6139e0919061466a565b90506000808314806139f25750600082145b156139ff57505050613d65565b6014613a096123cf565b613a139190614bf5565b831115613a31576014613a246123cf565b613a2e9190614bf5565b92505b600060028360145486613a449190614bf5565b613a4e9190614c66565b613a589190614c66565b905060008185613a68919061516d565b90506000479050613a7882613d71565b60008147613a86919061516d565b905060006002601454613a999190614c66565b8760135484613aa89190614bf5565b613ab29190614c66565b613abc919061516d565b905060006002601454613acf9190614c66565b8860155485613ade9190614bf5565b613ae89190614c66565b613af2919061516d565b90506000818385613b03919061516d565b613b0d919061516d565b9050600060148190555060006013819055506000601581905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613b6d90614854565b60006040518083038185875af1925050503d8060008114613baa576040519150601f19603f3d011682016040523d82523d6000602084013e613baf565b606091505b505080985050600087118015613bc55750600081115b15613c1257613bd48782613fae565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601454604051613c09939291906153c3565b60405180910390a15b60004790507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015613c7f57600080fd5b505af1158015613c93573d6000803e3d6000fd5b50505050507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401613d159291906147b8565b6020604051808303816000875af1158015613d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d5891906147f6565b5050505050505050505050505b565b505050565b505050565b6000600267ffffffffffffffff811115613d8e57613d8d6153fa565b5b604051908082528060200260200182016040528015613dbc5781602001602082028036833780820191505090505b5090503081600081518110613dd457613dd3615429565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e9d919061546d565b81600181518110613eb157613eb0615429565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f16307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846125e5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f78959493929190615593565b600060405180830381600087803b158015613f9257600080fd5b505af1158015613fa6573d6000803e3d6000fd5b505050505050565b613fd9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846125e5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401614060969594939291906155ed565b60606040518083038185885af115801561407e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906140a3919061564e565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156140e45780820151818401526020810190506140c9565b60008484015250505050565b6000601f19601f8301169050919050565b600061410c826140aa565b61411681856140b5565b93506141268185602086016140c6565b61412f816140f0565b840191505092915050565b600060208201905081810360008301526141548184614101565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061418c82614161565b9050919050565b61419c81614181565b81146141a757600080fd5b50565b6000813590506141b981614193565b92915050565b6000819050919050565b6141d2816141bf565b81146141dd57600080fd5b50565b6000813590506141ef816141c9565b92915050565b6000806040838503121561420c5761420b61415c565b5b600061421a858286016141aa565b925050602061422b858286016141e0565b9150509250929050565b60008115159050919050565b61424a81614235565b82525050565b60006020820190506142656000830184614241565b92915050565b6000602082840312156142815761428061415c565b5b600061428f848285016141aa565b91505092915050565b6000819050919050565b60006142bd6142b86142b384614161565b614298565b614161565b9050919050565b60006142cf826142a2565b9050919050565b60006142e1826142c4565b9050919050565b6142f1816142d6565b82525050565b600060208201905061430c60008301846142e8565b92915050565b61431b816141bf565b82525050565b60006020820190506143366000830184614312565b92915050565b6000806000606084860312156143555761435461415c565b5b6000614363868287016141aa565b9350506020614374868287016141aa565b9250506040614385868287016141e0565b9150509250925092565b61439881614181565b82525050565b60006020820190506143b3600083018461438f565b92915050565b600060ff82169050919050565b6143cf816143b9565b82525050565b60006020820190506143ea60008301846143c6565b92915050565b6000602082840312156144065761440561415c565b5b6000614414848285016141e0565b91505092915050565b61442681614235565b811461443157600080fd5b50565b6000813590506144438161441d565b92915050565b600080604083850312156144605761445f61415c565b5b600061446e858286016141aa565b925050602061447f85828601614434565b9150509250929050565b6000806000606084860312156144a2576144a161415c565b5b60006144b0868287016141e0565b93505060206144c1868287016141e0565b92505060406144d2868287016141e0565b9150509250925092565b6000602082840312156144f2576144f161415c565b5b600061450084828501614434565b91505092915050565b600080604083850312156145205761451f61415c565b5b600061452e858286016141aa565b925050602061453f858286016141aa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061459057607f821691505b6020821081036145a3576145a2614549565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006146056028836140b5565b9150614610826145a9565b604082019050919050565b60006020820190508181036000830152614634816145f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614675826141bf565b9150614680836141bf565b92508282019050808211156146985761469761463b565b5b92915050565b7f6d73672e73656e646572206e6f74207472656173757279000000000000000000600082015250565b60006146d46017836140b5565b91506146df8261469e565b602082019050919050565b60006020820190508181036000830152614703816146c7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147406020836140b5565b915061474b8261470a565b602082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b600081519050614785816141c9565b92915050565b6000602082840312156147a1576147a061415c565b5b60006147af84828501614776565b91505092915050565b60006040820190506147cd600083018561438f565b6147da6020830184614312565b9392505050565b6000815190506147f08161441d565b92915050565b60006020828403121561480c5761480b61415c565b5b600061481a848285016147e1565b91505092915050565b600081905092915050565b50565b600061483e600083614823565b91506148498261482e565b600082019050919050565b600061485f82614831565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e00000000000000000000600082015250565b600061489f6016836140b5565b91506148aa82614869565b602082019050919050565b600060208201905081810360008301526148ce81614892565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006149316039836140b5565b915061493c826148d5565b604082019050919050565b6000602082019050818103600083015261496081614924565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006149c36025836140b5565b91506149ce82614967565b604082019050919050565b600060208201905081810360008301526149f2816149b6565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614a556034836140b5565b9150614a60826149f9565b604082019050919050565b60006020820190508181036000830152614a8481614a48565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e35302520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614ae76035836140b5565b9150614af282614a8b565b604082019050919050565b60006020820190508181036000830152614b1681614ada565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000614b53601a836140b5565b9150614b5e82614b1d565b602082019050919050565b60006020820190508181036000830152614b8281614b46565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e000000000000000000600082015250565b6000614bbf6017836140b5565b9150614bca82614b89565b602082019050919050565b60006020820190508181036000830152614bee81614bb2565b9050919050565b6000614c00826141bf565b9150614c0b836141bf565b9250828202614c19816141bf565b91508282048414831517614c3057614c2f61463b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c71826141bf565b9150614c7c836141bf565b925082614c8c57614c8b614c37565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cf36026836140b5565b9150614cfe82614c97565b604082019050919050565b60006020820190508181036000830152614d2281614ce6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d856024836140b5565b9150614d9082614d29565b604082019050919050565b60006020820190508181036000830152614db481614d78565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e176022836140b5565b9150614e2282614dbb565b604082019050919050565b60006020820190508181036000830152614e4681614e0a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614ea96025836140b5565b9150614eb482614e4d565b604082019050919050565b60006020820190508181036000830152614ed881614e9c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f3b6023836140b5565b9150614f4682614edf565b604082019050919050565b60006020820190508181036000830152614f6a81614f2e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614fa76016836140b5565b9150614fb282614f71565b602082019050919050565b60006020820190508181036000830152614fd681614f9a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006150396035836140b5565b915061504482614fdd565b604082019050919050565b600060208201905081810360008301526150688161502c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006150a56013836140b5565b91506150b08261506f565b602082019050919050565b600060208201905081810360008301526150d481615098565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006151376036836140b5565b9150615142826150db565b604082019050919050565b600060208201905081810360008301526151668161512a565b9050919050565b6000615178826141bf565b9150615183836141bf565b925082820390508181111561519b5761519a61463b565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006151d7601f836140b5565b91506151e2826151a1565b602082019050919050565b60006020820190508181036000830152615206816151ca565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006152696021836140b5565b91506152748261520d565b604082019050919050565b600060208201905081810360008301526152988161525c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006152fb6022836140b5565b91506153068261529f565b604082019050919050565b6000602082019050818103600083015261532a816152ee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061538d6026836140b5565b915061539882615331565b604082019050919050565b600060208201905081810360008301526153bc81615380565b9050919050565b60006060820190506153d86000830186614312565b6153e56020830185614312565b6153f26040830184614312565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061546781614193565b92915050565b6000602082840312156154835761548261415c565b5b600061549184828501615458565b91505092915050565b6000819050919050565b60006154bf6154ba6154b58461549a565b614298565b6141bf565b9050919050565b6154cf816154a4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61550a81614181565b82525050565b600061551c8383615501565b60208301905092915050565b6000602082019050919050565b6000615540826154d5565b61554a81856154e0565b9350615555836154f1565b8060005b8381101561558657815161556d8882615510565b975061557883615528565b925050600181019050615559565b5085935050505092915050565b600060a0820190506155a86000830188614312565b6155b560208301876154c6565b81810360408301526155c78186615535565b90506155d6606083018561438f565b6155e36080830184614312565b9695505050505050565b600060c082019050615602600083018961438f565b61560f6020830188614312565b61561c60408301876154c6565b61562960608301866154c6565b615636608083018561438f565b61564360a0830184614312565b979650505050505050565b6000806000606084860312156156675761566661415c565b5b600061567586828701614776565b935050602061568686828701614776565b925050604061569786828701614776565b915050925092509256fea264697066735822122025142402ec7cbe31e0eda531246dd321d7439bb4390ebe29d77733d0b9ec55b964736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

-----Decoded View---------------
Arg [0] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2


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.