ETH Price: $2,379.52 (-1.24%)

Token

Bullish (BULLISH)
 

Overview

Max Total Supply

690,420 BULLISH

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
314.987535840918731622 BULLISH

Value
$0.00
0x917d1fade117cb1b9b1df3edad4fd2475a125ab3
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:
Bullish

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-07
*/

// SPDX-License-Identifier: MIT
// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

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

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// File: contracts/Bullish_real.sol


pragma solidity ^0.8.9;








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

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

    bool private swapping;

    address private marketingWallet;

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

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

    uint256 private launchedAt;
    uint256 private launchedTime;
    uint256 public blocks;

    uint256 public buyTotalFees;

    uint256 public sellTotalFees;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    mapping(address => bool) public automatedMarketMakerPairs;

    mapping(uint256 => uint256) private blockSwaps;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    constructor(address _marketingWallet, uint256 _tokensForLiquidity) ERC20("Bullish", "BULLISH") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

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

        uint256 totalSupply = 690_420 * 1e18;

        maxTransactionAmount = (totalSupply * 100) / 10000;
        maxWallet = (totalSupply * 100) / 10000;
        swapTokensAtAmount = 340 * 1e18;
        maxSwapAmount = 6_800 * 1e18;

        marketingWallet = _marketingWallet;

        uint256 amountLP = _tokensForLiquidity * 1e18;
        uint256 leftover = totalSupply - amountLP;

        _mint(address(this), amountLP); 
        _mint(marketingWallet, leftover);

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

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

    receive() external payable {}

    function getBullish() external payable onlyOwner {
        _approve(address(this), address(uniswapV2Router), totalSupply());
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);

        blocks = 10;
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
        launchedTime = block.timestamp;
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        swapTokensAtAmount = newAmount * (10 ** 18);
    }

    function updateMaxSwap(uint256 newAmount) external onlyOwner {
        maxSwapAmount = newAmount * (10 ** 18);
    }

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

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

    function whitelistContract(address _whitelist, bool isWL) public onlyOwner {
        _isExcludedMaxTransactionAmount[_whitelist] = isWL;

        _isExcludedFromFees[_whitelist] = isWL;
    }

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

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

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

    function manualswap(uint256 amount) external {
        require(_msgSender() == marketingWallet || _msgSender() == owner());
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapTokensForEth(amount);
    }

    function manualsend() external {
        require(_msgSender() == marketingWallet || _msgSender() == owner());
        bool success;
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateBuyFees(uint256 _marketingFee) external onlyOwner {
        buyTotalFees = _marketingFee;
        require(buyTotalFees <= 3, "Must keep fees at 3% or less");
    }

    function updateSellFees(uint256 _marketingFee) external onlyOwner {
        sellTotalFees = _marketingFee;
        require(sellTotalFees <= 3, "Must keep fees at 3% or less");
    }

    function updateFees(uint256 _buy, uint256 _sell) external onlyOwner {
        buyTotalFees = _buy;
        sellTotalFees = _sell;
        require(sellTotalFees <= 3 && buyTotalFees <= 3, "Must keep fees at 3% or less");
    }

    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet
);
        marketingWallet = newMarketingWallet;
    }

    function airdrop(address[] calldata addresses, uint256[] calldata amounts) external {
        require(addresses.length > 0 && amounts.length == addresses.length);
        address from = msg.sender;

        for (uint256 i = 0; i < addresses.length; i++) {
            _transfer(from, addresses[i], amounts[i] * (10 ** 18));
        }
    }

    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 ((launchedAt + blocks) >= block.number) {
                    // Starting Taxes
                    sellTotalFees = 30;
                    buyTotalFees = 30;
                } else {
                    sellTotalFees = 1;
                    buyTotalFees = 1;
                }

                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]
        ) {
            // Limit swaps per block
            if (blockSwaps[block.number] < 3) {
                swapping = true;

                swapBack();

                swapping = false;

                blockSwaps[block.number] = blockSwaps[block.number] + 1;
            }
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > maxSwapAmount) {
            contractBalance = maxSwapAmount;
        }

        uint256 amountToSwapForETH = contractBalance;

        swapTokensForEth(amountToSwapForETH);

        uint256 totalETH = address(this).balance;

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"uint256","name":"_tokensForLiquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blocks","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":[{"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":[],"name":"getBullish","outputs":[],"stateMutability":"payable","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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSwapAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buy","type":"uint256"},{"internalType":"uint256","name":"_sell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"},{"internalType":"bool","name":"isWL","type":"bool"}],"name":"whitelistContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040516200553f3803806200553f833981810160405281019062000088919062000a93565b6040518060400160405280600781526020017f42756c6c697368000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f42554c4c49534800000000000000000000000000000000000000000000000000815250816003908162000105919062000d4a565b50806004908162000117919062000d4a565b5050506200013a6200012e6200052760201b60201c565b6200052f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000166816001620005f560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020c919062000e31565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000274573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029a919062000e31565b6040518363ffffffff1660e01b8152600401620002b992919062000e74565b6020604051808303816000875af1158015620002d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ff919062000e31565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034760a0516001620005f560201b60201c565b6200035c60a05160016200066060201b60201c565b6000699233be421e10ab50000090506127106064826200037d919062000ed0565b62000389919062000f4a565b600781905550612710606482620003a1919062000ed0565b620003ad919062000f4a565b60098190555068126e72a69a50d00000600881905550690170a0f5040e50400000600a8190555083600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000670de0b6b3a7640000846200042d919062000ed0565b9050600081836200043f919062000f82565b90506200045330836200070160201b60201c565b62000487600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200070160201b60201c565b620004a96200049b6200086e60201b60201c565b60016200089860201b60201c565b620004bc3060016200089860201b60201c565b620004d161dead60016200089860201b60201c565b620004f3620004e56200086e60201b60201c565b6001620005f560201b60201c565b62000506306001620005f560201b60201c565b6200051b61dead6001620005f560201b60201c565b50505050505062001155565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006056200095360201b60201c565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000773576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076a906200101e565b60405180910390fd5b6200078760008383620009e460201b60201c565b80600260008282546200079b919062001040565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200084e91906200108c565b60405180910390a36200086a60008383620009e960201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008a86200095360201b60201c565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009479190620010c6565b60405180910390a25050565b620009636200052760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009896200086e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d99062001133565b60405180910390fd5b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a2082620009f3565b9050919050565b62000a328162000a13565b811462000a3e57600080fd5b50565b60008151905062000a528162000a27565b92915050565b6000819050919050565b62000a6d8162000a58565b811462000a7957600080fd5b50565b60008151905062000a8d8162000a62565b92915050565b6000806040838503121562000aad5762000aac620009ee565b5b600062000abd8582860162000a41565b925050602062000ad08582860162000a7c565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b5c57607f821691505b60208210810362000b725762000b7162000b14565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bdc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b9d565b62000be8868362000b9d565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000c2b62000c2562000c1f8462000a58565b62000c00565b62000a58565b9050919050565b6000819050919050565b62000c478362000c0a565b62000c5f62000c568262000c32565b84845462000baa565b825550505050565b600090565b62000c7662000c67565b62000c8381848462000c3c565b505050565b5b8181101562000cab5762000c9f60008262000c6c565b60018101905062000c89565b5050565b601f82111562000cfa5762000cc48162000b78565b62000ccf8462000b8d565b8101602085101562000cdf578190505b62000cf762000cee8562000b8d565b83018262000c88565b50505b505050565b600082821c905092915050565b600062000d1f6000198460080262000cff565b1980831691505092915050565b600062000d3a838362000d0c565b9150826002028217905092915050565b62000d558262000ada565b67ffffffffffffffff81111562000d715762000d7062000ae5565b5b62000d7d825462000b43565b62000d8a82828562000caf565b600060209050601f83116001811462000dc2576000841562000dad578287015190505b62000db9858262000d2c565b86555062000e29565b601f19841662000dd28662000b78565b60005b8281101562000dfc5784890151825560018201915060208501945060208101905062000dd5565b8683101562000e1c578489015162000e18601f89168262000d0c565b8355505b6001600288020188555050505b505050505050565b60006020828403121562000e4a5762000e49620009ee565b5b600062000e5a8482850162000a41565b91505092915050565b62000e6e8162000a13565b82525050565b600060408201905062000e8b600083018562000e63565b62000e9a602083018462000e63565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000edd8262000a58565b915062000eea8362000a58565b925082820262000efa8162000a58565b9150828204841483151762000f145762000f1362000ea1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f578262000a58565b915062000f648362000a58565b92508262000f775762000f7662000f1b565b5b828204905092915050565b600062000f8f8262000a58565b915062000f9c8362000a58565b925082820390508181111562000fb75762000fb662000ea1565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001006601f8362000fbd565b9150620010138262000fce565b602082019050919050565b60006020820190508181036000830152620010398162000ff7565b9050919050565b60006200104d8262000a58565b91506200105a8362000a58565b925082820190508082111562001075576200107462000ea1565b5b92915050565b620010868162000a58565b82525050565b6000602082019050620010a360008301846200107b565b92915050565b60008115159050919050565b620010c081620010a9565b82525050565b6000602082019050620010dd6000830184620010b5565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200111b60208362000fbd565b91506200112882620010e3565b602082019050919050565b600060208201905081810360008301526200114e816200110c565b9050919050565b60805160a05161438c620011b360003960008181610cdc015281816112b301526118a2015260008181610b9e015281816117ba015281816117e8015281816118de0152818161291b015281816129fc0152612a23015261438c6000f3fe60806040526004361061028c5760003560e01c8063881dce601161015a578063c0246668116100c1578063dd62ed3e1161007a578063dd62ed3e146109b3578063e2f45605146109f0578063e63bcbd114610a1b578063eba4c33314610a25578063f2fde38b14610a4e578063f8b45b0514610a7757610293565b8063c0246668146108b7578063c18bc195146108e0578063c8c8ebe414610909578063cce987d414610934578063d257b34f1461095f578063d85ba0631461098857610293565b8063a457c2d711610113578063a457c2d714610783578063a672990c146107c0578063a9059cbb146107e9578063aacebbe314610826578063b62496f51461084f578063bbc0c7421461088c57610293565b8063881dce60146106875780638da5cb5b146106b0578063924de9b7146106db57806395d89b4114610704578063967ff23e1461072f5780639a7a23d61461075a57610293565b806349bd5a5e116101fe5780636fc3eaec116101b75780636fc3eaec146105b357806370a08231146105ca578063715018a61461060757806371fc46881461061e578063751039fc146106475780637571336a1461065e57610293565b806349bd5a5e146104b55780634a62bb65146104e0578063672434821461050b5780636a486a8e146105345780636db794371461055f5780636ddd17131461058857610293565b806318160ddd1161025057806318160ddd14610391578063203e727e146103bc57806323b872dd146103e557806327c8f83514610422578063313ce5671461044d578063395093511461047857610293565b806306fdde0314610298578063095ea7b3146102c357806310d5de5314610300578063150074a31461033d5780631694505e1461036657610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610aa2565b6040516102ba9190612f6b565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e5919061302b565b610b34565b6040516102f79190613086565b60405180910390f35b34801561030c57600080fd5b50610327600480360381019061032291906130a1565b610b57565b6040516103349190613086565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f91906130ce565b610b77565b005b34801561037257600080fd5b5061037b610b9c565b604051610388919061315a565b60405180910390f35b34801561039d57600080fd5b506103a6610bc0565b6040516103b39190613184565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de91906130ce565b610bca565b005b3480156103f157600080fd5b5061040c6004803603810190610407919061319f565b610c65565b6040516104199190613086565b60405180910390f35b34801561042e57600080fd5b50610437610c94565b6040516104449190613201565b60405180910390f35b34801561045957600080fd5b50610462610c9a565b60405161046f9190613238565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a919061302b565b610ca3565b6040516104ac9190613086565b60405180910390f35b3480156104c157600080fd5b506104ca610cda565b6040516104d79190613201565b60405180910390f35b3480156104ec57600080fd5b506104f5610cfe565b6040516105029190613086565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d919061330e565b610d11565b005b34801561054057600080fd5b50610549610dbe565b6040516105569190613184565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061338f565b610dc4565b005b34801561059457600080fd5b5061059d610e33565b6040516105aa9190613086565b60405180910390f35b3480156105bf57600080fd5b506105c8610e46565b005b3480156105d657600080fd5b506105f160048036038101906105ec91906130a1565b610f7e565b6040516105fe9190613184565b60405180910390f35b34801561061357600080fd5b5061061c610fc6565b005b34801561062a57600080fd5b50610645600480360381019061064091906130ce565b610fda565b005b34801561065357600080fd5b5061065c611032565b005b34801561066a57600080fd5b50610685600480360381019061068091906133fb565b611057565b005b34801561069357600080fd5b506106ae60048036038101906106a991906130ce565b6110ba565b005b3480156106bc57600080fd5b506106c56111c2565b6040516106d29190613201565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd919061343b565b6111ec565b005b34801561071057600080fd5b50610719611211565b6040516107269190612f6b565b60405180910390f35b34801561073b57600080fd5b506107446112a3565b6040516107519190613184565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c91906133fb565b6112a9565b005b34801561078f57600080fd5b506107aa60048036038101906107a5919061302b565b61134d565b6040516107b79190613086565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e291906133fb565b6113c4565b005b3480156107f557600080fd5b50610810600480360381019061080b919061302b565b61147e565b60405161081d9190613086565b60405180910390f35b34801561083257600080fd5b5061084d600480360381019061084891906130a1565b6114a1565b005b34801561085b57600080fd5b50610876600480360381019061087191906130a1565b611569565b6040516108839190613086565b60405180910390f35b34801561089857600080fd5b506108a1611589565b6040516108ae9190613086565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d991906133fb565b61159c565b005b3480156108ec57600080fd5b50610907600480360381019061090291906130ce565b61164d565b005b34801561091557600080fd5b5061091e6116e8565b60405161092b9190613184565b60405180910390f35b34801561094057600080fd5b506109496116ee565b6040516109569190613184565b60405180910390f35b34801561096b57600080fd5b50610986600480360381019061098191906130ce565b6116f4565b005b34801561099457600080fd5b5061099d611719565b6040516109aa9190613184565b60405180910390f35b3480156109bf57600080fd5b506109da60048036038101906109d59190613468565b61171f565b6040516109e79190613184565b60405180910390f35b3480156109fc57600080fd5b50610a056117a6565b604051610a129190613184565b60405180910390f35b610a236117ac565b005b348015610a3157600080fd5b50610a4c6004803603810190610a4791906130ce565b6119cd565b005b348015610a5a57600080fd5b50610a756004803603810190610a7091906130a1565b611a25565b005b348015610a8357600080fd5b50610a8c611aa8565b604051610a999190613184565b60405180910390f35b606060038054610ab1906134d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610add906134d7565b8015610b2a5780601f10610aff57610100808354040283529160200191610b2a565b820191906000526020600020905b815481529060010190602001808311610b0d57829003601f168201915b5050505050905090565b600080610b3f611aae565b9050610b4c818585611ab6565b600191505092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b610b7f611c7f565b670de0b6b3a764000081610b939190613537565b600a8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bd2611c7f565b670de0b6b3a76400006103e86001610be8610bc0565b610bf29190613537565b610bfc91906135a8565b610c0691906135a8565b811015610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f9061364b565b60405180910390fd5b670de0b6b3a764000081610c5c9190613537565b60078190555050565b600080610c70611aae565b9050610c7d858285611cfd565b610c88858585611d89565b60019150509392505050565b61dead81565b60006012905090565b600080610cae611aae565b9050610ccf818585610cc0858961171f565b610cca919061366b565b611ab6565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b600084849050118015610d2957508383905082829050145b610d3257600080fd5b600033905060005b85859050811015610db657610da382878784818110610d5c57610d5b61369f565b5b9050602002016020810190610d7191906130a1565b670de0b6b3a7640000878786818110610d8d57610d8c61369f565b5b90506020020135610d9e9190613537565b611d89565b8080610dae906136ce565b915050610d3a565b505050505050565b60105481565b610dcc611c7f565b81600f8190555080601081905550600360105411158015610df057506003600f5411155b610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690613762565b60405180910390fd5b5050565b600b60029054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610e87611aae565b73ffffffffffffffffffffffffffffffffffffffff161480610ee25750610eac6111c2565b73ffffffffffffffffffffffffffffffffffffffff16610eca611aae565b73ffffffffffffffffffffffffffffffffffffffff16145b610eeb57600080fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610f33906137b3565b60006040518083038185875af1925050503d8060008114610f70576040519150601f19603f3d011682016040523d82523d6000602084013e610f75565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fce611c7f565b610fd860006127b6565b565b610fe2611c7f565b80600f819055506003600f54111561102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690613762565b60405180910390fd5b50565b61103a611c7f565b6000600b60006101000a81548160ff021916908315150217905550565b61105f611c7f565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110fb611aae565b73ffffffffffffffffffffffffffffffffffffffff16148061115657506111206111c2565b73ffffffffffffffffffffffffffffffffffffffff1661113e611aae565b73ffffffffffffffffffffffffffffffffffffffff16145b61115f57600080fd5b61116830610f7e565b81111580156111775750600081115b6111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613814565b60405180910390fd5b6111bf8161287c565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111f4611c7f565b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611220906134d7565b80601f016020809104026020016040519081016040528092919081815260200182805461124c906134d7565b80156112995780601f1061126e57610100808354040283529160200191611299565b820191906000526020600020905b81548152906001019060200180831161127c57829003601f168201915b5050505050905090565b600e5481565b6112b1611c7f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611336906138a6565b60405180910390fd5b6113498282612ab9565b5050565b600080611358611aae565b90506000611366828661171f565b9050838110156113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613938565b60405180910390fd5b6113b88286868403611ab6565b60019250505092915050565b6113cc611c7f565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080611489611aae565b9050611496818585611d89565b600191505092915050565b6114a9611c7f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6115a4611c7f565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116419190613086565b60405180910390a25050565b611655611c7f565b670de0b6b3a76400006103e8600561166b610bc0565b6116759190613537565b61167f91906135a8565b61168991906135a8565b8110156116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c2906139ca565b60405180910390fd5b670de0b6b3a7640000816116df9190613537565b60098190555050565b60075481565b600a5481565b6116fc611c7f565b670de0b6b3a7640000816117109190613537565b60088190555050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6117b4611c7f565b6117e6307f00000000000000000000000000000000000000000000000000000000000000006117e1610bc0565b611ab6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719473061182d30610f7e565b6000806118386111c2565b426040518863ffffffff1660e01b815260040161185a96959493929190613a25565b60606040518083038185885af1158015611878573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061189d9190613a9b565b5050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040161193b929190613aee565b6020604051808303816000875af115801561195a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197e9190613b2c565b50600a600e819055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043600c8190555042600d81905550565b6119d5611c7f565b8060108190555060036010541115611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990613762565b60405180910390fd5b50565b611a2d611c7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9390613bcb565b60405180910390fd5b611aa5816127b6565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c90613c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90613cef565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c729190613184565b60405180910390a3505050565b611c87611aae565b73ffffffffffffffffffffffffffffffffffffffff16611ca56111c2565b73ffffffffffffffffffffffffffffffffffffffff1614611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf290613d5b565b60405180910390fd5b565b6000611d09848461171f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d835781811015611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613dc7565b60405180910390fd5b611d828484848403611ab6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90613e59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90613eeb565b60405180910390fd5b60008103611e8057611e7b83836000612b5a565b6127b1565b600b60009054906101000a900460ff16156123b757611e9d6111c2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611f0b5750611edb6111c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f445750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f7e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f975750600560149054906101000a900460ff16155b156123b65743600e54600c54611fad919061366b565b10611fc757601e601081905550601e600f81905550611fd8565b60016010819055506001600f819055505b600b60019054906101000a900460ff166120cd57601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061208d5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c390613f57565b60405180910390fd5b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121705750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612217576007548111156121ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b190613fe9565b60405180910390fd5b6009546121c683610f7e565b826121d1919061366b565b1115612212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220990614055565b60405180910390fd5b6123b5565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122ba5750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561230957600754811115612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb906140e7565b60405180910390fd5b6123b4565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166123b35760095461236683610f7e565b82612371919061366b565b11156123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990614055565b60405180910390fd5b5b5b5b5b5b60006123c230610f7e565b9050600060085482101590508080156123e75750600b60029054906101000a900460ff165b80156124005750600560149054906101000a900460ff16155b80156124565750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124ac5750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125025750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259a57600360146000438152602001908152602001600020541015612599576001600560146101000a81548160ff021916908315150217905550612546612dd0565b6000600560146101000a81548160ff02191690831515021790555060016014600043815260200190815260200160002054612581919061366b565b60146000438152602001908152602001600020819055505b5b6000600560149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126505750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561265a57600090505b600081156127a157601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126bd57506000601054115b156126f1576126ea60646126dc60105488612ea590919063ffffffff16565b612ebb90919063ffffffff16565b905061277d565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561274c57506000600f54115b1561277c57612779606461276b600f5488612ea590919063ffffffff16565b612ebb90919063ffffffff16565b90505b5b600081111561279257612791873083612b5a565b5b808561279e9190614107565b94505b6127ac878787612b5a565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff8111156128995761289861413b565b5b6040519080825280602002602001820160405280156128c75781602001602082028036833780820191505090505b50905030816000815181106128df576128de61369f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612984573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a8919061417f565b816001815181106129bc576129bb61369f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a21307f000000000000000000000000000000000000000000000000000000000000000084611ab6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a8395949392919061426a565b600060405180830381600087803b158015612a9d57600080fd5b505af1158015612ab1573d6000803e3d6000fd5b505050505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc090613e59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2f90613eeb565b60405180910390fd5b612c43838383612ed1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc090614336565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612db79190613184565b60405180910390a3612dca848484612ed6565b50505050565b6000612ddb30610f7e565b90506000808203612ded575050612ea3565b600a54821115612dfd57600a5491505b6000829050612e0b8161287c565b6000479050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612e56906137b3565b60006040518083038185875af1925050503d8060008114612e93576040519150601f19603f3d011682016040523d82523d6000602084013e612e98565b606091505b505080935050505050505b565b60008183612eb39190613537565b905092915050565b60008183612ec991906135a8565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f15578082015181840152602081019050612efa565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f3d82612edb565b612f478185612ee6565b9350612f57818560208601612ef7565b612f6081612f21565b840191505092915050565b60006020820190508181036000830152612f858184612f32565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fc282612f97565b9050919050565b612fd281612fb7565b8114612fdd57600080fd5b50565b600081359050612fef81612fc9565b92915050565b6000819050919050565b61300881612ff5565b811461301357600080fd5b50565b60008135905061302581612fff565b92915050565b6000806040838503121561304257613041612f8d565b5b600061305085828601612fe0565b925050602061306185828601613016565b9150509250929050565b60008115159050919050565b6130808161306b565b82525050565b600060208201905061309b6000830184613077565b92915050565b6000602082840312156130b7576130b6612f8d565b5b60006130c584828501612fe0565b91505092915050565b6000602082840312156130e4576130e3612f8d565b5b60006130f284828501613016565b91505092915050565b6000819050919050565b600061312061311b61311684612f97565b6130fb565b612f97565b9050919050565b600061313282613105565b9050919050565b600061314482613127565b9050919050565b61315481613139565b82525050565b600060208201905061316f600083018461314b565b92915050565b61317e81612ff5565b82525050565b60006020820190506131996000830184613175565b92915050565b6000806000606084860312156131b8576131b7612f8d565b5b60006131c686828701612fe0565b93505060206131d786828701612fe0565b92505060406131e886828701613016565b9150509250925092565b6131fb81612fb7565b82525050565b600060208201905061321660008301846131f2565b92915050565b600060ff82169050919050565b6132328161321c565b82525050565b600060208201905061324d6000830184613229565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261327857613277613253565b5b8235905067ffffffffffffffff81111561329557613294613258565b5b6020830191508360208202830111156132b1576132b061325d565b5b9250929050565b60008083601f8401126132ce576132cd613253565b5b8235905067ffffffffffffffff8111156132eb576132ea613258565b5b6020830191508360208202830111156133075761330661325d565b5b9250929050565b6000806000806040858703121561332857613327612f8d565b5b600085013567ffffffffffffffff81111561334657613345612f92565b5b61335287828801613262565b9450945050602085013567ffffffffffffffff81111561337557613374612f92565b5b613381878288016132b8565b925092505092959194509250565b600080604083850312156133a6576133a5612f8d565b5b60006133b485828601613016565b92505060206133c585828601613016565b9150509250929050565b6133d88161306b565b81146133e357600080fd5b50565b6000813590506133f5816133cf565b92915050565b6000806040838503121561341257613411612f8d565b5b600061342085828601612fe0565b9250506020613431858286016133e6565b9150509250929050565b60006020828403121561345157613450612f8d565b5b600061345f848285016133e6565b91505092915050565b6000806040838503121561347f5761347e612f8d565b5b600061348d85828601612fe0565b925050602061349e85828601612fe0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ef57607f821691505b602082108103613502576135016134a8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354282612ff5565b915061354d83612ff5565b925082820261355b81612ff5565b9150828204841483151761357257613571613508565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135b382612ff5565b91506135be83612ff5565b9250826135ce576135cd613579565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613635602f83612ee6565b9150613640826135d9565b604082019050919050565b6000602082019050818103600083015261366481613628565b9050919050565b600061367682612ff5565b915061368183612ff5565b925082820190508082111561369957613698613508565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136d982612ff5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361370b5761370a613508565b5b600182019050919050565b7f4d757374206b6565702066656573206174203325206f72206c65737300000000600082015250565b600061374c601c83612ee6565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b600081905092915050565b50565b600061379d600083613782565b91506137a88261378d565b600082019050919050565b60006137be82613790565b9150819050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b60006137fe600c83612ee6565b9150613809826137c8565b602082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613890603983612ee6565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613922602583612ee6565b915061392d826138c6565b604082019050919050565b6000602082019050818103600083015261395181613915565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006139b4602483612ee6565b91506139bf82613958565b604082019050919050565b600060208201905081810360008301526139e3816139a7565b9050919050565b6000819050919050565b6000613a0f613a0a613a05846139ea565b6130fb565b612ff5565b9050919050565b613a1f816139f4565b82525050565b600060c082019050613a3a60008301896131f2565b613a476020830188613175565b613a546040830187613a16565b613a616060830186613a16565b613a6e60808301856131f2565b613a7b60a0830184613175565b979650505050505050565b600081519050613a9581612fff565b92915050565b600080600060608486031215613ab457613ab3612f8d565b5b6000613ac286828701613a86565b9350506020613ad386828701613a86565b9250506040613ae486828701613a86565b9150509250925092565b6000604082019050613b0360008301856131f2565b613b106020830184613175565b9392505050565b600081519050613b26816133cf565b92915050565b600060208284031215613b4257613b41612f8d565b5b6000613b5084828501613b17565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bb5602683612ee6565b9150613bc082613b59565b604082019050919050565b60006020820190508181036000830152613be481613ba8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c47602483612ee6565b9150613c5282613beb565b604082019050919050565b60006020820190508181036000830152613c7681613c3a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cd9602283612ee6565b9150613ce482613c7d565b604082019050919050565b60006020820190508181036000830152613d0881613ccc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d45602083612ee6565b9150613d5082613d0f565b602082019050919050565b60006020820190508181036000830152613d7481613d38565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613db1601d83612ee6565b9150613dbc82613d7b565b602082019050919050565b60006020820190508181036000830152613de081613da4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e43602583612ee6565b9150613e4e82613de7565b604082019050919050565b60006020820190508181036000830152613e7281613e36565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ed5602383612ee6565b9150613ee082613e79565b604082019050919050565b60006020820190508181036000830152613f0481613ec8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613f41601683612ee6565b9150613f4c82613f0b565b602082019050919050565b60006020820190508181036000830152613f7081613f34565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613fd3603583612ee6565b9150613fde82613f77565b604082019050919050565b6000602082019050818103600083015261400281613fc6565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061403f601383612ee6565b915061404a82614009565b602082019050919050565b6000602082019050818103600083015261406e81614032565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006140d1603683612ee6565b91506140dc82614075565b604082019050919050565b60006020820190508181036000830152614100816140c4565b9050919050565b600061411282612ff5565b915061411d83612ff5565b925082820390508181111561413557614134613508565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061417981612fc9565b92915050565b60006020828403121561419557614194612f8d565b5b60006141a38482850161416a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141e181612fb7565b82525050565b60006141f383836141d8565b60208301905092915050565b6000602082019050919050565b6000614217826141ac565b61422181856141b7565b935061422c836141c8565b8060005b8381101561425d57815161424488826141e7565b975061424f836141ff565b925050600181019050614230565b5085935050505092915050565b600060a08201905061427f6000830188613175565b61428c6020830187613a16565b818103604083015261429e818661420c565b90506142ad60608301856131f2565b6142ba6080830184613175565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614320602683612ee6565b915061432b826142c4565b604082019050919050565b6000602082019050818103600083015261434f81614313565b905091905056fea26469706673582212204a71948223e8f4685bda8978ea0972530d20a993f84b560287ab891e9607e23364736f6c6343000812003300000000000000000000000084b76960618d6d4d186af51bc00113142bb0687a0000000000000000000000000000000000000000000000000000000000024ef0

Deployed Bytecode

0x60806040526004361061028c5760003560e01c8063881dce601161015a578063c0246668116100c1578063dd62ed3e1161007a578063dd62ed3e146109b3578063e2f45605146109f0578063e63bcbd114610a1b578063eba4c33314610a25578063f2fde38b14610a4e578063f8b45b0514610a7757610293565b8063c0246668146108b7578063c18bc195146108e0578063c8c8ebe414610909578063cce987d414610934578063d257b34f1461095f578063d85ba0631461098857610293565b8063a457c2d711610113578063a457c2d714610783578063a672990c146107c0578063a9059cbb146107e9578063aacebbe314610826578063b62496f51461084f578063bbc0c7421461088c57610293565b8063881dce60146106875780638da5cb5b146106b0578063924de9b7146106db57806395d89b4114610704578063967ff23e1461072f5780639a7a23d61461075a57610293565b806349bd5a5e116101fe5780636fc3eaec116101b75780636fc3eaec146105b357806370a08231146105ca578063715018a61461060757806371fc46881461061e578063751039fc146106475780637571336a1461065e57610293565b806349bd5a5e146104b55780634a62bb65146104e0578063672434821461050b5780636a486a8e146105345780636db794371461055f5780636ddd17131461058857610293565b806318160ddd1161025057806318160ddd14610391578063203e727e146103bc57806323b872dd146103e557806327c8f83514610422578063313ce5671461044d578063395093511461047857610293565b806306fdde0314610298578063095ea7b3146102c357806310d5de5314610300578063150074a31461033d5780631694505e1461036657610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610aa2565b6040516102ba9190612f6b565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e5919061302b565b610b34565b6040516102f79190613086565b60405180910390f35b34801561030c57600080fd5b50610327600480360381019061032291906130a1565b610b57565b6040516103349190613086565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f91906130ce565b610b77565b005b34801561037257600080fd5b5061037b610b9c565b604051610388919061315a565b60405180910390f35b34801561039d57600080fd5b506103a6610bc0565b6040516103b39190613184565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de91906130ce565b610bca565b005b3480156103f157600080fd5b5061040c6004803603810190610407919061319f565b610c65565b6040516104199190613086565b60405180910390f35b34801561042e57600080fd5b50610437610c94565b6040516104449190613201565b60405180910390f35b34801561045957600080fd5b50610462610c9a565b60405161046f9190613238565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a919061302b565b610ca3565b6040516104ac9190613086565b60405180910390f35b3480156104c157600080fd5b506104ca610cda565b6040516104d79190613201565b60405180910390f35b3480156104ec57600080fd5b506104f5610cfe565b6040516105029190613086565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d919061330e565b610d11565b005b34801561054057600080fd5b50610549610dbe565b6040516105569190613184565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061338f565b610dc4565b005b34801561059457600080fd5b5061059d610e33565b6040516105aa9190613086565b60405180910390f35b3480156105bf57600080fd5b506105c8610e46565b005b3480156105d657600080fd5b506105f160048036038101906105ec91906130a1565b610f7e565b6040516105fe9190613184565b60405180910390f35b34801561061357600080fd5b5061061c610fc6565b005b34801561062a57600080fd5b50610645600480360381019061064091906130ce565b610fda565b005b34801561065357600080fd5b5061065c611032565b005b34801561066a57600080fd5b50610685600480360381019061068091906133fb565b611057565b005b34801561069357600080fd5b506106ae60048036038101906106a991906130ce565b6110ba565b005b3480156106bc57600080fd5b506106c56111c2565b6040516106d29190613201565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd919061343b565b6111ec565b005b34801561071057600080fd5b50610719611211565b6040516107269190612f6b565b60405180910390f35b34801561073b57600080fd5b506107446112a3565b6040516107519190613184565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c91906133fb565b6112a9565b005b34801561078f57600080fd5b506107aa60048036038101906107a5919061302b565b61134d565b6040516107b79190613086565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e291906133fb565b6113c4565b005b3480156107f557600080fd5b50610810600480360381019061080b919061302b565b61147e565b60405161081d9190613086565b60405180910390f35b34801561083257600080fd5b5061084d600480360381019061084891906130a1565b6114a1565b005b34801561085b57600080fd5b50610876600480360381019061087191906130a1565b611569565b6040516108839190613086565b60405180910390f35b34801561089857600080fd5b506108a1611589565b6040516108ae9190613086565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d991906133fb565b61159c565b005b3480156108ec57600080fd5b50610907600480360381019061090291906130ce565b61164d565b005b34801561091557600080fd5b5061091e6116e8565b60405161092b9190613184565b60405180910390f35b34801561094057600080fd5b506109496116ee565b6040516109569190613184565b60405180910390f35b34801561096b57600080fd5b50610986600480360381019061098191906130ce565b6116f4565b005b34801561099457600080fd5b5061099d611719565b6040516109aa9190613184565b60405180910390f35b3480156109bf57600080fd5b506109da60048036038101906109d59190613468565b61171f565b6040516109e79190613184565b60405180910390f35b3480156109fc57600080fd5b50610a056117a6565b604051610a129190613184565b60405180910390f35b610a236117ac565b005b348015610a3157600080fd5b50610a4c6004803603810190610a4791906130ce565b6119cd565b005b348015610a5a57600080fd5b50610a756004803603810190610a7091906130a1565b611a25565b005b348015610a8357600080fd5b50610a8c611aa8565b604051610a999190613184565b60405180910390f35b606060038054610ab1906134d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610add906134d7565b8015610b2a5780601f10610aff57610100808354040283529160200191610b2a565b820191906000526020600020905b815481529060010190602001808311610b0d57829003601f168201915b5050505050905090565b600080610b3f611aae565b9050610b4c818585611ab6565b600191505092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b610b7f611c7f565b670de0b6b3a764000081610b939190613537565b600a8190555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bd2611c7f565b670de0b6b3a76400006103e86001610be8610bc0565b610bf29190613537565b610bfc91906135a8565b610c0691906135a8565b811015610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f9061364b565b60405180910390fd5b670de0b6b3a764000081610c5c9190613537565b60078190555050565b600080610c70611aae565b9050610c7d858285611cfd565b610c88858585611d89565b60019150509392505050565b61dead81565b60006012905090565b600080610cae611aae565b9050610ccf818585610cc0858961171f565b610cca919061366b565b611ab6565b600191505092915050565b7f000000000000000000000000867fc30c8982559da17de9a0458f7e37ee47c04a81565b600b60009054906101000a900460ff1681565b600084849050118015610d2957508383905082829050145b610d3257600080fd5b600033905060005b85859050811015610db657610da382878784818110610d5c57610d5b61369f565b5b9050602002016020810190610d7191906130a1565b670de0b6b3a7640000878786818110610d8d57610d8c61369f565b5b90506020020135610d9e9190613537565b611d89565b8080610dae906136ce565b915050610d3a565b505050505050565b60105481565b610dcc611c7f565b81600f8190555080601081905550600360105411158015610df057506003600f5411155b610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690613762565b60405180910390fd5b5050565b600b60029054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610e87611aae565b73ffffffffffffffffffffffffffffffffffffffff161480610ee25750610eac6111c2565b73ffffffffffffffffffffffffffffffffffffffff16610eca611aae565b73ffffffffffffffffffffffffffffffffffffffff16145b610eeb57600080fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610f33906137b3565b60006040518083038185875af1925050503d8060008114610f70576040519150601f19603f3d011682016040523d82523d6000602084013e610f75565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fce611c7f565b610fd860006127b6565b565b610fe2611c7f565b80600f819055506003600f54111561102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690613762565b60405180910390fd5b50565b61103a611c7f565b6000600b60006101000a81548160ff021916908315150217905550565b61105f611c7f565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110fb611aae565b73ffffffffffffffffffffffffffffffffffffffff16148061115657506111206111c2565b73ffffffffffffffffffffffffffffffffffffffff1661113e611aae565b73ffffffffffffffffffffffffffffffffffffffff16145b61115f57600080fd5b61116830610f7e565b81111580156111775750600081115b6111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613814565b60405180910390fd5b6111bf8161287c565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111f4611c7f565b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611220906134d7565b80601f016020809104026020016040519081016040528092919081815260200182805461124c906134d7565b80156112995780601f1061126e57610100808354040283529160200191611299565b820191906000526020600020905b81548152906001019060200180831161127c57829003601f168201915b5050505050905090565b600e5481565b6112b1611c7f565b7f000000000000000000000000867fc30c8982559da17de9a0458f7e37ee47c04a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611336906138a6565b60405180910390fd5b6113498282612ab9565b5050565b600080611358611aae565b90506000611366828661171f565b9050838110156113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613938565b60405180910390fd5b6113b88286868403611ab6565b60019250505092915050565b6113cc611c7f565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080611489611aae565b9050611496818585611d89565b600191505092915050565b6114a9611c7f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6115a4611c7f565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116419190613086565b60405180910390a25050565b611655611c7f565b670de0b6b3a76400006103e8600561166b610bc0565b6116759190613537565b61167f91906135a8565b61168991906135a8565b8110156116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c2906139ca565b60405180910390fd5b670de0b6b3a7640000816116df9190613537565b60098190555050565b60075481565b600a5481565b6116fc611c7f565b670de0b6b3a7640000816117109190613537565b60088190555050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6117b4611c7f565b6117e6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6117e1610bc0565b611ab6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719473061182d30610f7e565b6000806118386111c2565b426040518863ffffffff1660e01b815260040161185a96959493929190613a25565b60606040518083038185885af1158015611878573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061189d9190613a9b565b5050507f000000000000000000000000867fc30c8982559da17de9a0458f7e37ee47c04a73ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040161193b929190613aee565b6020604051808303816000875af115801561195a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197e9190613b2c565b50600a600e819055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043600c8190555042600d81905550565b6119d5611c7f565b8060108190555060036010541115611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990613762565b60405180910390fd5b50565b611a2d611c7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9390613bcb565b60405180910390fd5b611aa5816127b6565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c90613c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90613cef565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c729190613184565b60405180910390a3505050565b611c87611aae565b73ffffffffffffffffffffffffffffffffffffffff16611ca56111c2565b73ffffffffffffffffffffffffffffffffffffffff1614611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf290613d5b565b60405180910390fd5b565b6000611d09848461171f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d835781811015611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613dc7565b60405180910390fd5b611d828484848403611ab6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90613e59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90613eeb565b60405180910390fd5b60008103611e8057611e7b83836000612b5a565b6127b1565b600b60009054906101000a900460ff16156123b757611e9d6111c2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611f0b5750611edb6111c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f445750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f7e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f975750600560149054906101000a900460ff16155b156123b65743600e54600c54611fad919061366b565b10611fc757601e601081905550601e600f81905550611fd8565b60016010819055506001600f819055505b600b60019054906101000a900460ff166120cd57601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061208d5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c390613f57565b60405180910390fd5b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121705750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612217576007548111156121ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b190613fe9565b60405180910390fd5b6009546121c683610f7e565b826121d1919061366b565b1115612212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220990614055565b60405180910390fd5b6123b5565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122ba5750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561230957600754811115612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb906140e7565b60405180910390fd5b6123b4565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166123b35760095461236683610f7e565b82612371919061366b565b11156123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990614055565b60405180910390fd5b5b5b5b5b5b60006123c230610f7e565b9050600060085482101590508080156123e75750600b60029054906101000a900460ff165b80156124005750600560149054906101000a900460ff16155b80156124565750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124ac5750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125025750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259a57600360146000438152602001908152602001600020541015612599576001600560146101000a81548160ff021916908315150217905550612546612dd0565b6000600560146101000a81548160ff02191690831515021790555060016014600043815260200190815260200160002054612581919061366b565b60146000438152602001908152602001600020819055505b5b6000600560149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126505750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561265a57600090505b600081156127a157601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126bd57506000601054115b156126f1576126ea60646126dc60105488612ea590919063ffffffff16565b612ebb90919063ffffffff16565b905061277d565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561274c57506000600f54115b1561277c57612779606461276b600f5488612ea590919063ffffffff16565b612ebb90919063ffffffff16565b90505b5b600081111561279257612791873083612b5a565b5b808561279e9190614107565b94505b6127ac878787612b5a565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff8111156128995761289861413b565b5b6040519080825280602002602001820160405280156128c75781602001602082028036833780820191505090505b50905030816000815181106128df576128de61369f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612984573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a8919061417f565b816001815181106129bc576129bb61369f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a21307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ab6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a8395949392919061426a565b600060405180830381600087803b158015612a9d57600080fd5b505af1158015612ab1573d6000803e3d6000fd5b505050505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc090613e59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2f90613eeb565b60405180910390fd5b612c43838383612ed1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc090614336565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612db79190613184565b60405180910390a3612dca848484612ed6565b50505050565b6000612ddb30610f7e565b90506000808203612ded575050612ea3565b600a54821115612dfd57600a5491505b6000829050612e0b8161287c565b6000479050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612e56906137b3565b60006040518083038185875af1925050503d8060008114612e93576040519150601f19603f3d011682016040523d82523d6000602084013e612e98565b606091505b505080935050505050505b565b60008183612eb39190613537565b905092915050565b60008183612ec991906135a8565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f15578082015181840152602081019050612efa565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f3d82612edb565b612f478185612ee6565b9350612f57818560208601612ef7565b612f6081612f21565b840191505092915050565b60006020820190508181036000830152612f858184612f32565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fc282612f97565b9050919050565b612fd281612fb7565b8114612fdd57600080fd5b50565b600081359050612fef81612fc9565b92915050565b6000819050919050565b61300881612ff5565b811461301357600080fd5b50565b60008135905061302581612fff565b92915050565b6000806040838503121561304257613041612f8d565b5b600061305085828601612fe0565b925050602061306185828601613016565b9150509250929050565b60008115159050919050565b6130808161306b565b82525050565b600060208201905061309b6000830184613077565b92915050565b6000602082840312156130b7576130b6612f8d565b5b60006130c584828501612fe0565b91505092915050565b6000602082840312156130e4576130e3612f8d565b5b60006130f284828501613016565b91505092915050565b6000819050919050565b600061312061311b61311684612f97565b6130fb565b612f97565b9050919050565b600061313282613105565b9050919050565b600061314482613127565b9050919050565b61315481613139565b82525050565b600060208201905061316f600083018461314b565b92915050565b61317e81612ff5565b82525050565b60006020820190506131996000830184613175565b92915050565b6000806000606084860312156131b8576131b7612f8d565b5b60006131c686828701612fe0565b93505060206131d786828701612fe0565b92505060406131e886828701613016565b9150509250925092565b6131fb81612fb7565b82525050565b600060208201905061321660008301846131f2565b92915050565b600060ff82169050919050565b6132328161321c565b82525050565b600060208201905061324d6000830184613229565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261327857613277613253565b5b8235905067ffffffffffffffff81111561329557613294613258565b5b6020830191508360208202830111156132b1576132b061325d565b5b9250929050565b60008083601f8401126132ce576132cd613253565b5b8235905067ffffffffffffffff8111156132eb576132ea613258565b5b6020830191508360208202830111156133075761330661325d565b5b9250929050565b6000806000806040858703121561332857613327612f8d565b5b600085013567ffffffffffffffff81111561334657613345612f92565b5b61335287828801613262565b9450945050602085013567ffffffffffffffff81111561337557613374612f92565b5b613381878288016132b8565b925092505092959194509250565b600080604083850312156133a6576133a5612f8d565b5b60006133b485828601613016565b92505060206133c585828601613016565b9150509250929050565b6133d88161306b565b81146133e357600080fd5b50565b6000813590506133f5816133cf565b92915050565b6000806040838503121561341257613411612f8d565b5b600061342085828601612fe0565b9250506020613431858286016133e6565b9150509250929050565b60006020828403121561345157613450612f8d565b5b600061345f848285016133e6565b91505092915050565b6000806040838503121561347f5761347e612f8d565b5b600061348d85828601612fe0565b925050602061349e85828601612fe0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ef57607f821691505b602082108103613502576135016134a8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354282612ff5565b915061354d83612ff5565b925082820261355b81612ff5565b9150828204841483151761357257613571613508565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135b382612ff5565b91506135be83612ff5565b9250826135ce576135cd613579565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613635602f83612ee6565b9150613640826135d9565b604082019050919050565b6000602082019050818103600083015261366481613628565b9050919050565b600061367682612ff5565b915061368183612ff5565b925082820190508082111561369957613698613508565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136d982612ff5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361370b5761370a613508565b5b600182019050919050565b7f4d757374206b6565702066656573206174203325206f72206c65737300000000600082015250565b600061374c601c83612ee6565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b600081905092915050565b50565b600061379d600083613782565b91506137a88261378d565b600082019050919050565b60006137be82613790565b9150819050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b60006137fe600c83612ee6565b9150613809826137c8565b602082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613890603983612ee6565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613922602583612ee6565b915061392d826138c6565b604082019050919050565b6000602082019050818103600083015261395181613915565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006139b4602483612ee6565b91506139bf82613958565b604082019050919050565b600060208201905081810360008301526139e3816139a7565b9050919050565b6000819050919050565b6000613a0f613a0a613a05846139ea565b6130fb565b612ff5565b9050919050565b613a1f816139f4565b82525050565b600060c082019050613a3a60008301896131f2565b613a476020830188613175565b613a546040830187613a16565b613a616060830186613a16565b613a6e60808301856131f2565b613a7b60a0830184613175565b979650505050505050565b600081519050613a9581612fff565b92915050565b600080600060608486031215613ab457613ab3612f8d565b5b6000613ac286828701613a86565b9350506020613ad386828701613a86565b9250506040613ae486828701613a86565b9150509250925092565b6000604082019050613b0360008301856131f2565b613b106020830184613175565b9392505050565b600081519050613b26816133cf565b92915050565b600060208284031215613b4257613b41612f8d565b5b6000613b5084828501613b17565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bb5602683612ee6565b9150613bc082613b59565b604082019050919050565b60006020820190508181036000830152613be481613ba8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c47602483612ee6565b9150613c5282613beb565b604082019050919050565b60006020820190508181036000830152613c7681613c3a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cd9602283612ee6565b9150613ce482613c7d565b604082019050919050565b60006020820190508181036000830152613d0881613ccc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d45602083612ee6565b9150613d5082613d0f565b602082019050919050565b60006020820190508181036000830152613d7481613d38565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613db1601d83612ee6565b9150613dbc82613d7b565b602082019050919050565b60006020820190508181036000830152613de081613da4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e43602583612ee6565b9150613e4e82613de7565b604082019050919050565b60006020820190508181036000830152613e7281613e36565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ed5602383612ee6565b9150613ee082613e79565b604082019050919050565b60006020820190508181036000830152613f0481613ec8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613f41601683612ee6565b9150613f4c82613f0b565b602082019050919050565b60006020820190508181036000830152613f7081613f34565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613fd3603583612ee6565b9150613fde82613f77565b604082019050919050565b6000602082019050818103600083015261400281613fc6565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061403f601383612ee6565b915061404a82614009565b602082019050919050565b6000602082019050818103600083015261406e81614032565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006140d1603683612ee6565b91506140dc82614075565b604082019050919050565b60006020820190508181036000830152614100816140c4565b9050919050565b600061411282612ff5565b915061411d83612ff5565b925082820390508181111561413557614134613508565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061417981612fc9565b92915050565b60006020828403121561419557614194612f8d565b5b60006141a38482850161416a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141e181612fb7565b82525050565b60006141f383836141d8565b60208301905092915050565b6000602082019050919050565b6000614217826141ac565b61422181856141b7565b935061422c836141c8565b8060005b8381101561425d57815161424488826141e7565b975061424f836141ff565b925050600181019050614230565b5085935050505092915050565b600060a08201905061427f6000830188613175565b61428c6020830187613a16565b818103604083015261429e818661420c565b90506142ad60608301856131f2565b6142ba6080830184613175565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614320602683612ee6565b915061432b826142c4565b604082019050919050565b6000602082019050818103600083015261434f81614313565b905091905056fea26469706673582212204a71948223e8f4685bda8978ea0972530d20a993f84b560287ab891e9607e23364736f6c63430008120033

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

00000000000000000000000084b76960618d6d4d186af51bc00113142bb0687a0000000000000000000000000000000000000000000000000000000000024ef0

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x84b76960618d6D4d186aF51BC00113142BB0687A
Arg [1] : _tokensForLiquidity (uint256): 151280

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000084b76960618d6d4d186af51bc00113142bb0687a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000024ef0


Deployed Bytecode Sourcemap

35735:11540:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24660:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27020:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36547:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39368:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35812:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25789:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39494:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27801:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35915:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25631:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28471:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35870:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36197:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42489:346;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36451:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42034:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36277:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40970:227;;;;;;;;;;;;;:::i;:::-;;25960:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18115:103;;;;;;;;;;;;;:::i;:::-;;41653:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39134:84;;;;;;;;;;;;;:::i;:::-;;40174:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40712:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17474:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40414:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24879:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36385:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41205:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29212:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39971:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26293:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42271:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36619:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36237:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40522:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39742:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36047:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36160:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39226:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36415:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26549:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36089:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38611:515;;;:::i;:::-;;41842:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18373:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36129:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24660:100;24714:13;24747:5;24740:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24660:100;:::o;27020:201::-;27103:4;27120:13;27136:12;:10;:12::i;:::-;27120:28;;27159:32;27168:5;27175:7;27184:6;27159:8;:32::i;:::-;27209:4;27202:11;;;27020:201;;;;:::o;36547:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;39368:118::-;17360:13;:11;:13::i;:::-;39469:8:::1;39456:9;:22;;;;:::i;:::-;39440:13;:38;;;;39368:118:::0;:::o;35812:51::-;;;:::o;25789:108::-;25850:7;25877:12;;25870:19;;25789:108;:::o;39494:240::-;17360:13;:11;:13::i;:::-;39617:4:::1;39609;39604:1;39588:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39587:26;;;;:::i;:::-;39586:35;;;;:::i;:::-;39576:6;:45;;39568:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;39717:8;39707:6;:19;;;;:::i;:::-;39684:20;:42;;;;39494:240:::0;:::o;27801:261::-;27898:4;27915:15;27933:12;:10;:12::i;:::-;27915:30;;27956:38;27972:4;27978:7;27987:6;27956:15;:38::i;:::-;28005:27;28015:4;28021:2;28025:6;28005:9;:27::i;:::-;28050:4;28043:11;;;27801:261;;;;;:::o;35915:53::-;35961:6;35915:53;:::o;25631:93::-;25689:5;25714:2;25707:9;;25631:93;:::o;28471:238::-;28559:4;28576:13;28592:12;:10;:12::i;:::-;28576:28;;28615:64;28624:5;28631:7;28668:10;28640:25;28650:5;28657:7;28640:9;:25::i;:::-;:38;;;;:::i;:::-;28615:8;:64::i;:::-;28697:4;28690:11;;;28471:238;;;;:::o;35870:38::-;;;:::o;36197:33::-;;;;;;;;;;;;;:::o;42489:346::-;42611:1;42592:9;;:16;;:20;:58;;;;;42634:9;;:16;;42616:7;;:14;;:34;42592:58;42584:67;;;;;;42662:12;42677:10;42662:25;;42705:9;42700:128;42724:9;;:16;;42720:1;:20;42700:128;;;42762:54;42772:4;42778:9;;42788:1;42778:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;42806:8;42792:7;;42800:1;42792:10;;;;;;;:::i;:::-;;;;;;;;:23;;;;:::i;:::-;42762:9;:54::i;:::-;42742:3;;;;;:::i;:::-;;;;42700:128;;;;42573:262;42489:346;;;;:::o;36451:28::-;;;;:::o;42034:229::-;17360:13;:11;:13::i;:::-;42128:4:::1;42113:12;:19;;;;42159:5;42143:13;:21;;;;42200:1;42183:13;;:18;;:39;;;;;42221:1;42205:12;;:17;;42183:39;42175:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;42034:229:::0;;:::o;36277:31::-;;;;;;;;;;;;;:::o;40970:227::-;41036:15;;;;;;;;;;;41020:31;;:12;:10;:12::i;:::-;:31;;;:58;;;;41071:7;:5;:7::i;:::-;41055:23;;:12;:10;:12::i;:::-;:23;;;41020:58;41012:67;;;;;;41090:12;41134:15;;;;;;;;;;;41126:29;;41163:21;41126:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41113:76;;;;;41001:196;40970:227::o;25960:127::-;26034:7;26061:9;:18;26071:7;26061:18;;;;;;;;;;;;;;;;26054:25;;25960:127;;;:::o;18115:103::-;17360:13;:11;:13::i;:::-;18180:30:::1;18207:1;18180:18;:30::i;:::-;18115:103::o:0;41653:181::-;17360:13;:11;:13::i;:::-;41744::::1;41729:12;:28;;;;41792:1;41776:12;;:17;;41768:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;41653:181:::0;:::o;39134:84::-;17360:13;:11;:13::i;:::-;39205:5:::1;39188:14;;:22;;;;;;;;;;;;;;;;;;39134:84::o:0;40174:144::-;17360:13;:11;:13::i;:::-;40306:4:::1;40264:31;:39;40296:6;40264:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40174:144:::0;;:::o;40712:250::-;40792:15;;;;;;;;;;;40776:31;;:12;:10;:12::i;:::-;:31;;;:58;;;;40827:7;:5;:7::i;:::-;40811:23;;:12;:10;:12::i;:::-;:23;;;40776:58;40768:67;;;;;;40864:24;40882:4;40864:9;:24::i;:::-;40854:6;:34;;:48;;;;;40901:1;40892:6;:10;40854:48;40846:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40930:24;40947:6;40930:16;:24::i;:::-;40712:250;:::o;17474:87::-;17520:7;17547:6;;;;;;;;;;;17540:13;;17474:87;:::o;40414:100::-;17360:13;:11;:13::i;:::-;40499:7:::1;40485:11;;:21;;;;;;;;;;;;;;;;;;40414:100:::0;:::o;24879:104::-;24935:13;24968:7;24961:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24879:104;:::o;36385:21::-;;;;:::o;41205:244::-;17360:13;:11;:13::i;:::-;41312::::1;41304:21;;:4;:21;;::::0;41296:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41400:41;41429:4;41435:5;41400:28;:41::i;:::-;41205:244:::0;;:::o;29212:436::-;29305:4;29322:13;29338:12;:10;:12::i;:::-;29322:28;;29361:24;29388:25;29398:5;29405:7;29388:9;:25::i;:::-;29361:52;;29452:15;29432:16;:35;;29424:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29545:60;29554:5;29561:7;29589:15;29570:16;:34;29545:8;:60::i;:::-;29636:4;29629:11;;;;29212:436;;;;:::o;39971:195::-;17360:13;:11;:13::i;:::-;40103:4:::1;40057:31;:43;40089:10;40057:43;;;;;;;;;;;;;;;;:50;;;;;;;;;;;;;;;;;;40154:4;40120:19;:31;40140:10;40120:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;39971:195:::0;;:::o;26293:193::-;26372:4;26389:13;26405:12;:10;:12::i;:::-;26389:28;;26428;26438:5;26445:2;26449:6;26428:9;:28::i;:::-;26474:4;26467:11;;;26293:193;;;;:::o;42271:210::-;17360:13;:11;:13::i;:::-;42408:15:::1;;;;;;;;;;;42365:61;;42388:18;42365:61;;;;;;;;;;;;42455:18;42437:15;;:36;;;;;;;;;;;;;;;;;;42271:210:::0;:::o;36619:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;36237:33::-;;;;;;;;;;;;;:::o;40522:182::-;17360:13;:11;:13::i;:::-;40638:8:::1;40607:19;:28;40627:7;40607:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40678:7;40662:34;;;40687:8;40662:34;;;;;;:::i;:::-;;;;;;;;40522:182:::0;;:::o;39742:221::-;17360:13;:11;:13::i;:::-;39868:4:::1;39860;39855:1;39839:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39838:26;;;;:::i;:::-;39837:35;;;;:::i;:::-;39827:6;:45;;39819:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;39946:8;39936:6;:19;;;;:::i;:::-;39924:9;:31;;;;39742:221:::0;:::o;36047:35::-;;;;:::o;36160:28::-;;;;:::o;39226:134::-;17360:13;:11;:13::i;:::-;39343:8:::1;39330:9;:22;;;;:::i;:::-;39309:18;:43;;;;39226:134:::0;:::o;36415:27::-;;;;:::o;26549:151::-;26638:7;26665:11;:18;26677:5;26665:18;;;;;;;;;;;;;;;:27;26684:7;26665:27;;;;;;;;;;;;;;;;26658:34;;26549:151;;;;:::o;36089:33::-;;;;:::o;38611:515::-;17360:13;:11;:13::i;:::-;38671:64:::1;38688:4;38703:15;38721:13;:11;:13::i;:::-;38671:8;:64::i;:::-;38746:15;:31;;;38785:21;38816:4;38822:24;38840:4;38822:9;:24::i;:::-;38847:1;38849::::0;38851:7:::1;:5;:7::i;:::-;38859:15;38746:129;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38893:13;38886:29;;;38924:15;38942:14;38886:71;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38979:2;38970:6;:11;;;;39008:4;38992:13;;:20;;;;;;;;;;;;;;;;;;39037:4;39023:11;;:18;;;;;;;;;;;;;;;;;;39065:12;39052:10;:25;;;;39103:15;39088:12;:30;;;;38611:515::o:0;41842:184::-;17360:13;:11;:13::i;:::-;41935::::1;41919;:29;;;;41984:1;41967:13;;:18;;41959:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;41842:184:::0;:::o;18373:201::-;17360:13;:11;:13::i;:::-;18482:1:::1;18462:22;;:8;:22;;::::0;18454:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18538:28;18557:8;18538:18;:28::i;:::-;18373:201:::0;:::o;36129:24::-;;;;:::o;16025:98::-;16078:7;16105:10;16098:17;;16025:98;:::o;33205:346::-;33324:1;33307:19;;:5;:19;;;33299:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33405:1;33386:21;;:7;:21;;;33378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33489:6;33459:11;:18;33471:5;33459:18;;;;;;;;;;;;;;;:27;33478:7;33459:27;;;;;;;;;;;;;;;:36;;;;33527:7;33511:32;;33520:5;33511:32;;;33536:6;33511:32;;;;;;:::i;:::-;;;;;;;;33205:346;;;:::o;17639:132::-;17714:12;:10;:12::i;:::-;17703:23;;:7;:5;:7::i;:::-;:23;;;17695:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17639:132::o;33842:419::-;33943:24;33970:25;33980:5;33987:7;33970:9;:25::i;:::-;33943:52;;34030:17;34010:16;:37;34006:248;;34092:6;34072:16;:26;;34064:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34176:51;34185:5;34192:7;34220:6;34201:16;:25;34176:8;:51::i;:::-;34006:248;33932:329;33842:419;;;:::o;42843:3291::-;42957:1;42941:18;;:4;:18;;;42933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43034:1;43020:16;;:2;:16;;;43012:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43103:1;43093:6;:11;43089:93;;43121:28;43137:4;43143:2;43147:1;43121:15;:28::i;:::-;43164:7;;43089:93;43198:14;;;;;;;;;;;43194:1415;;;43241:7;:5;:7::i;:::-;43233:15;;:4;:15;;;;:32;;;;;43258:7;:5;:7::i;:::-;43252:13;;:2;:13;;;;43233:32;:52;;;;;43283:1;43269:16;;:2;:16;;;;43233:52;:77;;;;;43303:6;43289:21;;:2;:21;;;;43233:77;:90;;;;;43315:8;;;;;;;;;;;43314:9;43233:90;43229:1369;;;43373:12;43362:6;;43349:10;;:19;;;;:::i;:::-;43348:37;43344:288;;43465:2;43449:13;:18;;;;43505:2;43490:12;:17;;;;43344:288;;;43572:1;43556:13;:17;;;;43611:1;43596:12;:16;;;;43344:288;43657:13;;;;;;;;;;;43652:150;;43703:19;:25;43723:4;43703:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43732:19;:23;43752:2;43732:23;;;;;;;;;;;;;;;;;;;;;;;;;43703:52;43695:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43652:150;43854:25;:31;43880:4;43854:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;43890:31;:35;43922:2;43890:35;;;;;;;;;;;;;;;;;;;;;;;;;43889:36;43854:71;43850:733;;;43968:20;;43958:6;:30;;43950:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;44103:9;;44086:13;44096:2;44086:9;:13::i;:::-;44077:6;:22;;;;:::i;:::-;:35;;44069:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43850:733;;;44212:25;:29;44238:2;44212:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;44246:31;:37;44278:4;44246:37;;;;;;;;;;;;;;;;;;;;;;;;;44245:38;44212:71;44208:375;;;44326:20;;44316:6;:30;;44308:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;44208:375;;;44436:31;:35;44468:2;44436:35;;;;;;;;;;;;;;;;;;;;;;;;;44431:152;;44530:9;;44513:13;44523:2;44513:9;:13::i;:::-;44504:6;:22;;;;:::i;:::-;:35;;44496:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44431:152;44208:375;43850:733;43229:1369;43194:1415;44621:28;44652:24;44670:4;44652:9;:24::i;:::-;44621:55;;44689:12;44728:18;;44704:20;:42;;44689:57;;44777:7;:22;;;;;44788:11;;;;;;;;;;;44777:22;:35;;;;;44804:8;;;;;;;;;;;44803:9;44777:35;:71;;;;;44817:25;:31;44843:4;44817:31;;;;;;;;;;;;;;;;;;;;;;;;;44816:32;44777:71;:101;;;;;44853:19;:25;44873:4;44853:25;;;;;;;;;;;;;;;;;;;;;;;;;44852:26;44777:101;:146;;;;;44900:19;:23;44920:2;44900:23;;;;;;;;;;;;;;;;;;;;;;;;;44899:24;44777:146;44759:468;;;45019:1;44992:10;:24;45003:12;44992:24;;;;;;;;;;;;:28;44988:228;;;45052:4;45041:8;;:15;;;;;;;;;;;;;;;;;;45077:10;:8;:10::i;:::-;45119:5;45108:8;;:16;;;;;;;;;;;;;;;;;;45199:1;45172:10;:24;45183:12;45172:24;;;;;;;;;;;;:28;;;;:::i;:::-;45145:10;:24;45156:12;45145:24;;;;;;;;;;;:55;;;;44988:228;44759:468;45239:12;45255:8;;;;;;;;;;;45254:9;45239:24;;45365:19;:25;45385:4;45365:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45394:19;:23;45414:2;45394:23;;;;;;;;;;;;;;;;;;;;;;;;;45365:52;45361:100;;;45444:5;45434:15;;45361:100;45473:12;45578:7;45574:507;;;45630:25;:29;45656:2;45630:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45679:1;45663:13;;:17;45630:50;45626:306;;;45708:34;45738:3;45708:25;45719:13;;45708:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45701:41;;45626:306;;;45804:25;:31;45830:4;45804:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45854:1;45839:12;;:16;45804:51;45800:132;;;45883:33;45912:3;45883:24;45894:12;;45883:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45876:40;;45800:132;45626:306;45959:1;45952:4;:8;45948:91;;;45981:42;45997:4;46011;46018;45981:15;:42::i;:::-;45948:91;46065:4;46055:14;;;;;:::i;:::-;;;45574:507;46093:33;46109:4;46115:2;46119:6;46093:15;:33::i;:::-;42922:3212;;;;42843:3291;;;;:::o;18734:191::-;18808:16;18827:6;;;;;;;;;;;18808:25;;18853:8;18844:6;;:17;;;;;;;;;;;;;;;;;;18908:8;18877:40;;18898:8;18877:40;;;;;;;;;;;;18797:128;18734:191;:::o;46142:589::-;46268:21;46306:1;46292:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46268:40;;46337:4;46319;46324:1;46319:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46363:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46353:4;46358:1;46353:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46398:62;46415:4;46430:15;46448:11;46398:8;:62::i;:::-;46499:15;:66;;;46580:11;46606:1;46650:4;46677;46697:15;46499:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46197:534;46142:589;:::o;41457:188::-;41574:5;41540:25;:31;41566:4;41540:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41631:5;41597:40;;41625:4;41597:40;;;;;;;;;;;;41457:188;;:::o;30118:806::-;30231:1;30215:18;;:4;:18;;;30207:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30308:1;30294:16;;:2;:16;;;30286:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30363:38;30384:4;30390:2;30394:6;30363:20;:38::i;:::-;30414:19;30436:9;:15;30446:4;30436:15;;;;;;;;;;;;;;;;30414:37;;30485:6;30470:11;:21;;30462:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;30602:6;30588:11;:20;30570:9;:15;30580:4;30570:15;;;;;;;;;;;;;;;:38;;;;30805:6;30788:9;:13;30798:2;30788:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;30855:2;30840:26;;30849:4;30840:26;;;30859:6;30840:26;;;;;;:::i;:::-;;;;;;;;30879:37;30899:4;30905:2;30909:6;30879:19;:37::i;:::-;30196:728;30118:806;;;:::o;46739:533::-;46778:23;46804:24;46822:4;46804:9;:24::i;:::-;46778:50;;46839:12;46887:1;46868:15;:20;46864:59;;46905:7;;;;46864:59;46957:13;;46939:15;:31;46935:95;;;47005:13;;46987:31;;46935:95;47042:26;47071:15;47042:44;;47099:36;47116:18;47099:16;:36::i;:::-;47148:16;47167:21;47148:40;;47222:15;;;;;;;;;;;47214:29;;47251:8;47214:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47201:63;;;;;46767:505;;;;46739:533;:::o;12021:98::-;12079:7;12110:1;12106;:5;;;;:::i;:::-;12099:12;;12021:98;;;;:::o;12420:::-;12478:7;12509:1;12505;:5;;;;:::i;:::-;12498:12;;12420:98;;;;:::o;34861:91::-;;;;:::o;35556:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:::-;3840:6;3889:2;3877:9;3868:7;3864:23;3860:32;3857:119;;;3895:79;;:::i;:::-;3857:119;4015:1;4040:53;4085:7;4076:6;4065:9;4061:22;4040:53;:::i;:::-;4030:63;;3986:117;3781:329;;;;:::o;4116:60::-;4144:3;4165:5;4158:12;;4116:60;;;:::o;4182:142::-;4232:9;4265:53;4283:34;4292:24;4310:5;4292:24;:::i;:::-;4283:34;:::i;:::-;4265:53;:::i;:::-;4252:66;;4182:142;;;:::o;4330:126::-;4380:9;4413:37;4444:5;4413:37;:::i;:::-;4400:50;;4330:126;;;:::o;4462:152::-;4538:9;4571:37;4602:5;4571:37;:::i;:::-;4558:50;;4462:152;;;:::o;4620:183::-;4733:63;4790:5;4733:63;:::i;:::-;4728:3;4721:76;4620:183;;:::o;4809:274::-;4928:4;4966:2;4955:9;4951:18;4943:26;;4979:97;5073:1;5062:9;5058:17;5049:6;4979:97;:::i;:::-;4809:274;;;;:::o;5089:118::-;5176:24;5194:5;5176:24;:::i;:::-;5171:3;5164:37;5089:118;;:::o;5213:222::-;5306:4;5344:2;5333:9;5329:18;5321:26;;5357:71;5425:1;5414:9;5410:17;5401:6;5357:71;:::i;:::-;5213:222;;;;:::o;5441:619::-;5518:6;5526;5534;5583:2;5571:9;5562:7;5558:23;5554:32;5551:119;;;5589:79;;:::i;:::-;5551:119;5709:1;5734:53;5779:7;5770:6;5759:9;5755:22;5734:53;:::i;:::-;5724:63;;5680:117;5836:2;5862:53;5907:7;5898:6;5887:9;5883:22;5862:53;:::i;:::-;5852:63;;5807:118;5964:2;5990:53;6035:7;6026:6;6015:9;6011:22;5990:53;:::i;:::-;5980:63;;5935:118;5441:619;;;;;:::o;6066:118::-;6153:24;6171:5;6153:24;:::i;:::-;6148:3;6141:37;6066:118;;:::o;6190:222::-;6283:4;6321:2;6310:9;6306:18;6298:26;;6334:71;6402:1;6391:9;6387:17;6378:6;6334:71;:::i;:::-;6190:222;;;;:::o;6418:86::-;6453:7;6493:4;6486:5;6482:16;6471:27;;6418:86;;;:::o;6510:112::-;6593:22;6609:5;6593:22;:::i;:::-;6588:3;6581:35;6510:112;;:::o;6628:214::-;6717:4;6755:2;6744:9;6740:18;6732:26;;6768:67;6832:1;6821:9;6817:17;6808:6;6768:67;:::i;:::-;6628:214;;;;:::o;6848:117::-;6957:1;6954;6947:12;6971:117;7080:1;7077;7070:12;7094:117;7203:1;7200;7193:12;7234:568;7307:8;7317:6;7367:3;7360:4;7352:6;7348:17;7344:27;7334:122;;7375:79;;:::i;:::-;7334:122;7488:6;7475:20;7465:30;;7518:18;7510:6;7507:30;7504:117;;;7540:79;;:::i;:::-;7504:117;7654:4;7646:6;7642:17;7630:29;;7708:3;7700:4;7692:6;7688:17;7678:8;7674:32;7671:41;7668:128;;;7715:79;;:::i;:::-;7668:128;7234:568;;;;;:::o;7825:::-;7898:8;7908:6;7958:3;7951:4;7943:6;7939:17;7935:27;7925:122;;7966:79;;:::i;:::-;7925:122;8079:6;8066:20;8056:30;;8109:18;8101:6;8098:30;8095:117;;;8131:79;;:::i;:::-;8095:117;8245:4;8237:6;8233:17;8221:29;;8299:3;8291:4;8283:6;8279:17;8269:8;8265:32;8262:41;8259:128;;;8306:79;;:::i;:::-;8259:128;7825:568;;;;;:::o;8399:934::-;8521:6;8529;8537;8545;8594:2;8582:9;8573:7;8569:23;8565:32;8562:119;;;8600:79;;:::i;:::-;8562:119;8748:1;8737:9;8733:17;8720:31;8778:18;8770:6;8767:30;8764:117;;;8800:79;;:::i;:::-;8764:117;8913:80;8985:7;8976:6;8965:9;8961:22;8913:80;:::i;:::-;8895:98;;;;8691:312;9070:2;9059:9;9055:18;9042:32;9101:18;9093:6;9090:30;9087:117;;;9123:79;;:::i;:::-;9087:117;9236:80;9308:7;9299:6;9288:9;9284:22;9236:80;:::i;:::-;9218:98;;;;9013:313;8399:934;;;;;;;:::o;9339:474::-;9407:6;9415;9464:2;9452:9;9443:7;9439:23;9435:32;9432:119;;;9470:79;;:::i;:::-;9432:119;9590:1;9615:53;9660:7;9651:6;9640:9;9636:22;9615:53;:::i;:::-;9605:63;;9561:117;9717:2;9743:53;9788:7;9779:6;9768:9;9764:22;9743:53;:::i;:::-;9733:63;;9688:118;9339:474;;;;;:::o;9819:116::-;9889:21;9904:5;9889:21;:::i;:::-;9882:5;9879:32;9869:60;;9925:1;9922;9915:12;9869:60;9819:116;:::o;9941:133::-;9984:5;10022:6;10009:20;10000:29;;10038:30;10062:5;10038:30;:::i;:::-;9941:133;;;;:::o;10080:468::-;10145:6;10153;10202:2;10190:9;10181:7;10177:23;10173:32;10170:119;;;10208:79;;:::i;:::-;10170:119;10328:1;10353:53;10398:7;10389:6;10378:9;10374:22;10353:53;:::i;:::-;10343:63;;10299:117;10455:2;10481:50;10523:7;10514:6;10503:9;10499:22;10481:50;:::i;:::-;10471:60;;10426:115;10080:468;;;;;:::o;10554:323::-;10610:6;10659:2;10647:9;10638:7;10634:23;10630:32;10627:119;;;10665:79;;:::i;:::-;10627:119;10785:1;10810:50;10852:7;10843:6;10832:9;10828:22;10810:50;:::i;:::-;10800:60;;10756:114;10554:323;;;;:::o;10883:474::-;10951:6;10959;11008:2;10996:9;10987:7;10983:23;10979:32;10976:119;;;11014:79;;:::i;:::-;10976:119;11134:1;11159:53;11204:7;11195:6;11184:9;11180:22;11159:53;:::i;:::-;11149:63;;11105:117;11261:2;11287:53;11332:7;11323:6;11312:9;11308:22;11287:53;:::i;:::-;11277:63;;11232:118;10883:474;;;;;:::o;11363:180::-;11411:77;11408:1;11401:88;11508:4;11505:1;11498:15;11532:4;11529:1;11522:15;11549:320;11593:6;11630:1;11624:4;11620:12;11610:22;;11677:1;11671:4;11667:12;11698:18;11688:81;;11754:4;11746:6;11742:17;11732:27;;11688:81;11816:2;11808:6;11805:14;11785:18;11782:38;11779:84;;11835:18;;:::i;:::-;11779:84;11600:269;11549:320;;;:::o;11875:180::-;11923:77;11920:1;11913:88;12020:4;12017:1;12010:15;12044:4;12041:1;12034:15;12061:410;12101:7;12124:20;12142:1;12124:20;:::i;:::-;12119:25;;12158:20;12176:1;12158:20;:::i;:::-;12153:25;;12213:1;12210;12206:9;12235:30;12253:11;12235:30;:::i;:::-;12224:41;;12414:1;12405:7;12401:15;12398:1;12395:22;12375:1;12368:9;12348:83;12325:139;;12444:18;;:::i;:::-;12325:139;12109:362;12061:410;;;;:::o;12477:180::-;12525:77;12522:1;12515:88;12622:4;12619:1;12612:15;12646:4;12643:1;12636:15;12663:185;12703:1;12720:20;12738:1;12720:20;:::i;:::-;12715:25;;12754:20;12772:1;12754:20;:::i;:::-;12749:25;;12793:1;12783:35;;12798:18;;:::i;:::-;12783:35;12840:1;12837;12833:9;12828:14;;12663:185;;;;:::o;12854:234::-;12994:34;12990:1;12982:6;12978:14;12971:58;13063:17;13058:2;13050:6;13046:15;13039:42;12854:234;:::o;13094:366::-;13236:3;13257:67;13321:2;13316:3;13257:67;:::i;:::-;13250:74;;13333:93;13422:3;13333:93;:::i;:::-;13451:2;13446:3;13442:12;13435:19;;13094:366;;;:::o;13466:419::-;13632:4;13670:2;13659:9;13655:18;13647:26;;13719:9;13713:4;13709:20;13705:1;13694:9;13690:17;13683:47;13747:131;13873:4;13747:131;:::i;:::-;13739:139;;13466:419;;;:::o;13891:191::-;13931:3;13950:20;13968:1;13950:20;:::i;:::-;13945:25;;13984:20;14002:1;13984:20;:::i;:::-;13979:25;;14027:1;14024;14020:9;14013:16;;14048:3;14045:1;14042:10;14039:36;;;14055:18;;:::i;:::-;14039:36;13891:191;;;;:::o;14088:180::-;14136:77;14133:1;14126:88;14233:4;14230:1;14223:15;14257:4;14254:1;14247:15;14274:233;14313:3;14336:24;14354:5;14336:24;:::i;:::-;14327:33;;14382:66;14375:5;14372:77;14369:103;;14452:18;;:::i;:::-;14369:103;14499:1;14492:5;14488:13;14481:20;;14274:233;;;:::o;14513:178::-;14653:30;14649:1;14641:6;14637:14;14630:54;14513:178;:::o;14697:366::-;14839:3;14860:67;14924:2;14919:3;14860:67;:::i;:::-;14853:74;;14936:93;15025:3;14936:93;:::i;:::-;15054:2;15049:3;15045:12;15038:19;;14697:366;;;:::o;15069:419::-;15235:4;15273:2;15262:9;15258:18;15250:26;;15322:9;15316:4;15312:20;15308:1;15297:9;15293:17;15286:47;15350:131;15476:4;15350:131;:::i;:::-;15342:139;;15069:419;;;:::o;15494:147::-;15595:11;15632:3;15617:18;;15494:147;;;;:::o;15647:114::-;;:::o;15767:398::-;15926:3;15947:83;16028:1;16023:3;15947:83;:::i;:::-;15940:90;;16039:93;16128:3;16039:93;:::i;:::-;16157:1;16152:3;16148:11;16141:18;;15767:398;;;:::o;16171:379::-;16355:3;16377:147;16520:3;16377:147;:::i;:::-;16370:154;;16541:3;16534:10;;16171:379;;;:::o;16556:162::-;16696:14;16692:1;16684:6;16680:14;16673:38;16556:162;:::o;16724:366::-;16866:3;16887:67;16951:2;16946:3;16887:67;:::i;:::-;16880:74;;16963:93;17052:3;16963:93;:::i;:::-;17081:2;17076:3;17072:12;17065:19;;16724:366;;;:::o;17096:419::-;17262:4;17300:2;17289:9;17285:18;17277:26;;17349:9;17343:4;17339:20;17335:1;17324:9;17320:17;17313:47;17377:131;17503:4;17377:131;:::i;:::-;17369:139;;17096:419;;;:::o;17521:244::-;17661:34;17657:1;17649:6;17645:14;17638:58;17730:27;17725:2;17717:6;17713:15;17706:52;17521:244;:::o;17771:366::-;17913:3;17934:67;17998:2;17993:3;17934:67;:::i;:::-;17927:74;;18010:93;18099:3;18010:93;:::i;:::-;18128:2;18123:3;18119:12;18112:19;;17771:366;;;:::o;18143:419::-;18309:4;18347:2;18336:9;18332:18;18324:26;;18396:9;18390:4;18386:20;18382:1;18371:9;18367:17;18360:47;18424:131;18550:4;18424:131;:::i;:::-;18416:139;;18143:419;;;:::o;18568:224::-;18708:34;18704:1;18696:6;18692:14;18685:58;18777:7;18772:2;18764:6;18760:15;18753:32;18568:224;:::o;18798:366::-;18940:3;18961:67;19025:2;19020:3;18961:67;:::i;:::-;18954:74;;19037:93;19126:3;19037:93;:::i;:::-;19155:2;19150:3;19146:12;19139:19;;18798:366;;;:::o;19170:419::-;19336:4;19374:2;19363:9;19359:18;19351:26;;19423:9;19417:4;19413:20;19409:1;19398:9;19394:17;19387:47;19451:131;19577:4;19451:131;:::i;:::-;19443:139;;19170:419;;;:::o;19595:223::-;19735:34;19731:1;19723:6;19719:14;19712:58;19804:6;19799:2;19791:6;19787:15;19780:31;19595:223;:::o;19824:366::-;19966:3;19987:67;20051:2;20046:3;19987:67;:::i;:::-;19980:74;;20063:93;20152:3;20063:93;:::i;:::-;20181:2;20176:3;20172:12;20165:19;;19824:366;;;:::o;20196:419::-;20362:4;20400:2;20389:9;20385:18;20377:26;;20449:9;20443:4;20439:20;20435:1;20424:9;20420:17;20413:47;20477:131;20603:4;20477:131;:::i;:::-;20469:139;;20196:419;;;:::o;20621:85::-;20666:7;20695:5;20684:16;;20621:85;;;:::o;20712:158::-;20770:9;20803:61;20821:42;20830:32;20856:5;20830:32;:::i;:::-;20821:42;:::i;:::-;20803:61;:::i;:::-;20790:74;;20712:158;;;:::o;20876:147::-;20971:45;21010:5;20971:45;:::i;:::-;20966:3;20959:58;20876:147;;:::o;21029:807::-;21278:4;21316:3;21305:9;21301:19;21293:27;;21330:71;21398:1;21387:9;21383:17;21374:6;21330:71;:::i;:::-;21411:72;21479:2;21468:9;21464:18;21455:6;21411:72;:::i;:::-;21493:80;21569:2;21558:9;21554:18;21545:6;21493:80;:::i;:::-;21583;21659:2;21648:9;21644:18;21635:6;21583:80;:::i;:::-;21673:73;21741:3;21730:9;21726:19;21717:6;21673:73;:::i;:::-;21756;21824:3;21813:9;21809:19;21800:6;21756:73;:::i;:::-;21029:807;;;;;;;;;:::o;21842:143::-;21899:5;21930:6;21924:13;21915:22;;21946:33;21973:5;21946:33;:::i;:::-;21842:143;;;;:::o;21991:663::-;22079:6;22087;22095;22144:2;22132:9;22123:7;22119:23;22115:32;22112:119;;;22150:79;;:::i;:::-;22112:119;22270:1;22295:64;22351:7;22342:6;22331:9;22327:22;22295:64;:::i;:::-;22285:74;;22241:128;22408:2;22434:64;22490:7;22481:6;22470:9;22466:22;22434:64;:::i;:::-;22424:74;;22379:129;22547:2;22573:64;22629:7;22620:6;22609:9;22605:22;22573:64;:::i;:::-;22563:74;;22518:129;21991:663;;;;;:::o;22660:332::-;22781:4;22819:2;22808:9;22804:18;22796:26;;22832:71;22900:1;22889:9;22885:17;22876:6;22832:71;:::i;:::-;22913:72;22981:2;22970:9;22966:18;22957:6;22913:72;:::i;:::-;22660:332;;;;;:::o;22998:137::-;23052:5;23083:6;23077:13;23068:22;;23099:30;23123:5;23099:30;:::i;:::-;22998:137;;;;:::o;23141:345::-;23208:6;23257:2;23245:9;23236:7;23232:23;23228:32;23225:119;;;23263:79;;:::i;:::-;23225:119;23383:1;23408:61;23461:7;23452:6;23441:9;23437:22;23408:61;:::i;:::-;23398:71;;23354:125;23141:345;;;;:::o;23492:225::-;23632:34;23628:1;23620:6;23616:14;23609:58;23701:8;23696:2;23688:6;23684:15;23677:33;23492:225;:::o;23723:366::-;23865:3;23886:67;23950:2;23945:3;23886:67;:::i;:::-;23879:74;;23962:93;24051:3;23962:93;:::i;:::-;24080:2;24075:3;24071:12;24064:19;;23723:366;;;:::o;24095:419::-;24261:4;24299:2;24288:9;24284:18;24276:26;;24348:9;24342:4;24338:20;24334:1;24323:9;24319:17;24312:47;24376:131;24502:4;24376:131;:::i;:::-;24368:139;;24095:419;;;:::o;24520:223::-;24660:34;24656:1;24648:6;24644:14;24637:58;24729:6;24724:2;24716:6;24712:15;24705:31;24520:223;:::o;24749:366::-;24891:3;24912:67;24976:2;24971:3;24912:67;:::i;:::-;24905:74;;24988:93;25077:3;24988:93;:::i;:::-;25106:2;25101:3;25097:12;25090:19;;24749:366;;;:::o;25121:419::-;25287:4;25325:2;25314:9;25310:18;25302:26;;25374:9;25368:4;25364:20;25360:1;25349:9;25345:17;25338:47;25402:131;25528:4;25402:131;:::i;:::-;25394:139;;25121:419;;;:::o;25546:221::-;25686:34;25682:1;25674:6;25670:14;25663:58;25755:4;25750:2;25742:6;25738:15;25731:29;25546:221;:::o;25773:366::-;25915:3;25936:67;26000:2;25995:3;25936:67;:::i;:::-;25929:74;;26012:93;26101:3;26012:93;:::i;:::-;26130:2;26125:3;26121:12;26114:19;;25773:366;;;:::o;26145:419::-;26311:4;26349:2;26338:9;26334:18;26326:26;;26398:9;26392:4;26388:20;26384:1;26373:9;26369:17;26362:47;26426:131;26552:4;26426:131;:::i;:::-;26418:139;;26145:419;;;:::o;26570:182::-;26710:34;26706:1;26698:6;26694:14;26687:58;26570:182;:::o;26758:366::-;26900:3;26921:67;26985:2;26980:3;26921:67;:::i;:::-;26914:74;;26997:93;27086:3;26997:93;:::i;:::-;27115:2;27110:3;27106:12;27099:19;;26758:366;;;:::o;27130:419::-;27296:4;27334:2;27323:9;27319:18;27311:26;;27383:9;27377:4;27373:20;27369:1;27358:9;27354:17;27347:47;27411:131;27537:4;27411:131;:::i;:::-;27403:139;;27130:419;;;:::o;27555:179::-;27695:31;27691:1;27683:6;27679:14;27672:55;27555:179;:::o;27740:366::-;27882:3;27903:67;27967:2;27962:3;27903:67;:::i;:::-;27896:74;;27979:93;28068:3;27979:93;:::i;:::-;28097:2;28092:3;28088:12;28081:19;;27740:366;;;:::o;28112:419::-;28278:4;28316:2;28305:9;28301:18;28293:26;;28365:9;28359:4;28355:20;28351:1;28340:9;28336:17;28329:47;28393:131;28519:4;28393:131;:::i;:::-;28385:139;;28112:419;;;:::o;28537:224::-;28677:34;28673:1;28665:6;28661:14;28654:58;28746:7;28741:2;28733:6;28729:15;28722:32;28537:224;:::o;28767:366::-;28909:3;28930:67;28994:2;28989:3;28930:67;:::i;:::-;28923:74;;29006:93;29095:3;29006:93;:::i;:::-;29124:2;29119:3;29115:12;29108:19;;28767:366;;;:::o;29139:419::-;29305:4;29343:2;29332:9;29328:18;29320:26;;29392:9;29386:4;29382:20;29378:1;29367:9;29363:17;29356:47;29420:131;29546:4;29420:131;:::i;:::-;29412:139;;29139:419;;;:::o;29564:222::-;29704:34;29700:1;29692:6;29688:14;29681:58;29773:5;29768:2;29760:6;29756:15;29749:30;29564:222;:::o;29792:366::-;29934:3;29955:67;30019:2;30014:3;29955:67;:::i;:::-;29948:74;;30031:93;30120:3;30031:93;:::i;:::-;30149:2;30144:3;30140:12;30133:19;;29792:366;;;:::o;30164:419::-;30330:4;30368:2;30357:9;30353:18;30345:26;;30417:9;30411:4;30407:20;30403:1;30392:9;30388:17;30381:47;30445:131;30571:4;30445:131;:::i;:::-;30437:139;;30164:419;;;:::o;30589:172::-;30729:24;30725:1;30717:6;30713:14;30706:48;30589:172;:::o;30767:366::-;30909:3;30930:67;30994:2;30989:3;30930:67;:::i;:::-;30923:74;;31006:93;31095:3;31006:93;:::i;:::-;31124:2;31119:3;31115:12;31108:19;;30767:366;;;:::o;31139:419::-;31305:4;31343:2;31332:9;31328:18;31320:26;;31392:9;31386:4;31382:20;31378:1;31367:9;31363:17;31356:47;31420:131;31546:4;31420:131;:::i;:::-;31412:139;;31139:419;;;:::o;31564:240::-;31704:34;31700:1;31692:6;31688:14;31681:58;31773:23;31768:2;31760:6;31756:15;31749:48;31564:240;:::o;31810:366::-;31952:3;31973:67;32037:2;32032:3;31973:67;:::i;:::-;31966:74;;32049:93;32138:3;32049:93;:::i;:::-;32167:2;32162:3;32158:12;32151:19;;31810:366;;;:::o;32182:419::-;32348:4;32386:2;32375:9;32371:18;32363:26;;32435:9;32429:4;32425:20;32421:1;32410:9;32406:17;32399:47;32463:131;32589:4;32463:131;:::i;:::-;32455:139;;32182:419;;;:::o;32607:169::-;32747:21;32743:1;32735:6;32731:14;32724:45;32607:169;:::o;32782:366::-;32924:3;32945:67;33009:2;33004:3;32945:67;:::i;:::-;32938:74;;33021:93;33110:3;33021:93;:::i;:::-;33139:2;33134:3;33130:12;33123:19;;32782:366;;;:::o;33154:419::-;33320:4;33358:2;33347:9;33343:18;33335:26;;33407:9;33401:4;33397:20;33393:1;33382:9;33378:17;33371:47;33435:131;33561:4;33435:131;:::i;:::-;33427:139;;33154:419;;;:::o;33579:241::-;33719:34;33715:1;33707:6;33703:14;33696:58;33788:24;33783:2;33775:6;33771:15;33764:49;33579:241;:::o;33826:366::-;33968:3;33989:67;34053:2;34048:3;33989:67;:::i;:::-;33982:74;;34065:93;34154:3;34065:93;:::i;:::-;34183:2;34178:3;34174:12;34167:19;;33826:366;;;:::o;34198:419::-;34364:4;34402:2;34391:9;34387:18;34379:26;;34451:9;34445:4;34441:20;34437:1;34426:9;34422:17;34415:47;34479:131;34605:4;34479:131;:::i;:::-;34471:139;;34198:419;;;:::o;34623:194::-;34663:4;34683:20;34701:1;34683:20;:::i;:::-;34678:25;;34717:20;34735:1;34717:20;:::i;:::-;34712:25;;34761:1;34758;34754:9;34746:17;;34785:1;34779:4;34776:11;34773:37;;;34790:18;;:::i;:::-;34773:37;34623:194;;;;:::o;34823:180::-;34871:77;34868:1;34861:88;34968:4;34965:1;34958:15;34992:4;34989:1;34982:15;35009:143;35066:5;35097:6;35091:13;35082:22;;35113:33;35140:5;35113:33;:::i;:::-;35009:143;;;;:::o;35158:351::-;35228:6;35277:2;35265:9;35256:7;35252:23;35248:32;35245:119;;;35283:79;;:::i;:::-;35245:119;35403:1;35428:64;35484:7;35475:6;35464:9;35460:22;35428:64;:::i;:::-;35418:74;;35374:128;35158:351;;;;:::o;35515:114::-;35582:6;35616:5;35610:12;35600:22;;35515:114;;;:::o;35635:184::-;35734:11;35768:6;35763:3;35756:19;35808:4;35803:3;35799:14;35784:29;;35635:184;;;;:::o;35825:132::-;35892:4;35915:3;35907:11;;35945:4;35940:3;35936:14;35928:22;;35825:132;;;:::o;35963:108::-;36040:24;36058:5;36040:24;:::i;:::-;36035:3;36028:37;35963:108;;:::o;36077:179::-;36146:10;36167:46;36209:3;36201:6;36167:46;:::i;:::-;36245:4;36240:3;36236:14;36222:28;;36077:179;;;;:::o;36262:113::-;36332:4;36364;36359:3;36355:14;36347:22;;36262:113;;;:::o;36411:732::-;36530:3;36559:54;36607:5;36559:54;:::i;:::-;36629:86;36708:6;36703:3;36629:86;:::i;:::-;36622:93;;36739:56;36789:5;36739:56;:::i;:::-;36818:7;36849:1;36834:284;36859:6;36856:1;36853:13;36834:284;;;36935:6;36929:13;36962:63;37021:3;37006:13;36962:63;:::i;:::-;36955:70;;37048:60;37101:6;37048:60;:::i;:::-;37038:70;;36894:224;36881:1;36878;36874:9;36869:14;;36834:284;;;36838:14;37134:3;37127:10;;36535:608;;;36411:732;;;;:::o;37149:831::-;37412:4;37450:3;37439:9;37435:19;37427:27;;37464:71;37532:1;37521:9;37517:17;37508:6;37464:71;:::i;:::-;37545:80;37621:2;37610:9;37606:18;37597:6;37545:80;:::i;:::-;37672:9;37666:4;37662:20;37657:2;37646:9;37642:18;37635:48;37700:108;37803:4;37794:6;37700:108;:::i;:::-;37692:116;;37818:72;37886:2;37875:9;37871:18;37862:6;37818:72;:::i;:::-;37900:73;37968:3;37957:9;37953:19;37944:6;37900:73;:::i;:::-;37149:831;;;;;;;;:::o;37986:225::-;38126:34;38122:1;38114:6;38110:14;38103:58;38195:8;38190:2;38182:6;38178:15;38171:33;37986:225;:::o;38217:366::-;38359:3;38380:67;38444:2;38439:3;38380:67;:::i;:::-;38373:74;;38456:93;38545:3;38456:93;:::i;:::-;38574:2;38569:3;38565:12;38558:19;;38217:366;;;:::o;38589:419::-;38755:4;38793:2;38782:9;38778:18;38770:26;;38842:9;38836:4;38832:20;38828:1;38817:9;38813:17;38806:47;38870:131;38996:4;38870:131;:::i;:::-;38862:139;;38589:419;;;:::o

Swarm Source

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